diff --git a/.github/workflows/docker-build-dev.yml b/.github/workflows/docker-build-dev.yml index 70596aa88d..5f33222ea5 100644 --- a/.github/workflows/docker-build-dev.yml +++ b/.github/workflows/docker-build-dev.yml @@ -10,8 +10,8 @@ on: - '.gitignore' - 'database/**' - 'documentation/**' - - 'openshift/**' - - 'tests/**' + - '**/docs/**' + - '**/README*' - 'CODE_OF_CONDUCT.md' - 'COMPLIANCE.yaml' - 'CONTRIBUTING.md' diff --git a/.github/workflows/docker-build-main.yml b/.github/workflows/docker-build-main.yml index f583143dcb..c0294fe062 100644 --- a/.github/workflows/docker-build-main.yml +++ b/.github/workflows/docker-build-main.yml @@ -10,8 +10,8 @@ on: - '.gitignore' - 'database/**' - 'documentation/**' - - 'openshift/**' - - 'tests/**' + - '**/docs/**' + - '**/README*' - 'CODE_OF_CONDUCT.md' - 'COMPLIANCE.yaml' - 'CONTRIBUTING.md' diff --git a/.github/workflows/docker-build-test.yml b/.github/workflows/docker-build-test.yml index c061a34c6d..3b7e9d91f0 100644 --- a/.github/workflows/docker-build-test.yml +++ b/.github/workflows/docker-build-test.yml @@ -10,8 +10,8 @@ on: - '.gitignore' - 'database/**' - 'documentation/**' - - 'openshift/**' - - 'tests/**' + - '**/docs/**' + - '**/README*' - 'CODE_OF_CONDUCT.md' - 'COMPLIANCE.yaml' - 'CONTRIBUTING.md' diff --git a/.github/workflows/pr-check-dev-branch.yml b/.github/workflows/pr-check-dev-branch.yml index f08a1749d5..aaadd97269 100644 --- a/.github/workflows/pr-check-dev-branch.yml +++ b/.github/workflows/pr-check-dev-branch.yml @@ -1,4 +1,4 @@ -name: Dev - CI & Unit Tests +name: Dev - Branch Protection - CI & Unit Tests permissions: contents: read diff --git a/.github/workflows/pr-check-main-branch.yml b/.github/workflows/pr-check-main-branch.yml index 8199f1aba7..205a2c9d8c 100644 --- a/.github/workflows/pr-check-main-branch.yml +++ b/.github/workflows/pr-check-main-branch.yml @@ -1,4 +1,4 @@ -name: Main - Branch Protection +name: Main - Branch Protection - CI & Unit Tests permissions: contents: read pull-requests: write diff --git a/.gitignore b/.gitignore index 841973049b..cf56f6bd31 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ *.rsuser *.userosscache *.sln.docstates +*.code-workspace # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs diff --git a/README.md b/README.md index 4425d1952e..46240d8e93 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,8 @@ The project is in a reliable state and major changes are unlikely to happen. ├── Unity.NginxData/ - Nginx HTTP server and reference files ├── Unity.RabbitMQ/ - RabbitMQ message broker configuration └── Unity.RedisSentinel/- Redis Sentinel high-availability setup - database/ - Database configuration and scripts - documentation/ - Solution documentation and assets - openshift/ - OpenShift deployment files and configs + database/ - Database configuration scripts + documentation/ - Solution documentation COMPLIANCE.yaml - BCGov PIA/STRA compliance status CONTRIBUTING.md - How to contribute LICENSE - License diff --git a/applications/Unity.AutoUI/cypress/e2e/ApplicationsActionBar.cy.ts b/applications/Unity.AutoUI/cypress/e2e/ApplicationsActionBar.cy.ts index 6d3cdd6eac..7bbdde7041 100644 --- a/applications/Unity.AutoUI/cypress/e2e/ApplicationsActionBar.cy.ts +++ b/applications/Unity.AutoUI/cypress/e2e/ApplicationsActionBar.cy.ts @@ -1,647 +1,260 @@ /// import { loginIfNeeded } from "../support/auth"; +import { ApplicationsListPage } from "../pages/ApplicationsListPage"; describe("Unity Login and check data from CHEFS", () => { - const STANDARD_TIMEOUT = 20000; - - function switchToDefaultGrantsProgramIfAvailable() { - cy.get("body").then(($body) => { - const hasUserInitials = $body.find(".unity-user-initials").length > 0; - - if (!hasUserInitials) { - cy.log("Skipping tenant switch: no user initials menu found"); - return; - } - - cy.get(".unity-user-initials").click(); - - cy.get("body").then(($body2) => { - const switchLink = $body2 - .find("#user-dropdown a.dropdown-item") - .filter((_, el) => { - return (el.textContent || "").trim() === "Switch Grant Programs"; - }); - - if (switchLink.length === 0) { - cy.log( - 'Skipping tenant switch: "Switch Grant Programs" not present for this user/session', - ); - cy.get("body").click(0, 0); - return; - } - - cy.wrap(switchLink.first()).click(); - - cy.url({ timeout: STANDARD_TIMEOUT }).should( - "include", - "/GrantPrograms", - ); - - cy.get("#search-grant-programs", { timeout: STANDARD_TIMEOUT }) - .should("be.visible") - .clear() - .type("Default Grants Program"); - - // Flatten nested `within` usage to satisfy S2004 (limit nesting depth) - cy.contains( - "#UserGrantProgramsTable tbody tr", - "Default Grants Program", - { timeout: STANDARD_TIMEOUT }, - ) - .should("exist") - .within(() => { - cy.contains("button", "Select").should("be.enabled").click(); - }); - - cy.location("pathname", { timeout: STANDARD_TIMEOUT }).should((p) => { - expect( - p.indexOf("/GrantApplications") >= 0 || p.indexOf("/auth/") >= 0, - ).to.eq(true); - }); - }); - }); - } - - // TEST renders the Submission tab inside an open shadow root (Form.io). - // Enabling this makes cy.get / cy.contains pierce shadow DOM consistently across envs. - before(() => { - Cypress.config("includeShadowDom", true); - loginIfNeeded({ timeout: STANDARD_TIMEOUT }); - }); - - it("Switch to Default Grants Program if available", () => { - switchToDefaultGrantsProgramIfAvailable(); - }); - - it("Tests the existence and functionality of the Submitted Date From and Submitted Date To filters", () => { - const pad2 = (n: number) => String(n).padStart(2, "0"); - - const todayIsoLocal = () => { - const d = new Date(); - return `${d.getFullYear()}-${pad2(d.getMonth() + 1)}-${pad2(d.getDate())}`; - }; - - const waitForRefresh = () => { - // S3923 fix: remove identical branches; assert spinner is hidden when present. - cy.get('div.spinner-grow[role="status"]', { - timeout: STANDARD_TIMEOUT, - }).then(($s) => { - cy.wrap($s) - .should("have.attr", "style") - .and("contain", "display: none"); - }); - }; - - // --- Submitted Date From --- - cy.get("input#submittedFromDate", { timeout: STANDARD_TIMEOUT }) - .click({ force: true }) - .clear({ force: true }) - .type("2022-01-01", { force: true }) - .trigger("change", { force: true }) - .blur({ force: true }) - .should("have.value", "2022-01-01"); - - waitForRefresh(); - - // --- Submitted Date To --- - const today = todayIsoLocal(); - - cy.get("input#submittedToDate", { timeout: STANDARD_TIMEOUT }) - .click({ force: true }) - .clear({ force: true }) - .type(today, { force: true }) - .trigger("change", { force: true }) - .blur({ force: true }) - .should("have.value", today); - - waitForRefresh(); - }); - - // With no rows selected verify the visibility of Filter, Export, Save View, and Columns. - it("Verifies the expected action buttons are visible when no rows are selected", () => { - cy.get("#GrantApplicationsTable", { timeout: STANDARD_TIMEOUT }).should( - "exist", - ); - - // Ensure we start from a clean selection state (0 selected) - // (Using same "select all / deselect all" toggle approach as the working 1-row test) - cy.get("div.dt-scroll-head thead input", { timeout: STANDARD_TIMEOUT }) - .should("exist") - .click({ force: true }) - .click({ force: true }); - - cy.get("#GrantApplicationsTable tbody tr.selected", { - timeout: STANDARD_TIMEOUT, - }).should("have.length", 0); - - // Filter button (left action bar group) - cy.get("#btn-toggle-filter", { timeout: STANDARD_TIMEOUT }).should( - "be.visible", - ); - - // Right-side buttons - cy.contains( - "#dynamicButtonContainerId .dt-buttons button span", - "Export", - { timeout: STANDARD_TIMEOUT }, - ).should("be.visible"); - cy.contains("#dynamicButtonContainerId button.grp-savedStates", "Save View", { - timeout: STANDARD_TIMEOUT, - }).should("be.visible"); - cy.contains( - "#dynamicButtonContainerId .dt-buttons button span", - "Columns", - { timeout: STANDARD_TIMEOUT }, - ).should("be.visible"); - - // Optional sanity: action buttons that require selection should be disabled when none selected - cy.get("#externalLink", { timeout: STANDARD_TIMEOUT }).should( - "be.disabled", - ); // Open - cy.get("#assignApplication", { timeout: STANDARD_TIMEOUT }).should( - "be.disabled", - ); // Assign - cy.get("#approveApplications", { timeout: STANDARD_TIMEOUT }).should( - "be.disabled", - ); // Approve - cy.get("#tagApplication", { timeout: STANDARD_TIMEOUT }).should( - "be.disabled", - ); // Tags - cy.get("#applicationPaymentRequest", { - timeout: STANDARD_TIMEOUT, - }).should("be.disabled"); // Payment - cy.get("#applicationLink", { timeout: STANDARD_TIMEOUT }).should( - "be.disabled", - ); // Info - }); - - // With one row selected verify the visibility of Open, Assign, Approve, Tags, Payment, Info, Filter, Export, Save View, and Columns. - it("Verifies the expected action buttons are visible when only one row is selected", () => { - cy.get("#GrantApplicationsTable", { timeout: STANDARD_TIMEOUT }).should( - "exist", - ); - - //Ensure we start from a clean selection state (0 selected) - cy.get("div.dt-scroll-head thead input", { timeout: STANDARD_TIMEOUT }) - .should("exist") - .click({ force: true }) - .click({ force: true }); - - cy.get("#GrantApplicationsTable tbody tr.selected", { - timeout: STANDARD_TIMEOUT, - }).should("have.length", 0); - - // Select exactly 1 row (click a non-link cell, matching your earlier helper logic) - cy.get("#GrantApplicationsTable tbody tr", { timeout: STANDARD_TIMEOUT }) - .should("have.length.greaterThan", 0) - .first() - .find("td") - .not(":has(a)") - .first() - .click({ force: true }); - - cy.get("#GrantApplicationsTable tbody tr.selected", { - timeout: STANDARD_TIMEOUT, - }).should("have.length", 1); - - // Action bar (left group) - cy.get("#app_custom_buttons", { timeout: STANDARD_TIMEOUT }) - .should("exist") - .scrollIntoView(); - - // Left-side action buttons (actual IDs on this page) - cy.get("#externalLink", { timeout: STANDARD_TIMEOUT }).should("be.visible"); // Open - cy.get("#assignApplication", { timeout: STANDARD_TIMEOUT }).should( - "be.visible", - ); // Assign - cy.get("#approveApplications", { timeout: STANDARD_TIMEOUT }).should( - "be.visible", - ); // Approve - cy.get("#tagApplication", { timeout: STANDARD_TIMEOUT }).should("be.visible"); // Tags - cy.get("#applicationPaymentRequest", { - timeout: STANDARD_TIMEOUT, - }).should("be.visible"); // Payment - cy.get("#applicationLink", { timeout: STANDARD_TIMEOUT }).should( - "be.visible", - ); // Info - - // Filter button - cy.get("#btn-toggle-filter", { timeout: STANDARD_TIMEOUT }).should( - "be.visible", - ); - - // Right-side buttons - cy.contains( - "#dynamicButtonContainerId .dt-buttons button span", - "Export", - { timeout: STANDARD_TIMEOUT }, - ).should("be.visible"); - cy.contains("#dynamicButtonContainerId button.grp-savedStates", "Save View", { - timeout: STANDARD_TIMEOUT, - }).should("be.visible"); - cy.contains( - "#dynamicButtonContainerId .dt-buttons button span", - "Columns", - { timeout: STANDARD_TIMEOUT }, - ).should("be.visible"); - }); - - it("Verifies the expected action buttons are visible when two rows are selected", () => { - const BUTTON_TIMEOUT = 60000; - - // Ensure table has rows - cy.get(".dt-scroll-body tbody tr", { timeout: STANDARD_TIMEOUT }).should( - "have.length.greaterThan", - 1, - ); - - // Select two rows using non-link cells - const clickSelectableCell = (rowIdx: number, withCtrl = false) => { - cy.get(".dt-scroll-body tbody tr", { timeout: STANDARD_TIMEOUT }) - .eq(rowIdx) - .find("td") - .not(":has(a)") - .first() - .click({ force: true, ctrlKey: withCtrl }); - }; - clickSelectableCell(0); - clickSelectableCell(1, true); - - // ActionBar - cy.get("#app_custom_buttons", { timeout: STANDARD_TIMEOUT }) - .should("exist") - .scrollIntoView(); - - // Click Payment - cy.get("#applicationPaymentRequest", { timeout: BUTTON_TIMEOUT }) - .should("be.visible") - .and("not.be.disabled") - .click({ force: true }); - - // Wait until modal is shown - cy.get("#payment-modal", { timeout: STANDARD_TIMEOUT }) - .should("be.visible") - .and("have.class", "show"); - - // Attempt graceful closes first - cy.get("body").type("{esc}", { force: true }); // Bootstrap listens to ESC - cy.get(".modal-backdrop", { timeout: STANDARD_TIMEOUT }).then(($bd) => { - if ($bd.length) { - cy.wrap($bd).click("topLeft", { force: true }); - } - }); - - // Try footer Cancel if available (avoid .catch on Cypress chainable) - cy.contains("#payment-modal .modal-footer button", "Cancel", { - timeout: STANDARD_TIMEOUT, - }).then(($btn) => { - if ($btn && $btn.length > 0) { - cy.wrap($btn).scrollIntoView().click({ force: true }); - } else { - cy.log("Cancel button not present, proceeding to hard-close fallback"); - } - }); - - // Use window API (if present), then hard-close fallback - cy.window().then((win: any) => { - try { - if (typeof win.closePaymentModal === "function") { - win.closePaymentModal(); - } - } catch { - /* ignore */ - } - - // HARD CLOSE: forcibly hide modal and remove backdrop - const $ = (win as any).jQuery || (win as any).$; - if ($) { - try { - $("#payment-modal") - .removeClass("show") - .attr("aria-hidden", "true") - .css("display", "none"); - $(".modal-backdrop").remove(); - $("body").removeClass("modal-open").css("overflow", ""); // restore scroll - } catch { - /* ignore */ - } - } - }); - - // Verify modal/backdrop gone (be tolerant: assert non-interference instead of visibility only) - cy.get("#payment-modal", { timeout: STANDARD_TIMEOUT }).should(($m) => { - const isHidden = !$m.is(":visible") || !$m.hasClass("show"); - expect(isHidden, "payment-modal hidden or not shown").to.eq(true); - }); - cy.get(".modal-backdrop", { timeout: STANDARD_TIMEOUT }).should("not.exist"); - - // Right-side buttons usable - cy.get("#dynamicButtonContainerId", { timeout: STANDARD_TIMEOUT }) - .should("exist") - .scrollIntoView(); - - cy.contains("#dynamicButtonContainerId .dt-buttons button span", "Export", { - timeout: STANDARD_TIMEOUT, - }).should("be.visible"); - cy.contains( - "#dynamicButtonContainerId button.grp-savedStates", - "Save View", - { timeout: STANDARD_TIMEOUT }, - ).should("be.visible"); - cy.contains( - "#dynamicButtonContainerId .dt-buttons button span", - "Columns", - { timeout: STANDARD_TIMEOUT }, - ).should("be.visible"); + const page = new ApplicationsListPage(); + + // Column visibility test data - organized by scroll position for maintainability + const COLUMN_VISIBILITY_DATA = { + scrollPosition0: [ + "Applicant Name", + "Category", + "Submission #", + "Submission Date", + "Status", + "Sub-Status", + "Community", + "Requested Amount", + "Approved Amount", + "Project Name", + "Applicant Id", + ], + scrollPosition1500: [ + "Tags", + "Assignee", + "SubSector", + "Economic Region", + "Regional District", + "Registered Organization Number", + "Org Book Status", + ], + scrollPosition3000: [ + "Project Start Date", + "Project End Date", + "Projected Funding Total", + "Total Paid Amount $", + "Project Electoral District", + "Applicant Electoral District", + ], + scrollPosition4500: [ + "Forestry or Non-Forestry", + "Forestry Focus", + "Acquisition", + "City", + "Community Population", + "Likelihood of Funding", + "Total Score", + ], + scrollPosition6000: [ + "Assessment Result", + "Recommended Amount", + "Due Date", + "Owner", + "Decision Date", + "Project Summary", + "Organization Type", + "Business Number", + ], + scrollPosition7500: [ + "Due Diligence Status", + "Decline Rationale", + "Contact Full Name", + "Contact Title", + "Contact Email", + "Contact Business Phone", + "Contact Cell Phone", + ], + scrollPosition9000: [ + "Signing Authority Full Name", + "Signing Authority Title", + "Signing Authority Email", + "Signing Authority Business Phone", + "Signing Authority Cell Phone", + "Place", + "Risk Ranking", + "Notes", + "Red-Stop", + "Indigenous", + "FYE Day", + "FYE Month", + "Payout", + "Unity Application Id", + ], + }; + + // Columns to toggle during the test - organized for scalability + const COLUMNS_TO_TOGGLE = { + // Columns that need single toggle (off by default, turn on) + singleToggle: [ + "% of Total Project Budget", + "Acquisition", + "Applicant Electoral District", + "Assessment Result", + "Business Number", + "City", + "Community Population", + "Contact Business Phone", + "Contact Cell Phone", + "Contact Email", + "Contact Full Name", + "Contact Title", + "Decision Date", + "Decline Rationale", + "Due Date", + "Due Diligence Status", + "Economic Region", + "Forestry Focus", + "Forestry or Non-Forestry", + "FYE Day", + "FYE Month", + "Indigenous", + "Likelihood of Funding", + "Non-Registered Organization Name", + "Notes", + "Org Book Status", + "Organization Type", + "Other Sector/Sub/Industry Description", + "Owner", + "Payout", + "Place", + "Project Electoral District", + "Project End Date", + "Project Start Date", + "Project Summary", + "Projected Funding Total", + "Recommended Amount", + "Red-Stop", + "Regional District", + "Registered Organization Name", + "Registered Organization Number", + "Risk Ranking", + "Sector", + "Signing Authority Business Phone", + "Signing Authority Cell Phone", + "Signing Authority Email", + "Signing Authority Full Name", + "Signing Authority Title", + "SubSector", + "Total Paid Amount $", + "Total Project Budget", + "Total Score", + "Unity Application Id", + ], + // Columns that need double toggle (on by default, toggle off then on) + doubleToggle: [ + "Applicant Id", + "Applicant Name", + "Approved Amount", + "Assignee", + "Category", + "Community", + "Project Name", + "Requested Amount", + "Status", + "Sub-Status", + "Submission #", + "Submission Date", + "Tags", + ], + }; + + // TEST renders the Submission tab inside an open shadow root (Form.io). + // Enabling this makes cy.get / cy.contains pierce shadow DOM consistently across envs. + before(() => { + Cypress.config("includeShadowDom", true); + loginIfNeeded({ timeout: 20000 }); + }); + + it("Switch to Default Grants Program if available", () => { + page.switchToGrantProgram("Default Grants Program"); + }); + + it("Tests the existence and functionality of the Quick Date Range filter", () => { + // Select "All time" from quick date range dropdown and verify table refreshes + page + .selectQuickDateRange("alltime") + .waitForTableRefresh() + .verifyQuickDateRangeValue("alltime"); + }); + + // With no rows selected verify the visibility of Filter, Export, Save View, and Columns. + it("Verify the action buttons are visible with no rows selected", () => { + // Placeholder for future implementation + }); + + // With one row selected verify the visibility of Filter, Export, Save View, and Columns. + it("Verify the action buttons are visible with one row selected", () => { + // Placeholder for future implementation + }); + + it("Clicks Payment and force-closes the modal", () => { + // Ensure table has data and select two rows using page object + page + .verifyTableHasData() + .selectMultipleRows([0, 1]) + .verifyActionBarExists() + .clickPaymentButtonWithWait() + .waitForPaymentModalVisible() + .closePaymentModal() + .verifyPaymentModalClosed(); + + // Verify right-side buttons are still usable + page + .verifyDynamicButtonContainerExists() + .verifyExportButtonVisible() + .verifySaveViewButtonVisible() + .verifyColumnsButtonVisible(); + }); + + // Walk the Columns menu and toggle each column on, verifying the column is visible. + it("Verify all columns in the menu are visible when and toggled on.", () => { + // Reset to default view and open columns menu + page.closeOpenDropdowns().resetToDefaultView().openColumnsMenu(); + + // Toggle all single-toggle columns (off by default, turn on) + page.toggleColumns(COLUMNS_TO_TOGGLE.singleToggle); + + // Toggle all double-toggle columns (toggle twice to ensure visibility) + COLUMNS_TO_TOGGLE.doubleToggle.forEach((column) => { + page.clickColumnsItem(column).clickColumnsItem(column); }); - // Walk the Columns menu and toggle each column on, verifying the column is visible. - it("Verify all columns in the menu are visible when and toggled on.", () => { - const escapeRegex = (s: string) => s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); - - const clickColumnsItem = (label: string) => { - // Case-insensitive exact match so DEV "ID" and PROD "Id" both work - const re = new RegExp(`^\\s*${escapeRegex(label)}\\s*$`, "i"); - cy.contains("a.dropdown-item", re, { timeout: STANDARD_TIMEOUT }) - .should("exist") - .scrollIntoView() - .click({ force: true }); - }; - - const normalize = (s: string) => - (s || "").replace(/\s+/g, " ").trim().toLowerCase(); - - const getVisibleHeaderTitles = () => { - return cy - .get(".dt-scroll-head span.dt-column-title", { - timeout: STANDARD_TIMEOUT, - }) - .then(($els) => { - const titles = Cypress.$($els) - .toArray() - .map((el) => (el.textContent || "").replace(/\s+/g, " ").trim()) - .filter((t) => t.length > 0); - return titles; - }); - }; - - const assertVisibleHeadersInclude = (expected: string[]) => { - getVisibleHeaderTitles().then((titles) => { - const normTitles = titles.map(normalize); - expected.forEach((e) => { - const target = normalize(e); - expect( - normTitles, - `visible headers should include "${e}" (case-insensitive)`, - ).to.include(target); - }); - }); - }; - - const scrollX = (x: number) => { - cy.get(".dt-scroll-body", { timeout: STANDARD_TIMEOUT }) - .should("exist") - .scrollTo(x, 0, { duration: 0, ensureScrollable: false }); - }; - - // Close any open dropdowns/modals first - cy.get("body").then(($body) => { - if ($body.find(".dt-button-background").length > 0) { - cy.get(".dt-button-background").click({ force: true }); - } - }); - - // Open the "Save View" dropdown - cy.get("button.grp-savedStates", { timeout: STANDARD_TIMEOUT }) - .should("be.visible") - .and("contain.text", "Save View") - .click(); - - // Click "Reset to Default View" - cy.contains("a.dropdown-item", "Reset to Default View", { - timeout: STANDARD_TIMEOUT, - }) - .should("exist") - .click({ force: true }); - - // Wait for table to rebuild after reset - check for default columns - cy.get(".dt-scroll-head span.dt-column-title", { - timeout: STANDARD_TIMEOUT, - }).should("have.length.gt", 5); - - // Open Columns menu - cy.contains("span", "Columns", { timeout: STANDARD_TIMEOUT }) - .should("be.visible") - .click(); - - // Wait for columns dropdown to be fully populated - cy.get("a.dropdown-item", { timeout: STANDARD_TIMEOUT }).should( - "have.length.gt", - 50, - ); - - clickColumnsItem("% of Total Project Budget"); - clickColumnsItem("Acquisition"); - clickColumnsItem("Applicant Electoral District"); - - clickColumnsItem("Applicant Id"); - clickColumnsItem("Applicant Id"); - - clickColumnsItem("Applicant Name"); - clickColumnsItem("Applicant Name"); - - clickColumnsItem("Approved Amount"); - clickColumnsItem("Approved Amount"); + // Close the columns menu + page.closeColumnsMenu(); - clickColumnsItem("Assessment Result"); + // Verify columns by scrolling through the table horizontally + page + .scrollTableHorizontally(0) + .assertVisibleHeadersInclude(COLUMN_VISIBILITY_DATA.scrollPosition0); - clickColumnsItem("Assignee"); - clickColumnsItem("Assignee"); + page + .scrollTableHorizontally(1500) + .assertVisibleHeadersInclude(COLUMN_VISIBILITY_DATA.scrollPosition1500); - clickColumnsItem("Business Number"); + page + .scrollTableHorizontally(3000) + .assertVisibleHeadersInclude(COLUMN_VISIBILITY_DATA.scrollPosition3000); - clickColumnsItem("Category"); - clickColumnsItem("Category"); + page + .scrollTableHorizontally(4500) + .assertVisibleHeadersInclude(COLUMN_VISIBILITY_DATA.scrollPosition4500); - clickColumnsItem("City"); + page + .scrollTableHorizontally(6000) + .assertVisibleHeadersInclude(COLUMN_VISIBILITY_DATA.scrollPosition6000); - clickColumnsItem("Community"); - clickColumnsItem("Community"); + page + .scrollTableHorizontally(7500) + .assertVisibleHeadersInclude(COLUMN_VISIBILITY_DATA.scrollPosition7500); - clickColumnsItem("Community Population"); - clickColumnsItem("Contact Business Phone"); - clickColumnsItem("Contact Cell Phone"); - clickColumnsItem("Contact Email"); - clickColumnsItem("Contact Full Name"); - clickColumnsItem("Contact Title"); - clickColumnsItem("Decision Date"); - clickColumnsItem("Decline Rationale"); - clickColumnsItem("Due Date"); - clickColumnsItem("Due Diligence Status"); - clickColumnsItem("Economic Region"); - clickColumnsItem("Forestry Focus"); - clickColumnsItem("Forestry or Non-Forestry"); - clickColumnsItem("FYE Day"); - clickColumnsItem("FYE Month"); - clickColumnsItem("Indigenous"); - clickColumnsItem("Likelihood of Funding"); - clickColumnsItem("Non-Registered Organization Name"); - clickColumnsItem("Notes"); - clickColumnsItem("Org Book Status"); - clickColumnsItem("Organization Type"); - clickColumnsItem("Other Sector/Sub/Industry Description"); - clickColumnsItem("Owner"); - clickColumnsItem("Payout"); - clickColumnsItem("Place"); - clickColumnsItem("Project Electoral District"); - clickColumnsItem("Project End Date"); + page + .scrollTableHorizontally(9000) + .assertVisibleHeadersInclude(COLUMN_VISIBILITY_DATA.scrollPosition9000); + }); - clickColumnsItem("Project Name"); - clickColumnsItem("Project Name"); - - clickColumnsItem("Project Start Date"); - clickColumnsItem("Project Summary"); - clickColumnsItem("Projected Funding Total"); - clickColumnsItem("Recommended Amount"); - clickColumnsItem("Red-Stop"); - clickColumnsItem("Regional District"); - clickColumnsItem("Registered Organization Name"); - clickColumnsItem("Registered Organization Number"); - - clickColumnsItem("Requested Amount"); - clickColumnsItem("Requested Amount"); - - clickColumnsItem("Risk Ranking"); - clickColumnsItem("Sector"); - clickColumnsItem("Signing Authority Business Phone"); - clickColumnsItem("Signing Authority Cell Phone"); - clickColumnsItem("Signing Authority Email"); - clickColumnsItem("Signing Authority Full Name"); - clickColumnsItem("Signing Authority Title"); - - clickColumnsItem("Status"); - clickColumnsItem("Status"); - - clickColumnsItem("Sub-Status"); - clickColumnsItem("Sub-Status"); - - clickColumnsItem("Submission #"); - clickColumnsItem("Submission #"); - - clickColumnsItem("Submission Date"); - clickColumnsItem("Submission Date"); - - clickColumnsItem("SubSector"); - - clickColumnsItem("Tags"); - clickColumnsItem("Tags"); - - clickColumnsItem("Total Paid Amount $"); - clickColumnsItem("Total Project Budget"); - clickColumnsItem("Total Score"); - clickColumnsItem("Unity Application Id"); - - // Close the menu and wait until the overlay is gone - cy.get("div.dt-button-background", { timeout: STANDARD_TIMEOUT }) - .should("exist") - .click({ force: true }); - - cy.get("div.dt-button-background", { timeout: STANDARD_TIMEOUT }).should( - "not.exist", - ); - - // Assertions by horizontal scroll segments (human-style scan) - scrollX(0); - assertVisibleHeadersInclude([ - "Applicant Name", - "Category", - "Submission #", - "Submission Date", - "Status", - "Sub-Status", - "Community", - "Requested Amount", - "Approved Amount", - "Project Name", - "Applicant Id", - ]); - - scrollX(1500); - assertVisibleHeadersInclude([ - "Tags", - "Assignee", - "SubSector", - "Economic Region", - "Regional District", - "Registered Organization Number", - "Org Book Status", - ]); - - scrollX(3000); - assertVisibleHeadersInclude([ - "Project Start Date", - "Project End Date", - "Projected Funding Total", - "Total Paid Amount $", - "Project Electoral District", - "Applicant Electoral District", - ]); - - scrollX(4500); - assertVisibleHeadersInclude([ - "Forestry or Non-Forestry", - "Forestry Focus", - "Acquisition", - "City", - "Community Population", - "Likelihood of Funding", - "Total Score", - ]); - - scrollX(6000); - assertVisibleHeadersInclude([ - "Assessment Result", - "Recommended Amount", - "Due Date", - "Owner", - "Decision Date", - "Project Summary", - "Organization Type", - "Business Number", - ]); - - scrollX(7500); - assertVisibleHeadersInclude([ - "Due Diligence Status", - "Decline Rationale", - "Contact Full Name", - "Contact Title", - "Contact Email", - "Contact Business Phone", - "Contact Cell Phone", - ]); - - scrollX(9000); - assertVisibleHeadersInclude([ - "Signing Authority Full Name", - "Signing Authority Title", - "Signing Authority Email", - "Signing Authority Business Phone", - "Signing Authority Cell Phone", - "Place", - "Risk Ranking", - "Notes", - "Red-Stop", - "Indigenous", - "FYE Day", - "FYE Month", - "Payout", - "Unity Application Id", - ]); - }); - - it("Verify Logout", () => { - cy.logout(); - }); -}); \ No newline at end of file + it("Verify Logout", () => { + cy.logout(); + }); +}); diff --git a/applications/Unity.AutoUI/cypress/e2e/basicEmail.cy.ts b/applications/Unity.AutoUI/cypress/e2e/basicEmail.cy.ts index 152081bae6..0c08e11ce6 100644 --- a/applications/Unity.AutoUI/cypress/e2e/basicEmail.cy.ts +++ b/applications/Unity.AutoUI/cypress/e2e/basicEmail.cy.ts @@ -269,6 +269,24 @@ describe("Send an email", () => { }); it("Open Emails tab", () => { + // Dismiss any swal2 modal that may be covering the tab + cy.get("body").then(($body) => { + if ($body.find(".swal2-container").length > 0) { + cy.get(".swal2-container").then(($swal) => { + if ($swal.find(".swal2-close").length > 0) { + cy.get(".swal2-close").click({ force: true }); + } else if ($swal.find(".swal2-confirm").length > 0) { + cy.get(".swal2-confirm").click({ force: true }); + } else { + cy.get("body").type("{esc}", { force: true }); + } + }); + cy.get(".swal2-container", { timeout: STANDARD_TIMEOUT }).should( + "not.exist", + ); + } + }); + cy.get("#emails-tab", { timeout: STANDARD_TIMEOUT }) .should("exist") .should("be.visible") diff --git a/applications/Unity.AutoUI/cypress/e2e/chefsdata.cy.ts b/applications/Unity.AutoUI/cypress/e2e/chefsdata.cy.ts index b9ec8948c9..05fe3e5a54 100644 --- a/applications/Unity.AutoUI/cypress/e2e/chefsdata.cy.ts +++ b/applications/Unity.AutoUI/cypress/e2e/chefsdata.cy.ts @@ -59,13 +59,12 @@ describe('Unity Login and check data from CHEFS', () => { // Ensure the search field exists cy.get('#search', { timeout: STANDARD_TIMEOUT }).should('exist') - // Conditionally widen Submitted Date range if the control exists + // Select "All time" from quick date range to widen the search cy.get('body', { timeout: STANDARD_TIMEOUT }).then(($body) => { - if ($body.find('input#submittedFromDate').length > 0) { - cy.get('input#submittedFromDate', { timeout: STANDARD_TIMEOUT }) - .should('exist') - .clear() - .type('2022-01-01') + if ($body.find('select#quickDateRange').length > 0) { + cy.get('select#quickDateRange', { timeout: STANDARD_TIMEOUT }) + .should('be.visible') + .select('alltime') } }) diff --git a/applications/Unity.AutoUI/cypress/pages/ApplicationDetailsPage.ts b/applications/Unity.AutoUI/cypress/pages/ApplicationDetailsPage.ts index 8415064169..6194b02f1f 100644 --- a/applications/Unity.AutoUI/cypress/pages/ApplicationDetailsPage.ts +++ b/applications/Unity.AutoUI/cypress/pages/ApplicationDetailsPage.ts @@ -1,5 +1,11 @@ +/// + import { BasePage } from "./BasePage"; +/** + * ApplicationDetailsPage - Page Object for the Application Details page + * Handles tabs, status actions, and field verification + */ export class ApplicationDetailsPage extends BasePage { // Tab selectors private readonly tabs = { diff --git a/applications/Unity.AutoUI/cypress/pages/ApplicationsListPage.ts b/applications/Unity.AutoUI/cypress/pages/ApplicationsListPage.ts new file mode 100644 index 0000000000..aae8eb72bb --- /dev/null +++ b/applications/Unity.AutoUI/cypress/pages/ApplicationsListPage.ts @@ -0,0 +1,574 @@ +/// + +import { ApplicationsPage } from "./ListPages"; + +/** + * ApplicationsListPage - Extended Page Object for the Grant Applications List page + * Extends ApplicationsPage with additional functionality for: + * - Date filters + * - Columns menu operations + * - Payment modal handling + * - Table horizontal scrolling and column visibility + */ +export class ApplicationsListPage extends ApplicationsPage { + private readonly STANDARD_TIMEOUT = 20000; + private readonly BUTTON_TIMEOUT = 60000; + + // Date filter selectors + private readonly dateFilters = { + quickDateRange: "select#quickDateRange", + submittedFromDate: "input#submittedFromDate", + submittedToDate: "input#submittedToDate", + spinner: 'div.spinner-grow[role="status"]', + }; + + // Quick date range option values + private readonly quickDateRangeOptions = { + today: "today", + last7Days: "last7days", + last30Days: "last30days", + last3Months: "last3months", + last6Months: "last6months", + allTime: "alltime", + custom: "custom", + }; + + // Extended action bar selectors (beyond ApplicationsPage) + private readonly extendedActionBar = { + customButtons: "#app_custom_buttons", + dynamicButtonContainer: "#dynamicButtonContainerId", + exportButton: "#dynamicButtonContainerId .dt-buttons button span", + saveViewButton: "button.grp-savedStates", + }; + + // Table scrolling selectors + private readonly scrollTable = { + scrollBody: ".dt-scroll-body", + tableRows: ".dt-scroll-body tbody tr", + scrollHead: ".dt-scroll-head", + columnTitles: ".dt-scroll-head span.dt-column-title", + }; + + // Columns menu selectors + private readonly columnsMenu = { + dropdownItem: "a.dropdown-item", + buttonBackground: "div.dt-button-background", + }; + + // Payment modal selectors + private readonly paymentModal = { + modal: "#payment-modal", + backdrop: ".modal-backdrop", + cancelButton: "#payment-modal .modal-footer button", + }; + + // Grant program selectors + private readonly grantProgram = { + userInitials: ".unity-user-initials", + userDropdown: "#user-dropdown a.dropdown-item", + searchInput: "#search-grant-programs", + programsTableRow: "#UserGrantProgramsTable tbody tr", + }; + + // Save view selectors + private readonly saveView = { + button: "button.grp-savedStates", + resetOption: "a.dropdown-item", + }; + + constructor() { + super(); + } + + // ============ Date Filter Methods ============ + + /** + * Select a quick date range from the dropdown + * @param range - One of: "today", "last7days", "last30days", "last3months", "last6months", "alltime", "custom" + */ + selectQuickDateRange( + range: + | "today" + | "last7days" + | "last30days" + | "last3months" + | "last6months" + | "alltime" + | "custom" + ): this { + cy.get(this.dateFilters.quickDateRange, { timeout: this.STANDARD_TIMEOUT }) + .should("be.visible") + .select(range); + return this; + } + + /** + * Select "Last 6 months" from quick date range (default) + */ + selectLast6Months(): this { + return this.selectQuickDateRange("last6months"); + } + + /** + * Select "All time" from quick date range + */ + selectAllTime(): this { + return this.selectQuickDateRange("alltime"); + } + + /** + * Verify the quick date range dropdown has expected value + */ + verifyQuickDateRangeValue( + expectedValue: + | "today" + | "last7days" + | "last30days" + | "last3months" + | "last6months" + | "alltime" + | "custom" + ): this { + cy.get(this.dateFilters.quickDateRange, { timeout: this.STANDARD_TIMEOUT }) + .should("have.value", expectedValue); + return this; + } + + /** + * Set the Submitted From Date filter (for custom date range) + * @deprecated Use selectQuickDateRange() instead. This method is for custom date ranges only. + */ + setSubmittedFromDate(date: string): this { + cy.get(this.dateFilters.submittedFromDate, { timeout: this.STANDARD_TIMEOUT }) + .click({ force: true }) + .clear({ force: true }) + .type(date, { force: true }) + .trigger("change", { force: true }) + .blur({ force: true }) + .should("have.value", date); + return this; + } + + /** + * Set the Submitted To Date filter + */ + setSubmittedToDate(date: string): this { + cy.get(this.dateFilters.submittedToDate, { timeout: this.STANDARD_TIMEOUT }) + .click({ force: true }) + .clear({ force: true }) + .type(date, { force: true }) + .trigger("change", { force: true }) + .blur({ force: true }) + .should("have.value", date); + return this; + } + + /** + * Wait for table refresh (spinner to be hidden) + */ + waitForTableRefresh(): this { + cy.get(this.dateFilters.spinner, { timeout: this.STANDARD_TIMEOUT }).then( + ($s: JQuery) => { + cy.wrap($s) + .should("have.attr", "style") + .and("contain", "display: none"); + } + ); + return this; + } + + /** + * Get today's date in ISO local format (YYYY-MM-DD) + */ + getTodayIsoLocal(): string { + const d = new Date(); + const pad2 = (n: number) => String(n).padStart(2, "0"); + return `${d.getFullYear()}-${pad2(d.getMonth() + 1)}-${pad2(d.getDate())}`; + } + + // ============ Extended Table Methods ============ + + /** + * Verify table has rows (using scroll body selector) + */ + verifyTableHasData(): this { + cy.get(this.scrollTable.tableRows, { timeout: this.STANDARD_TIMEOUT }).should( + "have.length.greaterThan", + 1 + ); + return this; + } + + /** + * Select a row by index (clicks on a non-link cell) + */ + selectRowByIndex(rowIndex: number, withCtrl = false): this { + cy.get(this.scrollTable.tableRows, { timeout: this.STANDARD_TIMEOUT }) + .eq(rowIndex) + .find("td") + .not(":has(a)") + .first() + .click({ force: true, ctrlKey: withCtrl }); + return this; + } + + /** + * Select multiple rows by indices + */ + selectMultipleRows(indices: number[]): this { + indices.forEach((index, i) => { + this.selectRowByIndex(index, i > 0); + }); + return this; + } + + /** + * Scroll table horizontally to a specific position + */ + scrollTableHorizontally(x: number): this { + cy.get(this.scrollTable.scrollBody, { timeout: this.STANDARD_TIMEOUT }) + .should("exist") + .scrollTo(x, 0, { duration: 0, ensureScrollable: false }); + return this; + } + + /** + * Get visible header titles from the table + */ + getVisibleHeaderTitles(): Cypress.Chainable { + return cy + .get(this.scrollTable.columnTitles, { timeout: this.STANDARD_TIMEOUT }) + .then(($els: JQuery) => { + const titles: string[] = Cypress.$($els) + .toArray() + .map((el: HTMLElement) => (el.textContent || "").replace(/\s+/g, " ").trim()) + .filter((t: string) => t.length > 0); + return titles; + }); + } + + /** + * Assert that visible headers include expected columns (case-insensitive) + */ + assertVisibleHeadersInclude(expected: string[]): this { + this.getVisibleHeaderTitles().then((titles: string[]) => { + const titlesLower = titles.map((t: string) => t.toLowerCase()); + expected.forEach((e: string) => { + expect( + titlesLower, + `visible headers should include "${e}"` + ).to.include(e.toLowerCase()); + }); + }); + return this; + } + + // ============ Extended Action Bar Methods ============ + + /** + * Scroll to and verify action bar exists + */ + verifyActionBarExists(): this { + cy.get(this.extendedActionBar.customButtons, { timeout: this.STANDARD_TIMEOUT }) + .should("exist") + .scrollIntoView(); + return this; + } + + /** + * Click the Payment button (extended with visibility checks) + */ + clickPaymentButtonWithWait(): this { + cy.get("#applicationPaymentRequest", { timeout: this.BUTTON_TIMEOUT }) + .should("be.visible") + .and("not.be.disabled") + .click({ force: true }); + return this; + } + + /** + * Verify Export button is visible + */ + verifyExportButtonVisible(): this { + cy.contains(this.extendedActionBar.exportButton, "Export", { + timeout: this.STANDARD_TIMEOUT, + }).should("be.visible"); + return this; + } + + /** + * Verify Save View button is visible + */ + verifySaveViewButtonVisible(): this { + cy.contains( + "#dynamicButtonContainerId button.grp-savedStates", + "Save View", + { timeout: this.STANDARD_TIMEOUT } + ).should("be.visible"); + return this; + } + + /** + * Verify Columns button is visible + */ + verifyColumnsButtonVisible(): this { + cy.contains( + "#dynamicButtonContainerId .dt-buttons button span", + "Columns", + { timeout: this.STANDARD_TIMEOUT } + ).should("be.visible"); + return this; + } + + /** + * Verify dynamic button container exists + */ + verifyDynamicButtonContainerExists(): this { + cy.get(this.extendedActionBar.dynamicButtonContainer, { + timeout: this.STANDARD_TIMEOUT, + }) + .should("exist") + .scrollIntoView(); + return this; + } + + // ============ Payment Modal Methods ============ + + /** + * Wait for payment modal to be visible + */ + waitForPaymentModalVisible(): this { + cy.get(this.paymentModal.modal, { timeout: this.STANDARD_TIMEOUT }) + .should("be.visible") + .and("have.class", "show"); + return this; + } + + /** + * Close payment modal using multiple strategies + */ + closePaymentModal(): this { + // Attempt ESC key + cy.get("body").type("{esc}", { force: true }); + + // Click backdrop if present (check existence first to avoid timeout) + cy.get("body").then(($body: JQuery) => { + if ($body.find(this.paymentModal.backdrop).length > 0) { + cy.get(this.paymentModal.backdrop).click("topLeft", { force: true }); + } + }); + + // Try Cancel button if available (check existence first to avoid timeout) + cy.get("body").then(($body: JQuery) => { + const $cancelBtn = $body.find(this.paymentModal.cancelButton).filter( + (_: number, el: HTMLElement) => (el.textContent || "").includes("Cancel") + ); + if ($cancelBtn.length > 0) { + cy.wrap($cancelBtn.first()).scrollIntoView().click({ force: true }); + } else { + cy.log("Cancel button not present, proceeding to hard-close fallback"); + } + }); + + // Hard close fallback using jQuery + cy.window().then((win: Cypress.AUTWindow) => { + try { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const windowWithModal = win as any; + if (typeof windowWithModal.closePaymentModal === "function") { + windowWithModal.closePaymentModal(); + } + } catch { + /* ignore */ + } + + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const $ = (win as any).jQuery || (win as any).$; + if ($) { + try { + $("#payment-modal") + .removeClass("show") + .attr("aria-hidden", "true") + .css("display", "none"); + $(".modal-backdrop").remove(); + $("body").removeClass("modal-open").css("overflow", ""); + } catch { + /* ignore */ + } + } + }); + return this; + } + + /** + * Verify payment modal is closed + */ + verifyPaymentModalClosed(): this { + cy.get(this.paymentModal.modal, { timeout: this.STANDARD_TIMEOUT }).should( + ($m: JQuery) => { + const isHidden = !$m.is(":visible") || !$m.hasClass("show"); + expect(isHidden, "payment-modal hidden or not shown").to.eq(true); + } + ); + cy.get(this.paymentModal.backdrop, { timeout: this.STANDARD_TIMEOUT }).should( + "not.exist" + ); + return this; + } + + // ============ Columns Menu Methods ============ + + /** + * Close any open dropdowns or modals + */ + closeOpenDropdowns(): this { + cy.get("body").then(($body: JQuery) => { + if ($body.find(this.columnsMenu.buttonBackground).length > 0) { + cy.get(this.columnsMenu.buttonBackground).click({ force: true }); + } + }); + return this; + } + + /** + * Open Save View dropdown and reset to default + */ + resetToDefaultView(): this { + cy.get(this.saveView.button, { timeout: this.STANDARD_TIMEOUT }) + .should("be.visible") + .and("contain.text", "Save View") + .click(); + + cy.contains(this.saveView.resetOption, "Reset to Default View", { + timeout: this.STANDARD_TIMEOUT, + }) + .should("exist") + .click({ force: true }); + + // Wait for table to rebuild + cy.get(this.scrollTable.columnTitles, { timeout: this.STANDARD_TIMEOUT }).should( + "have.length.gt", + 5 + ); + return this; + } + + /** + * Open the Columns menu + */ + openColumnsMenu(): this { + cy.contains("span", "Columns", { timeout: this.STANDARD_TIMEOUT }) + .should("be.visible") + .click(); + + // Wait for dropdown to be fully populated + cy.get(this.columnsMenu.dropdownItem, { timeout: this.STANDARD_TIMEOUT }).should( + "have.length.gt", + 50 + ); + return this; + } + + /** + * Click a column item in the Columns menu (case-insensitive) + */ + clickColumnsItem(label: string): this { + cy.contains(this.columnsMenu.dropdownItem, label, { + timeout: this.STANDARD_TIMEOUT, + matchCase: false, + }) + .should("exist") + .scrollIntoView() + .click({ force: true }); + return this; + } + + /** + * Toggle multiple columns (click each one) + */ + toggleColumns(columns: string[]): this { + columns.forEach((column) => { + this.clickColumnsItem(column); + }); + return this; + } + + /** + * Close the Columns menu + */ + closeColumnsMenu(): this { + cy.get(this.columnsMenu.buttonBackground, { timeout: this.STANDARD_TIMEOUT }) + .should("exist") + .click({ force: true }); + + cy.get(this.columnsMenu.buttonBackground, { + timeout: this.STANDARD_TIMEOUT, + }).should("not.exist"); + return this; + } + + // ============ Grant Program Methods ============ + + /** + * Switch to a specific grant program if available + * Note: Consider using NavigationPage.switchToTenantIfAvailable() for consistency + */ + switchToGrantProgram(programName: string): this { + cy.get("body").then(($body: JQuery) => { + const hasUserInitials = + $body.find(this.grantProgram.userInitials).length > 0; + + if (!hasUserInitials) { + cy.log("Skipping tenant switch: no user initials menu found"); + return; + } + + cy.get(this.grantProgram.userInitials).click(); + + cy.get("body").then(($body2: JQuery) => { + const switchLink = $body2 + .find(this.grantProgram.userDropdown) + .filter((_: number, el: HTMLElement) => { + return (el.textContent || "").trim() === "Switch Grant Programs"; + }); + + if (switchLink.length === 0) { + cy.log( + 'Skipping tenant switch: "Switch Grant Programs" not present for this user/session' + ); + cy.get("body").click(0, 0); + return; + } + + cy.wrap(switchLink.first()).click(); + + cy.url({ timeout: this.STANDARD_TIMEOUT }).should( + "include", + "/GrantPrograms" + ); + + cy.get(this.grantProgram.searchInput, { timeout: this.STANDARD_TIMEOUT }) + .should("be.visible") + .clear() + .type(programName); + + cy.contains(this.grantProgram.programsTableRow, programName, { + timeout: this.STANDARD_TIMEOUT, + }) + .should("exist") + .within(() => { + cy.contains("button", "Select").should("be.enabled").click(); + }); + + cy.location("pathname", { timeout: this.STANDARD_TIMEOUT }).should( + (p: string) => { + expect( + p.indexOf("/GrantApplications") >= 0 || p.indexOf("/auth/") >= 0 + ).to.eq(true); + } + ); + }); + }); + return this; + } +} diff --git a/applications/Unity.AutoUI/cypress/support/auth.ts b/applications/Unity.AutoUI/cypress/support/auth.ts index 764222b8fe..bd83e88c50 100644 --- a/applications/Unity.AutoUI/cypress/support/auth.ts +++ b/applications/Unity.AutoUI/cypress/support/auth.ts @@ -176,31 +176,31 @@ function performLogin(options: LoginOptions = {}): void { */ export function loginIfNeeded( options: LoginOptions = {}, -): Cypress.Chainable { +): void { const username = options.username || (Cypress.env("test1username") as string); const baseUrl = options.baseUrl || (Cypress.env("webapp.url") as string); const sessionId = `unity-${baseUrl}-${username}`; - return cy - .session( - sessionId, - () => { - performLogin(options); - }, - { - validate() { - // Lightweight validation: check auth cookies exist without visiting - return cy.getCookie(".AspNetCore.Cookies").then((cookie) => { - if (!cookie) { - throw new Error("Session expired - auth cookie missing"); - } - }); - }, - cacheAcrossSpecs: true, + cy.session( + sessionId, + () => { + performLogin(options); + }, + { + validate() { + // Lightweight validation: check auth cookies exist without visiting + cy.getCookie(".AspNetCore.Cookies").then((cookie) => { + if (!cookie) { + throw new Error("Session expired - auth cookie missing"); + } + }); }, - ) - .then(() => { - cy.visit(baseUrl); - ensureGrantApplicationsPage(options.timeout || 20000); - }); + cacheAcrossSpecs: true, + }, + ); + + cy.then(() => { + cy.visit(baseUrl); + ensureGrantApplicationsPage(options.timeout || 20000); + }); } diff --git a/applications/Unity.AutoUI/cypress/support/e2e.ts b/applications/Unity.AutoUI/cypress/support/e2e.ts index 29ee2545ba..860eac1b25 100644 --- a/applications/Unity.AutoUI/cypress/support/e2e.ts +++ b/applications/Unity.AutoUI/cypress/support/e2e.ts @@ -6,4 +6,14 @@ // https://on.cypress.io/configuration // *********************************************************** -import '../support/commands.ts' +import '../support/commands' + +// Ignore ResizeObserver loop errors - these are benign browser notifications +// that occur when ResizeObserver callbacks don't complete in a single animation frame +Cypress.on('uncaught:exception', (err) => { + if (err.message.includes('ResizeObserver loop')) { + return false + } + // Return true to fail the test for other errors + return true +}) diff --git a/applications/Unity.AutoUI/tsconfig.json b/applications/Unity.AutoUI/tsconfig.json index 6e47c796f6..89a0c8e415 100644 --- a/applications/Unity.AutoUI/tsconfig.json +++ b/applications/Unity.AutoUI/tsconfig.json @@ -106,5 +106,5 @@ "skipLibCheck": true /* Skip type checking all .d.ts files. */ }, // Included or excluded files or folders... https://www.typescriptlang.org/tsconfig - "include": ["cypress/support/**/*.ts","cypress/e2e/**/*.ts"] + "include": ["cypress/support/**/*.ts", "cypress/e2e/**/*.ts", "cypress/pages/**/*.ts"] } diff --git a/applications/Unity.GrantManager/.env.example b/applications/Unity.GrantManager/.env.example index 3a39780fa5..c2094e4c05 100644 --- a/applications/Unity.GrantManager/.env.example +++ b/applications/Unity.GrantManager/.env.example @@ -41,7 +41,7 @@ AuthServer__Realm="standard" #"unity-local" AuthServer__RequireHttpsMetadata="false" AuthServer__Audience="unity-4899" #"unity-web" AuthServer__ClientId="unity-4899" #"unity-web" -AuthServer__ClientSecret="="********"" +AuthServer__ClientSecret="********" AuthServer__IsBehindTlsTerminationProxy="false" AuthServer__SpecifyOidcParameters="true" AuthServer__OidcSignin="http://localhost:44342/signin-oidc" diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application.Contracts/Reporting/Configuration/IWorksheetsMetadataService.cs b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application.Contracts/Reporting/Configuration/IWorksheetsMetadataService.cs index 17ba6be14d..e1d3ec7745 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application.Contracts/Reporting/Configuration/IWorksheetsMetadataService.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application.Contracts/Reporting/Configuration/IWorksheetsMetadataService.cs @@ -5,7 +5,7 @@ namespace Unity.Flex.Reporting.Configuration { public interface IWorksheetsMetadataService { - Task GetWorksheetSchemaMetaDataAsync(Guid worksheetId); + Task GetWorksheetSchemaMetaDataAsync(Guid worksheetId, Guid formVersionId); Task GetWorksheetSchemaMetaDataItemAsync(Guid worksheetId, string fieldKey); } } diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetFieldSchemaParser.cs b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetFieldSchemaParser.cs index 8077c8fe63..1e4ab34f13 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetFieldSchemaParser.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetFieldSchemaParser.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using System.Linq; using System.Text.Json; @@ -15,6 +16,13 @@ namespace Unity.Flex.Reporting.Configuration public static partial class WorksheetFieldSchemaParser { private const string UnknownSectionName = "unknown_section"; + private const string ComponentsPropertyName = "components"; + + private static readonly JsonDocumentOptions LenientJsonOptions = new() + { + AllowTrailingCommas = true, + CommentHandling = JsonCommentHandling.Skip + }; /// /// Parses a custom field and returns component metadata items. @@ -23,8 +31,13 @@ public static partial class WorksheetFieldSchemaParser /// /// The custom field to parse /// The worksheet containing the field (for name context) + /// Optional form schema JSON string for resolving dynamic DataGrid columns + /// Optional submission header mapping /// List of component metadata items - public static List ParseField(CustomField field, Worksheet worksheet) + public static List ParseField(CustomField field, + Worksheet worksheet, + string? formSchema = null, + string? submissionHeaderMapping = null) { if (field == null) return []; @@ -34,7 +47,7 @@ public static List ParseField(CustomField fie switch (field.Type) { case CustomFieldType.DataGrid: - components.AddRange(ParseDataGridField(field, worksheet)); + components.AddRange(ParseDataGridField(field, worksheet, formSchema, submissionHeaderMapping)); break; case CustomFieldType.CheckboxGroup: @@ -58,8 +71,12 @@ public static List ParseField(CustomField fie /// Parses all fields in a worksheet and returns flattened component metadata. /// /// The worksheet to parse + /// Optional form schema JSON string for resolving dynamic DataGrid columns + /// Optional submission header mapping (not used in current implementation) /// List of all component metadata items - public static List ParseWorksheet(Worksheet worksheet) + public static List ParseWorksheet(Worksheet worksheet, + string? formSchema = null, + string? submissionHeaderMapping = null) { if (worksheet?.Sections == null) return []; @@ -67,17 +84,23 @@ public static List ParseWorksheet(Worksheet w return [..worksheet.Sections .Where(section => section.Fields != null) .SelectMany(section => section.Fields) - .SelectMany(field => ParseField(field, worksheet))]; + .SelectMany(field => ParseField(field, worksheet, formSchema, submissionHeaderMapping))]; } /// /// Parses a DataGrid field and returns metadata for each column defined in the DataGrid definition. - /// If dynamic is true, creates a placeholder column for dynamically determined columns. + /// If dynamic is true, attempts to extract columns from the form schema. If form schema is not available + /// or parsing fails, creates a placeholder column for dynamically determined columns. /// /// The DataGrid field to parse /// The worksheet containing the field + /// Optional form schema JSON string for resolving dynamic DataGrid columns + /// Optional submission header mapping (not used in current implementation) /// List of component metadata items for each DataGrid column - private static List ParseDataGridField(CustomField field, Worksheet worksheet) + private static List ParseDataGridField(CustomField field, + Worksheet worksheet, + string? formSchema = null, + string? submissionHeaderMapping = null) { var components = new List(); @@ -98,25 +121,68 @@ private static List ParseDataGridField(Custom var worksheetName = SanitizeName(worksheet.Name); var dataGridName = SanitizeName(field.Key); - // If dynamic is true, create a placeholder for dynamically determined columns + // Track whether we successfully extracted columns from CHEFS schema + bool extractedFromChefs = false; + + // If dynamic is true, try to extract columns from form schema if (dataGridDefinition.Dynamic) - { - var dynamicComponent = new WorksheetComponentMetaDataItemDto + { + var headerMappingKey = MatchHeaderMapping(field.Name + ".DataGrid", submissionHeaderMapping); + List? dynamicColumns = null; + + if (!string.IsNullOrWhiteSpace(headerMappingKey)) { - Id = $"{field.Id}_dynamic", - Key = "dynamic_columns", - Label = "Dynamic Columns", - Type = "Dynamic", - Path = $"{worksheetName}->{sectionName}->{dataGridName}->dynamic_columns", - TypePath = $"worksheet->section->datagrid->Dynamic", - DataPath = $"({worksheetName}){dataGridName}->dynamic_columns" - }; + dynamicColumns = ExtractDynamicDataGridColumns(headerMappingKey, formSchema); + } - components.Add(dynamicComponent); + if (dynamicColumns != null && dynamicColumns.Count > 0) + { + // We found columns in the form schema, use them + // CHEFS schema includes ALL columns (both static and dynamic), so we mark this as extracted + extractedFromChefs = true; + + foreach (var column in dynamicColumns) + { + // Use the key for the component Key (becomes PropertyName), sanitize for ID + var columnKey = !string.IsNullOrEmpty(column.Key) ? column.Key : column.Name; + var sanitizedKey = SanitizeName(columnKey); + + var component = new WorksheetComponentMetaDataItemDto + { + Id = $"{field.Id}_{sanitizedKey}", + Key = columnKey, + Label = column.Name, + Type = MapDataGridColumnType(column.Type), + Path = $"{worksheetName}->{sectionName}->{dataGridName}->{columnKey}", + TypePath = $"worksheet->section->datagrid->{MapDataGridColumnType(column.Type)}", + DataPath = $"({worksheetName}){dataGridName}->{columnKey}" + }; + + components.Add(component); + } + } + else + { + // Form schema not available or no columns found, create dynamic placeholder + var dynamicComponent = new WorksheetComponentMetaDataItemDto + { + Id = $"{field.Id}_dynamic", + Key = "dynamic_columns", + Label = "Dynamic Columns", + Type = "Dynamic", + Path = $"{worksheetName}->{sectionName}->{dataGridName}->dynamic_columns", + TypePath = $"worksheet->section->datagrid->Dynamic", + DataPath = $"({worksheetName}){dataGridName}->dynamic_columns" + }; + + components.Add(dynamicComponent); + } } - // Process additional defined columns (if any) - if (dataGridDefinition.Columns != null && dataGridDefinition.Columns.Count > 0) + // Process additional defined columns only if we haven't already extracted them from CHEFS + // When dynamic is true and CHEFS extraction succeeded, the CHEFS schema already includes + // all columns (both static and dynamic), so we skip this to avoid duplicates + if (!extractedFromChefs && dataGridDefinition.Columns != null && dataGridDefinition.Columns.Count > 0) { // Create a component for each column in the DataGrid foreach (var column in dataGridDefinition.Columns) @@ -137,7 +203,7 @@ private static List ParseDataGridField(Custom components.Add(component); } } - else if (!dataGridDefinition.Dynamic) + else if (!dataGridDefinition.Dynamic && (dataGridDefinition.Columns == null || dataGridDefinition.Columns.Count == 0)) { // If no columns defined and not dynamic, return the DataGrid itself as a component return [CreateSimpleComponent(field, worksheet)]; @@ -153,6 +219,30 @@ private static List ParseDataGridField(Custom } } + private static string? MatchHeaderMapping(string keyToSearch, string? submissionHeaderMapping) + { + if (string.IsNullOrWhiteSpace(submissionHeaderMapping)) + return null; + + try + { + using var document = JsonDocument.Parse(submissionHeaderMapping, LenientJsonOptions); + var root = document.RootElement; + + if (root.TryGetProperty(keyToSearch, out var valueElement)) + { + return valueElement.GetString(); + } + } + catch (JsonException) + { + // Failed to parse submission header mapping + return null; + } + + return null; + } + /// /// Parses a CheckboxGroup field and returns metadata for each checkbox option defined in the CheckboxGroup definition. /// @@ -298,6 +388,172 @@ private static string SanitizeName(string name) return SantizedNameExpression().Replace(name.Trim().Replace(" ", "_"), ""); } + /// + /// Extracts DataGrid column definitions from a form schema JSON string. + /// Searches for a DataGrid component with the specified key in the form schema and returns its columns. + /// + /// The key of the DataGrid field to find + /// The form schema JSON string to search + /// List of DataGrid column definitions, or null if not found or schema is invalid + private static List? ExtractDynamicDataGridColumns(string dataGridKey, string? formSchema) + { + if (string.IsNullOrWhiteSpace(formSchema)) + return null; + + try + { + using var document = JsonDocument.Parse(formSchema, LenientJsonOptions); + var root = document.RootElement; + + // CHEFS form schemas have a "components" array at the root + if (root.TryGetProperty(ComponentsPropertyName, out var componentsElement)) + { + return FindDataGridInComponents(componentsElement, dataGridKey); + } + } + catch (JsonException) + { + // Failed to parse form schema + return null; + } + + return null; + } + + /// + /// Recursively searches for a DataGrid component with the specified key in a components array. + /// + /// The JSON element representing a components array + /// The key of the DataGrid to find + /// List of DataGrid column definitions, or null if not found + private static List? FindDataGridInComponents(JsonElement componentsElement, string dataGridKey) + { + if (componentsElement.ValueKind != JsonValueKind.Array) + return null; + + foreach (var component in componentsElement.EnumerateArray()) + { + // Check if this component matches the DataGrid key and has a type + if (component.TryGetProperty("key", out var keyElement) && + keyElement.GetString() == dataGridKey && + component.TryGetProperty("type", out var typeElement)) + { + var type = typeElement.GetString()?.ToLower(); + if (type == "datagrid") + { + return ExtractColumnsFromDataGrid(component); + } + } + + // Recursively search in nested components (for panels, columns, etc.) + if (component.TryGetProperty(ComponentsPropertyName, out var nestedComponents)) + { + var result = FindDataGridInComponents(nestedComponents, dataGridKey); + if (result != null) + return result; + } + + // Also check columns property (for layout components) + var layoutResult = FindDataGridInLayoutColumns(component, dataGridKey); + if (layoutResult != null) + return layoutResult; + } + + return null; + } + + /// + /// Searches for a DataGrid component within layout column components. + /// + /// The JSON element representing a layout component + /// The key of the DataGrid to find + /// List of DataGrid column definitions, or null if not found + private static List? FindDataGridInLayoutColumns(JsonElement component, string dataGridKey) + { + if (!component.TryGetProperty("columns", out var columnsElement) || + columnsElement.ValueKind != JsonValueKind.Array) + return null; + + foreach (var column in columnsElement.EnumerateArray()) + { + if (column.TryGetProperty(ComponentsPropertyName, out var columnComponents)) + { + var result = FindDataGridInComponents(columnComponents, dataGridKey); + if (result != null) + return result; + } + } + + return null; + } + + /// + /// Extracts column definitions from a DataGrid component in the form schema. + /// + /// The JSON element representing a DataGrid component + /// List of DataGrid column definitions + private static List? ExtractColumnsFromDataGrid(JsonElement dataGridComponent) + { + var columns = new List(); + + // CHEFS DataGrid components have a "components" property that contains the column definitions + if (dataGridComponent.TryGetProperty(ComponentsPropertyName, out var componentsElement) && + componentsElement.ValueKind == JsonValueKind.Array) + { + foreach (var columnComponent in componentsElement.EnumerateArray()) + { + // Get the key (property name) from the column component + var columnKey = columnComponent.TryGetProperty("key", out var keyElement) + ? keyElement.GetString() + : null; + + // Get the label (display name) from the column component + var columnLabel = columnComponent.TryGetProperty("label", out var labelElement) + ? labelElement.GetString() + : columnKey; + + var columnType = columnComponent.TryGetProperty("type", out var typeElement) + ? MapChefsTypeToDataGridType(typeElement.GetString()) + : "text"; + + if (!string.IsNullOrEmpty(columnKey)) + { + columns.Add(new DataGridDefinitionColumn + { + Key = columnKey, + Name = columnLabel ?? columnKey, + Type = columnType + }); + } + } + } + + return columns.Count > 0 ? columns : null; + } + + /// + /// Maps CHEFS form component types to DataGrid column types. + /// + /// The CHEFS component type + /// Mapped DataGrid column type + private static string MapChefsTypeToDataGridType(string? chefsType) + { + return chefsType?.ToLowerInvariant() switch + { + "textfield" => "text", + "textarea" => "text", + "number" => "numeric", + "currency" => "currency", + "checkbox" => "checkbox", + "day" => "date", + "datetime" => "datetime", + "email" => "text", + "phonenumber" => "text", + "url" => "text", + _ => "text" // Default to text for unknown types + }; + } + [GeneratedRegex(@"[^a-zA-Z0-9_\-]")] private static partial Regex SantizedNameExpression(); } diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetsMetadataService.cs b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetsMetadataService.cs index d51a1f8630..13c9b2efdc 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetsMetadataService.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/Reporting/Configuration/WorksheetsMetadataService.cs @@ -2,19 +2,22 @@ using System.Linq; using System.Threading.Tasks; using Unity.Flex.Domain.Worksheets; +using Unity.GrantManager.ApplicationForms; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Reporting.Configuration { - public class WorksheetsMetadataService(IWorksheetRepository worksheetRepository) + public class WorksheetsMetadataService(IWorksheetRepository worksheetRepository, + IApplicationFormVersionAppService formVersionAppService) : IWorksheetsMetadataService, ITransientDependency { - public async Task GetWorksheetSchemaMetaDataAsync(Guid worksheetId) + public async Task GetWorksheetSchemaMetaDataAsync(Guid worksheetId, Guid formVersionId) { var worksheet = await worksheetRepository.GetAsync(worksheetId); - + var version = await formVersionAppService.GetAsync(formVersionId); + // Use the utility class to parse all fields in the worksheet - var components = WorksheetFieldSchemaParser.ParseWorksheet(worksheet); + var components = WorksheetFieldSchemaParser.ParseWorksheet(worksheet, version.FormSchema, version.SubmissionHeaderMapping); return new WorksheetComponentMetaDataDto() { diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Shared/Worksheets/Definitions/DataGridDefinition.cs b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Shared/Worksheets/Definitions/DataGridDefinition.cs index 368a06274f..bcb81619d1 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Shared/Worksheets/Definitions/DataGridDefinition.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Shared/Worksheets/Definitions/DataGridDefinition.cs @@ -27,6 +27,9 @@ public class DataGridDefinitionColumn [JsonPropertyName("type")] public string Type { get; set; } = string.Empty; + + [JsonPropertyName("key")] + public string Key { get; set; } = string.Empty; } public enum DataGridDefinitionSummaryOption diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Application.Tests/Reporting/WorksheetFieldSchemaParserTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Application.Tests/Reporting/WorksheetFieldSchemaParserTests.cs index 2be221dcf2..72ca6ade85 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Application.Tests/Reporting/WorksheetFieldSchemaParserTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Application.Tests/Reporting/WorksheetFieldSchemaParserTests.cs @@ -141,19 +141,19 @@ public async Task ParseField_WithNonDataGridType_ShouldReturnSimpleComponent() { // Arrange using var uow = _unitOfWorkManager.Begin(); - + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); worksheet.Sections.Add(section); - + await _worksheetRepository.InsertAsync(worksheet, true); await uow.SaveChangesAsync(); - + var field = new CustomField(Guid.NewGuid(), "testTextField", "TestWorksheet", "Test Text Field", CustomFieldType.Text, "{}"); section.AddField(field); await uow.SaveChangesAsync(); - + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); // Act @@ -162,11 +162,346 @@ public async Task ParseField_WithNonDataGridType_ShouldReturnSimpleComponent() // Assert result.ShouldNotBeNull(); result.Count.ShouldBe(1); - + var component = result.First(); component.Id.ShouldBe(field.Id.ToString()); component.Key.ShouldBe("testTextField"); component.Type.ShouldBe("Text"); } + + [Fact] + public async Task ParseDataGridField_DynamicWithFormSchema_ShouldExtractColumnsFromChefsSchema() + { + // Arrange + using var uow = _unitOfWorkManager.Begin(); + + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); + var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); + worksheet.Sections.Add(section); + + await _worksheetRepository.InsertAsync(worksheet, true); + await uow.SaveChangesAsync(); + + var field = new CustomField(Guid.NewGuid(), "testDataGrid", "TestWorksheet", "Test DataGrid", + CustomFieldType.DataGrid, + @"{""dynamic"": true, ""columns"": [], ""summaryOption"": ""None""}"); + section.AddField(field); + await uow.SaveChangesAsync(); + + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); + + // The header mapping maps "field.Name.DataGrid" -> the CHEFS datagrid key + var submissionHeaderMapping = $@"{{""{field.Name}.DataGrid"": ""chefsDataGrid1""}}"; + + var formSchema = @"{ + ""components"": [ + { + ""key"": ""chefsDataGrid1"", + ""type"": ""datagrid"", + ""components"": [ + { ""key"": ""firstName"", ""label"": ""First Name"", ""type"": ""textfield"" }, + { ""key"": ""amount"", ""label"": ""Amount"", ""type"": ""number"" } + ] + } + ] + }"; + + // Act + var result = WorksheetFieldSchemaParser.ParseField(field, worksheet, formSchema, submissionHeaderMapping); + + // Assert — should extract columns from CHEFS schema, no dynamic placeholder + result.ShouldNotBeNull(); + result.Count.ShouldBe(2); + result.ShouldNotContain(c => c.Key == "dynamic_columns"); + + var firstNameCol = result.FirstOrDefault(c => c.Key == "firstName"); + firstNameCol.ShouldNotBeNull(); + firstNameCol.Label.ShouldBe("First Name"); + firstNameCol.Type.ShouldBe("Text"); + + var amountCol = result.FirstOrDefault(c => c.Key == "amount"); + amountCol.ShouldNotBeNull(); + amountCol.Label.ShouldBe("Amount"); + amountCol.Type.ShouldBe("Numeric"); + } + + [Fact] + public async Task ParseDataGridField_DynamicWithFormSchema_ShouldSkipDefinedColumnsWhenChefsExtracted() + { + // Arrange + using var uow = _unitOfWorkManager.Begin(); + + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); + var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); + worksheet.Sections.Add(section); + + await _worksheetRepository.InsertAsync(worksheet, true); + await uow.SaveChangesAsync(); + + // Definition has both dynamic=true AND static columns defined + var field = new CustomField(Guid.NewGuid(), "testDataGrid", "TestWorksheet", "Test DataGrid", + CustomFieldType.DataGrid, + @"{""dynamic"": true, ""columns"": [{""name"": ""staticCol"", ""type"": ""Text""}], ""summaryOption"": ""None""}"); + section.AddField(field); + await uow.SaveChangesAsync(); + + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); + + var submissionHeaderMapping = $@"{{""{field.Name}.DataGrid"": ""chefsGrid""}}"; + + var formSchema = @"{ + ""components"": [ + { + ""key"": ""chefsGrid"", + ""type"": ""datagrid"", + ""components"": [ + { ""key"": ""dynamicCol"", ""label"": ""Dynamic Column"", ""type"": ""textfield"" } + ] + } + ] + }"; + + // Act + var result = WorksheetFieldSchemaParser.ParseField(field, worksheet, formSchema, submissionHeaderMapping); + + // Assert — CHEFS extraction succeeded, so static columns should be skipped to avoid duplicates + result.ShouldNotBeNull(); + result.Count.ShouldBe(1); + result.ShouldNotContain(c => c.Key == "staticCol"); + result.ShouldNotContain(c => c.Key == "dynamic_columns"); + + var dynamicCol = result.First(); + dynamicCol.Key.ShouldBe("dynamicCol"); + dynamicCol.Label.ShouldBe("Dynamic Column"); + dynamicCol.Type.ShouldBe("Text"); + } + + [Fact] + public async Task ParseDataGridField_DynamicWithNoHeaderMapping_ShouldFallBackToPlaceholder() + { + // Arrange + using var uow = _unitOfWorkManager.Begin(); + + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); + var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); + worksheet.Sections.Add(section); + + await _worksheetRepository.InsertAsync(worksheet, true); + await uow.SaveChangesAsync(); + + var field = new CustomField(Guid.NewGuid(), "testDataGrid", "TestWorksheet", "Test DataGrid", + CustomFieldType.DataGrid, + @"{""dynamic"": true, ""columns"": [{""name"": ""col1"", ""type"": ""Text""}], ""summaryOption"": ""None""}"); + section.AddField(field); + await uow.SaveChangesAsync(); + + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); + + // Header mapping does NOT contain an entry for this field + var submissionHeaderMapping = @"{""unrelated_key.DataGrid"": ""someGrid""}"; + var formSchema = @"{ ""components"": [] }"; + + // Act + var result = WorksheetFieldSchemaParser.ParseField(field, worksheet, formSchema, submissionHeaderMapping); + + // Assert — no matching header mapping, so dynamic placeholder + static columns + result.ShouldNotBeNull(); + result.Count.ShouldBe(2); // 1 dynamic placeholder + 1 defined column + + result.ShouldContain(c => c.Key == "dynamic_columns"); + result.ShouldContain(c => c.Key == "col1"); + } + + [Fact] + public async Task ParseDataGridField_DynamicWithNestedFormSchema_ShouldFindDataGridInPanel() + { + // Arrange + using var uow = _unitOfWorkManager.Begin(); + + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); + var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); + worksheet.Sections.Add(section); + + await _worksheetRepository.InsertAsync(worksheet, true); + await uow.SaveChangesAsync(); + + var field = new CustomField(Guid.NewGuid(), "testDataGrid", "TestWorksheet", "Test DataGrid", + CustomFieldType.DataGrid, + @"{""dynamic"": true, ""columns"": [], ""summaryOption"": ""None""}"); + section.AddField(field); + await uow.SaveChangesAsync(); + + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); + + var submissionHeaderMapping = $@"{{""{field.Name}.DataGrid"": ""nestedGrid""}}"; + + // DataGrid is nested inside a panel component + var formSchema = @"{ + ""components"": [ + { + ""key"": ""panel1"", + ""type"": ""panel"", + ""components"": [ + { + ""key"": ""nestedGrid"", + ""type"": ""datagrid"", + ""components"": [ + { ""key"": ""nestedCol"", ""label"": ""Nested Column"", ""type"": ""textarea"" } + ] + } + ] + } + ] + }"; + + // Act + var result = WorksheetFieldSchemaParser.ParseField(field, worksheet, formSchema, submissionHeaderMapping); + + // Assert — should find the datagrid inside the panel via recursive search + result.ShouldNotBeNull(); + result.Count.ShouldBe(1); + result.ShouldNotContain(c => c.Key == "dynamic_columns"); + + var col = result.First(); + col.Key.ShouldBe("nestedCol"); + col.Label.ShouldBe("Nested Column"); + col.Type.ShouldBe("Text"); // textarea maps to text + } + + [Fact] + public async Task ParseDataGridField_DynamicWithLayoutColumns_ShouldFindDataGridInLayoutColumn() + { + // Arrange + using var uow = _unitOfWorkManager.Begin(); + + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); + var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); + worksheet.Sections.Add(section); + + await _worksheetRepository.InsertAsync(worksheet, true); + await uow.SaveChangesAsync(); + + var field = new CustomField(Guid.NewGuid(), "testDataGrid", "TestWorksheet", "Test DataGrid", + CustomFieldType.DataGrid, + @"{""dynamic"": true, ""columns"": [], ""summaryOption"": ""None""}"); + section.AddField(field); + await uow.SaveChangesAsync(); + + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); + + var submissionHeaderMapping = $@"{{""{field.Name}.DataGrid"": ""layoutGrid""}}"; + + // DataGrid is inside a layout "columns" element + var formSchema = @"{ + ""components"": [ + { + ""key"": ""layout1"", + ""type"": ""columns"", + ""columns"": [ + { + ""components"": [ + { + ""key"": ""layoutGrid"", + ""type"": ""datagrid"", + ""components"": [ + { ""key"": ""layoutCol"", ""label"": ""Layout Column"", ""type"": ""currency"" } + ] + } + ] + } + ] + } + ] + }"; + + // Act + var result = WorksheetFieldSchemaParser.ParseField(field, worksheet, formSchema, submissionHeaderMapping); + + // Assert — should find the datagrid inside layout columns + result.ShouldNotBeNull(); + result.Count.ShouldBe(1); + result.ShouldNotContain(c => c.Key == "dynamic_columns"); + + var col = result.First(); + col.Key.ShouldBe("layoutCol"); + col.Label.ShouldBe("Layout Column"); + col.Type.ShouldBe("Currency"); + } + + [Fact] + public async Task ParseDataGridField_DynamicWithInvalidFormSchema_ShouldFallBackToPlaceholder() + { + // Arrange + using var uow = _unitOfWorkManager.Begin(); + + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); + var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); + worksheet.Sections.Add(section); + + await _worksheetRepository.InsertAsync(worksheet, true); + await uow.SaveChangesAsync(); + + var field = new CustomField(Guid.NewGuid(), "testDataGrid", "TestWorksheet", "Test DataGrid", + CustomFieldType.DataGrid, + @"{""dynamic"": true, ""columns"": [], ""summaryOption"": ""None""}"); + section.AddField(field); + await uow.SaveChangesAsync(); + + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); + + var submissionHeaderMapping = $@"{{""{field.Name}.DataGrid"": ""someGrid""}}"; + var formSchema = "not valid json {{{"; + + // Act + var result = WorksheetFieldSchemaParser.ParseField(field, worksheet, formSchema, submissionHeaderMapping); + + // Assert — invalid form schema should fall back to dynamic placeholder + result.ShouldNotBeNull(); + result.ShouldContain(c => c.Key == "dynamic_columns"); + result.First(c => c.Key == "dynamic_columns").Type.ShouldBe("Dynamic"); + } + + [Fact] + public async Task ParseDataGridField_DynamicWithFormSchemaKeyMismatch_ShouldFallBackToPlaceholder() + { + // Arrange + using var uow = _unitOfWorkManager.Begin(); + + var worksheet = new Worksheet(Guid.NewGuid(), "TestWorksheet", "Test Worksheet"); + var section = new WorksheetSection(Guid.NewGuid(), "TestSection"); + worksheet.Sections.Add(section); + + await _worksheetRepository.InsertAsync(worksheet, true); + await uow.SaveChangesAsync(); + + var field = new CustomField(Guid.NewGuid(), "testDataGrid", "TestWorksheet", "Test DataGrid", + CustomFieldType.DataGrid, + @"{""dynamic"": true, ""columns"": [], ""summaryOption"": ""None""}"); + section.AddField(field); + await uow.SaveChangesAsync(); + + worksheet = await _worksheetRepository.GetAsync(worksheet.Id); + + // Header mapping points to a key that does NOT exist in the form schema + var submissionHeaderMapping = $@"{{""{field.Name}.DataGrid"": ""nonExistentGrid""}}"; + var formSchema = @"{ + ""components"": [ + { + ""key"": ""differentGrid"", + ""type"": ""datagrid"", + ""components"": [ + { ""key"": ""col1"", ""label"": ""Col 1"", ""type"": ""textfield"" } + ] + } + ] + }"; + + // Act + var result = WorksheetFieldSchemaParser.ParseField(field, worksheet, formSchema, submissionHeaderMapping); + + // Assert — key mismatch means no columns extracted, should fall back to placeholder + result.ShouldNotBeNull(); + result.ShouldContain(c => c.Key == "dynamic_columns"); + } } } \ No newline at end of file diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupDefinitionWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupDefinitionWidgetTests.cs index 3ae0ec372f..2f6a2b4c0b 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupDefinitionWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupDefinitionWidgetTests.cs @@ -1,22 +1,23 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using System.Text.Json; using Unity.Flex.Web.Views.Shared.Components.CheckboxGroupDefinitionWidget; using Unity.Flex.Worksheets.Definitions; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class CheckboxGroupDefinitionWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class CheckboxGroupDefinitionWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public CheckboxGroupDefinitionWidgetTests() + public CheckboxGroupDefinitionWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupWidgetTests.cs index 2dad6b56e1..ce6dc3d95a 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxGroupWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.CheckboxGroupWidget; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class CheckboxGroupWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class CheckboxGroupWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public CheckboxGroupWidgetTests() + public CheckboxGroupWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxWidgetTests.cs index d50ed7d576..6a9353f98d 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CheckboxWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.CheckboxWidget; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class CheckboxWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class CheckboxWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public CheckboxWidgetTests() + public CheckboxWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/ComponentTestFixture.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/ComponentTestFixture.cs new file mode 100644 index 0000000000..731cb41c9c --- /dev/null +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/ComponentTestFixture.cs @@ -0,0 +1,45 @@ +using Microsoft.AspNetCore.Mvc.Testing; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.DependencyInjection.Extensions; +using Microsoft.Extensions.Hosting; +using Unity.GrantManager; +using Unity.Modules.Shared.MessageBrokers.RabbitMQ.Interfaces; + +namespace Unity.Flex.Web.Tests.Components; + +public class ComponentTestFixture : WebApplicationFactory +{ + protected override void ConfigureWebHost(Microsoft.AspNetCore.Hosting.IWebHostBuilder builder) + { + builder.ConfigureServices(services => + { + var hostedServices = services + .Where(d => typeof(IHostedService) + .IsAssignableFrom(d.ServiceType)) + .ToList(); + + foreach (var descriptor in hostedServices) + { + if (descriptor.ImplementationType?.Namespace?.Contains("RabbitMQ") == true) + { + services.Remove(descriptor); + } + } + +if (OperatingSystem.IsWindows()) + { + services.RemoveAll(); + } + + services.Replace( + ServiceDescriptor.Singleton() + ); + }); + } +} + +[CollectionDefinition(ComponentTestCollection.Name)] +public class ComponentTestCollection : ICollectionFixture +{ + public const string Name = "ComponentTests"; +} diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyDefinitionWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyDefinitionWidgetTests.cs index 8815b47308..54a780f2f8 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyDefinitionWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyDefinitionWidgetTests.cs @@ -1,23 +1,23 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using System.Text.Json; using Unity.Flex.Web.Views.Shared.Components.CurrencyDefinitionWidget; using Unity.Flex.Worksheets.Definitions; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class CurrencyDefinitionWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class CurrencyDefinitionWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public CurrencyDefinitionWidgetTests() + public CurrencyDefinitionWidgetTests(ComponentTestFixture fixture) { - // Lazily resolve services needed by the ViewComponent - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyWidgetTests.cs index d566f5dc24..8389402f30 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/CurrencyWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.CurrencyWidget; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class CurrencyWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class CurrencyWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public CurrencyWidgetTests() + public CurrencyWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridDefinitionWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridDefinitionWidgetTests.cs index 62ec7d7221..35e7663b12 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridDefinitionWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridDefinitionWidgetTests.cs @@ -1,22 +1,23 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using System.Text.Json; using Unity.Flex.Web.Views.Shared.Components.DataGridDefinitionWidget; using Unity.Flex.Worksheets.Definitions; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class DataGridDefinitionWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class DataGridDefinitionWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public DataGridDefinitionWidgetTests() + public DataGridDefinitionWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridWidgetTests.cs index 6e18ab44d9..0fab52c5df 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/DataGridWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.DataGridWidget; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class DataGridWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class DataGridWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public DataGridWidgetTests() + public DataGridWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/RadioWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/RadioWidgetTests.cs index 67c69a0182..c79d831814 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/RadioWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/RadioWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.RadioWidget; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class RadioWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class RadioWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public RadioWidgetTests() + public RadioWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListDefinitionWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListDefinitionWidgetTests.cs index a63c2c36ea..95ef22e1d9 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListDefinitionWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListDefinitionWidgetTests.cs @@ -1,22 +1,23 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using System.Text.Json; using Unity.Flex.Web.Views.Shared.Components.SelectListDefinitionWidget; using Unity.Flex.Worksheets.Definitions; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class SelectListDefinitionWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class SelectListDefinitionWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public SelectListDefinitionWidgetTests() + public SelectListDefinitionWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListWidgetTests.cs index 167b2d1825..245fb1e37a 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/SelectListWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.SelectListWidget; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class SelectListWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class SelectListWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public SelectListWidgetTests() + public SelectListWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaDefinitionWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaDefinitionWidgetTests.cs index 029d545867..66d091906a 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaDefinitionWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaDefinitionWidgetTests.cs @@ -1,22 +1,23 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using System.Text.Json; using Unity.Flex.Web.Views.Shared.Components.TextAreaDefinitionWidget; using Unity.Flex.Worksheets.Definitions; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class TextAreaDefinitionWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class TextAreaDefinitionWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public TextAreaDefinitionWidgetTests() + public TextAreaDefinitionWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaWidgetTests.cs index f8cbf63d70..5e1f095186 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextAreaWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.TextAreaWidget; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class TextAreaWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class TextAreaWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public TextAreaWidgetTests() + public TextAreaWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextDefinitionWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextDefinitionWidgetTests.cs index 065af83a54..ea5de73024 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextDefinitionWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/TextDefinitionWidgetTests.cs @@ -1,22 +1,23 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using System.Text.Json; using Unity.Flex.Web.Views.Shared.Components.TextDefinitionWidget; using Unity.Flex.Worksheets.Definitions; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class TextDefinitionWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class TextDefinitionWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public TextDefinitionWidgetTests() + public TextDefinitionWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/YesNoWidgetTests.cs b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/YesNoWidgetTests.cs index 145cb3ea91..c56a199807 100644 --- a/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/YesNoWidgetTests.cs +++ b/applications/Unity.GrantManager/modules/Unity.Flex/test/Unity.Flex.Web.Tests/Components/YesNoWidgetTests.cs @@ -1,21 +1,22 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using Shouldly; using Unity.Flex.Web.Views.Shared.Components.WorksheetInstanceWidget.ViewModels; using Unity.Flex.Web.Views.Shared.Components.YesNoWidget; -using Unity.GrantManager; using Volo.Abp.DependencyInjection; namespace Unity.Flex.Web.Tests.Components { - public class YesNoWidgetTests : GrantManagerWebTestBase + [Collection(ComponentTestCollection.Name)] + public class YesNoWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public YesNoWidgetTests() + public YesNoWidgetTests(ComponentTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.css b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.css index 2abd758d1a..d465d3b2d9 100644 --- a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.css +++ b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.css @@ -19,8 +19,3 @@ #IdentityRolesWrapper { background-color: transparent; } - -#IdentityRolesWrapper .dt-scroll-body { - max-height: calc(100vh - 370px); - overflow-y: scroll; -} diff --git a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.js b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.js index 74f5376cfb..d54abb1091 100644 --- a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.js +++ b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Roles/index.js @@ -168,7 +168,8 @@ $(function () { dataTableName: 'IdentityRolesTable', dynamicButtonContainerId: 'dynamicButtonContainerId', useNullPlaceholder: true, - externalSearchId: 'search-roles' + externalSearchId: 'search-roles', + fixedHeaders: true }); _createModal.onResult(function () { diff --git a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.css b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.css index 3e2e3dfa90..26f3c597ad 100644 --- a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.css +++ b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.css @@ -28,8 +28,3 @@ #UsersWrapper { background-color: transparent; } - -#UsersWrapper .dt-scroll-body { - max-height: calc(100vh - 370px); - overflow-y: scroll; -} diff --git a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.js b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.js index 6cfa429cc7..ca1c07d2ed 100644 --- a/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.js +++ b/applications/Unity.GrantManager/modules/Unity.Identity.Web/src/Pages/Identity/Users/index.js @@ -266,7 +266,8 @@ $(function () { dataTableName: 'UsersTable', dynamicButtonContainerId: 'dynamicButtonContainerId', useNullPlaceholder: true, - externalSearchId: 'search-users' + externalSearchId: 'search-users', + fixedHeaders: true }); _editModal.onResult(function () { diff --git a/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Application/EmailNotificaions/EmailNotificationManager.cs b/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Application/EmailNotificaions/EmailNotificationManager.cs index 65eacb3356..eb031554d0 100644 --- a/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Application/EmailNotificaions/EmailNotificationManager.cs +++ b/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Application/EmailNotificaions/EmailNotificationManager.cs @@ -117,7 +117,9 @@ public async Task SendEmailAsync(string emailTo, string bod } // Send the email using the CHES client service - var emailObject = await GetEmailObjectAsync(emailTo, body, subject, emailFrom, emailBodyType, emailTemplateName, emailCC, emailBCC); + var emailObject = await GetEmailObjectAsync( + emailTo, body, subject, emailFrom, emailBodyType, emailTemplateName, emailCC, emailBCC, excludeTemplate: true); + var response = await chesClientService.SendAsync(emailObject); // Assuming SendAsync returns a HttpResponseMessage or equivalent: @@ -222,7 +224,8 @@ public async Task BuildEmailObjectWithAttachmentsAsync(EmailLog emailLo emailLog.BodyType, emailLog.TemplateName, emailLog.CC, - emailLog.BCC); + emailLog.BCC, + excludeTemplate: true); // Retrieve attachments from S3 var attachments = await emailAttachmentService.GetAttachmentsAsync(emailLog.Id); @@ -261,7 +264,8 @@ protected virtual async Task GetEmailObjectAsync( string? emailBodyType, string? emailTemplateName, string? emailCC = null, - string? emailBCC = null) + string? emailBCC = null, + bool excludeTemplate = false) { var toList = emailTo.ParseEmailList() ?? []; var ccList = emailCC.ParseEmailList(); @@ -274,28 +278,47 @@ protected virtual async Task GetEmailObjectAsync( emailObjectDictionary["body"] = body; emailObjectDictionary["bodyType"] = emailBodyType ?? "text"; - emailObjectDictionary["cc"] = ccList; - emailObjectDictionary["bcc"] = bccList; emailObjectDictionary["encoding"] = "utf-8"; emailObjectDictionary["from"] = emailFrom ?? defaultFromAddress ?? "NoReply@gov.bc.ca"; emailObjectDictionary["priority"] = "normal"; emailObjectDictionary["subject"] = subject; emailObjectDictionary["tag"] = "tag"; emailObjectDictionary["to"] = toList; - emailObjectDictionary["templateName"] = emailTemplateName; + + // Only include cc/bcc when provided CHES API expects arrays, not null. + if (ccList != null) + { + emailObjectDictionary["cc"] = ccList; + } + if (bccList != null) + { + emailObjectDictionary["bcc"] = bccList; + } + + // templateName is not part of the CHES MessageObject schema + // store it on the EmailLog but don't send it to the API. + if (!excludeTemplate) + { + emailObjectDictionary["templateName"] = emailTemplateName; + } return emailObject; } protected virtual EmailLog UpdateMappedEmailLog(EmailLog emailLog, dynamic emailDynamicObject) { + var dict = (IDictionary)emailDynamicObject; emailLog.Body = emailDynamicObject.body; emailLog.Subject = emailDynamicObject.subject; emailLog.BodyType = emailDynamicObject.bodyType; emailLog.FromAddress = emailDynamicObject.from; emailLog.ToAddress = string.Join(",", emailDynamicObject.to); - emailLog.CC = emailDynamicObject.cc != null ? string.Join(",", (IEnumerable)emailDynamicObject.cc) : string.Empty; - emailLog.BCC = emailDynamicObject.bcc != null ? string.Join(",", (IEnumerable)emailDynamicObject.bcc) : string.Empty; + emailLog.CC = dict.TryGetValue("cc", out var cc) && cc is IEnumerable ccList + ? string.Join(",", ccList) + : string.Empty; + emailLog.BCC = dict.TryGetValue("bcc", out var bcc) && bcc is IEnumerable bccList + ? string.Join(",", bccList) + : string.Empty; emailLog.TemplateName = emailDynamicObject.templateName; return emailLog; } diff --git a/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Web/Views/Settings/NotificationsSettingGroup/Default.js b/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Web/Views/Settings/NotificationsSettingGroup/Default.js index fbb5a29cb6..ca8c59cccd 100644 --- a/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Web/Views/Settings/NotificationsSettingGroup/Default.js +++ b/applications/Unity.GrantManager/modules/Unity.Notifications/src/Unity.Notifications.Web/Views/Settings/NotificationsSettingGroup/Default.js @@ -285,7 +285,10 @@ selector: `#${editorId}`, plugins: 'lists link image preview code', toolbar: 'undo redo | styles | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist | link image | code preview | variablesDropdownButton', - statusbar: false, + resize: true, + statusbar: true, + elementpath: false, + branding: false, promotion: false, content_css: false, skin: false, diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/Codes/CasPaymentRequestStatus.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/Codes/CasPaymentRequestStatus.cs index e10b259c9c..3b292dda57 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/Codes/CasPaymentRequestStatus.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/Codes/CasPaymentRequestStatus.cs @@ -4,6 +4,7 @@ public static class CasPaymentRequestStatus { // Unity Status public const string SentToCas = "SentToCas"; + public const string SentToAccountsPayable = "SentToAccountsPayable"; // CAS INVOICE STATUS public const string ErrorFromCas = "Error"; diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentRequests/ApplicationPaymentRollupDto.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentRequests/ApplicationPaymentRollupDto.cs new file mode 100644 index 0000000000..71053bd12f --- /dev/null +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentRequests/ApplicationPaymentRollupDto.cs @@ -0,0 +1,11 @@ +using System; + +namespace Unity.Payments.PaymentRequests; + +[Serializable] +public class ApplicationPaymentRollupDto +{ + public Guid ApplicationId { get; set; } + public decimal TotalPaid { get; set; } + public decimal TotalPending { get; set; } +} diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentRequests/IPaymentRequestAppService.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentRequests/IPaymentRequestAppService.cs index be35d094cf..7d1295eee4 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentRequests/IPaymentRequestAppService.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application.Contracts/PaymentRequests/IPaymentRequestAppService.cs @@ -21,5 +21,7 @@ public interface IPaymentRequestAppService : IApplicationService Task GetUserPaymentThresholdAsync(); Task ManuallyAddPaymentRequestsToReconciliationQueue(List paymentRequestIds); Task> GetPaymentPendingListByCorrelationIdAsync(Guid applicationId); + Task GetApplicationPaymentRollupAsync(Guid applicationId); + Task> GetApplicationPaymentRollupBatchAsync(List applicationIds); } } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/AccountCodings/AccountCoding.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/AccountCodings/AccountCoding.cs index 03c04bb23e..f510bb458e 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/AccountCodings/AccountCoding.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/AccountCodings/AccountCoding.cs @@ -4,6 +4,7 @@ using Volo.Abp.Domain.Entities.Auditing; using System.Linq; using Volo.Abp.MultiTenancy; +using Unity.Payments.PaymentRequests; namespace Unity.Payments.Domain.AccountCodings { @@ -16,6 +17,16 @@ public class AccountCoding : AuditedAggregateRoot, IMultiTenant public string Stob { get; private set; } public string ProjectNumber { get; private set; } + public string FullAccountCode() + { + return AccountCodingFormatter.Format(this); + } + + public string FullAccountCodeWithDescription() + { + return AccountCodingFormatter.FormatWithDescription(this); + } + public string? Description { get; private set; } public AccountCoding() diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/PaymentRequests/IPaymentRequestRepository.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/PaymentRequests/IPaymentRequestRepository.cs index 5ae55debbc..e4d488fcfd 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/PaymentRequests/IPaymentRequestRepository.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/PaymentRequests/IPaymentRequestRepository.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; +using Unity.Payments.PaymentRequests; using Volo.Abp.Domain.Repositories; namespace Unity.Payments.Domain.PaymentRequests @@ -14,6 +15,6 @@ public interface IPaymentRequestRepository : IRepository Task GetPaymentRequestByInvoiceNumber(string invoiceNumber); Task> GetPaymentRequestsByFailedsStatusAsync(); Task> GetPaymentPendingListByCorrelationIdAsync(Guid correlationId); - + Task> GetBatchPaymentRollupsByCorrelationIdsAsync(List correlationIds); } } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/IPaymentRequestQueryManager.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/IPaymentRequestQueryManager.cs index 222dc9f83d..3578156da8 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/IPaymentRequestQueryManager.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/IPaymentRequestQueryManager.cs @@ -35,5 +35,9 @@ public interface IPaymentRequestQueryManager // Pending Payments Task> GetPaymentPendingListByCorrelationIdAsync(Guid applicationId); + + // Payment Rollups (paid + pending aggregation) + Task GetApplicationPaymentRollupAsync(Guid applicationId, List childApplicationIds); + Task> GetApplicationPaymentRollupBatchAsync(List applicationIds, Dictionary> childApplicationIdsByParent); } } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentRequestQueryManager.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentRequestQueryManager.cs index f5fe8e9728..41aa2b516c 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentRequestQueryManager.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentRequestQueryManager.cs @@ -88,8 +88,10 @@ public async Task CreatePaymentRequestDtoAsync(Guid paymentRe public async Task> GetListByApplicationIdsAsync(List applicationIds) { var paymentsQueryable = await paymentRequestRepository.GetQueryableAsync(); - var payments = await paymentsQueryable.Include(pr => pr.Site).ToListAsync(); - var filteredPayments = payments.Where(pr => applicationIds.Contains(pr.CorrelationId)).ToList(); + var filteredPayments = await paymentsQueryable + .Include(pr => pr.Site) + .Where(pr => applicationIds.Contains(pr.CorrelationId)) + .ToListAsync(); return objectMapper.Map, List>(filteredPayments); } @@ -97,8 +99,10 @@ public async Task> GetListByApplicationIdsAsync(List> GetListByApplicationIdAsync(Guid applicationId) { var paymentsQueryable = await paymentRequestRepository.GetQueryableAsync(); - var payments = await paymentsQueryable.Include(pr => pr.Site).ToListAsync(); - var filteredPayments = payments.Where(e => e.CorrelationId == applicationId).ToList(); + var filteredPayments = await paymentsQueryable + .Include(pr => pr.Site) + .Where(e => e.CorrelationId == applicationId) + .ToListAsync(); return objectMapper.Map, List>(filteredPayments); } @@ -218,5 +222,98 @@ public async Task> GetPaymentPendingListByCorrelationIdA var payments = await paymentRequestRepository.GetPaymentPendingListByCorrelationIdAsync(applicationId); return objectMapper.Map, List>(payments); } + + /// + /// Retrieves a payment rollup for the specified application and its associated child applications. + /// + /// This method combines payment information from both the main application and its child + /// applications, providing an overall view of payment status. Use this method to obtain a single rollup when + /// displaying applications with related child records. + /// The unique identifier of the main application for which the payment rollup is requested. + /// A list of unique identifiers representing child applications whose payment data will be included in the + /// rollup. Cannot be null. + /// An instance of containing the aggregated total paid and pending + /// amounts for the main application and its child applications. + public async Task GetApplicationPaymentRollupAsync(Guid applicationId, List childApplicationIds) + { + var allCorrelationIds = new List { applicationId }; + allCorrelationIds.AddRange(childApplicationIds); + + var batchRollup = await paymentRequestRepository.GetBatchPaymentRollupsByCorrelationIdsAsync(allCorrelationIds); + + return new ApplicationPaymentRollupDto + { + ApplicationId = applicationId, + TotalPaid = batchRollup.Sum(s => s.TotalPaid), + TotalPending = batchRollup.Sum(s => s.TotalPending) + }; + } + + /// + /// Retrieves batch payment rollup information for the specified application IDs, aggregating totals + /// for both paid and pending amounts from parent and child applications. + /// + /// This method performs a single database query to efficiently aggregate payment data + /// for all specified parent and child applications. The results include all relevant payment information + /// for each application ID provided. + /// A list of unique identifiers for the applications whose payment rollups are to be retrieved. Cannot be + /// null or empty. + /// A dictionary that maps each parent application ID to a list of its child application IDs. Must not be null + /// and should contain valid GUIDs. + /// A dictionary where each key is an application ID and the value is an containing + /// the total paid and pending amounts for that application, including amounts from any child applications. + public async Task> GetApplicationPaymentRollupBatchAsync( + List applicationIds, + Dictionary> childApplicationIdsByParent) + { + // Collect all unique correlation IDs (parents + all children) for a single DB query + var allCorrelationIds = new HashSet(applicationIds); + foreach (var childIds in childApplicationIdsByParent.Values) + { + foreach (var childId in childIds) + { + allCorrelationIds.Add(childId); + } + } + + var paymentRollups = await paymentRequestRepository.GetBatchPaymentRollupsByCorrelationIdsAsync(allCorrelationIds.ToList()); + var rollupLookup = paymentRollups.ToDictionary(s => s.ApplicationId); + + var result = new Dictionary(); + foreach (var applicationId in applicationIds) + { + decimal totalPaid = 0; + decimal totalPending = 0; + + // Add the parent application's own amounts + if (rollupLookup.TryGetValue(applicationId, out var parentRollup)) + { + totalPaid += parentRollup.TotalPaid; + totalPending += parentRollup.TotalPending; + } + + // Add child application amounts + if (childApplicationIdsByParent.TryGetValue(applicationId, out var childIds)) + { + foreach (var childId in childIds) + { + if (rollupLookup.TryGetValue(childId, out var childApplicationRollup)) + { + totalPaid += childApplicationRollup.TotalPaid; + totalPending += childApplicationRollup.TotalPending; + } + } + } + + result[applicationId] = new ApplicationPaymentRollupDto + { + ApplicationId = applicationId, + TotalPaid = totalPaid, + TotalPending = totalPending + }; + } + + return result; + } } } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentsManager.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentsManager.cs index 73bd07d3c3..31ebc73262 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentsManager.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Domain/Services/PaymentsManager.cs @@ -9,6 +9,7 @@ using Unity.Payments.Domain.Shared; using Unity.Payments.Domain.Workflow; using Unity.Payments.Enums; +using Unity.Payments.Codes; using Unity.Payments.PaymentRequests; using Unity.Payments.Permissions; using Volo.Abp.Authorization.Permissions; @@ -150,6 +151,7 @@ public async Task TriggerAction(Guid paymentRequestsId, PaymentA if (preventPayment) { statusChangedTo = PaymentRequestStatus.FSB; + paymentRequest.SetInvoiceStatus(CasPaymentRequestStatus.SentToAccountsPayable); } else { diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/EntityFrameworkCore/Repositories/PaymentRequestRepository.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/EntityFrameworkCore/Repositories/PaymentRequestRepository.cs index acb7a4a8b2..be9999cd12 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/EntityFrameworkCore/Repositories/PaymentRequestRepository.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/EntityFrameworkCore/Repositories/PaymentRequestRepository.cs @@ -1,4 +1,5 @@ -using System; +using Microsoft.EntityFrameworkCore; +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; @@ -6,6 +7,7 @@ using Unity.Payments.Domain.PaymentRequests; using Unity.Payments.EntityFrameworkCore; using Unity.Payments.Enums; +using Unity.Payments.PaymentRequests; using Volo.Abp.Domain.Repositories.EntityFrameworkCore; using Volo.Abp.EntityFrameworkCore; @@ -16,13 +18,12 @@ public class PaymentRequestRepository : EfCoreRepository ReCheckStatusList { get; set; } = new List(); private List FailedStatusList { get; set; } = new List(); - - - public PaymentRequestRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) { ReCheckStatusList.Add(CasPaymentRequestStatus.ServiceUnavailable); ReCheckStatusList.Add(CasPaymentRequestStatus.SentToCas); + ReCheckStatusList.Add(CasPaymentRequestStatus.NotFound); + ReCheckStatusList.Add(CasPaymentRequestStatus.SentToAccountsPayable); ReCheckStatusList.Add(CasPaymentRequestStatus.NeverValidated); FailedStatusList.Add(CasPaymentRequestStatus.ServiceUnavailable); @@ -32,25 +33,27 @@ public PaymentRequestRepository(IDbContextProvider dbContextP public async Task GetCountByCorrelationId(Guid correlationId) { var dbSet = await GetDbSetAsync(); - return dbSet.Count(s => s.CorrelationId == correlationId); + return await dbSet.CountAsync(s => s.CorrelationId == correlationId); } public async Task GetPaymentRequestCountBySiteId(Guid siteId) { var dbSet = await GetDbSetAsync(); - return dbSet.Where(s => s.SiteId == siteId).Count(); - } + return await dbSet.Where(s => s.SiteId == siteId) + .CountAsync(); + } public async Task GetPaymentRequestByInvoiceNumber(string invoiceNumber) { var dbSet = await GetDbSetAsync(); - return dbSet.Where(s => s.InvoiceNumber == invoiceNumber).FirstOrDefault(); + return await dbSet.Where(s => s.InvoiceNumber == invoiceNumber) + .FirstOrDefaultAsync(); } public async Task GetTotalPaymentRequestAmountByCorrelationIdAsync(Guid correlationId) { var dbSet = await GetDbSetAsync(); - decimal applicationPaymentRequestsTotal = dbSet + decimal applicationPaymentRequestsTotal = await dbSet .Where(p => p.CorrelationId.Equals(correlationId)) .Where(p => p.Status != PaymentRequestStatus.L1Declined && p.Status != PaymentRequestStatus.L2Declined @@ -59,7 +62,7 @@ public async Task GetTotalPaymentRequestAmountByCorrelationIdAsync(Guid && p.InvoiceStatus != CasPaymentRequestStatus.ErrorFromCas) .GroupBy(p => p.CorrelationId) .Select(p => p.Sum(q => q.Amount)) - .FirstOrDefault(); + .FirstOrDefaultAsync(); return applicationPaymentRequestsTotal; } @@ -67,15 +70,19 @@ public async Task GetTotalPaymentRequestAmountByCorrelationIdAsync(Guid public async Task> GetPaymentRequestsBySentToCasStatusAsync() { var dbSet = await GetDbSetAsync(); - return dbSet.Where(p => p.InvoiceStatus != null && ReCheckStatusList.Contains(p.InvoiceStatus)).IncludeDetails().ToList(); + return await dbSet.Where(p => p.InvoiceStatus != null && ReCheckStatusList.Contains(p.InvoiceStatus)) + .IncludeDetails() + .ToListAsync(); } public async Task> GetPaymentRequestsByFailedsStatusAsync() { + // LastModificationTime is stored as UTC by ABP; use UtcNow for consistent 24-hour window + var cutoff = DateTime.UtcNow.AddDays(-1); var dbSet = await GetDbSetAsync(); - return dbSet.Where(p => p.InvoiceStatus != null - && FailedStatusList.Contains(p.InvoiceStatus) - && p.LastModificationTime >= DateTime.Now.AddDays(-2)).IncludeDetails().ToList(); + return await dbSet.Where(p => p.InvoiceStatus != null + && FailedStatusList.Contains(p.InvoiceStatus) + && p.LastModificationTime >= cutoff).IncludeDetails().ToListAsync(); } public override async Task> WithDetailsAsync() @@ -87,8 +94,52 @@ public override async Task> WithDetailsAsync() public async Task> GetPaymentPendingListByCorrelationIdAsync(Guid correlationId) { var dbSet = await GetDbSetAsync(); - return dbSet.Where(p => p.CorrelationId.Equals(correlationId)) - .Where(p => p.Status == PaymentRequestStatus.L1Pending || p.Status == PaymentRequestStatus.L2Pending).IncludeDetails().ToList(); + return await dbSet.Where(p => p.CorrelationId.Equals(correlationId)) + .Where(p => p.Status == PaymentRequestStatus.L1Pending || p.Status == PaymentRequestStatus.L2Pending) + .IncludeDetails() + .ToListAsync(); + } + + /// + /// Asynchronously retrieves payment rollup information for each specified correlation ID. + /// + /// This method queries the database for payment records associated with the provided + /// correlation IDs and aggregates payment amounts based on their status. Ensure that the correlation IDs are + /// valid to avoid empty results. + /// A list of correlation IDs used to filter payment records. Each ID must be a valid GUID. + /// A task that represents the asynchronous operation. The task result contains a list of + /// ApplicationPaymentRollupDto objects, each summarizing the total paid and total pending amounts for the + /// corresponding correlation ID. + [System.Diagnostics.CodeAnalysis.SuppressMessage("Performance", + "CA1862:Use the 'StringComparison' method overloads to perform case-insensitive string comparisons", + Justification = "EF Core does not support StringComparison - https://github.com/dotnet/efcore/issues/1222")] + public async Task> GetBatchPaymentRollupsByCorrelationIdsAsync(List correlationIds) + { + var dbSet = await GetDbSetAsync(); + + var results = await dbSet + .Where(p => correlationIds.Contains(p.CorrelationId)) + .GroupBy(p => p.CorrelationId) + .Select(g => new ApplicationPaymentRollupDto + { + ApplicationId = g.Key, + TotalPaid = g + .Where(p => p.PaymentStatus != null + && p.PaymentStatus.Trim().ToUpper() == CasPaymentRequestStatus.FullyPaid.ToUpper()) + .Sum(p => p.Amount), + TotalPending = g + .Where(p => p.Status == PaymentRequestStatus.L1Pending + || p.Status == PaymentRequestStatus.L2Pending + || p.Status == PaymentRequestStatus.L3Pending + || (p.Status == PaymentRequestStatus.Submitted + && string.IsNullOrEmpty(p.PaymentStatus) + && (string.IsNullOrEmpty(p.InvoiceStatus) + || !p.InvoiceStatus.Contains(CasPaymentRequestStatus.ErrorFromCas)))) + .Sum(p => p.Amount) + }) + .ToListAsync(); + + return results; } } } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/AccountCodingFormatter.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/AccountCodingFormatter.cs index 5c208a912b..071d6e6b68 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/AccountCodingFormatter.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/AccountCodingFormatter.cs @@ -43,5 +43,24 @@ public static string Format(AccountCoding? accountCoding) return string.Empty; } + + public static string FormatWithDescription(AccountCoding? accountCoding) + { + if (accountCoding == null) + { + return string.Empty; + } + + if (accountCoding.Responsibility != null + && accountCoding.ServiceLine != null + && accountCoding.Stob != null + && accountCoding.MinistryClient != null + && accountCoding.ProjectNumber != null) + { + return $"{accountCoding.MinistryClient}.{accountCoding.Responsibility}.{accountCoding.ServiceLine}.{accountCoding.Stob}.{accountCoding.ProjectNumber}.{AccountDistributionPostfix} {accountCoding.Description}"; + } + + return string.Empty; + } } } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/CasPaymentRequestCoordinator.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/CasPaymentRequestCoordinator.cs index 84b8cc8faf..7e2e287bec 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/CasPaymentRequestCoordinator.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/CasPaymentRequestCoordinator.cs @@ -1,6 +1,7 @@ using System.Threading.Tasks; using Unity.Payments.Domain.PaymentRequests; using System; +using System.Linq; using Volo.Abp.Application.Services; using System.Collections.Generic; using Volo.Abp.TenantManagement; @@ -8,7 +9,7 @@ using Volo.Abp.Uow; using Microsoft.Extensions.Logging; using Unity.Payments.Integrations.Cas; -using System.Linq; +using Unity.Payments.Codes; using Unity.Payments.RabbitMQ.QueueMessages; using Unity.Notifications.Integrations.RabbitMQ; @@ -138,6 +139,11 @@ public async Task AddPaymentRequestsToReconciliationQueue() paymentReqeust = await _paymentRequestsRepository.GetAsync(PaymentRequestId); if (paymentReqeust != null) { + if(paymentReqeust.InvoiceStatus == CasPaymentRequestStatus.NotFound && result.InvoiceStatus == CasPaymentRequestStatus.NotFound) + { + result.InvoiceStatus = CasPaymentRequestStatus.NotFound+"2"; + } + paymentReqeust.SetInvoiceStatus(result.InvoiceStatus ?? ""); paymentReqeust.SetPaymentStatus(result.PaymentStatus ?? ""); paymentReqeust.SetPaymentDate(result.PaymentDate ?? ""); diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/PaymentRequestAppService.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/PaymentRequestAppService.cs index 81c63c3b8f..8af0d4d534 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/PaymentRequestAppService.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/PaymentRequests/PaymentRequestAppService.cs @@ -4,19 +4,20 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; +using Unity.GrantManager.GrantApplications; using Unity.Payments.Domain.Exceptions; using Unity.Payments.Domain.PaymentRequests; using Unity.Payments.Domain.Services; using Unity.Payments.Domain.Shared; using Unity.Payments.Enums; +using Unity.Payments.PaymentRequests.Notifications; using Unity.Payments.Permissions; using Volo.Abp; using Volo.Abp.Application.Dtos; +using Volo.Abp.Authorization.Permissions; using Volo.Abp.Data; using Volo.Abp.Features; -using Volo.Abp.Authorization.Permissions; using Volo.Abp.Users; -using Unity.Payments.PaymentRequests.Notifications; namespace Unity.Payments.PaymentRequests { @@ -29,7 +30,8 @@ public class PaymentRequestAppService( IPaymentsManager paymentsManager, FsbPaymentNotifier fsbPaymentNotifier, IPaymentRequestQueryManager paymentRequestQueryManager, - IPaymentRequestConfigurationManager paymentRequestConfigurationManager) : PaymentsAppService, IPaymentRequestAppService + IPaymentRequestConfigurationManager paymentRequestConfigurationManager, + Lazy applicationLinksService) : PaymentsAppService, IPaymentRequestAppService { public async Task GetDefaultAccountCodingId() @@ -328,5 +330,38 @@ public async Task> GetPaymentPendingListByCorrelationIdA { return await paymentRequestQueryManager.GetPaymentPendingListByCorrelationIdAsync(applicationId); } + + /// + /// Retrieves the payment rollup for the specified application, including any linked child + /// applications. + /// + /// This method first obtains any child applications associated with the given + /// application ID and then queries the payment rollup for both the application and its children. Use this + /// method to obtain a comprehensive payment overview when applications may be linked together. + /// The unique identifier of the application for which the payment rollup is requested. + /// An instance of containing the payment rollup details for the + /// specified application and its linked child applications. + public async Task GetApplicationPaymentRollupAsync(Guid applicationId) + { + var childLinks = await applicationLinksService.Value.GetChildApplications(applicationId); + var childApplicationIds = childLinks.Select(l => l.LinkedApplicationId).ToList(); + return await paymentRequestQueryManager.GetApplicationPaymentRollupAsync(applicationId, childApplicationIds); + } + + /// + /// Retrieves batch payment rollup information for the specified applications and their child applications. + /// + /// This method asynchronously resolves child applications linked to the provided + /// application identifiers before fetching a batch of payment rollups. Ensure that all application identifiers are valid + /// and exist in the system. + /// A list of application identifiers for which payment rollups are requested. This parameter cannot be null + /// or empty. + /// A dictionary mapping each application identifier to its corresponding . The dictionary + /// includes entries for both the specified applications and their child applications. + public async Task> GetApplicationPaymentRollupBatchAsync(List applicationIds) + { + var childApplicationIdsByParent = await applicationLinksService.Value.GetChildApplicationIdsByParentIdsAsync(applicationIds); + return await paymentRequestQueryManager.GetApplicationPaymentRollupBatchAsync(applicationIds, childApplicationIdsByParent); + } } } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs index 8f9610d1b9..d29c48009b 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs @@ -18,6 +18,7 @@ public override void Define(IPermissionDefinitionContext context) paymentsPermissions.AddChild(PaymentsPermissions.Payments.L2ApproveOrDecline, L("Permission:Payments.L2ApproveOrDecline")); paymentsPermissions.AddChild(PaymentsPermissions.Payments.L3ApproveOrDecline, L("Permission:Payments.L3ApproveOrDecline")); paymentsPermissions.AddChild(PaymentsPermissions.Payments.RequestPayment, L("Permission:Payments.RequestPayment")); + paymentsPermissions.AddChild(PaymentsPermissions.Payments.AccountCodingOverride, L("Permission:Payments.AccountCodingOverride")); //-- PAYMENT INFO PERMISSIONS grantApplicationPermissionsGroup.Add_PaymentInfo_Permissions(); diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json index 0a18cb85e3..79e9083674 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json @@ -25,6 +25,8 @@ "ApplicationPaymentRequest:BatchNumberName": "Batch #", "ApplicationPaymentRequest:NumberPayment": "Number of Payments", "ApplicationPaymentRequest:TotalAmount": "Total Amount", + "ApplicationPaymentRequest:AccountCodingOverride": "Account Coding Override", + "ApplicationPaymentRequest:AccountCodingOverrideWarning": "An overridden account code is being used for this payment request.", "ApplicationPaymentRequest:BatchNote": "Note", "ApplicationPaymentRequest:Validations:RemainingAmountExceeded": "Cannot add a payment that exceeds the remaining amount of ", @@ -120,6 +122,7 @@ "Permission:Payments.L2ApproveOrDecline": "Approve/Decline L2 Payments", "Permission:Payments.L3ApproveOrDecline": "Approve/Decline L3 Payments", "Permission:Payments.RequestPayment": "Request Payment", + "Permission:Payments.AccountCodingOverride": "Override Account Coding", "Permission:Payments.EditFormPaymentConfiguration": "Edit Form Payment Configuration", "Enum:PaymentRequestStatus.L1Pending": "L1 Pending", "Enum:PaymentRequestStatus.L1Approved": "L1 Approved", diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Permissions/PaymentsPermissions.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Permissions/PaymentsPermissions.cs index fc28917033..0cda791d74 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Permissions/PaymentsPermissions.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Permissions/PaymentsPermissions.cs @@ -14,6 +14,7 @@ public static class Payments public const string L3ApproveOrDecline = Default + ".L3ApproveOrDecline"; public const string Decline = Default + ".Decline"; public const string RequestPayment = Default + ".RequestPayment"; + public const string AccountCodingOverride = Default + ".AccountCodingOverride"; public const string EditSupplierInfo = Default + ".EditSupplierInfo"; public const string EditFormPaymentConfiguration = Default + ".EditFormPaymentConfiguration"; } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml index 7b0f73fdd3..7509ead8f8 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml @@ -2,12 +2,15 @@ @using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal @using Unity.Payments.Localization @using Microsoft.Extensions.Localization - +@using Unity.Payments.Permissions +@using Volo.Abp.Authorization.Permissions; +@inject IPermissionChecker PermissionChecker @model Unity.Payments.Web.Pages.Payments.CreatePaymentRequestsModel @inject IStringLocalizer L @{ Layout = null; + var canOverride = await PermissionChecker.IsGrantedAsync(PaymentsPermissions.Payments.AccountCodingOverride); } ').appendTo('head'); + $('').appendTo('head'); } } diff --git a/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css b/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css index 382cabb108..a054982d3c 100644 --- a/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css +++ b/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css @@ -265,6 +265,7 @@ table.dataTable { margin-top: 32px; margin-left: 12px; color: var(--bc-colors-grey-text-300); + font-size: var(--bc-font-size); } .unity-input-group input { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/AIJsonKeys.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/AIJsonKeys.cs new file mode 100644 index 0000000000..5ebbf4df9b --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/AIJsonKeys.cs @@ -0,0 +1,20 @@ +namespace Unity.GrantManager.AI +{ + public static class AIJsonKeys + { + public const string Rating = "rating"; + public const string Errors = "errors"; + public const string Warnings = "warnings"; + public const string Summaries = "summaries"; + public const string Dismissed = "dismissed"; + + public const string Id = "id"; + public const string Title = "title"; + public const string Detail = "detail"; + public const string Summary = "summary"; + + public const string Answer = "answer"; + public const string Rationale = "rationale"; + public const string Confidence = "confidence"; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/IAIService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/IAIService.cs index e4c3d26ac8..160f8ed233 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/IAIService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/IAIService.cs @@ -6,10 +6,17 @@ namespace Unity.GrantManager.AI public interface IAIService { Task IsAvailableAsync(); - Task GenerateSummaryAsync(string content, string? prompt = null, int maxTokens = 150); + + Task GenerateCompletionAsync(AICompletionRequest request); + Task GenerateAttachmentSummaryAsync(AttachmentSummaryRequest request); Task GenerateAttachmentSummaryAsync(string fileName, byte[] fileContent, string contentType); + Task GenerateApplicationAnalysisAsync(ApplicationAnalysisRequest request); + Task GenerateScoresheetSectionAnswersAsync(ScoresheetSectionRequest request); + Task GenerateScoresheetSectionAnswersAsync(string applicationContent, List attachmentSummaries, string sectionJson, string sectionName); + + // Legacy compatibility methods retained until flow orchestration refactor. + Task GenerateSummaryAsync(string content, string? prompt = null, int maxTokens = 150); Task AnalyzeApplicationAsync(string applicationContent, List attachmentSummaries, string rubric, string? formFieldConfiguration = null); Task GenerateScoresheetAnswersAsync(string applicationContent, List attachmentSummaries, string scoresheetQuestions); - Task GenerateScoresheetSectionAnswersAsync(string applicationContent, List attachmentSummaries, string sectionJson, string sectionName); } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/AIAttachmentItem.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/AIAttachmentItem.cs new file mode 100644 index 0000000000..fc4b31e2a9 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/AIAttachmentItem.cs @@ -0,0 +1,13 @@ +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class AIAttachmentItem + { + [JsonPropertyName("name")] + public string Name { get; set; } = string.Empty; + + [JsonPropertyName(AIJsonKeys.Summary)] + public string Summary { get; set; } = string.Empty; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/ApplicationAnalysisFinding.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/ApplicationAnalysisFinding.cs new file mode 100644 index 0000000000..79785fee59 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/ApplicationAnalysisFinding.cs @@ -0,0 +1,16 @@ +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class ApplicationAnalysisFinding + { + [JsonPropertyName(AIJsonKeys.Id)] + public string? Id { get; set; } + + [JsonPropertyName(AIJsonKeys.Title)] + public string? Title { get; set; } + + [JsonPropertyName(AIJsonKeys.Detail)] + public string? Detail { get; set; } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/ScoresheetSectionAnswer.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/ScoresheetSectionAnswer.cs new file mode 100644 index 0000000000..0a76cbb0e0 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Models/ScoresheetSectionAnswer.cs @@ -0,0 +1,17 @@ +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class ScoresheetSectionAnswer + { + [JsonPropertyName(AIJsonKeys.Answer)] + public JsonElement Answer { get; set; } + + [JsonPropertyName(AIJsonKeys.Rationale)] + public string Rationale { get; set; } = string.Empty; + + [JsonPropertyName(AIJsonKeys.Confidence)] + public int Confidence { get; set; } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/AICompletionRequest.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/AICompletionRequest.cs new file mode 100644 index 0000000000..2ec1bf8d30 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/AICompletionRequest.cs @@ -0,0 +1,19 @@ +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class AICompletionRequest + { + [JsonPropertyName("userPrompt")] + public string UserPrompt { get; set; } = string.Empty; + + [JsonPropertyName("systemPrompt")] + public string? SystemPrompt { get; set; } + + [JsonPropertyName("maxTokens")] + public int MaxTokens { get; set; } = 150; + + [JsonPropertyName("temperature")] + public double? Temperature { get; set; } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/ApplicationAnalysisRequest.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/ApplicationAnalysisRequest.cs new file mode 100644 index 0000000000..fcd809b8b8 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/ApplicationAnalysisRequest.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class ApplicationAnalysisRequest + { + [JsonPropertyName("schema")] + public JsonElement Schema { get; set; } + + [JsonPropertyName("data")] + public JsonElement Data { get; set; } + + [JsonPropertyName("attachments")] + public List Attachments { get; set; } = new(); + + [JsonPropertyName("rubric")] + public string? Rubric { get; set; } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/AttachmentSummaryRequest.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/AttachmentSummaryRequest.cs new file mode 100644 index 0000000000..c0e1bfd1ee --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/AttachmentSummaryRequest.cs @@ -0,0 +1,16 @@ +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class AttachmentSummaryRequest + { + [JsonPropertyName("fileName")] + public string FileName { get; set; } = string.Empty; + + [JsonPropertyName("fileContent")] + public byte[] FileContent { get; set; } = System.Array.Empty(); + + [JsonPropertyName("contentType")] + public string ContentType { get; set; } = "application/octet-stream"; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/ScoresheetSectionRequest.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/ScoresheetSectionRequest.cs new file mode 100644 index 0000000000..870412d079 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Requests/ScoresheetSectionRequest.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class ScoresheetSectionRequest + { + [JsonPropertyName("data")] + public JsonElement Data { get; set; } + + [JsonPropertyName("attachments")] + public List Attachments { get; set; } = new(); + + [JsonPropertyName("sectionName")] + public string SectionName { get; set; } = string.Empty; + + [JsonPropertyName("sectionSchema")] + public JsonElement SectionSchema { get; set; } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/AICompletionResponse.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/AICompletionResponse.cs new file mode 100644 index 0000000000..316d2ef162 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/AICompletionResponse.cs @@ -0,0 +1,10 @@ +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class AICompletionResponse + { + [JsonPropertyName("content")] + public string Content { get; set; } = string.Empty; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/ApplicationAnalysisResponse.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/ApplicationAnalysisResponse.cs new file mode 100644 index 0000000000..e8a5afa194 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/ApplicationAnalysisResponse.cs @@ -0,0 +1,23 @@ +using System.Collections.Generic; +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class ApplicationAnalysisResponse + { + [JsonPropertyName(AIJsonKeys.Rating)] + public string? Rating { get; set; } + + [JsonPropertyName(AIJsonKeys.Errors)] + public List Errors { get; set; } = new(); + + [JsonPropertyName(AIJsonKeys.Warnings)] + public List Warnings { get; set; } = new(); + + [JsonPropertyName(AIJsonKeys.Summaries)] + public List Summaries { get; set; } = new(); + + [JsonPropertyName(AIJsonKeys.Dismissed)] + public List Dismissed { get; set; } = new(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/AttachmentSummaryResponse.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/AttachmentSummaryResponse.cs new file mode 100644 index 0000000000..4f30b8c44a --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/AttachmentSummaryResponse.cs @@ -0,0 +1,10 @@ +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class AttachmentSummaryResponse + { + [JsonPropertyName(AIJsonKeys.Summary)] + public string Summary { get; set; } = string.Empty; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/ScoresheetSectionResponse.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/ScoresheetSectionResponse.cs new file mode 100644 index 0000000000..cf4569dd07 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/AI/Responses/ScoresheetSectionResponse.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.AI +{ + public class ScoresheetSectionResponse + { + [JsonPropertyName("answers")] + public Dictionary Answers { get; set; } = new(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ApplicantProfileDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ApplicantProfileDto.cs similarity index 76% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ApplicantProfileDto.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ApplicantProfileDto.cs index 9ec81114fb..c36d91fe4b 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ApplicantProfileDto.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ApplicantProfileDto.cs @@ -1,7 +1,7 @@ using System; -using Unity.GrantManager.Applicants.ProfileData; +using Unity.GrantManager.ApplicantProfile.ProfileData; -namespace Unity.GrantManager.Applicants +namespace Unity.GrantManager.ApplicantProfile { public class ApplicantProfileDto { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ApplicantProfileRequest.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ApplicantProfileRequest.cs similarity index 89% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ApplicantProfileRequest.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ApplicantProfileRequest.cs index 9f65d31cdb..5b6ef5b92c 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ApplicantProfileRequest.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ApplicantProfileRequest.cs @@ -1,6 +1,6 @@ using System; -namespace Unity.GrantManager.Applicants +namespace Unity.GrantManager.ApplicantProfile { public class ApplicantProfileRequest { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/AuditHistoryDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/AuditHistoryDto.cs new file mode 100644 index 0000000000..481563d524 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/AuditHistoryDto.cs @@ -0,0 +1,12 @@ +using System; +using Volo.Abp.Application.Dtos; + +namespace Unity.GrantManager.ApplicantProfile; + +public class AuditHistoryDto : AuditedEntityDto +{ + public Guid? ApplicantId { get; set; } + public string? AuditTrackingNumber { get; set; } + public DateTime? AuditDate { get; set; } + public string? AuditNote { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateAuditHistoryDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateAuditHistoryDto.cs new file mode 100644 index 0000000000..2857823606 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateAuditHistoryDto.cs @@ -0,0 +1,11 @@ +using System; + +namespace Unity.GrantManager.ApplicantProfile; + +public class CreateUpdateAuditHistoryDto +{ + public Guid? ApplicantId { get; set; } + public string? AuditTrackingNumber { get; set; } + public DateTime? AuditDate { get; set; } + public string? AuditNote { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateFundingHistoryDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateFundingHistoryDto.cs new file mode 100644 index 0000000000..a1d9332cdf --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateFundingHistoryDto.cs @@ -0,0 +1,15 @@ +using System; + +namespace Unity.GrantManager.ApplicantProfile; + +public class CreateUpdateFundingHistoryDto +{ + public Guid? ApplicantId { get; set; } + public string? GrantCategory { get; set; } + public int? FundingYear { get; set; } + public bool? RenewedFunding { get; set; } + public decimal? ApprovedAmount { get; set; } + public decimal? ReconsiderationAmount { get; set; } + public decimal? TotalGrantAmount { get; set; } + public string? FundingNotes { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateIssueTrackingDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateIssueTrackingDto.cs new file mode 100644 index 0000000000..a7aaae5e80 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/CreateUpdateIssueTrackingDto.cs @@ -0,0 +1,13 @@ +using System; + +namespace Unity.GrantManager.ApplicantProfile; + +public class CreateUpdateIssueTrackingDto +{ + public Guid? ApplicantId { get; set; } + public int? Year { get; set; } + public string? IssueHeading { get; set; } + public string? IssueDescription { get; set; } + public bool? Resolved { get; set; } + public string? ResolutionNote { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/FundingHistoryDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/FundingHistoryDto.cs new file mode 100644 index 0000000000..cdb292ba68 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/FundingHistoryDto.cs @@ -0,0 +1,16 @@ +using System; +using Volo.Abp.Application.Dtos; + +namespace Unity.GrantManager.ApplicantProfile; + +public class FundingHistoryDto : AuditedEntityDto +{ + public Guid? ApplicantId { get; set; } + public string? GrantCategory { get; set; } + public int? FundingYear { get; set; } + public bool? RenewedFunding { get; set; } + public decimal? ApprovedAmount { get; set; } + public decimal? ReconsiderationAmount { get; set; } + public decimal? TotalGrantAmount { get; set; } + public string? FundingNotes { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/IApplicantHistoryAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/IApplicantHistoryAppService.cs new file mode 100644 index 0000000000..8265fd590a --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/IApplicantHistoryAppService.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Volo.Abp.Application.Services; + +namespace Unity.GrantManager.ApplicantProfile; + +public interface IApplicantHistoryAppService : IApplicationService +{ + Task> GetFundingHistoryListAsync(Guid applicantId); + Task GetFundingHistoryAsync(Guid id); + Task CreateFundingHistoryAsync(CreateUpdateFundingHistoryDto input); + Task UpdateFundingHistoryAsync(Guid id, CreateUpdateFundingHistoryDto input); + Task DeleteFundingHistoryAsync(Guid id); + + Task> GetIssueTrackingListAsync(Guid applicantId); + Task GetIssueTrackingAsync(Guid id); + Task CreateIssueTrackingAsync(CreateUpdateIssueTrackingDto input); + Task UpdateIssueTrackingAsync(Guid id, CreateUpdateIssueTrackingDto input); + Task DeleteIssueTrackingAsync(Guid id); + + Task> GetAuditHistoryListAsync(Guid applicantId); + Task GetAuditHistoryAsync(Guid id); + Task CreateAuditHistoryAsync(CreateUpdateAuditHistoryDto input); + Task UpdateAuditHistoryAsync(Guid id, CreateUpdateAuditHistoryDto input); + Task DeleteAuditHistoryAsync(Guid id); + + Task SaveNotesAsync(Guid applicantId, SaveApplicantHistoryNotesDto input); +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/IssueTrackingDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/IssueTrackingDto.cs new file mode 100644 index 0000000000..4c2fb42e33 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/IssueTrackingDto.cs @@ -0,0 +1,14 @@ +using System; +using Volo.Abp.Application.Dtos; + +namespace Unity.GrantManager.ApplicantProfile; + +public class IssueTrackingDto : AuditedEntityDto +{ + public Guid? ApplicantId { get; set; } + public int? Year { get; set; } + public string? IssueHeading { get; set; } + public string? IssueDescription { get; set; } + public bool? Resolved { get; set; } + public string? ResolutionNote { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/SaveApplicantHistoryNotesDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/SaveApplicantHistoryNotesDto.cs new file mode 100644 index 0000000000..8e72c9c8c5 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/History/SaveApplicantHistoryNotesDto.cs @@ -0,0 +1,8 @@ +namespace Unity.GrantManager.ApplicantProfile; + +public class SaveApplicantHistoryNotesDto +{ + public string? FundingHistoryComments { get; set; } + public string? IssueTrackingComments { get; set; } + public string? AuditComments { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/IApplicantProfileAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileAppService.cs similarity index 82% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/IApplicantProfileAppService.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileAppService.cs index 968cef47f5..feb3645823 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/IApplicantProfileAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileAppService.cs @@ -1,7 +1,8 @@ using System.Collections.Generic; using System.Threading.Tasks; +using Unity.GrantManager.Applicants; -namespace Unity.GrantManager.Applicants +namespace Unity.GrantManager.ApplicantProfile { public interface IApplicantProfileAppService { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileContactService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileContactService.cs new file mode 100644 index 0000000000..3db1d7dcd6 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileContactService.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile.ProfileData; + +namespace Unity.GrantManager.ApplicantProfile; + +/// +/// Provides applicant-profile-specific contact retrieval operations. +/// This service aggregates contacts from three sources: profile-linked contacts, +/// application-level contacts matched by OIDC subject, and applicant agent +/// contacts derived from the submission login token. +/// +public interface IApplicantProfileContactService +{ + /// + /// Retrieves contacts linked to the specified applicant profile. + /// + /// The unique identifier of the applicant profile. + /// A list of with IsEditable set to true. + Task> GetProfileContactsAsync(Guid profileId); + + /// + /// Retrieves application contacts associated with submissions matching the given OIDC subject. + /// The subject is normalized by stripping the domain portion (after @) and converting to upper case. + /// + /// The OIDC subject identifier (e.g. "user@idir"). + /// A list of with IsEditable set to false. + Task> GetApplicationContactsBySubjectAsync(string subject); + + /// + /// Retrieves contacts derived from applicant agents on applications whose form submissions + /// match the given OIDC subject. The join path is Submission → Application → ApplicantAgent. + /// The subject is normalized by stripping the domain portion (after @) and converting to upper case. + /// + /// The OIDC subject identifier (e.g. "user@idir"). + /// A list of with IsEditable set to false. + Task> GetApplicantAgentContactsBySubjectAsync(string subject); +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/IApplicantProfileDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileDataProvider.cs similarity index 90% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/IApplicantProfileDataProvider.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileDataProvider.cs index 6a1b6b6914..1dd8404874 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/IApplicantProfileDataProvider.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/IApplicantProfileDataProvider.cs @@ -1,7 +1,7 @@ using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ProfileData; +using Unity.GrantManager.ApplicantProfile.ProfileData; -namespace Unity.GrantManager.Applicants.ApplicantProfile +namespace Unity.GrantManager.ApplicantProfile { /// /// Defines a contract for components that can provide applicant profile data diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/AddressInfoItemDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/AddressInfoItemDto.cs new file mode 100644 index 0000000000..5ad2a67c1f --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/AddressInfoItemDto.cs @@ -0,0 +1,20 @@ +using System; + +namespace Unity.GrantManager.ApplicantProfile.ProfileData +{ + public class AddressInfoItemDto + { + public Guid Id { get; set; } + public string AddressType { get; set; } = string.Empty; + public string Street { get; set; } = string.Empty; + public string Street2 { get; set; } = string.Empty; + public string Unit { get; set; } = string.Empty; + public string City { get; set; } = string.Empty; + public string Province { get; set; } = string.Empty; + public string PostalCode { get; set; } = string.Empty; + public string Country { get; set; } = string.Empty; + public bool IsPrimary { get; set; } + public bool IsEditable { get; set; } + public string? ReferenceNo { get; set; } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantAddressInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantAddressInfoDto.cs new file mode 100644 index 0000000000..f7b956aba2 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantAddressInfoDto.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; + +namespace Unity.GrantManager.ApplicantProfile.ProfileData +{ + public class ApplicantAddressInfoDto : ApplicantProfileDataDto + { + public override string DataType => "ADDRESSINFO"; + + public List Addresses { get; set; } = []; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantContactInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantContactInfoDto.cs new file mode 100644 index 0000000000..716f78928c --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantContactInfoDto.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; + +namespace Unity.GrantManager.ApplicantProfile.ProfileData +{ + public class ApplicantContactInfoDto : ApplicantProfileDataDto + { + public override string DataType => "CONTACTINFO"; + + public List Contacts { get; set; } = []; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantOrgInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantOrgInfoDto.cs similarity index 69% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantOrgInfoDto.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantOrgInfoDto.cs index c14ac04137..4a99135f3d 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantOrgInfoDto.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantOrgInfoDto.cs @@ -1,4 +1,4 @@ -namespace Unity.GrantManager.Applicants.ProfileData +namespace Unity.GrantManager.ApplicantProfile.ProfileData { public class ApplicantOrgInfoDto : ApplicantProfileDataDto { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantPaymentInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantPaymentInfoDto.cs similarity index 70% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantPaymentInfoDto.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantPaymentInfoDto.cs index a6f7b77c3a..c17c89eebe 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantPaymentInfoDto.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantPaymentInfoDto.cs @@ -1,4 +1,4 @@ -namespace Unity.GrantManager.Applicants.ProfileData +namespace Unity.GrantManager.ApplicantProfile.ProfileData { public class ApplicantPaymentInfoDto : ApplicantProfileDataDto { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantProfileDataDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantProfileDataDto.cs new file mode 100644 index 0000000000..65da1a0fac --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantProfileDataDto.cs @@ -0,0 +1,15 @@ +using System.Text.Json.Serialization; + +namespace Unity.GrantManager.ApplicantProfile.ProfileData +{ + [JsonPolymorphic(TypeDiscriminatorPropertyName = "dataType")] + [JsonDerivedType(typeof(ApplicantContactInfoDto), "CONTACTINFO")] + [JsonDerivedType(typeof(ApplicantOrgInfoDto), "ORGINFO")] + [JsonDerivedType(typeof(ApplicantAddressInfoDto), "ADDRESSINFO")] + [JsonDerivedType(typeof(ApplicantSubmissionInfoDto), "SUBMISSIONINFO")] + [JsonDerivedType(typeof(ApplicantPaymentInfoDto), "PAYMENTINFO")] + public class ApplicantProfileDataDto + { + public virtual string DataType { get; } = ""; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantSubmissionInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantSubmissionInfoDto.cs new file mode 100644 index 0000000000..9c1fc36c73 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ApplicantSubmissionInfoDto.cs @@ -0,0 +1,12 @@ +using System.Collections.Generic; + +namespace Unity.GrantManager.ApplicantProfile.ProfileData +{ + public class ApplicantSubmissionInfoDto : ApplicantProfileDataDto + { + public override string DataType => "SUBMISSIONINFO"; + + public List Submissions { get; set; } = []; + public string LinkSource { get; set; } = string.Empty; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ContactInfoItemDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ContactInfoItemDto.cs new file mode 100644 index 0000000000..112eed817b --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/ContactInfoItemDto.cs @@ -0,0 +1,22 @@ +using System; + +namespace Unity.GrantManager.ApplicantProfile.ProfileData +{ + public class ContactInfoItemDto + { + public Guid ContactId { get; set; } + public string Name { get; set; } = string.Empty; + public string? Title { get; set; } + public string? Email { get; set; } + public string? HomePhoneNumber { get; set; } + public string? MobilePhoneNumber { get; set; } + public string? WorkPhoneNumber { get; set; } + public string? WorkPhoneExtension { get; set; } + public string? ContactType { get; set; } + public string? Role { get; set; } + public bool IsPrimary { get; set; } + public bool IsEditable { get; set; } + public Guid? ApplicationId { get; set; } + public string? ReferenceNo { get; set; } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/SubmissionInfoItemDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/SubmissionInfoItemDto.cs new file mode 100644 index 0000000000..bc1b54c02f --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/ApplicantProfile/ProfileData/SubmissionInfoItemDto.cs @@ -0,0 +1,15 @@ +using System; + +namespace Unity.GrantManager.ApplicantProfile.ProfileData +{ + public class SubmissionInfoItemDto + { + public Guid Id { get; set; } + public string LinkId { get; set; } = string.Empty; + public DateTime ReceivedTime { get; set; } + public DateTime SubmissionTime { get; set; } + public string ReferenceNo { get; set; } = string.Empty; + public string ProjectName { get; set; } = string.Empty; + public string Status { get; set; } = string.Empty; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantAddressInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantAddressInfoDto.cs deleted file mode 100644 index fde1734a05..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantAddressInfoDto.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Unity.GrantManager.Applicants.ProfileData -{ - public class ApplicantAddressInfoDto : ApplicantProfileDataDto - { - public override string DataType => "ADDRESSINFO"; - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantContactInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantContactInfoDto.cs deleted file mode 100644 index 74c15630b9..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantContactInfoDto.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Unity.GrantManager.Applicants.ProfileData -{ - public class ApplicantContactInfoDto : ApplicantProfileDataDto - { - public override string DataType => "CONTACTINFO"; - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantProfileDataDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantProfileDataDto.cs deleted file mode 100644 index 3c717b28b8..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantProfileDataDto.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Unity.GrantManager.Applicants.ProfileData -{ - public class ApplicantProfileDataDto - { - public virtual string DataType { get; } = ""; - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantSubmissionInfoDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantSubmissionInfoDto.cs deleted file mode 100644 index 4c0a0ba60b..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Applicants/ProfileData/ApplicantSubmissionInfoDto.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Unity.GrantManager.Applicants.ProfileData -{ - public class ApplicantSubmissionInfoDto : ApplicantProfileDataDto - { - public override string DataType => "SUBMISSIONINFO"; - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentDto.cs index f11a22cc53..3dc9eb44c1 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentDto.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentDto.cs @@ -15,6 +15,7 @@ public class AssessmentDto : EntityDto public AssessmentState Status { get; set; } public bool IsComplete { get; set; } public bool? ApprovalRecommended { get; set; } + public bool IsAiAssessment { get; set; } } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentListItemDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentListItemDto.cs index 9cb78cee74..f1e9606f65 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentListItemDto.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/AssessmentListItemDto.cs @@ -17,7 +17,8 @@ public class AssessmentListItemDto public AssessmentState Status { get; set; } public bool IsComplete { get; set; } public bool? ApprovalRecommended { get; set; } - + public bool IsAiAssessment { get; set; } + public double SubTotal { get; set; } public int? FinancialAnalysis { get; set; } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/IAssessmentAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/IAssessmentAppService.cs index 0ed44b9737..6965da148b 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/IAssessmentAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Assessments/IAssessmentAppService.cs @@ -16,4 +16,6 @@ public interface IAssessmentAppService : IApplicationService Task GetCurrentUserAssessmentId(Guid applicationId); Task UpdateAssessmentScore(AssessmentScoresDto dto); Task SaveScoresheetSectionAnswers(AssessmentScoreSectionDto dto); + Task CloneFromAiAsync(Guid aiAssessmentId); + Task GetDisplayList(Guid applicationId); } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/ContactDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/ContactDto.cs new file mode 100644 index 0000000000..263a547570 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/ContactDto.cs @@ -0,0 +1,39 @@ +using System; + +namespace Unity.GrantManager.Contacts; + +/// +/// Represents a contact linked to an entity, returned by the generic contacts service. +/// +public class ContactDto +{ + /// The unique identifier of the contact. + public Guid ContactId { get; set; } + + /// The full name of the contact. + public string Name { get; set; } = string.Empty; + + /// The job title of the contact. + public string? Title { get; set; } + + /// The email address of the contact. + public string? Email { get; set; } + + /// The home phone number of the contact. + public string? HomePhoneNumber { get; set; } + + /// The mobile phone number of the contact. + public string? MobilePhoneNumber { get; set; } + + /// The work phone number of the contact. + public string? WorkPhoneNumber { get; set; } + + /// The work phone extension of the contact. + public string? WorkPhoneExtension { get; set; } + + /// The role of the contact within the linked entity context. + public string? Role { get; set; } + + /// Whether this contact is the primary contact for the linked entity. + public bool IsPrimary { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/CreateContactLinkDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/CreateContactLinkDto.cs new file mode 100644 index 0000000000..58e49b7ed4 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/CreateContactLinkDto.cs @@ -0,0 +1,42 @@ +using System; + +namespace Unity.GrantManager.Contacts; + +/// +/// Input DTO for creating a new contact and linking it to a related entity. +/// +public class CreateContactLinkDto +{ + /// The full name of the contact. + public string Name { get; set; } = string.Empty; + + /// The job title of the contact. + public string? Title { get; set; } + + /// The email address of the contact. + public string? Email { get; set; } + + /// The home phone number of the contact. + public string? HomePhoneNumber { get; set; } + + /// The mobile phone number of the contact. + public string? MobilePhoneNumber { get; set; } + + /// The work phone number of the contact. + public string? WorkPhoneNumber { get; set; } + + /// The work phone extension of the contact. + public string? WorkPhoneExtension { get; set; } + + /// The role of the contact within the linked entity context. + public string? Role { get; set; } + + /// Whether this contact should be set as the primary contact. Only one primary is allowed per entity type and entity ID. + public bool IsPrimary { get; set; } + + /// The type of the entity to link the contact to (e.g. "ApplicantProfile"). + public string RelatedEntityType { get; set; } = string.Empty; + + /// The unique identifier of the related entity. + public Guid RelatedEntityId { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/IContactAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/IContactAppService.cs new file mode 100644 index 0000000000..4a07057c5d --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Contacts/IContactAppService.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace Unity.GrantManager.Contacts; + +/// +/// Generic contact management service. Provides operations for creating, retrieving, +/// and managing contacts linked to any entity type via . +/// +public interface IContactAppService +{ + /// + /// Retrieves all active contacts linked to the specified entity. + /// + /// The type of the related entity (e.g. "ApplicantProfile"). + /// The unique identifier of the related entity. + /// A list of for the matching entity. + Task> GetContactsByEntityAsync(string entityType, Guid entityId); + + /// + /// Creates a new contact and links it to the specified entity. + /// If is true, any existing primary + /// contact for the same entity type and ID will be cleared first. + /// + /// The contact and link details. + /// The created . + Task CreateContactAsync(CreateContactLinkDto input); + + /// + /// Sets the specified contact as the primary contact for the given entity. + /// Only one primary contact is allowed per entity type and entity ID; + /// any existing primary will be cleared before setting the new one. + /// + /// The type of the related entity. + /// The unique identifier of the related entity. + /// The unique identifier of the contact to set as primary. + /// Thrown when no active contact link is found for the given parameters. + Task SetPrimaryContactAsync(string entityType, Guid entityId, Guid contactId); +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/GrantApplicationDto.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/GrantApplicationDto.cs index 31a35a8739..f2906d1166 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/GrantApplicationDto.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/GrantApplicationDto.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using Unity.GrantManager.AI; using Unity.GrantManager.ApplicationForms; using Volo.Abp.Application.Dtos; @@ -83,4 +84,5 @@ public class GrantApplicationDto : AuditedEntityDto public string? UnityApplicationId { get; set; } public string? ApplicantElectoralDistrict { get; set; } public string? AIAnalysis { get; set; } + public ApplicationAnalysisResponse? AIAnalysisData { get; set; } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationLinksService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationLinksService.cs index 833fa42327..c8df0b91a0 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationLinksService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationLinksService.cs @@ -11,6 +11,9 @@ public interface IApplicationLinksService : ICrudAppService< Guid> { Task> GetListByApplicationAsync(Guid applicationId); + Task> GetApplicationLinksByType(Guid applicationId, ApplicationLinkType linkType); + Task> GetChildApplications(Guid applicationId); + Task>> GetChildApplicationIdsByParentIdsAsync(List parentApplicationIds); Task GetLinkedApplicationAsync(Guid currentApplicationId, Guid linkedApplicationId); Task GetCurrentApplicationInfoAsync(Guid applicationId); Task DeleteWithPairAsync(Guid applicationLinkId); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantManagerFeaturesDefinitionProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantManagerFeaturesDefinitionProvider.cs index 4a983ed329..c829cf27ea 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantManagerFeaturesDefinitionProvider.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantManagerFeaturesDefinitionProvider.cs @@ -56,6 +56,12 @@ public override void Define(IFeatureDefinitionContext context) displayName: LocalizableString .Create("AI Reporting"), valueType: new ToggleStringValueType()); + + myGroup.AddFeature("Unity.AI.Scoring", + defaultValue: defaultValue, + displayName: LocalizableString + .Create("AI Scoring"), + valueType: new ToggleStringValueType()); } } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs index 428f8a5d69..710a9bfca0 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs @@ -48,6 +48,12 @@ public override void Define(IPermissionDefinitionContext context) applicatPermissions.AddChild(GrantApplicationPermissions.Applicants.ViewList, L("Permission:GrantApplicationManagement.Applicants.ViewList")); applicatPermissions.AddChild(GrantApplicationPermissions.Applicants.Edit, L("Permission:GrantApplicationManagement.Applicants.Edit")); applicatPermissions.AddChild(GrantApplicationPermissions.Applicants.AssignApplicant, L("Permission:GrantApplicationManagement.Applicants.AssignApplicant")); + var applicantInfoPermissions = applicatPermissions.AddChild( + GrantApplicationPermissions.Applicants.ApplicantInfoDefault, + L("Permission:GrantApplicationManagement.Applicants.ApplicantInfo")); + applicantInfoPermissions.AddChild( + GrantApplicationPermissions.Applicants.EditRedStop, + L("Permission:GrantApplicationManagement.Applicants.ApplicantInfo.EditRedStop")); // Assignment var assignmentPermissions = grantApplicationPermissionsGroup.AddPermission(GrantApplicationPermissions.Assignments.Default, L("Permission:GrantApplicationManagement.Assignments.Default")); @@ -130,6 +136,11 @@ public override void Define(IPermissionDefinitionContext context) GrantApplicationPermissions.AI.AttachmentSummary.Default, L("Permission:AI.AttachmentSummary")) .RequireFeatures("Unity.AI.AttachmentSummaries"); + + aiPermissionsGroup.AddPermission( + GrantApplicationPermissions.AI.ScoringAssistant.Default, + L("Permission:AI.ScoringAssistant")) + .RequireFeatures("Unity.AI.Scoring"); } private static LocalizableString L(string name) diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/OpenAIService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/OpenAIService.cs index 1374af052b..418c31ebcf 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/OpenAIService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/OpenAIService.cs @@ -18,12 +18,32 @@ public class OpenAIService : IAIService, ITransientDependency private readonly IConfiguration _configuration; private readonly ILogger _logger; private readonly ITextExtractionService _textExtractionService; - - private string? ApiKey => _configuration["AI:OpenAI:ApiKey"]; - private string? ApiUrl => _configuration["AI:OpenAI:ApiUrl"] ?? "https://api.openai.com/v1/chat/completions"; - private readonly string NoKeyError = "OpenAI API key is not configured"; - - public OpenAIService(HttpClient httpClient, IConfiguration configuration, ILogger logger, ITextExtractionService textExtractionService) + private const string ApplicationAnalysisPromptType = "ApplicationAnalysis"; + private const string AttachmentSummaryPromptType = "AttachmentSummary"; + private const string ScoresheetAllPromptType = "ScoresheetAll"; + private const string ScoresheetSectionPromptType = "ScoresheetSection"; + private const string NoSummaryGeneratedMessage = "No summary generated."; + private const string ServiceNotConfiguredMessage = "AI analysis not available - service not configured."; + private const string ServiceTemporarilyUnavailableMessage = "AI analysis failed - service temporarily unavailable."; + private const string SummaryFailedRetryMessage = "AI analysis failed - please try again later."; + + private string? ApiKey => _configuration["Azure:OpenAI:ApiKey"]; + private string? ApiUrl => _configuration["Azure:OpenAI:ApiUrl"] ?? "https://api.openai.com/v1/chat/completions"; + private readonly string MissingApiKeyMessage = "OpenAI API key is not configured"; + + // Optional local debugging sink for prompt payload logs to a local file. + // Not intended for deployed/shared environments. + private bool IsPromptFileLoggingEnabled => _configuration.GetValue("Azure:Logging:EnablePromptFileLog") ?? false; + private const string PromptLogDirectoryName = "logs"; + private static readonly string PromptLogFileName = $"ai-prompts-{DateTime.UtcNow:yyyyMMdd-HHmmss}-{Environment.ProcessId}.log"; + + private static readonly JsonSerializerOptions JsonLogOptions = new() { WriteIndented = true }; + + public OpenAIService( + HttpClient httpClient, + IConfiguration configuration, + ILogger logger, + ITextExtractionService textExtractionService) { _httpClient = httpClient; _configuration = configuration; @@ -35,33 +55,69 @@ public Task IsAvailableAsync() { if (string.IsNullOrEmpty(ApiKey)) { - _logger.LogWarning("Error: {Message}", NoKeyError); + _logger.LogWarning("Error: {Message}", MissingApiKeyMessage); return Task.FromResult(false); } return Task.FromResult(true); } + public async Task GenerateCompletionAsync(AICompletionRequest request) + { + var content = await GenerateSummaryAsync( + request?.UserPrompt ?? string.Empty, + request?.SystemPrompt, + request?.MaxTokens ?? 150); + return new AICompletionResponse { Content = content }; + } + + public async Task GenerateApplicationAnalysisAsync(ApplicationAnalysisRequest request) + { + var dataJson = JsonSerializer.Serialize(request.Data, JsonLogOptions); + var schemaJson = JsonSerializer.Serialize(request.Schema, JsonLogOptions); + + var attachmentsPayload = request.Attachments + .Select(a => new + { + name = string.IsNullOrWhiteSpace(a.Name) ? "attachment" : a.Name.Trim(), + summary = string.IsNullOrWhiteSpace(a.Summary) ? string.Empty : a.Summary.Trim() + }) + .Cast(); + + var analysisContent = AnalysisPrompts.BuildUserPrompt( + schemaJson, + dataJson, + JsonSerializer.Serialize(attachmentsPayload, JsonLogOptions), + request.Rubric ?? string.Empty); + + var systemPrompt = AnalysisPrompts.SystemPrompt; + await LogPromptInputAsync(ApplicationAnalysisPromptType, systemPrompt, analysisContent); + var raw = await GenerateSummaryAsync(analysisContent, systemPrompt, 1000); + await LogPromptOutputAsync(ApplicationAnalysisPromptType, raw); + return ParseApplicationAnalysisResponse(AddIdsToAnalysisItems(raw)); + } + public async Task GenerateSummaryAsync(string content, string? prompt = null, int maxTokens = 150) { if (string.IsNullOrEmpty(ApiKey)) { - _logger.LogWarning("Error: {Message}", NoKeyError); - return "AI analysis not available - service not configured."; + _logger.LogWarning("Error: {Message}", MissingApiKeyMessage); + return ServiceNotConfiguredMessage; } - _logger.LogDebug("Calling OpenAI with prompt: {Prompt}", content); + _logger.LogDebug("Calling OpenAI chat completions. PromptLength: {PromptLength}, MaxTokens: {MaxTokens}", content?.Length ?? 0, maxTokens); try { var systemPrompt = prompt ?? "You are a professional grant analyst for the BC Government."; + var userPrompt = content ?? string.Empty; var requestBody = new { messages = new[] { new { role = "system", content = systemPrompt }, - new { role = "user", content = content } + new { role = "user", content = userPrompt } }, max_tokens = maxTokens, temperature = 0.3 @@ -76,12 +132,20 @@ public async Task GenerateSummaryAsync(string content, string? prompt = var response = await _httpClient.PostAsync(ApiUrl, httpContent); var responseContent = await response.Content.ReadAsStringAsync(); - _logger.LogDebug("Response: {Response}", responseContent); + _logger.LogDebug( + "OpenAI chat completions response received. StatusCode: {StatusCode}, ResponseLength: {ResponseLength}", + response.StatusCode, + responseContent?.Length ?? 0); if (!response.IsSuccessStatusCode) { _logger.LogError("OpenAI API request failed: {StatusCode} - {Content}", response.StatusCode, responseContent); - return "AI analysis failed - service temporarily unavailable."; + return ServiceTemporarilyUnavailableMessage; + } + + if (string.IsNullOrWhiteSpace(responseContent)) + { + return NoSummaryGeneratedMessage; } using var jsonDoc = JsonDocument.Parse(responseContent); @@ -89,15 +153,15 @@ public async Task GenerateSummaryAsync(string content, string? prompt = if (choices.GetArrayLength() > 0) { var message = choices[0].GetProperty("message"); - return message.GetProperty("content").GetString() ?? "No summary generated."; + return message.GetProperty("content").GetString() ?? NoSummaryGeneratedMessage; } - return "No summary generated."; + return NoSummaryGeneratedMessage; } catch (Exception ex) { _logger.LogError(ex, "Error generating AI summary"); - return "AI analysis failed - please try again later."; + return SummaryFailedRetryMessage; } } @@ -107,25 +171,36 @@ public async Task GenerateAttachmentSummaryAsync(string fileName, byte[] { var extractedText = await _textExtractionService.ExtractTextAsync(fileName, fileContent, contentType); - string contentToAnalyze; - string prompt; + var prompt = $@"{AttachmentPrompts.SystemPrompt} + +{AttachmentPrompts.OutputSection} - if (!string.IsNullOrWhiteSpace(extractedText)) +{AttachmentPrompts.RulesSection}"; + + var attachmentText = string.IsNullOrWhiteSpace(extractedText) ? null : extractedText; + if (attachmentText != null) { _logger.LogDebug("Extracted {TextLength} characters from {FileName}", extractedText.Length, fileName); - - contentToAnalyze = $"Document: {fileName}\nType: {contentType}\nContent:\n{extractedText}"; - prompt = "Please analyze this document and provide a concise summary of its content, purpose, and key information, for use by your fellow grant analysts. It should be 1-2 sentences long and about 46 tokens."; } else { _logger.LogDebug("No text extracted from {FileName}, analyzing metadata only", fileName); - - contentToAnalyze = $"File: {fileName}, Type: {contentType}, Size: {fileContent.Length} bytes"; - prompt = "Please analyze this document and provide a concise summary of its content, purpose, and key information, for use by your fellow grant analysts. It should be 1-2 sentences long and about 46 tokens."; } - return await GenerateSummaryAsync(contentToAnalyze, prompt, 150); + var attachmentPayload = new + { + name = fileName, + contentType, + sizeBytes = fileContent.Length, + text = attachmentText + }; + var contentToAnalyze = AttachmentPrompts.BuildUserPrompt( + JsonSerializer.Serialize(attachmentPayload, JsonLogOptions)); + + await LogPromptInputAsync(AttachmentSummaryPromptType, prompt, contentToAnalyze); + var modelOutput = await GenerateSummaryAsync(contentToAnalyze, prompt, 150); + await LogPromptOutputAsync(AttachmentSummaryPromptType, modelOutput); + return modelOutput; } catch (Exception ex) { @@ -134,75 +209,65 @@ public async Task GenerateAttachmentSummaryAsync(string fileName, byte[] } } + public async Task GenerateAttachmentSummaryAsync(AttachmentSummaryRequest request) + { + var summary = await GenerateAttachmentSummaryAsync( + request?.FileName ?? string.Empty, + request?.FileContent ?? Array.Empty(), + request?.ContentType ?? "application/octet-stream"); + return new AttachmentSummaryResponse { Summary = summary }; + } + public async Task AnalyzeApplicationAsync(string applicationContent, List attachmentSummaries, string rubric, string? formFieldConfiguration = null) { if (string.IsNullOrEmpty(ApiKey)) { - _logger.LogWarning("{Message}", NoKeyError); - return "AI analysis not available - service not configured."; + _logger.LogWarning("{Message}", MissingApiKeyMessage); + return ServiceNotConfiguredMessage; } try { - var attachmentSummariesText = attachmentSummaries?.Count > 0 - ? string.Join("\n- ", attachmentSummaries.Select((s, i) => $"Attachment {i + 1}: {s}")) - : "No attachments provided."; - - var fieldConfigurationSection = !string.IsNullOrEmpty(formFieldConfiguration) - ? $@" -{formFieldConfiguration}" - : string.Empty; - - var analysisContent = $@"APPLICATION CONTENT: -{applicationContent} - -ATTACHMENT SUMMARIES: -- {attachmentSummariesText} -{fieldConfigurationSection} - -EVALUATION RUBRIC: -{rubric} - -Analyze this grant application comprehensively across all five rubric categories (Eligibility, Completeness, Financial Review, Risk Assessment, and Quality Indicators). Identify issues, concerns, and areas for improvement. Return your findings in the following JSON format: -{{ - ""overall_score"": ""HIGH/MEDIUM/LOW"", - ""warnings"": [ - {{ - ""category"": ""Brief summary of the warning"", - ""message"": ""Detailed warning message with full context and explanation"", - ""severity"": ""WARNING"" - }} - ], - ""errors"": [ - {{ - ""category"": ""Brief summary of the error"", - ""message"": ""Detailed error message with full context and explanation"", - ""severity"": ""ERROR"" - }} - ], - ""recommendations"": [ - {{ - ""category"": ""Brief summary of the recommendation"", - ""message"": ""Detailed recommendation with specific actionable guidance"" - }} - ] -}} - -Important: The 'category' field should be a concise summary (3-6 words) that captures the essence of the issue, while the 'message' field should contain the detailed explanation."; - - var systemPrompt = @"You are an expert grant application reviewer for the BC Government. + object schemaPayload = new { }; + if (!string.IsNullOrWhiteSpace(formFieldConfiguration)) + { + try + { + using var schemaDoc = JsonDocument.Parse(formFieldConfiguration); + schemaPayload = schemaDoc.RootElement.Clone(); + } + catch (JsonException ex) + { + _logger.LogWarning(ex, "Invalid form field configuration JSON. Using empty schema payload."); + } + } -Conduct a thorough, comprehensive analysis across all rubric categories. Identify substantive issues, concerns, and opportunities for improvement. + var dataPayload = new + { + applicationContent + }; -Classify findings based on their impact on the application's evaluation and fundability: -- ERRORS: Important missing information, significant gaps in required content, compliance issues, or major concerns affecting eligibility -- WARNINGS: Areas needing clarification, moderate issues, or concerns that should be addressed + var attachmentsPayload = attachmentSummaries?.Count > 0 + ? attachmentSummaries + .Select((summary, index) => new + { + name = $"Attachment {index + 1}", + summary = summary + }) + .Cast() + : Enumerable.Empty(); -Evaluate the quality, clarity, and appropriateness of all application content. Be thorough but fair - identify real issues while avoiding nitpicking. + var analysisContent = AnalysisPrompts.BuildUserPrompt( + JsonSerializer.Serialize(schemaPayload, JsonLogOptions), + JsonSerializer.Serialize(dataPayload, JsonLogOptions), + JsonSerializer.Serialize(attachmentsPayload, JsonLogOptions), + rubric); -Respond only with valid JSON in the exact format requested."; + var systemPrompt = AnalysisPrompts.SystemPrompt; + await LogPromptInputAsync(ApplicationAnalysisPromptType, systemPrompt, analysisContent); var rawAnalysis = await GenerateSummaryAsync(analysisContent, systemPrompt, 1000); + await LogPromptOutputAsync(ApplicationAnalysisPromptType, rawAnalysis); // Post-process the AI response to add unique IDs to errors and warnings return AddIdsToAnalysisItems(rawAnalysis); @@ -210,7 +275,7 @@ public async Task AnalyzeApplicationAsync(string applicationContent, Lis catch (Exception ex) { _logger.LogError(ex, "Error analyzing application"); - return "AI analysis failed - please try again later."; + return SummaryFailedRetryMessage; } } @@ -226,9 +291,11 @@ private string AddIdsToAnalysisItems(string analysisJson) foreach (var property in jsonDoc.RootElement.EnumerateObject()) { - if (property.Name == "errors" || property.Name == "warnings") + var outputPropertyName = property.Name; + + if (outputPropertyName == AIJsonKeys.Errors || outputPropertyName == AIJsonKeys.Warnings) { - writer.WritePropertyName(property.Name); + writer.WritePropertyName(outputPropertyName); writer.WriteStartArray(); foreach (var item in property.Value.EnumerateArray()) @@ -251,14 +318,21 @@ private string AddIdsToAnalysisItems(string analysisJson) } else { + if (outputPropertyName != property.Name) + { + writer.WritePropertyName(outputPropertyName); + property.Value.WriteTo(writer); + continue; + } + property.WriteTo(writer); } } - // Add dismissed_items array if not present - if (!jsonDoc.RootElement.TryGetProperty("dismissed_items", out _)) + // Add dismissed array if not present. + if (!jsonDoc.RootElement.TryGetProperty(AIJsonKeys.Dismissed, out _)) { - writer.WritePropertyName("dismissed_items"); + writer.WritePropertyName(AIJsonKeys.Dismissed); writer.WriteStartArray(); writer.WriteEndArray(); } @@ -279,7 +353,7 @@ public async Task GenerateScoresheetAnswersAsync(string applicationConte { if (string.IsNullOrEmpty(ApiKey)) { - _logger.LogWarning("{Message}", NoKeyError); + _logger.LogWarning("{Message}", MissingApiKeyMessage); return "{}"; } @@ -320,7 +394,10 @@ Base your answers on the application content and attachment summaries provided. Be thorough, objective, and fair in your assessment. Base your answers strictly on the provided application content. Respond only with valid JSON in the exact format requested."; - return await GenerateSummaryAsync(analysisContent, systemPrompt, 2000); + await LogPromptInputAsync(ScoresheetAllPromptType, systemPrompt, analysisContent); + var modelOutput = await GenerateSummaryAsync(analysisContent, systemPrompt, 2000); + await LogPromptOutputAsync(ScoresheetAllPromptType, modelOutput); + return modelOutput; } catch (Exception ex) { @@ -333,7 +410,7 @@ public async Task GenerateScoresheetSectionAnswersAsync(string applicati { if (string.IsNullOrEmpty(ApiKey)) { - _logger.LogWarning("{Message}", NoKeyError); + _logger.LogWarning("{Message}", MissingApiKeyMessage); return "{}"; } @@ -343,64 +420,414 @@ public async Task GenerateScoresheetSectionAnswersAsync(string applicati ? string.Join("\n- ", attachmentSummaries.Select((s, i) => $"Attachment {i + 1}: {s}")) : "No attachments provided."; - var analysisContent = $@"APPLICATION CONTENT: -{applicationContent} + object sectionQuestionsPayload = sectionJson; + if (!string.IsNullOrWhiteSpace(sectionJson)) + { + try + { + using var sectionDoc = JsonDocument.Parse(sectionJson); + sectionQuestionsPayload = sectionDoc.RootElement.Clone(); + } + catch (JsonException) + { + // Keep raw string payload when JSON parsing fails. + } + } -ATTACHMENT SUMMARIES: -- {attachmentSummariesText} + var sectionPayload = new + { + name = sectionName, + questions = sectionQuestionsPayload + }; + var sectionPayloadJson = JsonSerializer.Serialize(sectionPayload, JsonLogOptions); + var responseTemplate = BuildScoresheetSectionResponseTemplate(sectionPayloadJson); -SCORESHEET SECTION: {sectionName} -{sectionJson} + var analysisContent = ScoresheetPrompts.BuildSectionUserPrompt( + applicationContent, + attachmentSummariesText, + sectionPayloadJson, + responseTemplate); -Please analyze this grant application and provide appropriate answers for each question in the ""{sectionName}"" section only. + var systemPrompt = ScoresheetPrompts.SectionSystemPrompt; -For each question, provide: -1. Your answer based on the application content -2. A brief cited description (1-2 sentences) explaining your reasoning with specific references to the application content -3. A confidence score from 0-100 indicating how confident you are in your answer based on available information + await LogPromptInputAsync(ScoresheetSectionPromptType, systemPrompt, analysisContent); + var modelOutput = await GenerateSummaryAsync(analysisContent, systemPrompt, 2000); + await LogPromptOutputAsync(ScoresheetSectionPromptType, modelOutput); + return modelOutput; + } + catch (Exception ex) + { + _logger.LogError(ex, "Error generating scoresheet section answers for section {SectionName}", sectionName); + return "{}"; + } + } -Guidelines for answers: -- For numeric questions, provide a numeric value within the specified range -- For yes/no questions, provide either 'Yes' or 'No' -- For text questions, provide a concise, relevant response -- For select list questions, respond with ONLY the number from the 'number' field (1, 2, 3, etc.) of your chosen option. NEVER return 0 - the lowest valid answer is 1. For example: if you want '(0 pts) No outcomes provided', choose the option where number=1, not 0. -- For text area questions, provide a detailed but concise response -- Base your confidence score on how clearly the application content supports your answer + public async Task GenerateScoresheetSectionAnswersAsync(ScoresheetSectionRequest request) + { + var dataJson = JsonSerializer.Serialize(request.Data, JsonLogOptions); + var sectionJson = JsonSerializer.Serialize(request.SectionSchema, JsonLogOptions); + + var attachmentSummaries = request.Attachments + .Select(a => $"{a.Name}: {a.Summary}") + .ToList(); + + var raw = await GenerateScoresheetSectionAnswersAsync( + dataJson, + attachmentSummaries, + sectionJson, + request.SectionName); + return ParseScoresheetSectionResponse(raw); + } -Return your response as a JSON object where each key is the question ID and the value contains the answer, citation, and confidence: -{{ - ""question-id-1"": {{ - ""answer"": ""your-answer-here"", - ""citation"": ""Brief explanation with specific reference to application content"", - ""confidence"": 85 - }}, - ""question-id-2"": {{ - ""answer"": ""3"", - ""citation"": ""Based on the project budget of $50,000 mentioned in the application, this falls into the medium budget category"", - ""confidence"": 90 - }} -}} + private static ApplicationAnalysisResponse ParseApplicationAnalysisResponse(string raw) + { + var response = new ApplicationAnalysisResponse(); -IMPORTANT FOR SELECT LIST QUESTIONS: If a question has availableOptions like: -[{{""number"":1,""value"":""Low (Under $25K)""}}, {{""number"":2,""value"":""Medium ($25K-$75K)""}}, {{""number"":3,""value"":""High (Over $75K)""}}] -Then respond with ONLY the number (e.g., ""3"" for ""High (Over $75K)""), not the text value. + if (!TryParseJsonObjectFromResponse(raw, out var root)) + { + return response; + } -Do not return any markdown formatting, just the JSON by itself"; + if (TryGetStringProperty(root, AIJsonKeys.Rating, out var rating)) + { + response.Rating = rating; + } - var systemPrompt = @"You are an expert grant application reviewer for the BC Government. -Analyze the provided application and generate appropriate answers for the scoresheet section questions based on the application content. -Be thorough, objective, and fair in your assessment. Base your answers strictly on the provided application content. -Always provide citations that reference specific parts of the application content to support your answers. -Be honest about your confidence level - if information is missing or unclear, reflect this in a lower confidence score. -Respond only with valid JSON in the exact format requested."; + if (root.TryGetProperty("errors", out var errors) && errors.ValueKind == JsonValueKind.Array) + { + response.Errors = ParseFindings(errors); + } + + if (root.TryGetProperty("warnings", out var warnings) && warnings.ValueKind == JsonValueKind.Array) + { + response.Warnings = ParseFindings(warnings); + } + + if (root.TryGetProperty(AIJsonKeys.Summaries, out var summaries) && summaries.ValueKind == JsonValueKind.Array) + { + response.Summaries = ParseFindings(summaries); + } + + if (root.TryGetProperty(AIJsonKeys.Dismissed, out var dismissed) && dismissed.ValueKind == JsonValueKind.Array) + { + response.Dismissed = dismissed + .EnumerateArray() + .Select(GetStringValueOrNull) + .Where(item => !string.IsNullOrWhiteSpace(item)) + .Cast() + .ToList(); + } + + return response; + } + + private static bool TryGetStringProperty(JsonElement root, string propertyName, out string? value) + { + value = null; + if (!root.TryGetProperty(propertyName, out var property) || property.ValueKind != JsonValueKind.String) + { + return false; + } + + value = property.GetString(); + return !string.IsNullOrWhiteSpace(value); + } + + private static string? GetStringValueOrNull(JsonElement element) + { + if (element.ValueKind == JsonValueKind.String) + { + return element.GetString(); + } + + return null; + } + + private static List ParseFindings(JsonElement array) + { + var findings = new List(); + foreach (var item in array.EnumerateArray()) + { + if (item.ValueKind != JsonValueKind.Object) + { + continue; + } + + var id = item.TryGetProperty(AIJsonKeys.Id, out var idProp) && idProp.ValueKind == JsonValueKind.String + ? idProp.GetString() + : null; + string? title = null; + if (item.TryGetProperty(AIJsonKeys.Title, out var titleProp) && titleProp.ValueKind == JsonValueKind.String) + { + title = titleProp.GetString(); + } + else if (item.TryGetProperty("category", out var legacyTitleProp) && + legacyTitleProp.ValueKind == JsonValueKind.String) + { + title = legacyTitleProp.GetString(); + } + + string? detail = null; + if (item.TryGetProperty(AIJsonKeys.Detail, out var detailProp) && detailProp.ValueKind == JsonValueKind.String) + { + detail = detailProp.GetString(); + } + else if (item.TryGetProperty("message", out var legacyDetailProp) && + legacyDetailProp.ValueKind == JsonValueKind.String) + { + detail = legacyDetailProp.GetString(); + } + + findings.Add(new ApplicationAnalysisFinding + { + Id = id, + Title = title, + Detail = detail + }); + } + + return findings; + } + + private static ScoresheetSectionResponse ParseScoresheetSectionResponse(string raw) + { + var response = new ScoresheetSectionResponse(); + if (!TryParseJsonObjectFromResponse(raw, out var root)) + { + return response; + } + + foreach (var property in root.EnumerateObject()) + { + if (property.Value.ValueKind != JsonValueKind.Object) + { + continue; + } + + var answer = property.Value.TryGetProperty("answer", out var answerProp) + ? answerProp.Clone() + : default; + var rationale = property.Value.TryGetProperty("rationale", out var rationaleProp) && + rationaleProp.ValueKind == JsonValueKind.String + ? rationaleProp.GetString() ?? string.Empty + : string.Empty; + var confidence = property.Value.TryGetProperty("confidence", out var confidenceProp) && + confidenceProp.ValueKind == JsonValueKind.Number && + confidenceProp.TryGetInt32(out var parsedConfidence) + ? NormalizeConfidence(parsedConfidence) + : 0; - return await GenerateSummaryAsync(analysisContent, systemPrompt, 2000); + response.Answers[property.Name] = new ScoresheetSectionAnswer + { + Answer = answer, + Rationale = rationale, + Confidence = confidence + }; + } + + return response; + } + + private static int NormalizeConfidence(int confidence) + { + var clamped = Math.Clamp(confidence, 0, 100); + var rounded = (int)Math.Round(clamped / 5.0, MidpointRounding.AwayFromZero) * 5; + return Math.Clamp(rounded, 0, 100); + } + + private static string BuildScoresheetSectionResponseTemplate(string sectionPayloadJson) + { + try + { + using var doc = JsonDocument.Parse(sectionPayloadJson); + if (!doc.RootElement.TryGetProperty("questions", out var questions) || questions.ValueKind != JsonValueKind.Array) + { + return ScoresheetPrompts.SectionOutputTemplate; + } + + var template = new Dictionary(); + foreach (var question in questions.EnumerateArray()) + { + if (!question.TryGetProperty("id", out var idProp) || idProp.ValueKind != JsonValueKind.String) + { + continue; + } + + var questionId = idProp.GetString(); + if (string.IsNullOrWhiteSpace(questionId)) + { + continue; + } + + template[questionId] = new + { + answer = string.Empty, + rationale = string.Empty, + confidence = 0 + }; + } + + if (template.Count == 0) + { + return ScoresheetPrompts.SectionOutputTemplate; + } + + return JsonSerializer.Serialize(template, JsonLogOptions); + } + catch (JsonException) + { + return ScoresheetPrompts.SectionOutputTemplate; + } + } + + private async Task LogPromptInputAsync(string promptType, string? systemPrompt, string userPrompt) + { + var formattedInput = FormatPromptInputForLog(systemPrompt, userPrompt); + _logger.LogInformation("AI {PromptType} input payload: {PromptInput}", promptType, formattedInput); + await WritePromptLogFileAsync(promptType, "INPUT", formattedInput); + } + + private async Task LogPromptOutputAsync(string promptType, string output) + { + var formattedOutput = FormatPromptOutputForLog(output); + _logger.LogInformation("AI {PromptType} model output payload: {ModelOutput}", promptType, formattedOutput); + await WritePromptLogFileAsync(promptType, "OUTPUT", formattedOutput); + } + + private async Task WritePromptLogFileAsync(string promptType, string payloadType, string payload) + { + if (!CanWritePromptFileLog()) + { + return; + } + + try + { + var now = DateTimeOffset.Now.ToString("yyyy-MM-dd HH:mm:ss zzz"); + var logDirectory = Path.Combine(AppContext.BaseDirectory, PromptLogDirectoryName); + Directory.CreateDirectory(logDirectory); + + var logPath = Path.Combine(logDirectory, PromptLogFileName); + var entry = $"{now} [{promptType}] {payloadType}\n{payload}\n\n"; + await File.AppendAllTextAsync(logPath, entry); } catch (Exception ex) { - _logger.LogError(ex, "Error generating scoresheet section answers for section {SectionName}", sectionName); - return "{}"; + _logger.LogWarning(ex, "Failed to write AI prompt log file."); + } + } + + private bool CanWritePromptFileLog() + { + return IsPromptFileLoggingEnabled; + } + + private static string FormatPromptInputForLog(string? systemPrompt, string userPrompt) + { + var normalizedSystemPrompt = string.IsNullOrWhiteSpace(systemPrompt) ? string.Empty : systemPrompt.Trim(); + var normalizedUserPrompt = string.IsNullOrWhiteSpace(userPrompt) ? string.Empty : userPrompt.Trim(); + return $"SYSTEM_PROMPT\n{normalizedSystemPrompt}\n\nUSER_PROMPT\n{normalizedUserPrompt}"; + } + + private static string FormatPromptOutputForLog(string output) + { + if (string.IsNullOrWhiteSpace(output)) + { + return string.Empty; + } + + if (TryParseJsonObjectFromResponse(output, out var jsonObject)) + { + return JsonSerializer.Serialize(jsonObject, JsonLogOptions); + } + + return output.Trim(); + } + + private static bool TryParseJsonObjectFromResponse(string response, out JsonElement objectElement) + { + objectElement = default; + var cleaned = CleanJsonResponse(response); + if (string.IsNullOrWhiteSpace(cleaned)) + { + return false; + } + + try + { + using var doc = JsonDocument.Parse(cleaned); + if (doc.RootElement.ValueKind != JsonValueKind.Object) + { + return false; + } + + objectElement = doc.RootElement.Clone(); + return true; } + catch (JsonException) + { + return false; + } + } + + private static string CleanJsonResponse(string response) + { + if (string.IsNullOrWhiteSpace(response)) + { + return string.Empty; + } + + var cleaned = response.Trim(); + + if (cleaned.StartsWith("```json", StringComparison.OrdinalIgnoreCase) || cleaned.StartsWith("```")) + { + var startIndex = cleaned.IndexOf('\n'); + if (startIndex >= 0) + { + // Multi-line fenced code block: remove everything up to and including the first newline. + cleaned = cleaned[(startIndex + 1)..]; + } + else + { + // Single-line fenced JSON, e.g. ```json { ... } ``` or ```{ ... } ```. + // Strip everything before the first likely JSON payload token. + var jsonStart = FindFirstJsonTokenIndex(cleaned); + + if (jsonStart > 0) + { + cleaned = cleaned[jsonStart..]; + } + } + } + + if (cleaned.EndsWith("```", StringComparison.Ordinal)) + { + var lastIndex = cleaned.LastIndexOf("```", StringComparison.Ordinal); + if (lastIndex > 0) + { + cleaned = cleaned[..lastIndex]; + } + } + + return cleaned.Trim(); + } + + private static int FindFirstJsonTokenIndex(string value) + { + var objectStart = value.IndexOf('{'); + var arrayStart = value.IndexOf('['); + + if (objectStart >= 0 && arrayStart >= 0) + { + return Math.Min(objectStart, arrayStart); + } + + if (objectStart >= 0) + { + return objectStart; + } + + return arrayStart; } } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/AnalysisPrompts.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/AnalysisPrompts.cs new file mode 100644 index 0000000000..2e54412806 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/AnalysisPrompts.cs @@ -0,0 +1,126 @@ +namespace Unity.GrantManager.AI +{ + internal static class AnalysisPrompts + { + public const string DefaultRubric = @"BC GOVERNMENT GRANT EVALUATION RUBRIC: + +1. ELIGIBILITY REQUIREMENTS: + - Project must align with program objectives + - Applicant must be eligible entity type + - Budget must be reasonable and well-justified + - Project timeline must be realistic + +2. COMPLETENESS CHECKS: + - All required fields completed + - Necessary supporting documents provided + - Budget breakdown detailed and accurate + - Project description clear and comprehensive + +3. FINANCIAL REVIEW: + - Requested amount is within program limits + - Budget is reasonable for scope of work + - Matching funds or in-kind contributions identified + - Cost per outcome/beneficiary is reasonable + +4. RISK ASSESSMENT: + - Applicant capacity to deliver project + - Technical feasibility of proposed work + - Environmental or regulatory compliance + - Potential for cost overruns or delays + +5. QUALITY INDICATORS: + - Clear project objectives and outcomes + - Well-defined target audience/beneficiaries + - Appropriate project methodology + - Sustainability plan for long-term impact + +EVALUATION CRITERIA: +- HIGH: Meets all requirements, well-prepared application, low risk +- MEDIUM: Meets most requirements, minor issues or missing elements +- LOW: Missing key requirements, significant concerns, high risk"; + + public const string ScoreRules = @"HIGH: Application demonstrates strong evidence across most rubric areas with few or no issues. +MEDIUM: Application has some gaps or weaknesses that require reviewer attention. +LOW: Application has significant gaps or risks across key rubric areas."; + + public const string SeverityRules = @"ERROR: Issue that would likely prevent the application from being approved. +WARNING: Issue that could negatively affect the application's approval. +RECOMMENDATION: Reviewer-facing improvement or follow-up consideration."; + + public const string OutputTemplate = @"{ + ""rating"": ""HIGH/MEDIUM/LOW"", + ""warnings"": [ + { + ""title"": ""Brief summary of the warning"", + ""detail"": ""Detailed warning message with full context and explanation"" + } + ], + ""errors"": [ + { + ""title"": ""Brief summary of the error"", + ""detail"": ""Detailed error message with full context and explanation"" + } + ], + ""summaries"": [ + { + ""title"": ""Brief summary of the recommendation"", + ""detail"": ""Detailed recommendation with specific actionable guidance"" + } + ], + ""dismissed"": [] +}"; + + public const string Rules = @"- Use only SCHEMA, DATA, ATTACHMENTS, and RUBRIC as evidence. +- Do not invent fields, documents, requirements, or facts. +- Treat missing or empty values as findings only when they weaken rubric evidence. +- Prefer material issues; avoid nitpicking. +- Each error/warning/recommendation must describe one concrete issue or consideration and why it matters. +- Use 3-6 words for title. +- Each detail must be 1-2 complete sentences. +- Each detail must be grounded in concrete evidence from provided inputs. +- If attachment evidence is used, reference the attachment explicitly in detail. +- Do not provide applicant-facing advice. +- Do not mention rubric section names in findings. +- If no findings exist, return empty arrays. +- rating must be HIGH, MEDIUM, or LOW." + + "\n" + PromptCoreRules.ExactOutputShape + + "\n" + PromptCoreRules.NoExtraOutputKeys + + "\n" + PromptCoreRules.ValidJsonOnly + + "\n" + PromptCoreRules.PlainJsonOnly; + + public static readonly string SystemPrompt = PromptHeader.Build( + "You are an expert grant analyst assistant for human reviewers.", + "Using SCHEMA, DATA, ATTACHMENTS, RUBRIC, SEVERITY, SCORE, OUTPUT, and RULES, return review findings."); + + public static string BuildUserPrompt( + string schemaJson, + string dataJson, + string attachmentsJson, + string rubric) + { + return $@"SCHEMA +{schemaJson} + +DATA +{dataJson} + +ATTACHMENTS +{attachmentsJson} + +RUBRIC +{rubric} + +SEVERITY +{SeverityRules} + +SCORE +{ScoreRules} + +OUTPUT +{OutputTemplate} + +RULES +{Rules}"; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/AttachmentPrompts.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/AttachmentPrompts.cs new file mode 100644 index 0000000000..969480ea86 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/AttachmentPrompts.cs @@ -0,0 +1,27 @@ +namespace Unity.GrantManager.AI +{ + internal static class AttachmentPrompts + { + public static readonly string SystemPrompt = PromptHeader.Build( + "You are a professional grant analyst for the BC Government.", + "Produce a concise reviewer-facing summary of the provided attachment context."); + + public const string OutputSection = @"OUTPUT +- Plain text only +- 1-2 complete sentences"; + + public const string RulesSection = @"RULES +- Use only the provided attachment context as evidence. +- If text content is present, summarize the actual content. +- If text content is missing or empty, provide a conservative metadata-based summary. +- Do not invent missing details. +- Keep the summary specific, concrete, and reviewer-facing. +- Return plain text only (no markdown, bullets, or JSON)."; + + public static string BuildUserPrompt(string attachmentPayloadJson) + { + return $@"ATTACHMENT +{attachmentPayloadJson}"; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/PromptCoreRules.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/PromptCoreRules.cs new file mode 100644 index 0000000000..e11dce3c97 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/PromptCoreRules.cs @@ -0,0 +1,13 @@ +namespace Unity.GrantManager.AI +{ + internal static class PromptCoreRules + { + public const string UseProvidedEvidence = "- Use only provided input sections as evidence."; + public const string NoInvention = "- Do not invent missing details."; + public const string MinimumNarrativeWords = "- Any narrative text response must be at least 12 words."; + public const string ExactOutputShape = "- Return values exactly as specified in OUTPUT."; + public const string NoExtraOutputKeys = "- Do not return keys outside OUTPUT."; + public const string ValidJsonOnly = "- Return valid JSON only."; + public const string PlainJsonOnly = "- Return plain JSON only (no markdown)."; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/PromptHeader.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/PromptHeader.cs new file mode 100644 index 0000000000..701a43e740 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/PromptHeader.cs @@ -0,0 +1,14 @@ +namespace Unity.GrantManager.AI +{ + internal static class PromptHeader + { + public static string Build(string role, string task) + { + return $@"ROLE +{role} + +TASK +{task}"; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/ScoresheetPrompts.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/ScoresheetPrompts.cs new file mode 100644 index 0000000000..2db4de742d --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/Prompts/ScoresheetPrompts.cs @@ -0,0 +1,80 @@ +namespace Unity.GrantManager.AI +{ + internal static class ScoresheetPrompts + { + public static readonly string SectionSystemPrompt = PromptHeader.Build( + "You are an expert grant application reviewer for the BC Government.", + "Using DATA, ATTACHMENTS, SECTION, RESPONSE, OUTPUT, and RULES, answer only the questions in SECTION."); + + public const string SectionOutputTemplate = @"{ + """": { + ""answer"": """", + ""rationale"": """", + ""confidence"": + } +}"; + + public const string SectionRules = "- Use only DATA and ATTACHMENTS as evidence.\n" + + "- Do not invent missing application details.\n" + + @"- Return exactly one answer object per question ID in SECTION.questions. +- Do not omit any question IDs from SECTION.questions. +- Do not add keys that are not question IDs from SECTION.questions. +- Use RESPONSE as the output contract and fill every placeholder value. +- Follow this process in order: (1) copy RESPONSE, (2) iterate SECTION.questions in order, (3) fill answer+rationale+confidence for each matching question ID, (4) run final completeness check. +- Each answer object must include: ""answer"", ""rationale"", and ""confidence"". +- Never omit ""answer"", ""rationale"", or ""confidence"" for any question type. +- The ""answer"" value type must match question type: Number => numeric; YesNo/SelectList/Text/TextArea => string. +- The ""rationale"" field must be 1-2 complete sentences and grounded in concrete DATA/ATTACHMENTS evidence. +- In ""rationale"", cite concrete source evidence from the provided input content; do not cite prompt section headers. +- For every question, rationale must justify both the selected answer and the selected confidence level based on evidence strength. +- If explicit evidence is insufficient, choose the most conservative valid answer and state uncertainty in rationale. +- Do not treat missing or non-contradictory information as evidence. +- The ""confidence"" field must be an integer from 0 to 100 in increments of 5 and represents confidence in the selected answer. +- Set confidence by certainty of the selected answer based on available evidence, regardless of which option is selected. +- For yes/no questions, the ""answer"" field must be exactly ""Yes"" or ""No"". +- For numeric questions, answer must be a numeric value within the allowed range. +- For numeric questions, answer must never be blank. +- If evidence is insufficient for a numeric question, return the minimum allowed numeric value and explain uncertainty in rationale. +- If a required value is explicitly missing in DATA/ATTACHMENTS, set confidence high (80-100) when selecting the conservative minimum. +- For select list questions, return only the selected options.number as a string (the option index shown in options), never label text or points. +- For select list questions, the ""answer"" value must be one of question.allowed_answers exactly. +- Never return 0 for select list answers unless 0 exists as an explicit option number. +- For text and text area questions, answer must be concise, evidence-based, non-empty, and avoid boilerplate placeholders. +- For text and text area questions, answer is the reviewer comment, and rationale must explain the evidence basis and certainty for that comment. +- For comment fields, summarize key evidence-based conclusions from the other questions in SECTION, including uncertainty where applicable. +- Do not leave rationale empty when answer is populated. +- Final self-check before responding: every question ID in RESPONSE must have a non-empty ""answer"", non-empty ""rationale"", and ""confidence"". +- If any answer object is incomplete, regenerate the full JSON response before returning it. +" + + PromptCoreRules.MinimumNarrativeWords + "\n" + + PromptCoreRules.ExactOutputShape + "\n" + + PromptCoreRules.NoExtraOutputKeys + "\n" + + PromptCoreRules.ValidJsonOnly + "\n" + + PromptCoreRules.PlainJsonOnly; + + public static string BuildSectionUserPrompt( + string applicationContent, + string attachmentSummariesText, + string sectionPayloadJson, + string responseTemplateJson) + { + return $@"DATA +{applicationContent} + +ATTACHMENTS +- {attachmentSummariesText} + +SECTION +{sectionPayloadJson} + +RESPONSE +{responseTemplateJson} + +OUTPUT +{SectionOutputTemplate} + +RULES +{SectionRules}"; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/TextExtractionService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/TextExtractionService.cs index 28d5af2b4e..9aad041a5e 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/TextExtractionService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/AI/TextExtractionService.cs @@ -1,14 +1,27 @@ using Microsoft.Extensions.Logging; +using NPOI.SS.UserModel; +using NPOI.XWPF.UserModel; using System; +using System.Collections.Generic; using System.IO; +using System.Linq; using System.Text; +using System.Text.RegularExpressions; using System.Threading.Tasks; +using UglyToad.PdfPig; using Volo.Abp.DependencyInjection; namespace Unity.GrantManager.AI { - public class TextExtractionService : ITextExtractionService, ITransientDependency + public partial class TextExtractionService : ITextExtractionService, ITransientDependency { + private const int MaxExtractedTextLength = 50000; + private const int MaxExcelSheets = 10; + private const int MaxExcelRowsPerSheet = 2000; + private const int MaxExcelCellsPerRow = 50; + private const int MaxDocxParagraphs = 2000; + private const int MaxDocxTableRows = 2000; + private const int MaxDocxTableCellsPerRow = 50; private readonly ILogger _logger; public TextExtractionService(ILogger logger) @@ -16,96 +29,91 @@ public TextExtractionService(ILogger logger) _logger = logger; } - public async Task ExtractTextAsync(string fileName, byte[] fileContent, string contentType) + public Task ExtractTextAsync(string fileName, byte[] fileContent, string contentType) { if (fileContent == null || fileContent.Length == 0) { _logger.LogDebug("File content is empty for {FileName}", fileName); - return string.Empty; + return Task.FromResult(string.Empty); } try { - // Normalize content type var normalizedContentType = contentType?.ToLowerInvariant() ?? string.Empty; var extension = Path.GetExtension(fileName)?.ToLowerInvariant() ?? string.Empty; - // Handle text-based files + string rawText; + if (normalizedContentType.Contains("text/") || extension == ".txt" || extension == ".csv" || extension == ".json" || extension == ".xml") { - return await ExtractTextFromTextFileAsync(fileContent); + rawText = ExtractTextFromTextFile(fileContent); + return Task.FromResult(NormalizeAndLimitText(rawText, fileName)); } - // Handle PDF files if (normalizedContentType.Contains("pdf") || extension == ".pdf") { - // For now, return empty string - can be enhanced with PDF parsing library - _logger.LogDebug("PDF text extraction not yet implemented for {FileName}", fileName); - return string.Empty; + rawText = ExtractTextFromPdfFile(fileName, fileContent); + return Task.FromResult(NormalizeAndLimitText(rawText, fileName)); } - // Handle Word documents if (normalizedContentType.Contains("word") || normalizedContentType.Contains("msword") || normalizedContentType.Contains("officedocument.wordprocessingml") || extension == ".doc" || extension == ".docx") { - // For now, return empty string - can be enhanced with Word parsing library - _logger.LogDebug("Word document text extraction not yet implemented for {FileName}", fileName); - return string.Empty; + if (extension == ".docx" || normalizedContentType.Contains("officedocument.wordprocessingml")) + { + rawText = ExtractTextFromWordDocx(fileName, fileContent); + return Task.FromResult(NormalizeAndLimitText(rawText, fileName)); + } + + _logger.LogDebug("Legacy .doc extraction is not supported for {FileName}", fileName); + return Task.FromResult(string.Empty); } - // Handle Excel files if (normalizedContentType.Contains("excel") || normalizedContentType.Contains("spreadsheet") || extension == ".xls" || extension == ".xlsx") { - // For now, return empty string - can be enhanced with Excel parsing library - _logger.LogDebug("Excel text extraction not yet implemented for {FileName}", fileName); - return string.Empty; + rawText = ExtractTextFromExcelFile(fileName, fileContent); + return Task.FromResult(NormalizeAndLimitText(rawText, fileName)); } - // For other file types, return empty string _logger.LogDebug("No text extraction available for content type {ContentType} with extension {Extension}", contentType, extension); - return string.Empty; + return Task.FromResult(string.Empty); } catch (Exception ex) { _logger.LogError(ex, "Error extracting text from {FileName}", fileName); - return string.Empty; + return Task.FromResult(string.Empty); } } - private async Task ExtractTextFromTextFileAsync(byte[] fileContent) + private string ExtractTextFromTextFile(byte[] fileContent) { try { - // Try UTF-8 first var text = Encoding.UTF8.GetString(fileContent); - // Check if the decoded text contains replacement characters (indicates encoding issue) if (text.Contains('\uFFFD')) { - // Try other encodings text = Encoding.ASCII.GetString(fileContent); } - // Limit the extracted text to a reasonable size (e.g., first 50,000 characters) - const int maxLength = 50000; - if (text.Length > maxLength) + if (text.Length > MaxExtractedTextLength) { - text = text.Substring(0, maxLength); - _logger.LogDebug("Truncated text content to {MaxLength} characters", maxLength); + text = text.Substring(0, MaxExtractedTextLength); + _logger.LogDebug("Truncated text content to {MaxLength} characters", MaxExtractedTextLength); } - return await Task.FromResult(text); + return text; } catch (Exception ex) { @@ -113,5 +121,356 @@ private async Task ExtractTextFromTextFileAsync(byte[] fileContent) return string.Empty; } } + + private string ExtractTextFromPdfFile(string fileName, byte[] fileContent) + { + try + { + using var stream = new MemoryStream(fileContent, writable: false); + using var document = PdfDocument.Open(stream); + var builder = new StringBuilder(); + var pageTexts = document.GetPages() + .Select(page => page.Text) + .Where(pageText => !string.IsNullOrWhiteSpace(pageText)); + + AppendUntilLimit(builder, pageTexts); + + return builder.ToString(); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "PDF text extraction failed for {FileName}", fileName); + return string.Empty; + } + } + + private string ExtractTextFromWordDocx(string fileName, byte[] fileContent) + { + try + { + using var stream = new MemoryStream(fileContent, writable: false); + using var document = new XWPFDocument(stream); + var builder = new StringBuilder(); + var paragraphTexts = document.Paragraphs + .Take(MaxDocxParagraphs) + .Select(paragraph => paragraph.ParagraphText) + .Where(paragraphText => !string.IsNullOrWhiteSpace(paragraphText)); + + AppendUntilLimit(builder, paragraphTexts); + + TryAppendDocxTableText(document, builder); + + return builder.ToString(); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Word (.docx) text extraction failed for {FileName}", fileName); + return string.Empty; + } + } + + private static void TryAppendDocxTableText(XWPFDocument document, StringBuilder builder) + { + if (builder.Length >= MaxExtractedTextLength) + { + return; + } + + foreach (var table in document.Tables) + { + foreach (var row in table.Rows.Take(MaxDocxTableRows)) + { + var cellTexts = row.GetTableCells() + .Take(MaxDocxTableCellsPerRow) + .Select(cell => cell.GetText()) + .Where(cellText => !string.IsNullOrWhiteSpace(cellText)); + + if (AppendUntilLimit(builder, cellTexts)) + { + return; + } + } + } + } + + private string ExtractTextFromExcelFile(string fileName, byte[] fileContent) + { + try + { + using var stream = new MemoryStream(fileContent, writable: false); + using var workbook = WorkbookFactory.Create(stream); + var builder = new StringBuilder(); + var sheetCount = Math.Min(workbook.NumberOfSheets, MaxExcelSheets); + + for (var sheetIndex = 0; sheetIndex < sheetCount; sheetIndex++) + { + if (builder.Length >= MaxExtractedTextLength) + { + break; + } + + var sheet = workbook.GetSheetAt(sheetIndex); + var limitReached = TryAppendExcelSheet(sheet, builder); + if (limitReached) + { + break; + } + } + + return builder.ToString(); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Excel text extraction failed for {FileName}", fileName); + return string.Empty; + } + } + + private static bool TryAppendExcelSheet(ISheet? sheet, StringBuilder builder) + { + if (sheet == null) + { + return false; + } + + var processedRows = 0; + foreach (IRow row in sheet) + { + if (processedRows >= MaxExcelRowsPerSheet || builder.Length >= MaxExtractedTextLength) + { + break; + } + + var limitReached = TryAppendExcelRow(row, builder); + processedRows++; + if (limitReached) + { + return true; + } + } + + return builder.Length >= MaxExtractedTextLength; + } + + private static bool TryAppendExcelRow(IRow row, StringBuilder builder) + { + var rowHasValue = false; + foreach (var cell in row.Cells.Take(MaxExcelCellsPerRow)) + { + var value = GetCellText(cell); + if (string.IsNullOrWhiteSpace(value)) + { + continue; + } + + string? separator = null; + if (rowHasValue) + { + separator = " | "; + } + + var limitReached = AppendWithLimit(builder, value, MaxExtractedTextLength, separator); + rowHasValue = true; + if (limitReached) + { + return true; + } + } + + if (rowHasValue && + builder.Length + Environment.NewLine.Length <= MaxExtractedTextLength) + { + builder.Append(Environment.NewLine); + } + + return builder.Length >= MaxExtractedTextLength; + } + + private static bool TryAppendWithTrailingNewline(StringBuilder builder, string? value) + { + var limitReached = AppendWithLimit(builder, value, MaxExtractedTextLength); + if (limitReached) + { + return true; + } + + if (!string.IsNullOrWhiteSpace(value)) + { + AppendTrailingNewlineIfRoom(builder); + } + + return builder.Length >= MaxExtractedTextLength; + } + + private static bool AppendUntilLimit(StringBuilder builder, IEnumerable texts) + { + var limitReached = texts.Any(text => TryAppendWithTrailingNewline(builder, text)); + return limitReached || builder.Length >= MaxExtractedTextLength; + } + + private static void AppendTrailingNewlineIfRoom(StringBuilder builder) + { + if (builder.Length > 0 && + builder.Length + Environment.NewLine.Length <= MaxExtractedTextLength) + { + builder.Append(Environment.NewLine); + } + } + + private static bool AppendWithLimit(StringBuilder builder, string? value, int maxLength, string? separator = null) + { + if (string.IsNullOrWhiteSpace(value)) + { + return builder.Length >= maxLength; + } + + if (builder.Length >= maxLength) + { + return true; + } + + var remaining = maxLength - builder.Length; + if (remaining <= 0) + { + return true; + } + + if (!string.IsNullOrEmpty(separator) && builder.Length > 0) + { + if (separator.Length >= remaining) + { + builder.Append(separator.AsSpan(0, remaining)); + return true; + } + + builder.Append(separator); + remaining -= separator.Length; + } + + if (value.Length >= remaining) + { + builder.Append(value.AsSpan(0, remaining)); + return true; + } + + builder.Append(value); + return false; + } + + private static string GetCellText(NPOI.SS.UserModel.ICell cell) + { + if (cell == null) + { + return string.Empty; + } + + return (cell.CellType switch + { + CellType.String => cell.StringCellValue ?? string.Empty, + CellType.Numeric => DateUtil.IsCellDateFormatted(cell) + ? cell.DateCellValue.ToString() + : cell.NumericCellValue.ToString(), + CellType.Boolean => cell.BooleanCellValue ? "true" : "false", + CellType.Formula => cell.ToString(), + CellType.Blank => string.Empty, + _ => cell.ToString() ?? string.Empty + }) ?? string.Empty; + } + + private string NormalizeAndLimitText(string text, string fileName) + { + var normalized = NormalizeExtractedText(text); + normalized = RemoveLeadingFileNameArtifact(normalized, fileName); + + if (normalized.Length > MaxExtractedTextLength) + { + normalized = normalized.Substring(0, MaxExtractedTextLength); + _logger.LogDebug("Truncated extracted content to {MaxLength} characters", MaxExtractedTextLength); + } + + return normalized; + } + + private static string NormalizeExtractedText(string text) + { + if (string.IsNullOrWhiteSpace(text)) + { + return string.Empty; + } + + var normalized = text + .Replace('\0', ' ') + .Replace("\r\n", "\n") + .Replace('\r', '\n'); + + normalized = LowerToUpperWordBoundaryRegex().Replace(normalized, " "); + normalized = PunctuationToWordBoundaryRegex().Replace(normalized, " "); + normalized = ColonDashSpacingRegex().Replace(normalized, ": - "); + normalized = HyphenSpacingRegex().Replace(normalized, " - "); + normalized = KeywordBoundaryRegex().Replace(normalized, " "); + normalized = MultipleSpacesRegex().Replace(normalized, " "); + normalized = NewlineWhitespaceRegex().Replace(normalized, "\n"); + normalized = MultipleNewlinesRegex().Replace(normalized, "\n"); + + return normalized.Trim(); + } + + private static string RemoveLeadingFileNameArtifact(string text, string fileName) + { + if (string.IsNullOrWhiteSpace(text) || string.IsNullOrWhiteSpace(fileName)) + { + return text; + } + + var rawStem = Path.GetFileNameWithoutExtension(fileName)?.Trim(); + if (string.IsNullOrWhiteSpace(rawStem)) + { + return text; + } + + var decodedStem = Uri.UnescapeDataString(rawStem); + foreach (var candidate in new[] { rawStem, decodedStem }) + { + if (string.IsNullOrWhiteSpace(candidate)) + { + continue; + } + + if (text.StartsWith(candidate, StringComparison.OrdinalIgnoreCase)) + { + var stripped = text.Substring(candidate.Length).TrimStart(' ', '-', ':', '.', '\t'); + if (!string.IsNullOrWhiteSpace(stripped)) + { + return stripped; + } + } + } + + return text; + } + + [GeneratedRegex(@"(?<=[a-z])(?=[A-Z])")] + private static partial Regex LowerToUpperWordBoundaryRegex(); + + [GeneratedRegex(@"(?<=[\.\,\:\;\)])(?=[A-Za-z0-9])")] + private static partial Regex PunctuationToWordBoundaryRegex(); + + [GeneratedRegex(@":-")] + private static partial Regex ColonDashSpacingRegex(); + + [GeneratedRegex(@"(?<=\S)- (?=[A-Za-z])")] + private static partial Regex HyphenSpacingRegex(); + + [GeneratedRegex(@"(?<=[a-z])(?=(project|funding|budget|community|summary|notes|details|planning|outcomes|background|services)\b)", RegexOptions.IgnoreCase)] + private static partial Regex KeywordBoundaryRegex(); + + [GeneratedRegex(@"[ \t]+")] + private static partial Regex MultipleSpacesRegex(); + + [GeneratedRegex(@"\n\s*")] + private static partial Regex NewlineWhitespaceRegex(); + + [GeneratedRegex(@"\n{2,}")] + private static partial Regex MultipleNewlinesRegex(); } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/AddressInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/AddressInfoDataProvider.cs new file mode 100644 index 0000000000..44d54844b6 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/AddressInfoDataProvider.cs @@ -0,0 +1,123 @@ +using System; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Unity.GrantManager.Applications; +using Unity.GrantManager.GrantApplications; +using Volo.Abp.Data; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.MultiTenancy; + +namespace Unity.GrantManager.ApplicantProfile +{ + /// + /// Provides address information for the applicant profile by querying + /// application addresses linked to the applicant's form submissions. + /// Addresses are resolved via both the ApplicationId and ApplicantId + /// relationships, with duplicates removed. + /// + [ExposeServices(typeof(IApplicantProfileDataProvider))] + public class AddressInfoDataProvider( + ICurrentTenant currentTenant, + IRepository applicationFormSubmissionRepository, + IRepository applicantAddressRepository, + IRepository applicationRepository) + : IApplicantProfileDataProvider, ITransientDependency + { + /// + public string Key => ApplicantProfileKeys.AddressInfo; + + /// + public async Task GetDataAsync(ApplicantProfileInfoRequest request) + { + var dto = new ApplicantAddressInfoDto + { + Addresses = [] + }; + + var subject = request.Subject ?? string.Empty; + var normalizedSubject = subject.Contains('@') + ? subject[..subject.IndexOf('@')].ToUpperInvariant() + : subject.ToUpperInvariant(); + + using (currentTenant.Change(request.TenantId)) + { + var submissionsQuery = await applicationFormSubmissionRepository.GetQueryableAsync(); + var addressesQuery = await applicantAddressRepository.GetQueryableAsync(); + var applicationsQuery = await applicationRepository.GetQueryableAsync(); + + var matchingSubmissions = submissionsQuery + .Where(s => s.OidcSub == normalizedSubject); + + // Addresses linked via ApplicationId — not editable (owned by an application) + var byApplicationId = + from submission in matchingSubmissions + join address in addressesQuery on submission.ApplicationId equals address.ApplicationId + join application in applicationsQuery on address.ApplicationId equals application.Id + select new { address, address.CreationTime, application.ReferenceNo, IsEditable = false }; + + // Addresses linked via ApplicantId — editable (directly from the applicant) + var byApplicantId = + from submission in matchingSubmissions + join address in addressesQuery on submission.ApplicantId equals address.ApplicantId + join application in applicationsQuery on address.ApplicationId equals application.Id into apps + from application in apps.DefaultIfEmpty() + select new { address, address.CreationTime, ReferenceNo = application != null ? application.ReferenceNo : null, IsEditable = true }; + + var results = await byApplicationId + .Concat(byApplicantId) + .ToListAsync(); + + // Deduplicate by address Id — application-linked (IsEditable = false) takes priority + var deduplicated = results + .GroupBy(r => r.address.Id) + .Select(g => g.OrderBy(r => r.IsEditable).First()) + .ToList(); + + var addressDtos = deduplicated.Select(r => new AddressInfoItemDto + { + Id = r.address.Id, + AddressType = GetAddressTypeName(r.address.AddressType), + Street = r.address.Street ?? string.Empty, + Street2 = r.address.Street2 ?? string.Empty, + Unit = r.address.Unit ?? string.Empty, + City = r.address.City ?? string.Empty, + Province = r.address.Province ?? string.Empty, + PostalCode = r.address.Postal ?? string.Empty, + Country = r.address.Country ?? string.Empty, + IsPrimary = r.address.HasProperty("isPrimary") && r.address.GetProperty("isPrimary"), + IsEditable = r.IsEditable, + ReferenceNo = r.ReferenceNo + }).ToList(); + + // If no address is marked as primary, mark the most recent one as primary + if (addressDtos.Count > 0 && !addressDtos.Any(a => a.IsPrimary)) + { + var mostRecent = deduplicated.OrderByDescending(r => r.CreationTime).First(); + var mostRecentDto = addressDtos.First(a => a.Id == mostRecent.address.Id); + mostRecentDto.IsPrimary = true; + } + + dto.Addresses.AddRange(addressDtos); + } + + return dto; + } + + /// + /// Maps an enum value to a human-readable display name. + /// + private static string GetAddressTypeName(AddressType addressType) + { + return addressType switch + { + AddressType.PhysicalAddress => "Physical", + AddressType.MailingAddress => "Mailing", + AddressType.BusinessAddress => "Business", + _ => addressType.ToString() + }; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfileAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileAppService.cs similarity index 98% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfileAppService.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileAppService.cs index 057b27d905..df8617813d 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfileAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileAppService.cs @@ -4,7 +4,7 @@ using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; -using Unity.GrantManager.Applicants.ApplicantProfile; +using Unity.GrantManager.Applicants; using Unity.GrantManager.Applications; using Volo.Abp; using Volo.Abp.Application.Services; @@ -12,7 +12,7 @@ using Volo.Abp.MultiTenancy; using Volo.Abp.TenantManagement; -namespace Unity.GrantManager.Applicants +namespace Unity.GrantManager.ApplicantProfile { [RemoteService(false)] public class ApplicantProfileAppService( diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileContactService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileContactService.cs new file mode 100644 index 0000000000..eba51fa136 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileContactService.cs @@ -0,0 +1,131 @@ +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Unity.GrantManager.Applications; +using Unity.GrantManager.Contacts; +using Unity.GrantManager.GrantApplications; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories; + +namespace Unity.GrantManager.ApplicantProfile; + +/// +/// Applicant-profile-specific contact service. Retrieves contacts linked to applicant profiles, +/// application-level contacts matched by OIDC subject, and applicant agent contacts derived from +/// the submission login token. This service operates independently from the generic +/// and queries repositories directly. +/// +public class ApplicantProfileContactService( + IContactRepository contactRepository, + IContactLinkRepository contactLinkRepository, + IRepository applicationFormSubmissionRepository, + IRepository applicationContactRepository, + IRepository applicantAgentRepository, + IRepository applicationRepository) + : IApplicantProfileContactService, ITransientDependency +{ + private const string ApplicantProfileEntityType = "ApplicantProfile"; + + /// + public async Task> GetProfileContactsAsync(Guid profileId) + { + var contactLinksQuery = await contactLinkRepository.GetQueryableAsync(); + var contactsQuery = await contactRepository.GetQueryableAsync(); + + return await ( + from link in contactLinksQuery + join contact in contactsQuery on link.ContactId equals contact.Id + where link.RelatedEntityType == ApplicantProfileEntityType + && link.RelatedEntityId == profileId + && link.IsActive + select new ContactInfoItemDto + { + ContactId = contact.Id, + Name = contact.Name, + Title = contact.Title, + Email = contact.Email, + HomePhoneNumber = contact.HomePhoneNumber, + MobilePhoneNumber = contact.MobilePhoneNumber, + WorkPhoneNumber = contact.WorkPhoneNumber, + WorkPhoneExtension = contact.WorkPhoneExtension, + ContactType = link.RelatedEntityType, + Role = link.Role, + IsPrimary = link.IsPrimary, + IsEditable = true, + ApplicationId = null, + ReferenceNo = null + }).ToListAsync(); + } + + /// + public async Task> GetApplicationContactsBySubjectAsync(string subject) + { + var submissionsQuery = await applicationFormSubmissionRepository.GetQueryableAsync(); + var applicationContactsQuery = await applicationContactRepository.GetQueryableAsync(); + var applicationsQuery = await applicationRepository.GetQueryableAsync(); + + var applicationContacts = await ( + from submission in submissionsQuery + join appContact in applicationContactsQuery on submission.ApplicationId equals appContact.ApplicationId + join application in applicationsQuery on submission.ApplicationId equals application.Id + where submission.OidcSub == subject + select new ContactInfoItemDto + { + ContactId = appContact.Id, + Name = appContact.ContactFullName, + Title = appContact.ContactTitle, + Email = appContact.ContactEmail, + MobilePhoneNumber = appContact.ContactMobilePhone, + WorkPhoneNumber = appContact.ContactWorkPhone, + Role = GetMatchingRole(appContact.ContactType), + ContactType = "Application", + IsPrimary = false, + IsEditable = false, + ApplicationId = appContact.ApplicationId, + ReferenceNo = application.ReferenceNo + }).ToListAsync(); + + return applicationContacts; + } + + /// + public async Task> GetApplicantAgentContactsBySubjectAsync(string subject) + { + var submissionsQuery = await applicationFormSubmissionRepository.GetQueryableAsync(); + var agentsQuery = await applicantAgentRepository.GetQueryableAsync(); + var applicationsQuery = await applicationRepository.GetQueryableAsync(); + + var agentContacts = await ( + from submission in submissionsQuery + join agent in agentsQuery on submission.ApplicationId equals agent.ApplicationId + join application in applicationsQuery on submission.ApplicationId equals application.Id + where submission.OidcSub == subject + select new ContactInfoItemDto + { + ContactId = agent.Id, + Name = agent.Name, + Title = agent.Title, + Email = agent.Email, + WorkPhoneNumber = agent.Phone, + WorkPhoneExtension = agent.PhoneExtension, + MobilePhoneNumber = agent.Phone2, + Role = agent.RoleForApplicant, + ContactType = "ApplicantAgent", + IsPrimary = false, + IsEditable = false, + ApplicationId = agent.ApplicationId, + ReferenceNo = application.ReferenceNo + }).ToListAsync(); + + return agentContacts; + } + + private static string GetMatchingRole(string contactType) + { + return ApplicationContactOptionList.ContactTypeList.TryGetValue(contactType, out string? value) + ? value : contactType; + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/ApplicantProfileKeys.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileKeys.cs similarity index 85% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/ApplicantProfileKeys.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileKeys.cs index 4b232c4537..70bdfaaaa1 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/ApplicantProfileKeys.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ApplicantProfileKeys.cs @@ -1,4 +1,4 @@ -namespace Unity.GrantManager.Applicants.ApplicantProfile +namespace Unity.GrantManager.ApplicantProfile { public static class ApplicantProfileKeys { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ContactInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ContactInfoDataProvider.cs new file mode 100644 index 0000000000..e028bb1b27 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/ContactInfoDataProvider.cs @@ -0,0 +1,50 @@ +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Volo.Abp.DependencyInjection; +using Volo.Abp.MultiTenancy; + +namespace Unity.GrantManager.ApplicantProfile +{ + /// + /// Provides contact information for the applicant profile by aggregating + /// profile-linked contacts, application-level contacts, and applicant agent contacts. + /// + [ExposeServices(typeof(IApplicantProfileDataProvider))] + public class ContactInfoDataProvider( + ICurrentTenant currentTenant, + IApplicantProfileContactService applicantProfileContactService) + : IApplicantProfileDataProvider, ITransientDependency + { + /// + public string Key => ApplicantProfileKeys.ContactInfo; + + /// + public async Task GetDataAsync(ApplicantProfileInfoRequest request) + { + var dto = new ApplicantContactInfoDto + { + Contacts = [] + }; + + var tenantId = request.TenantId; + + using (currentTenant.Change(tenantId)) + { + var profileContacts = await applicantProfileContactService.GetProfileContactsAsync(request.ProfileId); + dto.Contacts.AddRange(profileContacts); + + var normalizedSubject = request.Subject.Contains('@') + ? request.Subject[..request.Subject.IndexOf('@')].ToUpperInvariant() + : request.Subject.ToUpperInvariant(); + + var applicationContacts = await applicantProfileContactService.GetApplicationContactsBySubjectAsync(normalizedSubject); + dto.Contacts.AddRange(applicationContacts); + + var agentContacts = await applicantProfileContactService.GetApplicantAgentContactsBySubjectAsync(normalizedSubject); + dto.Contacts.AddRange(agentContacts); + } + + return dto; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/History/ApplicantHistoryAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/History/ApplicantHistoryAppService.cs new file mode 100644 index 0000000000..04e6c0b14e --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/History/ApplicantHistoryAppService.cs @@ -0,0 +1,118 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Unity.GrantManager.Applications; + +namespace Unity.GrantManager.ApplicantProfile; + +public class ApplicantHistoryAppService( + IFundingHistoryRepository fundingHistoryRepository, + IIssueTrackingRepository issueTrackingRepository, + IAuditHistoryRepository auditHistoryRepository, + IApplicantRepository applicantRepository) : GrantManagerAppService, IApplicantHistoryAppService +{ + public async Task> GetFundingHistoryListAsync(Guid applicantId) + { + var items = await fundingHistoryRepository.GetByApplicantIdAsync(applicantId); + return ObjectMapper.Map, List>(items); + } + + public async Task GetFundingHistoryAsync(Guid id) + { + var entity = await fundingHistoryRepository.GetAsync(id); + return ObjectMapper.Map(entity); + } + + public async Task CreateFundingHistoryAsync(CreateUpdateFundingHistoryDto input) + { + var entity = ObjectMapper.Map(input); + await fundingHistoryRepository.InsertAsync(entity, autoSave: true); + return ObjectMapper.Map(entity); + } + + public async Task UpdateFundingHistoryAsync(Guid id, CreateUpdateFundingHistoryDto input) + { + var entity = await fundingHistoryRepository.GetAsync(id); + ObjectMapper.Map(input, entity); + await fundingHistoryRepository.UpdateAsync(entity, autoSave: true); + return ObjectMapper.Map(entity); + } + + public async Task DeleteFundingHistoryAsync(Guid id) + { + await fundingHistoryRepository.DeleteAsync(id, autoSave: true); + } + + public async Task> GetIssueTrackingListAsync(Guid applicantId) + { + var items = await issueTrackingRepository.GetByApplicantIdAsync(applicantId); + return ObjectMapper.Map, List>(items); + } + + public async Task GetIssueTrackingAsync(Guid id) + { + var entity = await issueTrackingRepository.GetAsync(id); + return ObjectMapper.Map(entity); + } + + public async Task CreateIssueTrackingAsync(CreateUpdateIssueTrackingDto input) + { + var entity = ObjectMapper.Map(input); + await issueTrackingRepository.InsertAsync(entity, autoSave: true); + return ObjectMapper.Map(entity); + } + + public async Task UpdateIssueTrackingAsync(Guid id, CreateUpdateIssueTrackingDto input) + { + var entity = await issueTrackingRepository.GetAsync(id); + ObjectMapper.Map(input, entity); + await issueTrackingRepository.UpdateAsync(entity, autoSave: true); + return ObjectMapper.Map(entity); + } + + public async Task DeleteIssueTrackingAsync(Guid id) + { + await issueTrackingRepository.DeleteAsync(id, autoSave: true); + } + + public async Task> GetAuditHistoryListAsync(Guid applicantId) + { + var items = await auditHistoryRepository.GetByApplicantIdAsync(applicantId); + return ObjectMapper.Map, List>(items); + } + + public async Task GetAuditHistoryAsync(Guid id) + { + var entity = await auditHistoryRepository.GetAsync(id); + return ObjectMapper.Map(entity); + } + + public async Task CreateAuditHistoryAsync(CreateUpdateAuditHistoryDto input) + { + var entity = ObjectMapper.Map(input); + await auditHistoryRepository.InsertAsync(entity, autoSave: true); + return ObjectMapper.Map(entity); + } + + public async Task UpdateAuditHistoryAsync(Guid id, CreateUpdateAuditHistoryDto input) + { + var entity = await auditHistoryRepository.GetAsync(id); + ObjectMapper.Map(input, entity); + await auditHistoryRepository.UpdateAsync(entity, autoSave: true); + return ObjectMapper.Map(entity); + } + + public async Task DeleteAuditHistoryAsync(Guid id) + { + await auditHistoryRepository.DeleteAsync(id, autoSave: true); + } + + public async Task SaveNotesAsync(Guid applicantId, SaveApplicantHistoryNotesDto input) + { + var applicant = await applicantRepository.GetAsync(applicantId); + applicant.FundingHistoryComments = input.FundingHistoryComments; + applicant.IssueTrackingComments = input.IssueTrackingComments; + applicant.AuditComments = input.AuditComments; + await applicantRepository.UpdateAsync(applicant, autoSave: true); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/OrgInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/OrgInfoDataProvider.cs similarity index 60% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/OrgInfoDataProvider.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/OrgInfoDataProvider.cs index 6d7f3c7cc1..cc0bc93682 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/OrgInfoDataProvider.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/OrgInfoDataProvider.cs @@ -1,14 +1,20 @@ using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ProfileData; +using Unity.GrantManager.ApplicantProfile.ProfileData; using Volo.Abp.DependencyInjection; -namespace Unity.GrantManager.Applicants.ApplicantProfile +namespace Unity.GrantManager.ApplicantProfile { + /// + /// Provides organization information for the applicant profile. + /// This is a placeholder provider for future implementation. + /// [ExposeServices(typeof(IApplicantProfileDataProvider))] public class OrgInfoDataProvider : IApplicantProfileDataProvider, ITransientDependency { + /// public string Key => ApplicantProfileKeys.OrgInfo; + /// public Task GetDataAsync(ApplicantProfileInfoRequest request) { return Task.FromResult(new ApplicantOrgInfoDto()); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/PaymentInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/PaymentInfoDataProvider.cs similarity index 61% rename from applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/PaymentInfoDataProvider.cs rename to applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/PaymentInfoDataProvider.cs index 5684f158e1..9b7b86e62f 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/PaymentInfoDataProvider.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/PaymentInfoDataProvider.cs @@ -1,14 +1,20 @@ using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ProfileData; +using Unity.GrantManager.ApplicantProfile.ProfileData; using Volo.Abp.DependencyInjection; -namespace Unity.GrantManager.Applicants.ApplicantProfile +namespace Unity.GrantManager.ApplicantProfile { + /// + /// Provides payment information for the applicant profile. + /// This is a placeholder provider for future implementation. + /// [ExposeServices(typeof(IApplicantProfileDataProvider))] public class PaymentInfoDataProvider : IApplicantProfileDataProvider, ITransientDependency { + /// public string Key => ApplicantProfileKeys.PaymentInfo; + /// public Task GetDataAsync(ApplicantProfileInfoRequest request) { return Task.FromResult(new ApplicantPaymentInfoDto()); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/SubmissionInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/SubmissionInfoDataProvider.cs new file mode 100644 index 0000000000..22a37c1687 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicantProfile/SubmissionInfoDataProvider.cs @@ -0,0 +1,139 @@ +using System; +using System.Linq; +using System.Text.Json; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Logging; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Unity.GrantManager.Applications; +using Unity.GrantManager.Integrations; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.MultiTenancy; + +namespace Unity.GrantManager.ApplicantProfile +{ + /// + /// Provides submission information for the applicant profile by querying + /// application form submissions linked to the applicant's OIDC subject. + /// Resolves actual submission timestamps from CHEFS JSON data and derives + /// the form view URL from the INTAKE_API_BASE dynamic URL setting. + /// + [ExposeServices(typeof(IApplicantProfileDataProvider))] + public class SubmissionInfoDataProvider( + ICurrentTenant currentTenant, + IRepository applicationFormSubmissionRepository, + IRepository applicationRepository, + IRepository applicationStatusRepository, + IEndpointManagementAppService endpointManagementAppService, + ILogger logger) + : IApplicantProfileDataProvider, ITransientDependency + { + /// + public string Key => ApplicantProfileKeys.SubmissionInfo; + + /// + public async Task GetDataAsync(ApplicantProfileInfoRequest request) + { + var dto = new ApplicantSubmissionInfoDto + { + Submissions = [] + }; + + var subject = request.Subject ?? string.Empty; + var normalizedSubject = subject.Contains('@') + ? subject[..subject.IndexOf('@')].ToUpperInvariant() + : subject.ToUpperInvariant(); + + dto.LinkSource = await ResolveFormViewUrlAsync(); + + using (currentTenant.Change(request.TenantId)) + { + var submissionsQuery = await applicationFormSubmissionRepository.GetQueryableAsync(); + var applicationsQuery = await applicationRepository.GetQueryableAsync(); + var statusesQuery = await applicationStatusRepository.GetQueryableAsync(); + + var results = await ( + from submission in submissionsQuery + join application in applicationsQuery on submission.ApplicationId equals application.Id + join status in statusesQuery on application.ApplicationStatusId equals status.Id + where submission.OidcSub == normalizedSubject + select new + { + submission.Id, + LinkId = submission.ChefsSubmissionGuid, + submission.CreationTime, + submission.Submission, + application.ReferenceNo, + application.ProjectName, + Status = status.ExternalStatus + }).ToListAsync(); + + dto.Submissions.AddRange(results.Select(s => new SubmissionInfoItemDto + { + Id = s.Id, + LinkId = s.LinkId, + ReceivedTime = s.CreationTime, + SubmissionTime = ResolveSubmissionTime(s.Submission, s.CreationTime), + ReferenceNo = s.ReferenceNo, + ProjectName = s.ProjectName, + Status = s.Status + })); + } + + return dto; + } + + /// + /// Derives the CHEFS form view URL from the INTAKE_API_BASE dynamic URL setting. + /// e.g. https://chefs-dev.apps.silver.devops.gov.bc.ca/app/api/v1 + /// -> https://chefs-dev.apps.silver.devops.gov.bc.ca/app/user/view?s= + /// + private async Task ResolveFormViewUrlAsync() + { + try + { + var chefsApiBaseUrl = await endpointManagementAppService.GetChefsApiBaseUrlAsync(); + var trimmed = chefsApiBaseUrl.TrimEnd('/'); + const string apiSegment = "/api/v1"; + if (trimmed.EndsWith(apiSegment, StringComparison.OrdinalIgnoreCase)) + { + trimmed = trimmed[..^apiSegment.Length]; + } + return $"{trimmed}/user/view?s="; + } + catch (Exception ex) + { + logger.LogWarning(ex, "Failed to resolve CHEFS form view URL from INTAKE_API_BASE setting."); + return string.Empty; + } + } + + /// + /// Extracts the submission timestamp from the CHEFS JSON createdAt field. + /// Falls back to the provided value if the field is + /// missing or the JSON cannot be parsed. + /// + private DateTime ResolveSubmissionTime(string submissionJson, DateTime fallback) + { + try + { + if (!string.IsNullOrEmpty(submissionJson)) + { + using var doc = JsonDocument.Parse(submissionJson); + if (doc.RootElement.TryGetProperty("createdAt", out var createdAt) && + createdAt.TryGetDateTime(out var dateTime)) + { + return dateTime; + } + } + } + catch (JsonException ex) + { + logger.LogWarning(ex, "Failed to parse submission JSON for submission time. Falling back to received time."); + } + + return fallback; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantAppService.cs index 0568af9427..251105e310 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantAppService.cs @@ -17,6 +17,7 @@ using Unity.Modules.Shared; using Unity.Modules.Shared.Utils; using Unity.Payments.Domain.Suppliers; +using Unity.GrantManager.Permissions; using Unity.Payments.Integrations.Cas; using Unity.Payments.Suppliers; using Volo.Abp.DependencyInjection; @@ -195,7 +196,8 @@ public async Task PartialUpdateApplicantSummaryAsync(Guid applicantId .Distinct(StringComparer.OrdinalIgnoreCase) .ToList() ?? []; - if (modifiedSummaryFields.Contains(nameof(UpdateApplicantSummaryDto.RedStop), StringComparer.OrdinalIgnoreCase)) + if (modifiedSummaryFields.Contains(nameof(UpdateApplicantSummaryDto.RedStop), StringComparer.OrdinalIgnoreCase) + && await AuthorizationService.IsGrantedAsync(GrantApplicationPermissions.Applicants.EditRedStop)) { applicant.RedStop = input.Data.RedStop; } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/AddressInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/AddressInfoDataProvider.cs deleted file mode 100644 index 693a289943..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/AddressInfoDataProvider.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ProfileData; -using Volo.Abp.DependencyInjection; - -namespace Unity.GrantManager.Applicants.ApplicantProfile -{ - [ExposeServices(typeof(IApplicantProfileDataProvider))] - public class AddressInfoDataProvider : IApplicantProfileDataProvider, ITransientDependency - { - public string Key => ApplicantProfileKeys.AddressInfo; - - public Task GetDataAsync(ApplicantProfileInfoRequest request) - { - return Task.FromResult(new ApplicantAddressInfoDto()); - } - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/ContactInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/ContactInfoDataProvider.cs deleted file mode 100644 index 71539ca65c..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/ContactInfoDataProvider.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ProfileData; -using Volo.Abp.DependencyInjection; - -namespace Unity.GrantManager.Applicants.ApplicantProfile -{ - [ExposeServices(typeof(IApplicantProfileDataProvider))] - public class ContactInfoDataProvider : IApplicantProfileDataProvider, ITransientDependency - { - public string Key => ApplicantProfileKeys.ContactInfo; - - public Task GetDataAsync(ApplicantProfileInfoRequest request) - { - return Task.FromResult(new ApplicantContactInfoDto()); - } - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/SubmissionInfoDataProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/SubmissionInfoDataProvider.cs deleted file mode 100644 index 7af7e641fc..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantProfile/SubmissionInfoDataProvider.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ProfileData; -using Volo.Abp.DependencyInjection; - -namespace Unity.GrantManager.Applicants.ApplicantProfile -{ - [ExposeServices(typeof(IApplicantProfileDataProvider))] - public class SubmissionInfoDataProvider : IApplicantProfileDataProvider, ITransientDependency - { - public string Key => ApplicantProfileKeys.SubmissionInfo; - - public Task GetDataAsync(ApplicantProfileInfoRequest request) - { - return Task.FromResult(new ApplicantSubmissionInfoDto()); - } - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/BackgroundWorkers/ApplicantTenantMapReconciliationWorker.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/BackgroundWorkers/ApplicantTenantMapReconciliationWorker.cs index b93b81032c..61d07b1ff4 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/BackgroundWorkers/ApplicantTenantMapReconciliationWorker.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/BackgroundWorkers/ApplicantTenantMapReconciliationWorker.cs @@ -2,6 +2,7 @@ using Quartz; using System; using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; using Unity.GrantManager.Settings; using Unity.Modules.Shared.Utils; using Volo.Abp.BackgroundWorkers.Quartz; diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAppService.cs index 75ac9b3c6f..c5a2c26f3b 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAppService.cs @@ -1,4 +1,5 @@ using Microsoft.AspNetCore.Authorization; +using Volo.Abp; using Microsoft.AspNetCore.Authorization.Infrastructure; using System; using System.Collections.Generic; @@ -13,6 +14,7 @@ using Unity.GrantManager.Applications; using Unity.GrantManager.Comments; using Unity.GrantManager.Exceptions; +using Unity.GrantManager.Permissions; using Unity.GrantManager.Workflow; using Unity.Modules.Shared; using Volo.Abp.Application.Services; @@ -80,13 +82,25 @@ public async Task> GetListAsync(Guid applicationId) { IQueryable queryableAssessments = _assessmentRepository.GetQueryableAsync().Result; var assessments = queryableAssessments.Where(c => c.ApplicationId.Equals(applicationId)).ToList(); - return await Task.FromResult>(ObjectMapper.Map, List>(assessments.OrderByDescending(s => s.CreationTime).ToList())); + return await Task.FromResult>( + ObjectMapper.Map, List>( + assessments.OrderByDescending(s => s.IsAiAssessment).ThenByDescending(s => s.CreationTime).ToList())); } public async Task GetDisplayList(Guid applicationId) { var assessments = await _assessmentRepository.GetListWithAssessorsAsync(applicationId); var assessmentList = ObjectMapper.Map, List>(assessments); + + // If AI Scoring feature is disabled, or user doesn't have permissions to view AI assessments, filter out AI assessments from the list + var aiScoringEnabled = await _featureChecker.IsEnabledAsync("Unity.AI.Scoring"); + var canViewAI = await AuthorizationService.IsGrantedAsync(GrantApplicationPermissions.AI.ScoringAssistant.Default); + assessmentList = assessmentList + .Where(a => !a.IsAiAssessment || (aiScoringEnabled && canViewAI)) + .OrderByDescending(a => a.IsAiAssessment) + .ThenByDescending(a => a.StartDate) + .ToList(); + bool isApplicationUsingDefaultScoresheet = true; foreach (var assessment in assessmentList) { @@ -224,6 +238,10 @@ public async Task UpdateAssessmentRecommendation(UpdateAssessmentRecommendationD var assessment = await _assessmentRepository.GetAsync(dto.AssessmentId); if (assessment != null) { + if (assessment.IsAiAssessment) + { + throw new BusinessException(GrantManagerDomainErrorCodes.CannotModifyAiAssessment); + } assessment.ApprovalRecommended = dto.ApprovalRecommended; await _assessmentRepository.UpdateAsync(assessment); } @@ -278,6 +296,11 @@ public async Task ExecuteAssessmentAction(Guid assessmentId, Asse { var assessment = await _assessmentRepository.GetAsync(assessmentId); + if (assessment.IsAiAssessment) + { + throw new BusinessException(GrantManagerDomainErrorCodes.CannotModifyAiAssessment); + } + await AuthorizationService.CheckAsync(assessment, GetActionAuthorizationRequirement(triggerAction)); await ApplyAdditionalValidationsAsync(assessmentId, triggerAction); @@ -332,6 +355,10 @@ public async Task UpdateAssessmentScore(AssessmentScoresDto dto) var assessment = await _assessmentRepository.GetAsync(dto.AssessmentId); if (assessment != null) { + if (assessment.IsAiAssessment) + { + throw new BusinessException(GrantManagerDomainErrorCodes.CannotModifyAiAssessment); + } if (CurrentUser.GetId() != assessment.AssessorId) { throw new AbpValidationException("Error: You do not own this assessment record."); @@ -357,6 +384,156 @@ public async Task UpdateAssessmentScore(AssessmentScoresDto dto) } } + /// + /// Creates a new human assessment by cloning an existing AI assessment. + /// Copies the AI scoresheet answers (from Application.AIScoresheetAnswers) as real + /// Answer records on the new assessment's scoresheet instance, and carries over + /// ApprovalRecommended as a starting point for the reviewer. + /// + /// The ID of the source AI assessment to clone from. + /// The newly created human . + /// + /// Thrown when the specified assessment is not an AI assessment. + /// + public async Task CloneFromAiAsync(Guid aiAssessmentId) + { + var aiAssessment = await _assessmentRepository.GetAsync(aiAssessmentId); + if (!aiAssessment.IsAiAssessment) + { + throw new BusinessException(GrantManagerDomainErrorCodes.CannotCloneNonAiAssessment); + } + + var application = await _applicationRepository.GetAsync(aiAssessment.ApplicationId); + var currentUser = await _userLookupProvider.FindByIdAsync(CurrentUser.GetId()); + var newAssessment = await _assessmentManager.CreateAsync(application, currentUser); + + newAssessment.ApprovalRecommended = aiAssessment.ApprovalRecommended; + await _assessmentRepository.UpdateAsync(newAssessment); + + if (await _featureChecker.IsEnabledAsync(UnityFlex) && !string.IsNullOrEmpty(application.AIScoresheetAnswers)) + { + await CopyAiAnswersToAssessmentAsync(application.AIScoresheetAnswers, newAssessment.Id); + } + + return ObjectMapper.Map(newAssessment); + } + + /// + /// Parses Application.AIScoresheetAnswers (JSONB) and writes each AI answer as a + /// real Answer record on the new human assessment's scoresheet instance. + /// + /// Question types are resolved via so that each value + /// is stored in the correct serialized format. SelectList answers are converted from the + /// AI's 1-based numeric index to the actual option value before being persisted. + /// Questions not identified as Numeric, YesNo, or SelectList default to TextArea. + /// + /// + /// Answers are persisted by publishing a + /// local event, reusing the same pipeline as . + /// + /// + private async Task CopyAiAnswersToAssessmentAsync(string aiScoresheetAnswers, Guid newAssessmentId) + { + var rawAiAnswers = new Dictionary(); + try + { + using var doc = JsonDocument.Parse(aiScoresheetAnswers); + foreach (var property in doc.RootElement.EnumerateObject()) + { + if (!Guid.TryParse(property.Name, out var questionId)) continue; + if (property.Value.ValueKind != JsonValueKind.Object) continue; + if (!property.Value.TryGetProperty("answer", out var answerProp)) continue; + rawAiAnswers[questionId] = answerProp.ToString(); + } + } + catch (JsonException) + { + return; + } + + if (rawAiAnswers.Count == 0) return; + + var questionIds = rawAiAnswers.Keys.ToList(); + var numericQuestionIds = (await _scoresheetAppService.GetNumericQuestionIdsAsync(questionIds)).ToHashSet(); + var yesNoQuestions = await _scoresheetAppService.GetYesNoQuestionsAsync(questionIds); + var selectListQuestions = await _scoresheetAppService.GetSelectListQuestionsAsync(questionIds); + var yesNoQuestionIds = yesNoQuestions.Select(q => q.Id).ToHashSet(); + var selectListQuestionIds = selectListQuestions.Select(q => q.Id).ToHashSet(); + + var assessmentAnswers = new List(); + foreach (var (questionId, rawAnswer) in rawAiAnswers) + { + QuestionType questionType; + string answer; + + if (numericQuestionIds.Contains(questionId)) + { + questionType = QuestionType.Number; + answer = rawAnswer; + } + else if (yesNoQuestionIds.Contains(questionId)) + { + questionType = QuestionType.YesNo; + answer = rawAnswer; + } + else if (selectListQuestionIds.Contains(questionId)) + { + questionType = QuestionType.SelectList; + var q = selectListQuestions.Find(x => x.Id == questionId); + answer = ConvertNumericAnswerToSelectListValue(rawAnswer, q?.Definition); + } + else + { + questionType = QuestionType.TextArea; + answer = rawAnswer; + } + + assessmentAnswers.Add(new AssessmentAnswersEto + { + QuestionId = questionId, + Answer = answer, + QuestionType = (int)questionType + }); + } + + if (assessmentAnswers.Count > 0) + { + await _localEventBus.PublishAsync(new PersistScoresheetSectionInstanceEto + { + AssessmentId = newAssessmentId, + AssessmentAnswers = assessmentAnswers + }); + } + } + + /// + /// Converts a 1-based numeric index (as returned by the AI for SelectList questions) + /// to the actual option value defined in the question's JSON definition. + /// Returns the original value unchanged if parsing fails or the index is out of range. + /// + private static string ConvertNumericAnswerToSelectListValue(string numericAnswer, string? definition) + { + if (string.IsNullOrEmpty(definition) || string.IsNullOrEmpty(numericAnswer)) + return numericAnswer; + try + { + if (!int.TryParse(numericAnswer.Trim(), out var optionNumber) || optionNumber <= 0) + return numericAnswer; + var selectListDefinition = JsonSerializer.Deserialize(definition); + if (selectListDefinition?.Options != null && selectListDefinition.Options.Count > 0) + { + var optionIndex = optionNumber - 1; + if (optionIndex < selectListDefinition.Options.Count) + return selectListDefinition.Options[optionIndex].Value; + } + } + catch (JsonException) + { + // Malformed definition — return the raw answer unchanged + } + return numericAnswer; + } + public async Task SaveScoresheetSectionAnswers(AssessmentScoreSectionDto dto) { var assessment = await _assessmentRepository.GetAsync(dto.AssessmentId); @@ -364,6 +541,10 @@ public async Task SaveScoresheetSectionAnswers(AssessmentScoreSectionDto dto) { if (assessment != null) { + if (assessment.IsAiAssessment) + { + throw new BusinessException(GrantManagerDomainErrorCodes.CannotModifyAiAssessment); + } if (CurrentUser.GetId() != assessment.AssessorId) { throw new AbpValidationException("Error: You do not own this assessment record."); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAuthorizationHandler.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAuthorizationHandler.cs index 609d3fc84b..3a8a4bbffd 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAuthorizationHandler.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Assessments/AssessmentAuthorizationHandler.cs @@ -24,6 +24,12 @@ protected override async Task HandleRequirementAsync( OperationAuthorizationRequirement requirement, Assessment resource) { + if (resource.IsAiAssessment) + { + context.Fail(); + return; + } + if (requirement.Name.Equals(UnitySelector.Review.AssessmentReviewList.Update.SendBack) && await CheckPolicyAsync(requirement.Name, context)) { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Attachments/AttachmentAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Attachments/AttachmentAppService.cs index 5cced9c59c..029466de6c 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Attachments/AttachmentAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Attachments/AttachmentAppService.cs @@ -2,6 +2,7 @@ using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; +using System.Linq.Expressions; using System.Linq; using System.Threading.Tasks; using Unity.GrantManager.AI; @@ -27,6 +28,9 @@ public class AttachmentAppService( IAIService aiService, ISubmissionAppService submissionAppService) : ApplicationService, IAttachmentAppService { + private const string DefaultContentType = "application/octet-stream"; + private const string SummaryGenerationFailedMessage = "AI summary generation failed."; + public async Task> GetApplicationAsync(Guid applicationId) { return (await GetAttachmentsAsync(new AttachmentParametersDto(AttachmentType.APPLICATION, applicationId))) @@ -88,13 +92,13 @@ public async Task> GetAttachmentsAsync(AttachmentParam protected internal async Task> GetAttachmentsInternalAsync( IRepository repository, - Func predicate) where T : AbstractS3Attachment + Expression> predicate) where T : AbstractS3Attachment { - var attachments = await repository.GetQueryableAsync(); + var attachmentsQuery = await repository.GetQueryableAsync(); var people = await personUserRepository.GetQueryableAsync(); - var query = from attachment in attachments.AsEnumerable() - join person in people.AsEnumerable() on attachment.UserId equals person.Id - where predicate(attachment) + var filteredAttachments = attachmentsQuery.Where(predicate); + var query = from attachment in filteredAttachments + join person in people on attachment.UserId equals person.Id select new UnityAttachmentDto() { Id = attachment.Id, @@ -182,41 +186,42 @@ protected internal static async Task UpdateMetadataIntern private static Guid? GetCreatorId(T attachment) where T : AbstractAttachmentBase { - var property = typeof(T).GetProperty("CreatorId"); - return property?.GetValue(attachment) as Guid?; + return attachment.CreatorId; } public async Task GenerateAISummaryAttachmentAsync(Guid attachmentId) { - // Get the attachment + if (!await aiService.IsAvailableAsync()) + { + Logger.LogWarning("AI service is not available for attachment summary generation. AttachmentId: {AttachmentId}", attachmentId); + return SummaryGenerationFailedMessage; + } + var attachment = await applicationChefsFileAttachmentRepository.GetAsync(attachmentId); + var fileName = string.IsNullOrWhiteSpace(attachment.FileName) ? "unknown" : attachment.FileName; + var (fileContent, contentType) = await GetAttachmentContentForSummaryAsync(attachment, fileName); - // Get file content from CHEFS - var fileDto = await submissionAppService.GetChefsFileAttachment( - Guid.Parse(attachment.ChefsSubmissionId ?? ""), - Guid.Parse(attachment.ChefsFileId ?? ""), - attachment.FileName ?? ""); - - if (fileDto?.Content == null) + var summaryResponse = await aiService.GenerateAttachmentSummaryAsync(new AttachmentSummaryRequest { - return "Unable to retrieve file content for AI analysis."; - } - - // Generate AI summary - var summary = await aiService.GenerateAttachmentSummaryAsync( - attachment.FileName ?? "", - fileDto.Content, - fileDto.ContentType); - - // Update attachment with summary - attachment.AISummary = summary; + FileName = fileName, + FileContent = fileContent, + ContentType = contentType + }); + + attachment.AISummary = summaryResponse.Summary; await applicationChefsFileAttachmentRepository.UpdateAsync(attachment); - - return summary; + + return summaryResponse.Summary; } public async Task> GenerateAISummariesAttachmentsAsync(List attachmentIds) { + if (!await aiService.IsAvailableAsync()) + { + Logger.LogWarning("AI service is not available for bulk attachment summary generation."); + return attachmentIds.Select(_ => SummaryGenerationFailedMessage).ToList(); + } + var summaries = new List(); foreach (var attachmentId in attachmentIds) @@ -229,11 +234,45 @@ public async Task> GenerateAISummariesAttachmentsAsync(List a catch (Exception ex) { Logger.LogError(ex, "Error generating AI summary for attachment {AttachmentId}", attachmentId); - summaries.Add($"Error generating summary: {ex.Message}"); + summaries.Add(SummaryGenerationFailedMessage); } } return summaries; } + private async Task<(byte[] Content, string ContentType)> GetAttachmentContentForSummaryAsync(ApplicationChefsFileAttachment attachment, string fileName) + { + if (!Guid.TryParse(attachment.ChefsSubmissionId, out var submissionId) || + !Guid.TryParse(attachment.ChefsFileId, out var fileId)) + { + Logger.LogWarning( + "Attachment {AttachmentId} has invalid CHEFS IDs. Falling back to metadata-only summary generation.", + attachment.Id); + return (Array.Empty(), DefaultContentType); + } + + try + { + var fileDto = await submissionAppService.GetChefsFileAttachment(submissionId, fileId, fileName); + if (fileDto?.Content == null) + { + Logger.LogWarning( + "Attachment {AttachmentId} has no retrievable content. Falling back to metadata-only summary generation.", + attachment.Id); + return (Array.Empty(), DefaultContentType); + } + + return (fileDto.Content, string.IsNullOrWhiteSpace(fileDto.ContentType) ? DefaultContentType : fileDto.ContentType); + } + catch (Exception ex) + { + Logger.LogWarning( + ex, + "Failed retrieving CHEFS content for attachment {AttachmentId}. Falling back to metadata-only summary generation.", + attachment.Id); + return (Array.Empty(), DefaultContentType); + } + } + } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Contacts/ContactAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Contacts/ContactAppService.cs new file mode 100644 index 0000000000..f8fcc31f74 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Contacts/ContactAppService.cs @@ -0,0 +1,135 @@ +using Microsoft.AspNetCore.Authorization; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.DependencyInjection; + +namespace Unity.GrantManager.Contacts; + +/// +/// Generic contact management service. Manages contacts and their links to arbitrary entity types. +/// Currently marked as [RemoteService(false)] — not exposed as an HTTP endpoint. +/// Authorization roles to be configured before enabling remote access. +/// + +[Authorize] +[RemoteService(false)] +[ExposeServices(typeof(ContactAppService), typeof(IContactAppService))] +public class ContactAppService( + IContactRepository contactRepository, + IContactLinkRepository contactLinkRepository) + : GrantManagerAppService, IContactAppService +{ + /// + public async Task> GetContactsByEntityAsync(string entityType, Guid entityId) + { + var contactLinksQuery = await contactLinkRepository.GetQueryableAsync(); + var contactsQuery = await contactRepository.GetQueryableAsync(); + + return await ( + from link in contactLinksQuery + join contact in contactsQuery on link.ContactId equals contact.Id + where link.RelatedEntityType == entityType + && link.RelatedEntityId == entityId + && link.IsActive + select new ContactDto + { + ContactId = contact.Id, + Name = contact.Name, + Title = contact.Title, + Email = contact.Email, + HomePhoneNumber = contact.HomePhoneNumber, + MobilePhoneNumber = contact.MobilePhoneNumber, + WorkPhoneNumber = contact.WorkPhoneNumber, + WorkPhoneExtension = contact.WorkPhoneExtension, + Role = link.Role, + IsPrimary = link.IsPrimary + }).ToListAsync(); + } + + /// + public async Task CreateContactAsync(CreateContactLinkDto input) + { + var contact = await contactRepository.InsertAsync(new Contact + { + Name = input.Name, + Title = input.Title, + Email = input.Email, + HomePhoneNumber = input.HomePhoneNumber, + MobilePhoneNumber = input.MobilePhoneNumber, + WorkPhoneNumber = input.WorkPhoneNumber, + WorkPhoneExtension = input.WorkPhoneExtension + }, autoSave: true); + + if (input.IsPrimary) + { + await ClearPrimaryAsync(input.RelatedEntityType, input.RelatedEntityId); + } + + await contactLinkRepository.InsertAsync(new ContactLink + { + ContactId = contact.Id, + RelatedEntityType = input.RelatedEntityType, + RelatedEntityId = input.RelatedEntityId, + Role = input.Role, + IsPrimary = input.IsPrimary, + IsActive = true + }, autoSave: true); + + return new ContactDto + { + ContactId = contact.Id, + Name = contact.Name, + Title = contact.Title, + Email = contact.Email, + HomePhoneNumber = contact.HomePhoneNumber, + MobilePhoneNumber = contact.MobilePhoneNumber, + WorkPhoneNumber = contact.WorkPhoneNumber, + WorkPhoneExtension = contact.WorkPhoneExtension, + Role = input.Role, + IsPrimary = input.IsPrimary + }; + } + + /// + public async Task SetPrimaryContactAsync(string entityType, Guid entityId, Guid contactId) + { + await ClearPrimaryAsync(entityType, entityId); + + var contactLinksQuery = await contactLinkRepository.GetQueryableAsync(); + var link = await contactLinksQuery + .Where(l => l.RelatedEntityType == entityType + && l.RelatedEntityId == entityId + && l.ContactId == contactId + && l.IsActive) + .FirstOrDefaultAsync() ?? throw new BusinessException("Contacts:ContactLinkNotFound") + .WithData("contactId", contactId) + .WithData("entityType", entityType) + .WithData("entityId", entityId); + link.IsPrimary = true; + await contactLinkRepository.UpdateAsync(link, autoSave: true); + } + + /// + /// Clears the primary flag on all active contact links for the specified entity. + /// + private async Task ClearPrimaryAsync(string entityType, Guid entityId) + { + var contactLinksQuery = await contactLinkRepository.GetQueryableAsync(); + var currentPrimaryLinks = await contactLinksQuery + .Where(l => l.RelatedEntityType == entityType + && l.RelatedEntityId == entityId + && l.IsPrimary + && l.IsActive) + .ToListAsync(); + + foreach (var existing in currentPrimaryLinks) + { + existing.IsPrimary = false; + await contactLinkRepository.UpdateAsync(existing, autoSave: true); + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationLinksAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationLinksAppService.cs index 3ce28a569e..f67026cfb5 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationLinksAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationLinksAppService.cs @@ -5,8 +5,8 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Unity.GrantManager.Applications; using Unity.GrantManager.ApplicationForms; +using Unity.GrantManager.Applications; using Volo.Abp.Application.Services; using Volo.Abp.DependencyInjection; using Volo.Abp.Domain.Repositories; @@ -32,7 +32,7 @@ public class ApplicationLinksAppService : CrudAppService< public IApplicationRepository ApplicationRepository { get; set; } = null!; public IApplicantRepository ApplicantRepository { get; set; } = null!; public IApplicationFormAppService ApplicationFormAppService { get; set; } = null!; - + public ApplicationLinksAppService(IRepository repository) : base(repository) { } public async Task> GetListByApplicationAsync(Guid applicationId) @@ -96,6 +96,58 @@ join applicant in applicantsQuery on application.ApplicantId equals applicant.Id return resultList; } + /// + /// Retrieves a list of application links of the specified type for a given application. + /// + /// Use this method to obtain links associated with a particular application and link type. The + /// returned list is mapped to ApplicationLinksDto for convenient consumption in client code. + /// The unique identifier of the application for which to retrieve links. Must be a valid GUID. + /// The type of application link to retrieve, specified by the enumeration. + /// A task that represents the asynchronous operation. The task result contains a list of + /// objects matching the specified application ID and link type. The list will be empty if no links are found. + public async Task> GetApplicationLinksByType(Guid applicationId, ApplicationLinkType linkType) + { + var applicationLinksQuery = await ApplicationLinksRepository + .GetListAsync(al => al.ApplicationId == applicationId && al.LinkType == linkType); + + return ObjectMapper.Map, List>(applicationLinksQuery); + } + + /// + /// Retrieves a list of child application links associated with the specified applicationId. + /// + /// This method is asynchronous and may involve network or database calls, which could affect + /// performance. Ensure that the applicationId provided is valid to avoid exceptions. + /// The unique identifier of the application for which child applications are being retrieved. This parameter cannot + /// be an empty GUID. + /// A task that represents the asynchronous operation. The task result contains a list of + /// objects representing the child applications. The list will be empty if no child applications are found. + public async Task> GetChildApplications(Guid applicationId) + { + return await GetApplicationLinksByType(applicationId, ApplicationLinkType.Child); + } + + /// + /// Retrieves a dictionary that maps each specified parent application ID to a list of its associated child application IDs. + /// + /// The method fetches application links from the repository and groups them by parent + /// application ID. Ensure that the provided parent application IDs exist in the repository to obtain meaningful + /// results. + /// A list of GUIDs representing the parent application IDs for which to retrieve child application IDs. This + /// parameter cannot be null or empty. + /// A dictionary where each key is a parent application ID and the corresponding value is a list of child + /// application IDs linked to that parent. The dictionary will be empty if no child applications are found. + public async Task>> GetChildApplicationIdsByParentIdsAsync(List parentApplicationIds) + { + var links = await ApplicationLinksRepository + .GetListAsync(al => parentApplicationIds.Contains(al.ApplicationId) + && al.LinkType == ApplicationLinkType.Child); + + return links + .GroupBy(l => l.ApplicationId) + .ToDictionary(g => g.Key, g => g.Select(l => l.LinkedApplicationId).ToList()); + } + public async Task GetLinkedApplicationAsync(Guid currentApplicationId, Guid linkedApplicationId) { var applicationLinksQuery = await ApplicationLinksRepository.GetQueryableAsync(); @@ -154,7 +206,7 @@ join applicant in applicantsQuery on application.ApplicantId equals applicant.Id public async Task GetCurrentApplicationInfoAsync(Guid applicationId) { Logger.LogInformation("GetCurrentApplicationInfoAsync called with applicationId: {ApplicationId}", applicationId); - + try { var applicationsQuery = await ApplicationRepository.GetQueryableAsync(); @@ -162,7 +214,7 @@ public async Task GetCurrentApplicationInfoAsync(Guid a .Include(a => a.ApplicationStatus) .Where(a => a.Id == applicationId) .FirstOrDefaultAsync(); - + if (application == null) { Logger.LogWarning("Application not found with ID: {ApplicationId}", applicationId); @@ -249,13 +301,13 @@ public async Task GetCurrentApplicationInfoAsync(Guid a LinkType = ApplicationLinkType.Related, FormVersion = formVersion }; - + return result; } catch (Exception ex) { Logger.LogError(ex, "Critical error in GetCurrentApplicationInfoAsync for applicationId: {ApplicationId}", applicationId); - + // If all else fails, return a basic structure return new ApplicationLinksInfoDto { @@ -276,16 +328,16 @@ public async Task DeleteWithPairAsync(Guid applicationLinkId) { // Get the link to find the paired record var link = await Repository.GetAsync(applicationLinkId); - + // Find the paired link (reverse direction) var applicationLinksQuery = await ApplicationLinksRepository.GetQueryableAsync(); var pairedLink = await applicationLinksQuery .Where(x => x.ApplicationId == link.LinkedApplicationId && x.LinkedApplicationId == link.ApplicationId) .FirstOrDefaultAsync(); - + // Delete both links await Repository.DeleteAsync(applicationLinkId); - + if (pairedLink != null) { await Repository.DeleteAsync(pairedLink.Id); @@ -295,7 +347,7 @@ public async Task DeleteWithPairAsync(Guid applicationLinkId) public async Task GetApplicationDetailsByReferenceAsync(string referenceNumber) { Logger.LogInformation("GetApplicationDetailsByReferenceAsync called with referenceNumber: {ReferenceNumber}", referenceNumber); - + try { var applicationsQuery = await ApplicationRepository.GetQueryableAsync(); @@ -303,7 +355,7 @@ public async Task GetApplicationDetailsByReferenceAsync .Include(a => a.ApplicationStatus) .Where(a => a.ReferenceNo == referenceNumber) .FirstOrDefaultAsync(); - + if (application == null) { Logger.LogWarning("Application not found with ReferenceNumber: {ReferenceNumber}", referenceNumber); @@ -375,7 +427,7 @@ public async Task GetApplicationDetailsByReferenceAsync catch (Exception ex) { Logger.LogError(ex, "Critical error in GetApplicationDetailsByReferenceAsync for referenceNumber: {ReferenceNumber}", referenceNumber); - + return new ApplicationLinksInfoDto { Id = Guid.Empty, @@ -394,46 +446,46 @@ public async Task GetApplicationDetailsByReferenceAsync public async Task UpdateLinkTypeAsync(Guid applicationLinkId, ApplicationLinkType newLinkType) { Logger.LogInformation("UpdateLinkTypeAsync called with linkId: {LinkId}, newLinkType: {LinkType}", applicationLinkId, newLinkType); - + // Get the existing link var link = await Repository.GetAsync(applicationLinkId); - + if (link != null) { // Update the link type link.LinkType = newLinkType; await Repository.UpdateAsync(link); - + Logger.LogInformation("Successfully updated link type for linkId: {LinkId}", applicationLinkId); } else { Logger.LogWarning("Link not found with ID: {LinkId}", applicationLinkId); } - + } public async Task ValidateApplicationLinksAsync( - Guid currentApplicationId, + Guid currentApplicationId, List proposedLinks) { var result = new ApplicationLinkValidationResult(); - + // Skip validation for empty or Related-only links var hierarchicalLinks = proposedLinks.Where(l => l.LinkType != ApplicationLinkType.Related).ToList(); if (hierarchicalLinks.Count == 0) { return result; } - + // Validate current app constraints var currentAppError = ValidateCurrentApplicationConstraints(hierarchicalLinks); - + // Process each proposed link foreach (var proposedLink in hierarchicalLinks) { var errorMessage = await ValidateLinkBasedOnType(currentApplicationId, proposedLink, currentAppError, hierarchicalLinks); - + if (!string.IsNullOrEmpty(errorMessage)) { result.ValidationErrors[proposedLink.ReferenceNumber] = true; @@ -444,31 +496,31 @@ public async Task ValidateApplicationLinksAsync result.ValidationErrors[proposedLink.ReferenceNumber] = false; } } - + return result; } - + private static string ValidateCurrentApplicationConstraints(List proposedLinks) { var parentCount = proposedLinks.Count(l => l.LinkType == ApplicationLinkType.Parent); - var hasParent = proposedLinks.Exists(l => l.LinkType == ApplicationLinkType.Parent); - var hasChild = proposedLinks.Exists(l => l.LinkType == ApplicationLinkType.Child); + var hasParent = proposedLinks.Exists(l => l.LinkType == ApplicationLinkType.Parent); + var hasChild = proposedLinks.Exists(l => l.LinkType == ApplicationLinkType.Child); if (parentCount > 1) { return ERROR_MULTIPLE_PARENTS; } - + if (hasParent && hasChild) { return ERROR_PARENT_WITH_CHILDREN; } - + return string.Empty; } - + private async Task ValidateLinkBasedOnType( - Guid currentApplicationId, + Guid currentApplicationId, ApplicationLinkValidationRequest proposedLink, string currentAppError, List allProposedLinks) @@ -481,25 +533,25 @@ private async Task ValidateLinkBasedOnType( { return currentAppError; } - + // Then check if the proposed parent is already a child of another app return await ValidateTargetCannotBeParentIfAlreadyChild(currentApplicationId, proposedLink); - + case ApplicationLinkType.Child: // Check if current app is trying to be both parent and child if (!string.IsNullOrEmpty(currentAppError) && allProposedLinks.Exists(l => l.LinkType == ApplicationLinkType.Parent)) { return ERROR_CURRENT_APP_IS_CHILD; } - + // Check target app conflicts return await ValidateTargetCanAcceptChildLink(currentApplicationId, proposedLink); - + default: return string.Empty; } } - + private async Task ValidateTargetCannotBeParentIfAlreadyChild(Guid currentApplicationId, ApplicationLinkValidationRequest proposedLink) { var targetLinks = await GetListByApplicationAsync(proposedLink.TargetApplicationId); @@ -513,29 +565,29 @@ private async Task ValidateTargetCannotBeParentIfAlreadyChild(Guid curre { return ERROR_TARGET_CHILD_CANNOT_BE_PARENT; } - + return string.Empty; } - + private async Task ValidateTargetCanAcceptChildLink(Guid currentApplicationId, ApplicationLinkValidationRequest proposedLink) { var targetLinks = await GetListByApplicationAsync(proposedLink.TargetApplicationId); // Exclude reverse links and self-references - var targetExternalLinks = targetLinks.Where(l => - l.ApplicationId != currentApplicationId && + var targetExternalLinks = targetLinks.Where(l => + l.ApplicationId != currentApplicationId && l.ApplicationId != proposedLink.TargetApplicationId).ToList(); - + if (targetExternalLinks.Exists(l => l.LinkType == ApplicationLinkType.Parent)) { return ERROR_TARGET_ALREADY_HAS_PARENT; } - + if (targetExternalLinks.Exists(l => l.LinkType == ApplicationLinkType.Child)) { return ERROR_TARGET_IS_PARENT_TO_OTHERS; } - + return string.Empty; } } \ No newline at end of file diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs index 66ddcf3713..075d568663 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs @@ -9,21 +9,22 @@ using System.Collections; using System.Collections.Generic; using System.Diagnostics; -using System.Linq; -using System.Text.Json; -using System.Threading.Tasks; +using System.Linq; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Threading.Tasks; using Unity.Flex.WorksheetInstances; using Unity.Flex.Worksheets; using Unity.GrantManager.Applicants; -using Unity.GrantManager.ApplicationForms; -using Unity.GrantManager.Applications; -using Unity.GrantManager.Events; +using Unity.GrantManager.ApplicationForms; +using Unity.GrantManager.Applications; +using Unity.GrantManager.AI; +using Unity.GrantManager.Events; using Unity.GrantManager.Flex; using Unity.GrantManager.Identity; using Unity.GrantManager.Payments; using Unity.Modules.Shared; using Unity.Modules.Shared.Correlation; -using Unity.Payments.Enums; using Unity.Payments.PaymentRequests; using Volo.Abp; using Volo.Abp.Application.Dtos; @@ -37,22 +38,32 @@ namespace Unity.GrantManager.GrantApplications; [Authorize] [Dependency(ReplaceServices = true)] [ExposeServices(typeof(GrantApplicationAppService), typeof(IGrantApplicationAppService))] -public class GrantApplicationAppService( +public class GrantApplicationAppService( IApplicationManager applicationManager, IApplicationRepository applicationRepository, - IApplicationStatusRepository applicationStatusRepository, + IApplicationStatusRepository applicationStatusRepository, IApplicationFormSubmissionRepository applicationFormSubmissionRepository, IApplicantRepository applicantRepository, - IApplicationFormRepository applicationFormRepository, + IApplicationFormRepository applicationFormRepository, IApplicantAgentRepository applicantAgentRepository, IApplicantAddressRepository applicantAddressRepository, - IApplicantSupplierAppService applicantSupplierService, - IPaymentRequestAppService paymentRequestService) - : GrantManagerAppService, IGrantApplicationAppService -{ + IApplicantSupplierAppService applicantSupplierService, + IPaymentRequestAppService paymentRequestService) + : GrantManagerAppService, IGrantApplicationAppService +{ + private static readonly JsonSerializerOptions AiAnalysisReadOptions = new() + { + PropertyNameCaseInsensitive = true + }; + + private static readonly JsonSerializerOptions AiAnalysisWriteOptions = new() + { + WriteIndented = true + }; + public async Task> GetListAsync(GrantApplicationListInputDto input) { - // 1️⃣ Fetch applications with filters + paging in DB + // 1️ Fetch applications with filters + paging in DB var applications = await applicationRepository.WithFullDetailsAsync( input.SkipCount, input.MaxResultCount, @@ -63,22 +74,17 @@ public async Task> GetListAsync(GrantApplica var applicationIds = applications.Select(a => a.Id).ToList(); + // 2️ Fetch payment rollup batch if feature enabled bool paymentsFeatureEnabled = await FeatureChecker.IsEnabledAsync(PaymentConsts.UnityPaymentsFeature); - List paymentRequests = []; + Dictionary paymentRollupBatch = []; if (paymentsFeatureEnabled && applicationIds.Count > 0) { - paymentRequests = await paymentRequestService.GetListByApplicationIdsAsync(applicationIds); + paymentRollupBatch = await paymentRequestService.GetApplicationPaymentRollupBatchAsync(applicationIds); } - // 2️⃣ Pre-aggregate payment amounts for O(1) lookup - var paymentRequestsByApplication = paymentRequests - .Where(pr => pr.Status == PaymentRequestStatus.Submitted) - .GroupBy(pr => pr.CorrelationId) - .ToDictionary(g => g.Key, g => g.Sum(pr => pr.Amount)); - - // 3️⃣ Map applications to DTOs + // 3️ Map applications to DTOs var appDtos = applications.Select(app => { var appDto = ObjectMapper.Map(app); @@ -101,19 +107,20 @@ public async Task> GetListAsync(GrantApplica appDto.ContactCellPhone = app.ApplicantAgent?.Phone2; appDto.ApplicationLinks = ObjectMapper.Map, List>(app.ApplicationLinks?.ToList() ?? []); - if (paymentsFeatureEnabled && paymentRequestsByApplication.Count > 0) + if (paymentsFeatureEnabled && paymentRollupBatch.Count > 0) { + paymentRollupBatch.TryGetValue(app.Id, out var rollup); appDto.PaymentInfo = new PaymentInfoDto { ApprovedAmount = app.ApprovedAmount, - TotalPaid = paymentRequestsByApplication.GetValueOrDefault(app.Id) + TotalPaid = rollup?.TotalPaid ?? 0 }; } return appDto; }).ToList(); - // 4️⃣ Get total count using same filters + // 4️ Get total count using same filters var totalCount = await applicationRepository.GetCountAsync( input.SubmittedFromDate, input.SubmittedToDate @@ -195,9 +202,9 @@ public async Task GetAsync(Guid id) appDto.ContactCellPhone = application.ApplicantAgent.Phone2; } - if (application.Applicant != null) - { - appDto.OrganizationName = application.Applicant.OrgName; + if (application.Applicant != null) + { + appDto.OrganizationName = application.Applicant.OrgName; appDto.OrgNumber = application.Applicant.OrgNumber; appDto.OrganizationSize = application.Applicant.OrganizationSize; appDto.OrgStatus = application.Applicant.OrgStatus; @@ -206,16 +213,18 @@ public async Task GetAsync(Guid id) appDto.Sector = application.Applicant.Sector; appDto.OrganizationType = application.Applicant.OrganizationType; appDto.SubSector = application.Applicant.SubSector; - appDto.SectorSubSectorIndustryDesc = application.Applicant.SectorSubSectorIndustryDesc; - } - - return appDto; - } + appDto.SectorSubSectorIndustryDesc = application.Applicant.SectorSubSectorIndustryDesc; + } + + appDto.AIAnalysisData = ParseAiAnalysisData(appDto.AIAnalysis); + + return appDto; + } public async Task GetApplicationFormAsync(Guid applicationFormId) { return await (await applicationFormRepository.GetQueryableAsync()).FirstOrDefaultAsync(s => s.Id == applicationFormId); - } + } [Authorize(UnitySelector.Review.AssessmentResults.Update.Default)] public async Task UpdateAssessmentResultsAsync(Guid id, CreateUpdateAssessmentResultsDto input) @@ -671,7 +680,7 @@ public async Task UpdateSupplierNumberAsync(Guid applicationId, string? supplier } return await applicantAgentRepository.UpdateAsync(applicantAgent); - } + } [Authorize(UnitySelector.Applicant.UpdatePolicy)] public async Task UpdateMergedApplicantAsync(Guid applicationId, CreateUpdateApplicantInfoDto input) @@ -816,7 +825,7 @@ public async Task UpdateApplicationStatus(Guid[] applicationIds, Guid statusId) Debug.WriteLine(ex.ToString()); } } - } + } public async Task> GetApplicationListAsync(List applicationIds) { @@ -1045,104 +1054,118 @@ private static Dictionary ExtractCustomFieldsForWorksheet(dynami return result; } - public async Task DismissAIIssueAsync(Guid applicationId, string issueId) - { - var application = await applicationRepository.GetAsync(applicationId); - - if (string.IsNullOrEmpty(application.AIAnalysis)) + public async Task DismissAIIssueAsync(Guid applicationId, string issueId) + { + return await UpdateAIIssueDismissStateAsync(applicationId, issueId, isDismiss: true); + } + + public async Task RestoreAIIssueAsync(Guid applicationId, string issueId) + { + return await UpdateAIIssueDismissStateAsync(applicationId, issueId, isDismiss: false); + } + + private async Task UpdateAIIssueDismissStateAsync(Guid applicationId, string issueId, bool isDismiss) + { + if (string.IsNullOrWhiteSpace(issueId)) + { + throw new UserFriendlyException("AI issue id is required."); + } + + var application = await applicationRepository.GetAsync(applicationId); + + if (string.IsNullOrEmpty(application.AIAnalysis)) { throw new UserFriendlyException("No AI analysis available for this application."); - } - - try - { - var updatedAnalysis = ModifyDismissedItems(application.AIAnalysis, issueId, isDismiss: true); - application.AIAnalysis = updatedAnalysis; - await applicationRepository.UpdateAsync(application); - return updatedAnalysis; - } - catch (Exception ex) - { - Logger.LogError(ex, "Error dismissing AI issue {IssueId} for application {ApplicationId}", issueId, applicationId); - throw new UserFriendlyException("Failed to dismiss the AI issue. Please try again."); - } - } - - public async Task RestoreAIIssueAsync(Guid applicationId, string issueId) - { - var application = await applicationRepository.GetAsync(applicationId); - - if (string.IsNullOrEmpty(application.AIAnalysis)) - { - throw new UserFriendlyException("No AI analysis available for this application."); - } - - try - { - var updatedAnalysis = ModifyDismissedItems(application.AIAnalysis, issueId, isDismiss: false); - application.AIAnalysis = updatedAnalysis; - await applicationRepository.UpdateAsync(application); - return updatedAnalysis; - } - catch (Exception ex) - { - Logger.LogError(ex, "Error restoring AI issue {IssueId} for application {ApplicationId}", issueId, applicationId); - throw new UserFriendlyException("Failed to restore the AI issue. Please try again."); - } - } - - private static string ModifyDismissedItems(string analysisJson, string issueId, bool isDismiss) - { - using var jsonDoc = JsonDocument.Parse(analysisJson); - using var memoryStream = new System.IO.MemoryStream(); - using (var writer = new Utf8JsonWriter(memoryStream, new JsonWriterOptions { Indented = true })) - { - writer.WriteStartObject(); - - var dismissedItems = new HashSet(); - if (jsonDoc.RootElement.TryGetProperty("dismissed_items", out var dismissedArray)) - { - foreach (var item in dismissedArray.EnumerateArray()) - { - var itemValue = item.GetString(); - if (!string.IsNullOrWhiteSpace(itemValue)) - { - dismissedItems.Add(itemValue); - } - } - } - - // Modify the dismissed items set - if (isDismiss && !string.IsNullOrWhiteSpace(issueId)) - { - dismissedItems.Add(issueId); - } - else if (!isDismiss) - { - dismissedItems.Remove(issueId); - } - - // Write all properties - foreach (var property in jsonDoc.RootElement.EnumerateObject()) - { - if (property.Name != "dismissed_items") - { - property.WriteTo(writer); - } - } - - // Write updated dismissed_items array - writer.WritePropertyName("dismissed_items"); - writer.WriteStartArray(); - foreach (var id in dismissedItems) - { - writer.WriteStringValue(id); - } - writer.WriteEndArray(); - - writer.WriteEndObject(); - } - - return System.Text.Encoding.UTF8.GetString(memoryStream.ToArray()); - } -} + } + + try + { + var updatedAnalysis = ModifyDismissedItems(application.AIAnalysis, issueId, isDismiss); + application.AIAnalysis = updatedAnalysis; + await applicationRepository.UpdateAsync(application); + return updatedAnalysis; + } + catch (Exception ex) + { + var action = isDismiss ? "dismissing" : "restoring"; + var userMessage = isDismiss + ? "Failed to dismiss the AI issue. Please try again." + : "Failed to restore the AI issue. Please try again."; + + Logger.LogError(ex, "Error {Action} AI issue {IssueId} for application {ApplicationId}", action, issueId, applicationId); + throw new UserFriendlyException(userMessage); + } + } + + private static string ModifyDismissedItems(string analysisJson, string issueId, bool isDismiss) + { + if (string.IsNullOrWhiteSpace(analysisJson)) + { + return analysisJson; + } + + JsonObject? root; + try + { + root = JsonNode.Parse(analysisJson) as JsonObject; + } + catch (System.Text.Json.JsonException) + { + return analysisJson; + } + + if (root == null) + { + return analysisJson; + } + + var dismissedItems = new List(); + var seen = new HashSet(StringComparer.Ordinal); + + if (root[AIJsonKeys.Dismissed] is JsonArray dismissedArray) + { + foreach (var item in dismissedArray) + { + var id = item?.GetValue(); + if (string.IsNullOrWhiteSpace(id) || !seen.Add(id)) + { + continue; + } + + dismissedItems.Add(id); + } + } + + if (isDismiss) + { + if (seen.Add(issueId)) + { + dismissedItems.Add(issueId); + } + } + else + { + dismissedItems.RemoveAll(id => string.Equals(id, issueId, StringComparison.Ordinal)); + } + + root[AIJsonKeys.Dismissed] = new JsonArray(dismissedItems.Select(id => JsonValue.Create(id)).ToArray()); + return root.ToJsonString(AiAnalysisWriteOptions); + } + + private static ApplicationAnalysisResponse? ParseAiAnalysisData(string? analysisJson) + { + if (string.IsNullOrWhiteSpace(analysisJson)) + { + return null; + } + + try + { + return System.Text.Json.JsonSerializer.Deserialize(analysisJson, AiAnalysisReadOptions); + } + catch (System.Text.Json.JsonException) + { + return null; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantManagerApplicationAutoMapperProfile.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantManagerApplicationAutoMapperProfile.cs index fd3459abe7..947c587602 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantManagerApplicationAutoMapperProfile.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantManagerApplicationAutoMapperProfile.cs @@ -2,6 +2,7 @@ using System; using Unity.GrantManager.ApplicationForms; using Unity.GrantManager.Applications; +using Unity.GrantManager.ApplicantProfile; using Unity.GrantManager.Assessments; using Unity.GrantManager.Attachments; using Unity.GrantManager.Comments; @@ -94,6 +95,19 @@ public GrantManagerApplicationAutoMapperProfile() CreateMap() .ForMember(dest => dest.Tag, opt => opt.MapFrom(src => src.Tag)); + //-- APPLICANT HISTORY + CreateMap(); + CreateMap(); + CreateMap(); + + CreateMap(); + CreateMap(); + CreateMap(); + + CreateMap(); + CreateMap(); + CreateMap(); + //-- PROJECT INFO CreateMap() .IgnoreNullAndDefaultValues(); @@ -118,6 +132,7 @@ public GrantManagerApplicationAutoMapperProfile() CreateMap() .ForMember(dest => dest.IndigenousOrgInd, opt => opt.MapFrom(src => ConvertBoolToIndigenousOrgInd(src.IndigenousOrgInd))) + .ForMember(dest => dest.RedStop, opt => opt.Ignore()) .IgnoreNullAndDefaultValues(); CreateMap() .IgnoreNullAndDefaultValues(); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/History/PaymentHistoryAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/History/PaymentHistoryAppService.cs index db660367e9..439afb7c0e 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/History/PaymentHistoryAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/History/PaymentHistoryAppService.cs @@ -15,6 +15,12 @@ public async Task> GetPaymentHistoryList(Guid? entityId) { List historyList = []; CancellationToken cancellationToken = default; + + if (entityId == null || entityId == Guid.Empty) + { + return historyList; + } + var entityChanges = await extendedAuditLogRepository.GetEntityChangeByTypeWithUsernameAsync( entityId, HistoryConsts.PaymentEntityTypeFullNames, @@ -23,18 +29,30 @@ public async Task> GetPaymentHistoryList(Guid? entityId) foreach (var entityChange in entityChanges) { + // Add explicit filter to ensure only matching entityId records + if (entityChange.EntityChange.EntityId != entityId.ToString()) + { + continue; + } + foreach (var propertyChange in entityChange.EntityChange.PropertyChanges) { - string origninalValue = CleanValue(propertyChange.OriginalValue); + string originalValue = CleanValue(propertyChange.OriginalValue); string newValue = CleanValue(propertyChange.NewValue); string displayNewValue = MapFsbToDisplayText(newValue); + + // Don't display history if both original and new values are empty, as it doesn't provide useful information and may clutter the history with irrelevant entries. + if (string.IsNullOrEmpty(originalValue) && string.IsNullOrEmpty(newValue)) + { + continue; + } int changeType = (int)entityChange.EntityChange.ChangeType; DateTime utcDateTime = DateTime.SpecifyKind(entityChange.EntityChange.ChangeTime, DateTimeKind.Utc); HistoryDto historyDto = new() { EntityName = GetShortEntityName(entityChange.EntityChange.EntityTypeFullName), - PropertyName = propertyChange.PropertyName, // The name of the property on the entity class. - OriginalValue = origninalValue, + PropertyName = propertyChange.PropertyName, + OriginalValue = originalValue, NewValue = displayNewValue, ChangeTime = utcDateTime.ToLocalTime(), UserName = entityChange.UserName, diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Events/AiScoresheetAnswersGeneratedEvent.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Events/AiScoresheetAnswersGeneratedEvent.cs new file mode 100644 index 0000000000..2090524f79 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Events/AiScoresheetAnswersGeneratedEvent.cs @@ -0,0 +1,8 @@ +using Unity.GrantManager.Applications; + +namespace Unity.GrantManager.Intakes.Events; + +public class AiScoresheetAnswersGeneratedEvent +{ + public Application? Application { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/CreateAiAssessmentHandler.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/CreateAiAssessmentHandler.cs new file mode 100644 index 0000000000..a69723573f --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/CreateAiAssessmentHandler.cs @@ -0,0 +1,40 @@ +using Microsoft.Extensions.Logging; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.Assessments; +using Unity.GrantManager.Intakes.Events; +using Volo.Abp.DependencyInjection; +using Volo.Abp.EventBus; +using Volo.Abp.Features; + +namespace Unity.GrantManager.Intakes.Handlers; + +public class CreateAiAssessmentHandler( + AssessmentManager assessmentManager, + IFeatureChecker featureChecker, + ILogger logger) : ILocalEventHandler, ITransientDependency +{ + public async Task HandleEventAsync(AiScoresheetAnswersGeneratedEvent eventData) + { + if (eventData?.Application == null) + { + logger.LogWarning("Event data or application is null in CreateAiAssessmentHandler."); + return; + } + + if (!await featureChecker.IsEnabledAsync("Unity.AI.Scoring")) + { + return; + } + + try + { + await assessmentManager.CreateAiAssessmentAsync(eventData.Application); + logger.LogInformation("Created AI assessment for application {ApplicationId}.", eventData.Application.Id); + } + catch (Exception ex) + { + logger.LogError(ex, "Error creating AI assessment for application {ApplicationId}.", eventData.Application.Id); + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/GenerateAIContentHandler.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/GenerateAIContentHandler.cs new file mode 100644 index 0000000000..8ab8bb0094 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/GenerateAIContentHandler.cs @@ -0,0 +1,1069 @@ +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Unity.GrantManager.AI; +using Unity.GrantManager.Applications; +using Unity.GrantManager.Intakes.Events; +using Volo.Abp.DependencyInjection; +using Volo.Abp.EventBus; +using Volo.Abp.EventBus.Local; +using Unity.Flex.Domain.Scoresheets; +using System.Text.Json; +using Volo.Abp.Features; +using Newtonsoft.Json.Linq; + +namespace Unity.GrantManager.Intakes.Handlers +{ + public class GenerateAIContentHandler : ILocalEventHandler, ITransientDependency + { + private const string DefaultContentType = "application/octet-stream"; + private const string ArrayFieldType = "array"; + private const string ObjectFieldType = "object"; + private const string AttachmentSummariesFeatureName = "Unity.AI.AttachmentSummaries"; + private const string ApplicationAnalysisFeatureName = "Unity.AI.ApplicationAnalysis"; + private readonly IAIService _aiService; + private readonly ISubmissionAppService _submissionAppService; + private readonly IApplicationChefsFileAttachmentRepository _attachmentRepository; + private readonly IApplicationRepository _applicationRepository; + private readonly IApplicationFormSubmissionRepository _applicationFormSubmissionRepository; + private readonly ILogger _logger; + private readonly IScoresheetRepository _scoresheetRepository; + private readonly IApplicationFormRepository _applicationFormRepository; + private readonly IApplicationFormVersionRepository _applicationFormVersionRepository; + private readonly IFeatureChecker _featureChecker; + public ILocalEventBus LocalEventBus { get; set; } = NullLocalEventBus.Instance; + private const string ComponentsKey = "components"; + private static readonly HashSet NonDataComponentTypes = new() + { + "button", "simplebuttonadvanced", "html", "htmlelement", "content", "simpleseparator" + }; + private static readonly HashSet ExcludedPromptDataKeys = new(StringComparer.OrdinalIgnoreCase) + { + "simplefile", + "applicantAgent", + "submit", + "lateEntry", + "metadata", + "full_application_form_submission" + }; + private static readonly string[] AllowedAnalysisRootProperties = + { + AIJsonKeys.Rating, + AIJsonKeys.Errors, + AIJsonKeys.Warnings, + AIJsonKeys.Summaries, + AIJsonKeys.Dismissed + }; + private static readonly string[] AllowedFindingProperties = + { + AIJsonKeys.Id, + AIJsonKeys.Title, + AIJsonKeys.Detail + }; + private static readonly string[] AllowedScoresheetAnswerProperties = + { + AIJsonKeys.Answer, + AIJsonKeys.Rationale, + AIJsonKeys.Confidence + }; + + private readonly JsonSerializerOptions _jsonOptionsIndented = new JsonSerializerOptions + { + WriteIndented = true + }; + + public GenerateAIContentHandler( + IAIService aiService, + ISubmissionAppService submissionAppService, + IApplicationChefsFileAttachmentRepository attachmentRepository, + IApplicationRepository applicationRepository, + IApplicationFormSubmissionRepository applicationFormSubmissionRepository, + ILogger logger, + IScoresheetRepository scoresheetRepository, + IApplicationFormRepository applicationFormRepository, + IApplicationFormVersionRepository applicationFormVersionRepository, + IFeatureChecker featureChecker) + { + _aiService = aiService; + _submissionAppService = submissionAppService; + _attachmentRepository = attachmentRepository; + _applicationRepository = applicationRepository; + _applicationFormSubmissionRepository = applicationFormSubmissionRepository; + _logger = logger; + _scoresheetRepository = scoresheetRepository; + _applicationFormRepository = applicationFormRepository; + _applicationFormVersionRepository = applicationFormVersionRepository; + _featureChecker = featureChecker; + } + + /// + /// Generate AI summaries for attachments when a new application is processed + /// + /// + /// + public async Task HandleEventAsync(ApplicationProcessEvent eventData) + { + if (eventData?.Application == null) + { + _logger.LogWarning("Event data or application is null in GenerateAIContentHandler."); + return; + } + + // Check if either AI feature is enabled + var attachmentSummariesEnabled = await _featureChecker.IsEnabledAsync(AttachmentSummariesFeatureName); + var applicationAnalysisEnabled = await _featureChecker.IsEnabledAsync(ApplicationAnalysisFeatureName); + + if (!attachmentSummariesEnabled && !applicationAnalysisEnabled) + { + _logger.LogDebug("All AI features are disabled, skipping AI generation for application {ApplicationId}.", eventData.Application.Id); + return; + } + + // Check if AI service is available + if (!await _aiService.IsAvailableAsync()) + { + _logger.LogWarning("AI service is not available, skipping AI generation for application {ApplicationId}.", eventData.Application.Id); + return; + } + + _logger.LogInformation("Generating AI content for application {ApplicationId}.", eventData.Application.Id); + + try + { + // Get all CHEFS attachments for this application + var attachments = await _attachmentRepository.GetListAsync(a => a.ApplicationId == eventData.Application.Id); + + // Generate attachment summaries if feature is enabled + if (attachmentSummariesEnabled) + { + foreach (var attachment in attachments) + { + await ProcessAttachmentSummaryAsync(attachment, eventData.Application.Id); + } + } + + // Generate application analysis and scoresheet if feature is enabled + if (applicationAnalysisEnabled) + { + // After processing all attachments, perform application analysis + await GenerateApplicationAnalysisAsync(eventData.Application, attachments); + + // Generate AI scoresheet answers + await GenerateScoresheetAnalysisAsync(eventData.Application, attachments); + } + } + catch (Exception ex) + { + _logger.LogError(ex, "Error generating AI content for application {ApplicationId}", eventData.Application.Id); + // Don't throw - this should not break the main submission processing + } + } + + private async Task ProcessAttachmentSummaryAsync(ApplicationChefsFileAttachment attachment, Guid applicationId) + { + try + { + if (!string.IsNullOrWhiteSpace(attachment.AISummary)) + { + _logger.LogDebug("Skipping AI summary for attachment {FileName} - already has summary", attachment.FileName); + return; + } + + var fileName = string.IsNullOrWhiteSpace(attachment.FileName) ? "unknown" : attachment.FileName; + _logger.LogDebug("Generating AI summary for attachment {FileName}", fileName); + + var (fileContent, contentType) = await GetAttachmentContentForSummaryAsync(attachment, fileName); + var summary = await _aiService.GenerateAttachmentSummaryAsync(new AttachmentSummaryRequest + { + FileName = fileName, + FileContent = fileContent, + ContentType = contentType + }); + await SaveAttachmentSummaryAsync(attachment, fileName, summary.Summary, fileContent.Length == 0); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error generating AI summary for attachment {FileName} in application {ApplicationId}", + attachment.FileName, applicationId); + // Continue processing other attachments even if one fails + } + } + + private async Task<(byte[] Content, string ContentType)> GetAttachmentContentForSummaryAsync(ApplicationChefsFileAttachment attachment, string fileName) + { + if (!Guid.TryParse(attachment.ChefsSubmissionId, out var submissionId) || + !Guid.TryParse(attachment.ChefsFileId, out var fileId)) + { + _logger.LogWarning("Attachment {FileName} has invalid CHEFS IDs. Falling back to metadata-only summary.", fileName); + return (Array.Empty(), DefaultContentType); + } + + try + { + var fileDto = await _submissionAppService.GetChefsFileAttachment(submissionId, fileId, fileName); + if (fileDto?.Content == null) + { + _logger.LogWarning("Could not retrieve content for attachment {FileName}. Falling back to metadata-only summary.", fileName); + return (Array.Empty(), DefaultContentType); + } + + _logger.LogDebug( + "Processing {FileName} ({ContentType}, {Size} bytes) for AI summary generation", + fileName, + fileDto.ContentType, + fileDto.Content.Length); + + var resolvedContentType = string.IsNullOrWhiteSpace(fileDto.ContentType) + ? DefaultContentType + : fileDto.ContentType; + return (fileDto.Content, resolvedContentType); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Could not access CHEFS file {FileName}. Falling back to metadata-only summary.", fileName); + return (Array.Empty(), DefaultContentType); + } + } + + private async Task SaveAttachmentSummaryAsync(ApplicationChefsFileAttachment attachment, string fileName, string summary, bool usedMetadataFallback) + { + attachment.AISummary = summary; + await _attachmentRepository.UpdateAsync(attachment); + + if (usedMetadataFallback) + { + _logger.LogDebug("Generated fallback AI summary for attachment {FileName} from metadata only", fileName); + return; + } + + var preview = summary is { Length: > 0 } s + ? string.Concat(s.AsSpan(0, Math.Min(100, s.Length)), "...") + : "..."; + _logger.LogDebug("Successfully generated AI summary for attachment {FileName}: {SummaryPreview}", fileName, preview); + } + + private async Task GenerateApplicationAnalysisAsync(Application application, List attachments) + { + try + { + _logger.LogDebug("Starting application analysis for {ApplicationId}", application.Id); + + // Load the application from repository to ensure proper change tracking + var trackedApplication = await _applicationRepository.GetAsync(application.Id); + + // Skip if application already has analysis + if (!string.IsNullOrEmpty(trackedApplication.AIAnalysis)) + { + _logger.LogDebug("Skipping application analysis for {ApplicationId} - already has analysis", application.Id); + return; + } + + var analysisAttachments = BuildAnalysisAttachments(attachments); + + // Get form submission content including rendered HTML + var formSubmission = await _applicationFormSubmissionRepository + .GetByApplicationAsync(application.Id); + + var formFieldSchema = BuildEmptyFormFieldSchema(); + + if (formSubmission?.ApplicationFormVersionId is Guid formVersionId) + { + formFieldSchema = await ExtractFormFieldConfigurationSchemaAsync(formVersionId); + _logger.LogDebug("Extracted form field schema for application {ApplicationId}", + application.Id); + } + else + { + _logger.LogWarning("Could not extract form field schema for application {ApplicationId} - ApplicationFormVersionId is null", + application.Id); + } + + var analysisData = BuildAnalysisDataPayload(application, formSubmission); + _logger.LogInformation("Generating analysis for application {ApplicationId}", application.Id); + + _logger.LogDebug("Generating AI analysis for application {ApplicationId} with {AttachmentCount} attachment summaries", + application.Id, analysisAttachments.Count); + + var analysisRequest = new ApplicationAnalysisRequest + { + Schema = formFieldSchema, + Data = analysisData, + Attachments = analysisAttachments, + Rubric = AnalysisPrompts.DefaultRubric + }; + + var analysis = await _aiService.GenerateApplicationAnalysisAsync(analysisRequest); + var analysisJson = JsonSerializer.Serialize(analysis, _jsonOptionsIndented); + if (!IsValidAnalysisPayload(analysisJson)) + { + _logger.LogWarning("Skipping invalid AI analysis payload for application {ApplicationId}.", application.Id); + return; + } + + // Update the tracked application with the analysis + trackedApplication.AIAnalysis = analysisJson; + await _applicationRepository.UpdateAsync(trackedApplication); + + _logger.LogInformation("Successfully generated AI analysis for application {ApplicationId}", application.Id); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error generating application analysis for {ApplicationId}", application.Id); + // Don't throw - this should not break the main submission processing + } + } + + private static List BuildAnalysisAttachments(List attachments) + { + return attachments + .Where(a => !string.IsNullOrWhiteSpace(a.AISummary)) + .Select(a => new AIAttachmentItem + { + Name = string.IsNullOrWhiteSpace(a.FileName) ? "attachment" : a.FileName.Trim(), + Summary = a.AISummary!.Trim() + }) + .ToList(); + } + + private JsonElement BuildAnalysisDataPayload(Application application, ApplicationFormSubmission? formSubmission) + { + var fallbackPayload = BuildFallbackAnalysisDataPayload(application); + + if (string.IsNullOrWhiteSpace(formSubmission?.Submission)) + { + return JsonSerializer.SerializeToElement(fallbackPayload); + } + + try + { + using var submissionDoc = JsonDocument.Parse(formSubmission.Submission); + var root = submissionDoc.RootElement; + + JsonElement submissionData = root; + if (root.ValueKind == JsonValueKind.Object && + root.TryGetProperty("data", out var dataElement) && + dataElement.ValueKind == JsonValueKind.Object) + { + submissionData = dataElement; + } + else if (root.ValueKind == JsonValueKind.Object && + root.TryGetProperty("submission", out var submissionElement) && + submissionElement.ValueKind == JsonValueKind.Object && + submissionElement.TryGetProperty("data", out var nestedDataElement) && + nestedDataElement.ValueKind == JsonValueKind.Object) + { + submissionData = nestedDataElement; + } + + if (submissionData.ValueKind != JsonValueKind.Object) + { + return JsonSerializer.SerializeToElement(fallbackPayload); + } + + var values = BuildPromptDataValues(submissionData); + + return JsonSerializer.SerializeToElement(values); + } + catch (Exception ex) + { + _logger.LogWarning(ex, + "Failed to parse form submission JSON for application {ApplicationId}; falling back to curated analysis data.", + application.Id); + return JsonSerializer.SerializeToElement(fallbackPayload); + } + } + + private static object BuildFallbackAnalysisDataPayload(Application application) + { + var notSpecified = "Not specified"; + return new + { + project_name = application.ProjectName, + reference_number = application.ReferenceNo, + requested_amount = application.RequestedAmount, + total_project_budget = application.TotalProjectBudget, + project_summary = application.ProjectSummary ?? "Not provided", + city = application.City ?? notSpecified, + economic_region = application.EconomicRegion ?? notSpecified, + community = application.Community ?? notSpecified, + project_start_date = application.ProjectStartDate, + project_end_date = application.ProjectEndDate, + submission_date = application.SubmissionDate + }; + } + + private async Task GenerateScoresheetAnalysisAsync(Application application, List attachments) + { + try + { + _logger.LogDebug("Starting scoresheet analysis for {ApplicationId}", application.Id); + + // Load the application from repository to ensure proper change tracking + var trackedApplication = await _applicationRepository.GetAsync(application.Id); + + // Skip if application already has scoresheet analysis + if (!string.IsNullOrEmpty(trackedApplication.AIScoresheetAnswers)) + { + _logger.LogDebug("Skipping scoresheet analysis for {ApplicationId} - already has scoresheet answers", application.Id); + return; + } + + // Get the scoresheet for this application's form (using direct relationship like AssessmentManager does) + _logger.LogDebug("Getting ApplicationForm for application {ApplicationId} with ApplicationFormId {ApplicationFormId}", + application.Id, application.ApplicationFormId); + + var applicationForm = await _applicationFormRepository.GetAsync(application.ApplicationFormId); + if (applicationForm == null) + { + _logger.LogDebug("ApplicationForm not found with ID {ApplicationFormId} for application {ApplicationId}", + application.ApplicationFormId, application.Id); + return; + } + + _logger.LogDebug("Found ApplicationForm {ApplicationFormName} with ScoresheetId {ScoresheetId} for application {ApplicationId}", + applicationForm.ApplicationFormName, applicationForm.ScoresheetId, application.Id); + + if (applicationForm.ScoresheetId == null) + { + _logger.LogDebug("No scoresheet found for application {ApplicationId} - ApplicationForm {ApplicationFormId} has null ScoresheetId", + application.Id, application.ApplicationFormId); + return; + } + + var scoresheet = await _scoresheetRepository.GetWithChildrenAsync(applicationForm.ScoresheetId.Value); + if (scoresheet == null) + { + _logger.LogDebug("Scoresheet not found for application {ApplicationId}", application.Id); + return; + } + + var allSectionResults = new Dictionary(); + var scoresheetAttachments = BuildScoresheetAttachments(attachments); + var formSubmission = await _applicationFormSubmissionRepository.GetByApplicationAsync(application.Id); + var scoresheetData = BuildScoresheetDataPayload(application, formSubmission); + LogFormSubmissionPreview(formSubmission?.RenderedHTML); + + foreach (var section in scoresheet.Sections.OrderBy(s => s.Order)) + { + var sectionSchema = BuildScoresheetSectionSchema(section.Fields); + await ProcessScoresheetSectionAsync( + section.Name, + section.Fields.Count, + sectionSchema, + application.Id, + scoresheetData, + scoresheetAttachments, + allSectionResults); + } + + await SaveScoresheetResultsAsync(trackedApplication, allSectionResults); + await LocalEventBus.PublishAsync(new AiScoresheetAnswersGeneratedEvent + { + Application = application + }); + + _logger.LogInformation("Successfully generated and saved AI scoresheet answers for application {ApplicationId}. Answers will be parsed when scoresheet instance is created.", application.Id); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error generating scoresheet analysis for {ApplicationId}", application.Id); + // Don't throw - this should not break the main submission processing + } + } + + private static List BuildScoresheetAttachments(List attachments) + { + return attachments + .Where(a => !string.IsNullOrEmpty(a.AISummary)) + .Select(a => new AIAttachmentItem + { + Name = string.IsNullOrWhiteSpace(a.FileName) ? "attachment" : a.FileName.Trim(), + Summary = a.AISummary!.Trim() + }) + .ToList(); + } + + private JsonElement BuildScoresheetDataPayload(Application application, ApplicationFormSubmission? formSubmission) + { + var fallbackContent = BuildScoresheetFallbackContent(application, formSubmission?.RenderedHTML); + + if (string.IsNullOrWhiteSpace(formSubmission?.Submission)) + { + return JsonSerializer.SerializeToElement(new { submission_content = fallbackContent }); + } + + try + { + using var submissionDoc = JsonDocument.Parse(formSubmission.Submission); + var root = submissionDoc.RootElement; + + JsonElement submissionData = root; + if (root.ValueKind == JsonValueKind.Object && + root.TryGetProperty("data", out var dataElement) && + dataElement.ValueKind == JsonValueKind.Object) + { + submissionData = dataElement; + } + else if (root.ValueKind == JsonValueKind.Object && + root.TryGetProperty("submission", out var submissionElement) && + submissionElement.ValueKind == JsonValueKind.Object && + submissionElement.TryGetProperty("data", out var nestedDataElement) && + nestedDataElement.ValueKind == JsonValueKind.Object) + { + submissionData = nestedDataElement; + } + + if (submissionData.ValueKind == JsonValueKind.Object) + { + return JsonSerializer.SerializeToElement(BuildPromptDataValues(submissionData)); + } + } + catch (Exception ex) + { + _logger.LogWarning(ex, + "Failed to parse scoresheet submission JSON for application {ApplicationId}; falling back to summary content.", + application.Id); + } + + return JsonSerializer.SerializeToElement(new { submission_content = fallbackContent }); + } + + private static Dictionary BuildPromptDataValues(JsonElement submissionData) + { + var deserializedValues = JsonSerializer.Deserialize>(submissionData.GetRawText()) ?? + new Dictionary(); + var values = new Dictionary(deserializedValues, StringComparer.OrdinalIgnoreCase); + + foreach (var excludedKey in ExcludedPromptDataKeys) + { + values.Remove(excludedKey); + } + + return values; + } + + private static string BuildScoresheetFallbackContent(Application application, string? renderedFormHtml) + { + var notSpecified = "Not specified"; + return $@" +Project Name: {application.ProjectName} +Reference Number: {application.ReferenceNo} +Requested Amount: ${application.RequestedAmount:N2} +Total Project Budget: ${application.TotalProjectBudget:N2} +Project Summary: {application.ProjectSummary ?? "Not provided"} +City: {application.City ?? notSpecified} +Economic Region: {application.EconomicRegion ?? notSpecified} +Community: {application.Community ?? notSpecified} +Project Start Date: {application.ProjectStartDate?.ToShortDateString() ?? notSpecified} +Project End Date: {application.ProjectEndDate?.ToShortDateString() ?? notSpecified} +Submission Date: {application.SubmissionDate.ToShortDateString()} + +FULL APPLICATION FORM SUBMISSION: +{renderedFormHtml ?? "Form submission content not available"} +"; + } + + private void LogFormSubmissionPreview(string? renderedFormHtml) + { + _logger.LogInformation("Form submission HTML length: {HtmlLength} characters", renderedFormHtml?.Length ?? 0); + if (renderedFormHtml?.Length > 100) + { + _logger.LogDebug("Form submission HTML is present and non-trivial."); + } + else + { + _logger.LogWarning("Form submission HTML is missing or very short."); + } + } + + private async Task ProcessScoresheetSectionAsync( + string sectionName, + int questionCount, + JsonElement sectionSchema, + Guid applicationId, + JsonElement scoresheetData, + List scoresheetAttachments, + Dictionary allSectionResults) + { + try + { + _logger.LogDebug("Processing section {SectionName} for application {ApplicationId}", + sectionName, applicationId); + var sectionAnswers = await _aiService.GenerateScoresheetSectionAnswersAsync(new ScoresheetSectionRequest + { + Data = scoresheetData, + Attachments = scoresheetAttachments, + SectionName = sectionName, + SectionSchema = sectionSchema + }); + + if (sectionAnswers.Answers.Count == 0) + { + return; + } + + var expectedQuestionIds = ExtractSectionQuestionIds(sectionSchema); + var returnedQuestionIds = new HashSet(StringComparer.OrdinalIgnoreCase); + + foreach (var answerEntry in sectionAnswers.Answers) + { + returnedQuestionIds.Add(answerEntry.Key); + allSectionResults[answerEntry.Key] = new Dictionary + { + [AIJsonKeys.Answer] = answerEntry.Value.Answer, + [AIJsonKeys.Rationale] = answerEntry.Value.Rationale, + [AIJsonKeys.Confidence] = answerEntry.Value.Confidence + }; + } + + var missingQuestionIds = expectedQuestionIds.Except(returnedQuestionIds, StringComparer.OrdinalIgnoreCase).ToArray(); + if (missingQuestionIds.Length > 0) + { + _logger.LogWarning( + "AI scoresheet response missing question answers for section {SectionName} in application {ApplicationId}. Expected: {ExpectedCount}, Returned: {ReturnedCount}, MissingIds: {MissingIds}.", + sectionName, + applicationId, + expectedQuestionIds.Count, + returnedQuestionIds.Count, + string.Join(",", missingQuestionIds)); + } + else + { + _logger.LogDebug( + "AI scoresheet response complete for section {SectionName} in application {ApplicationId}. Returned {ReturnedCount} answers.", + sectionName, + applicationId, + returnedQuestionIds.Count); + } + + _logger.LogDebug("Successfully processed section {SectionName} with {QuestionCount} questions", + sectionName, questionCount); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error processing section {SectionName} for application {ApplicationId}", + sectionName, applicationId); + } + } + + private static HashSet ExtractSectionQuestionIds(JsonElement sectionSchema) + { + var ids = new HashSet(StringComparer.OrdinalIgnoreCase); + if (sectionSchema.ValueKind != JsonValueKind.Array) + { + return ids; + } + + foreach (var question in sectionSchema.EnumerateArray()) + { + if (question.ValueKind == JsonValueKind.Object && + question.TryGetProperty("id", out var idProp) && + idProp.ValueKind == JsonValueKind.String) + { + var id = idProp.GetString(); + if (!string.IsNullOrWhiteSpace(id)) + { + ids.Add(id); + } + } + } + + return ids; + } + + private static JsonElement BuildScoresheetSectionSchema(IEnumerable fields) + { + var sectionQuestionsData = fields + .OrderBy(f => f.Order) + .Select(field => + { + var options = ExtractSelectListOptions(field); + return new + { + id = field.Id.ToString(), + question = field.Label, + description = field.Description, + type = field.Type.ToString(), + options, + allowed_answers = ExtractSelectListOptionNumbers(options) + }; + }) + .ToList(); + + return JsonSerializer.SerializeToElement(sectionQuestionsData); + } + + private async Task SaveScoresheetResultsAsync(Application trackedApplication, Dictionary allSectionResults) + { + var combinedResults = JsonSerializer.Serialize(allSectionResults, _jsonOptionsIndented); + if (!IsValidScoresheetAnswersPayload(combinedResults)) + { + _logger.LogWarning("Skipping invalid AI scoresheet payload for application {ApplicationId}.", trackedApplication.Id); + return; + } + + trackedApplication.AIScoresheetAnswers = combinedResults; + await _applicationRepository.UpdateAsync(trackedApplication); + } + + private static object[]? ExtractSelectListOptions(Unity.Flex.Domain.Scoresheets.Question field) + { + if (field.Type != Unity.Flex.Scoresheets.Enums.QuestionType.SelectList || string.IsNullOrEmpty(field.Definition)) + return null; + + try + { + var definition = JsonSerializer.Deserialize(field.Definition); + if (definition?.Options != null && definition.Options.Count > 0) + { + return definition.Options + .Select((option, index) => + (object)new + { + number = index + 1, + value = option.Value + }) + .ToArray(); + } + } + catch (JsonException) + { + // If definition parsing fails, return null + } + + return null; + } + + private static string[]? ExtractSelectListOptionNumbers(object[]? options) + { + if (options == null || options.Length == 0) + { + return null; + } + + return options + .Select((_, index) => (index + 1).ToString()) + .ToArray(); + } + + /// + /// Extracts form field metadata keyed by field key for analysis schema prompts. + /// + private async Task ExtractFormFieldConfigurationSchemaAsync(Guid formVersionId) + { + try + { + var formVersion = await _applicationFormVersionRepository.GetAsync(formVersionId); + if (formVersion == null || string.IsNullOrEmpty(formVersion.FormSchema)) + { + return BuildEmptyFormFieldSchema(); + } + + var schema = JObject.Parse(formVersion.FormSchema); + var components = schema[ComponentsKey] as JArray; + + if (components == null || components.Count == 0) + { + return BuildEmptyFormFieldSchema(); + } + + var fields = new Dictionary(StringComparer.OrdinalIgnoreCase); + ExtractFieldRequirements(components, fields, string.Empty); + return JsonSerializer.SerializeToElement(fields); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error extracting form field schema for form version {FormVersionId}", formVersionId); + return BuildEmptyFormFieldSchema(); + } + } + + private static JsonElement BuildEmptyFormFieldSchema() + { + return JsonSerializer.SerializeToElement(new Dictionary()); + } + + /// + /// Recursively extracts form field metadata from form components + /// + private static void ExtractFieldRequirements( + JArray components, + Dictionary fields, + string currentPath) + { + foreach (var component in components.OfType()) + { + var key = component["key"]?.ToString(); + var label = component["label"]?.ToString(); + var type = component["type"]?.ToString(); + + if (string.IsNullOrEmpty(key) || string.IsNullOrEmpty(type) || NonDataComponentTypes.Contains(type)) + { + ProcessNestedFieldRequirements(component, type, fields, currentPath); + continue; + } + + var displayName = !string.IsNullOrEmpty(label) ? $"{label} ({key})" : key; + var fullPath = string.IsNullOrEmpty(currentPath) ? displayName : $"{currentPath} > {displayName}"; + + if (component["input"]?.Value() == true) + { + fields[key] = NormalizeFieldType(type, component); + } + + ProcessNestedFieldRequirements(component, type, fields, fullPath); + } + } + + /// + /// Processes nested components for different container types + /// + private static void ProcessNestedFieldRequirements( + JObject component, + string? type, + Dictionary fields, + string currentPath) + { + switch (type) + { + case "panel": + case "simplepanel": + case "fieldset": + case "well": + case "container": + case "datagrid": + case "table": + var nestedComponents = component[ComponentsKey] as JArray; + if (nestedComponents != null) + { + ExtractFieldRequirements(nestedComponents, fields, currentPath); + } + break; + + case "columns": + case "simplecols2": + case "simplecols3": + case "simplecols4": + var columns = component["columns"] as JArray; + if (columns != null) + { + foreach (var column in columns.OfType()) + { + var columnComponents = column[ComponentsKey] as JArray; + if (columnComponents != null) + { + ExtractFieldRequirements(columnComponents, fields, currentPath); + } + } + } + break; + + case "tabs": + case "simpletabs": + var tabs = component[ComponentsKey] as JArray; + if (tabs != null) + { + foreach (var tab in tabs.OfType()) + { + var tabComponents = tab[ComponentsKey] as JArray; + if (tabComponents != null) + { + ExtractFieldRequirements(tabComponents, fields, currentPath); + } + } + } + break; + } + } + + private static string NormalizeFieldType(string rawType, JObject component) + { + if (component["multiple"]?.Value() == true) + { + return ArrayFieldType; + } + + return rawType.ToLowerInvariant() switch + { + "number" => "number", + "currency" => "number", + "checkbox" => "boolean", + "datetime" => "date", + "day" => "date", + "date" => "date", + "time" => "date", + "datagrid" => ArrayFieldType, + "editgrid" => ArrayFieldType, + "table" => ArrayFieldType, + "container" => ObjectFieldType, + "panel" => ObjectFieldType, + "fieldset" => ObjectFieldType, + "well" => ObjectFieldType, + _ => "string" + }; + } + + private static bool IsValidAnalysisPayload(string analysisJson) + { + if (string.IsNullOrWhiteSpace(analysisJson)) + { + return false; + } + + try + { + using var doc = JsonDocument.Parse(analysisJson); + var root = doc.RootElement; + if (root.ValueKind != JsonValueKind.Object) + { + return false; + } + + if (!root.TryGetProperty(AIJsonKeys.Rating, out var overallScore) || + overallScore.ValueKind != JsonValueKind.String) + { + return false; + } + + if (!root.TryGetProperty(AIJsonKeys.Errors, out var errors) || + !root.TryGetProperty(AIJsonKeys.Warnings, out var warnings) || + !root.TryGetProperty(AIJsonKeys.Summaries, out var summaries) || + !root.TryGetProperty(AIJsonKeys.Dismissed, out var dismissedItems)) + { + return false; + } + + if (!HasOnlyAllowedProperties(root, AllowedAnalysisRootProperties)) + { + return false; + } + + if (!IsValidFindingsArray(errors) || !IsValidFindingsArray(warnings) || !IsValidFindingsArray(summaries)) + { + return false; + } + + if (dismissedItems.ValueKind != JsonValueKind.Array || + dismissedItems.EnumerateArray().Any(id => id.ValueKind != JsonValueKind.String)) + { + return false; + } + + return true; + } + catch (JsonException) + { + return false; + } + } + + private static bool IsValidFindingsArray(JsonElement element) + { + if (element.ValueKind != JsonValueKind.Array) + { + return false; + } + + foreach (var finding in element.EnumerateArray()) + { + if (finding.ValueKind != JsonValueKind.Object) + { + return false; + } + + if (!finding.TryGetProperty(AIJsonKeys.Title, out var title) || title.ValueKind != JsonValueKind.String) + { + return false; + } + + if (!finding.TryGetProperty(AIJsonKeys.Detail, out var detail) || detail.ValueKind != JsonValueKind.String) + { + return false; + } + + if (!HasOnlyAllowedProperties(finding, AllowedFindingProperties)) + { + return false; + } + } + + return true; + } + + private static bool IsValidScoresheetAnswersPayload(string scoresheetJson) + { + if (string.IsNullOrWhiteSpace(scoresheetJson)) + { + return false; + } + + try + { + using var doc = JsonDocument.Parse(scoresheetJson); + if (doc.RootElement.ValueKind != JsonValueKind.Object) + { + return false; + } + + foreach (var question in doc.RootElement.EnumerateObject().Select(question => question.Value)) + { + if (question.ValueKind != JsonValueKind.Object) + { + return false; + } + + if (!question.TryGetProperty(AIJsonKeys.Answer, out var answer)) + { + return false; + } + + var validAnswerType = answer.ValueKind is JsonValueKind.String or JsonValueKind.Number or JsonValueKind.True or JsonValueKind.False; + if (!validAnswerType) + { + return false; + } + + if (!question.TryGetProperty(AIJsonKeys.Rationale, out var rationale) || rationale.ValueKind != JsonValueKind.String) + { + return false; + } + + if (!question.TryGetProperty(AIJsonKeys.Confidence, out var confidence) || !confidence.TryGetInt32(out var confidenceValue)) + { + return false; + } + + if (confidenceValue < 0 || confidenceValue > 100) + { + return false; + } + + if (!HasOnlyAllowedProperties(question, AllowedScoresheetAnswerProperties)) + { + return false; + } + } + + return true; + } + catch (JsonException) + { + return false; + } + } + + private static bool HasOnlyAllowedProperties(JsonElement element, IReadOnlyCollection allowedProperties) + { + if (element.ValueKind != JsonValueKind.Object) + { + return false; + } + + var allowed = new HashSet(allowedProperties, StringComparer.Ordinal); + return element.EnumerateObject().All(property => allowed.Contains(property.Name)); + } + + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/GenerateAISummaryHandler.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/GenerateAISummaryHandler.cs deleted file mode 100644 index dbc69472b5..0000000000 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/Handlers/GenerateAISummaryHandler.cs +++ /dev/null @@ -1,742 +0,0 @@ -using Microsoft.Extensions.Logging; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Unity.GrantManager.AI; -using Unity.GrantManager.Applications; -using Unity.GrantManager.Intakes.Events; -using Volo.Abp.DependencyInjection; -using Volo.Abp.EventBus; -using Unity.Flex.Domain.Scoresheets; -using System.Text.Json; -using Volo.Abp.Features; -using Newtonsoft.Json.Linq; -using System.Text; - -namespace Unity.GrantManager.Intakes.Handlers -{ - public class GenerateAiSummaryHandler : ILocalEventHandler, ITransientDependency - { - private readonly IAIService _aiService; - private readonly ISubmissionAppService _submissionAppService; - private readonly IApplicationChefsFileAttachmentRepository _attachmentRepository; - private readonly IApplicationRepository _applicationRepository; - private readonly IApplicationFormSubmissionRepository _applicationFormSubmissionRepository; - private readonly ILogger _logger; - private readonly IScoresheetRepository _scoresheetRepository; - private readonly IApplicationFormRepository _applicationFormRepository; - private readonly IApplicationFormVersionRepository _applicationFormVersionRepository; - private readonly IFeatureChecker _featureChecker; - const string ComponentsKey = "components"; - - readonly JsonSerializerOptions jsonOptions = new JsonSerializerOptions - { - WriteIndented = true, - PropertyNamingPolicy = JsonNamingPolicy.CamelCase - }; - readonly JsonSerializerOptions jsonOptionsIndented = new JsonSerializerOptions - { - WriteIndented = true - }; - - public GenerateAiSummaryHandler( - IAIService aiService, - ISubmissionAppService submissionAppService, - IApplicationChefsFileAttachmentRepository attachmentRepository, - IApplicationRepository applicationRepository, - IApplicationFormSubmissionRepository applicationFormSubmissionRepository, - ILogger logger, - IScoresheetRepository scoresheetRepository, - IApplicationFormRepository applicationFormRepository, - IApplicationFormVersionRepository applicationFormVersionRepository, - IFeatureChecker featureChecker) - { - _aiService = aiService; - _submissionAppService = submissionAppService; - _attachmentRepository = attachmentRepository; - _applicationRepository = applicationRepository; - _applicationFormSubmissionRepository = applicationFormSubmissionRepository; - _logger = logger; - _scoresheetRepository = scoresheetRepository; - _applicationFormRepository = applicationFormRepository; - _applicationFormVersionRepository = applicationFormVersionRepository; - _featureChecker = featureChecker; - } - - /// - /// Generate AI summaries for attachments when a new application is processed - /// - /// - /// - public async Task HandleEventAsync(ApplicationProcessEvent eventData) - { - if (eventData?.Application == null) - { - _logger.LogWarning("Event data or application is null in GenerateAiSummaryHandler."); - return; - } - - // Check if either AI feature is enabled - var attachmentSummariesEnabled = await _featureChecker.IsEnabledAsync("Unity.AI.AttachmentSummaries"); - var applicationAnalysisEnabled = await _featureChecker.IsEnabledAsync("Unity.AI.ApplicationAnalysis"); - - if (!attachmentSummariesEnabled && !applicationAnalysisEnabled) - { - _logger.LogDebug("All AI features are disabled, skipping AI generation for application {ApplicationId}.", eventData.Application.Id); - return; - } - - // Check if AI service is available - if (!await _aiService.IsAvailableAsync()) - { - _logger.LogWarning("AI service is not available, skipping AI generation for application {ApplicationId}.", eventData.Application.Id); - return; - } - - _logger.LogInformation("Generating AI content for application {ApplicationId}.", eventData.Application.Id); - - try - { - // Get all CHEFS attachments for this application - var attachments = await _attachmentRepository.GetListAsync(a => a.ApplicationId == eventData.Application.Id); - - // Generate attachment summaries if feature is enabled - if (attachmentSummariesEnabled) - { - foreach (var attachment in attachments) - { - try - { - // Skip if already has an AI summary (don't regenerate) - if (!string.IsNullOrEmpty(attachment.AISummary)) - { - _logger.LogDebug("Skipping AI summary for attachment {FileName} - already has summary", attachment.FileName); - continue; - } - - _logger.LogDebug("Generating AI summary for attachment {FileName}", attachment.FileName); - - try - { - // Get the file content from CHEFS (now accessible via [AllowAnonymous]) - var fileDto = await _submissionAppService.GetChefsFileAttachment( - Guid.Parse(attachment.ChefsSubmissionId ?? ""), - Guid.Parse(attachment.ChefsFileId ?? ""), - attachment.FileName ?? ""); - - if (fileDto?.Content != null) - { - _logger.LogDebug("Processing {FileName} ({ContentType}, {Size} bytes) for AI summary generation", - attachment.FileName, fileDto.ContentType, fileDto.Content.Length); - - // Generate AI summary with text extraction and file content analysis - var summary = await _aiService.GenerateAttachmentSummaryAsync( - attachment.FileName ?? "", - fileDto.Content, - fileDto.ContentType); - - // Update the attachment with the AI summary - attachment.AISummary = summary; - await _attachmentRepository.UpdateAsync(attachment); - - var preview = summary is { Length: > 0 } s - ? string.Concat(s.AsSpan(0, Math.Min(100, s.Length)), "...") - : "..."; - - _logger.LogDebug("Successfully generated AI summary for attachment {FileName}: {SummaryPreview}", - attachment.FileName, preview); - } - else - { - _logger.LogWarning("Could not retrieve content for attachment {FileName}", attachment.FileName); - - // Generate summary from filename only as fallback - var summary = await _aiService.GenerateAttachmentSummaryAsync( - attachment.FileName ?? "", - Array.Empty(), - "application/octet-stream"); - - attachment.AISummary = summary; - await _attachmentRepository.UpdateAsync(attachment); - } - } - catch (Exception ex) - { - _logger.LogWarning(ex, "Could not access CHEFS file {FileName}. Generating summary from filename only.", attachment.FileName); - - // Fallback: Generate summary from filename only - var summary = await _aiService.GenerateAttachmentSummaryAsync( - attachment.FileName ?? "", - Array.Empty(), - "application/octet-stream"); - - attachment.AISummary = summary; - await _attachmentRepository.UpdateAsync(attachment); - - _logger.LogDebug("Generated fallback AI summary for attachment {FileName} from filename only", attachment.FileName); - } - } - catch (Exception ex) - { - _logger.LogError(ex, "Error generating AI summary for attachment {FileName} in application {ApplicationId}", - attachment.FileName, eventData.Application.Id); - // Continue processing other attachments even if one fails - } - } - } - - // Generate application analysis and scoresheet if feature is enabled - if (applicationAnalysisEnabled) - { - // After processing all attachments, perform application analysis - await GenerateApplicationAnalysisAsync(eventData.Application, attachments); - - // Generate AI scoresheet answers - await GenerateScoresheetAnalysisAsync(eventData.Application, attachments); - } - } - catch (Exception ex) - { - _logger.LogError(ex, "Error generating AI content for application {ApplicationId}", eventData.Application.Id); - // Don't throw - this should not break the main submission processing - } - } - - private async Task GenerateApplicationAnalysisAsync(Application application, List attachments) - { - try - { - _logger.LogDebug("Starting application analysis for {ApplicationId}", application.Id); - - // Load the application from repository to ensure proper change tracking - var trackedApplication = await _applicationRepository.GetAsync(application.Id); - - // Skip if application already has analysis - if (!string.IsNullOrEmpty(trackedApplication.AIAnalysis)) - { - _logger.LogDebug("Skipping application analysis for {ApplicationId} - already has analysis", application.Id); - return; - } - - // Collect all attachment summaries that were generated - var attachmentSummaries = attachments - .Where(a => !string.IsNullOrEmpty(a.AISummary)) - .Select(a => $"{a.FileName}: {a.AISummary}") - .ToList(); - - // Get form submission content including rendered HTML - var formSubmission = await _applicationFormSubmissionRepository - .GetByApplicationAsync(application.Id); - - // Extract form field configuration (required vs optional fields) - string formFieldConfiguration = "Form configuration not available."; - if (formSubmission?.ApplicationFormVersionId != null) - { - formFieldConfiguration = await ExtractFormFieldConfigurationAsync(formSubmission.ApplicationFormVersionId.Value); - _logger.LogDebug("Extracted form field configuration for application {ApplicationId}: {Configuration}", - application.Id, formFieldConfiguration); - } - else - { - _logger.LogWarning("Could not extract form field configuration for application {ApplicationId} - ApplicationFormVersionId is null", - application.Id); - } - - // Get application content including the full form submission - var notSpecified = "Not specified"; - var applicationContent = $@" -Project Name: {application.ProjectName} -Reference Number: {application.ReferenceNo} -Requested Amount: ${application.RequestedAmount:N2} -Total Project Budget: ${application.TotalProjectBudget:N2} -Project Summary: {application.ProjectSummary ?? "Not provided"} -City: {application.City ?? notSpecified} -Economic Region: {application.EconomicRegion ?? notSpecified} -Community: {application.Community ?? notSpecified} -Project Start Date: {application.ProjectStartDate?.ToShortDateString() ?? notSpecified} -Project End Date: {application.ProjectEndDate?.ToShortDateString() ?? notSpecified} -Submission Date: {application.SubmissionDate.ToShortDateString()} - -FULL APPLICATION FORM SUBMISSION: -{formSubmission?.RenderedHTML ?? "Form submission content not available"} -"; - _logger.LogInformation("Generating analysis for following application: {Application}", applicationContent); - - // Hardcoded rubric for now - var rubric = @" -BC GOVERNMENT GRANT EVALUATION RUBRIC: - -1. ELIGIBILITY REQUIREMENTS: - - Project must align with program objectives - - Applicant must be eligible entity type - - Budget must be reasonable and well-justified - - Project timeline must be realistic - -2. COMPLETENESS CHECKS: - - All required fields completed - - Necessary supporting documents provided - - Budget breakdown detailed and accurate - - Project description clear and comprehensive - -3. FINANCIAL REVIEW: - - Requested amount is within program limits - - Budget is reasonable for scope of work - - Matching funds or in-kind contributions identified - - Cost per outcome/beneficiary is reasonable - -4. RISK ASSESSMENT: - - Applicant capacity to deliver project - - Technical feasibility of proposed work - - Environmental or regulatory compliance - - Potential for cost overruns or delays - -5. QUALITY INDICATORS: - - Clear project objectives and outcomes - - Well-defined target audience/beneficiaries - - Appropriate project methodology - - Sustainability plan for long-term impact - -EVALUATION CRITERIA: -- HIGH: Meets all requirements, well-prepared application, low risk -- MEDIUM: Meets most requirements, minor issues or missing elements -- LOW: Missing key requirements, significant concerns, high risk -"; - - _logger.LogDebug("Generating AI analysis for application {ApplicationId} with {AttachmentCount} attachment summaries", - application.Id, attachmentSummaries.Count); - - // Generate the analysis with form field configuration - var analysis = await _aiService.AnalyzeApplicationAsync(applicationContent, attachmentSummaries, rubric, formFieldConfiguration); - - // Clean the response to remove any markdown formatting - var cleanedAnalysis = CleanJsonResponse(analysis); - - // Update the tracked application with the analysis - trackedApplication.AIAnalysis = cleanedAnalysis; - await _applicationRepository.UpdateAsync(trackedApplication); - - _logger.LogInformation("Successfully generated AI analysis for application {ApplicationId}", application.Id); - } - catch (Exception ex) - { - _logger.LogError(ex, "Error generating application analysis for {ApplicationId}", application.Id); - // Don't throw - this should not break the main submission processing - } - } - - private async Task GenerateScoresheetAnalysisAsync(Application application, List attachments) - { - try - { - _logger.LogDebug("Starting scoresheet analysis for {ApplicationId}", application.Id); - - // Load the application from repository to ensure proper change tracking - var trackedApplication = await _applicationRepository.GetAsync(application.Id); - - // Skip if application already has scoresheet analysis - if (!string.IsNullOrEmpty(trackedApplication.AIScoresheetAnswers)) - { - _logger.LogDebug("Skipping scoresheet analysis for {ApplicationId} - already has scoresheet answers", application.Id); - return; - } - - // Get the scoresheet for this application's form (using direct relationship like AssessmentManager does) - _logger.LogDebug("Getting ApplicationForm for application {ApplicationId} with ApplicationFormId {ApplicationFormId}", - application.Id, application.ApplicationFormId); - - var applicationForm = await _applicationFormRepository.GetAsync(application.ApplicationFormId); - if (applicationForm == null) - { - _logger.LogDebug("ApplicationForm not found with ID {ApplicationFormId} for application {ApplicationId}", - application.ApplicationFormId, application.Id); - return; - } - - _logger.LogDebug("Found ApplicationForm {ApplicationFormName} with ScoresheetId {ScoresheetId} for application {ApplicationId}", - applicationForm.ApplicationFormName, applicationForm.ScoresheetId, application.Id); - - if (applicationForm.ScoresheetId == null) - { - _logger.LogDebug("No scoresheet found for application {ApplicationId} - ApplicationForm {ApplicationFormId} has null ScoresheetId", - application.Id, application.ApplicationFormId); - return; - } - - var scoresheet = await _scoresheetRepository.GetWithChildrenAsync(applicationForm.ScoresheetId.Value); - if (scoresheet == null) - { - _logger.LogDebug("Scoresheet not found for application {ApplicationId}", application.Id); - return; - } - - // Process each section individually for better AI focus - var allSectionResults = new Dictionary(); - - // Collect all attachment summaries that were generated - var attachmentSummaries = attachments - .Where(a => !string.IsNullOrEmpty(a.AISummary)) - .Select(a => $"{a.FileName}: {a.AISummary}") - .ToList(); - - // Get form submission for rendered HTML content - var formSubmission = await _applicationFormSubmissionRepository.GetByApplicationAsync(application.Id); - - // Get application content including the full form submission - var notSpecified = "Not specified"; - var applicationContent = $@" -Project Name: {application.ProjectName} -Reference Number: {application.ReferenceNo} -Requested Amount: ${application.RequestedAmount:N2} -Total Project Budget: ${application.TotalProjectBudget:N2} -Project Summary: {application.ProjectSummary ?? "Not provided"} -City: {application.City ?? notSpecified} -Economic Region: {application.EconomicRegion ?? notSpecified} -Community: {application.Community ?? notSpecified} -Project Start Date: {application.ProjectStartDate?.ToShortDateString() ?? notSpecified} -Project End Date: {application.ProjectEndDate?.ToShortDateString() ?? notSpecified} -Submission Date: {application.SubmissionDate.ToShortDateString()} - -FULL APPLICATION FORM SUBMISSION: -{formSubmission?.RenderedHTML ?? "Form submission content not available"} -"; - - _logger.LogInformation("Form submission HTML length: {HtmlLength} characters", formSubmission?.RenderedHTML?.Length ?? 0); - if (formSubmission?.RenderedHTML?.Length > 100) - { - _logger.LogDebug("Form submission HTML preview: {HtmlPreview}...", - formSubmission.RenderedHTML.Substring(0, Math.Min(500, formSubmission.RenderedHTML.Length))); - } - else - { - _logger.LogWarning("Form submission HTML is missing or very short: {FullHtml}", formSubmission?.RenderedHTML); - } - - // Process each section individually - foreach (var section in scoresheet.Sections.OrderBy(s => s.Order)) - { - try - { - _logger.LogDebug("Processing section {SectionName} for application {ApplicationId}", - section.Name, application.Id); - - // Build section-specific JSON - var sectionQuestionsData = new List(); - foreach (var field in section.Fields.OrderBy(f => f.Order)) - { - var questionData = new - { - id = field.Id.ToString(), - question = field.Label, - description = field.Description, - type = field.Type.ToString(), - definition = field.Definition, - availableOptions = ExtractSelectListOptions(field) - }; - sectionQuestionsData.Add(questionData); - } - - var sectionJson = JsonSerializer.Serialize(sectionQuestionsData, jsonOptions); - - // Generate AI answers for this section - var sectionAnswers = await _aiService.GenerateScoresheetSectionAnswersAsync( - applicationContent, - attachmentSummaries, - sectionJson, - section.Name); - - // Parse and store section results - if (!string.IsNullOrWhiteSpace(sectionAnswers)) - { - var cleanedJson = CleanJsonResponse(sectionAnswers); - try - { - using var sectionDoc = JsonDocument.Parse(cleanedJson); - foreach (var property in sectionDoc.RootElement.EnumerateObject()) - { - allSectionResults[property.Name] = property.Value.Clone(); - } - - _logger.LogDebug("Successfully processed section {SectionName} with {QuestionCount} questions", - section.Name, sectionQuestionsData.Count); - } - catch (JsonException ex) - { - _logger.LogError(ex, "Failed to parse AI response for section {SectionName} in application {ApplicationId}. Content: {InvalidJson}", - section.Name, application.Id, sectionAnswers); - } - } - } - catch (Exception ex) - { - _logger.LogError(ex, "Error processing section {SectionName} for application {ApplicationId}", - section.Name, application.Id); - // Continue with other sections even if one fails - } - } - - // Combine all section results into final JSON - var combinedResults = JsonSerializer.Serialize(allSectionResults, jsonOptionsIndented); - - var scoresheetAnswers = combinedResults; - - // Validate and sanitize the JSON before saving - string validatedJson = "{}"; // Default empty JSON - try - { - if (!string.IsNullOrWhiteSpace(scoresheetAnswers)) - { - // Try to parse the JSON to validate it - using var jsonDoc = JsonDocument.Parse(scoresheetAnswers); - validatedJson = scoresheetAnswers; - _logger.LogDebug("AI generated valid JSON for scoresheet answers: {JsonPreview}", - scoresheetAnswers); - } - else - { - _logger.LogWarning("AI service returned empty or null scoresheet answers for application {ApplicationId}", application.Id); - } - } - catch (JsonException ex) - { - _logger.LogError(ex, "AI service returned invalid JSON for scoresheet answers for application {ApplicationId}. Content: {InvalidJson}", - application.Id, scoresheetAnswers); - validatedJson = "{}"; // Use empty JSON as fallback - } - - // Store AI scoresheet answers in the application for later parsing - trackedApplication.AIScoresheetAnswers = validatedJson; - await _applicationRepository.UpdateAsync(trackedApplication); - - _logger.LogInformation("Successfully generated and saved AI scoresheet answers for application {ApplicationId}. Answers will be parsed when scoresheet instance is created.", application.Id); - } - catch (Exception ex) - { - _logger.LogError(ex, "Error generating scoresheet analysis for {ApplicationId}", application.Id); - // Don't throw - this should not break the main submission processing - } - } - - private static string CleanJsonResponse(string response) - { - if (string.IsNullOrWhiteSpace(response)) - return response; - - // Remove markdown code block delimiters - var cleaned = response.Trim(); - - // Handle ```json opening tag - if (cleaned.StartsWith("```json", StringComparison.OrdinalIgnoreCase) || cleaned.StartsWith("```")) - { - var startIndex = cleaned.IndexOf('\n'); - if (startIndex >= 0) - { - cleaned = cleaned.Substring(startIndex + 1); - } - } - - // Handle closing ``` tag - if (cleaned.EndsWith("```")) - { - var lastIndex = cleaned.LastIndexOf("```"); - if (lastIndex > 0) - { - cleaned = cleaned.Substring(0, lastIndex); - } - } - - return cleaned.Trim(); - } - - private static (int number, string value, long numericValue)[]? ExtractSelectListOptions(Unity.Flex.Domain.Scoresheets.Question field) - { - if (field.Type != Unity.Flex.Scoresheets.Enums.QuestionType.SelectList || string.IsNullOrEmpty(field.Definition)) - return null; - - try - { - var definition = JsonSerializer.Deserialize(field.Definition); - if (definition?.Options != null && definition.Options.Count > 0) - { - return definition.Options - .Select((option, index) => - (number: index, - value: option.Value, - numericValue: option.NumericValue)) - .ToArray(); - } - } - catch (JsonException) - { - // If definition parsing fails, return null - } - - return null; - } - - /// - /// Extracts field configuration from form schema to identify which fields are required vs optional - /// - /// The form version ID to extract configuration from - /// A formatted string describing required and optional fields - private async Task ExtractFormFieldConfigurationAsync(Guid formVersionId) - { - try - { - var formVersion = await _applicationFormVersionRepository.GetAsync(formVersionId); - if (formVersion == null || string.IsNullOrEmpty(formVersion.FormSchema)) - { - return "Form configuration not available."; - } - - var schema = JObject.Parse(formVersion.FormSchema); - var components = schema[ComponentsKey] as JArray; - - if (components == null || components.Count == 0) - { - return "No form fields configured."; - } - - var requiredFields = new List(); - var optionalFields = new List(); - - ExtractFieldRequirements(components, requiredFields, optionalFields, string.Empty); - - var configurationText = new StringBuilder(); - - configurationText.AppendLine("FORM FIELD CONFIGURATION:"); - configurationText.AppendLine(); - - if (requiredFields.Count > 0) - { - configurationText.AppendLine("REQUIRED FIELDS (must be completed):"); - foreach (var field in requiredFields) - { - configurationText.AppendLine($"- {field}"); - } - configurationText.AppendLine(); - } - - if (optionalFields.Count > 0) - { - configurationText.AppendLine("OPTIONAL FIELDS (may be left blank):"); - foreach (var field in optionalFields) - { - configurationText.AppendLine($"- {field}"); - } - } - - - return configurationText.ToString(); - } - catch (Exception ex) - { - _logger.LogError(ex, "Error extracting form field configuration for form version {FormVersionId}", formVersionId); - return "Form configuration could not be extracted."; - } - } - - /// - /// Recursively extracts field requirements from form components - /// - private static void ExtractFieldRequirements(JArray components, List requiredFields, List optionalFields, string currentPath) - { - foreach (var component in components.OfType()) - { - var key = component["key"]?.ToString(); - var label = component["label"]?.ToString(); - var type = component["type"]?.ToString(); - - // Skip container components that don't represent actual data fields - var skipTypes = new HashSet { "button", "simplebuttonadvanced", "html", "htmlelement", "content", "simpleseparator" }; - if (string.IsNullOrEmpty(key) || string.IsNullOrEmpty(type) || skipTypes.Contains(type)) - { - // Still process nested components even if we skip the container - ProcessNestedFieldRequirements(component, type, requiredFields, optionalFields, currentPath); - continue; - } - - var displayName = !string.IsNullOrEmpty(label) ? $"{label} ({key})" : key; - var fullPath = string.IsNullOrEmpty(currentPath) ? displayName : $"{currentPath} > {displayName}"; - - // Check if the field is required - var validate = component["validate"] as JObject; - var isRequired = validate?["required"]?.Value() ?? false; - - // Add to appropriate list (only for data input fields) - if (component["input"]?.Value() == true) - { - if (isRequired) - { - requiredFields.Add(fullPath); - } - else - { - optionalFields.Add(fullPath); - } - } - - // Process nested components - ProcessNestedFieldRequirements(component, type, requiredFields, optionalFields, fullPath); - } - } - - /// - /// Processes nested components for different container types - /// - private static void ProcessNestedFieldRequirements(JObject component, string? type, List requiredFields, List optionalFields, string currentPath) - { - switch (type) - { - case "panel": - case "simplepanel": - case "fieldset": - case "well": - case "container": - case "datagrid": - case "table": - var nestedComponents = component[ComponentsKey] as JArray; - if (nestedComponents != null) - { - ExtractFieldRequirements(nestedComponents, requiredFields, optionalFields, currentPath); - } - break; - - case "columns": - case "simplecols2": - case "simplecols3": - case "simplecols4": - var columns = component["columns"] as JArray; - if (columns != null) - { - foreach (var column in columns.OfType()) - { - var columnComponents = column[ComponentsKey] as JArray; - if (columnComponents != null) - { - ExtractFieldRequirements(columnComponents, requiredFields, optionalFields, currentPath); - } - } - } - break; - - case "tabs": - case "simpletabs": - var tabs = component[ComponentsKey] as JArray; - if (tabs != null) - { - foreach (var tab in tabs.OfType()) - { - var tabComponents = tab[ComponentsKey] as JArray; - if (tabComponents != null) - { - ExtractFieldRequirements(tabComponents, requiredFields, optionalFields, currentPath); - } - } - } - break; - } - } - - } -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/IntakeFormSubmissionManager.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/IntakeFormSubmissionManager.cs index 858bf96407..1cdcd6b497 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/IntakeFormSubmissionManager.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/IntakeFormSubmissionManager.cs @@ -54,7 +54,7 @@ public async Task ProcessFormSubmissionAsync(ApplicationForm applicationFo intakeMap.SubmissionId = formSubmission.submission.id; intakeMap.SubmissionDate = formSubmission.submission.updatedAt; intakeMap.ConfirmationId = formSubmission.submission.confirmationId; - using var uow = _unitOfWorkManager.Begin(); + using var uow = _unitOfWorkManager.Begin(isTransactional: true);//transaction needed for sequence number generation (SequenceRepository) to ensure atomicity and consistency var application = await CreateNewApplicationAsync(intakeMap, applicationForm); await _intakeFormSubmissionMapper.SaveChefsFiles(formSubmission, application.Id); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Unity.GrantManager.Application.csproj b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Unity.GrantManager.Application.csproj index ecb9a894a0..ff57bfd948 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Unity.GrantManager.Application.csproj +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Unity.GrantManager.Application.csproj @@ -30,8 +30,10 @@ - + + + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/GrantManagerDomainErrorCodes.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/GrantManagerDomainErrorCodes.cs index b06c20bc53..25a6d4f8c8 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/GrantManagerDomainErrorCodes.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/GrantManagerDomainErrorCodes.cs @@ -12,6 +12,8 @@ public static class GrantManagerDomainErrorCodes /* ASSESSMENTS */ public const string AssessmentNotFound = "GrantManager:AssessmentNotFound"; + public const string CannotModifyAiAssessment = "GrantManager:CannotModifyAiAssessment"; + public const string CannotCloneNonAiAssessment = "GrantManager:CannotCloneNonAiAssessment"; public const string AssessmentUserAssignmentAlreadyExists = "GrantManager:AssessmentUserAssignmentAlreadyExists"; public const string CantCreateAssessmentForClosedApplication = "GrantManager:CantCreateAssessmentForClosedApplication"; public const string CantUpdateAssessmentForClosedApplication = "GrantManager:CantUpdateAssessmentForClosedApplication"; diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json index 667bc316f6..85143a12dd 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json @@ -100,6 +100,7 @@ "ReviewerList:InclusiveGrowth": "Inclusive Growth", "ReviewerList:CleanGrowth": "Clean Growth", "ReviewerList:Subtotal": "Subtotal", + "ReviewerList:CloneAssessment": "Clone Assessment", "AssessmentResultAttachments:Id": "#", "AssessmentResultAttachments:DocumentName": "Document Name", @@ -131,6 +132,8 @@ "Permission:GrantApplicationManagement.Applicants.Edit": "Edit Applicant", "Permission:GrantApplicationManagement.Applicants.ViewList": "View Applicant List", "Permission:GrantApplicationManagement.Applicants.AssignApplicant": "Assign Applicant to an Application", + "Permission:GrantApplicationManagement.Applicants.ApplicantInfo": "Applicant Info", + "Permission:GrantApplicationManagement.Applicants.ApplicantInfo.EditRedStop": "Edit Red-Stop", "Permission:GrantApplicationManagement.Assignments.Default": "Assignment", "Permission:GrantApplicationManagement.Assignments.AssignInitial": "Initial Assignment", "Permission:GrantApplicationManagement.Reviews.Default": "Reviews", @@ -154,6 +157,7 @@ "Permission:AI.Reporting": "AI Reporting", "Permission:AI.ApplicationAnalysis": "AI Application Analysis", "Permission:AI.AttachmentSummary": "AI Attachment Summary", + "Permission:AI.ScoringAssistant": "AI Scoring Assistant", "ApplicationForms": "Forms", "ApplicationForms:Description": "Description", @@ -247,6 +251,8 @@ "GrantManager:PayableFormRequiresHierarchy": "Please select a form hierarchy before saving a payable form.", "GrantManager:ChildFormRequiresParentForm": "Please select a parent form when the form hierarchy is set to Child.", "GrantManager:ChildFormCannotReferenceSelf": "A form cannot reference itself as the parent.", + "GrantManager:CannotModifyAiAssessment": "AI assessments are read-only.", + "GrantManager:CannotCloneNonAiAssessment": "Only AI assessments can be cloned.", "AssessmentResultsView:ApprovalTitle": "Approval", "AssessmentResultsView:AssessmentResultsTitle": "Application Assessment Results", diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantApplicationPermissions.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantApplicationPermissions.cs index b46f5c310c..171c99656a 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantApplicationPermissions.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantApplicationPermissions.cs @@ -34,10 +34,12 @@ public static class Applications public static class Applicants { - public const string Default = GroupName + ".Applicants"; - public const string ViewList = Default + ".ViewList"; - public const string Edit = Default + Operation.Update; - public const string AssignApplicant = Default + ".AssignApplicant"; + public const string Default = GroupName + ".Applicants"; + public const string ViewList = Default + ".ViewList"; + public const string Edit = Default + Operation.Update; + public const string AssignApplicant = Default + ".AssignApplicant"; + public const string ApplicantInfoDefault = Default + ".ApplicantInfo"; + public const string EditRedStop = ApplicantInfoDefault + ".EditRedStop"; } public static class AI @@ -58,6 +60,11 @@ public static class AttachmentSummary { public const string Default = GroupName + ".AttachmentSummary"; } + + public static class ScoringAssistant + { + public const string Default = GroupName + ".ScoringAssistant"; + } } public static class Assignments diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantManagerPermissions.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantManagerPermissions.cs index 991948f975..169659b1d9 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantManagerPermissions.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Permissions/GrantManagerPermissions.cs @@ -29,5 +29,17 @@ public static class Endpoints public const string Default = GroupName + ".Endpoints"; public const string ManageEndpoints = Default + ".ManageEndpoints"; } + + /// + /// Permission constants for the generic contacts service. + /// These are pre-wired for future HTTP endpoint exposure. + /// + public static class Contacts + { + public const string Default = GroupName + ".Contacts"; + public const string Create = Default + ".Create"; + public const string Read = Default + ".Read"; + public const string Update = Default + ".Update"; + } } #pragma warning restore S3218 // Inner class members should not shadow outer class "static" or type members \ No newline at end of file diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/Applicant.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/Applicant.cs index 4ded30e777..80d65ae852 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/Applicant.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/Applicant.cs @@ -32,5 +32,8 @@ public class Applicant : AuditedAggregateRoot, IMultiTenant public virtual Collection? ApplicantAddresses { get; set; } public decimal? MatchPercentage { get; set; } public string? NonRegOrgName { get; set; } - public bool? IsDuplicated { get; set; } + public bool? IsDuplicated { get; set; } + public string? FundingHistoryComments { get; set; } + public string? IssueTrackingComments { get; set; } + public string? AuditComments { get; set; } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ApplicationForm.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ApplicationForm.cs index b60d8264f8..a7324e8678 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ApplicationForm.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ApplicationForm.cs @@ -33,6 +33,7 @@ public class ApplicationForm : FullAuditedAggregateRoot, IMultiTenant public Guid? ParentFormId { get; set; } public bool RenderFormIoToHtml { get; set; } = false; public bool IsDirectApproval { get; set; } = false; + [MaxLength(100)] public string? Prefix { get; set; } public SuffixConfigType? SuffixType { get; set; } public static List<(SuffixConfigType SuffixType, string DisplayName)> GetAvailableSuffixTypes() diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/AuditHistory.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/AuditHistory.cs new file mode 100644 index 0000000000..84b26e59d5 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/AuditHistory.cs @@ -0,0 +1,14 @@ +using System; +using Volo.Abp.Domain.Entities.Auditing; +using Volo.Abp.MultiTenancy; + +namespace Unity.GrantManager.Applications; + +public class AuditHistory : AuditedAggregateRoot, IMultiTenant +{ + public Guid? ApplicantId { get; set; } + public string? AuditTrackingNumber { get; set; } + public DateTime? AuditDate { get; set; } + public string? AuditNote { get; set; } + public Guid? TenantId { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/FundingHistory.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/FundingHistory.cs new file mode 100644 index 0000000000..e583e5ad61 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/FundingHistory.cs @@ -0,0 +1,18 @@ +using System; +using Volo.Abp.Domain.Entities.Auditing; +using Volo.Abp.MultiTenancy; + +namespace Unity.GrantManager.Applications; + +public class FundingHistory : AuditedAggregateRoot, IMultiTenant +{ + public Guid? ApplicantId { get; set; } + public string? GrantCategory { get; set; } + public int? FundingYear { get; set; } + public bool? RenewedFunding { get; set; } + public decimal? ApprovedAmount { get; set; } + public decimal? ReconsiderationAmount { get; set; } + public decimal? TotalGrantAmount { get; set; } + public string? FundingNotes { get; set; } + public Guid? TenantId { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IAuditHistoryRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IAuditHistoryRepository.cs new file mode 100644 index 0000000000..373f4f613a --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IAuditHistoryRepository.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Volo.Abp.Domain.Repositories; + +namespace Unity.GrantManager.Applications; + +public interface IAuditHistoryRepository : IRepository +{ + Task> GetByApplicantIdAsync(Guid applicantId); +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IFundingHistoryRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IFundingHistoryRepository.cs new file mode 100644 index 0000000000..5be4218fc5 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IFundingHistoryRepository.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Volo.Abp.Domain.Repositories; + +namespace Unity.GrantManager.Applications; + +public interface IFundingHistoryRepository : IRepository +{ + Task> GetByApplicantIdAsync(Guid applicantId); +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IIssueTrackingRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IIssueTrackingRepository.cs new file mode 100644 index 0000000000..35dfde9085 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IIssueTrackingRepository.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Volo.Abp.Domain.Repositories; + +namespace Unity.GrantManager.Applications; + +public interface IIssueTrackingRepository : IRepository +{ + Task> GetByApplicantIdAsync(Guid applicantId); +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ISequenceRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ISequenceRepository.cs index 13bca3efb9..d03af8505e 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ISequenceRepository.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/ISequenceRepository.cs @@ -7,7 +7,9 @@ public interface ISequenceRepository : IRepository { /// /// Gets the next sequential number for a given prefix within the current tenant. - /// Uses tenant-specific PostgreSQL sequences to ensure uniqueness. + /// Uses a table-based atomic counter (unity_sequence_counters) that participates + /// in the ambient EF Core transaction, ensuring gapless IDs on rollback. + /// Must be called within an active transaction — throws InvalidOperationException otherwise. /// /// The prefix for the sequence (e.g., "CGG-") /// The next sequential number for this tenant+prefix combination diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IssueTracking.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IssueTracking.cs new file mode 100644 index 0000000000..2e16b8debd --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Applications/IssueTracking.cs @@ -0,0 +1,16 @@ +using System; +using Volo.Abp.Domain.Entities.Auditing; +using Volo.Abp.MultiTenancy; + +namespace Unity.GrantManager.Applications; + +public class IssueTracking : AuditedAggregateRoot, IMultiTenant +{ + public Guid? ApplicantId { get; set; } + public int? Year { get; set; } + public string? IssueHeading { get; set; } + public string? IssueDescription { get; set; } + public bool? Resolved { get; set; } + public string? ResolutionNote { get; set; } + public Guid? TenantId { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AIScoringConstants.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AIScoringConstants.cs new file mode 100644 index 0000000000..d74b69ae8a --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AIScoringConstants.cs @@ -0,0 +1,12 @@ +using System; + +namespace Unity.GrantManager.Assessments; + +public static class AIScoringConstants +{ + // Well-known fixed GUID for the AI Scoring Person record (one per tenant) + public static readonly Guid AiPersonId = new("00000000-0000-0000-0000-000000000001"); + public const string AiOidcSub = "ai-scoring"; + public const string AiDisplayName = "AI Scoring"; + public const string AiBadge = "AI"; +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/Assessment.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/Assessment.cs index e4c0edab9f..3f573a3e6b 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/Assessment.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/Assessment.cs @@ -27,11 +27,13 @@ public virtual Application Application public bool? ApprovalRecommended { get; set; } + public bool IsAiAssessment { get; set; } + public AssessmentState Status { get; private set; } - public int? FinancialAnalysis { get; set; } - public int? EconomicImpact { get; set; } - public int? InclusiveGrowth { get; set; } + public int? FinancialAnalysis { get; set; } + public int? EconomicImpact { get; set; } + public int? InclusiveGrowth { get; set; } public int? CleanGrowth { get; set; } @@ -86,4 +88,4 @@ private void OnReopened() EndDate = null; } } - + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentManager.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentManager.cs index 7aedd767fa..977b656151 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentManager.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentManager.cs @@ -62,7 +62,7 @@ public async Task CreateAsync( var form = await _applicationFormRepository.GetAsync(application.ApplicationFormId); var otherAssessments = await _assessmentRepository.GetListByApplicationId(application.Id); - bool hasOtherAssessments = otherAssessments != null && otherAssessments.Count != 0; + bool hasOtherAssessments = otherAssessments != null && otherAssessments.Any(a => !a.IsAiAssessment); var assessment = await _assessmentRepository.InsertAsync( new Assessment( @@ -91,6 +91,50 @@ await _localEventBus.PublishAsync(new CreateScoresheetInstanceEto() return assessment; } + /// + /// Creates and inserts a read-only AI Scoring for an application. + /// No user is required — the well-known AI Scoring Person is used as the assessor. + /// Does not affect application state. Idempotent: returns the existing record if one already exists. + /// + /// The application being assessed. + /// A new or existing AI for the . + public async Task CreateAiAssessmentAsync(Application application) + { + // Idempotency: only one AI assessment per application + var existing = await _assessmentRepository.FirstOrDefaultAsync( + x => x.ApplicationId == application.Id && x.IsAiAssessment); + if (existing != null) + { + return existing; + } + + var form = await _applicationFormRepository.GetAsync(application.ApplicationFormId); + + var newAssessment = new Assessment( + GuidGenerator.Create(), + application.Id, + AIScoringConstants.AiPersonId, + AssessmentState.COMPLETED) + { + IsAiAssessment = true + }; + + var assessment = await _assessmentRepository.InsertAsync(newAssessment, autoSave: true); + + if (form.ScoresheetId != null && await _featureChecker.IsEnabledAsync("Unity.Flex")) + { + await _localEventBus.PublishAsync(new CreateScoresheetInstanceEto() + { + ScoresheetId = form.ScoresheetId ?? Guid.Empty, + CorrelationId = assessment.Id, + CorrelationProvider = "Assessment", + RelatedCorrelationId = null + }); + } + + return assessment; + } + /// /// Checks if a user has already been assigned an for an . /// diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentWithAssessorQueryResultItem.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentWithAssessorQueryResultItem.cs index 28640316b0..99a8cdbd8e 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentWithAssessorQueryResultItem.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Assessments/AssessmentWithAssessorQueryResultItem.cs @@ -16,9 +16,10 @@ public class AssessmentWithAssessorQueryResultItem public AssessmentState Status { get; set; } public bool IsComplete { get; set; } public bool? ApprovalRecommended { get; set; } - public int? FinancialAnalysis { get; set; } - public int? EconomicImpact { get; set; } - public int? InclusiveGrowth { get; set; } + public bool IsAiAssessment { get; set; } + public int? FinancialAnalysis { get; set; } + public int? EconomicImpact { get; set; } + public int? InclusiveGrowth { get; set; } public int? CleanGrowth { get; set; } } - + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/GrantManagerDataSeederContributor.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/GrantManagerDataSeederContributor.cs index a3ee4b5a92..6291c358cb 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/GrantManagerDataSeederContributor.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/GrantManagerDataSeederContributor.cs @@ -1,7 +1,9 @@ using System.Collections.Generic; using System.Threading.Tasks; using Unity.GrantManager.Applications; +using Unity.GrantManager.Assessments; using Unity.GrantManager.GrantApplications; +using Unity.GrantManager.Identity; using Volo.Abp.Data; using Volo.Abp.DependencyInjection; using Volo.Abp.Domain.Repositories; @@ -9,7 +11,8 @@ namespace Unity.GrantManager; public class GrantManagerDataSeederContributor( - IApplicationStatusRepository applicationStatusRepository) : IDataSeedContributor, ITransientDependency + IApplicationStatusRepository applicationStatusRepository, + IPersonRepository personRepository) : IDataSeedContributor, ITransientDependency { public static class GrantApplicationStates { @@ -37,6 +40,7 @@ public async Task SeedAsync(DataSeedContext context) } await SeedApplicationStatusAsync(); + await SeedAiScoringPersonAsync(context.TenantId); } @@ -67,4 +71,21 @@ private async Task SeedApplicationStatusAsync() } } } + + private async Task SeedAiScoringPersonAsync(System.Guid? tenantId) + { + var existing = await personRepository.FirstOrDefaultAsync(p => p.Id == AIScoringConstants.AiPersonId); + if (existing == null) + { + await personRepository.InsertAsync(new Person + { + Id = AIScoringConstants.AiPersonId, + OidcSub = AIScoringConstants.AiOidcSub, + OidcDisplayName = AIScoringConstants.AiDisplayName, + FullName = AIScoringConstants.AiDisplayName, + Badge = AIScoringConstants.AiBadge, + TenantId = tenantId + }); + } + } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/EntityFrameworkCore/GrantTenantDbContext.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/EntityFrameworkCore/GrantTenantDbContext.cs index 3e042440fd..ee2bdd7ed2 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/EntityFrameworkCore/GrantTenantDbContext.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/EntityFrameworkCore/GrantTenantDbContext.cs @@ -46,6 +46,9 @@ public class GrantTenantDbContext : AbpDbContext public DbSet Tags { get; set; } public DbSet Contacts { get; set; } public DbSet ContactLinks { get; set; } + public DbSet FundingHistories { get; set; } + public DbSet IssueTrackings { get; set; } + public DbSet AuditHistories { get; set; } #endregion public GrantTenantDbContext(DbContextOptions options) : base(options) @@ -337,13 +340,34 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) b.HasOne().WithMany().HasForeignKey(x => x.ContactId).IsRequired(); - b.Property(x => x.RelatedEntityType).IsRequired().HasMaxLength(100); + b.Property(x => x.RelatedEntityType).IsRequired().HasMaxLength(100); b.Property(x => x.Role).HasMaxLength(100); b.HasIndex(x => new { x.ContactId, x.RelatedEntityType, x.RelatedEntityId }); b.HasIndex(x => new { x.RelatedEntityType, x.RelatedEntityId }); }); + modelBuilder.Entity(b => + { + b.ToTable(GrantManagerConsts.TenantTablePrefix + "FundingHistories", GrantManagerConsts.DbSchema); + b.ConfigureByConvention(); + b.HasOne().WithMany().HasForeignKey(x => x.ApplicantId).IsRequired(false); + }); + + modelBuilder.Entity(b => + { + b.ToTable(GrantManagerConsts.TenantTablePrefix + "IssueTrackings", GrantManagerConsts.DbSchema); + b.ConfigureByConvention(); + b.HasOne().WithMany().HasForeignKey(x => x.ApplicantId).IsRequired(false); + }); + + modelBuilder.Entity(b => + { + b.ToTable(GrantManagerConsts.TenantTablePrefix + "AuditHistories", GrantManagerConsts.DbSchema); + b.ConfigureByConvention(); + b.HasOne().WithMany().HasForeignKey(x => x.ApplicantId).IsRequired(false); + }); + var allEntityTypes = modelBuilder.Model.GetEntityTypes(); foreach (var type in allEntityTypes.Where(t => t.ClrType != typeof(ExtraPropertyDictionary)).Select(t => t.ClrType)) { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/HostMigrations/20260304172547_CommunitiesCustomScript.Designer.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/HostMigrations/20260304172547_CommunitiesCustomScript.Designer.cs new file mode 100644 index 0000000000..23445b6ad8 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/HostMigrations/20260304172547_CommunitiesCustomScript.Designer.cs @@ -0,0 +1,2616 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +#nullable disable + +namespace Unity.GrantManager.Migrations.HostMigrations +{ + [DbContext(typeof(GrantManagerDbContext))] + [Migration("20260304172547_CommunitiesCustomScript")] + partial class CommunitiesCustomScript + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.PostgreSql) + .HasAnnotation("ProductVersion", "9.0.5") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzBlobTrigger", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("TriggerName") + .HasColumnType("text") + .HasColumnName("trigger_name"); + + b.Property("TriggerGroup") + .HasColumnType("text") + .HasColumnName("trigger_group"); + + b.Property("BlobData") + .HasColumnType("bytea") + .HasColumnName("blob_data"); + + b.HasKey("SchedulerName", "TriggerName", "TriggerGroup"); + + b.ToTable("qrtz_blob_triggers", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzCalendar", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("CalendarName") + .HasColumnType("text") + .HasColumnName("calendar_name"); + + b.Property("Calendar") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("calendar"); + + b.HasKey("SchedulerName", "CalendarName"); + + b.ToTable("qrtz_calendars", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzCronTrigger", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("TriggerName") + .HasColumnType("text") + .HasColumnName("trigger_name"); + + b.Property("TriggerGroup") + .HasColumnType("text") + .HasColumnName("trigger_group"); + + b.Property("CronExpression") + .IsRequired() + .HasColumnType("text") + .HasColumnName("cron_expression"); + + b.Property("TimeZoneId") + .HasColumnType("text") + .HasColumnName("time_zone_id"); + + b.HasKey("SchedulerName", "TriggerName", "TriggerGroup"); + + b.ToTable("qrtz_cron_triggers", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzFiredTrigger", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("EntryId") + .HasColumnType("text") + .HasColumnName("entry_id"); + + b.Property("FiredTime") + .HasColumnType("bigint") + .HasColumnName("fired_time"); + + b.Property("InstanceName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("instance_name"); + + b.Property("IsNonConcurrent") + .HasColumnType("bool") + .HasColumnName("is_nonconcurrent"); + + b.Property("JobGroup") + .HasColumnType("text") + .HasColumnName("job_group"); + + b.Property("JobName") + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("RequestsRecovery") + .HasColumnType("bool") + .HasColumnName("requests_recovery"); + + b.Property("ScheduledTime") + .HasColumnType("bigint") + .HasColumnName("sched_time"); + + b.Property("State") + .IsRequired() + .HasColumnType("text") + .HasColumnName("state"); + + b.Property("TriggerGroup") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trigger_group"); + + b.Property("TriggerName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trigger_name"); + + b.HasKey("SchedulerName", "EntryId"); + + b.HasIndex("InstanceName") + .HasDatabaseName("idx_qrtz_ft_trig_inst_name"); + + b.HasIndex("JobGroup") + .HasDatabaseName("idx_qrtz_ft_job_group"); + + b.HasIndex("JobName") + .HasDatabaseName("idx_qrtz_ft_job_name"); + + b.HasIndex("RequestsRecovery") + .HasDatabaseName("idx_qrtz_ft_job_req_recovery"); + + b.HasIndex("TriggerGroup") + .HasDatabaseName("idx_qrtz_ft_trig_group"); + + b.HasIndex("TriggerName") + .HasDatabaseName("idx_qrtz_ft_trig_name"); + + b.HasIndex("SchedulerName", "TriggerName", "TriggerGroup") + .HasDatabaseName("idx_qrtz_ft_trig_nm_gp"); + + b.ToTable("qrtz_fired_triggers", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzJobDetail", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("JobName") + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("JobGroup") + .HasColumnType("text") + .HasColumnName("job_group"); + + b.Property("Description") + .HasColumnType("text") + .HasColumnName("description"); + + b.Property("IsDurable") + .HasColumnType("bool") + .HasColumnName("is_durable"); + + b.Property("IsNonConcurrent") + .HasColumnType("bool") + .HasColumnName("is_nonconcurrent"); + + b.Property("IsUpdateData") + .HasColumnType("bool") + .HasColumnName("is_update_data"); + + b.Property("JobClassName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_class_name"); + + b.Property("JobData") + .HasColumnType("bytea") + .HasColumnName("job_data"); + + b.Property("RequestsRecovery") + .HasColumnType("bool") + .HasColumnName("requests_recovery"); + + b.HasKey("SchedulerName", "JobName", "JobGroup"); + + b.HasIndex("RequestsRecovery") + .HasDatabaseName("idx_qrtz_j_req_recovery"); + + b.ToTable("qrtz_job_details", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzLock", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("LockName") + .HasColumnType("text") + .HasColumnName("lock_name"); + + b.HasKey("SchedulerName", "LockName"); + + b.ToTable("qrtz_locks", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzPausedTriggerGroup", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("TriggerGroup") + .HasColumnType("text") + .HasColumnName("trigger_group"); + + b.HasKey("SchedulerName", "TriggerGroup"); + + b.ToTable("qrtz_paused_trigger_grps", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzSchedulerState", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("InstanceName") + .HasColumnType("text") + .HasColumnName("instance_name"); + + b.Property("CheckInInterval") + .HasColumnType("bigint") + .HasColumnName("checkin_interval"); + + b.Property("LastCheckInTime") + .HasColumnType("bigint") + .HasColumnName("last_checkin_time"); + + b.HasKey("SchedulerName", "InstanceName"); + + b.ToTable("qrtz_scheduler_state", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzSimplePropertyTrigger", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("TriggerName") + .HasColumnType("text") + .HasColumnName("trigger_name"); + + b.Property("TriggerGroup") + .HasColumnType("text") + .HasColumnName("trigger_group"); + + b.Property("BooleanProperty1") + .HasColumnType("bool") + .HasColumnName("bool_prop_1"); + + b.Property("BooleanProperty2") + .HasColumnType("bool") + .HasColumnName("bool_prop_2"); + + b.Property("DecimalProperty1") + .HasColumnType("numeric") + .HasColumnName("dec_prop_1"); + + b.Property("DecimalProperty2") + .HasColumnType("numeric") + .HasColumnName("dec_prop_2"); + + b.Property("IntegerProperty1") + .HasColumnType("integer") + .HasColumnName("int_prop_1"); + + b.Property("IntegerProperty2") + .HasColumnType("integer") + .HasColumnName("int_prop_2"); + + b.Property("LongProperty1") + .HasColumnType("bigint") + .HasColumnName("long_prop_1"); + + b.Property("LongProperty2") + .HasColumnType("bigint") + .HasColumnName("long_prop_2"); + + b.Property("StringProperty1") + .HasColumnType("text") + .HasColumnName("str_prop_1"); + + b.Property("StringProperty2") + .HasColumnType("text") + .HasColumnName("str_prop_2"); + + b.Property("StringProperty3") + .HasColumnType("text") + .HasColumnName("str_prop_3"); + + b.Property("TimeZoneId") + .HasColumnType("text") + .HasColumnName("time_zone_id"); + + b.HasKey("SchedulerName", "TriggerName", "TriggerGroup"); + + b.ToTable("qrtz_simprop_triggers", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzSimpleTrigger", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("TriggerName") + .HasColumnType("text") + .HasColumnName("trigger_name"); + + b.Property("TriggerGroup") + .HasColumnType("text") + .HasColumnName("trigger_group"); + + b.Property("RepeatCount") + .HasColumnType("bigint") + .HasColumnName("repeat_count"); + + b.Property("RepeatInterval") + .HasColumnType("bigint") + .HasColumnName("repeat_interval"); + + b.Property("TimesTriggered") + .HasColumnType("bigint") + .HasColumnName("times_triggered"); + + b.HasKey("SchedulerName", "TriggerName", "TriggerGroup"); + + b.ToTable("qrtz_simple_triggers", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzTrigger", b => + { + b.Property("SchedulerName") + .HasColumnType("text") + .HasColumnName("sched_name"); + + b.Property("TriggerName") + .HasColumnType("text") + .HasColumnName("trigger_name"); + + b.Property("TriggerGroup") + .HasColumnType("text") + .HasColumnName("trigger_group"); + + b.Property("CalendarName") + .HasColumnType("text") + .HasColumnName("calendar_name"); + + b.Property("Description") + .HasColumnType("text") + .HasColumnName("description"); + + b.Property("EndTime") + .HasColumnType("bigint") + .HasColumnName("end_time"); + + b.Property("JobData") + .HasColumnType("bytea") + .HasColumnName("job_data"); + + b.Property("JobGroup") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_group"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("MisfireInstruction") + .HasColumnType("smallint") + .HasColumnName("misfire_instr"); + + b.Property("NextFireTime") + .HasColumnType("bigint") + .HasColumnName("next_fire_time"); + + b.Property("PreviousFireTime") + .HasColumnType("bigint") + .HasColumnName("prev_fire_time"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("StartTime") + .HasColumnType("bigint") + .HasColumnName("start_time"); + + b.Property("TriggerState") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trigger_state"); + + b.Property("TriggerType") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trigger_type"); + + b.HasKey("SchedulerName", "TriggerName", "TriggerGroup"); + + b.HasIndex("NextFireTime") + .HasDatabaseName("idx_qrtz_t_next_fire_time"); + + b.HasIndex("TriggerState") + .HasDatabaseName("idx_qrtz_t_state"); + + b.HasIndex("NextFireTime", "TriggerState") + .HasDatabaseName("idx_qrtz_t_nft_st"); + + b.HasIndex("SchedulerName", "JobName", "JobGroup"); + + b.ToTable("qrtz_triggers", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applicants.ApplicantTenantMap", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastUpdated") + .HasColumnType("timestamp without time zone"); + + b.Property("OidcSubUsername") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid"); + + b.Property("TenantName") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("OidcSubUsername"); + + b.HasIndex("OidcSubUsername", "TenantId") + .IsUnique(); + + b.ToTable("ApplicantTenantMaps", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Integrations.DynamicUrl", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyName") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Url") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("DynamicUrls", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.Community", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("RegionalDistrictCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("Communities", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.EconomicRegion", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("EconomicRegionCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("EconomicRegionName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.HasKey("Id"); + + b.ToTable("EconomicRegions", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.ElectoralDistrict", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ElectoralDistrictCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("ElectoralDistrictName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.HasKey("Id"); + + b.ToTable("ElectoralDistricts", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.RegionalDistrict", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("EconomicRegionCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("RegionalDistrictCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("RegionalDistrictName") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("RegionalDistricts", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.Sector", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SectorCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("SectorName") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("Sectors", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.SubSector", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SectorId") + .HasColumnType("uuid"); + + b.Property("SubSectorCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("SubSectorName") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("SectorId"); + + b.ToTable("SubSectors", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Tokens.TenantToken", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("TenantTokens", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ApplicationName") + .HasMaxLength(96) + .HasColumnType("character varying(96)") + .HasColumnName("ApplicationName"); + + b.Property("BrowserInfo") + .HasMaxLength(512) + .HasColumnType("character varying(512)") + .HasColumnName("BrowserInfo"); + + b.Property("ClientId") + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("ClientId"); + + b.Property("ClientIpAddress") + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("ClientIpAddress"); + + b.Property("ClientName") + .HasMaxLength(128) + .HasColumnType("character varying(128)") + .HasColumnName("ClientName"); + + b.Property("Comments") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("Comments"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("CorrelationId"); + + b.Property("Exceptions") + .HasColumnType("text"); + + b.Property("ExecutionDuration") + .HasColumnType("integer") + .HasColumnName("ExecutionDuration"); + + b.Property("ExecutionTime") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("HttpMethod") + .HasMaxLength(16) + .HasColumnType("character varying(16)") + .HasColumnName("HttpMethod"); + + b.Property("HttpStatusCode") + .HasColumnType("integer") + .HasColumnName("HttpStatusCode"); + + b.Property("ImpersonatorTenantId") + .HasColumnType("uuid") + .HasColumnName("ImpersonatorTenantId"); + + b.Property("ImpersonatorTenantName") + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("ImpersonatorTenantName"); + + b.Property("ImpersonatorUserId") + .HasColumnType("uuid") + .HasColumnName("ImpersonatorUserId"); + + b.Property("ImpersonatorUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("ImpersonatorUserName"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TenantName") + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("TenantName"); + + b.Property("Url") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("Url"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("UserId"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("UserName"); + + b.HasKey("Id"); + + b.HasIndex("TenantId", "ExecutionTime"); + + b.HasIndex("TenantId", "UserId", "ExecutionTime"); + + b.ToTable("AuditLogs", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLogAction", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AuditLogId") + .HasColumnType("uuid") + .HasColumnName("AuditLogId"); + + b.Property("ExecutionDuration") + .HasColumnType("integer") + .HasColumnName("ExecutionDuration"); + + b.Property("ExecutionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("ExecutionTime"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("MethodName") + .HasMaxLength(128) + .HasColumnType("character varying(128)") + .HasColumnName("MethodName"); + + b.Property("Parameters") + .HasMaxLength(2000) + .HasColumnType("character varying(2000)") + .HasColumnName("Parameters"); + + b.Property("ServiceName") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("ServiceName"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AuditLogId"); + + b.HasIndex("TenantId", "ServiceName", "MethodName", "ExecutionTime"); + + b.ToTable("AuditLogActions", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.EntityChange", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AuditLogId") + .HasColumnType("uuid") + .HasColumnName("AuditLogId"); + + b.Property("ChangeTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("ChangeTime"); + + b.Property("ChangeType") + .HasColumnType("smallint") + .HasColumnName("ChangeType"); + + b.Property("EntityId") + .HasMaxLength(128) + .HasColumnType("character varying(128)") + .HasColumnName("EntityId"); + + b.Property("EntityTenantId") + .HasColumnType("uuid"); + + b.Property("EntityTypeFullName") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)") + .HasColumnName("EntityTypeFullName"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AuditLogId"); + + b.HasIndex("TenantId", "EntityTypeFullName", "EntityId"); + + b.ToTable("EntityChanges", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.EntityPropertyChange", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("EntityChangeId") + .HasColumnType("uuid"); + + b.Property("NewValue") + .HasMaxLength(512) + .HasColumnType("character varying(512)") + .HasColumnName("NewValue"); + + b.Property("OriginalValue") + .HasMaxLength(512) + .HasColumnType("character varying(512)") + .HasColumnName("OriginalValue"); + + b.Property("PropertyName") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)") + .HasColumnName("PropertyName"); + + b.Property("PropertyTypeFullName") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("PropertyTypeFullName"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("EntityChangeId"); + + b.ToTable("EntityPropertyChanges", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.BackgroundJobs.BackgroundJobRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsAbandoned") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false); + + b.Property("JobArgs") + .IsRequired() + .HasMaxLength(1048576) + .HasColumnType("character varying(1048576)"); + + b.Property("JobName") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("LastTryTime") + .HasColumnType("timestamp without time zone"); + + b.Property("NextTryTime") + .HasColumnType("timestamp without time zone"); + + b.Property("Priority") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((byte)15); + + b.Property("TryCount") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((short)0); + + b.HasKey("Id"); + + b.HasIndex("IsAbandoned", "NextTryTime"); + + b.ToTable("BackgroundJobs", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.FeatureManagement.FeatureDefinitionRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AllowedProviders") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("DefaultValue") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("Description") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("DisplayName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupName") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("IsAvailableToHost") + .HasColumnType("boolean"); + + b.Property("IsVisibleToClients") + .HasColumnType("boolean"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("ParentName") + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("ValueType") + .HasMaxLength(2048) + .HasColumnType("character varying(2048)"); + + b.HasKey("Id"); + + b.HasIndex("GroupName"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("Features", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.FeatureManagement.FeatureGroupDefinitionRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("DisplayName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.HasKey("Id"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("FeatureGroups", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.FeatureManagement.FeatureValue", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("ProviderKey") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("ProviderName") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("Value") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey") + .IsUnique(); + + b.ToTable("FeatureValues", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityClaimType", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("Description") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsStatic") + .HasColumnType("boolean"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("Regex") + .HasMaxLength(512) + .HasColumnType("character varying(512)"); + + b.Property("RegexDescription") + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("Required") + .HasColumnType("boolean"); + + b.Property("ValueType") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.ToTable("ClaimTypes", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityLinkUser", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("SourceTenantId") + .HasColumnType("uuid"); + + b.Property("SourceUserId") + .HasColumnType("uuid"); + + b.Property("TargetTenantId") + .HasColumnType("uuid"); + + b.Property("TargetUserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("SourceUserId", "SourceTenantId", "TargetUserId", "TargetTenantId") + .IsUnique(); + + b.ToTable("LinkUsers", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("EntityVersion") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDefault") + .HasColumnType("boolean") + .HasColumnName("IsDefault"); + + b.Property("IsPublic") + .HasColumnType("boolean") + .HasColumnName("IsPublic"); + + b.Property("IsStatic") + .HasColumnType("boolean") + .HasColumnName("IsStatic"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("Roles", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ClaimValue") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("RoleId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("RoleClaims", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentitySecurityLog", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Action") + .HasMaxLength(96) + .HasColumnType("character varying(96)"); + + b.Property("ApplicationName") + .HasMaxLength(96) + .HasColumnType("character varying(96)"); + + b.Property("BrowserInfo") + .HasMaxLength(512) + .HasColumnType("character varying(512)"); + + b.Property("ClientId") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("ClientIpAddress") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("Identity") + .HasMaxLength(96) + .HasColumnType("character varying(96)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TenantName") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("TenantId", "Action"); + + b.HasIndex("TenantId", "ApplicationName"); + + b.HasIndex("TenantId", "Identity"); + + b.HasIndex("TenantId", "UserId"); + + b.ToTable("SecurityLogs", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentitySession", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ClientId") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("Device") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("DeviceInfo") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IpAddresses") + .HasMaxLength(2048) + .HasColumnType("character varying(2048)"); + + b.Property("LastAccessed") + .HasColumnType("timestamp without time zone"); + + b.Property("SessionId") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("SignedIn") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("Device"); + + b.HasIndex("SessionId"); + + b.HasIndex("TenantId", "UserId"); + + b.ToTable("Sessions", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("AccessFailedCount"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("DisplayName") + .HasColumnType("text"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("Email"); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("EmailConfirmed"); + + b.Property("EntityVersion") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsActive") + .HasColumnType("boolean") + .HasColumnName("IsActive"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsExternal") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsExternal"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastPasswordChangeTime") + .HasColumnType("timestamp with time zone"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("LockoutEnabled"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("Name") + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("Name"); + + b.Property("NormalizedEmail") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("NormalizedEmail"); + + b.Property("NormalizedUserName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("NormalizedUserName"); + + b.Property("OidcSub") + .HasColumnType("text"); + + b.Property("PasswordHash") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("PasswordHash"); + + b.Property("PhoneNumber") + .HasMaxLength(16) + .HasColumnType("character varying(16)") + .HasColumnName("PhoneNumber"); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("PhoneNumberConfirmed"); + + b.Property("SecurityStamp") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("SecurityStamp"); + + b.Property("ShouldChangePasswordOnNextLogin") + .HasColumnType("boolean"); + + b.Property("Surname") + .HasMaxLength(64) + .HasColumnType("character varying(64)") + .HasColumnName("Surname"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("TwoFactorEnabled"); + + b.Property("UserName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("UserName"); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("Users", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ClaimValue") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("UserClaims", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserDelegation", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("EndTime") + .HasColumnType("timestamp without time zone"); + + b.Property("SourceUserId") + .HasColumnType("uuid"); + + b.Property("StartTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TargetUserId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("UserDelegations", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId") + .HasColumnType("uuid"); + + b.Property("LoginProvider") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("ProviderDisplayName") + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196) + .HasColumnType("character varying(196)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("UserLogins", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserOrganizationUnit", b => + { + b.Property("OrganizationUnitId") + .HasColumnType("uuid"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("OrganizationUnitId", "UserId"); + + b.HasIndex("UserId", "OrganizationUnitId"); + + b.ToTable("UserOrganizationUnits", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("uuid"); + + b.Property("RoleId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("UserRoles", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("uuid"); + + b.Property("LoginProvider") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("Name") + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("UserTokens", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnit", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Code") + .IsRequired() + .HasMaxLength(95) + .HasColumnType("character varying(95)") + .HasColumnName("Code"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("DisplayName") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)") + .HasColumnName("DisplayName"); + + b.Property("EntityVersion") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ParentId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Code"); + + b.HasIndex("ParentId"); + + b.ToTable("OrganizationUnits", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnitRole", b => + { + b.Property("OrganizationUnitId") + .HasColumnType("uuid"); + + b.Property("RoleId") + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("OrganizationUnitId", "RoleId"); + + b.HasIndex("RoleId", "OrganizationUnitId"); + + b.ToTable("OrganizationUnitRoles", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionDefinitionRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("DisplayName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupName") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("IsEnabled") + .HasColumnType("boolean"); + + b.Property("MultiTenancySide") + .HasColumnType("smallint"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("ParentName") + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("Providers") + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("StateCheckers") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("GroupName"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("Permissions", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("TenantId", "Name", "ProviderName", "ProviderKey") + .IsUnique(); + + b.ToTable("PermissionGrants", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGroupDefinitionRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("DisplayName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.HasKey("Id"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("PermissionGroups", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("ProviderKey") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("ProviderName") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048) + .HasColumnType("character varying(2048)"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey") + .IsUnique(); + + b.ToTable("Settings", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.SettingDefinitionRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("DefaultValue") + .HasMaxLength(2048) + .HasColumnType("character varying(2048)"); + + b.Property("Description") + .HasMaxLength(512) + .HasColumnType("character varying(512)"); + + b.Property("DisplayName") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("ExtraProperties") + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsEncrypted") + .HasColumnType("boolean"); + + b.Property("IsInherited") + .HasColumnType("boolean"); + + b.Property("IsVisibleToClients") + .HasColumnType("boolean"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("character varying(128)"); + + b.Property("Providers") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.HasKey("Id"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("SettingDefinitions", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EntityVersion") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.HasKey("Id"); + + b.HasIndex("Name"); + + b.HasIndex("NormalizedName"); + + b.ToTable("Tenants", (string)null); + }); + + modelBuilder.Entity("Volo.Abp.TenantManagement.TenantConnectionString", b => + { + b.Property("TenantId") + .HasColumnType("uuid"); + + b.Property("Name") + .HasMaxLength(64) + .HasColumnType("character varying(64)"); + + b.Property("Value") + .IsRequired() + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.HasKey("TenantId", "Name"); + + b.ToTable("TenantConnectionStrings", (string)null); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzBlobTrigger", b => + { + b.HasOne("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzTrigger", "Trigger") + .WithMany("BlobTriggers") + .HasForeignKey("SchedulerName", "TriggerName", "TriggerGroup") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzCronTrigger", b => + { + b.HasOne("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzTrigger", "Trigger") + .WithMany("CronTriggers") + .HasForeignKey("SchedulerName", "TriggerName", "TriggerGroup") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzSimplePropertyTrigger", b => + { + b.HasOne("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzTrigger", "Trigger") + .WithMany("SimplePropertyTriggers") + .HasForeignKey("SchedulerName", "TriggerName", "TriggerGroup") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzSimpleTrigger", b => + { + b.HasOne("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzTrigger", "Trigger") + .WithMany("SimpleTriggers") + .HasForeignKey("SchedulerName", "TriggerName", "TriggerGroup") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzTrigger", b => + { + b.HasOne("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzJobDetail", "JobDetail") + .WithMany("Triggers") + .HasForeignKey("SchedulerName", "JobName", "JobGroup") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("JobDetail"); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.SubSector", b => + { + b.HasOne("Unity.GrantManager.Locality.Sector", "Sector") + .WithMany("SubSectors") + .HasForeignKey("SectorId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Sector"); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLogAction", b => + { + b.HasOne("Volo.Abp.AuditLogging.AuditLog", null) + .WithMany("Actions") + .HasForeignKey("AuditLogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.EntityChange", b => + { + b.HasOne("Volo.Abp.AuditLogging.AuditLog", null) + .WithMany("EntityChanges") + .HasForeignKey("AuditLogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.EntityPropertyChange", b => + { + b.HasOne("Volo.Abp.AuditLogging.EntityChange", null) + .WithMany("PropertyChanges") + .HasForeignKey("EntityChangeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole", null) + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser", null) + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser", null) + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserOrganizationUnit", b => + { + b.HasOne("Volo.Abp.Identity.OrganizationUnit", null) + .WithMany() + .HasForeignKey("OrganizationUnitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Volo.Abp.Identity.IdentityUser", null) + .WithMany("OrganizationUnits") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Volo.Abp.Identity.IdentityUser", null) + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser", null) + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnit", b => + { + b.HasOne("Volo.Abp.Identity.OrganizationUnit", null) + .WithMany() + .HasForeignKey("ParentId"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnitRole", b => + { + b.HasOne("Volo.Abp.Identity.OrganizationUnit", null) + .WithMany("Roles") + .HasForeignKey("OrganizationUnitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Volo.Abp.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Volo.Abp.TenantManagement.TenantConnectionString", b => + { + b.HasOne("Volo.Abp.TenantManagement.Tenant", null) + .WithMany("ConnectionStrings") + .HasForeignKey("TenantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzJobDetail", b => + { + b.Navigation("Triggers"); + }); + + modelBuilder.Entity("AppAny.Quartz.EntityFrameworkCore.Migrations.QuartzTrigger", b => + { + b.Navigation("BlobTriggers"); + + b.Navigation("CronTriggers"); + + b.Navigation("SimplePropertyTriggers"); + + b.Navigation("SimpleTriggers"); + }); + + modelBuilder.Entity("Unity.GrantManager.Locality.Sector", b => + { + b.Navigation("SubSectors"); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLog", b => + { + b.Navigation("Actions"); + + b.Navigation("EntityChanges"); + }); + + modelBuilder.Entity("Volo.Abp.AuditLogging.EntityChange", b => + { + b.Navigation("PropertyChanges"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Navigation("Claims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Navigation("Claims"); + + b.Navigation("Logins"); + + b.Navigation("OrganizationUnits"); + + b.Navigation("Roles"); + + b.Navigation("Tokens"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnit", b => + { + b.Navigation("Roles"); + }); + + modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b => + { + b.Navigation("ConnectionStrings"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/HostMigrations/20260304172547_CommunitiesCustomScript.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/HostMigrations/20260304172547_CommunitiesCustomScript.cs new file mode 100644 index 0000000000..cd0e06b711 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/HostMigrations/20260304172547_CommunitiesCustomScript.cs @@ -0,0 +1,32 @@ +using System; +using System.IO; +using System.Reflection; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Unity.GrantManager.Migrations.HostMigrations +{ + /// + public partial class CommunitiesCustomScript : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + var assembly = Assembly.GetExecutingAssembly(); + var resourceName = "Unity.GrantManager.Scripts.unitydb-communities-script.sql"; + + using Stream stream = assembly.GetManifestResourceStream(resourceName) + ?? throw new InvalidOperationException($"Could not find embedded resource: {resourceName}"); + using StreamReader reader = new StreamReader(stream); + string sql = reader.ReadToEnd(); + migrationBuilder.Sql(sql); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226020846_Add_UnitySequenceCounters_Table.Designer.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226020846_Add_UnitySequenceCounters_Table.Designer.cs new file mode 100644 index 0000000000..9bbc4bfc9b --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226020846_Add_UnitySequenceCounters_Table.Designer.cs @@ -0,0 +1,4571 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + [DbContext(typeof(GrantTenantDbContext))] + [Migration("20260226020246_Add_UnitySequenceCounters_Table")] + partial class Add_UnitySequenceCounters_Table + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.PostgreSql) + .HasAnnotation("ProductVersion", "9.0.5") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Value") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("QuestionId") + .HasColumnType("uuid"); + + b.Property("ScoresheetInstanceId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("QuestionId"); + + b.HasIndex("ScoresheetInstanceId"); + + b.ToTable("Answers", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("Questions", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Scoresheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("CustomFieldId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetInstanceId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetInstanceId"); + + b.ToTable("CustomFieldValues", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetCorrelationId") + .HasColumnType("uuid"); + + b.Property("WorksheetCorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("WorksheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetLinks", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Key") + .IsRequired() + .HasColumnType("text"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("CustomFields", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Worksheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantName") + .IsRequired() + .HasMaxLength(600) + .HasColumnType("character varying(600)"); + + b.Property("ApproxNumberOfEmployees") + .HasColumnType("text"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FiscalDay") + .HasColumnType("integer"); + + b.Property("FiscalMonth") + .HasColumnType("text"); + + b.Property("IndigenousOrgInd") + .HasColumnType("text"); + + b.Property("IsDuplicated") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MatchPercentage") + .HasColumnType("numeric"); + + b.Property("NonRegOrgName") + .HasColumnType("text"); + + b.Property("NonRegisteredBusinessName") + .HasColumnType("text"); + + b.Property("OrgName") + .HasColumnType("text"); + + b.Property("OrgNumber") + .HasColumnType("text"); + + b.Property("OrgStatus") + .HasColumnType("text"); + + b.Property("OrganizationSize") + .HasColumnType("text"); + + b.Property("OrganizationType") + .HasColumnType("text"); + + b.Property("RedStop") + .HasColumnType("boolean"); + + b.Property("Sector") + .HasColumnType("text"); + + b.Property("SectorSubSectorIndustryDesc") + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("StartedOperatingDate") + .HasColumnType("date"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SubSector") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UnityApplicantId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantName"); + + b.ToTable("Applicants", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AddressType") + .HasColumnType("integer"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Postal") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("Street") + .HasColumnType("text"); + + b.Property("Street2") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Unit") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicantAddresses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("BceidBusinessGuid") + .HasColumnType("uuid"); + + b.Property("BceidBusinessName") + .HasColumnType("text"); + + b.Property("BceidUserGuid") + .HasColumnType("uuid"); + + b.Property("BceidUserName") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactOrder") + .HasColumnType("integer"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IdentityEmail") + .HasColumnType("text"); + + b.Property("IdentityName") + .HasColumnType("text"); + + b.Property("IdentityProvider") + .HasColumnType("text"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsConfirmed") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSubUser") + .HasColumnType("text"); + + b.Property("Phone") + .HasColumnType("text"); + + b.Property("Phone2") + .HasColumnType("text"); + + b.Property("Phone2Extension") + .HasColumnType("text"); + + b.Property("PhoneExtension") + .HasColumnType("text"); + + b.Property("RoleForApplicant") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId") + .IsUnique(); + + b.ToTable("ApplicantAgents", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AIAnalysis") + .HasColumnType("text"); + + b.Property("AIScoresheetAnswers") + .HasColumnType("jsonb"); + + b.Property("Acquisition") + .HasColumnType("text"); + + b.Property("ApplicantElectoralDistrict") + .HasColumnType("text"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationStatusId") + .HasColumnType("uuid"); + + b.Property("ApprovedAmount") + .HasColumnType("numeric"); + + b.Property("AssessmentResultDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AssessmentResultStatus") + .HasColumnType("text"); + + b.Property("AssessmentStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Community") + .HasColumnType("text"); + + b.Property("CommunityPopulation") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractExecutionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ContractNumber") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeclineRational") + .HasColumnType("text"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("DueDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DueDiligenceStatus") + .HasColumnType("text"); + + b.Property("EconomicRegion") + .HasColumnType("text"); + + b.Property("ElectoralDistrict") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinalDecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("Forestry") + .HasColumnType("text"); + + b.Property("ForestryFocus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LikelihoodOfFunding") + .HasColumnType("text"); + + b.Property("Notes") + .HasColumnType("text"); + + b.Property("NotificationDate") + .HasColumnType("timestamp without time zone"); + + b.Property("OwnerId") + .HasColumnType("uuid"); + + b.Property("Payload") + .HasColumnType("jsonb"); + + b.Property("PercentageTotalProjectBudget") + .HasColumnType("double precision"); + + b.Property("Place") + .HasColumnType("text"); + + b.Property("ProjectEndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectFundingTotal") + .HasColumnType("numeric"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ProjectStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectSummary") + .HasColumnType("text"); + + b.Property("ProposalDate") + .HasColumnType("timestamp without time zone"); + + b.Property("RecommendedAmount") + .HasColumnType("numeric"); + + b.Property("ReferenceNo") + .IsRequired() + .HasColumnType("text"); + + b.Property("RegionalDistrict") + .HasColumnType("text"); + + b.Property("RequestedAmount") + .HasColumnType("numeric"); + + b.Property("RiskRanking") + .HasColumnType("text"); + + b.Property("SigningAuthorityBusinessPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityCellPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityEmail") + .HasColumnType("text"); + + b.Property("SigningAuthorityFullName") + .HasColumnType("text"); + + b.Property("SigningAuthorityTitle") + .HasColumnType("text"); + + b.Property("SubStatus") + .HasColumnType("text"); + + b.Property("SubmissionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TotalProjectBudget") + .HasColumnType("numeric"); + + b.Property("TotalScore") + .HasColumnType("integer"); + + b.Property("UnityApplicationId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.HasIndex("ApplicationStatusId"); + + b.HasIndex("OwnerId"); + + b.ToTable("Applications", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssigneeId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Duty") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssigneeId"); + + b.ToTable("ApplicationAssignments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AISummary") + .HasColumnType("text"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsFileId") + .HasColumnType("text"); + + b.Property("ChefsSubmissionId") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationChefsFileAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactEmail") + .HasColumnType("text"); + + b.Property("ContactFullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactMobilePhone") + .HasColumnType("text"); + + b.Property("ContactTitle") + .HasColumnType("text"); + + b.Property("ContactType") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactWorkPhone") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationContact", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("ApiKey") + .HasColumnType("text"); + + b.Property("ApplicationFormDescription") + .HasColumnType("text"); + + b.Property("ApplicationFormName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("AttemptedConnectionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("Category") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsCriteriaFormGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ConnectionHttpStatus") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultPaymentGroup") + .HasColumnType("integer"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ElectoralDistrictAddressType") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormHierarchy") + .HasColumnType("integer"); + + b.Property("IntakeId") + .HasColumnType("uuid"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsDirectApproval") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ParentFormId") + .HasColumnType("uuid"); + + b.Property("Payable") + .HasColumnType("boolean"); + + b.Property("PaymentApprovalThreshold") + .HasColumnType("numeric"); + + b.Property("Prefix") + .HasColumnType("text"); + + b.Property("PreventPayment") + .HasColumnType("boolean"); + + b.Property("RenderFormIoToHtml") + .HasColumnType("boolean"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("SuffixType") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("IntakeId"); + + b.HasIndex("ParentFormId"); + + b.ToTable("ApplicationForms", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormVersionId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsSubmissionGuid") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormVersionId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("RenderedHTML") + .HasColumnType("text"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Submission") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormSubmissions", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsFormVersionGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormSchema") + .HasColumnType("jsonb"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SubmissionHeaderMapping") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormVersion", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LinkType") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("text") + .HasDefaultValue("Related"); + + b.Property("LinkedApplicationId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StatusCode") + .IsRequired() + .HasMaxLength(250) + .HasColumnType("character varying(250)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("StatusCode") + .IsUnique(); + + b.ToTable("ApplicationStatuses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("TagId"); + + b.ToTable("ApplicationTags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.ToTable("AssessmentAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ApprovalRecommended") + .HasColumnType("boolean"); + + b.Property("AssessorId") + .HasColumnType("uuid"); + + b.Property("CleanGrowth") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("EconomicImpact") + .HasColumnType("integer"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinancialAnalysis") + .HasColumnType("integer"); + + b.Property("InclusiveGrowth") + .HasColumnType("integer"); + + b.Property("IsComplete") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Status") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssessorId"); + + b.ToTable("Assessments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("CommenterId"); + + b.ToTable("ApplicationComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.HasIndex("CommenterId"); + + b.ToTable("AssessmentComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.Contact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("HomePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MobilePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("WorkPhoneExtension") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("WorkPhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.HasKey("Id"); + + b.ToTable("Contacts", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactId") + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsPrimary") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("RelatedEntityId") + .HasColumnType("uuid"); + + b.Property("RelatedEntityType") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("Role") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RelatedEntityType", "RelatedEntityId"); + + b.HasIndex("ContactId", "RelatedEntityType", "RelatedEntityId"); + + b.ToTable("ContactLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.GlobalTag.Tag", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Tags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Identity.Person", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Badge") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcDisplayName") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("OidcSub"); + + b.ToTable("Persons", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Intakes.Intake", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Budget") + .HasColumnType("double precision"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IntakeName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Intakes", (string)null); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.ToTable("EmailGroupUsers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("BCC") + .IsRequired() + .HasColumnType("text"); + + b.Property("Body") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CC") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesHttpStatusCode") + .HasColumnType("text"); + + b.Property("ChesMsgId") + .HasColumnType("uuid"); + + b.Property("ChesResponse") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FromAddress") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestIds") + .IsRequired() + .HasColumnType("text"); + + b.Property("Priority") + .IsRequired() + .HasColumnType("text"); + + b.Property("RetryAttempts") + .HasColumnType("integer"); + + b.Property("SendOnDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("SentDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("Tag") + .IsRequired() + .HasColumnType("text"); + + b.Property("TemplateName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ToAddress") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailLogs", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContentType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("EmailLogId") + .HasColumnType("uuid"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("EmailLogId"); + + b.HasIndex("S3ObjectKey"); + + b.ToTable("EmailLogAttachments", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.EmailTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BodyHTML") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyText") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("SendFrom") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("EmailTemplates", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Subscriber", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FirstName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Subscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("SubscriptionGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriberId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.HasIndex("SubscriberId"); + + b.ToTable("SubscriptionGroupSubscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TemplateVariable", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MapTo") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Token") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("TemplateVariables", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Trigger", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("Active") + .HasColumnType("boolean"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Triggers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriptionGroupId") + .HasColumnType("uuid"); + + b.Property("TemplateId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TriggerId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("SubscriptionGroupId"); + + b.HasIndex("TemplateId"); + + b.HasIndex("TriggerId"); + + b.ToTable("TriggerSubscriptions", "Notifications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.AccountCodings.AccountCoding", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .HasMaxLength(35) + .HasColumnType("character varying(35)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MinistryClient") + .IsRequired() + .HasColumnType("text"); + + b.Property("ProjectNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("Responsibility") + .IsRequired() + .HasColumnType("text"); + + b.Property("ServiceLine") + .IsRequired() + .HasColumnType("text"); + + b.Property("Stob") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("AccountCodings", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentConfigurations.PaymentConfiguration", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultAccountCodingId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentIdPrefix") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("PaymentConfigurations", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DecisionUserId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.ToTable("ExpenseApprovals", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("Amount") + .HasColumnType("numeric"); + + b.Property("BatchName") + .IsRequired() + .HasColumnType("text"); + + b.Property("BatchNumber") + .HasColumnType("numeric"); + + b.Property("CasHttpStatusCode") + .HasColumnType("integer"); + + b.Property("CasResponse") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FsbApNotified") + .HasMaxLength(10) + .HasColumnType("character varying(10)"); + + b.Property("FsbNotificationEmailLogId") + .HasColumnType("uuid"); + + b.Property("FsbNotificationSentDate") + .HasColumnType("timestamp without time zone"); + + b.Property("InvoiceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("InvoiceStatus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsRecon") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Note") + .HasColumnType("text"); + + b.Property("PayeeName") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentDate") + .HasColumnType("text"); + + b.Property("PaymentNumber") + .HasColumnType("text"); + + b.Property("PaymentStatus") + .HasColumnType("text"); + + b.Property("ReferenceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("RequesterName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("SubmissionConfirmationCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("SupplierName") + .HasColumnType("text"); + + b.Property("SupplierNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AccountCodingId"); + + b.HasIndex("FsbNotificationEmailLogId"); + + b.HasIndex("ReferenceNumber") + .IsUnique(); + + b.HasIndex("SiteId"); + + b.ToTable("PaymentRequests", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.HasIndex("TagId"); + + b.ToTable("PaymentTags", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentThresholds.PaymentThreshold", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Threshold") + .HasColumnType("numeric"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("PaymentThresholds", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AddressLine1") + .HasColumnType("text"); + + b.Property("AddressLine2") + .HasColumnType("text"); + + b.Property("AddressLine3") + .HasColumnType("text"); + + b.Property("BankAccount") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EFTAdvicePref") + .HasColumnType("text"); + + b.Property("EmailAddress") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCas") + .HasColumnType("timestamp without time zone"); + + b.Property("MarkDeletedInUse") + .HasColumnType("boolean"); + + b.Property("Number") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentGroup") + .HasColumnType("integer"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SiteProtected") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("SupplierId"); + + b.ToTable("Sites", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCAS") + .HasColumnType("timestamp without time zone"); + + b.Property("MailingAddress") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Number") + .HasColumnType("text"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SIN") + .HasColumnType("text"); + + b.Property("StandardIndustryClassification") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("Subcategory") + .HasColumnType("text"); + + b.Property("SupplierProtected") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Suppliers", "Payments"); + }); + + modelBuilder.Entity("Unity.Reporting.Domain.Configuration.ReportColumnsMap", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Mapping") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("RoleStatus") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ViewStatus") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.ToTable("ReportColumnsMaps", "Reporting"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Instances") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Question", "Question") + .WithMany("Answers") + .HasForeignKey("QuestionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", null) + .WithMany("Answers") + .HasForeignKey("ScoresheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Question"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.ScoresheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Sections") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.HasOne("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", null) + .WithMany("Values") + .HasForeignKey("WorksheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Links") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.WorksheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Sections") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicationId"); + + b.Navigation("Applicant"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithOne("ApplicantAgent") + .HasForeignKey("Unity.GrantManager.Applications.ApplicantAgent", "ApplicationId"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", "ApplicationForm") + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationStatus", "ApplicationStatus") + .WithMany("Applications") + .HasForeignKey("ApplicationStatusId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Owner") + .WithMany() + .HasForeignKey("OwnerId") + .OnDelete(DeleteBehavior.NoAction); + + b.Navigation("Applicant"); + + b.Navigation("ApplicationForm"); + + b.Navigation("ApplicationStatus"); + + b.Navigation("Owner"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationAssignments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Assignee") + .WithMany() + .HasForeignKey("AssigneeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Assignee"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.HasOne("Unity.GrantManager.Intakes.Intake", null) + .WithMany() + .HasForeignKey("IntakeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ParentFormId") + .OnDelete(DeleteBehavior.NoAction); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany("ApplicationLinks") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationTags") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("Assessments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("AssessorId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.HasOne("Unity.GrantManager.Contacts.Contact", null) + .WithMany() + .HasForeignKey("ContactId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.HasOne("Unity.Notifications.EmailGroups.EmailGroup", null) + .WithMany() + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.HasOne("Unity.Notifications.Emails.EmailLog", null) + .WithMany() + .HasForeignKey("EmailLogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("GroupId"); + + b.HasOne("Unity.Notifications.Templates.Subscriber", "Subscriber") + .WithMany() + .HasForeignKey("SubscriberId"); + + b.Navigation("Subscriber"); + + b.Navigation("SubscriptionGroup"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("SubscriptionGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.EmailTemplate", "EmailTemplate") + .WithMany() + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.Trigger", "Trigger") + .WithMany() + .HasForeignKey("TriggerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("EmailTemplate"); + + b.Navigation("SubscriptionGroup"); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", "PaymentRequest") + .WithMany("ExpenseApprovals") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("PaymentRequest"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.HasOne("Unity.Payments.Domain.AccountCodings.AccountCoding", "AccountCoding") + .WithMany() + .HasForeignKey("AccountCodingId") + .OnDelete(DeleteBehavior.NoAction); + + b.HasOne("Unity.Payments.Domain.Suppliers.Site", "Site") + .WithMany() + .HasForeignKey("SiteId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("AccountCoding"); + + b.Navigation("Site"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", null) + .WithMany("PaymentTags") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.HasOne("Unity.Payments.Domain.Suppliers.Supplier", "Supplier") + .WithMany("Sites") + .HasForeignKey("SupplierId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Supplier"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Navigation("Instances"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Navigation("Values"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Navigation("Links"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Navigation("ApplicantAddresses"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Navigation("ApplicantAddresses"); + + b.Navigation("ApplicantAgent"); + + b.Navigation("ApplicationAssignments"); + + b.Navigation("ApplicationLinks"); + + b.Navigation("ApplicationTags"); + + b.Navigation("Assessments"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Navigation("Applications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Navigation("ExpenseApprovals"); + + b.Navigation("PaymentTags"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Navigation("Sites"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226020846_Add_UnitySequenceCounters_Table.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226020846_Add_UnitySequenceCounters_Table.cs new file mode 100644 index 0000000000..78ac7c5b01 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226020846_Add_UnitySequenceCounters_Table.cs @@ -0,0 +1,31 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + /// + public partial class Add_UnitySequenceCounters_Table : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + // PRIMARY KEY on (tenant_id, prefix) enforces uniqueness and provides the index + // required by the ON CONFLICT clause in the upsert counter query. + migrationBuilder.Sql(@" + CREATE TABLE IF NOT EXISTS ""unity_sequence_counters"" ( + ""tenant_id"" UUID NOT NULL, + ""prefix"" TEXT NOT NULL, + ""current_value"" BIGINT NOT NULL DEFAULT 0, + CONSTRAINT ""PK_unity_sequence_counters"" PRIMARY KEY (""tenant_id"", ""prefix"") + ); + "); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.Sql(@"DROP TABLE IF EXISTS ""unity_sequence_counters"";"); + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226021054_Renumber_UnityApplicationId_And_Seed_Counters.Designer.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226021054_Renumber_UnityApplicationId_And_Seed_Counters.Designer.cs new file mode 100644 index 0000000000..036802c5f2 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226021054_Renumber_UnityApplicationId_And_Seed_Counters.Designer.cs @@ -0,0 +1,4571 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + [DbContext(typeof(GrantTenantDbContext))] + [Migration("20260226020620_Renumber_UnityApplicationId_And_Seed_Counters")] + partial class Renumber_UnityApplicationId_And_Seed_Counters + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.PostgreSql) + .HasAnnotation("ProductVersion", "9.0.5") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Value") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("QuestionId") + .HasColumnType("uuid"); + + b.Property("ScoresheetInstanceId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("QuestionId"); + + b.HasIndex("ScoresheetInstanceId"); + + b.ToTable("Answers", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("Questions", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Scoresheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("CustomFieldId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetInstanceId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetInstanceId"); + + b.ToTable("CustomFieldValues", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetCorrelationId") + .HasColumnType("uuid"); + + b.Property("WorksheetCorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("WorksheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetLinks", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Key") + .IsRequired() + .HasColumnType("text"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("CustomFields", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Worksheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantName") + .IsRequired() + .HasMaxLength(600) + .HasColumnType("character varying(600)"); + + b.Property("ApproxNumberOfEmployees") + .HasColumnType("text"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FiscalDay") + .HasColumnType("integer"); + + b.Property("FiscalMonth") + .HasColumnType("text"); + + b.Property("IndigenousOrgInd") + .HasColumnType("text"); + + b.Property("IsDuplicated") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MatchPercentage") + .HasColumnType("numeric"); + + b.Property("NonRegOrgName") + .HasColumnType("text"); + + b.Property("NonRegisteredBusinessName") + .HasColumnType("text"); + + b.Property("OrgName") + .HasColumnType("text"); + + b.Property("OrgNumber") + .HasColumnType("text"); + + b.Property("OrgStatus") + .HasColumnType("text"); + + b.Property("OrganizationSize") + .HasColumnType("text"); + + b.Property("OrganizationType") + .HasColumnType("text"); + + b.Property("RedStop") + .HasColumnType("boolean"); + + b.Property("Sector") + .HasColumnType("text"); + + b.Property("SectorSubSectorIndustryDesc") + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("StartedOperatingDate") + .HasColumnType("date"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SubSector") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UnityApplicantId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantName"); + + b.ToTable("Applicants", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AddressType") + .HasColumnType("integer"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Postal") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("Street") + .HasColumnType("text"); + + b.Property("Street2") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Unit") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicantAddresses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("BceidBusinessGuid") + .HasColumnType("uuid"); + + b.Property("BceidBusinessName") + .HasColumnType("text"); + + b.Property("BceidUserGuid") + .HasColumnType("uuid"); + + b.Property("BceidUserName") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactOrder") + .HasColumnType("integer"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IdentityEmail") + .HasColumnType("text"); + + b.Property("IdentityName") + .HasColumnType("text"); + + b.Property("IdentityProvider") + .HasColumnType("text"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsConfirmed") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSubUser") + .HasColumnType("text"); + + b.Property("Phone") + .HasColumnType("text"); + + b.Property("Phone2") + .HasColumnType("text"); + + b.Property("Phone2Extension") + .HasColumnType("text"); + + b.Property("PhoneExtension") + .HasColumnType("text"); + + b.Property("RoleForApplicant") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId") + .IsUnique(); + + b.ToTable("ApplicantAgents", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AIAnalysis") + .HasColumnType("text"); + + b.Property("AIScoresheetAnswers") + .HasColumnType("jsonb"); + + b.Property("Acquisition") + .HasColumnType("text"); + + b.Property("ApplicantElectoralDistrict") + .HasColumnType("text"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationStatusId") + .HasColumnType("uuid"); + + b.Property("ApprovedAmount") + .HasColumnType("numeric"); + + b.Property("AssessmentResultDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AssessmentResultStatus") + .HasColumnType("text"); + + b.Property("AssessmentStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Community") + .HasColumnType("text"); + + b.Property("CommunityPopulation") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractExecutionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ContractNumber") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeclineRational") + .HasColumnType("text"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("DueDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DueDiligenceStatus") + .HasColumnType("text"); + + b.Property("EconomicRegion") + .HasColumnType("text"); + + b.Property("ElectoralDistrict") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinalDecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("Forestry") + .HasColumnType("text"); + + b.Property("ForestryFocus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LikelihoodOfFunding") + .HasColumnType("text"); + + b.Property("Notes") + .HasColumnType("text"); + + b.Property("NotificationDate") + .HasColumnType("timestamp without time zone"); + + b.Property("OwnerId") + .HasColumnType("uuid"); + + b.Property("Payload") + .HasColumnType("jsonb"); + + b.Property("PercentageTotalProjectBudget") + .HasColumnType("double precision"); + + b.Property("Place") + .HasColumnType("text"); + + b.Property("ProjectEndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectFundingTotal") + .HasColumnType("numeric"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ProjectStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectSummary") + .HasColumnType("text"); + + b.Property("ProposalDate") + .HasColumnType("timestamp without time zone"); + + b.Property("RecommendedAmount") + .HasColumnType("numeric"); + + b.Property("ReferenceNo") + .IsRequired() + .HasColumnType("text"); + + b.Property("RegionalDistrict") + .HasColumnType("text"); + + b.Property("RequestedAmount") + .HasColumnType("numeric"); + + b.Property("RiskRanking") + .HasColumnType("text"); + + b.Property("SigningAuthorityBusinessPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityCellPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityEmail") + .HasColumnType("text"); + + b.Property("SigningAuthorityFullName") + .HasColumnType("text"); + + b.Property("SigningAuthorityTitle") + .HasColumnType("text"); + + b.Property("SubStatus") + .HasColumnType("text"); + + b.Property("SubmissionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TotalProjectBudget") + .HasColumnType("numeric"); + + b.Property("TotalScore") + .HasColumnType("integer"); + + b.Property("UnityApplicationId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.HasIndex("ApplicationStatusId"); + + b.HasIndex("OwnerId"); + + b.ToTable("Applications", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssigneeId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Duty") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssigneeId"); + + b.ToTable("ApplicationAssignments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AISummary") + .HasColumnType("text"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsFileId") + .HasColumnType("text"); + + b.Property("ChefsSubmissionId") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationChefsFileAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactEmail") + .HasColumnType("text"); + + b.Property("ContactFullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactMobilePhone") + .HasColumnType("text"); + + b.Property("ContactTitle") + .HasColumnType("text"); + + b.Property("ContactType") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactWorkPhone") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationContact", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("ApiKey") + .HasColumnType("text"); + + b.Property("ApplicationFormDescription") + .HasColumnType("text"); + + b.Property("ApplicationFormName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("AttemptedConnectionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("Category") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsCriteriaFormGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ConnectionHttpStatus") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultPaymentGroup") + .HasColumnType("integer"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ElectoralDistrictAddressType") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormHierarchy") + .HasColumnType("integer"); + + b.Property("IntakeId") + .HasColumnType("uuid"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsDirectApproval") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ParentFormId") + .HasColumnType("uuid"); + + b.Property("Payable") + .HasColumnType("boolean"); + + b.Property("PaymentApprovalThreshold") + .HasColumnType("numeric"); + + b.Property("Prefix") + .HasColumnType("text"); + + b.Property("PreventPayment") + .HasColumnType("boolean"); + + b.Property("RenderFormIoToHtml") + .HasColumnType("boolean"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("SuffixType") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("IntakeId"); + + b.HasIndex("ParentFormId"); + + b.ToTable("ApplicationForms", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormVersionId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsSubmissionGuid") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormVersionId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("RenderedHTML") + .HasColumnType("text"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Submission") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormSubmissions", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsFormVersionGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormSchema") + .HasColumnType("jsonb"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SubmissionHeaderMapping") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormVersion", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LinkType") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("text") + .HasDefaultValue("Related"); + + b.Property("LinkedApplicationId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StatusCode") + .IsRequired() + .HasMaxLength(250) + .HasColumnType("character varying(250)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("StatusCode") + .IsUnique(); + + b.ToTable("ApplicationStatuses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("TagId"); + + b.ToTable("ApplicationTags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.ToTable("AssessmentAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ApprovalRecommended") + .HasColumnType("boolean"); + + b.Property("AssessorId") + .HasColumnType("uuid"); + + b.Property("CleanGrowth") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("EconomicImpact") + .HasColumnType("integer"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinancialAnalysis") + .HasColumnType("integer"); + + b.Property("InclusiveGrowth") + .HasColumnType("integer"); + + b.Property("IsComplete") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Status") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssessorId"); + + b.ToTable("Assessments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("CommenterId"); + + b.ToTable("ApplicationComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.HasIndex("CommenterId"); + + b.ToTable("AssessmentComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.Contact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("HomePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MobilePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("WorkPhoneExtension") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("WorkPhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.HasKey("Id"); + + b.ToTable("Contacts", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactId") + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsPrimary") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("RelatedEntityId") + .HasColumnType("uuid"); + + b.Property("RelatedEntityType") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("Role") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RelatedEntityType", "RelatedEntityId"); + + b.HasIndex("ContactId", "RelatedEntityType", "RelatedEntityId"); + + b.ToTable("ContactLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.GlobalTag.Tag", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Tags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Identity.Person", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Badge") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcDisplayName") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("OidcSub"); + + b.ToTable("Persons", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Intakes.Intake", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Budget") + .HasColumnType("double precision"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IntakeName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Intakes", (string)null); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.ToTable("EmailGroupUsers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("BCC") + .IsRequired() + .HasColumnType("text"); + + b.Property("Body") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CC") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesHttpStatusCode") + .HasColumnType("text"); + + b.Property("ChesMsgId") + .HasColumnType("uuid"); + + b.Property("ChesResponse") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FromAddress") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestIds") + .IsRequired() + .HasColumnType("text"); + + b.Property("Priority") + .IsRequired() + .HasColumnType("text"); + + b.Property("RetryAttempts") + .HasColumnType("integer"); + + b.Property("SendOnDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("SentDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("Tag") + .IsRequired() + .HasColumnType("text"); + + b.Property("TemplateName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ToAddress") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailLogs", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContentType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("EmailLogId") + .HasColumnType("uuid"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("EmailLogId"); + + b.HasIndex("S3ObjectKey"); + + b.ToTable("EmailLogAttachments", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.EmailTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BodyHTML") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyText") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("SendFrom") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("EmailTemplates", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Subscriber", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FirstName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Subscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("SubscriptionGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriberId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.HasIndex("SubscriberId"); + + b.ToTable("SubscriptionGroupSubscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TemplateVariable", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MapTo") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Token") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("TemplateVariables", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Trigger", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("Active") + .HasColumnType("boolean"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Triggers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriptionGroupId") + .HasColumnType("uuid"); + + b.Property("TemplateId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TriggerId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("SubscriptionGroupId"); + + b.HasIndex("TemplateId"); + + b.HasIndex("TriggerId"); + + b.ToTable("TriggerSubscriptions", "Notifications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.AccountCodings.AccountCoding", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .HasMaxLength(35) + .HasColumnType("character varying(35)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MinistryClient") + .IsRequired() + .HasColumnType("text"); + + b.Property("ProjectNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("Responsibility") + .IsRequired() + .HasColumnType("text"); + + b.Property("ServiceLine") + .IsRequired() + .HasColumnType("text"); + + b.Property("Stob") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("AccountCodings", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentConfigurations.PaymentConfiguration", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultAccountCodingId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentIdPrefix") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("PaymentConfigurations", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DecisionUserId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.ToTable("ExpenseApprovals", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("Amount") + .HasColumnType("numeric"); + + b.Property("BatchName") + .IsRequired() + .HasColumnType("text"); + + b.Property("BatchNumber") + .HasColumnType("numeric"); + + b.Property("CasHttpStatusCode") + .HasColumnType("integer"); + + b.Property("CasResponse") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FsbApNotified") + .HasMaxLength(10) + .HasColumnType("character varying(10)"); + + b.Property("FsbNotificationEmailLogId") + .HasColumnType("uuid"); + + b.Property("FsbNotificationSentDate") + .HasColumnType("timestamp without time zone"); + + b.Property("InvoiceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("InvoiceStatus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsRecon") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Note") + .HasColumnType("text"); + + b.Property("PayeeName") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentDate") + .HasColumnType("text"); + + b.Property("PaymentNumber") + .HasColumnType("text"); + + b.Property("PaymentStatus") + .HasColumnType("text"); + + b.Property("ReferenceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("RequesterName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("SubmissionConfirmationCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("SupplierName") + .HasColumnType("text"); + + b.Property("SupplierNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AccountCodingId"); + + b.HasIndex("FsbNotificationEmailLogId"); + + b.HasIndex("ReferenceNumber") + .IsUnique(); + + b.HasIndex("SiteId"); + + b.ToTable("PaymentRequests", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.HasIndex("TagId"); + + b.ToTable("PaymentTags", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentThresholds.PaymentThreshold", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Threshold") + .HasColumnType("numeric"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("PaymentThresholds", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AddressLine1") + .HasColumnType("text"); + + b.Property("AddressLine2") + .HasColumnType("text"); + + b.Property("AddressLine3") + .HasColumnType("text"); + + b.Property("BankAccount") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EFTAdvicePref") + .HasColumnType("text"); + + b.Property("EmailAddress") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCas") + .HasColumnType("timestamp without time zone"); + + b.Property("MarkDeletedInUse") + .HasColumnType("boolean"); + + b.Property("Number") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentGroup") + .HasColumnType("integer"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SiteProtected") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("SupplierId"); + + b.ToTable("Sites", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCAS") + .HasColumnType("timestamp without time zone"); + + b.Property("MailingAddress") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Number") + .HasColumnType("text"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SIN") + .HasColumnType("text"); + + b.Property("StandardIndustryClassification") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("Subcategory") + .HasColumnType("text"); + + b.Property("SupplierProtected") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Suppliers", "Payments"); + }); + + modelBuilder.Entity("Unity.Reporting.Domain.Configuration.ReportColumnsMap", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Mapping") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("RoleStatus") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ViewStatus") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.ToTable("ReportColumnsMaps", "Reporting"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Instances") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Question", "Question") + .WithMany("Answers") + .HasForeignKey("QuestionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", null) + .WithMany("Answers") + .HasForeignKey("ScoresheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Question"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.ScoresheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Sections") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.HasOne("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", null) + .WithMany("Values") + .HasForeignKey("WorksheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Links") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.WorksheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Sections") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicationId"); + + b.Navigation("Applicant"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithOne("ApplicantAgent") + .HasForeignKey("Unity.GrantManager.Applications.ApplicantAgent", "ApplicationId"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", "ApplicationForm") + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationStatus", "ApplicationStatus") + .WithMany("Applications") + .HasForeignKey("ApplicationStatusId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Owner") + .WithMany() + .HasForeignKey("OwnerId") + .OnDelete(DeleteBehavior.NoAction); + + b.Navigation("Applicant"); + + b.Navigation("ApplicationForm"); + + b.Navigation("ApplicationStatus"); + + b.Navigation("Owner"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationAssignments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Assignee") + .WithMany() + .HasForeignKey("AssigneeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Assignee"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.HasOne("Unity.GrantManager.Intakes.Intake", null) + .WithMany() + .HasForeignKey("IntakeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ParentFormId") + .OnDelete(DeleteBehavior.NoAction); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany("ApplicationLinks") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationTags") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("Assessments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("AssessorId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.HasOne("Unity.GrantManager.Contacts.Contact", null) + .WithMany() + .HasForeignKey("ContactId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.HasOne("Unity.Notifications.EmailGroups.EmailGroup", null) + .WithMany() + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.HasOne("Unity.Notifications.Emails.EmailLog", null) + .WithMany() + .HasForeignKey("EmailLogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("GroupId"); + + b.HasOne("Unity.Notifications.Templates.Subscriber", "Subscriber") + .WithMany() + .HasForeignKey("SubscriberId"); + + b.Navigation("Subscriber"); + + b.Navigation("SubscriptionGroup"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("SubscriptionGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.EmailTemplate", "EmailTemplate") + .WithMany() + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.Trigger", "Trigger") + .WithMany() + .HasForeignKey("TriggerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("EmailTemplate"); + + b.Navigation("SubscriptionGroup"); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", "PaymentRequest") + .WithMany("ExpenseApprovals") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("PaymentRequest"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.HasOne("Unity.Payments.Domain.AccountCodings.AccountCoding", "AccountCoding") + .WithMany() + .HasForeignKey("AccountCodingId") + .OnDelete(DeleteBehavior.NoAction); + + b.HasOne("Unity.Payments.Domain.Suppliers.Site", "Site") + .WithMany() + .HasForeignKey("SiteId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("AccountCoding"); + + b.Navigation("Site"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", null) + .WithMany("PaymentTags") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.HasOne("Unity.Payments.Domain.Suppliers.Supplier", "Supplier") + .WithMany("Sites") + .HasForeignKey("SupplierId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Supplier"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Navigation("Instances"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Navigation("Values"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Navigation("Links"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Navigation("ApplicantAddresses"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Navigation("ApplicantAddresses"); + + b.Navigation("ApplicantAgent"); + + b.Navigation("ApplicationAssignments"); + + b.Navigation("ApplicationLinks"); + + b.Navigation("ApplicationTags"); + + b.Navigation("Assessments"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Navigation("Applications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Navigation("ExpenseApprovals"); + + b.Navigation("PaymentTags"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Navigation("Sites"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226021054_Renumber_UnityApplicationId_And_Seed_Counters.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226021054_Renumber_UnityApplicationId_And_Seed_Counters.cs new file mode 100644 index 0000000000..487d80375b --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260226021054_Renumber_UnityApplicationId_And_Seed_Counters.cs @@ -0,0 +1,109 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + /// + public partial class Renumber_UnityApplicationId_And_Seed_Counters : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + // A: Renumber existing sequential UnityApplicationIds to fill historical gaps. + // + // Partitioned by (TenantId, Prefix) — tenants sharing a schema get separate, + // independent sequences. Prefix comes from the ApplicationForm definition + // (not inferred from the ID string) to avoid regex metacharacter issues. + // Only SuffixType = 1 (SequentialNumber) forms are touched. + // Stable ordering: original suffix number → CreationTime → Id. + // Malformed IDs (non-numeric suffix) are left untouched. + migrationBuilder.Sql(@" + WITH base AS ( + SELECT + a.""Id"", + COALESCE(a.""TenantId"", '00000000-0000-0000-0000-000000000000'::UUID) AS tenant_id, + af.""Prefix"", + a.""CreationTime"", + SUBSTRING(a.""UnityApplicationId"" FROM CHAR_LENGTH(af.""Prefix"") + 1) AS suffix + FROM ""Applications"" a + JOIN ""ApplicationForms"" af ON a.""ApplicationFormId"" = af.""Id"" + WHERE af.""SuffixType"" = 1 + AND af.""Prefix"" IS NOT NULL + AND af.""Prefix"" <> '' + AND a.""UnityApplicationId"" IS NOT NULL + AND LEFT(a.""UnityApplicationId"", CHAR_LENGTH(af.""Prefix"")) = af.""Prefix"" + ), + valid AS ( + SELECT + ""Id"", + tenant_id, + ""Prefix"", + ""CreationTime"", + suffix::BIGINT AS old_seq + FROM base + WHERE suffix ~ '^[0-9]+$' + ), + ranked AS ( + SELECT + ""Id"", + ""Prefix"", + ROW_NUMBER() OVER ( + PARTITION BY tenant_id, ""Prefix"" + ORDER BY old_seq, ""CreationTime"", ""Id"" + ) AS new_seq + FROM valid + ) + UPDATE ""Applications"" a + SET ""UnityApplicationId"" = + r.""Prefix"" || LPAD(r.new_seq::TEXT, GREATEST(5, LENGTH(r.new_seq::TEXT)), '0') + FROM ranked r + WHERE a.""Id"" = r.""Id""; + "); + + + // B: Seed unity_sequence_counters from the post-renumber maximum. + // + // LEFT JOIN from ApplicationForms so that every (tenant, prefix) combination that + // is configured for sequential numbering gets a counter row — even forms that have + // zero applications yet. Those are seeded with current_value = 0, so the first + // real upsert increments to 1 without a gap. + migrationBuilder.Sql(@" + WITH parsed AS ( + SELECT + COALESCE(a.""TenantId"", af.""TenantId"", '00000000-0000-0000-0000-000000000000'::UUID) AS tenant_id, + af.""Prefix"" AS prefix, + CASE + WHEN a.""UnityApplicationId"" IS NOT NULL + AND LEFT(a.""UnityApplicationId"", CHAR_LENGTH(af.""Prefix"")) = af.""Prefix"" + AND SUBSTRING(a.""UnityApplicationId"" FROM CHAR_LENGTH(af.""Prefix"") + 1) ~ '^[0-9]+$' + THEN CAST(SUBSTRING(a.""UnityApplicationId"" FROM CHAR_LENGTH(af.""Prefix"") + 1) AS BIGINT) + ELSE NULL + END AS seq + FROM ""ApplicationForms"" af + LEFT JOIN ""Applications"" a ON a.""ApplicationFormId"" = af.""Id"" + WHERE af.""SuffixType"" = 1 + AND af.""Prefix"" IS NOT NULL + AND af.""Prefix"" <> '' + ) + INSERT INTO ""unity_sequence_counters"" (""tenant_id"", ""prefix"", ""current_value"") + SELECT tenant_id, prefix, COALESCE(MAX(seq), 0) + FROM parsed + GROUP BY tenant_id, prefix + ON CONFLICT (""tenant_id"", ""prefix"") DO UPDATE + SET ""current_value"" = GREATEST( + ""unity_sequence_counters"".""current_value"", + EXCLUDED.""current_value"" + ); + "); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + // Counter rows are removed; un-renumbering IDs is not supported. + // Full rollback requires restoring from a pre-migration backup. + migrationBuilder.Sql(@"DELETE FROM ""unity_sequence_counters"";"); + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227001110_Add_ApplicantHistory_Tables.Designer.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227001110_Add_ApplicantHistory_Tables.Designer.cs new file mode 100644 index 0000000000..86a126dc90 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227001110_Add_ApplicantHistory_Tables.Designer.cs @@ -0,0 +1,4788 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + [DbContext(typeof(GrantTenantDbContext))] + [Migration("20260227001110_Add_ApplicantHistory_Tables")] + partial class Add_ApplicantHistory_Tables + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.PostgreSql) + .HasAnnotation("ProductVersion", "9.0.5") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Value") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("QuestionId") + .HasColumnType("uuid"); + + b.Property("ScoresheetInstanceId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("QuestionId"); + + b.HasIndex("ScoresheetInstanceId"); + + b.ToTable("Answers", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("Questions", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Scoresheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("CustomFieldId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetInstanceId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetInstanceId"); + + b.ToTable("CustomFieldValues", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetCorrelationId") + .HasColumnType("uuid"); + + b.Property("WorksheetCorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("WorksheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetLinks", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Key") + .IsRequired() + .HasColumnType("text"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("CustomFields", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Worksheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantName") + .IsRequired() + .HasMaxLength(600) + .HasColumnType("character varying(600)"); + + b.Property("ApproxNumberOfEmployees") + .HasColumnType("text"); + + b.Property("AuditComments") + .HasColumnType("text"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FiscalDay") + .HasColumnType("integer"); + + b.Property("FiscalMonth") + .HasColumnType("text"); + + b.Property("FundingHistoryComments") + .HasColumnType("text"); + + b.Property("IndigenousOrgInd") + .HasColumnType("text"); + + b.Property("IsDuplicated") + .HasColumnType("boolean"); + + b.Property("IssueTrackingComments") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MatchPercentage") + .HasColumnType("numeric"); + + b.Property("NonRegOrgName") + .HasColumnType("text"); + + b.Property("NonRegisteredBusinessName") + .HasColumnType("text"); + + b.Property("OrgName") + .HasColumnType("text"); + + b.Property("OrgNumber") + .HasColumnType("text"); + + b.Property("OrgStatus") + .HasColumnType("text"); + + b.Property("OrganizationSize") + .HasColumnType("text"); + + b.Property("OrganizationType") + .HasColumnType("text"); + + b.Property("RedStop") + .HasColumnType("boolean"); + + b.Property("Sector") + .HasColumnType("text"); + + b.Property("SectorSubSectorIndustryDesc") + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("StartedOperatingDate") + .HasColumnType("date"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SubSector") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UnityApplicantId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantName"); + + b.ToTable("Applicants", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AddressType") + .HasColumnType("integer"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Postal") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("Street") + .HasColumnType("text"); + + b.Property("Street2") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Unit") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicantAddresses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("BceidBusinessGuid") + .HasColumnType("uuid"); + + b.Property("BceidBusinessName") + .HasColumnType("text"); + + b.Property("BceidUserGuid") + .HasColumnType("uuid"); + + b.Property("BceidUserName") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactOrder") + .HasColumnType("integer"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IdentityEmail") + .HasColumnType("text"); + + b.Property("IdentityName") + .HasColumnType("text"); + + b.Property("IdentityProvider") + .HasColumnType("text"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsConfirmed") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSubUser") + .HasColumnType("text"); + + b.Property("Phone") + .HasColumnType("text"); + + b.Property("Phone2") + .HasColumnType("text"); + + b.Property("Phone2Extension") + .HasColumnType("text"); + + b.Property("PhoneExtension") + .HasColumnType("text"); + + b.Property("RoleForApplicant") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId") + .IsUnique(); + + b.ToTable("ApplicantAgents", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AIAnalysis") + .HasColumnType("text"); + + b.Property("AIScoresheetAnswers") + .HasColumnType("jsonb"); + + b.Property("Acquisition") + .HasColumnType("text"); + + b.Property("ApplicantElectoralDistrict") + .HasColumnType("text"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationStatusId") + .HasColumnType("uuid"); + + b.Property("ApprovedAmount") + .HasColumnType("numeric"); + + b.Property("AssessmentResultDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AssessmentResultStatus") + .HasColumnType("text"); + + b.Property("AssessmentStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Community") + .HasColumnType("text"); + + b.Property("CommunityPopulation") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractExecutionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ContractNumber") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeclineRational") + .HasColumnType("text"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("DueDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DueDiligenceStatus") + .HasColumnType("text"); + + b.Property("EconomicRegion") + .HasColumnType("text"); + + b.Property("ElectoralDistrict") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinalDecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("Forestry") + .HasColumnType("text"); + + b.Property("ForestryFocus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LikelihoodOfFunding") + .HasColumnType("text"); + + b.Property("Notes") + .HasColumnType("text"); + + b.Property("NotificationDate") + .HasColumnType("timestamp without time zone"); + + b.Property("OwnerId") + .HasColumnType("uuid"); + + b.Property("Payload") + .HasColumnType("jsonb"); + + b.Property("PercentageTotalProjectBudget") + .HasColumnType("double precision"); + + b.Property("Place") + .HasColumnType("text"); + + b.Property("ProjectEndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectFundingTotal") + .HasColumnType("numeric"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ProjectStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectSummary") + .HasColumnType("text"); + + b.Property("ProposalDate") + .HasColumnType("timestamp without time zone"); + + b.Property("RecommendedAmount") + .HasColumnType("numeric"); + + b.Property("ReferenceNo") + .IsRequired() + .HasColumnType("text"); + + b.Property("RegionalDistrict") + .HasColumnType("text"); + + b.Property("RequestedAmount") + .HasColumnType("numeric"); + + b.Property("RiskRanking") + .HasColumnType("text"); + + b.Property("SigningAuthorityBusinessPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityCellPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityEmail") + .HasColumnType("text"); + + b.Property("SigningAuthorityFullName") + .HasColumnType("text"); + + b.Property("SigningAuthorityTitle") + .HasColumnType("text"); + + b.Property("SubStatus") + .HasColumnType("text"); + + b.Property("SubmissionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TotalProjectBudget") + .HasColumnType("numeric"); + + b.Property("TotalScore") + .HasColumnType("integer"); + + b.Property("UnityApplicationId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.HasIndex("ApplicationStatusId"); + + b.HasIndex("OwnerId"); + + b.ToTable("Applications", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssigneeId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Duty") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssigneeId"); + + b.ToTable("ApplicationAssignments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AISummary") + .HasColumnType("text"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsFileId") + .HasColumnType("text"); + + b.Property("ChefsSubmissionId") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationChefsFileAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactEmail") + .HasColumnType("text"); + + b.Property("ContactFullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactMobilePhone") + .HasColumnType("text"); + + b.Property("ContactTitle") + .HasColumnType("text"); + + b.Property("ContactType") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactWorkPhone") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationContact", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("ApiKey") + .HasColumnType("text"); + + b.Property("ApplicationFormDescription") + .HasColumnType("text"); + + b.Property("ApplicationFormName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("AttemptedConnectionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("Category") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsCriteriaFormGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ConnectionHttpStatus") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultPaymentGroup") + .HasColumnType("integer"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ElectoralDistrictAddressType") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormHierarchy") + .HasColumnType("integer"); + + b.Property("IntakeId") + .HasColumnType("uuid"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsDirectApproval") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ParentFormId") + .HasColumnType("uuid"); + + b.Property("Payable") + .HasColumnType("boolean"); + + b.Property("PaymentApprovalThreshold") + .HasColumnType("numeric"); + + b.Property("Prefix") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("PreventPayment") + .HasColumnType("boolean"); + + b.Property("RenderFormIoToHtml") + .HasColumnType("boolean"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("SuffixType") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("IntakeId"); + + b.HasIndex("ParentFormId"); + + b.ToTable("ApplicationForms", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormVersionId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsSubmissionGuid") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormVersionId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("RenderedHTML") + .HasColumnType("text"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Submission") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormSubmissions", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsFormVersionGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormSchema") + .HasColumnType("jsonb"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SubmissionHeaderMapping") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormVersion", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LinkType") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("text") + .HasDefaultValue("Related"); + + b.Property("LinkedApplicationId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StatusCode") + .IsRequired() + .HasMaxLength(250) + .HasColumnType("character varying(250)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("StatusCode") + .IsUnique(); + + b.ToTable("ApplicationStatuses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("TagId"); + + b.ToTable("ApplicationTags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.ToTable("AssessmentAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AuditHistory", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("AuditDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AuditNote") + .HasColumnType("text"); + + b.Property("AuditTrackingNumber") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.ToTable("AuditHistories", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.FundingHistory", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApprovedAmount") + .HasColumnType("numeric"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FundingNotes") + .HasColumnType("text"); + + b.Property("FundingYear") + .HasColumnType("integer"); + + b.Property("GrantCategory") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReconsiderationAmount") + .HasColumnType("numeric"); + + b.Property("RenewedFunding") + .HasColumnType("boolean"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TotalGrantAmount") + .HasColumnType("numeric"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.ToTable("FundingHistories", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.IssueTracking", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IssueDescription") + .HasColumnType("text"); + + b.Property("IssueHeading") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ResolutionNote") + .HasColumnType("text"); + + b.Property("Resolved") + .HasColumnType("boolean"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Year") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.ToTable("IssueTrackings", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ApprovalRecommended") + .HasColumnType("boolean"); + + b.Property("AssessorId") + .HasColumnType("uuid"); + + b.Property("CleanGrowth") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("EconomicImpact") + .HasColumnType("integer"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinancialAnalysis") + .HasColumnType("integer"); + + b.Property("InclusiveGrowth") + .HasColumnType("integer"); + + b.Property("IsComplete") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Status") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssessorId"); + + b.ToTable("Assessments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("CommenterId"); + + b.ToTable("ApplicationComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.HasIndex("CommenterId"); + + b.ToTable("AssessmentComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.Contact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("HomePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MobilePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("WorkPhoneExtension") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("WorkPhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.HasKey("Id"); + + b.ToTable("Contacts", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactId") + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsPrimary") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("RelatedEntityId") + .HasColumnType("uuid"); + + b.Property("RelatedEntityType") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("Role") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RelatedEntityType", "RelatedEntityId"); + + b.HasIndex("ContactId", "RelatedEntityType", "RelatedEntityId"); + + b.ToTable("ContactLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.GlobalTag.Tag", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Tags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Identity.Person", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Badge") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcDisplayName") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("OidcSub"); + + b.ToTable("Persons", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Intakes.Intake", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Budget") + .HasColumnType("double precision"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IntakeName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Intakes", (string)null); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.ToTable("EmailGroupUsers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("BCC") + .IsRequired() + .HasColumnType("text"); + + b.Property("Body") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CC") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesHttpStatusCode") + .HasColumnType("text"); + + b.Property("ChesMsgId") + .HasColumnType("uuid"); + + b.Property("ChesResponse") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FromAddress") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestIds") + .IsRequired() + .HasColumnType("text"); + + b.Property("Priority") + .IsRequired() + .HasColumnType("text"); + + b.Property("RetryAttempts") + .HasColumnType("integer"); + + b.Property("SendOnDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("SentDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("Tag") + .IsRequired() + .HasColumnType("text"); + + b.Property("TemplateName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ToAddress") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailLogs", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContentType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("EmailLogId") + .HasColumnType("uuid"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("EmailLogId"); + + b.HasIndex("S3ObjectKey"); + + b.ToTable("EmailLogAttachments", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.EmailTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BodyHTML") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyText") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("SendFrom") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("EmailTemplates", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Subscriber", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FirstName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Subscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("SubscriptionGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriberId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.HasIndex("SubscriberId"); + + b.ToTable("SubscriptionGroupSubscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TemplateVariable", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MapTo") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Token") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("TemplateVariables", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Trigger", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("Active") + .HasColumnType("boolean"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Triggers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriptionGroupId") + .HasColumnType("uuid"); + + b.Property("TemplateId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TriggerId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("SubscriptionGroupId"); + + b.HasIndex("TemplateId"); + + b.HasIndex("TriggerId"); + + b.ToTable("TriggerSubscriptions", "Notifications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.AccountCodings.AccountCoding", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .HasMaxLength(35) + .HasColumnType("character varying(35)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MinistryClient") + .IsRequired() + .HasColumnType("text"); + + b.Property("ProjectNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("Responsibility") + .IsRequired() + .HasColumnType("text"); + + b.Property("ServiceLine") + .IsRequired() + .HasColumnType("text"); + + b.Property("Stob") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("AccountCodings", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentConfigurations.PaymentConfiguration", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultAccountCodingId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentIdPrefix") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("PaymentConfigurations", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DecisionUserId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.ToTable("ExpenseApprovals", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("Amount") + .HasColumnType("numeric"); + + b.Property("BatchName") + .IsRequired() + .HasColumnType("text"); + + b.Property("BatchNumber") + .HasColumnType("numeric"); + + b.Property("CasHttpStatusCode") + .HasColumnType("integer"); + + b.Property("CasResponse") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FsbApNotified") + .HasMaxLength(10) + .HasColumnType("character varying(10)"); + + b.Property("FsbNotificationEmailLogId") + .HasColumnType("uuid"); + + b.Property("FsbNotificationSentDate") + .HasColumnType("timestamp without time zone"); + + b.Property("InvoiceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("InvoiceStatus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsRecon") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Note") + .HasColumnType("text"); + + b.Property("PayeeName") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentDate") + .HasColumnType("text"); + + b.Property("PaymentNumber") + .HasColumnType("text"); + + b.Property("PaymentStatus") + .HasColumnType("text"); + + b.Property("ReferenceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("RequesterName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("SubmissionConfirmationCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("SupplierName") + .HasColumnType("text"); + + b.Property("SupplierNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AccountCodingId"); + + b.HasIndex("FsbNotificationEmailLogId"); + + b.HasIndex("ReferenceNumber") + .IsUnique(); + + b.HasIndex("SiteId"); + + b.ToTable("PaymentRequests", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.HasIndex("TagId"); + + b.ToTable("PaymentTags", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentThresholds.PaymentThreshold", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Threshold") + .HasColumnType("numeric"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("PaymentThresholds", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AddressLine1") + .HasColumnType("text"); + + b.Property("AddressLine2") + .HasColumnType("text"); + + b.Property("AddressLine3") + .HasColumnType("text"); + + b.Property("BankAccount") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EFTAdvicePref") + .HasColumnType("text"); + + b.Property("EmailAddress") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCas") + .HasColumnType("timestamp without time zone"); + + b.Property("MarkDeletedInUse") + .HasColumnType("boolean"); + + b.Property("Number") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentGroup") + .HasColumnType("integer"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SiteProtected") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("SupplierId"); + + b.ToTable("Sites", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCAS") + .HasColumnType("timestamp without time zone"); + + b.Property("MailingAddress") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Number") + .HasColumnType("text"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SIN") + .HasColumnType("text"); + + b.Property("StandardIndustryClassification") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("Subcategory") + .HasColumnType("text"); + + b.Property("SupplierProtected") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Suppliers", "Payments"); + }); + + modelBuilder.Entity("Unity.Reporting.Domain.Configuration.ReportColumnsMap", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Mapping") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("RoleStatus") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ViewStatus") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.ToTable("ReportColumnsMaps", "Reporting"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Instances") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Question", "Question") + .WithMany("Answers") + .HasForeignKey("QuestionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", null) + .WithMany("Answers") + .HasForeignKey("ScoresheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Question"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.ScoresheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Sections") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.HasOne("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", null) + .WithMany("Values") + .HasForeignKey("WorksheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Links") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.WorksheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Sections") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicationId"); + + b.Navigation("Applicant"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithOne("ApplicantAgent") + .HasForeignKey("Unity.GrantManager.Applications.ApplicantAgent", "ApplicationId"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", "ApplicationForm") + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationStatus", "ApplicationStatus") + .WithMany("Applications") + .HasForeignKey("ApplicationStatusId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Owner") + .WithMany() + .HasForeignKey("OwnerId") + .OnDelete(DeleteBehavior.NoAction); + + b.Navigation("Applicant"); + + b.Navigation("ApplicationForm"); + + b.Navigation("ApplicationStatus"); + + b.Navigation("Owner"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationAssignments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Assignee") + .WithMany() + .HasForeignKey("AssigneeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Assignee"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.HasOne("Unity.GrantManager.Intakes.Intake", null) + .WithMany() + .HasForeignKey("IntakeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ParentFormId") + .OnDelete(DeleteBehavior.NoAction); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany("ApplicationLinks") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationTags") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AuditHistory", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.FundingHistory", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.IssueTracking", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId"); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("Assessments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("AssessorId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.HasOne("Unity.GrantManager.Contacts.Contact", null) + .WithMany() + .HasForeignKey("ContactId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.HasOne("Unity.Notifications.EmailGroups.EmailGroup", null) + .WithMany() + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.HasOne("Unity.Notifications.Emails.EmailLog", null) + .WithMany() + .HasForeignKey("EmailLogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("GroupId"); + + b.HasOne("Unity.Notifications.Templates.Subscriber", "Subscriber") + .WithMany() + .HasForeignKey("SubscriberId"); + + b.Navigation("Subscriber"); + + b.Navigation("SubscriptionGroup"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("SubscriptionGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.EmailTemplate", "EmailTemplate") + .WithMany() + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.Trigger", "Trigger") + .WithMany() + .HasForeignKey("TriggerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("EmailTemplate"); + + b.Navigation("SubscriptionGroup"); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", "PaymentRequest") + .WithMany("ExpenseApprovals") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("PaymentRequest"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.HasOne("Unity.Payments.Domain.AccountCodings.AccountCoding", "AccountCoding") + .WithMany() + .HasForeignKey("AccountCodingId") + .OnDelete(DeleteBehavior.NoAction); + + b.HasOne("Unity.Payments.Domain.Suppliers.Site", "Site") + .WithMany() + .HasForeignKey("SiteId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("AccountCoding"); + + b.Navigation("Site"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", null) + .WithMany("PaymentTags") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.HasOne("Unity.Payments.Domain.Suppliers.Supplier", "Supplier") + .WithMany("Sites") + .HasForeignKey("SupplierId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Supplier"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Navigation("Instances"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Navigation("Values"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Navigation("Links"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Navigation("ApplicantAddresses"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Navigation("ApplicantAddresses"); + + b.Navigation("ApplicantAgent"); + + b.Navigation("ApplicationAssignments"); + + b.Navigation("ApplicationLinks"); + + b.Navigation("ApplicationTags"); + + b.Navigation("Assessments"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Navigation("Applications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Navigation("ExpenseApprovals"); + + b.Navigation("PaymentTags"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Navigation("Sites"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227001110_Add_ApplicantHistory_Tables.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227001110_Add_ApplicantHistory_Tables.cs new file mode 100644 index 0000000000..6de3f30d88 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227001110_Add_ApplicantHistory_Tables.cs @@ -0,0 +1,160 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + /// + public partial class Add_ApplicantHistory_Tables : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "AuditComments", + table: "Applicants", + type: "text", + nullable: true); + + migrationBuilder.AddColumn( + name: "FundingHistoryComments", + table: "Applicants", + type: "text", + nullable: true); + + migrationBuilder.AddColumn( + name: "IssueTrackingComments", + table: "Applicants", + type: "text", + nullable: true); + + migrationBuilder.CreateTable( + name: "AuditHistories", + columns: table => new + { + Id = table.Column(type: "uuid", nullable: false), + ApplicantId = table.Column(type: "uuid", nullable: true), + AuditTrackingNumber = table.Column(type: "text", nullable: true), + AuditDate = table.Column(type: "timestamp without time zone", nullable: true), + AuditNote = table.Column(type: "text", nullable: true), + TenantId = table.Column(type: "uuid", nullable: true), + ExtraProperties = table.Column(type: "text", nullable: false), + ConcurrencyStamp = table.Column(type: "character varying(40)", maxLength: 40, nullable: false), + CreationTime = table.Column(type: "timestamp without time zone", nullable: false), + CreatorId = table.Column(type: "uuid", nullable: true), + LastModificationTime = table.Column(type: "timestamp without time zone", nullable: true), + LastModifierId = table.Column(type: "uuid", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AuditHistories", x => x.Id); + table.ForeignKey( + name: "FK_AuditHistories_Applicants_ApplicantId", + column: x => x.ApplicantId, + principalTable: "Applicants", + principalColumn: "Id"); + }); + + migrationBuilder.CreateTable( + name: "FundingHistories", + columns: table => new + { + Id = table.Column(type: "uuid", nullable: false), + ApplicantId = table.Column(type: "uuid", nullable: true), + GrantCategory = table.Column(type: "text", nullable: true), + FundingYear = table.Column(type: "integer", nullable: true), + RenewedFunding = table.Column(type: "boolean", nullable: true), + ApprovedAmount = table.Column(type: "numeric", nullable: true), + ReconsiderationAmount = table.Column(type: "numeric", nullable: true), + TotalGrantAmount = table.Column(type: "numeric", nullable: true), + FundingNotes = table.Column(type: "text", nullable: true), + TenantId = table.Column(type: "uuid", nullable: true), + ExtraProperties = table.Column(type: "text", nullable: false), + ConcurrencyStamp = table.Column(type: "character varying(40)", maxLength: 40, nullable: false), + CreationTime = table.Column(type: "timestamp without time zone", nullable: false), + CreatorId = table.Column(type: "uuid", nullable: true), + LastModificationTime = table.Column(type: "timestamp without time zone", nullable: true), + LastModifierId = table.Column(type: "uuid", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_FundingHistories", x => x.Id); + table.ForeignKey( + name: "FK_FundingHistories_Applicants_ApplicantId", + column: x => x.ApplicantId, + principalTable: "Applicants", + principalColumn: "Id"); + }); + + migrationBuilder.CreateTable( + name: "IssueTrackings", + columns: table => new + { + Id = table.Column(type: "uuid", nullable: false), + ApplicantId = table.Column(type: "uuid", nullable: true), + Year = table.Column(type: "integer", nullable: true), + IssueHeading = table.Column(type: "text", nullable: true), + IssueDescription = table.Column(type: "text", nullable: true), + Resolved = table.Column(type: "boolean", nullable: true), + ResolutionNote = table.Column(type: "text", nullable: true), + TenantId = table.Column(type: "uuid", nullable: true), + ExtraProperties = table.Column(type: "text", nullable: false), + ConcurrencyStamp = table.Column(type: "character varying(40)", maxLength: 40, nullable: false), + CreationTime = table.Column(type: "timestamp without time zone", nullable: false), + CreatorId = table.Column(type: "uuid", nullable: true), + LastModificationTime = table.Column(type: "timestamp without time zone", nullable: true), + LastModifierId = table.Column(type: "uuid", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_IssueTrackings", x => x.Id); + table.ForeignKey( + name: "FK_IssueTrackings_Applicants_ApplicantId", + column: x => x.ApplicantId, + principalTable: "Applicants", + principalColumn: "Id"); + }); + + migrationBuilder.CreateIndex( + name: "IX_AuditHistories_ApplicantId", + table: "AuditHistories", + column: "ApplicantId"); + + migrationBuilder.CreateIndex( + name: "IX_FundingHistories_ApplicantId", + table: "FundingHistories", + column: "ApplicantId"); + + migrationBuilder.CreateIndex( + name: "IX_IssueTrackings_ApplicantId", + table: "IssueTrackings", + column: "ApplicantId"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "AuditHistories"); + + migrationBuilder.DropTable( + name: "FundingHistories"); + + migrationBuilder.DropTable( + name: "IssueTrackings"); + + migrationBuilder.DropColumn( + name: "AuditComments", + table: "Applicants"); + + migrationBuilder.DropColumn( + name: "FundingHistoryComments", + table: "Applicants"); + + migrationBuilder.DropColumn( + name: "IssueTrackingComments", + table: "Applicants"); + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227210826_AddIsAiAssessmentToAssessment.Designer.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227210826_AddIsAiAssessmentToAssessment.Designer.cs new file mode 100644 index 0000000000..c68720af3d --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227210826_AddIsAiAssessmentToAssessment.Designer.cs @@ -0,0 +1,4575 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + [DbContext(typeof(GrantTenantDbContext))] + [Migration("20260227210826_AddIsAiAssessmentToAssessment")] + partial class AddIsAiAssessmentToAssessment + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.PostgreSql) + .HasAnnotation("ProductVersion", "9.0.5") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Value") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("QuestionId") + .HasColumnType("uuid"); + + b.Property("ScoresheetInstanceId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("QuestionId"); + + b.HasIndex("ScoresheetInstanceId"); + + b.ToTable("Answers", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("Questions", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Scoresheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ScoresheetId"); + + b.ToTable("ScoresheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("CustomFieldId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetInstanceId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetInstanceId"); + + b.ToTable("CustomFieldValues", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("CurrentValue") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetCorrelationId") + .HasColumnType("uuid"); + + b.Property("WorksheetCorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("WorksheetInstances", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UiAnchor") + .IsRequired() + .HasColumnType("text"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetLinks", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("Key") + .IsRequired() + .HasColumnType("text"); + + b.Property("Label") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("SectionId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("SectionId"); + + b.ToTable("CustomFields", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("Version") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.ToTable("Worksheets", "Flex"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Order") + .HasColumnType("bigint"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("WorksheetId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("WorksheetId"); + + b.ToTable("WorksheetSections", "Flex"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantName") + .IsRequired() + .HasMaxLength(600) + .HasColumnType("character varying(600)"); + + b.Property("ApproxNumberOfEmployees") + .HasColumnType("text"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FiscalDay") + .HasColumnType("integer"); + + b.Property("FiscalMonth") + .HasColumnType("text"); + + b.Property("IndigenousOrgInd") + .HasColumnType("text"); + + b.Property("IsDuplicated") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MatchPercentage") + .HasColumnType("numeric"); + + b.Property("NonRegOrgName") + .HasColumnType("text"); + + b.Property("NonRegisteredBusinessName") + .HasColumnType("text"); + + b.Property("OrgName") + .HasColumnType("text"); + + b.Property("OrgNumber") + .HasColumnType("text"); + + b.Property("OrgStatus") + .HasColumnType("text"); + + b.Property("OrganizationSize") + .HasColumnType("text"); + + b.Property("OrganizationType") + .HasColumnType("text"); + + b.Property("RedStop") + .HasColumnType("boolean"); + + b.Property("Sector") + .HasColumnType("text"); + + b.Property("SectorSubSectorIndustryDesc") + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("StartedOperatingDate") + .HasColumnType("date"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SubSector") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UnityApplicantId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantName"); + + b.ToTable("Applicants", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AddressType") + .HasColumnType("integer"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Postal") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("Street") + .HasColumnType("text"); + + b.Property("Street2") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Unit") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicantAddresses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("BceidBusinessGuid") + .HasColumnType("uuid"); + + b.Property("BceidBusinessName") + .HasColumnType("text"); + + b.Property("BceidUserGuid") + .HasColumnType("uuid"); + + b.Property("BceidUserName") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactOrder") + .HasColumnType("integer"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IdentityEmail") + .HasColumnType("text"); + + b.Property("IdentityName") + .HasColumnType("text"); + + b.Property("IdentityProvider") + .HasColumnType("text"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsConfirmed") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSubUser") + .HasColumnType("text"); + + b.Property("Phone") + .HasColumnType("text"); + + b.Property("Phone2") + .HasColumnType("text"); + + b.Property("Phone2Extension") + .HasColumnType("text"); + + b.Property("PhoneExtension") + .HasColumnType("text"); + + b.Property("RoleForApplicant") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationId") + .IsUnique(); + + b.ToTable("ApplicantAgents", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AIAnalysis") + .HasColumnType("text"); + + b.Property("AIScoresheetAnswers") + .HasColumnType("jsonb"); + + b.Property("Acquisition") + .HasColumnType("text"); + + b.Property("ApplicantElectoralDistrict") + .HasColumnType("text"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationStatusId") + .HasColumnType("uuid"); + + b.Property("ApprovedAmount") + .HasColumnType("numeric"); + + b.Property("AssessmentResultDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AssessmentResultStatus") + .HasColumnType("text"); + + b.Property("AssessmentStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Community") + .HasColumnType("text"); + + b.Property("CommunityPopulation") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractExecutionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ContractNumber") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeclineRational") + .HasColumnType("text"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("DueDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DueDiligenceStatus") + .HasColumnType("text"); + + b.Property("EconomicRegion") + .HasColumnType("text"); + + b.Property("ElectoralDistrict") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinalDecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("Forestry") + .HasColumnType("text"); + + b.Property("ForestryFocus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LikelihoodOfFunding") + .HasColumnType("text"); + + b.Property("Notes") + .HasColumnType("text"); + + b.Property("NotificationDate") + .HasColumnType("timestamp without time zone"); + + b.Property("OwnerId") + .HasColumnType("uuid"); + + b.Property("Payload") + .HasColumnType("jsonb"); + + b.Property("PercentageTotalProjectBudget") + .HasColumnType("double precision"); + + b.Property("Place") + .HasColumnType("text"); + + b.Property("ProjectEndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectFundingTotal") + .HasColumnType("numeric"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ProjectStartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ProjectSummary") + .HasColumnType("text"); + + b.Property("ProposalDate") + .HasColumnType("timestamp without time zone"); + + b.Property("RecommendedAmount") + .HasColumnType("numeric"); + + b.Property("ReferenceNo") + .IsRequired() + .HasColumnType("text"); + + b.Property("RegionalDistrict") + .HasColumnType("text"); + + b.Property("RequestedAmount") + .HasColumnType("numeric"); + + b.Property("RiskRanking") + .HasColumnType("text"); + + b.Property("SigningAuthorityBusinessPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityCellPhone") + .HasColumnType("text"); + + b.Property("SigningAuthorityEmail") + .HasColumnType("text"); + + b.Property("SigningAuthorityFullName") + .HasColumnType("text"); + + b.Property("SigningAuthorityTitle") + .HasColumnType("text"); + + b.Property("SubStatus") + .HasColumnType("text"); + + b.Property("SubmissionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TotalProjectBudget") + .HasColumnType("numeric"); + + b.Property("TotalScore") + .HasColumnType("integer"); + + b.Property("UnityApplicationId") + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.HasIndex("ApplicationStatusId"); + + b.HasIndex("OwnerId"); + + b.ToTable("Applications", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssigneeId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Duty") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssigneeId"); + + b.ToTable("ApplicationAssignments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AISummary") + .HasColumnType("text"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsFileId") + .HasColumnType("text"); + + b.Property("ChefsSubmissionId") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationChefsFileAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactEmail") + .HasColumnType("text"); + + b.Property("ContactFullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactMobilePhone") + .HasColumnType("text"); + + b.Property("ContactTitle") + .HasColumnType("text"); + + b.Property("ContactType") + .IsRequired() + .HasColumnType("text"); + + b.Property("ContactWorkPhone") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationContact", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("ApiKey") + .HasColumnType("text"); + + b.Property("ApplicationFormDescription") + .HasColumnType("text"); + + b.Property("ApplicationFormName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("AttemptedConnectionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("Category") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsCriteriaFormGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ConnectionHttpStatus") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultPaymentGroup") + .HasColumnType("integer"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ElectoralDistrictAddressType") + .HasColumnType("integer"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormHierarchy") + .HasColumnType("integer"); + + b.Property("IntakeId") + .HasColumnType("uuid"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsDirectApproval") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ParentFormId") + .HasColumnType("uuid"); + + b.Property("Payable") + .HasColumnType("boolean"); + + b.Property("PaymentApprovalThreshold") + .HasColumnType("numeric"); + + b.Property("Prefix") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("PreventPayment") + .HasColumnType("boolean"); + + b.Property("RenderFormIoToHtml") + .HasColumnType("boolean"); + + b.Property("ScoresheetId") + .HasColumnType("uuid"); + + b.Property("SuffixType") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("IntakeId"); + + b.HasIndex("ParentFormId"); + + b.ToTable("ApplicationForms", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("ApplicationFormVersionId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ChefsSubmissionGuid") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormVersionId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("RenderedHTML") + .HasColumnType("text"); + + b.Property("ReportData") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Submission") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormSubmissions", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationFormId") + .HasColumnType("uuid"); + + b.Property("AvailableChefsFields") + .HasColumnType("text"); + + b.Property("ChefsApplicationFormGuid") + .HasColumnType("text"); + + b.Property("ChefsFormVersionGuid") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FormSchema") + .HasColumnType("jsonb"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Published") + .HasColumnType("boolean"); + + b.Property("ReportColumns") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportKeys") + .IsRequired() + .HasColumnType("text"); + + b.Property("ReportViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SubmissionHeaderMapping") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Version") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationFormId"); + + b.ToTable("ApplicationFormVersion", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LinkType") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("text") + .HasDefaultValue("Related"); + + b.Property("LinkedApplicationId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.ToTable("ApplicationLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StatusCode") + .IsRequired() + .HasMaxLength(250) + .HasColumnType("character varying(250)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("StatusCode") + .IsUnique(); + + b.ToTable("ApplicationStatuses", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("TagId"); + + b.ToTable("ApplicationTags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.ToTable("AssessmentAttachments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("ApprovalRecommended") + .HasColumnType("boolean"); + + b.Property("AssessorId") + .HasColumnType("uuid"); + + b.Property("CleanGrowth") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("EconomicImpact") + .HasColumnType("integer"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FinancialAnalysis") + .HasColumnType("integer"); + + b.Property("InclusiveGrowth") + .HasColumnType("integer"); + + b.Property("IsAiAssessment") + .HasColumnType("boolean"); + + b.Property("IsComplete") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Status") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("AssessorId"); + + b.ToTable("Assessments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicationId"); + + b.HasIndex("CommenterId"); + + b.ToTable("ApplicationComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("Comment") + .IsRequired() + .HasColumnType("text"); + + b.Property("CommenterId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PinDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AssessmentId"); + + b.HasIndex("CommenterId"); + + b.ToTable("AssessmentComments", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.Contact", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("HomePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MobilePhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Title") + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("WorkPhoneExtension") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.Property("WorkPhoneNumber") + .HasMaxLength(50) + .HasColumnType("character varying(50)"); + + b.HasKey("Id"); + + b.ToTable("Contacts", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContactId") + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("IsPrimary") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("RelatedEntityId") + .HasColumnType("uuid"); + + b.Property("RelatedEntityType") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("Role") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RelatedEntityType", "RelatedEntityId"); + + b.HasIndex("ContactId", "RelatedEntityType", "RelatedEntityId"); + + b.ToTable("ContactLinks", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.GlobalTag.Tag", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Tags", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Identity.Person", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Badge") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FullName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("OidcDisplayName") + .IsRequired() + .HasColumnType("text"); + + b.Property("OidcSub") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("OidcSub"); + + b.ToTable("Persons", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Intakes.Intake", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("Budget") + .HasColumnType("double precision"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EndDate") + .HasColumnType("timestamp without time zone"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IntakeName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("character varying(255)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("StartDate") + .HasColumnType("timestamp without time zone"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Intakes", (string)null); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.ToTable("EmailGroupUsers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApplicationId") + .HasColumnType("uuid"); + + b.Property("AssessmentId") + .HasColumnType("uuid"); + + b.Property("BCC") + .IsRequired() + .HasColumnType("text"); + + b.Property("Body") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CC") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesHttpStatusCode") + .HasColumnType("text"); + + b.Property("ChesMsgId") + .HasColumnType("uuid"); + + b.Property("ChesResponse") + .IsRequired() + .HasColumnType("text"); + + b.Property("ChesStatus") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FromAddress") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestIds") + .IsRequired() + .HasColumnType("text"); + + b.Property("Priority") + .IsRequired() + .HasColumnType("text"); + + b.Property("RetryAttempts") + .HasColumnType("integer"); + + b.Property("SendOnDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("SentDateTime") + .HasColumnType("timestamp without time zone"); + + b.Property("Status") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("Tag") + .IsRequired() + .HasColumnType("text"); + + b.Property("TemplateName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ToAddress") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("EmailLogs", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContentType") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DisplayName") + .HasMaxLength(1024) + .HasColumnType("character varying(1024)"); + + b.Property("EmailLogId") + .HasColumnType("uuid"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasColumnType("text"); + + b.Property("FileSize") + .HasColumnType("bigint"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("S3ObjectKey") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Time") + .HasColumnType("timestamp without time zone"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("EmailLogId"); + + b.HasIndex("S3ObjectKey"); + + b.ToTable("EmailLogAttachments", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.EmailTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BodyHTML") + .IsRequired() + .HasColumnType("text"); + + b.Property("BodyText") + .IsRequired() + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("SendFrom") + .IsRequired() + .HasColumnType("text"); + + b.Property("Subject") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("EmailTemplates", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Subscriber", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Email") + .IsRequired() + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FirstName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastName") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Subscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("SubscriptionGroups", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("GroupId") + .HasColumnType("uuid"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriberId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("GroupId"); + + b.HasIndex("SubscriberId"); + + b.ToTable("SubscriptionGroupSubscribers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TemplateVariable", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MapTo") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Token") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("TemplateVariables", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.Trigger", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("Active") + .HasColumnType("boolean"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("InternalName") + .IsRequired() + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Triggers", "Notifications"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("SubscriptionGroupId") + .HasColumnType("uuid"); + + b.Property("TemplateId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TriggerId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.HasIndex("SubscriptionGroupId"); + + b.HasIndex("TemplateId"); + + b.HasIndex("TriggerId"); + + b.ToTable("TriggerSubscriptions", "Notifications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.AccountCodings.AccountCoding", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("Description") + .HasMaxLength(35) + .HasColumnType("character varying(35)"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("MinistryClient") + .IsRequired() + .HasColumnType("text"); + + b.Property("ProjectNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("Responsibility") + .IsRequired() + .HasColumnType("text"); + + b.Property("ServiceLine") + .IsRequired() + .HasColumnType("text"); + + b.Property("Stob") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("AccountCodings", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentConfigurations.PaymentConfiguration", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DefaultAccountCodingId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentIdPrefix") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("PaymentConfigurations", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DecisionDate") + .HasColumnType("timestamp without time zone"); + + b.Property("DecisionUserId") + .HasColumnType("uuid"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Type") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.ToTable("ExpenseApprovals", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AccountCodingId") + .HasColumnType("uuid"); + + b.Property("Amount") + .HasColumnType("numeric"); + + b.Property("BatchName") + .IsRequired() + .HasColumnType("text"); + + b.Property("BatchNumber") + .HasColumnType("numeric"); + + b.Property("CasHttpStatusCode") + .HasColumnType("integer"); + + b.Property("CasResponse") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("ContractNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FsbApNotified") + .HasMaxLength(10) + .HasColumnType("character varying(10)"); + + b.Property("FsbNotificationEmailLogId") + .HasColumnType("uuid"); + + b.Property("FsbNotificationSentDate") + .HasColumnType("timestamp without time zone"); + + b.Property("InvoiceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("InvoiceStatus") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsRecon") + .HasColumnType("boolean"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Note") + .HasColumnType("text"); + + b.Property("PayeeName") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentDate") + .HasColumnType("text"); + + b.Property("PaymentNumber") + .HasColumnType("text"); + + b.Property("PaymentStatus") + .HasColumnType("text"); + + b.Property("ReferenceNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("RequesterName") + .IsRequired() + .HasColumnType("text"); + + b.Property("SiteId") + .HasColumnType("uuid"); + + b.Property("Status") + .HasColumnType("integer"); + + b.Property("SubmissionConfirmationCode") + .IsRequired() + .HasColumnType("text"); + + b.Property("SupplierName") + .HasColumnType("text"); + + b.Property("SupplierNumber") + .IsRequired() + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("AccountCodingId"); + + b.HasIndex("FsbNotificationEmailLogId"); + + b.HasIndex("ReferenceNumber") + .IsUnique(); + + b.HasIndex("SiteId"); + + b.ToTable("PaymentRequests", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("PaymentRequestId") + .HasColumnType("uuid"); + + b.Property("TagId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("PaymentRequestId"); + + b.HasIndex("TagId"); + + b.ToTable("PaymentTags", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentThresholds.PaymentThreshold", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Threshold") + .HasColumnType("numeric"); + + b.Property("UserId") + .HasColumnType("uuid"); + + b.HasKey("Id"); + + b.ToTable("PaymentThresholds", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("AddressLine1") + .HasColumnType("text"); + + b.Property("AddressLine2") + .HasColumnType("text"); + + b.Property("AddressLine3") + .HasColumnType("text"); + + b.Property("BankAccount") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("Country") + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("EFTAdvicePref") + .HasColumnType("text"); + + b.Property("EmailAddress") + .HasColumnType("text"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCas") + .HasColumnType("timestamp without time zone"); + + b.Property("MarkDeletedInUse") + .HasColumnType("boolean"); + + b.Property("Number") + .IsRequired() + .HasColumnType("text"); + + b.Property("PaymentGroup") + .HasColumnType("integer"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SiteProtected") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("SupplierId") + .HasColumnType("uuid"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("SupplierId"); + + b.ToTable("Sites", "Payments"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("BusinessNumber") + .HasColumnType("text"); + + b.Property("City") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uuid") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("boolean") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("LastUpdatedInCAS") + .HasColumnType("timestamp without time zone"); + + b.Property("MailingAddress") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Number") + .HasColumnType("text"); + + b.Property("PostalCode") + .HasColumnType("text"); + + b.Property("ProviderId") + .HasColumnType("text"); + + b.Property("Province") + .HasColumnType("text"); + + b.Property("SIN") + .HasColumnType("text"); + + b.Property("StandardIndustryClassification") + .HasColumnType("text"); + + b.Property("Status") + .HasColumnType("text"); + + b.Property("Subcategory") + .HasColumnType("text"); + + b.Property("SupplierProtected") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.ToTable("Suppliers", "Payments"); + }); + + modelBuilder.Entity("Unity.Reporting.Domain.Configuration.ReportColumnsMap", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uuid"); + + b.Property("CorrelationId") + .HasColumnType("uuid"); + + b.Property("CorrelationProvider") + .IsRequired() + .HasColumnType("text"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("Mapping") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("RoleStatus") + .HasColumnType("integer"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("ViewName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ViewStatus") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.ToTable("ReportColumnsMaps", "Reporting"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Instances") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Answer", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Question", "Question") + .WithMany("Answers") + .HasForeignKey("QuestionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", null) + .WithMany("Answers") + .HasForeignKey("ScoresheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Question"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.ScoresheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Scoresheets.Scoresheet", "Scoresheet") + .WithMany("Sections") + .HasForeignKey("ScoresheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Scoresheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.CustomFieldValue", b => + { + b.HasOne("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", null) + .WithMany("Values") + .HasForeignKey("WorksheetInstanceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetLinks.WorksheetLink", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Links") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.CustomField", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.WorksheetSection", "Section") + .WithMany("Fields") + .HasForeignKey("SectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Section"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.HasOne("Unity.Flex.Domain.Worksheets.Worksheet", "Worksheet") + .WithMany("Sections") + .HasForeignKey("WorksheetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Worksheet"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAddress", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicantAddresses") + .HasForeignKey("ApplicationId"); + + b.Navigation("Applicant"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicantAgent", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithOne("ApplicantAgent") + .HasForeignKey("Unity.GrantManager.Applications.ApplicantAgent", "ApplicationId"); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", "Applicant") + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", "ApplicationForm") + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationStatus", "ApplicationStatus") + .WithMany("Applications") + .HasForeignKey("ApplicationStatusId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Owner") + .WithMany() + .HasForeignKey("OwnerId") + .OnDelete(DeleteBehavior.NoAction); + + b.Navigation("Applicant"); + + b.Navigation("ApplicationForm"); + + b.Navigation("ApplicationStatus"); + + b.Navigation("Owner"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAssignment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationAssignments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", "Assignee") + .WithMany() + .HasForeignKey("AssigneeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Assignee"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationChefsFileAttachment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationContact", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationForm", b => + { + b.HasOne("Unity.GrantManager.Intakes.Intake", null) + .WithMany() + .HasForeignKey("IntakeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ParentFormId") + .OnDelete(DeleteBehavior.NoAction); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormSubmission", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationFormVersion", b => + { + b.HasOne("Unity.GrantManager.Applications.ApplicationForm", null) + .WithMany() + .HasForeignKey("ApplicationFormId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany("ApplicationLinks") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationTags", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("ApplicationTags") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.AssessmentAttachment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", "Application") + .WithMany("Assessments") + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("AssessorId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Application"); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.ApplicationComment", b => + { + b.HasOne("Unity.GrantManager.Applications.Application", null) + .WithMany() + .HasForeignKey("ApplicationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Comments.AssessmentComment", b => + { + b.HasOne("Unity.GrantManager.Assessments.Assessment", null) + .WithMany() + .HasForeignKey("AssessmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.Identity.Person", null) + .WithMany() + .HasForeignKey("CommenterId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.GrantManager.Contacts.ContactLink", b => + { + b.HasOne("Unity.GrantManager.Contacts.Contact", null) + .WithMany() + .HasForeignKey("ContactId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.EmailGroups.EmailGroupUser", b => + { + b.HasOne("Unity.Notifications.EmailGroups.EmailGroup", null) + .WithMany() + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Emails.EmailLogAttachment", b => + { + b.HasOne("Unity.Notifications.Emails.EmailLog", null) + .WithMany() + .HasForeignKey("EmailLogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.SubscriptionGroupSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("GroupId"); + + b.HasOne("Unity.Notifications.Templates.Subscriber", "Subscriber") + .WithMany() + .HasForeignKey("SubscriberId"); + + b.Navigation("Subscriber"); + + b.Navigation("SubscriptionGroup"); + }); + + modelBuilder.Entity("Unity.Notifications.Templates.TriggerSubscription", b => + { + b.HasOne("Unity.Notifications.Templates.SubscriptionGroup", "SubscriptionGroup") + .WithMany() + .HasForeignKey("SubscriptionGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.EmailTemplate", "EmailTemplate") + .WithMany() + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.Notifications.Templates.Trigger", "Trigger") + .WithMany() + .HasForeignKey("TriggerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("EmailTemplate"); + + b.Navigation("SubscriptionGroup"); + + b.Navigation("Trigger"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.ExpenseApproval", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", "PaymentRequest") + .WithMany("ExpenseApprovals") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("PaymentRequest"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.HasOne("Unity.Payments.Domain.AccountCodings.AccountCoding", "AccountCoding") + .WithMany() + .HasForeignKey("AccountCodingId") + .OnDelete(DeleteBehavior.NoAction); + + b.HasOne("Unity.Payments.Domain.Suppliers.Site", "Site") + .WithMany() + .HasForeignKey("SiteId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("AccountCoding"); + + b.Navigation("Site"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentTags.PaymentTag", b => + { + b.HasOne("Unity.Payments.Domain.PaymentRequests.PaymentRequest", null) + .WithMany("PaymentTags") + .HasForeignKey("PaymentRequestId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Unity.GrantManager.GlobalTag.Tag", "Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.NoAction) + .IsRequired(); + + b.Navigation("Tag"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Site", b => + { + b.HasOne("Unity.Payments.Domain.Suppliers.Supplier", "Supplier") + .WithMany("Sites") + .HasForeignKey("SupplierId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Supplier"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.ScoresheetInstances.ScoresheetInstance", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Question", b => + { + b.Navigation("Answers"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.Scoresheet", b => + { + b.Navigation("Instances"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Scoresheets.ScoresheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.WorksheetInstances.WorksheetInstance", b => + { + b.Navigation("Values"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.Worksheet", b => + { + b.Navigation("Links"); + + b.Navigation("Sections"); + }); + + modelBuilder.Entity("Unity.Flex.Domain.Worksheets.WorksheetSection", b => + { + b.Navigation("Fields"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Applicant", b => + { + b.Navigation("ApplicantAddresses"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.Application", b => + { + b.Navigation("ApplicantAddresses"); + + b.Navigation("ApplicantAgent"); + + b.Navigation("ApplicationAssignments"); + + b.Navigation("ApplicationLinks"); + + b.Navigation("ApplicationTags"); + + b.Navigation("Assessments"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationStatus", b => + { + b.Navigation("Applications"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.PaymentRequests.PaymentRequest", b => + { + b.Navigation("ExpenseApprovals"); + + b.Navigation("PaymentTags"); + }); + + modelBuilder.Entity("Unity.Payments.Domain.Suppliers.Supplier", b => + { + b.Navigation("Sites"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227210826_AddIsAiAssessmentToAssessment.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227210826_AddIsAiAssessmentToAssessment.cs new file mode 100644 index 0000000000..1f02f87527 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/20260227210826_AddIsAiAssessmentToAssessment.cs @@ -0,0 +1,49 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Unity.GrantManager.Migrations.TenantMigrations +{ + /// + public partial class AddIsAiAssessmentToAssessment : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "IsAiAssessment", + table: "Assessments", + type: "boolean", + nullable: false, + defaultValue: false); + + migrationBuilder.AlterColumn( + name: "Prefix", + table: "ApplicationForms", + type: "character varying(100)", + maxLength: 100, + nullable: true, + oldClrType: typeof(string), + oldType: "text", + oldNullable: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "IsAiAssessment", + table: "Assessments"); + + migrationBuilder.AlterColumn( + name: "Prefix", + table: "ApplicationForms", + type: "text", + nullable: true, + oldClrType: typeof(string), + oldType: "character varying(100)", + oldMaxLength: 100, + oldNullable: true); + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/GrantTenantDbContextModelSnapshot.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/GrantTenantDbContextModelSnapshot.cs index fd2aa83735..491ceaa2c5 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/GrantTenantDbContextModelSnapshot.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Migrations/TenantMigrations/GrantTenantDbContextModelSnapshot.cs @@ -798,6 +798,9 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("ApproxNumberOfEmployees") .HasColumnType("text"); + b.Property("AuditComments") + .HasColumnType("text"); + b.Property("BusinessNumber") .HasColumnType("text"); @@ -827,12 +830,18 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("FiscalMonth") .HasColumnType("text"); + b.Property("FundingHistoryComments") + .HasColumnType("text"); + b.Property("IndigenousOrgInd") .HasColumnType("text"); b.Property("IsDuplicated") .HasColumnType("boolean"); + b.Property("IssueTrackingComments") + .HasColumnType("text"); + b.Property("LastModificationTime") .HasColumnType("timestamp without time zone") .HasColumnName("LastModificationTime"); @@ -1667,7 +1676,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("numeric"); b.Property("Prefix") - .HasColumnType("text"); + .HasMaxLength(100) + .HasColumnType("character varying(100)"); b.Property("PreventPayment") .HasColumnType("boolean"); @@ -2087,6 +2097,192 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.ToTable("AssessmentAttachments", (string)null); }); + modelBuilder.Entity("Unity.GrantManager.Applications.AuditHistory", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("AuditDate") + .HasColumnType("timestamp without time zone"); + + b.Property("AuditNote") + .HasColumnType("text"); + + b.Property("AuditTrackingNumber") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.ToTable("AuditHistories", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.FundingHistory", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ApprovedAmount") + .HasColumnType("numeric"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("FundingNotes") + .HasColumnType("text"); + + b.Property("FundingYear") + .HasColumnType("integer"); + + b.Property("GrantCategory") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ReconsiderationAmount") + .HasColumnType("numeric"); + + b.Property("RenewedFunding") + .HasColumnType("boolean"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("TotalGrantAmount") + .HasColumnType("numeric"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.ToTable("FundingHistories", (string)null); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.IssueTracking", b => + { + b.Property("Id") + .HasColumnType("uuid"); + + b.Property("ApplicantId") + .HasColumnType("uuid"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("character varying(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uuid") + .HasColumnName("CreatorId"); + + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("text") + .HasColumnName("ExtraProperties"); + + b.Property("IssueDescription") + .HasColumnType("text"); + + b.Property("IssueHeading") + .HasColumnType("text"); + + b.Property("LastModificationTime") + .HasColumnType("timestamp without time zone") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uuid") + .HasColumnName("LastModifierId"); + + b.Property("ResolutionNote") + .HasColumnType("text"); + + b.Property("Resolved") + .HasColumnType("boolean"); + + b.Property("TenantId") + .HasColumnType("uuid") + .HasColumnName("TenantId"); + + b.Property("Year") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ApplicantId"); + + b.ToTable("IssueTrackings", (string)null); + }); + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => { b.Property("Id") @@ -2136,6 +2332,9 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("InclusiveGrowth") .HasColumnType("integer"); + b.Property("IsAiAssessment") + .HasColumnType("boolean"); + b.Property("IsComplete") .HasColumnType("boolean"); @@ -4280,7 +4479,7 @@ protected override void BuildModel(ModelBuilder modelBuilder) modelBuilder.Entity("Unity.GrantManager.Applications.ApplicationLink", b => { b.HasOne("Unity.GrantManager.Applications.Application", null) - .WithMany() + .WithMany("ApplicationLinks") .HasForeignKey("ApplicationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); @@ -4314,6 +4513,27 @@ protected override void BuildModel(ModelBuilder modelBuilder) .IsRequired(); }); + modelBuilder.Entity("Unity.GrantManager.Applications.AuditHistory", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.FundingHistory", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId"); + }); + + modelBuilder.Entity("Unity.GrantManager.Applications.IssueTracking", b => + { + b.HasOne("Unity.GrantManager.Applications.Applicant", null) + .WithMany() + .HasForeignKey("ApplicantId"); + }); + modelBuilder.Entity("Unity.GrantManager.Assessments.Assessment", b => { b.HasOne("Unity.GrantManager.Applications.Application", "Application") @@ -4539,6 +4759,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Navigation("ApplicationAssignments"); + b.Navigation("ApplicationLinks"); + b.Navigation("ApplicationTags"); b.Navigation("Assessments"); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/AssessmentRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/AssessmentRepository.cs index bad0bf58d2..bb14a784d1 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/AssessmentRepository.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/AssessmentRepository.cs @@ -61,13 +61,14 @@ public async Task> GetListWithAssess EndDate = assessment.EndDate, Status = assessment.Status, IsComplete = assessment.IsComplete, - ApprovalRecommended = assessment.ApprovalRecommended, - FinancialAnalysis = assessment.FinancialAnalysis, - EconomicImpact = assessment.EconomicImpact, - InclusiveGrowth = assessment.InclusiveGrowth, + ApprovalRecommended = assessment.ApprovalRecommended, + IsAiAssessment = assessment.IsAiAssessment, + FinancialAnalysis = assessment.FinancialAnalysis, + EconomicImpact = assessment.EconomicImpact, + InclusiveGrowth = assessment.InclusiveGrowth, CleanGrowth = assessment.CleanGrowth }); return await query.ToListAsync(); - } + } } \ No newline at end of file diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/AuditHistoryRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/AuditHistoryRepository.cs new file mode 100644 index 0000000000..9e51bba158 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/AuditHistoryRepository.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; +using Unity.GrantManager.Applications; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +namespace Unity.GrantManager.Repositories; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IAuditHistoryRepository))] +public class AuditHistoryRepository : EfCoreRepository, IAuditHistoryRepository +{ + public AuditHistoryRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) + { + } + + public async Task> GetByApplicantIdAsync(Guid applicantId) + { + var dbContext = await GetDbContextAsync(); + return await dbContext.AuditHistories + .Where(x => x.ApplicantId == applicantId) + .ToListAsync(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/ContactLinkRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/ContactLinkRepository.cs new file mode 100644 index 0000000000..f8f7f5b952 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/ContactLinkRepository.cs @@ -0,0 +1,16 @@ +using System; +using Unity.GrantManager.Contacts; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +namespace Unity.GrantManager.Repositories +{ + [Dependency(ReplaceServices = true)] + [ExposeServices(typeof(IContactLinkRepository))] + // This pattern is an implementation ontop of ABP framework, will not change this + public class ContactLinkRepository(IDbContextProvider dbContextProvider) : EfCoreRepository(dbContextProvider), IContactLinkRepository + { + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/ContactRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/ContactRepository.cs new file mode 100644 index 0000000000..e83324eaed --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/ContactRepository.cs @@ -0,0 +1,16 @@ +using System; +using Unity.GrantManager.Contacts; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +namespace Unity.GrantManager.Repositories +{ + [Dependency(ReplaceServices = true)] + [ExposeServices(typeof(IContactRepository))] + // This pattern is an implementation ontop of ABP framework, will not change this + public class ContactRepository(IDbContextProvider dbContextProvider) : EfCoreRepository(dbContextProvider), IContactRepository + { + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/FundingHistoryRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/FundingHistoryRepository.cs new file mode 100644 index 0000000000..5f15cd1ab2 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/FundingHistoryRepository.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; +using Unity.GrantManager.Applications; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +namespace Unity.GrantManager.Repositories; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IFundingHistoryRepository))] +public class FundingHistoryRepository : EfCoreRepository, IFundingHistoryRepository +{ + public FundingHistoryRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) + { + } + + public async Task> GetByApplicantIdAsync(Guid applicantId) + { + var dbContext = await GetDbContextAsync(); + return await dbContext.FundingHistories + .Where(x => x.ApplicantId == applicantId) + .ToListAsync(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/IssueTrackingRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/IssueTrackingRepository.cs new file mode 100644 index 0000000000..98a37cd08f --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/IssueTrackingRepository.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; +using Unity.GrantManager.Applications; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; + +namespace Unity.GrantManager.Repositories; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IIssueTrackingRepository))] +public class IssueTrackingRepository : EfCoreRepository, IIssueTrackingRepository +{ + public IssueTrackingRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) + { + } + + public async Task> GetByApplicantIdAsync(Guid applicantId) + { + var dbContext = await GetDbContextAsync(); + return await dbContext.IssueTrackings + .Where(x => x.ApplicantId == applicantId) + .ToListAsync(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/SequenceRepository.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/SequenceRepository.cs index ae6e6d3eab..34b740a911 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/SequenceRepository.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Repositories/SequenceRepository.cs @@ -1,83 +1,111 @@ using System; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Storage; using Microsoft.Extensions.Logging; using Npgsql; using Unity.GrantManager.Applications; using Unity.GrantManager.EntityFrameworkCore; using Volo.Abp.Domain.Repositories.EntityFrameworkCore; using Volo.Abp.EntityFrameworkCore; -using Volo.Abp.Uow; namespace Unity.GrantManager.Repositories; -public class SequenceRepository(IDbContextProvider dbContextProvider, IUnitOfWorkManager unitOfWorkManager) : EfCoreRepository(dbContextProvider), ISequenceRepository +public class SequenceRepository(IDbContextProvider dbContextProvider) + : EfCoreRepository(dbContextProvider), ISequenceRepository { - public async Task GetNextSequenceNumberAsync(string prefix) { var tenantId = CurrentTenant.Id ?? Guid.Empty; - + + var dbContext = await GetDbContextAsync(); + + var currentTransaction = dbContext.Database.CurrentTransaction + ?? throw new InvalidOperationException( + $"GetNextSequenceNumberAsync requires an active ambient transaction. " + + $"TenantId: {tenantId}, Prefix: {prefix}"); + + var npgsqlTransaction = currentTransaction.GetDbTransaction() as NpgsqlTransaction + ?? throw new InvalidOperationException( + "The current database transaction is not an NpgsqlTransaction."); + + var schema = dbContext.Model.GetDefaultSchema(); + if (string.IsNullOrEmpty(schema)) + { + // Use 'public' as default for PostgreSQL if no schema is configured + schema = "public"; + } + var commandBuilder = new NpgsqlCommandBuilder(); + var safeSchema = commandBuilder.QuoteIdentifier(schema); + + // Schema is sanitized via NpgsqlCommandBuilder.QuoteIdentifier; table name is a known + // lowercase constant that requires no quoting. All user-supplied values (tenantId, prefix) + // are passed as parameters, not interpolated into the SQL string. + const string sql = @" + INSERT INTO {0}.unity_sequence_counters (tenant_id, prefix, current_value) + VALUES (@tenantId, @prefix, 1) + ON CONFLICT (tenant_id, prefix) DO UPDATE + SET current_value = unity_sequence_counters.current_value + 1 + RETURNING current_value;"; + + var sqlWithSchema = string.Format(sql, safeSchema); + + // Use a SAVEPOINT so that a DB error during the upsert rolls back only the counter + // statement, leaving the outer transaction alive. This preserves graceful degradation: + // the caller catches the re-thrown exception and continues with UnityApplicationId = null. + const string savepointName = "unity_seq_counter"; + await npgsqlTransaction.SaveAsync(savepointName); + try { - // Create a new isolated unit of work to prevent transaction pollution - using var uow = unitOfWorkManager.Begin( - requiresNew: true, - isTransactional: true - ); - - var dbContext = await GetDbContextAsync(); var connection = dbContext.Database.GetDbConnection(); - - var schema = dbContext.Model.GetDefaultSchema(); - - if (string.IsNullOrEmpty(schema)) - { - // Use 'public' as default for PostgreSQL if no schema is configured - schema = "public"; - } - - var commandBuilder = new NpgsqlCommandBuilder(); - var safeSchema = commandBuilder.QuoteIdentifier(schema); - - // Build SQL command with properly quoted schema identifier to prevent SQL injection - var sqlCommand = string.Format("SELECT {0}.get_next_sequence_number(@tenantId, @prefix);", safeSchema); - using var command = connection.CreateCommand(); - // Schema is sanitized via QuoteIdentifier, parameters are properly parameterized -#pragma warning disable S2077 // SQL queries should not be dynamically formatted - command.CommandText = sqlCommand; +#pragma warning disable S2077 // Schema identifier is sanitized via NpgsqlCommandBuilder.QuoteIdentifier; all user values are parameterized + command.CommandText = sqlWithSchema; #pragma warning restore S2077 + command.Transaction = npgsqlTransaction; command.Parameters.Add(new NpgsqlParameter("tenantId", tenantId)); command.Parameters.Add(new NpgsqlParameter("prefix", prefix)); - - if (connection.State != System.Data.ConnectionState.Open) - { - await connection.OpenAsync(); - } - + var result = await command.ExecuteScalarAsync(); - var sequenceNumber = (long)(result ?? 1L); - + var sequenceNumber = Convert.ToInt64(result ?? 1L); + + await npgsqlTransaction.ReleaseAsync(savepointName); + Logger.LogInformation( "Successfully generated sequence number {SequenceNumber} for prefix {Prefix} in tenant {TenantId}", sequenceNumber, prefix, tenantId); - - await uow.CompleteAsync(); + return sequenceNumber; } catch (Exception ex) { - Logger.LogError(ex, - "Failed to execute get_next_sequence_number function. " + + try + { + // ROLLBACK TO SAVEPOINT recovers the outer transaction from the aborted state. + // RELEASE cleans up the savepoint so it can be reused if this method is called + // again within the same transaction. + await npgsqlTransaction.RollbackAsync(savepointName); + await npgsqlTransaction.ReleaseAsync(savepointName); + } + catch (Exception rollbackEx) + { + Logger.LogError(rollbackEx, + "Failed to rollback to savepoint '{SavepointName}'. " + + "The outer transaction may be in an invalid state.", + savepointName); + } + + Logger.LogError(ex, + "Failed to execute sequence counter upsert. " + "TenantId: {TenantId}, Prefix: {Prefix}. " + - "This error is isolated and will not affect the main transaction.", + "Outer transaction remains alive via savepoint rollback.", tenantId, prefix); - // throw to be handled by the caller's graceful degradation + // Re-throw so the caller's graceful degradation (null UnityApplicationId) kicks in. throw new InvalidOperationException( - $"Failed to generate sequence number for tenant '{tenantId}' with prefix '{prefix}'. ", + $"Failed to generate sequence number for tenant '{tenantId}' with prefix '{prefix}'.", ex); } } -} \ No newline at end of file +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Scripts/unitydb-communities-script.sql b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Scripts/unitydb-communities-script.sql new file mode 100644 index 0000000000..c82ffd847c --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Scripts/unitydb-communities-script.sql @@ -0,0 +1,21 @@ + +DO $$ +DECLARE + json_data jsonb := '[{"Name" : "Becher Bay 1", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Central Saanich", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Cole Bay 3", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Colwood", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "East Saanich 2", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Esquimalt", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Esquimalt", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Galiano Island 9", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Gordon River 2", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Highlands", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Juan de Fuca (Part 1)", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Juan de Fuca (Part 2)", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Langford", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Metchosin", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "New Songhees 1A", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "North Saanich", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Oak Bay", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Saanich", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Saltspring Island", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Sidney", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Sooke", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Southern Gulf Islands", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "South Saanich 1", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "T''Sou-ke", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Union Bay 4", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Victoria", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "View Royal", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Abbotsford", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Aitchelitch 9", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Albert Flat 5", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Boothrouyd 5B", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Boothroyd 13", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Boston Bar 1A", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Bucktum 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Chawathil 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Cheam 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Chehalis 5", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Chilliwack", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Coqualeetza", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Douglas 8", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley A", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley B", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley C", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley D", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley E", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley F", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley G", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley H", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Harrison Hot Springs", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Holachten 8", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Hope", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Inkahtsaph 6", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kahmoose 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kent", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kopchitchin 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kwawkwawapilt 6", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Lakahahmen 11", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Langley 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Lukseetsissum 9", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Matsqui Main 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Mission", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Ohamil 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Paqulh", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Peters 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Popkum 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Puckatholetchin 11", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Q''alatkú7em", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Ruby Creek 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Sachteen", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Saddle Rock 9", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Schelowat 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Schkam 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Scowlitz 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Seabird Island", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skawahlook 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skookumchuck 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skookumchuck 4A", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skowkale", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skwah 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skwali 3", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skway 5", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skweahm 10", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Soowahlie 14", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Speyum 3", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Spuzzum 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Squawkum Creek 3", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Squiaala", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Stullawheets 8", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tipella 7", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tseatah 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tuckkwiowhum 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tzeachten 13", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Upper Sumas 6", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Yakweakwioose 12", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Yale Town 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Anmore", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Barnston Island 3", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Belcarra", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Bowen Island", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Burnaby", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Burrard Inlet 3", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Capilano 5", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Coquitlam", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Coquitlam 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Coquitlam 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Delta", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Katzie 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Katzie 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Kitsilano 6", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Langley", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Langley", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Lions Bay", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Maple Ridge", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Matsqui 4", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "McMillan Island 6", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Metro Vancouver A", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Mission 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Musqueam 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Musqueam 4", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "New Westminster", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "North Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "North Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Pitt Meadows", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Port Coquitlam", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Port Moody", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Richmond", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Semiahmoo", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Seymour Creek 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Surrey", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Tsawwassen", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "West Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "White Rock", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Whonnock 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Chekwelp 26", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Gibsons", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sechelt", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sechelt (Part)", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast A", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast B", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast D", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast E", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast F", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Bridge River 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Cayoosh Creek 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Cheakamus 11", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Chilhil 6", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 10", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 11", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 12", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 1B", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 1D", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 3", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 3A", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain Creek 8", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Kowtain 17", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Lillooet", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Lillooet 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "McCartney''s Flat 4", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Mission 5", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Mount Currie", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Necait 6", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Nequatque", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Nesikep 6", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Nesuch 3", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Pashilqua 2", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Pavilion 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Pemberton", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Seaichem 16", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Seton Lake 5", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Slosh 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet A", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet B", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet C", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet D", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Stawamus 24", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Towinock 2", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Waiwakum 14", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Whistler", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Whitecap 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Yekwaupsum 18", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Alexis 9", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Ashnola 10", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Blind Creek 6", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Chopaka 7 & 8", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Chuchuwayha 2", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Keremeos", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Lower Similkameen 2", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Lulu 5", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen A", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen B", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen C", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen D", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen E", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen F", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen G", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen H", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen I", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Oliver", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Osoyoos", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Osoyoos 1", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Penticton", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Penticton 1", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Princeton", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Summerland", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "105 Mile Post 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Ashcroft", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Ashcroft 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Barriere", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Basque 18", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Bonaparte 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Boothroyd 8A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Cache Creek", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Canoe Creek 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Canoe Creek 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Chase", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Chuchhraischin", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Clearwater", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Clinton", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Coldwater 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Douglas Lake 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Entlqwekkinh 19", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Halhalaeden", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Hamilton Creek 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "High Bar 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Inkluckcheen", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Inklyuhkinatko 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Joeyaska 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kamloops", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kamloops 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kanaka Bar", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kitzowit 20", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Klahkamich 17", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kleetlekut 22", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Klickkumcheen 18", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kloklowuck 7", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kumcheen 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Logan Lake", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Louis Creek 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lower Hat Creek 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 4A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 4E", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 9A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 9B", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Marble Canyon 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Merritt", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nekalliston 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nekliptum 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Neskonlith", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nickel Palm 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nickeyeah 25", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nicola Lake 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nicola Mameet 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nicomen 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nkaih 10", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nohomeen 23", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nooaitch 10", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "North Thompson 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nuuautin 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Oregon Jack Creek 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Papyum 27", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Paska Island 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Paul''s Basin 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Pemynoos 9", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Peq-Paq 22", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Sahhaltkum 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Seah 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Shackan 11", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Shawniken 4B", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Siska Flat", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Siska Flat 5B", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skeetchestn", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skuppah 2A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skuppah 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skwayaynope 26", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Spences Bridge", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Spintlum Flat 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Squaam 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Stequmwhulpa 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Stryen 9", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Sun Peaks Mountain", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola A (Wells Gray Country)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola B (Thompson Headwaters)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola E (Bonaparte Plateau)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola I (Blue Sky Country)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola J (Copper Desert Country)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola L (Grasslands)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola O (Lower North Thompson)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola P (Rivers and the Peaks)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Toops 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Tsaukan 12", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Twoyqhalsht 16", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Upper Hat Creek 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Upper Nepa 6", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Whispering Pines 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Yawaucht 11", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Zacht 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Zoht 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Central Okanagan", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Central Okanagan West", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Duck Lake 7", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Kelowna", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Lake Country", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Peachland", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Tsinstikeptum 10", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Tsinstikeptum 9", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "West Kelowna", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Armstrong", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Coldstream", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Enderby", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Enderby 2", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Harris 3", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Lumby", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan B", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan C", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan D", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan E", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan F", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Okanagan (Part) 1", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Priest''s Valley 6", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Spallumcheen", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Vernon", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Chum Creek 2", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap A", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap B", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap C", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap D", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap E", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap F", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap G", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Golden", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Hustalen 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "North Bay 5", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Okanagan (Part) 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Quaaout 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Revelstoke", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Salmon Arm", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Salmon River 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Scotch Creek 4", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Sicamous", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Switsemalph", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Switsemalph 3", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Canal Flats", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Cassimayooks (Mayook) 5", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Columbia Lake 3", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Cranbrook", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay A", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay B", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay C", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay E", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay F", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay G", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Elkford", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Fernie", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Invermere", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Isidore''s Ranch 4", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Kimberley", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Kootenay 1", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Radium Hot Springs", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Shuswap", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Sparwood", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "St. Mary''s", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Tobacco Plains 2", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Chemainus 13", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Lake", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley A", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley B", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley C", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley D", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley E", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley F", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley G", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley H", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley I", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Duncan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Est-Patrolas 4", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Halalt 2", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Kil-pah-las 3", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Ladysmith", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Lake Cowichan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Lyacksun 3", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Malachan 11", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Malahat 11", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "North Cowichan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Oyster Bay 12", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Penelakut Island 7", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Portier Pass 5", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Shingle Point 4", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Squaw-Hay-One 11", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Theik 2", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Tsussie 6", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Tzart-Lam 5", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Castlegar", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay A", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay B", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay C", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay D", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay E", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay F", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay G", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay H", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay I", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay J", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay K", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Creston", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Creston 1", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Kaslo", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Lower Kootenay 1C", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Lower Kootenay 5", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Nakusp", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Nelson", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "New Denver", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Salmo", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Silverton", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Slocan", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Fruitvale", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Grand Forks", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Greenwood", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary A", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary C / Christina Lake", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary D / Rural Grand Forks", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary E / West Boundary", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Midway", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Montrose", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Rossland", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Trail", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Warfield", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Agats Meadow 8", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexandria", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 14", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 16", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 21", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 34", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alkali Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alkali Lake 4A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Anahim''s Flat 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Anahim''s Meadow", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Baezaeko River 27", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Baptiste Meadow 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Betty Creek 18", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canim Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canim Lake 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canim Lake 4", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canoe Creek 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo B", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo C", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo D", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo E", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo F", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo G", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo H", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo I", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo J", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo K", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo L", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Charley Boy''s Meadow 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Chilco Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Chilco Lake 1A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Coglistiko River 29", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Deep Creek 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Dog Creek 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Dog Creek 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Dragon Lake 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Euchinico Creek 17", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Fishtrap 19", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Garden", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Johny Sticks 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Kluskus 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Lezbye 6", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Little Springs", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Lohbiee 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Michel Gardens 36", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Nazco 20", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "One Hundred Mile House", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Puntzi Lake 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Quesnel", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Quesnel 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Redstone Flat 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Redstone Flat 1A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Salmon River Meadow 7", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Sandy Harry 4", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Soda Creek 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Squinas 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Stone 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Sundayman''s Meadow 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Swan Lake 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Tanakut 4", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Thomas Squinas Ranch 2A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Toosey 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Towdystan Lake 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Trout Lake Alec 16", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Ulkatcho 13", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Ulkatcho 14A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Wells", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Williams Lake", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Williams Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Windy Mouth 7", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Fort George 2", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George A", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George C", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George D", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George E", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George F", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George G", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George H", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Mackenzie", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "McBride", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "McCleod Lake 5", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "McLeod Lake 1", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Prince George", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Valemount", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Daajing Giids", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Dolphin Island 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Kulkayu (Hartley Bay) 4", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Kulkayu (Hartley Bay) 4A", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Lax Kw''alaams 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Masset", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Masset 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast A", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast C", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast D", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast E", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Port Clements", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Port Edward", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Prince Rupert", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "S1/2 Tsimpsean 2", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Skidegate 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Tlaa Gaa Aawtlaas 28", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Anlaw 4", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Babine 17", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Bulkley River 19", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Coryatsaqua (Moricetown) 2", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Dease Lake 9", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitanmaax 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitanyow 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitsegukla 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitwangak 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Guhthe Tah 12", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Hagwilget 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Hazelton", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Iskut 6", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kispiox 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitamaat 2", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitasoo 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine A", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine B", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine C (Part 1)", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine C (Part 2)", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine D", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine E", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine F", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitselas 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitsumkaylum 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kshish 4", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kulspai 6", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Moricetown 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "New Hazelton", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Nisga''a", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Sik-e-dakh 2", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Stewart", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Tahltan 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Telegraph Creek", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Terrace", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Babine 16", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Babine 25", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Babine 6", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Babine Lake 21B", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Binche 2", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako B", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako C", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako D", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako E", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako F", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako G", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Burns Lake", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Burns Lake 18", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Cheslatta 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Duncan Lake 2", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Dzitline Lee 9", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Fort St. James", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Francois Lake 7", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Fraser Lake", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Granisle", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Houston", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Jean Baptiste 28", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Laketown 3", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Mission Lands 17", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Nak''azdli", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Nautley (Fort Fraser) 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Nedoats 11", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Noonla 6", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "North Tacla Lake", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Omineca 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Palling 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Poison Creek 17A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Seaspunkut 4", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Skins Lake 16A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Skins Lake 16B", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Smithers", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Sowchea 3", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Stellaquo (Stella) 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Stony Creek 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tache 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tacla Lake (Ferry Landing) 9", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tadinlay 15", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tatla''t East 2", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tatla West 11", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Telkwa", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Uncha Lake 13A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Vanderhoof", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Williams Prairie Meadow 1A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Woyenne 27", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Ye Koo Che 3", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Dease River 1", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Five Mile Point 3", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Good Hope Lake", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Liard River 3", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Lower Post", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Stikine Region", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Unnamed 10", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Blueberry River 205", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Chetwynd", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Dawson Creek", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Doig River 206", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "East Moberly Lake 169", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Finlay River 6", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Fort St. John", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Fort Ware 1", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Halfway River 168", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Hudson''s Hope", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Ingenika Point", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Mesilinka 7", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River B", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River C", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River D", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River E", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Pouce Coupe", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Taylor", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Tumbler Ridge", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "West Moberly Lake 168A", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Wochiigii Nané?", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Fontas 1", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Fort Nelson 2", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Kahntah 3", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Northern Rockies", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Prophet River 4", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Lantzville", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo A", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo B", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo C", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo E", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo F", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo G", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo H", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo River", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo Town 1", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanoose", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Parksville", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Qualicum", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Qualicum Beach", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Ahahswinis 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot A", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot B", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot C", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot D", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot E", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot F", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Anacla 12", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Clakamucus 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Elhlateese 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Esowista 3", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Hesquiat 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Ittatsoo 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Klehkoot 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Macoah 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Marktosis 15", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Numukamis 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Opitsat 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Port Alberni", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Refuge Cove 6", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Sachsa 4", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Tin Wis 11", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Tofino", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Tsahaheh 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Ucluelet", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Ahaminaquus 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Campbell River", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Campbell River 11", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Cape Mudge 10", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Chenahkint 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Ehatis 11", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Gold River", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Homalco 9", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Houpsitas 6", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Nenagwas 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Oclucje 7", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Quinsam 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Sayward", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Squirrel Cove 8", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona A", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona B", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona C", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona D (Oyster Bay - Buttle Lake)", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Tahsis", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Tork 7", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Tsa Xana 18", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Village Island 1", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Yuquot 1", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Zeballos", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Comox", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox 1", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox Valley A", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox Valley B (Lazo North)", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox Valley C (Puntledge - Black Creek)", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Courtenay", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Cumberland", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Pentledge 2", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Powell River", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet A", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet B", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet C", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet D", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet E", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "Sechelt (Part)", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "Sliammon 1", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "Alert Bay", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Alert Bay", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Dead Point 5", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Fort Rupert 1", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Gwayasdums 1", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Hope Island 1", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Hopetown 10A", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Kippase 2", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington A", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington B", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington C", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington D", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Nimpkish 2", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Port Alice", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Port Hardy", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Port McNeill", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Quaee 7", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Quatsino Subdivision 18", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Thomas Point 5", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Thomas Point 5A", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Tsulquate 4", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Bella Bella 1", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Bella Coola 1", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast A", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast C", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast D", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast E", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Katit 1", "Type" : "", "RegionalDistrictCode" : "9"}]'; +BEGIN + -- Cleanup existing data in "Communities" table + DELETE FROM public."Communities"; + -- Insert into "Communities" table + INSERT INTO public."Communities" + ("Id", "Name", "Type","RegionalDistrictCode", "ExtraProperties", "ConcurrencyStamp", "CreationTime") + SELECT + gen_random_uuid(), + data->>'Name', + data->>'Type', + data->>'RegionalDistrictCode', + '', + '', + pg_catalog.now() + FROM jsonb_array_elements(json_data::jsonb) AS data; + +END $$; \ No newline at end of file diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Unity.GrantManager.EntityFrameworkCore.csproj b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Unity.GrantManager.EntityFrameworkCore.csproj index 8ac379d27c..6d06183c85 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Unity.GrantManager.EntityFrameworkCore.csproj +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.EntityFrameworkCore/Unity.GrantManager.EntityFrameworkCore.csproj @@ -10,6 +10,7 @@ + @@ -18,6 +19,7 @@ + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.HttpApi/Controllers/ApplicantProfileController.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.HttpApi/Controllers/ApplicantProfileController.cs index bff4d0f6bf..127a2861ba 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.HttpApi/Controllers/ApplicantProfileController.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.HttpApi/Controllers/ApplicantProfileController.cs @@ -1,6 +1,7 @@ -using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; -using Unity.GrantManager.Applicants; +using Unity.GrantManager.ApplicantProfile; using Unity.GrantManager.Controllers.Authentication; using Volo.Abp.AspNetCore.Mvc; @@ -12,8 +13,20 @@ namespace Unity.GrantManager.Controllers public class ApplicantProfileController(IApplicantProfileAppService applicantProfileAppService) : AbpControllerBase { + /// + /// Retrieves applicant profile data based on the specified key. + /// The response data property is polymorphic and varies by key: + /// + /// CONTACTINFO — returns + /// ORGINFO — returns + /// ADDRESSINFO — returns + /// SUBMISSIONINFO — returns + /// PAYMENTINFO — returns + /// + /// [HttpGet] [Route("profile")] + [ProducesResponseType(typeof(ApplicantProfileDto), StatusCodes.Status200OK)] public async Task GetApplicantProfileAsync([FromQuery] ApplicantProfileInfoRequest applicantProfileRequest) { var profile = await applicantProfileAppService.GetApplicantProfileAsync(applicantProfileRequest); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/GrantManagerWebModule.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/GrantManagerWebModule.cs index 4a345330cc..caf91fc168 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/GrantManagerWebModule.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/GrantManagerWebModule.cs @@ -460,6 +460,7 @@ private static void ConfigureSwaggerServices(IServiceCollection services) Type = SecuritySchemeType.ApiKey, Scheme = "ApiKeyScheme" }); + options.SchemaFilter(); } ); } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/AuditHistoryModalViewModel.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/AuditHistoryModalViewModel.cs new file mode 100644 index 0000000000..24d47fa4ad --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/AuditHistoryModalViewModel.cs @@ -0,0 +1,22 @@ +using System; +using System.ComponentModel; +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class AuditHistoryModalViewModel +{ + [HiddenInput] + public Guid ApplicantId { get; set; } + + [DisplayName("Audit Tracking Number")] + public string? AuditTrackingNumber { get; set; } + + [DisplayName("Audit Date")] + [DataType(DataType.Date)] + public DateTime? AuditDate { get; set; } + + [DisplayName("Audit Note")] + public string? AuditNote { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateAuditHistoryModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateAuditHistoryModal.cshtml new file mode 100644 index 0000000000..d4a700486e --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateAuditHistoryModal.cshtml @@ -0,0 +1,66 @@ +@page +@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal +@model Unity.GrantManager.Web.Pages.ApplicantHistory.CreateAuditHistoryModal +@{ + Layout = null; +} + +
+ + + + + +
+ + +
Audit Tracking Number is required.
+
+ +
+ + +
Audit Date is required.
+
+ +
+ + +
+
+ + + + +
+
+ + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateAuditHistoryModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateAuditHistoryModal.cshtml.cs new file mode 100644 index 0000000000..1e3c4f2ed5 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateAuditHistoryModal.cshtml.cs @@ -0,0 +1,42 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class CreateAuditHistoryModal : AbpPageModel +{ + [BindProperty] + public AuditHistoryModalViewModel? AuditHistoryForm { get; set; } + + private readonly IApplicantHistoryAppService _applicantHistoryAppService; + + public CreateAuditHistoryModal(IApplicantHistoryAppService applicantHistoryAppService) + { + _applicantHistoryAppService = applicantHistoryAppService; + } + + public void OnGet(Guid applicantId) + { + AuditHistoryForm = new AuditHistoryModalViewModel + { + ApplicantId = applicantId + }; + } + + public async Task OnPostAsync() + { + var dto = new CreateUpdateAuditHistoryDto + { + ApplicantId = AuditHistoryForm!.ApplicantId, + AuditTrackingNumber = AuditHistoryForm.AuditTrackingNumber, + AuditDate = AuditHistoryForm.AuditDate, + AuditNote = AuditHistoryForm.AuditNote + }; + + await _applicantHistoryAppService.CreateAuditHistoryAsync(dto); + return NoContent(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateFundingHistoryModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateFundingHistoryModal.cshtml new file mode 100644 index 0000000000..bcfb1c8477 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateFundingHistoryModal.cshtml @@ -0,0 +1,103 @@ +@page +@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal +@model Unity.GrantManager.Web.Pages.ApplicantHistory.CreateFundingHistoryModal +@{ + Layout = null; +} + +
+ + + + + +
+ + +
+ +
+ + +
+ +
+ +
+
+ + +
+
+
+ +
+
+ $ + + +
+
+ +
+
+ $ + + +
+
+ +
+
+ $ + + +
+
+ +
+ + +
+
+ + + + +
+
+ + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateFundingHistoryModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateFundingHistoryModal.cshtml.cs new file mode 100644 index 0000000000..f8a9332304 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateFundingHistoryModal.cshtml.cs @@ -0,0 +1,46 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class CreateFundingHistoryModal : AbpPageModel +{ + [BindProperty] + public FundingHistoryModalViewModel? FundingHistoryForm { get; set; } + + private readonly IApplicantHistoryAppService _applicantHistoryAppService; + + public CreateFundingHistoryModal(IApplicantHistoryAppService applicantHistoryAppService) + { + _applicantHistoryAppService = applicantHistoryAppService; + } + + public void OnGet(Guid applicantId) + { + FundingHistoryForm = new FundingHistoryModalViewModel + { + ApplicantId = applicantId + }; + } + + public async Task OnPostAsync() + { + var dto = new CreateUpdateFundingHistoryDto + { + ApplicantId = FundingHistoryForm!.ApplicantId, + GrantCategory = FundingHistoryForm.GrantCategory, + FundingYear = FundingHistoryForm.FundingYear, + RenewedFunding = FundingHistoryForm.RenewedFunding, + ApprovedAmount = FundingHistoryForm.ApprovedAmount, + ReconsiderationAmount = FundingHistoryForm.ReconsiderationAmount, + TotalGrantAmount = FundingHistoryForm.TotalGrantAmount, + FundingNotes = FundingHistoryForm.FundingNotes + }; + + await _applicantHistoryAppService.CreateFundingHistoryAsync(dto); + return NoContent(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateIssueTrackingModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateIssueTrackingModal.cshtml new file mode 100644 index 0000000000..db341e2b97 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateIssueTrackingModal.cshtml @@ -0,0 +1,66 @@ +@page +@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal +@model Unity.GrantManager.Web.Pages.ApplicantHistory.CreateIssueTrackingModal +@{ + Layout = null; +} + +
+ + + + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+ + +
+
+
+ +
+ + +
+
+ + + + +
+
+ + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateIssueTrackingModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateIssueTrackingModal.cshtml.cs new file mode 100644 index 0000000000..3bbf0f11ed --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/CreateIssueTrackingModal.cshtml.cs @@ -0,0 +1,44 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class CreateIssueTrackingModal : AbpPageModel +{ + [BindProperty] + public IssueTrackingModalViewModel? IssueTrackingForm { get; set; } + + private readonly IApplicantHistoryAppService _applicantHistoryAppService; + + public CreateIssueTrackingModal(IApplicantHistoryAppService applicantHistoryAppService) + { + _applicantHistoryAppService = applicantHistoryAppService; + } + + public void OnGet(Guid applicantId) + { + IssueTrackingForm = new IssueTrackingModalViewModel + { + ApplicantId = applicantId + }; + } + + public async Task OnPostAsync() + { + var dto = new CreateUpdateIssueTrackingDto + { + ApplicantId = IssueTrackingForm!.ApplicantId, + Year = IssueTrackingForm.Year, + IssueHeading = IssueTrackingForm.IssueHeading, + IssueDescription = IssueTrackingForm.IssueDescription, + Resolved = IssueTrackingForm.Resolved, + ResolutionNote = IssueTrackingForm.ResolutionNote + }; + + await _applicantHistoryAppService.CreateIssueTrackingAsync(dto); + return NoContent(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditAuditHistoryModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditAuditHistoryModal.cshtml new file mode 100644 index 0000000000..c1e0fbda3f --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditAuditHistoryModal.cshtml @@ -0,0 +1,67 @@ +@page +@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal +@model Unity.GrantManager.Web.Pages.ApplicantHistory.EditAuditHistoryModal +@{ + Layout = null; +} + +
+ + + + + + +
+ + +
Audit Tracking Number is required.
+
+ +
+ + +
Audit Date is required.
+
+ +
+ + +
+
+ + + + +
+
+ + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditAuditHistoryModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditAuditHistoryModal.cshtml.cs new file mode 100644 index 0000000000..c34409c8b3 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditAuditHistoryModal.cshtml.cs @@ -0,0 +1,50 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class EditAuditHistoryModal : AbpPageModel +{ + [BindProperty(SupportsGet = true)] + public Guid Id { get; set; } + + [BindProperty] + public AuditHistoryModalViewModel? AuditHistoryForm { get; set; } + + private readonly IApplicantHistoryAppService _applicantHistoryAppService; + + public EditAuditHistoryModal(IApplicantHistoryAppService applicantHistoryAppService) + { + _applicantHistoryAppService = applicantHistoryAppService; + } + + public async Task OnGetAsync(Guid id) + { + Id = id; + var record = await _applicantHistoryAppService.GetAuditHistoryAsync(id); + AuditHistoryForm = new AuditHistoryModalViewModel + { + ApplicantId = record.ApplicantId ?? Guid.Empty, + AuditTrackingNumber = record.AuditTrackingNumber, + AuditDate = record.AuditDate, + AuditNote = record.AuditNote + }; + } + + public async Task OnPostAsync() + { + var dto = new CreateUpdateAuditHistoryDto + { + ApplicantId = AuditHistoryForm!.ApplicantId, + AuditTrackingNumber = AuditHistoryForm.AuditTrackingNumber, + AuditDate = AuditHistoryForm.AuditDate, + AuditNote = AuditHistoryForm.AuditNote + }; + + await _applicantHistoryAppService.UpdateAuditHistoryAsync(Id, dto); + return NoContent(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditFundingHistoryModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditFundingHistoryModal.cshtml new file mode 100644 index 0000000000..b0e9ee813b --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditFundingHistoryModal.cshtml @@ -0,0 +1,104 @@ +@page +@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal +@model Unity.GrantManager.Web.Pages.ApplicantHistory.EditFundingHistoryModal +@{ + Layout = null; +} + +
+ + + + + + +
+ + +
+ +
+ + +
+ +
+ +
+
+ + +
+
+
+ +
+
+ $ + + +
+
+ +
+
+ $ + + +
+
+ +
+
+ $ + + +
+
+ +
+ + +
+
+ + + + +
+
+ + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditFundingHistoryModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditFundingHistoryModal.cshtml.cs new file mode 100644 index 0000000000..33e98e1f38 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditFundingHistoryModal.cshtml.cs @@ -0,0 +1,58 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class EditFundingHistoryModal : AbpPageModel +{ + [BindProperty(SupportsGet = true)] + public Guid Id { get; set; } + + [BindProperty] + public FundingHistoryModalViewModel? FundingHistoryForm { get; set; } + + private readonly IApplicantHistoryAppService _applicantHistoryAppService; + + public EditFundingHistoryModal(IApplicantHistoryAppService applicantHistoryAppService) + { + _applicantHistoryAppService = applicantHistoryAppService; + } + + public async Task OnGetAsync(Guid id) + { + Id = id; + var record = await _applicantHistoryAppService.GetFundingHistoryAsync(id); + FundingHistoryForm = new FundingHistoryModalViewModel + { + ApplicantId = record.ApplicantId ?? Guid.Empty, + GrantCategory = record.GrantCategory, + FundingYear = record.FundingYear, + RenewedFunding = record.RenewedFunding, + ApprovedAmount = record.ApprovedAmount, + ReconsiderationAmount = record.ReconsiderationAmount, + TotalGrantAmount = record.TotalGrantAmount, + FundingNotes = record.FundingNotes + }; + } + + public async Task OnPostAsync() + { + var dto = new CreateUpdateFundingHistoryDto + { + ApplicantId = FundingHistoryForm!.ApplicantId, + GrantCategory = FundingHistoryForm.GrantCategory, + FundingYear = FundingHistoryForm.FundingYear, + RenewedFunding = FundingHistoryForm.RenewedFunding, + ApprovedAmount = FundingHistoryForm.ApprovedAmount, + ReconsiderationAmount = FundingHistoryForm.ReconsiderationAmount, + TotalGrantAmount = FundingHistoryForm.TotalGrantAmount, + FundingNotes = FundingHistoryForm.FundingNotes + }; + + await _applicantHistoryAppService.UpdateFundingHistoryAsync(Id, dto); + return NoContent(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditIssueTrackingModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditIssueTrackingModal.cshtml new file mode 100644 index 0000000000..e2026fd636 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditIssueTrackingModal.cshtml @@ -0,0 +1,67 @@ +@page +@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal +@model Unity.GrantManager.Web.Pages.ApplicantHistory.EditIssueTrackingModal +@{ + Layout = null; +} + +
+ + + + + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+ + +
+
+
+ +
+ + +
+
+ + + + +
+
+ + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditIssueTrackingModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditIssueTrackingModal.cshtml.cs new file mode 100644 index 0000000000..88c743afe6 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/EditIssueTrackingModal.cshtml.cs @@ -0,0 +1,54 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class EditIssueTrackingModal : AbpPageModel +{ + [BindProperty(SupportsGet = true)] + public Guid Id { get; set; } + + [BindProperty] + public IssueTrackingModalViewModel? IssueTrackingForm { get; set; } + + private readonly IApplicantHistoryAppService _applicantHistoryAppService; + + public EditIssueTrackingModal(IApplicantHistoryAppService applicantHistoryAppService) + { + _applicantHistoryAppService = applicantHistoryAppService; + } + + public async Task OnGetAsync(Guid id) + { + Id = id; + var record = await _applicantHistoryAppService.GetIssueTrackingAsync(id); + IssueTrackingForm = new IssueTrackingModalViewModel + { + ApplicantId = record.ApplicantId ?? Guid.Empty, + Year = record.Year, + IssueHeading = record.IssueHeading, + IssueDescription = record.IssueDescription, + Resolved = record.Resolved, + ResolutionNote = record.ResolutionNote + }; + } + + public async Task OnPostAsync() + { + var dto = new CreateUpdateIssueTrackingDto + { + ApplicantId = IssueTrackingForm!.ApplicantId, + Year = IssueTrackingForm.Year, + IssueHeading = IssueTrackingForm.IssueHeading, + IssueDescription = IssueTrackingForm.IssueDescription, + Resolved = IssueTrackingForm.Resolved, + ResolutionNote = IssueTrackingForm.ResolutionNote + }; + + await _applicantHistoryAppService.UpdateIssueTrackingAsync(Id, dto); + return NoContent(); + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/FundingHistoryModalViewModel.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/FundingHistoryModalViewModel.cs new file mode 100644 index 0000000000..819265002b --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/FundingHistoryModalViewModel.cs @@ -0,0 +1,36 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.ComponentModel; +using System.ComponentModel.DataAnnotations; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class FundingHistoryModalViewModel +{ + [HiddenInput] + public Guid ApplicantId { get; set; } + + [DisplayName("Grant Category")] + public string? GrantCategory { get; set; } + + [DisplayName("Funding Year")] + public int? FundingYear { get; set; } + + [DisplayName("Renewed Funding")] + public bool? RenewedFunding { get; set; } + + [DisplayName("Approved Amount")] + [DataType(DataType.Currency)] + public decimal? ApprovedAmount { get; set; } + + [DisplayName("Reconsideration Amount")] + [DataType(DataType.Currency)] + public decimal? ReconsiderationAmount { get; set; } + + [DisplayName("Total Grant Amount")] + [DataType(DataType.Currency)] + public decimal? TotalGrantAmount { get; set; } + + [DisplayName("Funding Notes")] + public string? FundingNotes { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/IssueTrackingModalViewModel.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/IssueTrackingModalViewModel.cs new file mode 100644 index 0000000000..2877253c28 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantHistory/IssueTrackingModalViewModel.cs @@ -0,0 +1,26 @@ +using System; +using System.ComponentModel; +using Microsoft.AspNetCore.Mvc; + +namespace Unity.GrantManager.Web.Pages.ApplicantHistory; + +public class IssueTrackingModalViewModel +{ + [HiddenInput] + public Guid ApplicantId { get; set; } + + [DisplayName("Year")] + public int? Year { get; set; } + + [DisplayName("Issue Heading")] + public string? IssueHeading { get; set; } + + [DisplayName("Issue Description")] + public string? IssueDescription { get; set; } + + [DisplayName("Resolved")] + public bool? Resolved { get; set; } + + [DisplayName("Resolution Note")] + public string? ResolutionNote { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.cshtml index d0cc9134f6..5e9f9aefa3 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.cshtml @@ -67,14 +67,13 @@ @*-------- Submissions Section END ---------*@ - @*-------- Payments Section ---------*@ - -
-
Under Construction
- @*-------- await Component.InvokeAsync("ApplicantPayments", new { applicantId = Model.ApplicantId }) ---------*@ + @*-------- History Section ---------*@ + +
+ @await Component.InvokeAsync("ApplicantHistory", new { applicantId = Model.ApplicantId })
- @*-------- Payments Section END ---------*@ + @*-------- History Section END ---------*@ @@ -177,4 +176,4 @@
- \ No newline at end of file + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.css index 0fb63a2056..8d77b2fed5 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.css @@ -21,7 +21,7 @@ /* Left panel tabs scrolling */ #detailsTab .tab-content { - overflow-y: scroll; + overflow-y: auto; overflow-x: hidden; height: calc(100vh - 220px); } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.js index b8b668979a..6b95640637 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Details.js @@ -31,6 +31,7 @@ function initializeApplicantDetailsPage() { setTimeout(function () { $('#main-loading').fadeOut(300, function () { $('.fade-in-load').addClass('visible'); + applyTabHeightOffset(); }); }, 500); @@ -82,6 +83,18 @@ function adjustVisibleTablesInContainer(containerId) { }); } +function applyTabHeightOffset() { + const detailsTab = document.getElementById('detailsTab'); + if (!detailsTab) return; + const tabNav = detailsTab.querySelector('ul.nav-tabs, ul.nav'); + const tabContent = detailsTab.querySelector('.tab-content'); + if (!tabNav || !tabContent) return; + const baseOffset = 175; + const totalOffset = baseOffset + tabNav.clientHeight; + tabContent.style.height = `calc(100vh - ${totalOffset}px)`; + tabContent.style.overflowY = 'auto'; +} + function initializeResizableDivider() { const divider = document.getElementById('main-divider'); const leftPanel = document.getElementById('main-left'); @@ -114,6 +127,7 @@ function initializeResizableDivider() { // Resize DataTables during panel resize debouncedResizeAwareDataTables(); + applyTabHeightOffset(); localStorage.setItem(storageKey, leftPercentage.toString()); } }; @@ -150,6 +164,7 @@ function initializeResizableDivider() { }); window.addEventListener('resize', restoreDividerPosition); + window.addEventListener('resize', applyTabHeightOffset); } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Index.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Index.js index 09f86ab778..0ff7065093 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Index.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Applicants/Index.js @@ -528,6 +528,7 @@ $(function () { pagingEnabled: true, reorderEnabled: true, languageSetValues, + fixedHeaders: true, dataTableName: 'ApplicantsTable', dynamicButtonContainerId: 'dynamicButtonContainerId', // Add state handling to validate and clear corrupted states diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationContact/EditContactModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationContact/EditContactModal.cshtml index 4370847408..0ca46aa5db 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationContact/EditContactModal.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationContact/EditContactModal.cshtml @@ -10,6 +10,10 @@ Layout = null; } + +@* NOTE: Dependency /Pages/ApplicationContact/EditContactModal.js is included through ApplicationContactsWidget *@ + + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationContact/EditContactModal.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationContact/EditContactModal.js new file mode 100644 index 0000000000..a0bdff0ab1 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationContact/EditContactModal.js @@ -0,0 +1,46 @@ +(function ($) { + abp.modals.editOrDeleteContactModal = function () { + let initModal = function (publicApi, args) { + let modalManager = publicApi; + + $('#DeleteContactButton').click(handleDeleteContact); + + function handleDeleteContact(e) { + e.preventDefault(); + abp.message.confirm('Are you sure to delete this contact?') + .then(processDeleteConfirmation); + } + + function processDeleteConfirmation(confirmed) { + if (confirmed) { + deleteContact(); + } + } + + function deleteContact() { + try { + unity.grantManager.grantApplications.applicationContact + .delete(args.id) + .done(onContactDeleted) + .fail(onDeleteFailure); + } catch (error) { + onDeleteFailure(error); + } + } + + function onContactDeleted() { + modalManager.close(); + PubSub.publish("refresh_application_contacts"); + abp.notify.success('The contact has been deleted.'); + } + + function onDeleteFailure(error) { + abp.notify.error('Contact deletion failed.'); + if (error) { + console.log(error); + } + } + }; + return { initModal: initModal }; + } +})(jQuery); \ No newline at end of file diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.css index d3a8413268..890f0aeb4b 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.css @@ -12,11 +12,6 @@ margin: 0.25rem; } -#ApplicationFormsTable_wrapper .dt-scroll-body { - max-height: calc(100vh - 350px); - overflow-y: scroll; -} - #FormsManageDropdown a { cursor: pointer; } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.js index df02685741..05cd641f8d 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationForms/Index.js @@ -128,6 +128,7 @@ dynamicButtonContainerId: 'dynamicButtonContainerId', useNullPlaceholder: true, externalSearchId: 'search-forms', + fixedHeaders: true }); createModal.onResult(function () { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationLinks/ApplicationLinksModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationLinks/ApplicationLinksModal.cshtml.cs index 715b1af77f..4a4656c0e6 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationLinks/ApplicationLinksModal.cshtml.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationLinks/ApplicationLinksModal.cshtml.cs @@ -119,7 +119,35 @@ public async Task OnPostAsync() { List? selectedLinksWithTypes = JsonConvert.DeserializeObject>(LinksWithTypes); List? grantApplications = JsonConvert.DeserializeObject>(GrantApplicationsList!); - List? linkedApplications = JsonConvert.DeserializeObject>(LinkedApplicationsList!); + List? linkedApplications = JsonConvert.DeserializeObject>(LinkedApplicationsList!) ?? []; + + // Refresh from database instead of deserializing stale client data coming in to catch race conditions added. + var allLinks = await _applicationLinksService.GetListByApplicationAsync(CurrentApplicationId ?? Guid.Empty); + // Filter out the reverse links + var databaseLinkedApplications = allLinks.Where(item => item.ApplicationId != CurrentApplicationId).ToList(); + + // We only care if the data in the database is different to do the validation. + var listsAreEqual = new HashSet(linkedApplications, new ApplicationLinksInfoDtoComparer()).SetEquals(databaseLinkedApplications); + if (!listsAreEqual) + { + var linkValidationResult = await ValidateOnPostLinks( + selectedLinksWithTypes ?? [], + grantApplications ?? [], + databaseLinkedApplications); + + if (linkValidationResult.HasErrors) + { + return new JsonResult(new + { + success = false, + //Updates have occurred while this window has been opened + message = string.Join(", ", linkValidationResult.ErrorMessages.Select(kvp => $"[{kvp.Key}]: {kvp.Value}")) + }); + } + // Replace the links with what is currently in the database to ensure we are working with the most up to date data + linkedApplications = databaseLinkedApplications; + } + if (selectedLinksWithTypes != null && grantApplications != null && linkedApplications != null) { @@ -127,49 +155,13 @@ public async Task OnPostAsync() foreach (var linkWithType in selectedLinksWithTypes) { var existingLink = linkedApplications.Find(app => app.ReferenceNumber == linkWithType.ReferenceNumber); - if (existingLink == null) { - // Add new link - var targetApplication = grantApplications.Find(app => app.ReferenceNo == linkWithType.ReferenceNumber); - if (targetApplication != null) - { - var linkedApplicationId = targetApplication.Id; - - // For CurrentApplication -> LinkedApplication - await _applicationLinksService.CreateAsync(new ApplicationLinksDto - { - ApplicationId = CurrentApplicationId ?? Guid.Empty, - LinkedApplicationId = linkedApplicationId, - LinkType = linkWithType.LinkType - }); - - // For LinkedApplication -> CurrentApplication (reverse link with appropriate type) - var reverseLinkType = GetReverseLinkType(linkWithType.LinkType); - await _applicationLinksService.CreateAsync(new ApplicationLinksDto - { - ApplicationId = linkedApplicationId, - LinkedApplicationId = CurrentApplicationId ?? Guid.Empty, - LinkType = reverseLinkType - }); - } + await AddLink(linkWithType, grantApplications); } else { - // Check if the link type has changed - if (existingLink.LinkType != linkWithType.LinkType) - { - // Update the existing link's type - await _applicationLinksService.UpdateLinkTypeAsync(existingLink.Id, linkWithType.LinkType); - - // Also update the reverse link - var reverseLink = await _applicationLinksService.GetLinkedApplicationAsync(CurrentApplicationId ?? Guid.Empty, existingLink.ApplicationId); - var reverseLinkType = GetReverseLinkType(linkWithType.LinkType); - await _applicationLinksService.UpdateLinkTypeAsync(reverseLink.Id, reverseLinkType); - - Logger.LogInformation("Updated link type for {ReferenceNumber} from {OldType} to {NewType}", - linkWithType.ReferenceNumber, existingLink.LinkType, linkWithType.LinkType); - } + await UpdateLink(linkWithType, existingLink); } } @@ -192,10 +184,109 @@ await _applicationLinksService.CreateAsync(new ApplicationLinksDto { Logger.LogError(ex, message: "Error updating application links"); } - return new JsonResult(new { success = true }); } + /// + /// Comparer to check for Application, LinkType and ProjectName when comparing data thats currently stored in the running + /// window versus what is stored in the database. Used to assist with race conditions prior to submitting from the modal. + /// + private sealed class ApplicationLinksInfoDtoComparer : IEqualityComparer + { + public bool Equals(ApplicationLinksInfoDto? x, ApplicationLinksInfoDto? y) + { + if (ReferenceEquals(x, y)) return true; + if (x is null || y is null) return false; + return x.ApplicationId == y.ApplicationId && x.LinkType == y.LinkType && x.ProjectName == y.ProjectName; + } + + public int GetHashCode(ApplicationLinksInfoDto obj) => obj.ApplicationId.GetHashCode(); + } + + /// + /// If there is an inequality between what is in the application modal for links and the database, re-run the + /// validation checks to compare what is stored in the database rather than the local user window + /// + /// Link change the user is requesting + /// List of applications to retrieve their reference numbers for generating links + /// Existing links to compare against for validation + /// + /// List of ApplicationLinkValidationResult + private async Task ValidateOnPostLinks( + List newLinks, + List currentApplications, + List existingLinks) + { + var validateAllLinks = new List(); + + validateAllLinks.AddRange([.. newLinks.Select(link => + new ApplicationLinkValidationRequest + { + TargetApplicationId = currentApplications!.Single(app => app.ReferenceNo == link.ReferenceNumber).Id, + ReferenceNumber = link.ReferenceNumber, + LinkType = link.LinkType + })]); + + validateAllLinks.AddRange([.. existingLinks.Select(app => + new ApplicationLinkValidationRequest + { + TargetApplicationId = app.ApplicationId, + ReferenceNumber = app.ReferenceNumber, + LinkType = app.LinkType + } + )]); + + return await _applicationLinksService.ValidateApplicationLinksAsync(CurrentApplicationId ?? Guid.Empty, validateAllLinks); + } + + + private async Task AddLink(LinkWithType linkWithType, List grantApplications) + { + // Add new link + var targetApplication = grantApplications.Find(app => app.ReferenceNo == linkWithType.ReferenceNumber); + if (targetApplication != null) + { + var linkedApplicationId = targetApplication.Id; + + // For CurrentApplication -> LinkedApplication + await _applicationLinksService.CreateAsync(new ApplicationLinksDto + { + ApplicationId = CurrentApplicationId ?? Guid.Empty, + LinkedApplicationId = linkedApplicationId, + LinkType = linkWithType.LinkType + }); + + // For LinkedApplication -> CurrentApplication (reverse link with appropriate type) + var reverseLinkType = GetReverseLinkType(linkWithType.LinkType); + await _applicationLinksService.CreateAsync(new ApplicationLinksDto + { + ApplicationId = linkedApplicationId, + LinkedApplicationId = CurrentApplicationId ?? Guid.Empty, + LinkType = reverseLinkType + }); + } + } + + + private async Task UpdateLink(LinkWithType linkWithType, ApplicationLinksInfoDto existingLink) + { + // Check if the link type has changed + if (existingLink.LinkType != linkWithType.LinkType) + { + // Update the existing link's type + await _applicationLinksService.UpdateLinkTypeAsync(existingLink.Id, linkWithType.LinkType); + + // Also update the reverse link + var reverseLink = await _applicationLinksService.GetLinkedApplicationAsync(CurrentApplicationId ?? Guid.Empty, existingLink.ApplicationId); + var reverseLinkType = GetReverseLinkType(linkWithType.LinkType); + await _applicationLinksService.UpdateLinkTypeAsync(reverseLink.Id, reverseLinkType); + + Logger.LogInformation("Updated link type for {ReferenceNumber} from {OldType} to {NewType}", + linkWithType.ReferenceNumber, existingLink.LinkType, linkWithType.LinkType); + } + } + + private static ApplicationLinkType GetReverseLinkType(ApplicationLinkType linkType) { return linkType switch diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml index f4894efe2d..b8d0fcaf5e 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml @@ -411,7 +411,7 @@

AI analysis results will appear here when available.

- @* Accordion list for errors, warnings, and recommendations *@ + @* Accordion list for errors, warnings, and summary *@
@* Accordion items will be dynamically generated here *@
@@ -453,11 +453,11 @@
- @* Template for recommendation item *@ -
-
-
-
+ @* Template for summary item *@ +
+
+
+
} @@ -466,4 +466,4 @@ - \ No newline at end of file + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.cshtml index 9995d2c4c2..05cf01bc3b 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.cshtml @@ -18,7 +18,6 @@ @section scripts { - } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js index 3ebe15233d..9de9b4752a 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js @@ -1,4 +1,4 @@ -$(function () { +$(function () { // Check if createNumberFormatter exists if (typeof createNumberFormatter !== 'function') { console.error('createNumberFormatter is not defined. Ensure table-utils.js is loaded before Index.js'); @@ -7,6 +7,8 @@ const formatter = createNumberFormatter(); const l = abp.localization.getResource('GrantManager'); + const defaultQuickDateRange = 'last6months'; + let dt = $('#GrantApplicationsTable'); let dataTable; @@ -90,7 +92,16 @@ $('#search, .custom-filter-input').val(''); dt.columns().search(''); dt.search(''); - dt.order(initialSortOrder).draw(); + dt.order(initialSortOrder); + + // Reset date range filters + const range = getDateRange(defaultQuickDateRange); + setDateRangeFilters(defaultQuickDateRange, range); + setDateRangeLocalStorage(defaultQuickDateRange, range); + toggleCustomDateInputs(defaultQuickDateRange === 'custom'); + + // Reload table data with updated filters + dt.ajax.reload(null, false); // Close the dropdown dt.buttons('.grp-savedStates') @@ -109,7 +120,7 @@ } ]; -const listColumns = getColumns(); + const listColumns = getColumns(); const defaultVisibleColumns = ['select', 'applicantName', 'category', @@ -132,10 +143,12 @@ const listColumns = getColumns(); }; const UIElements = { + searchField: $('#search'), + quickDateRange: $('#quickDateRange'), inputFilter: $('.date-input-filter'), submittedToInput: $('#submittedToDate'), submittedFromInput: $('#submittedFromDate'), - }; + }; let responseCallback = function (result) { return { @@ -164,50 +177,37 @@ const listColumns = getColumns(); } function initializeSubmittedFilterDates() { + let savedQuickRange = localStorage.getItem('GrantApplications_QuickRange') || defaultQuickDateRange; + let savedFromDate = localStorage.getItem('GrantApplications_FromDate'); + let savedToDate = localStorage.getItem('GrantApplications_ToDate'); + + let isCustomRange = savedQuickRange === 'custom'; + toggleCustomDateInputs(isCustomRange); + + let range = !isCustomRange + ? getDateRange(savedQuickRange) + : { + fromDate: savedFromDate || '', + toDate: savedToDate || '' + }; - const fromDate = localStorage.getItem('GrantApplications_FromDate'); - const toDate = localStorage.getItem('GrantApplications_ToDate'); - - // Check if localStorage has values and use them - if (fromDate && toDate) { - UIElements.submittedFromInput.val(fromDate); - UIElements.submittedToInput.val(toDate); - grantTableFilters.submittedFromDate = fromDate; - grantTableFilters.submittedToDate = toDate; - return; + if (!isCustomRange && !range) { + savedQuickRange = defaultQuickDateRange; + range = getDateRange(savedQuickRange); } - let dtToday = new Date(); - let month = dtToday.getMonth() + 1; - let day = dtToday.getDate(); - let year = dtToday.getFullYear(); - if (month < 10) - month = '0' + month.toString(); - if (day < 10) - day = '0' + day.toString(); - let todayDate = year + '-' + month + '-' + day; - - let dtSixMonthsAgo = new Date(); - dtSixMonthsAgo.setMonth(dtSixMonthsAgo.getMonth() - 6); - let minMonth = dtSixMonthsAgo.getMonth() + 1; - let minDay = dtSixMonthsAgo.getDate(); - let minYear = dtSixMonthsAgo.getFullYear(); - if (minMonth < 10) - minMonth = '0' + minMonth.toString(); - if (minDay < 10) - minDay = '0' + minDay.toString(); - let suggestedMinDate = minYear + '-' + minMonth + '-' + minDay; - - UIElements.submittedToInput.attr({ 'max': todayDate }); - UIElements.submittedToInput.val(todayDate); - UIElements.submittedFromInput.attr({ 'max': todayDate }); - UIElements.submittedFromInput.val(suggestedMinDate); - grantTableFilters.submittedFromDate = suggestedMinDate; - grantTableFilters.submittedToDate = todayDate; + setDateRangeFilters(savedQuickRange, range); + setDateRangeLocalStorage(savedQuickRange, range); + + // Set max date to today for both inputs + const today = formatDate(new Date()); + UIElements.submittedToInput.attr({ 'max': today }); + UIElements.submittedFromInput.attr({ 'max': today }); } function bindUIEvents() { - UIElements.inputFilter.on('change', handleInputFilterChange); + UIElements.inputFilter.on('change', handleInputFilterChange); + UIElements.quickDateRange.on('change', handleQuickDateRangeChange); } function validateDate(dateValue, element) { @@ -215,34 +215,115 @@ const listColumns = getColumns(); const selectedDate = new Date(dateValue); const today = new Date(); today.setHours(0, 0, 0, 0); - + const minDate = element.attr('min') ? new Date(element.attr('min')) : null; const maxDate = element.attr('max') ? new Date(element.attr('max')) : null; - + if (selectedDate > today) { element.addClass('input-validation-error'); abp.notify.error('The date cannot be in the future', 'Invalid Date'); return false; } - + if (minDate && selectedDate < minDate) { element.addClass('input-validation-error'); abp.notify.error('The date cannot be before the minimum allowed date', 'Invalid Date'); return false; } - + if (maxDate && selectedDate > maxDate) { element.addClass('input-validation-error'); abp.notify.error('The date cannot be after the maximum allowed date', 'Invalid Date'); return false; } - + element.removeClass('input-validation-error'); return true; } return true; } + function setDateRangeFilters(quickDateRange, range) { + UIElements.quickDateRange.val(quickDateRange); + + if (range) { + const fromDate = range.fromDate ?? ''; + const toDate = range.toDate ?? ''; + UIElements.submittedFromInput.val(fromDate); + UIElements.submittedToInput.val(toDate); + grantTableFilters.submittedFromDate = fromDate; + grantTableFilters.submittedToDate = toDate; + } + } + + function setDateRangeLocalStorage(quickDateRange, fromToRange) { + localStorage.setItem('GrantApplications_QuickRange', quickDateRange || defaultQuickDateRange); + if (fromToRange) { + const fromDate = fromToRange.fromDate; + const toDate = fromToRange.toDate; + if (fromDate) { + localStorage.setItem('GrantApplications_FromDate', fromDate); + } + else { + localStorage.removeItem('GrantApplications_FromDate'); + } + if (toDate) { + localStorage.setItem('GrantApplications_ToDate', toDate); + } + else { + localStorage.removeItem('GrantApplications_ToDate'); + } + } + } + + // Returns a formatted { fromDate, toDate } for the filter fields. + // Null if 'custom' or no input provided (assumes custom is default break) + function getDateRange(rangeType) { + let today = new Date(); + const toDate = formatDate(new Date()); + let fromDate; + + switch (rangeType) { + case 'today': + fromDate = toDate; + break; + case 'last7days': + fromDate = formatDate(new Date(today.setDate(today.getDate() - 7))); + break; + case 'last30days': + fromDate = formatDate(new Date(today.setDate(today.getDate() - 30))); + break; + case 'last3months': + fromDate = formatDate(new Date(today.setMonth(today.getMonth() - 3))); + break; + case 'last6months': + fromDate = formatDate(new Date(today.setMonth(today.getMonth() - 6))); + break; + case 'alltime': + return { fromDate: null, toDate: null }; + case 'custom': + default: + return null; // Don't modify dates for custom + } + + return { fromDate, toDate }; + } + function formatDate(date) { + const year = date.getFullYear(); + const month = String(date.getMonth() + 1).padStart(2, '0'); + const day = String(date.getDate()).padStart(2, '0'); + return `${year}-${month}-${day}`; + } + + function toggleCustomDateInputs(show) { + if (show) { + $('#customDateInputs').show(); + } else { + $('#customDateInputs').hide(); + } + } + + // ===================== // Input filter change handler // ===================== @@ -255,6 +336,11 @@ const listColumns = getColumns(); grantTableFilters.submittedFromDate = UIElements.submittedFromInput.val(); grantTableFilters.submittedToDate = UIElements.submittedToInput.val(); + //If the values for FromDate and ToDate are being set outside of the + //quick drop down handler, custom SHOULD be shown, but set just in case + UIElements.quickDateRange.val('custom'); + localStorage.setItem('GrantApplications_QuickRange', 'custom'); + const dtInstance = $('#GrantApplicationsTable').DataTable(); localStorage.setItem("GrantApplications_FromDate", grantTableFilters.submittedFromDate); @@ -262,13 +348,35 @@ const listColumns = getColumns(); dtInstance.ajax.reload(null, true); } - + function handleQuickDateRangeChange() { + const selectedRange = $(this).val(); + + if (selectedRange === 'custom') { + // Show the custom date inputs and don't modify their values + toggleCustomDateInputs(true); + return; + } + + // Hide custom date inputs for preset ranges + toggleCustomDateInputs(false); + + // Get the date range for the selected option + const range = getDateRange(selectedRange); + setDateRangeFilters(selectedRange, range); + setDateRangeLocalStorage(selectedRange, range); + + // Reload the table with new filters + const dtInstance = $('#GrantApplicationsTable').DataTable(); + dtInstance.ajax.reload(null, true); + } + function initializeDataTableAndEvents() { + let initialLoad = true; dataTable = initializeDataTable({ dt, defaultVisibleColumns, listColumns, - maxRowsPerPage: 10, + maxRowsPerPage: 10, defaultSortColumn: { name: 'submissionDate', dir: 'desc' @@ -279,15 +387,43 @@ const listColumns = getColumns(); submittedFromDate: grantTableFilters.submittedFromDate, submittedToDate: grantTableFilters.submittedToDate }; - }, + }, responseCallback, actionButtons, serverSideEnabled: false, pagingEnabled: true, reorderEnabled: true, + fixedHeaders: true, languageSetValues, dataTableName: 'GrantApplicationsTable', - dynamicButtonContainerId: 'dynamicButtonContainerId' + dynamicButtonContainerId: 'dynamicButtonContainerId', + onStateSaveParams: function (settings, data) { + data.customFilters = { + searchValue: UIElements.searchField.val() || '', + quickDateRange: UIElements.quickDateRange.val(), + submittedFromDate: UIElements.submittedFromInput.val(), + submittedToDate: UIElements.submittedToInput.val() + }; + }, + onStateLoadParams: function (settings, data) { + if (!initialLoad && data?.customFilters) { + // If there is any date change, this will refresh post load + // to ensure the correct data is shown based on the saved filters. + data.refreshTableWithDates = + data.customFilters.quickDateRange !== UIElements.quickDateRange.val() + || data.customFilters.submittedFromDate !== UIElements.submittedFromInput.val() + || data.customFilters.submittedToDate !== UIElements.submittedToInput.val(); + restoreCustomFilters(data.customFilters); + } + }, + onStateLoaded: function (dtApi, data) { + // This needs to only reload when clicking on the load state not on initial page load + // Otherwise it duplicates the data + if (!initialLoad && data?.refreshTableWithDates) { + dtApi.ajax.reload(null, false); + } + initialLoad = false; // Reset flag after use + } }); dataTable.on('search.dt', () => handleSearch()); @@ -327,6 +463,31 @@ const listColumns = getColumns(); $('.grp-savedStates').text('Save View'); $('.grp-savedStates').closest('.btn-group').addClass('cstm-save-view'); + // Helper function to restore custom filters when loading table views. + function restoreCustomFilters(filters) { + UIElements.searchField.val(filters.searchValue || ''); + + let quickRange = filters.quickDateRange || defaultQuickDateRange; + let isCustomRange = filters.quickDateRange === 'custom'; + toggleCustomDateInputs(isCustomRange); + + let range = !isCustomRange + ? getDateRange(quickRange) + : { + fromDate: filters.submittedFromDate || '', + toDate: filters.submittedToDate || '' + }; + + if (!isCustomRange && !range) { + quickRange = defaultQuickDateRange; + range = getDateRange(quickRange); + } + + setDateRangeFilters(quickRange, range); + setDateRangeLocalStorage(quickRange, range); + } + + function selectApplication(type, indexes, action) { if (type === 'row') { let data = dataTable.row(indexes).data(); @@ -336,7 +497,6 @@ const listColumns = getColumns(); function handleSearch() { let filter = $('.dt-search input').val(); - console.info(filter); } function getColumns() { @@ -361,7 +521,7 @@ const listColumns = getColumns(); getOrganizationNumberColumn(columnIndex++), getOrgBookStatusColumn(columnIndex++), getProjectStartDateColumn(columnIndex++), - getProjectEndDateColumn(columnIndex++), + getProjectEndDateColumn(columnIndex++), getProjectedFundingTotalColumn(columnIndex++), getTotalProjectBudgetPercentageColumn(columnIndex++), getTotalPaidAmountColumn(columnIndex++), @@ -431,7 +591,7 @@ const listColumns = getColumns(); data: 'referenceNo', name: 'referenceNo', className: 'data-table-header text-nowrap', - render: function (data, type, row) { + render: function (data, type, row) { return `${data}`; }, index: columnIndex @@ -456,8 +616,7 @@ const listColumns = getColumns(); className: 'data-table-header', index: columnIndex, render: function (data, type) { - const formattedDate = DateUtils.formatUtcDateToLocal(data, type); - return formattedDate ? String(formattedDate) : ''; + return DateUtils.formatUtcDateToLocal(data, type); } }; } @@ -874,8 +1033,8 @@ const listColumns = getColumns(); render: function (data) { let tagNames = data - .filter(x => x?.tag?.name) - .map(x => x.tag.name); + .filter(x => x?.tag?.name) + .map(x => x.tag.name); return tagNames.join(', ') ?? ''; }, index: columnIndex diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/ai-analysis.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/ai-analysis.js index 3555ea8a3d..ece7839f1f 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/ai-analysis.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/ai-analysis.js @@ -3,17 +3,6 @@ * Handles rendering and management of AI-generated analysis results */ -// Simple hash function to create stable IDs from content -function simpleHash(str) { - let hash = 0; - for (let i = 0; i < str.length; i++) { - const char = str.codePointAt(i) || 0; - hash = ((hash << 5) - hash) + char; - hash = hash & hash; // Convert to 32bit integer - } - return Math.abs(hash).toString(36); -} - /** * Helper function to create an item from a template * @param {string} templateName - Name of the template to clone @@ -71,18 +60,52 @@ function createAccordionGroup(id, type, iconClass, title, content) { return $group; } +function getFindingDetailText(item) { + if (!item || typeof item !== 'object') { + return ''; + } + + const raw = item.detail ?? ''; + if (typeof raw === 'string') { + return raw; + } + + try { + return JSON.stringify(raw); + } catch { + return String(raw); + } +} + +function getVisibleIssueCount(activeWarnings, activeErrors, summaries) { + return activeWarnings.length + activeErrors.length + summaries.length; +} + function renderRealAIAnalysis(analysisData) { - // Generate STABLE IDs based on content hash - const warnings = (analysisData.warnings || []).map((w, i) => ({ - ...w, - id: w.id || 'warning-' + simpleHash((w.category || '') + (w.message || '')) - })); - const errors = (analysisData.errors || []).map((e, i) => ({ - ...e, - id: e.id || 'error-' + simpleHash((e.category || '') + (e.message || '')) + const rawWarnings = analysisData.warnings || []; + const rawErrors = analysisData.errors || []; + const rawSummaries = analysisData.summaries || analysisData.recommendations || []; + const warnings = rawWarnings + .filter(w => w) + .map((w, i) => ({ + ...w, + id: w.id || `warning-${i}`, + title: w.title || w.category || 'Warning', + detail: w.detail || w.message || '' + })); + const errors = rawErrors + .filter(e => e) + .map((e, i) => ({ + ...e, + id: e.id || `error-${i}`, + title: e.title || e.category || 'Error', + detail: e.detail || e.message || '' + })); + const summaries = rawSummaries.map((s) => ({ + title: s?.title || s?.category || 'Summary', + detail: s?.detail || s?.message || s || '' })); - const recommendations = analysisData.recommendations || []; - const dismissedItems = new Set((analysisData.dismissed_items || []).filter(Boolean)); + const dismissedItems = new Set((analysisData.dismissed || analysisData.dismissed_items || []).filter(Boolean)); // Get all valid IDs from current errors and warnings const allValidIds = new Set([...errors.map(e => e.id), ...warnings.map(w => w.id)]); @@ -105,11 +128,10 @@ function renderRealAIAnalysis(analysisData) { // Add errors section if there are any if (activeErrors.length > 0) { const errorItems = activeErrors.map(error => { - const errorId = error.id || 'error-unknown-' + Date.now(); return createItemFromTemplate('dismissible-item', { - category: error.category || 'Error', - message: error.message || '', - 'dismiss-btn': { id: errorId, type: 'error' } + category: error.title || 'Error', + message: getFindingDetailText(error), + 'dismiss-btn': { id: error.id, type: 'error' } }); }); @@ -129,11 +151,10 @@ function renderRealAIAnalysis(analysisData) { // Add warnings section if there are any if (activeWarnings.length > 0) { const warningItems = activeWarnings.map(warning => { - const warningId = warning.id || 'warning-unknown-' + Date.now(); return createItemFromTemplate('dismissible-item', { - category: warning.category || 'Warning', - message: warning.message || '', - 'dismiss-btn': { id: warningId, type: 'warning' } + category: warning.title || 'Warning', + message: getFindingDetailText(warning), + 'dismiss-btn': { id: warning.id, type: 'warning' } }); }); @@ -150,27 +171,27 @@ function renderRealAIAnalysis(analysisData) { $accordionList.append(accordionItem); } - // Add recommendations section if there are any - if (recommendations.length > 0) { - const recommendationItems = recommendations.map(rec => { - const category = typeof rec === 'object' ? (rec.category || 'Recommendation') : 'Recommendation'; - const message = typeof rec === 'object' ? (rec.message || rec) : rec; + // Add summary section if there are any + if (summaries.length > 0) { + const summaryItems = summaries.map(rec => { + const category = typeof rec === 'object' ? (rec.title || 'Summary') : 'Summary'; + const message = typeof rec === 'object' ? getFindingDetailText(rec) : rec; - return createItemFromTemplate('recommendation-item', { + return createItemFromTemplate('summary-item', { category: category, message: message }); }); - const $recommendationsContainer = $('
'); - recommendationItems.forEach(item => $recommendationsContainer.append(item)); + const $summaryContainer = $('
'); + summaryItems.forEach(item => $summaryContainer.append(item)); const accordionItem = createAccordionGroup( - 'recommendations', + 'summary', 'info', 'fl-info-circle', - `Recommendations (${recommendations.length})`, - $recommendationsContainer + `Summary (${summaries.length})`, + $summaryContainer ); $accordionList.append(accordionItem); } @@ -179,19 +200,17 @@ function renderRealAIAnalysis(analysisData) { if (dismissedErrors.length > 0 || dismissedWarnings.length > 0) { const dismissedItems = [ ...dismissedErrors.map(error => { - const errorId = error.id || 'error-dismissed-' + Date.now(); return createItemFromTemplate('dismissed-item', { - category: error.category || 'Error', - message: error.message || '', - 'restore-btn': { id: errorId, type: 'error' } + category: error.title || 'Error', + message: getFindingDetailText(error), + 'restore-btn': { id: error.id, type: 'error' } }); }), ...dismissedWarnings.map(warning => { - const warningId = warning.id || 'warning-dismissed-' + Date.now(); return createItemFromTemplate('dismissed-item', { - category: warning.category || 'Warning', - message: warning.message || '', - 'restore-btn': { id: warningId, type: 'warning' } + category: warning.title || 'Warning', + message: getFindingDetailText(warning), + 'restore-btn': { id: warning.id, type: 'warning' } }); }) ]; @@ -208,15 +227,16 @@ function renderRealAIAnalysis(analysisData) { ); $accordionList.append(accordionItem); - let totalLength = recommendations.length + activeWarnings.length + activeErrors.length; - PubSub.publish('update_ai_analysis_count', { - itemCount: totalLength, - }); } + const totalLength = getVisibleIssueCount(activeWarnings, activeErrors, summaries); + PubSub.publish('update_ai_analysis_count', { + itemCount: totalLength, + }); + // If no items, show the no-data message; otherwise hide it const $noDataMessage = $('#aiAnalysisNoData'); - if (activeErrors.length === 0 && activeWarnings.length === 0 && recommendations.length === 0 && dismissedErrors.length === 0 && dismissedWarnings.length === 0) { + if (activeErrors.length === 0 && activeWarnings.length === 0 && summaries.length === 0 && dismissedErrors.length === 0 && dismissedWarnings.length === 0) { $noDataMessage.show(); $accordionList.hide(); } else { @@ -225,7 +245,7 @@ function renderRealAIAnalysis(analysisData) { } // Update tab badge with total count - const totalIssues = activeWarnings.length + activeErrors.length + recommendations.length; + const totalIssues = getVisibleIssueCount(activeWarnings, activeErrors, summaries); $('#ai-analysis-tab').html(`(${totalIssues})`); // Remove all previous event handlers from accordion list @@ -300,7 +320,7 @@ function toggleAccordionItem($header) { } function loadAIAnalysis() { - if($('#AIAnalysisFeatureEnabled') == 'False') { + if ($('#AIAnalysisFeatureEnabled').val() === 'False') { return; } const urlParams = new URL(globalThis.location.toLocaleString()).searchParams; @@ -313,52 +333,35 @@ function loadAIAnalysis() { // Get the application data including AI analysis unity.grantManager.grantApplications.grantApplication.get(applicationId) .done(function(application) { - console.debug('Application data received:', application); - console.debug('AI Analysis field:', application.aiAnalysis); - - // Use the camelCase version that should come from the API - const aiAnalysis = application.aiAnalysis; - - if (application && aiAnalysis) { + let aiAnalysisData = application.aiAnalysisData; + if (!aiAnalysisData && application.aiAnalysis) { try { - console.debug('Raw AI analysis:', aiAnalysis); - - // Clean the JSON response (remove markdown code blocks if present) - let cleanedJson = aiAnalysis.trim(); - if (cleanedJson.startsWith('```json') || cleanedJson.startsWith('```')) { - const startIndex = cleanedJson.indexOf('\n'); - if (startIndex >= 0) { - cleanedJson = cleanedJson.substring(startIndex + 1); + let cleaned = String(application.aiAnalysis).trim(); + if (cleaned.startsWith('```json') || cleaned.startsWith('```')) { + const firstBreak = cleaned.indexOf('\n'); + if (firstBreak >= 0) { + cleaned = cleaned.substring(firstBreak + 1); } } - if (cleanedJson.endsWith('```')) { - const lastIndex = cleanedJson.lastIndexOf('```'); - if (lastIndex > 0) { - cleanedJson = cleanedJson.substring(0, lastIndex); - } + if (cleaned.endsWith('```')) { + cleaned = cleaned.substring(0, cleaned.lastIndexOf('```')); } - cleanedJson = cleanedJson.trim(); - - // Remove trailing commas before closing brackets/braces (common JSON error from AI) - cleanedJson = cleanedJson.replaceAll(/,(\s*[}\]])/g, '$1'); + cleaned = cleaned.replaceAll(/,(\s*[}\]])/g, '$1').trim(); + aiAnalysisData = JSON.parse(cleaned); + } catch (parseError) { + console.warn('Failed to parse aiAnalysis JSON fallback:', parseError); + } + } - const analysisData = JSON.parse(cleanedJson); - console.debug('Parsed analysis data:', analysisData); - renderRealAIAnalysis(analysisData); + if (application && aiAnalysisData) { + try { + renderRealAIAnalysis(aiAnalysisData); } catch (e) { - console.warn('Failed to parse AI analysis JSON, showing demo data:', e); + console.warn('Failed to render AI analysis data:', e); } - } else { - console.debug('No AI analysis found, showing demo'); } }) .fail(function(error) { - console.warn('Failed to load application data, showing demo AI analysis', error); + console.warn('Failed to load application data', error); }); } - -function escapeHtml(text) { - const div = document.createElement('div'); - div.textContent = text; - return div.innerHTML; -} \ No newline at end of file diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.css index 9c9f009330..e5f1d20fbe 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.css @@ -11,8 +11,3 @@ #IntakesTable_filter input { margin: 0.25rem; } - -#IntakesTable_wrapper .dt-scroll-body { - max-height: calc(100vh - 350px); - overflow-y: scroll; -} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.js index bac3330526..18b6f5f0fd 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/Intakes/Index.js @@ -107,7 +107,8 @@ dataTableName: 'IntakesTable', dynamicButtonContainerId: 'dynamicButtonContainerId', useNullPlaceholder: true, - externalSearchId: 'search-intakes' + externalSearchId: 'search-intakes', + fixedHeaders: true }); createModal.onResult(function () { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Swagger/ApplicantProfileDataSchemaFilter.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Swagger/ApplicantProfileDataSchemaFilter.cs new file mode 100644 index 0000000000..46a7fedc90 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Swagger/ApplicantProfileDataSchemaFilter.cs @@ -0,0 +1,49 @@ +using Microsoft.OpenApi.Models; +using Swashbuckle.AspNetCore.SwaggerGen; +using System.Collections.Generic; +using Unity.GrantManager.ApplicantProfile.ProfileData; + +namespace Unity.GrantManager.Swagger +{ + public class ApplicantProfileDataSchemaFilter : ISchemaFilter + { + public void Apply(OpenApiSchema schema, SchemaFilterContext context) + { + if (context.Type != typeof(ApplicantProfileDataDto)) + return; + + var subTypes = new Dictionary + { + ["CONTACTINFO"] = typeof(ApplicantContactInfoDto), + ["ORGINFO"] = typeof(ApplicantOrgInfoDto), + ["ADDRESSINFO"] = typeof(ApplicantAddressInfoDto), + ["SUBMISSIONINFO"] = typeof(ApplicantSubmissionInfoDto), + ["PAYMENTINFO"] = typeof(ApplicantPaymentInfoDto) + }; + + var oneOfSchemas = new List(); + foreach (var (_, subType) in subTypes) + { + var subSchema = context.SchemaGenerator.GenerateSchema(subType, context.SchemaRepository); + oneOfSchemas.Add(subSchema); + } + + schema.OneOf = oneOfSchemas; + schema.Discriminator = new OpenApiDiscriminator + { + PropertyName = "dataType", + Mapping = new Dictionary() + }; + + foreach (var (discriminatorValue, subType) in subTypes) + { + var schemaId = context.SchemaRepository.Schemas.ContainsKey(subType.FullName!) + ? subType.FullName! + : subType.Name; + schema.Discriminator.Mapping[discriminatorValue] = $"#/components/schemas/{schemaId}"; + } + + schema.Description = "Polymorphic data payload. The shape depends on the 'dataType' discriminator (key parameter)."; + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.cshtml index eaf1c5bb6f..1134892b19 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.cshtml @@ -17,29 +17,43 @@
- - + + +
+ -
- - -
diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.css index 81685f3695..5ccbfa7afb 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.css @@ -37,3 +37,17 @@ margin-bottom: -10px; padding-bottom: 0px !important; } + +.custom-date-range-container-div { + display: inline-block; + padding: 0px; + margin: 0px; +} + +.quick-date-input { + font-size: var(--bc-font-size); + color: var(--bc-colors-grey-text-500); + border-radius: var(--bc-layout-margin-small) !important; + border: 2px solid var(--bc-colors-blue-primary); + text-overflow: ellipsis; +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantAddresses/Default.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantAddresses/Default.css index 7ae7cc4f79..d6f31385ec 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantAddresses/Default.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantAddresses/Default.css @@ -24,7 +24,6 @@ } .applicant-organization-info { - background-color: #f8f9fa; border-radius: 8px; padding: 1rem; margin-bottom: 1rem; diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/ApplicantHistoryViewComponent.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/ApplicantHistoryViewComponent.cs new file mode 100644 index 0000000000..8a97579040 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/ApplicantHistoryViewComponent.cs @@ -0,0 +1,62 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Unity.GrantManager.Applications; +using Volo.Abp.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc.UI.Bundling; +using Volo.Abp.AspNetCore.Mvc.UI.Widgets; + +namespace Unity.GrantManager.Web.Views.Shared.Components.ApplicantHistory +{ + [Widget( + RefreshUrl = "Widget/ApplicantHistory/Refresh", + ScriptTypes = new[] { typeof(ApplicantHistoryScriptBundleContributor) }, + StyleTypes = new[] { typeof(ApplicantHistoryStyleBundleContributor) }, + AutoInitialize = true)] + public class ApplicantHistoryViewComponent : AbpViewComponent + { + private readonly IApplicantRepository _applicantRepository; + + public ApplicantHistoryViewComponent(IApplicantRepository applicantRepository) + { + _applicantRepository = applicantRepository; + } + + public async Task InvokeAsync(Guid applicantId) + { + if (applicantId == Guid.Empty) + { + return View(new ApplicantHistoryViewModel { ApplicantId = applicantId }); + } + + var applicant = await _applicantRepository.GetAsync(applicantId); + + var viewModel = new ApplicantHistoryViewModel + { + ApplicantId = applicantId, + FundingHistoryComments = applicant.FundingHistoryComments, + IssueTrackingComments = applicant.IssueTrackingComments, + AuditComments = applicant.AuditComments + }; + + return View(viewModel); + } + } + + public class ApplicantHistoryScriptBundleContributor : BundleContributor + { + public override void ConfigureBundle(BundleConfigurationContext context) + { + context.Files.AddIfNotContains("/Views/Shared/Components/ApplicantHistory/Default.js"); + } + } + + public class ApplicantHistoryStyleBundleContributor : BundleContributor + { + public override void ConfigureBundle(BundleConfigurationContext context) + { + context.Files.AddIfNotContains("/Views/Shared/Components/ApplicantHistory/Default.css"); + } + } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/ApplicantHistoryViewModel.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/ApplicantHistoryViewModel.cs new file mode 100644 index 0000000000..aaf1a25e63 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/ApplicantHistoryViewModel.cs @@ -0,0 +1,11 @@ +using System; + +namespace Unity.GrantManager.Web.Views.Shared.Components.ApplicantHistory; + +public class ApplicantHistoryViewModel +{ + public Guid ApplicantId { get; set; } + public string? FundingHistoryComments { get; set; } + public string? IssueTrackingComments { get; set; } + public string? AuditComments { get; set; } +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.cshtml new file mode 100644 index 0000000000..5fa5f68f18 --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.cshtml @@ -0,0 +1,96 @@ +@using Unity.GrantManager.Web.Views.Shared.Components.ApplicantHistory + +@model ApplicantHistoryViewModel + +@{ + Layout = null; +} + +
+ +
+ +
+ +
+ + + @* ── Funding History ── *@ +
+
+
Funding History
+
+
+ Previous Funding History +
+
+ +
+
+ + +
+ +
+ + +
+
+ + @* ── Issue Tracking ── *@ +
+
+
Issue Tracking
+
+
+ Previous Issues +
+
+ +
+
+ + +
+ +
+ + +
+
+ + @* ── Audit History ── *@ +
+
+
Audit History
+
+
+ +
+
+ + +
+ +
+ + +
+
+
+
diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.css new file mode 100644 index 0000000000..eec357fcbf --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.css @@ -0,0 +1,71 @@ +/* ApplicantHistory Component Styles */ + +.applicant-info-container { + margin-bottom: 1.5rem; + position: relative; +} + +.applicant-info-container .save-button-container { + display: flex; + justify-content: flex-end; + position: sticky; + top: 56px; + padding-right: 24px; + z-index: 999; +} + +.applicant-info-container .save-button-container .floating-save-btn { + position: static; +} + +.history-section { + border-bottom: 1px solid #dee2e6; + margin-bottom: 1.5rem; + padding-bottom: 1.5rem; +} + +.history-section:last-child { + border-bottom: none; +} + +.history-section__toolbar { + display: flex; + align-items: center; + gap: 0.5rem; + margin-bottom: 0.75rem; +} + +.history-section__toolbar .tbl-search { + max-width: 280px; +} + +.history-section__toolbar .dynamic-buttons-div { + margin-left: auto; + position: relative; +} + +.history-section__toolbar .dynamic-buttons-div .dt-button-collection { + left: auto !important; + right: 0 !important; + top: 100% !important; +} + +/* Prevent wrapper and dt-container from generating their own scrollbars */ +#FundingHistoryTable_wrapper, +#IssueTrackingTable_wrapper, +#AuditHistoryTable_wrapper { + overflow: visible !important; +} + +.applicant-history-widget .dt-container { + overflow: visible !important; +} + +/* Scroll body — vertical scrollbar when many records */ +#FundingHistoryTable_wrapper .dt-scroll-body, +#IssueTrackingTable_wrapper .dt-scroll-body, +#AuditHistoryTable_wrapper .dt-scroll-body { + max-height: 350px !important; + overflow-y: auto !important; + overflow-x: auto !important; +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.js new file mode 100644 index 0000000000..1f7110875b --- /dev/null +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantHistory/Default.js @@ -0,0 +1,373 @@ +$(function () { + const nullPlaceholder = '—'; + const formatter = typeof createNumberFormatter === 'function' ? createNumberFormatter() : null; + const formatCurrency = (val) => formatter ? formatter.format(val) : (val ?? nullPlaceholder); + + // ── Save button / dirty tracking ────────────────────────────────────────── + const form = $('#ApplicantHistoryNotesForm'); + const saveBtn = $('#saveApplicantHistoryBtn'); + let zoneForm = null; + + if (form.length && saveBtn.length && typeof UnityZoneForm === 'function') { + zoneForm = new UnityZoneForm(form, { saveButtonSelector: '#saveApplicantHistoryBtn' }); + zoneForm.init(); + } + + saveBtn.on('click', function (e) { + e.preventDefault(); + if (!zoneForm || zoneForm.modifiedFields.size === 0) return; + + const applicantId = $('#ApplicantHistory_ApplicantId').val(); + if (!applicantId) { + abp.notify.warn('Applicant identifier is missing.'); + return; + } + + unity.grantManager.applicantProfile.applicantHistory + .saveNotes(applicantId, { + fundingHistoryComments: $('#FundingHistoryComments').val(), + issueTrackingComments: $('#IssueTrackingComments').val(), + auditComments: $('#AuditComments').val() + }) + .done(function () { + abp.notify.success('History notes saved.'); + zoneForm.resetTracking(); + }) + .fail(function () { + abp.notify.error('Failed to save history notes.'); + }); + }); + + // ── Column definitions ──────────────────────────────────────────────────── + + function getFundingHistoryColumns() { + return [ + { title: 'Grant Category', data: 'grantCategory', name: 'grantCategory', className: 'data-table-header', render: (d) => d ?? nullPlaceholder }, + { title: 'Funding Year', data: 'fundingYear', name: 'fundingYear', className: 'data-table-header', width: '80px', render: (d) => d ?? nullPlaceholder }, + { title: 'Renewed Funding', data: 'renewedFunding', name: 'renewedFunding', className: 'data-table-header', width: '110px', render: (d) => d === true ? 'Yes' : 'No' }, + { title: 'Approved Amount', data: 'approvedAmount', name: 'approvedAmount', className: 'data-table-header currency-display', render: (d) => formatCurrency(d) }, + { title: 'Reconsideration Amount', data: 'reconsiderationAmount', name: 'reconsiderationAmount', className: 'data-table-header currency-display', render: (d) => formatCurrency(d) }, + { title: 'Total Grant Amount', data: 'totalGrantAmount', name: 'totalGrantAmount', className: 'data-table-header currency-display', render: (d) => formatCurrency(d) }, + { + title: 'Notes', data: 'fundingNotes', name: 'fundingNotes', className: 'data-table-header', width: '200px', + createdCell: function (td) { $(td).css('min-width', '200px'); }, + render: (d) => d ?? nullPlaceholder + }, + { + title: 'Actions', data: null, name: 'actions', orderable: false, className: 'data-table-header', width: '70px', + render: function (data, type, row) { + let $wrapper = $('
').addClass('d-flex align-items-center gap-2'); + + let $editBtn = $(' + @@ -128,7 +139,11 @@ - +
+
+ +
+
diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantOrganizationInfo/Default.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantOrganizationInfo/Default.css index a1c02309a3..7f9d5e60a2 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantOrganizationInfo/Default.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantOrganizationInfo/Default.css @@ -31,7 +31,6 @@ } .applicant-organization-info { - background-color: #f8f9fa; border-radius: 8px; padding: 1rem; margin-bottom: 1rem; diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/ApplicantSubmissionsViewComponent.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/ApplicantSubmissionsViewComponent.cs index fe8ef8e380..db7b309121 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/ApplicantSubmissionsViewComponent.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/ApplicantSubmissionsViewComponent.cs @@ -6,7 +6,6 @@ using Unity.GrantManager.Applications; using Unity.GrantManager.GrantApplications; using Unity.GrantManager.Payments; -using Unity.Payments.Enums; using Unity.Payments.PaymentRequests; using Volo.Abp.AspNetCore.Mvc; using Volo.Abp.AspNetCore.Mvc.UI.Bundling; @@ -57,14 +56,10 @@ public async Task InvokeAsync(Guid applicantId) var applicationIds = applications.Select(app => app.Id).ToList(); var paymentsFeatureEnabled = await _featureChecker.IsEnabledAsync(PaymentConsts.UnityPaymentsFeature); - Dictionary paymentRequestsByApplication = []; + Dictionary paymentRollupBatch = []; if (paymentsFeatureEnabled && applicationIds.Count > 0) { - var paymentRequests = await _paymentRequestService.GetListByApplicationIdsAsync(applicationIds); - paymentRequestsByApplication = paymentRequests - .Where(pr => pr.Status == PaymentRequestStatus.Submitted) - .GroupBy(pr => pr.CorrelationId) - .ToDictionary(g => g.Key, g => g.Sum(pr => pr.Amount)); + paymentRollupBatch = await _paymentRequestService.GetApplicationPaymentRollupBatchAsync(applicationIds); } // Map to DTOs (similar to GrantApplicationAppService.GetListAsync) @@ -131,13 +126,13 @@ public async Task InvokeAsync(Guid applicantId) } dto.Assignees = assigneeDtos; - if (paymentsFeatureEnabled && paymentRequestsByApplication.Count > 0) + if (paymentsFeatureEnabled && paymentRollupBatch.Count > 0) { - paymentRequestsByApplication.TryGetValue(app.Id, out var totalPaid); + paymentRollupBatch.TryGetValue(app.Id, out var paymentRollup); dto.PaymentInfo = new PaymentInfoDto { ApprovedAmount = app.ApprovedAmount, - TotalPaid = totalPaid + TotalPaid = paymentRollup?.TotalPaid ?? 0 }; } @@ -174,7 +169,6 @@ public class ApplicantSubmissionsScriptBundleContributor : BundleContributor { public override void ConfigureBundle(BundleConfigurationContext context) { - context.Files.AddIfNotContains("/js/DateUtils.js"); context.Files.AddIfNotContains("/Views/Shared/Components/ApplicantSubmissions/Default.js"); } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.css index 295de3ccd2..7a017fac31 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.css @@ -108,9 +108,9 @@ word-wrap: break-word; } -/* Override tab-content scrolling for Submissions tab - no scrolling */ -#detailsTab .tab-content:has(#SubmissionsWidget) { - overflow: hidden !important; +/* Submissions tab pane - handle overflow internally via dt-scroll-body */ +#nav-submissions { + overflow: hidden; } /* Make Submissions widget fill available space */ diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.js index 198501272d..525bda3206 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantSubmissions/Default.js @@ -264,8 +264,7 @@ $(function () { className: 'data-table-header', index: columnIndex, render: function (data, type) { - const formattedDate = DateUtils.formatUtcDateToLocal(data, type); - return formattedDate ? String(formattedDate) : ''; + return DateUtils.formatUtcDateToLocal(data, type); } }; } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetController.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetController.cs index 3d1a62cd12..bd396f328f 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetController.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetController.cs @@ -15,14 +15,14 @@ public class ApplicationContactsWidgetController : AbpController [HttpGet] [Route("RefreshApplicationContacts")] - public IActionResult ApplicationContacts(Guid applicationId, Boolean isReadOnly = false) + public IActionResult ApplicationContacts(Guid applicationId) { if (!ModelState.IsValid) { logger.LogWarning("Invalid model state for ApplicationContactsWidgetController: RefreshApplicationContacts"); - return ViewComponent("ApplicationContactsWidget"); + return ViewComponent("ApplicationContactsWidget", new { applicationId }); } - return ViewComponent("ApplicationContactsWidget", new { applicationId, isReadOnly }); + return ViewComponent("ApplicationContactsWidget", new { applicationId }); } } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewComponent.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewComponent.cs index 9022e29a1e..d65bba4c28 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewComponent.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewComponent.cs @@ -13,7 +13,7 @@ namespace Unity.GrantManager.Web.Views.Shared.Components.ApplicationContactsWidg RefreshUrl = "Widgets/ApplicationContacts/RefreshApplicationContacts", ScriptTypes = new[] { typeof(ApplicationContactsWidgetScriptBundleContributor) }, StyleTypes = new[] { typeof(ApplicationContactsWidgetStyleBundleContributor) }, - AutoInitialize = true)] + AutoInitialize = false)] public class ApplicationContactsWidgetViewComponent : AbpViewComponent { private readonly IApplicationContactService _applicationContactService; @@ -23,13 +23,12 @@ public ApplicationContactsWidgetViewComponent(IApplicationContactService applica _applicationContactService = applicationContactService; } - public async Task InvokeAsync(Guid applicationId, Boolean isReadOnly) + public async Task InvokeAsync(Guid applicationId) { List applicationContacts = await _applicationContactService.GetListByApplicationAsync(applicationId); ApplicationContactsWidgetViewModel model = new() { ApplicationContacts = applicationContacts, - ApplicationId = applicationId, - IsReadOnly = isReadOnly + ApplicationId = applicationId }; return View(model); @@ -52,7 +51,7 @@ public override void ConfigureBundle(BundleConfigurationContext context) context.Files .AddIfNotContains("/Views/Shared/Components/ApplicationContactsWidget/Default.js"); context.Files - .AddIfNotContains("/libs/pubsub-js/src/pubsub.js"); + .AddIfNotContains("/Pages/ApplicationContact/EditContactModal.js"); } } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewModel.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewModel.cs index e76480ab1a..13afa46c34 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewModel.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/ApplicationContactsWidgetViewModel.cs @@ -14,7 +14,6 @@ public ApplicationContactsWidgetViewModel() public List ApplicationContacts { get; set; } public Guid ApplicationId { get; set; } - public Boolean IsReadOnly { get; set; } public static String ContactTypeValue(String contactType) { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.cshtml index ae8f74799b..1f127697b8 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.cshtml @@ -1,52 +1,77 @@ +@using Microsoft.Extensions.Localization @using Unity.GrantManager.Web.Views.Shared.Components.ApplicationContactsWidget; +@using Unity.GrantManager.Localization; +@using Unity.Modules.Shared +@using Volo.Abp.Authorization.Permissions + +@inject IPermissionChecker PermissionChecker +@inject IStringLocalizer L @model ApplicationContactsWidgetViewModel @{ Layout = null; } -
- @if (Model.ApplicationContacts.Count > 0) { -

Info

-
- } - @foreach (var contact in Model.ApplicationContacts) - { -
-
-
-

@ApplicationContactsWidgetViewModel.ContactTypeValue(contact.ContactType)

-

@contact.ContactFullName, @contact.ContactTitle

- @if (!contact.ContactEmail.IsNullOrEmpty()) - { -
- -
@contact.ContactEmail
-
- } - @if (!contact.ContactMobilePhone.IsNullOrEmpty()) - { -
- -
@contact.ContactMobilePhone
-
- } - @if (!contact.ContactWorkPhone.IsNullOrEmpty()) - { -
- -
@contact.ContactWorkPhone
-
- } -
- @if(!(Model.IsReadOnly)) { -
- +@{ + bool IsAdditionalContactAddable = await PermissionChecker.IsGrantedAsync(UnitySelector.Applicant.AdditionalContact.Create); + bool IsAdditionalContactEditable = await PermissionChecker.IsGrantedAsync(UnitySelector.Applicant.AdditionalContact.Update); +} + +
@L["Summary:ContactsTitle"].Value
+ +@if (Model.ApplicationContacts.Count > 0) { +

Info

+
+} + +@foreach (var contact in Model.ApplicationContacts) +{ +
+
+
+

@ApplicationContactsWidgetViewModel.ContactTypeValue(contact.ContactType)

+

@contact.ContactFullName, @contact.ContactTitle

+ @if (!contact.ContactEmail.IsNullOrEmpty()) + { +
+ +
@contact.ContactEmail
+
+ } + @if (!contact.ContactMobilePhone.IsNullOrEmpty()) + { +
+ +
@contact.ContactMobilePhone
+
+ } + @if (!contact.ContactWorkPhone.IsNullOrEmpty()) + { +
+ +
@contact.ContactWorkPhone
}
-
+ @if (IsAdditionalContactEditable) + { +
+ +
+ }
- } -
+
+
+} + +@if (IsAdditionalContactAddable) +{ +
+ +
+} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.js index 5e48b25ebe..f1858be262 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationContactsWidget/Default.js @@ -1,74 +1,102 @@ $(function () { - - let contactModal = new abp.ModalManager({ + let applicantContactsWidgetToken = null; + let _createContactModal = new abp.ModalManager(abp.appPath + 'ApplicationContact/CreateContactModal'); + let _editContactModal = new abp.ModalManager({ viewUrl: abp.appPath + 'ApplicationContact/EditContactModal', - modalClass: "editContactModal" + scriptUrl: abp.appPath + 'Pages/ApplicationContact/EditContactModal.js', + modalClass: "editOrDeleteContactModal" }); - abp.modals.editContactModal = function () { - let initModal = function (publicApi, args) { - setupContactModal(args); - }; - return { initModal: initModal }; - } - - $('body').on('click','.contact-edit-btn',function(e){ - e.preventDefault(); - let itemId = $(this).data('id'); - contactModal.open({ - id: itemId - }); + // Handle modal result - refresh the widget after successful contact creation + _createContactModal.onResult(function () { + PubSub.publish("refresh_application_contacts"); + abp.notify.success( + 'The application contact has been successfully added.', + 'Application Contacts' + ); }); - contactModal.onResult(function () { + _editContactModal.onResult(function () { + PubSub.publish("refresh_application_contacts"); abp.notify.success( - 'The application contact have been successfully updated.', + 'The application contact has been successfully updated.', 'Application Contacts' ); - PubSub.publish("refresh_application_contacts"); }); - let setupContactModal = function (args) { - $('#DeleteContactButton').click(handleDeleteContact); + abp.widgets.ApplicationContactsWidget = function ($wrapper) { - function handleDeleteContact(e) { - e.preventDefault(); - showDeleteConfirmation(); - } - - function showDeleteConfirmation() { - abp.message.confirm('Are you sure to delete this contact?') - .then(processDeleteConfirmation); - } - - function processDeleteConfirmation(confirmed) { - if (confirmed) { - deleteContact(); - } - } - - function deleteContact() { - try { - unity.grantManager.grantApplications.applicationContact - .delete(args.id) - .done(onContactDeleted) - .fail(onDeleteFailure); - } catch (error) { - onDeleteFailure(error); - } - } - - function onContactDeleted() { - PubSub.publish("refresh_application_contacts"); - contactModal.close(); - abp.notify.success('The contact has been deleted.'); - } - - function onDeleteFailure(error) { - abp.notify.error('Contact deletion failed.'); - if (error) { - console.log(error); + let _widgetManager = $wrapper.data('abp-widget-manager'); + + let widgetApi = { + applicationId: null, // Cache the applicationId to prevent reading from stale DOM + + getFilters: function () { + const appId = this.applicationId || $wrapper.find('#ApplicationContactsWidget_ApplicationId').val(); + + return { + applicationId: appId + }; + }, + + init: function (filters) { + this.applicationId = $wrapper.find('#ApplicationContactsWidget_ApplicationId').val(); + this.setupEventHandlers(); + }, + + refresh: function () { + const currentFilters = this.getFilters(); + _widgetManager.refresh($wrapper, currentFilters); + }, + + setupEventHandlers: function() { + const self = this; + + // Unsubscribe from previous subscription if it exists + // This prevents duplicate event handlers after widget refresh + if (applicantContactsWidgetToken) { + PubSub.unsubscribe(applicantContactsWidgetToken); + applicantContactsWidgetToken = null; + } + + applicantContactsWidgetToken = PubSub.subscribe( + 'refresh_application_contacts', + () => { + self.refresh(); + } + ); + + // Prevent duplicate delegated click handlers on re-init by removing any + // existing handlers in this widget's namespace before re-binding. + $wrapper.off('click.ApplicationContactsWidget', '#CreateContactButton'); + $wrapper.off('click.ApplicationContactsWidget', '.contact-edit-btn'); + + // Handle Add Contact button click + $wrapper.on('click.ApplicationContactsWidget', '#CreateContactButton', function (e) { + e.preventDefault(); + _createContactModal.open({ + applicationId: self.applicationId || $wrapper.find('#ApplicationContactsWidget_ApplicationId').val() + }); + }); + + $wrapper.on('click.ApplicationContactsWidget', '.contact-edit-btn', function (e) { + e.preventDefault(); + let itemId = $(this).data('id'); + _editContactModal.open({ + id: itemId + }); + }); } } - } + + return widgetApi; + }; + + // Initialize the ApplicationContactsWidget manager with filter callback + let applicationContactsWidgetManager = new abp.WidgetManager({ + wrapper: '.abp-widget-wrapper[data-widget-name="ApplicationContactsWidget"]' + }); + + // Initialize the widget + applicationContactsWidgetManager.init(); }); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationFormConfigWidget/Default.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationFormConfigWidget/Default.cshtml index b8b339ebfd..a37d8d7332 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationFormConfigWidget/Default.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationFormConfigWidget/Default.cshtml @@ -57,11 +57,12 @@
-
diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationLinksWidget/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationLinksWidget/Default.js index 4e29d4aeae..dcaeb4b1a4 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationLinksWidget/Default.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationLinksWidget/Default.js @@ -136,6 +136,7 @@ $(function () { }) .catch(function (error) { abp.notify.error('Error deleting application link.'); + dataTable.ajax.reload(); }); } } @@ -163,6 +164,9 @@ $(function () { 'The application links have been successfully updated.', 'Application Links' ); + }); + + applicationLinksModal.onClose(function () { dataTable.ajax.reload(); }); @@ -921,17 +925,28 @@ $(function () { data: formData, processData: false, contentType: false, - success: () => { + success: (response) => { applicationLinksModal.close(); - abp.notify.success( - 'The application links have been successfully updated.', - 'Application Links' - ); + if (response.success) + { + abp.notify.success('The application links have been successfully updated.','Application Links'); + } + else + { // Display the error message from the server + abp.notify.error(response.message || 'Failed to update application links.','Application Links'); + } dataTable.ajax.reload(); }, error: (xhr, status, error) => { console.error('Error updating application links:', status, error); - abp.notify.error('Error updating application links: ' + error); + let errorMessage = 'Error updating application links.'; + + // Try to extract error message from response + if (xhr.responseJSON?.message) { + errorMessage = xhr.responseJSON.message; + } + + abp.notify.error(errorMessage); } }); } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/AssessmentScoresWidgetViewComponent.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/AssessmentScoresWidgetViewComponent.cs index e07ce701b7..bbcab59471 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/AssessmentScoresWidgetViewComponent.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/AssessmentScoresWidgetViewComponent.cs @@ -5,6 +5,7 @@ using Volo.Abp.AspNetCore.Mvc.UI.Bundling; using System; using System.Threading.Tasks; +using System.Globalization; using Unity.GrantManager.Assessments; using Unity.Flex.Domain.ScoresheetInstances; using Unity.Flex.Domain.Scoresheets; @@ -13,6 +14,7 @@ using Unity.Flex.Worksheets; using Unity.Flex; using Unity.Flex.Scoresheets.Enums; +using Unity.GrantManager.AI; using Unity.GrantManager.Applications; using System.Text.Json; @@ -73,8 +75,12 @@ public async Task InvokeAsync(Guid assessmentId, Guid curr // First, populate human answers ResolveAnswers(scoresheetInstance, scoresheetDto, humanAnsweredQuestions); - // Then, populate AI answers for questions without human answers - ResolveAiAnswers(aiAnswers, scoresheetDto, humanAnsweredQuestions); + // Only show AI suggestions on the dedicated AI assessment row. + // Human assessments (including clones) show only their own saved answers. + if (assessment.IsAiAssessment) + { + ResolveAiAnswers(aiAnswers, scoresheetDto, humanAnsweredQuestions); + } } } AssessmentScoresWidgetViewModel model = new() @@ -113,11 +119,11 @@ private static void ResolveAiAnswer(Dictionary aiAnswers, Q { question.IsHumanConfirmed = false; // Mark as AI generated - // Handle enhanced AI response format with answer, citation, and confidence + // Handle AI response format with answer, rationale, and confidence. if (aiAnswerValue.ValueKind == JsonValueKind.Object) { - // New format with citations and confidence scores - if (aiAnswerValue.TryGetProperty("answer", out var answerProp)) + // New format with rationale and confidence + if (aiAnswerValue.TryGetProperty(AIJsonKeys.Answer, out var answerProp)) { var rawAnswer = answerProp.ToString(); @@ -131,14 +137,13 @@ private static void ResolveAiAnswer(Dictionary aiAnswers, Q question.Answer = rawAnswer; } } - if (aiAnswerValue.TryGetProperty("citation", out var citationProp)) + if (aiAnswerValue.TryGetProperty(AIJsonKeys.Rationale, out var rationaleProp)) { - question.AICitation = citationProp.ToString(); + question.AICitation = rationaleProp.ToString(); } - if (aiAnswerValue.TryGetProperty("confidence", out var confidenceProp) && - confidenceProp.TryGetInt32(out var confidenceScore)) + if (aiAnswerValue.TryGetProperty(AIJsonKeys.Confidence, out var confidenceProp)) { - question.AIConfidence = confidenceScore; + question.AIConfidence = ParseAiConfidence(confidenceProp); } } else @@ -238,6 +243,35 @@ private static string ConvertNumericAnswerToSelectListValue(string numericAnswer return numericAnswer; } + private static int ParseAiConfidence(JsonElement confidenceProp) + { + int confidence = 0; + + if (confidenceProp.ValueKind == JsonValueKind.Number) + { + if (confidenceProp.TryGetInt32(out var intValue)) + { + confidence = intValue; + } + else if (confidenceProp.TryGetDouble(out var doubleValue)) + { + confidence = (int)Math.Round(doubleValue, MidpointRounding.AwayFromZero); + } + } + else if (confidenceProp.ValueKind == JsonValueKind.String) + { + var raw = confidenceProp.GetString(); + if (!int.TryParse(raw, out confidence) && + double.TryParse(raw, NumberStyles.Float, CultureInfo.InvariantCulture, out var parsedDouble)) + { + confidence = (int)Math.Round(parsedDouble, MidpointRounding.AwayFromZero); + } + } + + var rounded = (int)Math.Round(confidence / 5.0, MidpointRounding.AwayFromZero) * 5; + return Math.Clamp(rounded, 0, 100); + } + } public class AssessmentScoresWidgetStyleBundleContributor : BundleContributor diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/Default.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/Default.cshtml index 0839196deb..5e9142ac52 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/Default.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/AssessmentScoresWidget/Default.cshtml @@ -59,8 +59,8 @@ } @if (question.AIConfidence.HasValue && question.AIConfidence.Value < 85) { - - @question.AIConfidence.Value.ToString("F1")% + + @question.AIConfidence.Value.ToString("F0")% } @@ -229,5 +229,3 @@ else
} - - diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ChefsAttachments/ChefsAttachments.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ChefsAttachments/ChefsAttachments.js index 78913e0ad5..c5ac30b12a 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ChefsAttachments/ChefsAttachments.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ChefsAttachments/ChefsAttachments.js @@ -176,7 +176,7 @@ $(function () { .append( $( '' - ).html(data.aiSummary) + ).text(data.aiSummary) ); $(row).after(summaryRow); } @@ -335,7 +335,7 @@ $(function () { const $text = $button.contents().filter(function () { return this.nodeType === 3; }); - $icon.removeClass('fl-chevron-up').addClass('fa-wand-sparkles'); + $icon.removeClass('fa-chevron-up').addClass('fa-chevron-down'); $text.replaceWith('Show Summaries'); $button.attr('title', 'Show AI Summaries'); allAISummariesExpanded = false; @@ -343,12 +343,13 @@ $(function () { }); function formatAISummary(data) { + const safeSummary = escapeHtml(data.aiSummary || 'No summary available'); return ( '
' + '
' + ' Summary: ' + '

' + - (data.aiSummary || 'No summary available') + + safeSummary + '

' + '
' + '
' @@ -513,6 +514,12 @@ $(function () { }); }); +function escapeHtml(text) { + const div = document.createElement('div'); + div.textContent = text; + return div.innerHTML; +} + function downloadChefsFile(event) { const button = event.currentTarget; const chefsFileId = button.getAttribute('chefs-data'); @@ -586,3 +593,4 @@ function showChefsAPIAccessError() { }, }); } + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewComponent.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewComponent.cs index 66ab7c583e..5510427687 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewComponent.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewComponent.cs @@ -40,6 +40,7 @@ public async Task InvokeAsync(string? formVersionId, strin var formVersion = await applicationFormVersionAppService.GetByChefsFormVersionId(model.ChefsFormVersionId); model.Version = formVersion?.Version?.ToString(); + model.ChefsFormPublished = formVersion?.Published; model.WorksheetLinks = await worksheetLinkAppService.GetListByCorrelationAsync(formVersion?.Id ?? Guid.Empty, CorrelationConsts.FormVersion); model.PublishedWorksheets = [.. (await worksheetListAppService.GetListAsync()) diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewModel.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewModel.cs index 246c37200f..95169c2de8 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewModel.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/CustomFieldsViewModel.cs @@ -16,6 +16,7 @@ public class CustomFieldsViewModel [JsonRequired] public Guid ChefsFormVersionId { get; set; } + public bool? ChefsFormPublished { get; set; } public string? FormName { get; set; } public string? Version { get; set; } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/Default.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/Default.cshtml index 253c1c48b4..bf6acd2ef9 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/Default.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/CustomFields/Default.cshtml @@ -5,7 +5,26 @@ Layout = null; } -

Selected Form Version: @Model.Version

+
+
+ +
+ + @if (Model?.ChefsFormPublished == true) + { + + } +
+
+
+ + + + +
+
@@ -29,15 +48,6 @@
}
- -
-
- - - - -
-
diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/EmailsWidget/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/EmailsWidget/Default.js index 7ef97277ad..79fa979834 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/EmailsWidget/Default.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/EmailsWidget/Default.js @@ -166,12 +166,16 @@ if (tinymce.get("EmailBody")) { tinymce.get("EmailBody").remove(); // remove existing instance } + tinymce.init({ license_key: 'gpl', - selector: `#EmailBody`, + selector: '#EmailBody', plugins: getPlugins(), toolbar: getToolbarOptions(), - statusbar: false, + resize: true, + statusbar: true, + elementpath: false, + branding: false, promotion: false, content_css: false, skin: false, @@ -608,12 +612,16 @@ if (tinymce.get("EmailBody")) { tinymce.get("EmailBody").remove(); // remove existing instance } + tinymce.init({ license_key: 'gpl', - selector: `#EmailBody`, + selector: '#EmailBody', plugins: getPlugins(), toolbar: getToolbarOptions(), - statusbar: false, + resize: true, + statusbar: true, + elementpath: false, + branding: false, promotion: false, content_css: false, skin: false, diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ReviewList/ReviewList.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ReviewList/ReviewList.js index 89e2d29192..22ebc8ecaf 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ReviewList/ReviewList.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ReviewList/ReviewList.js @@ -5,6 +5,7 @@ const actionButtonConfigMap = { Create: { buttonType: 'createButton', order: 1 }, Complete: { buttonType: 'unityWorkflow', order: 2 }, SendBack: { buttonType: 'unityWorkflow', order: 3 }, + Clone: { buttonType: 'cloneButton', order: 4 }, _Fallback: { buttonType: 'unityWorkflow', order: 100 } } @@ -54,6 +55,11 @@ $(function () { extend: 'unityWorkflow', init: createButtonInit, action: createButtonAction + }, + cloneButton: { + extend: 'unityWorkflow', + text: cloneButtonText, + action: cloneButtonAction } }); @@ -74,6 +80,11 @@ $(function () { buttons: Array(renderUnityWorkflowButton('Create')) }; + let assessmentCloneButtonGroup = { + name: 'assessmentCloneButtonsGroup', + buttons: Array(renderUnityWorkflowButton('Clone')) + }; + const reviewListDiv = "ReviewListTable"; let reviewListTable = $('#' + reviewListDiv).DataTable( @@ -110,8 +121,12 @@ $(function () { title: l('ReviewerList:AssessorName'), data: 'assessorFullName', className: 'data-table-header', - render: function (data) { - return data ?? nullPlaceholder; + render: function (data, type, row) { + let name = data ?? nullPlaceholder; + if (row.isAiAssessment) { + name = 'AI' + name; + } + return name; }, }, { @@ -190,6 +205,10 @@ $(function () { CreateAssessmentButton(); } + if (abp.auth.isGranted('AI.ScoringAssistant')) { + CloneAssessmentButton(); + } + async function CreateAssessmentButton() { let createButtons = new $.fn.dataTable.Buttons(reviewListTable, assessmentCreateButtonGroup); createButtons.container().prependTo("#AdjudicationTeamLeadActionBar"); @@ -203,6 +222,12 @@ $(function () { return !finalApplicationStates.includes(applicationStatus.statusCode); } + function CloneAssessmentButton() { + let cloneButtons = new $.fn.dataTable.Buttons(reviewListTable, assessmentCloneButtonGroup); + cloneButtons.container().prependTo("#AdjudicationTeamLeadActionBar"); + reviewListTable.buttons('Clone:name').disable(); + } + reviewListTable.buttons(0, null).container().appendTo("#AdjudicationTeamLeadActionBar"); $("#AdjudicationTeamLeadActionBar .dt-buttons").contents().unwrap(); @@ -253,7 +278,7 @@ function handleRowSelection(e, dt, type, indexes, reviewListTable) { PubSub.publish('refresh_assessment_attachment_list', selectedData.id); } e.currentTarget.classList.toggle('selected'); - refreshActionButtons(dt, selectedData.id); + refreshActionButtons(dt, selectedData.id, selectedData); } } @@ -294,16 +319,27 @@ function getButtonArray(actionArray) { .sort((a, b) => a.sortOrder - b.sortOrder); } -function refreshActionButtons(dataTableContext, assessmentId) { +function refreshActionButtons(dataTableContext, assessmentId, selectedData) { dataTableContext.buttons(0, null).disable(); + dataTableContext.buttons('Clone:name').disable(); if (assessmentId) { - unity.grantManager.assessments.assessment.getPermittedActions(assessmentId, {}) - .then(function (actionListResult) { - // Check permissions - let enabledButtons = actionListResult.map((x) => x + ':name'); - dataTableContext.buttons(enabledButtons).enable(); - }); + if (selectedData?.isAiAssessment) { + // AI assessment: Clone is only available if the current user has no existing human assessment + unity.grantManager.assessments.assessment.getCurrentUserAssessmentId(pageApplicationId, {}) + .done(function (existingAssessmentId) { + if (existingAssessmentId == null) { + dataTableContext.buttons('Clone:name').enable(); + } + }); + } else { + // Human assessment: enable workflow buttons based on permitted actions + unity.grantManager.assessments.assessment.getPermittedActions(assessmentId, {}) + .then(function (actionListResult) { + let enabledButtons = actionListResult.map((x) => x + ':name'); + dataTableContext.buttons(enabledButtons).enable(); + }); + } } if (typeof CheckAssessmentCreateButton === 'function') { @@ -345,6 +381,10 @@ function unityWorkflowButtonText(dt, button, config) { return '' + buttonText + ''; } +function cloneButtonText(dt, button, config) { + return '' + l('ReviewerList:CloneAssessment') + ''; +} + function unityWorkflowButtonAction(e, dt, button, config) { let selectedRow = dt.rows({ selected: true }).data()[0]; if (typeof (selectedRow) === 'object') { @@ -376,6 +416,24 @@ function createButtonInit(dt, button, config) { }); } +function cloneButtonAction(e, dt, button, config) { + let selectedRow = dt.rows({ selected: true }).data()[0]; + if (typeof (selectedRow) === 'object') { + unity.grantManager.assessments.assessment.cloneFromAi(selectedRow.id, {}) + .done(function (data) { + dt.buttons('Create:name').disable(); + PubSub.publish('assessment_action_completed'); + PubSub.publish('refresh_review_list', data.id); + PubSub.publish("application_status_changed"); + PubSub.publish("refresh_detail_panel_summary"); + abp.notify.success( + l('ReviewerList:CloneAssessment'), + "Completed Successfully" + ); + }); + } +} + function createButtonAction(e, dt, button, config) { unity.grantManager.assessments.assessment.create({ "applicationId": pageApplicationId }, {}) .done(function (data) { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/SummaryWidget/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/SummaryWidget/Default.js index 84d64f5e4b..72d6b2e036 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/SummaryWidget/Default.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/SummaryWidget/Default.js @@ -1,38 +1,5 @@ $(function () { - let applicationId = document.getElementById('SummaryWidgetApplicationId').value; - let isReadOnly = document.getElementById('SummaryWidgetIsReadOnly').value; - let contactModal = new abp.ModalManager(abp.appPath + 'ApplicationContact/CreateContactModal'); - - let applicationContactsWidgetManager = new abp.WidgetManager({ - wrapper: '#applicationContactsWidget', - filterCallback: function () { - return { - 'applicationId': applicationId, - 'isReadOnly': isReadOnly - }; - } - }); - - $('#AddContactButton').click(function (e) { - e.preventDefault(); - contactModal.open({ - applicationId: applicationId - }); - }); - - contactModal.onResult(function () { - abp.notify.success( - 'The application contact have been successfully added.', - 'Application Contacts' - ); - applicationContactsWidgetManager.refresh(); - }); - - PubSub.subscribe( - 'refresh_application_contacts', - (msg, data) => { - applicationContactsWidgetManager.refresh(); - } - ); + // SummaryWidget initialization + // Contact modal and widget management moved to ApplicationContactsWidget component }); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/appsettings.Development.json b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/appsettings.Development.json index 27323616ed..e41b752c50 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/appsettings.Development.json +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/appsettings.Development.json @@ -2,6 +2,18 @@ "App": { "SelfUrl": "https://localhost:44342" }, + "AuthServer": { + "ClientSecret": "" + }, + "S3": { + "AccessKeyId": "", + "Bucket": "", + "Endpoint": "", + "SecretAccessKey": "" + }, + "CssApi": { + "ClientSecret": "" + }, "ConnectionStrings": { "Default": "Host=localhost;port=5432;Database=UnityGrantManager;Username=postgres;", "Tenant": "Host=localhost;port=5432;Database=UnityGrantTenant;Username=postgres;" @@ -14,8 +26,29 @@ "Quartz": { "UseCluster": false, "IsAutoRegisterEnabled": false + }, + "IntakeResync": { + "Expression": "0 0 12 1/1 * ? *", + "NumDaysToCheck": "-2" + }, + "EmailResend": { + "RetryAttemptsMaximum": 2 + }, + "CasPaymentsReconciliation": { + "ProducerExpression": "0 0 22 1/1 * ? *" + }, + "CasFinancialNotificationSummary": { + "ProducerExpression": "0 0 23 1/1 * ? *" } }, + "RabbitMQ": { + "IsEnabled": false, + "HostName": "127.0.0.1", + "Port": 5672, + "UserName": "guest", + "Password": "guest", + "VirtualHost": "/" + }, "Intake": { "BaseUri": "https://chefs-test.apps.silver.devops.gov.bc.ca/app/api/v1", "FormId": "", @@ -28,16 +61,17 @@ "AllowUnregisteredVersions": true }, "Payments": { - "CasBaseUrl": "", - "CasClientId": "", - "CasClientSecret": "" + "CasBaseUrl": "", + "CasClientId": "", + "CasClientSecret": "" }, "Notifications": { "TeamsNotificationsWebhook": "", "ChesUrl": "https://ches-dev.api.gov.bc.ca/api/v1", "ChesTokenUrl": "https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token", "ChesClientId": "", - "ChesClientSecret": "" + "ChesClientSecret": "", + "ChesBaseUri": "https://ches-dev.api.gov.bc.ca/api/v1" }, "DataProtection": { "IsEnabled": false @@ -97,5 +131,19 @@ }, "B2BAuth": { "ApiKey": "__SET_VIA_USER_SECRETS__" - } + }, + "ReportingAI": { + "JWTSecret": "" + }, + "Azure": { + "OpenAI": { + "ApiKey": "", + "ApiUrl": "", + "Model": "" + }, + "AgenticAPI": { + "Url": "http://localhost:5000/v1/completions" + } + } + } \ No newline at end of file diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/package.json b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/package.json index 63cd5b81d7..d985f6accc 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/package.json +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/package.json @@ -7,30 +7,30 @@ "@abp/font-awesome": "~9.1.3", "bootstrap-4": "npm:bootstrap@~4.6.2", "bootstrap-select": "~1.13.18", - "datatables.net-bs5": "~2.3.6", + "datatables.net-bs5": "~2.3.7", "datatables.net-buttons-bs5": "~3.2.6", "datatables.net-colreorder": "~2.1.1", "datatables.net-colreorder-bs5": "~2.1.1", - "datatables.net-fixedheader": "~4.0.3", - "datatables.net-fixedheader-bs5": "~4.0.3", + "datatables.net-fixedheader": "~4.0.6", + "datatables.net-fixedheader-bs5": "~4.0.6", "datatables.net-select-bs5": "~3.1.0", "datatables.net-staterestore": "~1.4.2", "datatables.net-staterestore-dt": "~1.4.2", + "dompurify": "^3.3.1", "echarts": "~6.0.0", "formiojs": "4.17.4", + "handlebars": "~4.7.8", "html2canvas": "~1.4.1", "jquery-maskmoney": "~3.0.2", - "jspdf": "~4.0.0", + "jspdf": "~4.2.0", "jszip": "~3.10.1", "popper.js": "~1.16.1", "pubsub-js": "~1.9.5", - "sortablejs": "~1.15.6", - "tributejs": "~5.1.3", + "sortablejs": "~1.15.7", "tinymce": "~8.3.2", - "handlebars": "~4.7.8", - "dompurify": "^3.3.1" + "tributejs": "~5.1.3" }, "devDependencies": { - "@types/jquery": "~3.5.33" + "@types/jquery": "~3.5.34" } -} \ No newline at end of file +} diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/yarn.lock b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/yarn.lock index aa748a116e..ad7891b43e 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/yarn.lock +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/yarn.lock @@ -193,7 +193,7 @@ dependencies: just-compare "^2.3.0" -"@babel/runtime@^7.12.5", "@babel/runtime@^7.20.6", "@babel/runtime@^7.28.4", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.12.5", "@babel/runtime@^7.20.6", "@babel/runtime@^7.28.6", "@babel/runtime@^7.9.2": version "7.28.6" resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz" integrity sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA== @@ -244,10 +244,10 @@ resolved "https://registry.npmjs.org/@sphinxxxx/color-conversion/-/color-conversion-2.2.2.tgz" integrity sha512-XExJS3cLqgrmNBIP3bBw6+1oQ1ksGjFh0+oClDKFYpCCqx/hlqwWO5KO/S63fzUo67SxI9dMrF0y5T/Ey7h8Zw== -"@types/jquery@~3.5.33": - version "3.5.33" - resolved "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.33.tgz" - integrity sha512-SeyVJXlCZpEki5F0ghuYe+L+PprQta6nRZqhONt9F13dWBtR/ftoaIbdRQ7cis7womE+X2LKhsDdDtkkDhJS6g== +"@types/jquery@~3.5.34": + version "3.5.34" + resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.34.tgz#c1993eaac0db03cf9db974976dd8f07bbf7c5708" + integrity sha512-3m3939S3erqmTLJANS/uy0B6V7BorKx7RorcGZVjZ62dF5PAGbKEDZK1CuLtKombJkFA2T1jl8LAIIs7IV6gBQ== dependencies: "@types/sizzle" "*" @@ -416,7 +416,7 @@ custom-event@^1.0.0: resolved "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz" integrity sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg== -datatables.net-bs5@^2, datatables.net-bs5@^2.1.8, datatables.net-bs5@~2.3.6: +datatables.net-bs5@^2, datatables.net-bs5@^2.1.8: version "2.3.6" resolved "https://registry.npmjs.org/datatables.net-bs5/-/datatables.net-bs5-2.3.6.tgz" integrity sha512-oUNGjZrpNC2fY3l/6V4ijTC9kyVKU4Raons+RFmq2J7590rPn0c+5WAYKBx0evgW/CW7WfhStGBrU7+WJig6Og== @@ -424,6 +424,14 @@ datatables.net-bs5@^2, datatables.net-bs5@^2.1.8, datatables.net-bs5@~2.3.6: datatables.net "2.3.6" jquery ">=1.7" +datatables.net-bs5@~2.3.7: + version "2.3.7" + resolved "https://registry.yarnpkg.com/datatables.net-bs5/-/datatables.net-bs5-2.3.7.tgz#ddef957ee23b03c2d4bc1d48735b39c6182e5d53" + integrity sha512-RiCEMpMXDBeMDwjSrMpmcXDU6mibRMuOn7Wk7k3SlOfLEY3FQHO7S2m+K7teXYeaNlCLyjJMU+6BUUwlBCpLFw== + dependencies: + datatables.net "2.3.7" + jquery ">=1.7" + datatables.net-buttons-bs5@~3.2.6: version "3.2.6" resolved "https://registry.npmjs.org/datatables.net-buttons-bs5/-/datatables.net-buttons-bs5-3.2.6.tgz" @@ -466,19 +474,19 @@ datatables.net-colreorder@2.1.2, datatables.net-colreorder@~2.1.1: datatables.net "2.2.1" jquery ">=1.7" -datatables.net-fixedheader-bs5@~4.0.3: - version "4.0.5" - resolved "https://registry.npmjs.org/datatables.net-fixedheader-bs5/-/datatables.net-fixedheader-bs5-4.0.5.tgz" - integrity sha512-R0m4Mntda7wfRCpyjGS2RWFw2861X8e4trn6SnBHID2htuMPPdk11bK4RVJMipgFDxdMfJbvEMH5Hkx5XKrNuA== +datatables.net-fixedheader-bs5@~4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/datatables.net-fixedheader-bs5/-/datatables.net-fixedheader-bs5-4.0.6.tgz#25bc9d2d5f9ded665ea4915b26a433f74e3c2979" + integrity sha512-V5KhTssDq2osUG8aXur5wf8j6tXE9kSP/34C5k0DKIFkHjvZiK1yWPyadP6/T9JJRKWuJppPaLiJ1PzB+nlwPw== dependencies: datatables.net-bs5 "^2" - datatables.net-fixedheader "4.0.5" + datatables.net-fixedheader "4.0.6" jquery ">=1.7" -datatables.net-fixedheader@4.0.5, datatables.net-fixedheader@~4.0.3: - version "4.0.5" - resolved "https://registry.npmjs.org/datatables.net-fixedheader/-/datatables.net-fixedheader-4.0.5.tgz" - integrity sha512-cobQhOhjzqIYXTvMRrHUulULS8Re+hd2mmgFiOGKcZwHV0mofIwBlgiU3Ol4LHikHUCvsGnTEXoI+C7Ozma5sA== +datatables.net-fixedheader@4.0.6, datatables.net-fixedheader@~4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/datatables.net-fixedheader/-/datatables.net-fixedheader-4.0.6.tgz#0c361a8a90542d75402f897db401085433efcebe" + integrity sha512-icYg/qKDpqGDrAVRWfsjt0xQdngk48R7LWkS9t8kaZFp9c4xrLFcmmPtRLgPp5/S4JHZbbsxmVkF16kscjNZjg== dependencies: datatables.net "^2" jquery ">=1.7" @@ -531,6 +539,13 @@ datatables.net@2.2.1: dependencies: jquery ">=1.7" +datatables.net@2.3.7: + version "2.3.7" + resolved "https://registry.yarnpkg.com/datatables.net/-/datatables.net-2.3.7.tgz#3cd34f6f5d1f40a46b5a20a4ba32604bdbcd6738" + integrity sha512-AvsjG/Nkp6OxeyBKYZauemuzQCPogE1kOtKwG4sYjvdqGCSLiGaJagQwXv4YxG+ts5vaJr6qKGG9ec3g6vTo3w== + dependencies: + jquery ">=1.7" + deepmerge@^4.2.2: version "4.3.1" resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz" @@ -574,7 +589,7 @@ dom-set@^1.0.1: is-array "^1.0.1" iselement "^1.1.4" -dompurify@^3.0.5, dompurify@^3.2.4: +dompurify@^3.0.5, dompurify@^3.3.1: version "3.3.1" resolved "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz" integrity sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q== @@ -648,10 +663,10 @@ fflate@^0.8.1: resolved "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz" integrity sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A== -formiojs@~4.17.4: - version "4.17.5" - resolved "https://registry.npmjs.org/formiojs/-/formiojs-4.17.5.tgz" - integrity sha512-vJW41GYhpJzmqYWJII8s48aZt+HQuYkh2jbqIQQtmQ6c4Eb1wlCXSrUNE2XeBmVCgEaC6YDHqnnvdhakZAAOOg== +formiojs@4.17.4: + version "4.17.4" + resolved "https://registry.yarnpkg.com/formiojs/-/formiojs-4.17.4.tgz#2f7ef167fbdd1ef6c6fa880122300e17b68156fe" + integrity sha512-1wUWPLKTJ6/FWa5jCtw5YfsUzgr85TYh8aMhXUWxxRNBtYxZMLg4RcFsArqDJP9Lfh9z4N8p/sLSaOik6iu7kA== dependencies: "@formio/bootstrap3" "2.12.4-rc.1" "@formio/choices.js" "10.2.0" @@ -807,18 +822,18 @@ json-logic-js@^2.0.2: resolved "https://registry.npmjs.org/json-logic-js/-/json-logic-js-2.0.2.tgz" integrity sha512-ZBtBdMJieqQcH7IX/LaBsr5pX+Y5JIW+EhejtM3Ffg2jdN9Iwf+Ht6TbHnvAZ/YtwyuhPaCBlnvzrwVeWdvGDQ== -jspdf@~4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/jspdf/-/jspdf-4.0.0.tgz" - integrity sha512-w12U97Z6edKd2tXDn3LzTLg7C7QLJlx0BPfM3ecjK2BckUl9/81vZ+r5gK4/3KQdhAcEZhENUxRhtgYBj75MqQ== +jspdf@~4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/jspdf/-/jspdf-4.2.0.tgz#f5b42a8e1592c3da1531d005adc87ccc19272965" + integrity sha512-hR/hnRevAXXlrjeqU5oahOE+Ln9ORJUB5brLHHqH67A+RBQZuFr5GkbI9XQI8OUFSEezKegsi45QRpc4bGj75Q== dependencies: - "@babel/runtime" "^7.28.4" + "@babel/runtime" "^7.28.6" fast-png "^6.2.0" fflate "^0.8.1" optionalDependencies: canvg "^3.0.11" core-js "^3.6.0" - dompurify "^3.2.4" + dompurify "^3.3.1" html2canvas "^1.0.0-rc.5" jstimezonedetect@^1.0.7: @@ -1035,10 +1050,10 @@ signature_pad@^4.1.4: resolved "https://registry.npmjs.org/signature_pad/-/signature_pad-4.1.6.tgz" integrity sha512-eoZB8qFPfCs7o00weajp5roNnE2gY2kTNjZsh805L8V+lYPagxoZi9qrBFS3A6sgbVq++ukdzgruK7tuv3JFXQ== -sortablejs@~1.15.6: - version "1.15.6" - resolved "https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.6.tgz" - integrity sha512-aNfiuwMEpfBM/CN6LY0ibyhxPfPbyFeBTYJKCvzkJ2GkUpazIt3H+QIPAMHwqQ7tMKaHz1Qj+rJJCqljnf4p3A== +sortablejs@~1.15.7: + version "1.15.7" + resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.15.7.tgz#83a0bddc472117ee328dea20b2e6f490fed20f86" + integrity sha512-Kk8wLQPlS+yi1ZEf48a4+fzHa4yxjC30M/Sr2AnQu+f/MPwvvX9XjZ6OWejiz8crBsLwSq8GHqaxaET7u6ux0A== source-map@^0.6.1: version "0.6.1" diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/AddressInfoDataProviderTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/AddressInfoDataProviderTests.cs new file mode 100644 index 0000000000..7b38a48e83 --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/AddressInfoDataProviderTests.cs @@ -0,0 +1,437 @@ +using NSubstitute; +using Shouldly; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Unity.GrantManager.Applications; +using Unity.GrantManager.GrantApplications; +using Unity.GrantManager.TestHelpers; +using Volo.Abp.Data; +using Volo.Abp.Domain.Entities; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.MultiTenancy; +using Xunit; + +namespace Unity.GrantManager.Applicants +{ + public class AddressInfoDataProviderTests + { + private readonly ICurrentTenant _currentTenant; + private readonly IRepository _submissionRepo; + private readonly IRepository _addressRepo; + private readonly IRepository _applicationRepo; + private readonly AddressInfoDataProvider _provider; + + public AddressInfoDataProviderTests() + { + _currentTenant = Substitute.For(); + _currentTenant.Change(Arg.Any()).Returns(Substitute.For()); + _submissionRepo = Substitute.For>(); + _addressRepo = Substitute.For>(); + _applicationRepo = Substitute.For>(); + + SetupEmptyQueryables(); + + _provider = new AddressInfoDataProvider(_currentTenant, _submissionRepo, _addressRepo, _applicationRepo); + } + + private void SetupEmptyQueryables() + { + _submissionRepo.GetQueryableAsync() + .Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + _addressRepo.GetQueryableAsync() + .Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + _applicationRepo.GetQueryableAsync() + .Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + } + + private void SetupQueryables( + IEnumerable submissions, + IEnumerable addresses, + IEnumerable? applications = null) + { + _submissionRepo.GetQueryableAsync() + .Returns(Task.FromResult(submissions.AsAsyncQueryable())); + _addressRepo.GetQueryableAsync() + .Returns(Task.FromResult(addresses.AsAsyncQueryable())); + _applicationRepo.GetQueryableAsync() + .Returns(Task.FromResult((applications ?? []).AsAsyncQueryable())); + } + + private static ApplicantProfileInfoRequest CreateRequest() => new() + { + ProfileId = Guid.NewGuid(), + Subject = "testuser@idir", + TenantId = Guid.NewGuid(), + Key = ApplicantProfileKeys.AddressInfo + }; + + private static ApplicationFormSubmission CreateSubmission( + Guid applicationId, string oidcSub, Action? configure = null) + { + var entity = new ApplicationFormSubmission { ApplicationId = applicationId, OidcSub = oidcSub }; + EntityHelper.TrySetId(entity, () => Guid.NewGuid()); + configure?.Invoke(entity); + return entity; + } + + private static ApplicantAddress CreateAddress(Action configure) + { + var entity = new ApplicantAddress(); + EntityHelper.TrySetId(entity, () => Guid.NewGuid()); + configure(entity); + return entity; + } + + private static Application CreateApplication(Guid id, Action? configure = null) + { + var entity = new Application(); + EntityHelper.TrySetId(entity, () => id); + configure?.Invoke(entity); + return entity; + } + + [Fact] + public async Task GetDataAsync_ShouldChangeTenant() + { + // Arrange + var request = CreateRequest(); + + // Act + await _provider.GetDataAsync(request); + + // Assert + _currentTenant.Received(1).Change(request.TenantId); + } + + [Fact] + public async Task GetDataAsync_ShouldReturnCorrectDataType() + { + // Arrange + var request = CreateRequest(); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + result.DataType.ShouldBe("ADDRESSINFO"); + } + + [Fact] + public async Task GetDataAsync_WithNoAddresses_ShouldReturnEmptyList() + { + // Arrange + var request = CreateRequest(); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.ShouldBeEmpty(); + } + + [Fact] + public async Task GetDataAsync_ShouldMapAddressFields() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER")], + [CreateAddress(a => + { + a.ApplicationId = applicationId; + a.Street = "123 Main St"; + a.Street2 = "Suite 100"; + a.Unit = "4A"; + a.City = "Victoria"; + a.Province = "BC"; + a.Postal = "V8W 1A1"; + a.Country = "Canada"; + a.AddressType = AddressType.PhysicalAddress; + })], + [CreateApplication(applicationId, a => a.ReferenceNo = "REF-001")]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.Count.ShouldBe(1); + + var address = dto.Addresses[0]; + address.Street.ShouldBe("123 Main St"); + address.Street2.ShouldBe("Suite 100"); + address.Unit.ShouldBe("4A"); + address.City.ShouldBe("Victoria"); + address.Province.ShouldBe("BC"); + address.PostalCode.ShouldBe("V8W 1A1"); + address.Country.ShouldBe("Canada"); + address.AddressType.ShouldBe("Physical"); + address.ReferenceNo.ShouldBe("REF-001"); + address.IsEditable.ShouldBeFalse(); + } + + [Theory] + [InlineData(AddressType.PhysicalAddress, "Physical")] + [InlineData(AddressType.MailingAddress, "Mailing")] + [InlineData(AddressType.BusinessAddress, "Business")] + public async Task GetDataAsync_ShouldMapAddressTypeName(AddressType addressType, string expectedName) + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER")], + [CreateAddress(a => { a.ApplicationId = applicationId; a.AddressType = addressType; })], + [CreateApplication(applicationId)]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses[0].AddressType.ShouldBe(expectedName); + } + + [Fact] + public async Task GetDataAsync_ShouldReturnMultipleAddressesForSameSubmission() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER")], + [ + CreateAddress(a => { a.ApplicationId = applicationId; a.AddressType = AddressType.PhysicalAddress; a.City = "Victoria"; }), + CreateAddress(a => { a.ApplicationId = applicationId; a.AddressType = AddressType.MailingAddress; a.City = "Vancouver"; }) + ], + [CreateApplication(applicationId)]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.Count.ShouldBe(2); + } + + [Fact] + public async Task GetDataAsync_ShouldNotReturnAddressesForOtherSubjects() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "OTHERUSER")], + [CreateAddress(a => { a.ApplicationId = applicationId; a.City = "Victoria"; })], + [CreateApplication(applicationId)]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.ShouldBeEmpty(); + } + + [Fact] + public async Task GetDataAsync_ShouldHandleNullAddressFields() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER")], + [CreateAddress(a => + { + a.ApplicationId = applicationId; + a.Street = null; + a.Street2 = null; + a.Unit = null; + a.City = null; + a.Province = null; + a.Postal = null; + a.Country = null; + })], + [CreateApplication(applicationId)]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + var address = dto.Addresses[0]; + address.Street.ShouldBe(string.Empty); + address.Street2.ShouldBe(string.Empty); + address.Unit.ShouldBe(string.Empty); + address.City.ShouldBe(string.Empty); + address.Province.ShouldBe(string.Empty); + address.PostalCode.ShouldBe(string.Empty); + address.Country.ShouldBe(string.Empty); + } + + [Fact] + public async Task GetDataAsync_ShouldReturnAddressesLinkedByApplicantId() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var applicantId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER", s => s.ApplicantId = applicantId)], + [CreateAddress(a => + { + a.ApplicantId = applicantId; + a.City = "Kelowna"; + a.AddressType = AddressType.MailingAddress; + })]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.Count.ShouldBe(1); + dto.Addresses[0].City.ShouldBe("Kelowna"); + dto.Addresses[0].ReferenceNo.ShouldBeNull(); + dto.Addresses[0].IsEditable.ShouldBeTrue(); + } + + [Fact] + public async Task GetDataAsync_ShouldCombineAddressesFromBothLinks() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var applicantId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER", s => s.ApplicantId = applicantId)], + [ + CreateAddress(a => { a.ApplicationId = applicationId; a.City = "Victoria"; }), + CreateAddress(a => { a.ApplicantId = applicantId; a.City = "Kelowna"; }) + ], + [CreateApplication(applicationId, a => a.ReferenceNo = "REF-002")]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.Count.ShouldBe(2); + } + + [Fact] + public async Task GetDataAsync_ShouldDeduplicateAddressesMatchingBothLinks() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var applicantId = Guid.NewGuid(); + var addressId = Guid.NewGuid(); + + // Same address linked by both ApplicationId and ApplicantId + var sharedAddress = new ApplicantAddress + { + ApplicationId = applicationId, + ApplicantId = applicantId, + City = "Victoria" + }; + EntityHelper.TrySetId(sharedAddress, () => addressId); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER", s => s.ApplicantId = applicantId)], + [sharedAddress], + [CreateApplication(applicationId)]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert — deduplicated to one entry, application-linked (not editable) wins + var dto = result.ShouldBeOfType(); + dto.Addresses.Count.ShouldBe(1); + dto.Addresses[0].City.ShouldBe("Victoria"); + dto.Addresses[0].IsEditable.ShouldBeFalse(); + } + + [Fact] + public async Task GetDataAsync_ShouldMarkMostRecentAddressAsPrimaryWhenNoneMarked() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var oldAddress = CreateAddress(a => + { + a.ApplicationId = applicationId; + a.City = "Vancouver"; + a.CreationTime = new DateTime(2023, 1, 1, 10, 0, 0, DateTimeKind.Utc); + }); + var recentAddress = CreateAddress(a => + { + a.ApplicationId = applicationId; + a.City = "Victoria"; + a.CreationTime = new DateTime(2023, 6, 15, 14, 30, 0, DateTimeKind.Utc); + }); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER")], + [oldAddress, recentAddress], + [CreateApplication(applicationId)]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.Count.ShouldBe(2); + var primary = dto.Addresses.Single(a => a.IsPrimary); + primary.City.ShouldBe("Victoria"); + } + + [Fact] + public async Task GetDataAsync_ShouldNotOverridePrimaryWhenAlreadySet() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var primaryAddress = CreateAddress(a => + { + a.ApplicationId = applicationId; + a.City = "Vancouver"; + a.CreationTime = new DateTime(2023, 1, 1, 10, 0, 0, DateTimeKind.Utc); + a.SetProperty("isPrimary", true); + }); + var recentAddress = CreateAddress(a => + { + a.ApplicationId = applicationId; + a.City = "Victoria"; + a.CreationTime = new DateTime(2023, 6, 15, 14, 30, 0, DateTimeKind.Utc); + }); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER")], + [primaryAddress, recentAddress], + [CreateApplication(applicationId)]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Addresses.Count.ShouldBe(2); + var primary = dto.Addresses.Single(a => a.IsPrimary); + primary.City.ShouldBe("Vancouver"); + } + } +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileAppServiceTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileAppServiceTests.cs index 29cde43446..81f5180892 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileAppServiceTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileAppServiceTests.cs @@ -1,8 +1,8 @@ using Shouldly; using System; using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ApplicantProfile; -using Unity.GrantManager.Applicants.ProfileData; +using Unity.GrantManager.ApplicantProfile; +using Unity.GrantManager.ApplicantProfile.ProfileData; using Xunit; using Xunit.Abstractions; @@ -21,7 +21,7 @@ public ApplicantProfileAppServiceTests(ITestOutputHelper outputHelper) : base(ou { ProfileId = Guid.NewGuid(), Subject = "testuser@idir", - TenantId = Guid.NewGuid(), + TenantId = Guid.Empty, Key = key }; @@ -37,7 +37,7 @@ public async Task GetApplicantProfileAsync_WithValidKey_ShouldReturnData(string var request = CreateRequest(key); // Act - var result = await _service.GetApplicantProfileAsync(request); + var result = await WithUnitOfWorkAsync(() => _service.GetApplicantProfileAsync(request)); // Assert result.ShouldNotBeNull(); @@ -60,7 +60,7 @@ public async Task GetApplicantProfileAsync_WithValidKey_ShouldReturnCorrectDataT var request = CreateRequest(key); // Act - var result = await _service.GetApplicantProfileAsync(request); + var result = await WithUnitOfWorkAsync(() => _service.GetApplicantProfileAsync(request)); // Assert result.Data.ShouldNotBeNull(); @@ -89,7 +89,7 @@ public async Task GetApplicantProfileAsync_KeyLookupIsCaseInsensitive() var request = CreateRequest("contactinfo"); // Act - var result = await _service.GetApplicantProfileAsync(request); + var result = await WithUnitOfWorkAsync(() => _service.GetApplicantProfileAsync(request)); // Assert result.Data.ShouldNotBeNull(); diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileDataProviderTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileDataProviderTests.cs index c9fa64a0f8..7d7c20fc77 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileDataProviderTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/ApplicantProfileDataProviderTests.cs @@ -1,9 +1,16 @@ +using NSubstitute; using Shouldly; using System; +using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Unity.GrantManager.Applicants.ApplicantProfile; -using Unity.GrantManager.Applicants.ProfileData; +using Unity.GrantManager.ApplicantProfile; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Unity.GrantManager.Applications; +using Unity.GrantManager.Integrations; +using Unity.GrantManager.TestHelpers; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.MultiTenancy; using Xunit; namespace Unity.GrantManager.Applicants @@ -18,17 +25,60 @@ public class ApplicantProfileDataProviderTests Key = key }; + private static ContactInfoDataProvider CreateContactInfoDataProvider() + { + var currentTenant = Substitute.For(); + currentTenant.Change(Arg.Any()).Returns(Substitute.For()); + var applicantProfileContactService = Substitute.For(); + applicantProfileContactService.GetProfileContactsAsync(Arg.Any()) + .Returns(Task.FromResult(new List())); + applicantProfileContactService.GetApplicationContactsBySubjectAsync(Arg.Any()) + .Returns(Task.FromResult(new List())); + applicantProfileContactService.GetApplicantAgentContactsBySubjectAsync(Arg.Any()) + .Returns(Task.FromResult(new List())); + return new ContactInfoDataProvider(currentTenant, applicantProfileContactService); + } + + private static AddressInfoDataProvider CreateAddressInfoDataProvider() + { + var currentTenant = Substitute.For(); + currentTenant.Change(Arg.Any()).Returns(Substitute.For()); + var submissionRepo = Substitute.For>(); + submissionRepo.GetQueryableAsync().Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + var addressRepo = Substitute.For>(); + addressRepo.GetQueryableAsync().Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + var applicationRepo = Substitute.For>(); + applicationRepo.GetQueryableAsync().Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + return new AddressInfoDataProvider(currentTenant, submissionRepo, addressRepo, applicationRepo); + } + + private static SubmissionInfoDataProvider CreateSubmissionInfoDataProvider() + { + var currentTenant = Substitute.For(); + currentTenant.Change(Arg.Any()).Returns(Substitute.For()); + var submissionRepo = Substitute.For>(); + submissionRepo.GetQueryableAsync().Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + var applicationRepo = Substitute.For>(); + applicationRepo.GetQueryableAsync().Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + var statusRepo = Substitute.For>(); + statusRepo.GetQueryableAsync().Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + var endpointManagementAppService = Substitute.For(); + endpointManagementAppService.GetChefsApiBaseUrlAsync().Returns(Task.FromResult(string.Empty)); + var logger = Substitute.For>(); + return new SubmissionInfoDataProvider(currentTenant, submissionRepo, applicationRepo, statusRepo, endpointManagementAppService, logger); + } + [Fact] public void ContactInfoDataProvider_Key_ShouldMatchExpected() { - var provider = new ContactInfoDataProvider(); + var provider = CreateContactInfoDataProvider(); provider.Key.ShouldBe(ApplicantProfileKeys.ContactInfo); } [Fact] public async Task ContactInfoDataProvider_GetDataAsync_ShouldReturnContactInfoDto() { - var provider = new ContactInfoDataProvider(); + var provider = CreateContactInfoDataProvider(); var result = await provider.GetDataAsync(CreateRequest(ApplicantProfileKeys.ContactInfo)); result.ShouldNotBeNull(); result.ShouldBeOfType(); @@ -53,14 +103,14 @@ public async Task OrgInfoDataProvider_GetDataAsync_ShouldReturnOrgInfoDto() [Fact] public void AddressInfoDataProvider_Key_ShouldMatchExpected() { - var provider = new AddressInfoDataProvider(); + var provider = CreateAddressInfoDataProvider(); provider.Key.ShouldBe(ApplicantProfileKeys.AddressInfo); } [Fact] public async Task AddressInfoDataProvider_GetDataAsync_ShouldReturnAddressInfoDto() { - var provider = new AddressInfoDataProvider(); + var provider = CreateAddressInfoDataProvider(); var result = await provider.GetDataAsync(CreateRequest(ApplicantProfileKeys.AddressInfo)); result.ShouldNotBeNull(); result.ShouldBeOfType(); @@ -69,14 +119,14 @@ public async Task AddressInfoDataProvider_GetDataAsync_ShouldReturnAddressInfoDt [Fact] public void SubmissionInfoDataProvider_Key_ShouldMatchExpected() { - var provider = new SubmissionInfoDataProvider(); + var provider = CreateSubmissionInfoDataProvider(); provider.Key.ShouldBe(ApplicantProfileKeys.SubmissionInfo); } [Fact] public async Task SubmissionInfoDataProvider_GetDataAsync_ShouldReturnSubmissionInfoDto() { - var provider = new SubmissionInfoDataProvider(); + var provider = CreateSubmissionInfoDataProvider(); var result = await provider.GetDataAsync(CreateRequest(ApplicantProfileKeys.SubmissionInfo)); result.ShouldNotBeNull(); result.ShouldBeOfType(); @@ -103,10 +153,10 @@ public void AllProviders_ShouldHaveUniqueKeys() { IApplicantProfileDataProvider[] providers = [ - new ContactInfoDataProvider(), + CreateContactInfoDataProvider(), new OrgInfoDataProvider(), - new AddressInfoDataProvider(), - new SubmissionInfoDataProvider(), + CreateAddressInfoDataProvider(), + CreateSubmissionInfoDataProvider(), new PaymentInfoDataProvider() ]; diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/SubmissionInfoDataProviderTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/SubmissionInfoDataProviderTests.cs new file mode 100644 index 0000000000..ecae9fbfcb --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Applicants/SubmissionInfoDataProviderTests.cs @@ -0,0 +1,319 @@ +using Microsoft.Extensions.Logging; +using NSubstitute; +using Shouldly; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Unity.GrantManager.Applications; +using Unity.GrantManager.Integrations; +using Unity.GrantManager.TestHelpers; +using Volo.Abp.Domain.Entities; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.MultiTenancy; +using Xunit; + +namespace Unity.GrantManager.Applicants +{ + public class SubmissionInfoDataProviderTests + { + private readonly ICurrentTenant _currentTenant; + private readonly IRepository _submissionRepo; + private readonly IRepository _applicationRepo; + private readonly IRepository _statusRepo; + private readonly IEndpointManagementAppService _endpointManagementAppService; + private readonly ILogger _logger; + private readonly SubmissionInfoDataProvider _provider; + + public SubmissionInfoDataProviderTests() + { + _currentTenant = Substitute.For(); + _currentTenant.Change(Arg.Any()).Returns(Substitute.For()); + _submissionRepo = Substitute.For>(); + _applicationRepo = Substitute.For>(); + _statusRepo = Substitute.For>(); + _endpointManagementAppService = Substitute.For(); + _endpointManagementAppService.GetChefsApiBaseUrlAsync() + .Returns(Task.FromResult(string.Empty)); + _logger = Substitute.For>(); + + SetupEmptyQueryables(); + + _provider = new SubmissionInfoDataProvider( + _currentTenant, _submissionRepo, _applicationRepo, + _statusRepo, _endpointManagementAppService, _logger); + } + + private void SetupEmptyQueryables() + { + _submissionRepo.GetQueryableAsync() + .Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + _applicationRepo.GetQueryableAsync() + .Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + _statusRepo.GetQueryableAsync() + .Returns(Task.FromResult(Enumerable.Empty().AsAsyncQueryable())); + } + + private void SetupQueryables( + IEnumerable submissions, + IEnumerable applications, + IEnumerable statuses) + { + _submissionRepo.GetQueryableAsync() + .Returns(Task.FromResult(submissions.AsAsyncQueryable())); + _applicationRepo.GetQueryableAsync() + .Returns(Task.FromResult(applications.AsAsyncQueryable())); + _statusRepo.GetQueryableAsync() + .Returns(Task.FromResult(statuses.AsAsyncQueryable())); + } + + private static ApplicantProfileInfoRequest CreateRequest() => new() + { + ProfileId = Guid.NewGuid(), + Subject = "testuser@idir", + TenantId = Guid.NewGuid(), + Key = ApplicantProfileKeys.SubmissionInfo + }; + + private static ApplicationFormSubmission CreateSubmission( + Guid applicationId, string oidcSub, Action? configure = null) + { + var entity = new ApplicationFormSubmission + { + ApplicationId = applicationId, + OidcSub = oidcSub, + Submission = "{}" + }; + EntityHelper.TrySetId(entity, () => Guid.NewGuid()); + configure?.Invoke(entity); + return entity; + } + + private static Application CreateApplication(Guid id, Guid statusId, Action? configure = null) + { + var entity = new Application { ApplicationStatusId = statusId }; + EntityHelper.TrySetId(entity, () => id); + configure?.Invoke(entity); + return entity; + } + + private static ApplicationStatus CreateStatus(Guid id, string externalStatus) + { + var entity = new ApplicationStatus { ExternalStatus = externalStatus }; + EntityHelper.TrySetId(entity, () => id); + return entity; + } + + [Fact] + public async Task GetDataAsync_ShouldChangeTenant() + { + // Arrange + var request = CreateRequest(); + + // Act + await _provider.GetDataAsync(request); + + // Assert + _currentTenant.Received(1).Change(request.TenantId); + } + + [Fact] + public async Task GetDataAsync_ShouldReturnCorrectDataType() + { + // Arrange + var request = CreateRequest(); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + result.DataType.ShouldBe("SUBMISSIONINFO"); + } + + [Fact] + public async Task GetDataAsync_WithNoSubmissions_ShouldReturnEmptyList() + { + // Arrange + var request = CreateRequest(); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Submissions.ShouldBeEmpty(); + } + + [Fact] + public async Task GetDataAsync_ShouldMapSubmissionFields() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var statusId = Guid.NewGuid(); + var creationTime = new DateTime(2025, 1, 15, 10, 30, 0, DateTimeKind.Utc); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER", s => + { + s.ChefsSubmissionGuid = "abc-123"; + s.CreationTime = creationTime; + })], + [CreateApplication(applicationId, statusId, a => + { + a.ReferenceNo = "REF-001"; + a.ProjectName = "Test Project"; + })], + [CreateStatus(statusId, "Submitted")]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Submissions.Count.ShouldBe(1); + + var sub = dto.Submissions[0]; + sub.LinkId.ShouldBe("abc-123"); + sub.ReceivedTime.ShouldBe(creationTime); + sub.ReferenceNo.ShouldBe("REF-001"); + sub.ProjectName.ShouldBe("Test Project"); + sub.Status.ShouldBe("Submitted"); + } + + [Fact] + public async Task GetDataAsync_ShouldResolveSubmissionTimeFromJson() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var statusId = Guid.NewGuid(); + var creationTime = new DateTime(2025, 1, 15, 10, 30, 0, DateTimeKind.Utc); + var chefsCreatedAt = new DateTime(2025, 1, 14, 21, 37, 52, DateTimeKind.Utc); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER", s => + { + s.CreationTime = creationTime; + s.Submission = """{"createdAt": "2025-01-14T21:37:52.000Z"}"""; + })], + [CreateApplication(applicationId, statusId)], + [CreateStatus(statusId, "Submitted")]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Submissions[0].SubmissionTime.ShouldBe(chefsCreatedAt); + dto.Submissions[0].ReceivedTime.ShouldBe(creationTime); + } + + [Fact] + public async Task GetDataAsync_ShouldFallBackToCreationTimeWhenNoCreatedAt() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var statusId = Guid.NewGuid(); + var creationTime = new DateTime(2025, 1, 15, 10, 30, 0, DateTimeKind.Utc); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER", s => + { + s.CreationTime = creationTime; + s.Submission = """{"id": "some-id"}"""; + })], + [CreateApplication(applicationId, statusId)], + [CreateStatus(statusId, "Submitted")]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Submissions[0].SubmissionTime.ShouldBe(creationTime); + } + + [Fact] + public async Task GetDataAsync_ShouldFallBackToCreationTimeWhenInvalidJson() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var statusId = Guid.NewGuid(); + var creationTime = new DateTime(2025, 1, 15, 10, 30, 0, DateTimeKind.Utc); + + SetupQueryables( + [CreateSubmission(applicationId, "TESTUSER", s => + { + s.CreationTime = creationTime; + s.Submission = "not valid json"; + })], + [CreateApplication(applicationId, statusId)], + [CreateStatus(statusId, "Submitted")]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Submissions[0].SubmissionTime.ShouldBe(creationTime); + } + + [Fact] + public async Task GetDataAsync_ShouldResolveLinkSourceFromIntakeApiBase() + { + // Arrange + var request = CreateRequest(); + _endpointManagementAppService.GetChefsApiBaseUrlAsync() + .Returns(Task.FromResult("https://chefs-dev.apps.silver.devops.gov.bc.ca/app/api/v1")); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.LinkSource.ShouldBe("https://chefs-dev.apps.silver.devops.gov.bc.ca/app/user/view?s="); + } + + [Fact] + public async Task GetDataAsync_ShouldReturnEmptyLinkSourceWhenSettingFails() + { + // Arrange + var request = CreateRequest(); + _endpointManagementAppService.GetChefsApiBaseUrlAsync() + .Returns(x => throw new Exception("Not configured")); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.LinkSource.ShouldBeEmpty(); + } + + [Fact] + public async Task GetDataAsync_ShouldNotReturnSubmissionsForOtherSubjects() + { + // Arrange + var request = CreateRequest(); + var applicationId = Guid.NewGuid(); + var statusId = Guid.NewGuid(); + + SetupQueryables( + [CreateSubmission(applicationId, "OTHERUSER")], + [CreateApplication(applicationId, statusId)], + [CreateStatus(statusId, "Submitted")]); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Submissions.ShouldBeEmpty(); + } + } +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Assessments/AssessmentAppServiceTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Assessments/AssessmentAppServiceTests.cs index f229ea60f6..a334c6d89c 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Assessments/AssessmentAppServiceTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Assessments/AssessmentAppServiceTests.cs @@ -166,10 +166,63 @@ public async Task ExecuteAssessmentActions_Should_Fail_On_Invalid_State_Transiti var assessment = (await _assessmentRepository.GetQueryableAsync()) .Where(s => s.AssessorId == GrantManagerTestData.User1_UserId).First(); - // Assert + // Assert await Assert.ThrowsAsync(async () => await _assessmentAppService.ExecuteAssessmentAction(assessment.Id, AssessmentAction.SendBack) ); } + + [Fact] + [Trait("Category", "Integration")] + public async Task CloneFromAiAsync_Should_Throw_On_Non_AI_Assessment() + { + // Arrange + Login(GrantManagerTestData.User1_UserId); + + using var uow = _unitOfWorkManager.Begin(); + + // Act & Assert — Assessment1_Id is a human assessment, not AI + await Assert.ThrowsAsync(async () => + await _assessmentAppService.CloneFromAiAsync(GrantManagerTestData.Assessment1_Id)); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task CloneFromAiAsync_Should_Create_Human_Assessment_From_AI_Assessment() + { + // Arrange — User2 has no existing human assessment on Application1 + Login(GrantManagerTestData.User2_UserId); + + using var uow = _unitOfWorkManager.Begin(); + var beforeCount = (await _assessmentRepository.GetQueryableAsync()) + .Count(s => s.ApplicationId == GrantManagerTestData.Application1_Id && !s.IsAiAssessment); + + // Act + var result = await _assessmentAppService.CloneFromAiAsync(GrantManagerTestData.AiAssessment1_Id); + + // Assert + result.ShouldNotBeNull(); + result.IsAiAssessment.ShouldBe(false); + var afterCount = (await _assessmentRepository.GetQueryableAsync()) + .Count(s => s.ApplicationId == GrantManagerTestData.Application1_Id && !s.IsAiAssessment); + afterCount.ShouldBe(beforeCount + 1); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task GetDisplayList_Should_Exclude_AI_Assessment_When_Feature_Disabled() + { + // Arrange — Unity.AI.Scoring feature is disabled by default in test environment + Login(GrantManagerTestData.User1_UserId); + + using var uow = _unitOfWorkManager.Begin(); + + // Act + var result = await _assessmentAppService.GetDisplayList(GrantManagerTestData.Application1_Id); + + // Assert — AI assessment is seeded but should be filtered out + result.ShouldNotBeNull(); + result.Data.ShouldNotContain(a => a.IsAiAssessment); + } } } diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Attachments/AttachmentAppServiceTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Attachments/AttachmentAppServiceTests.cs index 86172ffa1b..1c5830adac 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Attachments/AttachmentAppServiceTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Attachments/AttachmentAppServiceTests.cs @@ -58,7 +58,7 @@ public async Task GetAssessmentAsync_Should_List_Assessment_Attachments() // Arrange using var uow = _unitOfWorkManager.Begin(); var application = (await _applicationsRepository.GetListAsync())[0]; - var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id)); + var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id) && !s.IsAiAssessment); // Act var assessmentAttachments = (await _attachmentAppServiceTest.GetAssessmentAsync(assessment!.Id)).ToList(); @@ -119,7 +119,7 @@ public async Task GetAttachmentsAsync_For_Assessment_Should_Return_Assessment_At // Arrange using var uow = _unitOfWorkManager.Begin(); var application = (await _applicationsRepository.GetListAsync())[0]; - var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id)); + var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id) && !s.IsAiAssessment); // Act var attachments = await _attachmentAppServiceTest.GetAttachmentsAsync(new AttachmentParametersDto(AttachmentType.ASSESSMENT, assessment!.Id)); @@ -154,7 +154,7 @@ public async Task GetAttachmentsInternalAsync_For_Assessment_Should_Return_Asses // Arrange using var uow = _unitOfWorkManager.Begin(); var application = (await _applicationsRepository.GetListAsync())[0]; - var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id)); + var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id) && !s.IsAiAssessment); // Act var attachments = await _attachmentAppServiceTest.GetAttachmentsInternalAsync( @@ -192,7 +192,7 @@ public async Task GetAttachmentMetadataAsync_For_Assessment_Should_Return_Metada // Arrange using var uow = _unitOfWorkManager.Begin(); var application = (await _applicationsRepository.GetListAsync())[0]; - var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id)); + var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id) && !s.IsAiAssessment); var attachment = (await _attachmentAppServiceTest.GetAttachmentsAsync(new AttachmentParametersDto(AttachmentType.ASSESSMENT, assessment!.Id)))[0]; // Act @@ -244,7 +244,7 @@ public async Task GetMetadataInternalAsync_For_Assessment_Should_Return_Metadata // Arrange using var uow = _unitOfWorkManager.Begin(); var application = (await _applicationsRepository.GetListAsync())[0]; - var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id)); + var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id) && !s.IsAiAssessment); var attachment = (await _attachmentAppServiceTest.GetAssessmentAsync(assessment!.Id))[0]; // Act @@ -315,7 +315,7 @@ public async Task UpdateAttachmentMetadataAsync_For_Assessment_Should_Update_Met // Arrange using var uow = _unitOfWorkManager.Begin(); var application = (await _applicationsRepository.GetListAsync())[0]; - var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id)); + var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id) && !s.IsAiAssessment); var attachment = (await _attachmentAppServiceTest.GetAttachmentsAsync(new AttachmentParametersDto(AttachmentType.ASSESSMENT, assessment!.Id)))[0]; var newDisplayName = attachment.DisplayName + "_Updated"; var updateDto = new UpdateAttachmentMetadataDto @@ -385,7 +385,7 @@ public async Task UpdateMetadataInternalAsync_For_Assessment_Should_Update_Metad // Arrange using var uow = _unitOfWorkManager.Begin(); var application = (await _applicationsRepository.GetListAsync())[0]; - var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id)); + var assessment = await _assessmentsRepository.FindAsync(s => s.ApplicationId.Equals(application.Id) && !s.IsAiAssessment); var attachment = (await _attachmentAppServiceTest.GetAssessmentAsync(assessment!.Id))[0]; var newDisplayName = attachment.DisplayName + "_Updated"; var updateDto = new UpdateAttachmentMetadataDto diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactAppServiceTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactAppServiceTests.cs new file mode 100644 index 0000000000..ba28c58009 --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactAppServiceTests.cs @@ -0,0 +1,604 @@ +using NSubstitute; +using Shouldly; +using System; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using Unity.GrantManager.TestHelpers; +using Volo.Abp; +using Volo.Abp.Domain.Entities; +using Xunit; + +namespace Unity.GrantManager.Contacts +{ + public class ContactAppServiceTests + { + private readonly IContactRepository _contactRepository; + private readonly IContactLinkRepository _contactLinkRepository; + private readonly ContactAppService _service; + + public ContactAppServiceTests() + { + _contactRepository = Substitute.For(); + _contactLinkRepository = Substitute.For(); + + _service = new ContactAppService( + _contactRepository, + _contactLinkRepository); + } + + private static T WithId(T entity, Guid id) where T : Entity + { + EntityHelper.TrySetId(entity, () => id); + return entity; + } + + #region GetContactsByEntityAsync + + [Fact] + public async Task GetContactsByEntityAsync_WithMatchingLinks_ShouldReturnAllFields() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + + var contacts = new[] + { + WithId(new Contact + { + Name = "John Doe", + Title = "Manager", + Email = "john@example.com", + HomePhoneNumber = "111-1111", + MobilePhoneNumber = "222-2222", + WorkPhoneNumber = "333-3333", + WorkPhoneExtension = "101" + }, contactId) + }.AsAsyncQueryable(); + + var contactLinks = new[] + { + new ContactLink + { + ContactId = contactId, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + Role = "Primary Contact", + IsPrimary = true, + IsActive = true + } + }.AsAsyncQueryable(); + + _contactRepository.GetQueryableAsync().Returns(contacts); + _contactLinkRepository.GetQueryableAsync().Returns(contactLinks); + + // Act + var result = await _service.GetContactsByEntityAsync("TestEntity", entityId); + + // Assert + result.Count.ShouldBe(1); + var contact = result[0]; + contact.ContactId.ShouldBe(contactId); + contact.Name.ShouldBe("John Doe"); + contact.Title.ShouldBe("Manager"); + contact.Email.ShouldBe("john@example.com"); + contact.HomePhoneNumber.ShouldBe("111-1111"); + contact.MobilePhoneNumber.ShouldBe("222-2222"); + contact.WorkPhoneNumber.ShouldBe("333-3333"); + contact.WorkPhoneExtension.ShouldBe("101"); + contact.Role.ShouldBe("Primary Contact"); + contact.IsPrimary.ShouldBeTrue(); + } + + [Fact] + public async Task GetContactsByEntityAsync_WithMultipleContacts_ShouldReturnAll() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId1 = Guid.NewGuid(); + var contactId2 = Guid.NewGuid(); + + var contacts = new[] + { + WithId(new Contact { Name = "Contact One" }, contactId1), + WithId(new Contact { Name = "Contact Two" }, contactId2) + }.AsAsyncQueryable(); + + var contactLinks = new[] + { + new ContactLink + { + ContactId = contactId1, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = true, + IsActive = true + }, + new ContactLink + { + ContactId = contactId2, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = false, + IsActive = true + } + }.AsAsyncQueryable(); + + _contactRepository.GetQueryableAsync().Returns(contacts); + _contactLinkRepository.GetQueryableAsync().Returns(contactLinks); + + // Act + var result = await _service.GetContactsByEntityAsync("TestEntity", entityId); + + // Assert + result.Count.ShouldBe(2); + result.ShouldContain(c => c.Name == "Contact One" && c.IsPrimary); + result.ShouldContain(c => c.Name == "Contact Two" && !c.IsPrimary); + } + + [Fact] + public async Task GetContactsByEntityAsync_ShouldExcludeInactiveLinks() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + + var contacts = new[] + { + WithId(new Contact { Name = "Inactive Contact" }, contactId) + }.AsAsyncQueryable(); + + var contactLinks = new[] + { + new ContactLink + { + ContactId = contactId, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsActive = false + } + }.AsAsyncQueryable(); + + _contactRepository.GetQueryableAsync().Returns(contacts); + _contactLinkRepository.GetQueryableAsync().Returns(contactLinks); + + // Act + var result = await _service.GetContactsByEntityAsync("TestEntity", entityId); + + // Assert + result.ShouldBeEmpty(); + } + + [Fact] + public async Task GetContactsByEntityAsync_ShouldExcludeDifferentEntityType() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + + var contacts = new[] + { + WithId(new Contact { Name = "Wrong Type" }, contactId) + }.AsAsyncQueryable(); + + var contactLinks = new[] + { + new ContactLink + { + ContactId = contactId, + RelatedEntityType = "OtherType", + RelatedEntityId = entityId, + IsActive = true + } + }.AsAsyncQueryable(); + + _contactRepository.GetQueryableAsync().Returns(contacts); + _contactLinkRepository.GetQueryableAsync().Returns(contactLinks); + + // Act + var result = await _service.GetContactsByEntityAsync("TestEntity", entityId); + + // Assert + result.ShouldBeEmpty(); + } + + [Fact] + public async Task GetContactsByEntityAsync_ShouldExcludeDifferentEntityId() + { + // Arrange + var entityId = Guid.NewGuid(); + var otherEntityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + + var contacts = new[] + { + WithId(new Contact { Name = "Other Entity" }, contactId) + }.AsAsyncQueryable(); + + var contactLinks = new[] + { + new ContactLink + { + ContactId = contactId, + RelatedEntityType = "TestEntity", + RelatedEntityId = otherEntityId, + IsActive = true + } + }.AsAsyncQueryable(); + + _contactRepository.GetQueryableAsync().Returns(contacts); + _contactLinkRepository.GetQueryableAsync().Returns(contactLinks); + + // Act + var result = await _service.GetContactsByEntityAsync("TestEntity", entityId); + + // Assert + result.ShouldBeEmpty(); + } + + [Fact] + public async Task GetContactsByEntityAsync_WithNoLinks_ShouldReturnEmpty() + { + // Arrange + _contactRepository.GetQueryableAsync().Returns(Array.Empty().AsAsyncQueryable()); + _contactLinkRepository.GetQueryableAsync().Returns(Array.Empty().AsAsyncQueryable()); + + // Act + var result = await _service.GetContactsByEntityAsync("TestEntity", Guid.NewGuid()); + + // Assert + result.ShouldBeEmpty(); + } + + #endregion + + #region CreateContactAsync + + [Fact] + public async Task CreateContactAsync_ShouldCreateContactAndLink() + { + // Arrange + var contactId = Guid.NewGuid(); + var entityId = Guid.NewGuid(); + + _contactRepository.InsertAsync(Arg.Any(), true, Arg.Any()) + .Returns(ci => + { + var c = ci.Arg(); + EntityHelper.TrySetId(c, () => contactId); + return c; + }); + + _contactLinkRepository.GetQueryableAsync() + .Returns(Array.Empty().AsAsyncQueryable()); + + var input = new CreateContactLinkDto + { + Name = "New Contact", + Title = "Analyst", + Email = "new@example.com", + HomePhoneNumber = "111-1111", + MobilePhoneNumber = "222-2222", + WorkPhoneNumber = "333-3333", + WorkPhoneExtension = "101", + Role = "Reviewer", + IsPrimary = false, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId + }; + + // Act + var result = await _service.CreateContactAsync(input); + + // Assert + result.ContactId.ShouldBe(contactId); + result.Name.ShouldBe("New Contact"); + result.Title.ShouldBe("Analyst"); + result.Email.ShouldBe("new@example.com"); + result.HomePhoneNumber.ShouldBe("111-1111"); + result.MobilePhoneNumber.ShouldBe("222-2222"); + result.WorkPhoneNumber.ShouldBe("333-3333"); + result.WorkPhoneExtension.ShouldBe("101"); + result.Role.ShouldBe("Reviewer"); + result.IsPrimary.ShouldBeFalse(); + + await _contactRepository.Received(1).InsertAsync( + Arg.Is(c => + c.Name == "New Contact" + && c.Title == "Analyst" + && c.Email == "new@example.com" + && c.HomePhoneNumber == "111-1111" + && c.MobilePhoneNumber == "222-2222" + && c.WorkPhoneNumber == "333-3333" + && c.WorkPhoneExtension == "101"), + true, + Arg.Any()); + + await _contactLinkRepository.Received(1).InsertAsync( + Arg.Is(l => + l.ContactId == contactId + && l.RelatedEntityType == "TestEntity" + && l.RelatedEntityId == entityId + && l.Role == "Reviewer" + && !l.IsPrimary + && l.IsActive), + true, + Arg.Any()); + } + + [Fact] + public async Task CreateContactAsync_NonPrimary_ShouldNotClearExistingPrimary() + { + // Arrange + var contactId = Guid.NewGuid(); + var entityId = Guid.NewGuid(); + + _contactRepository.InsertAsync(Arg.Any(), true, Arg.Any()) + .Returns(ci => + { + var c = ci.Arg(); + EntityHelper.TrySetId(c, () => contactId); + return c; + }); + + var input = new CreateContactLinkDto + { + Name = "Non-Primary Contact", + IsPrimary = false, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId + }; + + // Act + await _service.CreateContactAsync(input); + + // Assert - GetQueryableAsync should not be called (ClearPrimaryAsync not invoked) + await _contactLinkRepository.DidNotReceive().GetQueryableAsync(); + } + + [Fact] + public async Task CreateContactAsync_WhenPrimary_ShouldClearExistingPrimary() + { + // Arrange + var contactId = Guid.NewGuid(); + var entityId = Guid.NewGuid(); + var existingLinkId = Guid.NewGuid(); + + var existingLink = new ContactLink + { + ContactId = Guid.NewGuid(), + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = true, + IsActive = true + }; + EntityHelper.TrySetId(existingLink, () => existingLinkId); + + _contactLinkRepository.GetQueryableAsync() + .Returns( + new[] { existingLink }.AsAsyncQueryable(), + Array.Empty().AsAsyncQueryable()); + + _contactRepository.InsertAsync(Arg.Any(), true, Arg.Any()) + .Returns(ci => + { + var c = ci.Arg(); + EntityHelper.TrySetId(c, () => contactId); + return c; + }); + + var input = new CreateContactLinkDto + { + Name = "Primary Contact", + IsPrimary = true, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId + }; + + // Act + var result = await _service.CreateContactAsync(input); + + // Assert + result.IsPrimary.ShouldBeTrue(); + await _contactLinkRepository.Received(1).UpdateAsync( + Arg.Is(l => l.Id == existingLinkId && !l.IsPrimary), + true, + Arg.Any()); + } + + #endregion + + #region SetPrimaryContactAsync + + [Fact] + public async Task SetPrimaryContactAsync_ShouldClearExistingAndSetNew() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + var existingPrimaryLinkId = Guid.NewGuid(); + var targetLinkId = Guid.NewGuid(); + + var existingPrimaryLink = new ContactLink + { + ContactId = Guid.NewGuid(), + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = true, + IsActive = true + }; + EntityHelper.TrySetId(existingPrimaryLink, () => existingPrimaryLinkId); + + var targetLink = new ContactLink + { + ContactId = contactId, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = false, + IsActive = true + }; + EntityHelper.TrySetId(targetLink, () => targetLinkId); + + _contactLinkRepository.GetQueryableAsync() + .Returns( + new[] { existingPrimaryLink }.AsAsyncQueryable(), + new[] { targetLink }.AsAsyncQueryable()); + + // Act + await _service.SetPrimaryContactAsync("TestEntity", entityId, contactId); + + // Assert + await _contactLinkRepository.Received(1).UpdateAsync( + Arg.Is(l => l.Id == existingPrimaryLinkId && !l.IsPrimary), + true, + Arg.Any()); + await _contactLinkRepository.Received(1).UpdateAsync( + Arg.Is(l => l.Id == targetLinkId && l.IsPrimary), + true, + Arg.Any()); + } + + [Fact] + public async Task SetPrimaryContactAsync_WithNoExistingPrimary_ShouldSetNew() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + var targetLinkId = Guid.NewGuid(); + + var targetLink = new ContactLink + { + ContactId = contactId, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = false, + IsActive = true + }; + EntityHelper.TrySetId(targetLink, () => targetLinkId); + + _contactLinkRepository.GetQueryableAsync() + .Returns( + Array.Empty().AsAsyncQueryable(), + new[] { targetLink }.AsAsyncQueryable()); + + // Act + await _service.SetPrimaryContactAsync("TestEntity", entityId, contactId); + + // Assert — only the target link should be updated (set to primary) + await _contactLinkRepository.Received(1).UpdateAsync( + Arg.Is(l => l.Id == targetLinkId && l.IsPrimary), + true, + Arg.Any()); + } + + [Fact] + public async Task SetPrimaryContactAsync_WithMultipleExistingPrimaries_ShouldClearAll() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + var primaryLinkId1 = Guid.NewGuid(); + var primaryLinkId2 = Guid.NewGuid(); + var targetLinkId = Guid.NewGuid(); + + var primaryLink1 = new ContactLink + { + ContactId = Guid.NewGuid(), + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = true, + IsActive = true + }; + EntityHelper.TrySetId(primaryLink1, () => primaryLinkId1); + + var primaryLink2 = new ContactLink + { + ContactId = Guid.NewGuid(), + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = true, + IsActive = true + }; + EntityHelper.TrySetId(primaryLink2, () => primaryLinkId2); + + var targetLink = new ContactLink + { + ContactId = contactId, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = false, + IsActive = true + }; + EntityHelper.TrySetId(targetLink, () => targetLinkId); + + _contactLinkRepository.GetQueryableAsync() + .Returns( + new[] { primaryLink1, primaryLink2 }.AsAsyncQueryable(), + new[] { targetLink }.AsAsyncQueryable()); + + // Act + await _service.SetPrimaryContactAsync("TestEntity", entityId, contactId); + + // Assert — both existing primaries cleared + await _contactLinkRepository.Received(1).UpdateAsync( + Arg.Is(l => l.Id == primaryLinkId1 && !l.IsPrimary), + true, + Arg.Any()); + await _contactLinkRepository.Received(1).UpdateAsync( + Arg.Is(l => l.Id == primaryLinkId2 && !l.IsPrimary), + true, + Arg.Any()); + // Target set as primary + await _contactLinkRepository.Received(1).UpdateAsync( + Arg.Is(l => l.Id == targetLinkId && l.IsPrimary), + true, + Arg.Any()); + } + + [Fact] + public async Task SetPrimaryContactAsync_ShouldNotMatchInactiveLink() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + + var inactiveLink = new ContactLink + { + ContactId = contactId, + RelatedEntityType = "TestEntity", + RelatedEntityId = entityId, + IsPrimary = false, + IsActive = false + }; + + _contactLinkRepository.GetQueryableAsync() + .Returns( + Array.Empty().AsAsyncQueryable(), + new[] { inactiveLink }.AsAsyncQueryable()); + + // Act & Assert + await Should.ThrowAsync( + () => _service.SetPrimaryContactAsync("TestEntity", entityId, contactId)); + } + + [Fact] + public async Task SetPrimaryContactAsync_WhenContactLinkNotFound_ShouldThrow() + { + // Arrange + var entityId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + + _contactLinkRepository.GetQueryableAsync() + .Returns( + Array.Empty().AsAsyncQueryable(), + Array.Empty().AsAsyncQueryable()); + + // Act & Assert + var ex = await Should.ThrowAsync( + () => _service.SetPrimaryContactAsync("TestEntity", entityId, contactId)); + ex.Code.ShouldBe("Contacts:ContactLinkNotFound"); + } + + #endregion + } +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactInfoDataProviderTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactInfoDataProviderTests.cs new file mode 100644 index 0000000000..dde051f27b --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactInfoDataProviderTests.cs @@ -0,0 +1,196 @@ +using NSubstitute; +using Shouldly; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Volo.Abp.MultiTenancy; +using Xunit; + +namespace Unity.GrantManager.Contacts +{ + public class ContactInfoDataProviderTests + { + private readonly ICurrentTenant _currentTenant; + private readonly IApplicantProfileContactService _applicantProfileContactService; + private readonly ContactInfoDataProvider _provider; + + public ContactInfoDataProviderTests() + { + _currentTenant = Substitute.For(); + _currentTenant.Change(Arg.Any()).Returns(Substitute.For()); + _applicantProfileContactService = Substitute.For(); + + _applicantProfileContactService.GetProfileContactsAsync(Arg.Any()) + .Returns(new List()); + _applicantProfileContactService.GetApplicationContactsBySubjectAsync(Arg.Any()) + .Returns(new List()); + _applicantProfileContactService.GetApplicantAgentContactsBySubjectAsync(Arg.Any()) + .Returns(new List()); + + _provider = new ContactInfoDataProvider(_currentTenant, _applicantProfileContactService); + } + + private static ApplicantProfileInfoRequest CreateRequest() => new() + { + ProfileId = Guid.NewGuid(), + Subject = "testuser@idir", + TenantId = Guid.NewGuid(), + Key = ApplicantProfileKeys.ContactInfo + }; + + [Fact] + public async Task GetDataAsync_ShouldChangeTenant() + { + // Arrange + var request = CreateRequest(); + + // Act + await _provider.GetDataAsync(request); + + // Assert + _currentTenant.Received(1).Change(request.TenantId); + } + + [Fact] + public async Task GetDataAsync_ShouldCallGetProfileContactsWithProfileId() + { + // Arrange + var request = CreateRequest(); + + // Act + await _provider.GetDataAsync(request); + + // Assert + await _applicantProfileContactService.Received(1).GetProfileContactsAsync(request.ProfileId); + } + + [Fact] + public async Task GetDataAsync_ShouldCallGetApplicationContactsWithSubject() + { + // Arrange + var request = CreateRequest(); + + // Act + await _provider.GetDataAsync(request); + + // Assert + await _applicantProfileContactService.Received(1).GetApplicationContactsBySubjectAsync("TESTUSER"); + } + + [Fact] + public async Task GetDataAsync_ShouldCallGetApplicantAgentContactsWithSubject() + { + // Arrange + var request = CreateRequest(); + + // Act + await _provider.GetDataAsync(request); + + // Assert + await _applicantProfileContactService.Received(1).GetApplicantAgentContactsBySubjectAsync("TESTUSER"); + } + + [Fact] + public async Task GetDataAsync_ShouldCombineAllContactSets() + { + // Arrange + var request = CreateRequest(); + var profileContacts = new List + { + new() { ContactId = Guid.NewGuid(), Name = "Profile Contact 1", IsEditable = true }, + new() { ContactId = Guid.NewGuid(), Name = "Profile Contact 2", IsEditable = true } + }; + var appContacts = new List + { + new() { ContactId = Guid.NewGuid(), Name = "App Contact 1", IsEditable = false } + }; + var agentContacts = new List + { + new() { ContactId = Guid.NewGuid(), Name = "Agent Contact 1", IsEditable = false, ContactType = "ApplicantAgent" } + }; + _applicantProfileContactService.GetProfileContactsAsync(request.ProfileId).Returns(profileContacts); + _applicantProfileContactService.GetApplicationContactsBySubjectAsync("TESTUSER").Returns(appContacts); + _applicantProfileContactService.GetApplicantAgentContactsBySubjectAsync("TESTUSER").Returns(agentContacts); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Contacts.Count.ShouldBe(4); + dto.Contacts.Count(c => c.IsEditable).ShouldBe(2); + dto.Contacts.Count(c => !c.IsEditable).ShouldBe(2); + } + + [Fact] + public async Task GetDataAsync_WithNoContacts_ShouldReturnEmptyList() + { + // Arrange + var request = CreateRequest(); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Contacts.ShouldBeEmpty(); + } + + [Fact] + public async Task GetDataAsync_ContactsShouldAppearInExpectedOrder() + { + // Arrange + var request = CreateRequest(); + var profileContact = new ContactInfoItemDto + { + ContactId = Guid.NewGuid(), + Name = "Profile First", + IsEditable = true + }; + var appContact = new ContactInfoItemDto + { + ContactId = Guid.NewGuid(), + Name = "App Second", + IsEditable = false + }; + var agentContact = new ContactInfoItemDto + { + ContactId = Guid.NewGuid(), + Name = "Agent Third", + IsEditable = false, + ContactType = "ApplicantAgent" + }; + _applicantProfileContactService.GetProfileContactsAsync(request.ProfileId) + .Returns(new List { profileContact }); + _applicantProfileContactService.GetApplicationContactsBySubjectAsync("TESTUSER") + .Returns(new List { appContact }); + _applicantProfileContactService.GetApplicantAgentContactsBySubjectAsync("TESTUSER") + .Returns(new List { agentContact }); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + var dto = result.ShouldBeOfType(); + dto.Contacts[0].Name.ShouldBe("Profile First"); + dto.Contacts[1].Name.ShouldBe("App Second"); + dto.Contacts[2].Name.ShouldBe("Agent Third"); + } + + [Fact] + public async Task GetDataAsync_ShouldReturnCorrectDataType() + { + // Arrange + var request = CreateRequest(); + + // Act + var result = await _provider.GetDataAsync(request); + + // Assert + result.DataType.ShouldBe("CONTACTINFO"); + } + } +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactInfoServiceTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactInfoServiceTests.cs new file mode 100644 index 0000000000..874f16fd3f --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Contacts/ContactInfoServiceTests.cs @@ -0,0 +1,377 @@ +using NSubstitute; +using Shouldly; +using System; +using System.Threading.Tasks; +using Unity.GrantManager.ApplicantProfile; +using Unity.GrantManager.ApplicantProfile.ProfileData; +using Unity.GrantManager.Applications; +using Unity.GrantManager.TestHelpers; +using Volo.Abp.Domain.Entities; +using Volo.Abp.Domain.Repositories; +using Xunit; + +namespace Unity.GrantManager.Contacts +{ + public class ApplicantProfileContactServiceTests + { + private readonly IContactRepository _contactRepository; + private readonly IContactLinkRepository _contactLinkRepository; + private readonly IRepository _submissionRepository; + private readonly IRepository _applicationContactRepository; + private readonly IRepository _applicantAgentRepository; + private readonly IRepository _applicationRepository; + private readonly ApplicantProfileContactService _service; + + public ApplicantProfileContactServiceTests() + { + _contactRepository = Substitute.For(); + _contactLinkRepository = Substitute.For(); + _submissionRepository = Substitute.For>(); + _applicationContactRepository = Substitute.For>(); + _applicantAgentRepository = Substitute.For>(); + _applicationRepository = Substitute.For>(); + + _service = new ApplicantProfileContactService( + _contactRepository, + _contactLinkRepository, + _submissionRepository, + _applicationContactRepository, + _applicantAgentRepository, + _applicationRepository); + } + + private static T WithId(T entity, Guid id) where T : Entity + { + EntityHelper.TrySetId(entity, () => id); + return entity; + } + + [Fact] + public async Task GetProfileContactsAsync_WithMatchingLinks_ShouldReturnContacts() + { + // Arrange + var profileId = Guid.NewGuid(); + var contactId = Guid.NewGuid(); + + var contacts = new[] + { + WithId(new Contact + { + Name = "John Doe", + Title = "Manager", + Email = "john@example.com", + HomePhoneNumber = "111-1111", + MobilePhoneNumber = "222-2222", + WorkPhoneNumber = "333-3333", + WorkPhoneExtension = "101" + }, contactId) + }.AsAsyncQueryable(); + + var contactLinks = new[] + { + new ContactLink + { + ContactId = contactId, + RelatedEntityType = "ApplicantProfile", + RelatedEntityId = profileId, + Role = "Primary Contact", + IsPrimary = true, + IsActive = true + } + }.AsAsyncQueryable(); + + _contactRepository.GetQueryableAsync().Returns(contacts); + _contactLinkRepository.GetQueryableAsync().Returns(contactLinks); + + // Act + var result = await _service.GetProfileContactsAsync(profileId); + + // Assert + result.Count.ShouldBe(1); + var contact = result[0]; + contact.ContactId.ShouldBe(contactId); + contact.Name.ShouldBe("John Doe"); + contact.Title.ShouldBe("Manager"); + contact.Email.ShouldBe("john@example.com"); + contact.HomePhoneNumber.ShouldBe("111-1111"); + contact.MobilePhoneNumber.ShouldBe("222-2222"); + contact.WorkPhoneNumber.ShouldBe("333-3333"); + contact.WorkPhoneExtension.ShouldBe("101"); + contact.Role.ShouldBe("Primary Contact"); + contact.IsPrimary.ShouldBeTrue(); + contact.IsEditable.ShouldBeTrue(); + contact.ApplicationId.ShouldBeNull(); + } + + [Fact] + public async Task GetProfileContactsAsync_WithNoLinks_ShouldReturnEmpty() + { + // Arrange + _contactRepository.GetQueryableAsync().Returns(Array.Empty().AsAsyncQueryable()); + _contactLinkRepository.GetQueryableAsync().Returns(Array.Empty().AsAsyncQueryable()); + + // Act + var result = await _service.GetProfileContactsAsync(Guid.NewGuid()); + + // Assert + result.ShouldBeEmpty(); + } + + [Fact] + public async Task GetApplicationContactsBySubjectAsync_WithMatchingSubmission_ShouldReturnContacts() + { + // Arrange + var applicationId = Guid.NewGuid(); + var appContactId = Guid.NewGuid(); + + var submissions = new[] + { + new ApplicationFormSubmission + { + OidcSub = "TESTUSER", + ApplicationId = applicationId, + ApplicantId = Guid.NewGuid(), + ApplicationFormId = Guid.NewGuid() + } + }.AsAsyncQueryable(); + + var applicationContacts = new[] + { + WithId(new ApplicationContact + { + ApplicationId = applicationId, + ContactFullName = "Jane Smith", + ContactTitle = "Director", + ContactEmail = "jane@example.com", + ContactMobilePhone = "444-4444", + ContactWorkPhone = "555-5555", + ContactType = "ADDITIONAL_SIGNING_AUTHORITY" + }, appContactId) + }.AsAsyncQueryable(); + + var applications = new[] + { + WithId(new Application + { + ReferenceNo = "REF-001" + }, applicationId) + }.AsAsyncQueryable(); + + _submissionRepository.GetQueryableAsync().Returns(submissions); + _applicationContactRepository.GetQueryableAsync().Returns(applicationContacts); + _applicationRepository.GetQueryableAsync().Returns(applications); + + // Act + var result = await _service.GetApplicationContactsBySubjectAsync("TESTUSER"); + + // Assert + result.Count.ShouldBe(1); + var contact = result[0]; + contact.ContactId.ShouldBe(appContactId); + contact.Name.ShouldBe("Jane Smith"); + contact.Title.ShouldBe("Director"); + contact.Email.ShouldBe("jane@example.com"); + contact.MobilePhoneNumber.ShouldBe("444-4444"); + contact.WorkPhoneNumber.ShouldBe("555-5555"); + contact.ContactType.ShouldBe("Application"); + contact.Role.ShouldBe("Additional Signing Authority"); + contact.IsPrimary.ShouldBeFalse(); + contact.IsEditable.ShouldBeFalse(); + contact.ApplicationId.ShouldBe(applicationId); + contact.ReferenceNo.ShouldBe("REF-001"); + } + + [Fact] + public async Task GetApplicationContactsBySubjectAsync_WithNonMatchingSubject_ShouldReturnEmpty() + { + // Arrange + var applicationId = Guid.NewGuid(); + + var submissions = new[] + { + new ApplicationFormSubmission + { + OidcSub = "OTHERUSER", + ApplicationId = applicationId, + ApplicantId = Guid.NewGuid(), + ApplicationFormId = Guid.NewGuid() + } + }.AsAsyncQueryable(); + + var applicationContacts = new[] + { + WithId(new ApplicationContact + { + ApplicationId = applicationId, + ContactFullName = "Should Not Match" + }, Guid.NewGuid()) + }.AsAsyncQueryable(); + + _submissionRepository.GetQueryableAsync().Returns(submissions); + _applicationContactRepository.GetQueryableAsync().Returns(applicationContacts); + _applicationRepository.GetQueryableAsync().Returns( + new[] { WithId(new Application(), applicationId) }.AsAsyncQueryable()); + + // Act + var result = await _service.GetApplicationContactsBySubjectAsync("DIFFERENTUSER"); + + // Assert + result.ShouldBeEmpty(); + } + + [Fact] + public async Task GetApplicationContactsBySubjectAsync_WithNoSubmissions_ShouldReturnEmpty() + { + // Arrange + _submissionRepository.GetQueryableAsync() + .Returns(Array.Empty().AsAsyncQueryable()); + _applicationContactRepository.GetQueryableAsync() + .Returns(Array.Empty().AsAsyncQueryable()); + _applicationRepository.GetQueryableAsync() + .Returns(Array.Empty().AsAsyncQueryable()); + + // Act + var result = await _service.GetApplicationContactsBySubjectAsync("TESTUSER"); + + // Assert + result.ShouldBeEmpty(); + } + + [Fact] + public async Task GetApplicationContactsBySubjectAsync_WithMultipleSubmissions_ShouldReturnAllContacts() + { + // Arrange + var appId1 = Guid.NewGuid(); + var appId2 = Guid.NewGuid(); + + var submissions = new[] + { + new ApplicationFormSubmission + { + OidcSub = "TESTUSER", + ApplicationId = appId1, + ApplicantId = Guid.NewGuid(), + ApplicationFormId = Guid.NewGuid() + }, + new ApplicationFormSubmission + { + OidcSub = "TESTUSER", + ApplicationId = appId2, + ApplicantId = Guid.NewGuid(), + ApplicationFormId = Guid.NewGuid() + } + }.AsAsyncQueryable(); + + var applicationContacts = new[] + { + WithId(new ApplicationContact + { + ApplicationId = appId1, + ContactFullName = "Contact App 1", + ContactType = "ADDITIONAL_CONTACT" + }, Guid.NewGuid()), + WithId(new ApplicationContact + { + ApplicationId = appId2, + ContactFullName = "Contact App 2", + ContactType = "ADDITIONAL_SIGNING_AUTHORITY" + }, Guid.NewGuid()) + }.AsAsyncQueryable(); + + _submissionRepository.GetQueryableAsync().Returns(submissions); + _applicationContactRepository.GetQueryableAsync().Returns(applicationContacts); + _applicationRepository.GetQueryableAsync().Returns( + new[] + { + WithId(new Application(), appId1), + WithId(new Application(), appId2) + }.AsAsyncQueryable()); + + // Act + var result = await _service.GetApplicationContactsBySubjectAsync("TESTUSER"); + + // Assert + result.Count.ShouldBe(2); + result.ShouldAllBe(c => !c.IsEditable); + result.ShouldAllBe(c => !c.IsPrimary); + } + + [Fact] + public async Task GetApplicantAgentContactsBySubjectAsync_WithMatchingSubmission_ShouldReturnAgentContacts() + { + // Arrange + var applicationId = Guid.NewGuid(); + var agentId = Guid.NewGuid(); + + var submissions = new[] + { + new ApplicationFormSubmission + { + OidcSub = "TESTUSER", + ApplicationId = applicationId, + ApplicantId = Guid.NewGuid(), + ApplicationFormId = Guid.NewGuid() + } + }.AsAsyncQueryable(); + + var agents = new[] + { + WithId(new ApplicantAgent + { + ApplicationId = applicationId, + ApplicantId = Guid.NewGuid(), + Name = "Agent Smith", + Title = "Signing Authority", + Email = "agent@example.com", + Phone = "777-7777", + PhoneExtension = "201", + Phone2 = "888-8888", + RoleForApplicant = "Primary Contact" + }, agentId) + }.AsAsyncQueryable(); + + _submissionRepository.GetQueryableAsync().Returns(submissions); + _applicantAgentRepository.GetQueryableAsync().Returns(agents); + _applicationRepository.GetQueryableAsync().Returns( + new[] { WithId(new Application { ReferenceNo = "REF-AGENT-001" }, applicationId) }.AsAsyncQueryable()); + + // Act + var result = await _service.GetApplicantAgentContactsBySubjectAsync("TESTUSER"); + + // Assert + result.Count.ShouldBe(1); + var contact = result[0]; + contact.ContactId.ShouldBe(agentId); + contact.Name.ShouldBe("Agent Smith"); + contact.Title.ShouldBe("Signing Authority"); + contact.Email.ShouldBe("agent@example.com"); + contact.WorkPhoneNumber.ShouldBe("777-7777"); + contact.WorkPhoneExtension.ShouldBe("201"); + contact.MobilePhoneNumber.ShouldBe("888-8888"); + contact.Role.ShouldBe("Primary Contact"); + contact.ContactType.ShouldBe("ApplicantAgent"); + contact.IsPrimary.ShouldBeFalse(); + contact.IsEditable.ShouldBeFalse(); + contact.ApplicationId.ShouldBe(applicationId); + contact.ReferenceNo.ShouldBe("REF-AGENT-001"); + } + + [Fact] + public async Task GetApplicantAgentContactsBySubjectAsync_WithNoMatchingSubmissions_ShouldReturnEmpty() + { + // Arrange + _submissionRepository.GetQueryableAsync() + .Returns(Array.Empty().AsAsyncQueryable()); + _applicantAgentRepository.GetQueryableAsync() + .Returns(Array.Empty().AsAsyncQueryable()); + _applicationRepository.GetQueryableAsync() + .Returns(Array.Empty().AsAsyncQueryable()); + + // Act + var result = await _service.GetApplicantAgentContactsBySubjectAsync("TESTUSER"); + + // Assert + result.ShouldBeEmpty(); + } + } +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Intakes/CreateAiAssessmentHandlerTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Intakes/CreateAiAssessmentHandlerTests.cs new file mode 100644 index 0000000000..769b3d540e --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/Intakes/CreateAiAssessmentHandlerTests.cs @@ -0,0 +1,119 @@ +using Microsoft.Extensions.Logging.Abstractions; +using NSubstitute; +using Shouldly; +using System.Linq; +using System.Threading.Tasks; +using Unity.GrantManager.Applications; +using Unity.GrantManager.Assessments; +using Unity.GrantManager.Intakes.Events; +using Unity.GrantManager.Intakes.Handlers; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.Features; +using Volo.Abp.Uow; +using Xunit; +using Xunit.Abstractions; + +namespace Unity.GrantManager.Intakes; + +public class CreateAiAssessmentHandlerTests : GrantManagerApplicationTestBase +{ + private readonly AssessmentManager _assessmentManager; + private readonly IRepository _assessmentRepository; + private readonly IRepository _applicationRepository; + private readonly IUnitOfWorkManager _unitOfWorkManager; + + public CreateAiAssessmentHandlerTests(ITestOutputHelper outputHelper) : base(outputHelper) + { + _assessmentManager = GetRequiredService(); + _assessmentRepository = GetRequiredService>(); + _applicationRepository = GetRequiredService>(); + _unitOfWorkManager = GetRequiredService(); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task HandleEventAsync_Should_Skip_When_Application_Is_Null() + { + // Arrange + var featureChecker = Substitute.For(); + featureChecker.IsEnabledAsync("Unity.AI.Scoring").Returns(true); + var handler = new CreateAiAssessmentHandler(_assessmentManager, featureChecker, NullLogger.Instance); + + using var uow = _unitOfWorkManager.Begin(); + var beforeCount = (await _assessmentRepository.GetQueryableAsync()).Count(a => a.IsAiAssessment); + + // Act — null application should be handled gracefully + await handler.HandleEventAsync(new AiScoresheetAnswersGeneratedEvent { Application = null }); + + // Assert — no AI assessment created + var afterCount = (await _assessmentRepository.GetQueryableAsync()).Count(a => a.IsAiAssessment); + afterCount.ShouldBe(beforeCount); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task HandleEventAsync_Should_Skip_When_Feature_Disabled() + { + // Arrange — feature disabled + var featureChecker = Substitute.For(); + featureChecker.IsEnabledAsync("Unity.AI.Scoring").Returns(false); + var handler = new CreateAiAssessmentHandler(_assessmentManager, featureChecker, NullLogger.Instance); + + using var uow = _unitOfWorkManager.Begin(); + var application = (await _applicationRepository.GetListAsync())[0]; + var beforeCount = (await _assessmentRepository.GetQueryableAsync()).Count(a => a.IsAiAssessment); + + // Act + await handler.HandleEventAsync(new AiScoresheetAnswersGeneratedEvent { Application = application }); + + // Assert — no new AI assessment created + var afterCount = (await _assessmentRepository.GetQueryableAsync()).Count(a => a.IsAiAssessment); + afterCount.ShouldBe(beforeCount); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task HandleEventAsync_Should_Create_AI_Assessment_When_Feature_Enabled() + { + // Arrange — create a fresh application with no AI assessment + var featureChecker = Substitute.For(); + featureChecker.IsEnabledAsync("Unity.AI.Scoring").Returns(true); + var handler = new CreateAiAssessmentHandler(_assessmentManager, featureChecker, NullLogger.Instance); + + using var uow = _unitOfWorkManager.Begin(); + // Application2 has no AI assessment seeded — ideal for the happy path + var application = await _applicationRepository.GetAsync(GrantManagerTestData.Application2_Id); + + // Act + await handler.HandleEventAsync(new AiScoresheetAnswersGeneratedEvent { Application = application }); + + // Assert + var aiAssessment = (await _assessmentRepository.GetQueryableAsync()) + .FirstOrDefault(a => a.ApplicationId == GrantManagerTestData.Application2_Id && a.IsAiAssessment); + aiAssessment.ShouldNotBeNull(); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task HandleEventAsync_Should_Be_Idempotent() + { + // Arrange — AiAssessment1_Id is already seeded for Application1_Id + var featureChecker = Substitute.For(); + featureChecker.IsEnabledAsync("Unity.AI.Scoring").Returns(true); + var handler = new CreateAiAssessmentHandler(_assessmentManager, featureChecker, NullLogger.Instance); + + using var uow = _unitOfWorkManager.Begin(); + var application = await _applicationRepository.GetAsync(GrantManagerTestData.Application1_Id); + var beforeCount = (await _assessmentRepository.GetQueryableAsync()) + .Count(a => a.ApplicationId == GrantManagerTestData.Application1_Id && a.IsAiAssessment); + + // Act — call handler twice + await handler.HandleEventAsync(new AiScoresheetAnswersGeneratedEvent { Application = application }); + await handler.HandleEventAsync(new AiScoresheetAnswersGeneratedEvent { Application = application }); + + // Assert — still only one AI assessment for this application + var afterCount = (await _assessmentRepository.GetQueryableAsync()) + .Count(a => a.ApplicationId == GrantManagerTestData.Application1_Id && a.IsAiAssessment); + afterCount.ShouldBe(beforeCount); + } +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/TestHelpers/TestAsyncEnumerableQueryable.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/TestHelpers/TestAsyncEnumerableQueryable.cs new file mode 100644 index 0000000000..26b6bcd977 --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Application.Tests/TestHelpers/TestAsyncEnumerableQueryable.cs @@ -0,0 +1,74 @@ +using Microsoft.EntityFrameworkCore.Query; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Threading; +using System.Threading.Tasks; + +namespace Unity.GrantManager.TestHelpers +{ + internal class TestAsyncEnumerableQueryable : EnumerableQuery, IAsyncEnumerable, IQueryable + { + public TestAsyncEnumerableQueryable(IEnumerable enumerable) : base(enumerable) { } + public TestAsyncEnumerableQueryable(Expression expression) : base(expression) { } + + public IAsyncEnumerator GetAsyncEnumerator(CancellationToken cancellationToken = default) + => new TestAsyncEnumerator(this.AsEnumerable().GetEnumerator()); + + IQueryProvider IQueryable.Provider => new TestAsyncQueryProvider(this); + } + + internal class TestAsyncEnumerator(IEnumerator inner) : IAsyncEnumerator + { + public T Current => inner.Current; + public ValueTask MoveNextAsync() => new(inner.MoveNext()); + public ValueTask DisposeAsync() + { + inner.Dispose(); + return default; + } + } + + internal class TestAsyncQueryProvider(IQueryProvider inner) : IQueryProvider, IAsyncQueryProvider + { + public IQueryable CreateQuery(Expression expression) + => new TestAsyncEnumerableQueryable(expression); + + public IQueryable CreateQuery(Expression expression) + => new TestAsyncEnumerableQueryable(expression); + + public object? Execute(Expression expression) + => inner.Execute(expression); + + public TResult Execute(Expression expression) + => inner.Execute(expression); + + public TResult ExecuteAsync(Expression expression, CancellationToken cancellationToken = default) + { + // TResult is typically Task for async operations + var resultType = typeof(TResult); + + // Get the actual result synchronously + var syncResult = inner.Execute(expression); + + // If TResult is Task, extract T and wrap the result + if (resultType.IsGenericType && resultType.GetGenericTypeDefinition() == typeof(Task<>)) + { + var taskResultType = resultType.GetGenericArguments()[0]; + var taskFromResult = typeof(Task) + .GetMethod(nameof(Task.FromResult))! + .MakeGenericMethod(taskResultType); + return (TResult)taskFromResult.Invoke(null, new[] { syncResult })!; + } + + // For non-generic Task or other types, just return as-is + return (TResult)(object)Task.CompletedTask; + } + } + + internal static class TestQueryableExtensions + { + public static IQueryable AsAsyncQueryable(this IEnumerable source) + => new TestAsyncEnumerableQueryable(source); + } +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestData.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestData.cs index 26ce95b751..1c643f19fe 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestData.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestData.cs @@ -30,6 +30,8 @@ public static class GrantManagerTestData public static readonly Guid Assessment1_Id = new("260f5b30-7321-22ff-c962-1242ac120002"); + public static readonly Guid AiAssessment1_Id = new("260f5b30-7321-22ff-c962-1242ac120003"); + public static readonly Guid AssessmentAttachment1_Id = new("260f5b20-6321-22ff-c962-1242ac120001"); public static readonly Guid AssessmentComment1_Id = new("270a2c20-6321-22ff-c962-1242ac123101"); @@ -37,25 +39,25 @@ public static class GrantManagerTestData public class ApplicantSeed : Applicant { - public ApplicantSeed(Guid id) + public ApplicantSeed(Guid id) { - Id = id; + Id = id; } } public class IntakeSeed : Intake { - public IntakeSeed(Guid id) - { - Id = id; + public IntakeSeed(Guid id) + { + Id = id; } } public class ApplicationFormSeed : ApplicationForm { - public ApplicationFormSeed(Guid id) - { - Id = id; + public ApplicationFormSeed(Guid id) + { + Id = id; } } @@ -77,24 +79,24 @@ public ApplicationCommentSeed(Guid id) public class ApplicationAttachmentSeed : ApplicationAttachment { - public ApplicationAttachmentSeed(Guid id) - { - Id = id; + public ApplicationAttachmentSeed(Guid id) + { + Id = id; } } public class AssessmentAttachmentSeed : AssessmentAttachment { - public AssessmentAttachmentSeed(Guid id) - { - Id = id; + public AssessmentAttachmentSeed(Guid id) + { + Id = id; } } public class AssessmentCommentSeed : AssessmentComment { - public AssessmentCommentSeed(Guid id) - { - Id = id; + public AssessmentCommentSeed(Guid id) + { + Id = id; } } \ No newline at end of file diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestDataSeedContributor.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestDataSeedContributor.cs index f4a0fc26c9..62b4ca2e00 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestDataSeedContributor.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.TestBase/GrantManagerTestDataSeedContributor.cs @@ -158,6 +158,23 @@ private async Task CreateSeedDataAsync() autoSave: true ); + Application? application2 = await _applicationRepository.FindAsync(GrantManagerTestData.Application2_Id); + application2 ??= await _applicationRepository.InsertAsync( + new ApplicationSeed(GrantManagerTestData.Application2_Id) + { + ApplicantId = GrantManagerTestData.Applicant1_Id, + ProjectName = "Application 2 For Integration Test Funding", + ApplicationFormId = GrantManagerTestData.ApplicationForm1_Id, + ApplicationStatusId = (await _applicationStatusRepository.GetAsync(x => x.StatusCode == GrantApplicationState.SUBMITTED)).Id, + ReferenceNo = "TEST67890", + RequestedAmount = 5000m, + ProposalDate = new DateTime(2022, 1, 1, 12, 0, 0, 0, DateTimeKind.Utc), + SubmissionDate = new DateTime(2023, 1, 1, 12, 0, 0, 0, DateTimeKind.Utc), + Payload = "{}" + }, + autoSave: true + ); + Assessment? assessment1 = await _assessmentRepository.FindAsync(GrantManagerTestData.Assessment1_Id); assessment1 ??= await _assessmentRepository.InsertAsync( new Assessment @@ -168,6 +185,17 @@ private async Task CreateSeedDataAsync() AssessmentState.IN_PROGRESS ), autoSave: true); + Assessment? aiAssessment1 = await _assessmentRepository.FindAsync(GrantManagerTestData.AiAssessment1_Id); + aiAssessment1 ??= await _assessmentRepository.InsertAsync( + new Assessment + ( + id: GrantManagerTestData.AiAssessment1_Id, + applicationId: GrantManagerTestData.Application1_Id, + assessorId: AIScoringConstants.AiPersonId, + AssessmentState.COMPLETED + ) + { IsAiAssessment = true }, autoSave: true); + AssessmentAttachment? assessmentAttachment1 = await _assessmentAttachmentRepository.FindAsync(GrantManagerTestData.AssessmentAttachment1_Id); assessmentAttachment1 ??= await _assessmentAttachmentRepository.InsertAsync( new AssessmentAttachmentSeed(GrantManagerTestData.AssessmentAttachment1_Id) @@ -245,5 +273,18 @@ await _personRepository.InsertAsync(new Person() OidcSub = "TestUser2" }, autoSave: true); } + + var aiPerson = await _personRepository.FindAsync(AIScoringConstants.AiPersonId); + if (aiPerson == null) + { + await _personRepository.InsertAsync(new Person() + { + Id = AIScoringConstants.AiPersonId, + Badge = AIScoringConstants.AiBadge, + FullName = AIScoringConstants.AiDisplayName, + OidcDisplayName = AIScoringConstants.AiDisplayName, + OidcSub = AIScoringConstants.AiOidcSub + }, autoSave: true); + } } } \ No newline at end of file diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicantInfoWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicantInfoWidgetTests.cs index 77551b3d5f..018a689117 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicantInfoWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicantInfoWidgetTests.cs @@ -1,6 +1,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using NSubstitute; using Shouldly; using System; @@ -15,13 +16,14 @@ namespace Unity.GrantManager.Components { - public class ApplicantInfoWidgetTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class ApplicantInfoWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public ApplicantInfoWidgetTests() + public ApplicantInfoWidgetTests(WebTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationContactWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationContactWidgetTests.cs index abab7db3d5..a2a78f9f56 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationContactWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationContactWidgetTests.cs @@ -12,14 +12,9 @@ namespace Unity.GrantManager.Components { - public class ApplicationContactWidgetTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class ApplicationContactWidgetTests { - public ApplicationContactWidgetTests() - { - // Disable logging to avoid disposed logger errors during tests - Environment.SetEnvironmentVariable("Logging:LogLevel:Default", "None"); - } - [Fact] public async Task ApplicationContactWidgetReturnsStatus() { @@ -64,7 +59,7 @@ public async Task ApplicationContactWidgetReturnsStatus() }; //Act - var result = await viewComponent.InvokeAsync(applicationId, true) as ViewViewComponentResult; + var result = await viewComponent.InvokeAsync(applicationId) as ViewViewComponentResult; ApplicationContactsWidgetViewModel? resultModel; resultModel = result!.ViewData!.Model! as ApplicationContactsWidgetViewModel; diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationStatusWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationStatusWidgetTests.cs index 31fd866bfc..387684542b 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationStatusWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationStatusWidgetTests.cs @@ -12,6 +12,7 @@ namespace Unity.GrantManager.Components { + [Collection(WebTestCollection.Name)] public class ApplicationStatusWidgetTests { public ApplicationStatusWidgetTests() diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs index 42d1b1006c..c98a748549 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs @@ -13,7 +13,8 @@ namespace Unity.GrantManager.Components { - public class ApplicationTagsWidgetTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class ApplicationTagsWidgetTests { [Fact] public async Task ApplicationTagsWidgetReturnsStatus() diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AssessmentScoresWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AssessmentScoresWidgetTests.cs index b46bac9677..332fb09532 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AssessmentScoresWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AssessmentScoresWidgetTests.cs @@ -14,7 +14,8 @@ namespace Unity.GrantManager.Components { - public class AssessmentScoresWidgetTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class AssessmentScoresWidgetTests { [Fact] public async Task AssessmentScoresWidgetReturnsStatus() diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AttachmentControllerTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AttachmentControllerTests.cs index bf2318ffb0..d1f2bcc3fb 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AttachmentControllerTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/AttachmentControllerTests.cs @@ -13,7 +13,8 @@ namespace Unity.GrantManager.Components { - public class AttachmentControllerTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class AttachmentControllerTests { [Fact] public async Task UploadApplicationAttachments_InvalidInput_ReturnsBadRequest() diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/FundingAgreementInfoWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/FundingAgreementInfoWidgetTests.cs index 3e301ff662..e7b1b902dd 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/FundingAgreementInfoWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/FundingAgreementInfoWidgetTests.cs @@ -1,6 +1,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using NSubstitute; using Shouldly; using System; @@ -12,13 +13,14 @@ namespace Unity.GrantManager.Components { - public class FundingAgreementInfoWidgetTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class FundingAgreementInfoWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public FundingAgreementInfoWidgetTests() + public FundingAgreementInfoWidgetTests(WebTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ProjectInfoWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ProjectInfoWidgetTests.cs index 1ef14f6c3c..44a4ed0ea3 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ProjectInfoWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ProjectInfoWidgetTests.cs @@ -11,31 +11,20 @@ using Volo.Abp.DependencyInjection; using Xunit; using Microsoft.AspNetCore.Authorization; - using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Logging; namespace Unity.GrantManager.Components { - public class ProjectInfoWidgetTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class ProjectInfoWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; + private readonly IAuthorizationService authorizationService; - public ProjectInfoWidgetTests() + public ProjectInfoWidgetTests(WebTestFixture fixture) { - // Remove EventLog logger provider to prevent ObjectDisposedException during tests - var loggerFactory = GetRequiredService(); - foreach (var provider in loggerFactory - .GetType() - .GetField("_providers", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance) - ?.GetValue(loggerFactory) as System.Collections.Generic.List ?? new System.Collections.Generic.List()) - { - if (provider.GetType().Name.Contains("EventLog")) - { - provider.Dispose(); - } - } - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); + authorizationService = fixture.Services.GetRequiredService(); } [Fact] @@ -56,9 +45,6 @@ public async Task ContactInfoReturnsStatus() var electoralDistrictService = Substitute.For(); var regionalDistrictService = Substitute.For(); var communitiesService = Substitute.For(); - var authorizationService = GetRequiredService(); - - var viewContext = new ViewContext { HttpContext = new DefaultHttpContext() @@ -68,7 +54,7 @@ public async Task ContactInfoReturnsStatus() ViewContext = viewContext }; - var viewComponent = new ProjectInfoViewComponent(appService, economicRegionService, electoralDistrictService, regionalDistrictService, communitiesService, authorizationService) + var viewComponent = new ProjectInfoViewComponent(appService, economicRegionService, electoralDistrictService, regionalDistrictService, communitiesService, this.authorizationService) { ViewComponentContext = viewComponentContext, LazyServiceProvider = lazyServiceProvider diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/SummaryWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/SummaryWidgetTests.cs index 6844c62bce..11d6f24612 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/SummaryWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/SummaryWidgetTests.cs @@ -1,6 +1,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewComponents; +using Microsoft.Extensions.DependencyInjection; using NSubstitute; using Shouldly; using System; @@ -14,13 +15,14 @@ namespace Unity.GrantManager.Components { - public class SummaryWidgetTests : GrantManagerWebTestBase + [Collection(WebTestCollection.Name)] + public class SummaryWidgetTests { private readonly IAbpLazyServiceProvider lazyServiceProvider; - public SummaryWidgetTests() + public SummaryWidgetTests(WebTestFixture fixture) { - lazyServiceProvider = GetRequiredService(); + lazyServiceProvider = fixture.Services.GetRequiredService(); } [Fact] diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestBase.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestBase.cs deleted file mode 100644 index 219a06211a..0000000000 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestBase.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Text.Json; -using System.Text.Json.Serialization; -using System.Threading.Tasks; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.DependencyInjection.Extensions; -using Shouldly; -using Unity.Modules.Shared.MessageBrokers.RabbitMQ.Interfaces; -using Volo.Abp.AspNetCore.TestBase; - -namespace Unity.GrantManager; - -public abstract class GrantManagerWebTestBase : AbpWebApplicationFactoryIntegratedTest -{ - public static readonly JsonSerializerOptions JsonOptions = new() - { - PropertyNamingPolicy = JsonNamingPolicy.CamelCase, - DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull - }; - - protected override void ConfigureServices(IServiceCollection services) - { - // - // 🔹 Remove ALL RabbitMQ hosted services (consumers, registrators, etc.) - // - var hostedServices = services - .Where(d => typeof(Microsoft.Extensions.Hosting.IHostedService) - .IsAssignableFrom(d.ServiceType)) - .ToList(); - - foreach (var descriptor in hostedServices) - { - // Only strip RabbitMQ-related hosted services - if (descriptor.ImplementationType?.Namespace?.Contains("RabbitMQ") == true) - { - services.Remove(descriptor); - } - } - -#if WINDOWS - // 🔹 Remove EventLog logger to avoid ObjectDisposedException in tests - services.RemoveAll(); -#endif - - // - // 🔹 Replace real channel provider with fake - // - services.Replace( - ServiceDescriptor.Singleton() - ); - - base.ConfigureServices(services); - } - - protected virtual async Task GetResponseAsObjectAsync( - string url, - HttpStatusCode expectedStatusCode = HttpStatusCode.OK) - { - var strResponse = await GetResponseAsStringAsync(url, expectedStatusCode); - return JsonSerializer.Deserialize(strResponse, JsonOptions); - } - - protected virtual async Task GetResponseAsStringAsync( - string url, - HttpStatusCode expectedStatusCode = HttpStatusCode.OK) - { - var response = await GetResponseAsync(url, expectedStatusCode); - return await response.Content.ReadAsStringAsync(); - } - - protected virtual async Task GetResponseAsync( - string url, - HttpStatusCode expectedStatusCode = HttpStatusCode.OK) - { - var response = await Client.GetAsync(url); - response.StatusCode.ShouldBe(expectedStatusCode); - return response; - } -} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestModule.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestModule.cs index 7d50f306ba..b93bf83e6e 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestModule.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestModule.cs @@ -19,7 +19,7 @@ namespace Unity.GrantManager; [DependsOn( typeof(AbpAspNetCoreTestBaseModule), typeof(GrantManagerWebModule), - typeof(GrantManagerApplicationTestModule) + typeof(WebTestInMemoryDbModule) )] public class GrantManagerWebTestModule : AbpModule { diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestStartup.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestStartup.cs deleted file mode 100644 index 913871a3a9..0000000000 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/GrantManagerWebTestStartup.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Microsoft.AspNetCore.Builder; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Logging; - -namespace Unity.GrantManager; - -public static class GrantManagerWebTestStartup -{ - public static void ConfigureServices(IServiceCollection services) - { - services.AddApplication(); - } - - public static void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) - { - app.InitializeApplication(); - } -} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Pages/Index_Tests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Pages/Index_Tests.cs index 367e6cde38..9e1c80056b 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Pages/Index_Tests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Pages/Index_Tests.cs @@ -1,15 +1,27 @@ -using System.Threading.Tasks; +using System.Net; +using System.Net.Http; +using System.Threading.Tasks; using Shouldly; using Xunit; namespace Unity.GrantManager.Pages; -public class Index_Tests : GrantManagerWebTestBase +[Collection(WebTestCollection.Name)] +public class Index_Tests { + private readonly HttpClient _client; + + public Index_Tests(WebTestFixture fixture) + { + _client = fixture.CreateClient(); + } + [Fact] public async Task Welcome_Page() { - var response = await GetResponseAsStringAsync("/"); - response.ShouldNotBeNull(); + var response = await _client.GetAsync("/"); + response.StatusCode.ShouldBe(HttpStatusCode.OK); + var content = await response.Content.ReadAsStringAsync(); + content.ShouldNotBeNullOrEmpty(); } } diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Unity.GrantManager.Web.Tests.csproj b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Unity.GrantManager.Web.Tests.csproj index e493fd4083..608f44b106 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Unity.GrantManager.Web.Tests.csproj +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Unity.GrantManager.Web.Tests.csproj @@ -21,6 +21,7 @@ + @@ -29,7 +30,7 @@ - + diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/WebTestFixture.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/WebTestFixture.cs new file mode 100644 index 0000000000..1c3cc469b8 --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/WebTestFixture.cs @@ -0,0 +1,47 @@ +using System; +using System.Linq; +using Microsoft.AspNetCore.Mvc.Testing; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.DependencyInjection.Extensions; +using Microsoft.Extensions.Hosting; +using Unity.Modules.Shared.MessageBrokers.RabbitMQ.Interfaces; +using Xunit; + +namespace Unity.GrantManager; + +public class WebTestFixture : WebApplicationFactory +{ + protected override void ConfigureWebHost(Microsoft.AspNetCore.Hosting.IWebHostBuilder builder) + { + builder.ConfigureServices(services => + { + var hostedServices = services + .Where(d => typeof(IHostedService) + .IsAssignableFrom(d.ServiceType)) + .ToList(); + + foreach (var descriptor in hostedServices) + { + if (descriptor.ImplementationType?.Namespace?.Contains("RabbitMQ") == true) + { + services.Remove(descriptor); + } + } + +if (OperatingSystem.IsWindows()) + { + services.RemoveAll(); + } + + services.Replace( + ServiceDescriptor.Singleton() + ); + }); + } +} + +[CollectionDefinition(WebTestCollection.Name)] +public class WebTestCollection : ICollectionFixture +{ + public const string Name = "WebTests"; +} diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/WebTestInMemoryDbModule.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/WebTestInMemoryDbModule.cs new file mode 100644 index 0000000000..85172f8e1f --- /dev/null +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/WebTestInMemoryDbModule.cs @@ -0,0 +1,51 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; +using Unity.GrantManager.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore.GlobalFilters; +using Volo.Abp.FeatureManagement; +using Volo.Abp.Modularity; +using Volo.Abp.PermissionManagement; +using Volo.Abp.Uow; + +namespace Unity.GrantManager; + +[DependsOn( + typeof(GrantManagerEntityFrameworkCoreModule), + typeof(GrantManagerTestBaseModule) +)] +public class WebTestInMemoryDbModule : AbpModule +{ + public override void ConfigureServices(ServiceConfigurationContext context) + { + Configure(options => + { + options.SaveStaticFeaturesToDatabase = false; + options.IsDynamicFeatureStoreEnabled = false; + }); + + Configure(options => + { + options.SaveStaticPermissionsToDatabase = false; + options.IsDynamicPermissionStoreEnabled = false; + }); + + Configure(options => + { + options.UseDbFunction = false; + }); + + context.Services.AddAlwaysDisableUnitOfWorkTransaction(); + + var inMemoryDatabaseName = $"WebTests_{System.Guid.NewGuid():N}"; + + Configure(options => + { + options.Configure(abpDbContextConfigurationContext => + { + abpDbContextConfigurationContext.DbContextOptions + .UseInMemoryDatabase(inMemoryDatabaseName); + }); + }); + } +} diff --git a/applications/Unity.Tools/README.md b/applications/Unity.Tools/README.md index 7adc5859f8..856a9d6c79 100644 --- a/applications/Unity.Tools/README.md +++ b/applications/Unity.Tools/README.md @@ -4,5 +4,5 @@ This directory contains supporting tools and services for the Unity platform: - [Unity.Metabase](Unity.Metabase/README.md): Reserved for Metabase integration or related resources. - [Unity.NginxData](Unity.NginxData/README.md): Nginx HTTP server and reverse proxy S2I application, with reference files for forms and reporting. -- [Unity.RabbitMQ](Unity.RabbitMQ/README.md): RabbitMQ message broker setup for OpenShift, including user and vhost configuration. +- [Unity.RabbitMQ](Unity.RabbitMQ/README.md): RabbitMQ message broker user and vhost configuration. - [Unity.RedisSentinel](Unity.RedisSentinel/README.md): Docker Compose configuration for Redis with Sentinel for high availability. diff --git a/applications/Unity.Tools/Unity.Metabase/README.md b/applications/Unity.Tools/Unity.Metabase/README.md index b0359d7ce4..9dddbdd79b 100644 --- a/applications/Unity.Tools/Unity.Metabase/README.md +++ b/applications/Unity.Tools/Unity.Metabase/README.md @@ -1,3 +1,210 @@ -# Unity Metabase +# Metabase Configuration -This directory is reserved for the Unity Metabase integration resources. +This directory contains a Docker Compose configuration for setting up Metabase for local development and analytics. + +## Overview + +The setup provides: + +- **Metabase Analytics Platform**: Business intelligence and data visualization +- **PostgreSQL Database**: Metabase application database for storing dashboards, users, etc. +- **Persistent Storage**: Data persistence across container restarts + +## Getting Started + +### Basic Usage + +Start Metabase: + +```bash +docker-compose up +``` + +To run in detached mode: + +```bash +docker-compose up -d +``` + +### Configuration Options + +This setup supports environment variables for customization: + +| Variable | Default | Description | +|----------|---------|-------------| +| `MB_DB_DBNAME` | `metabase` | Metabase application database name | +| `MB_DB_USER` | `metabase` | Metabase database username | +| `MB_DB_PASS` | `metabase123` | Metabase database password | +| `POSTGRES_USER` | `metabase` | PostgreSQL superuser username | +| `POSTGRES_PASSWORD` | `metabase123` | PostgreSQL superuser password | + +#### Custom Database Configuration + +You can set custom database credentials: + +```bash +# PowerShell +$env:MB_DB_PASS="mysecurepassword"; $env:POSTGRES_PASSWORD="mysecurepassword"; docker-compose up + +# Bash/CMD +MB_DB_PASS=mysecurepassword POSTGRES_PASSWORD=mysecurepassword docker-compose up +``` + +Alternatively, create a `.env` file in the same directory: + +```config +MB_DB_DBNAME=metabase +MB_DB_USER=metabase +MB_DB_PASS=mysecurepassword +POSTGRES_USER=metabase +POSTGRES_PASSWORD=mysecurepassword +``` + +### Accessing Metabase + +#### Web Interface + +- **URL**: http://localhost:3000 +- **First-time setup**: You'll be prompted to create an admin account +- **Default admin**: Create during initial setup + +#### Database Connection for Unity Data + +When setting up data sources in Metabase to connect to your Unity databases: + +**For Unity PostgreSQL (from Unity.GrantManager docker-compose):** +- **Host**: `host.docker.internal` (Windows/Mac) or your machine's IP +- **Port**: `5432` (or your Unity DB port) +- **Database**: Your Unity database name +- **Username/Password**: Your Unity database credentials + +## Initial Setup + +### First-Time Configuration + +1. Start Metabase: `docker-compose up` +2. Wait for services to fully start (check logs) +3. Navigate to http://localhost:3000 +4. Complete the initial setup wizard: + - Create admin account + - Skip adding data source (or add Unity database) + - Finish setup + +### Connecting to Unity Data + +To analyze Unity application data: + +1. **Add Database** in Metabase +2. **Select PostgreSQL** +3. **Connection details**: + ``` + Host: host.docker.internal + Port: 5432 (or your Unity DB port) + Database name: [Your Unity DB name] + Username: [Your Unity DB user] + Password: [Your Unity DB password] + ``` + +### Example Unity Database Connection + +If using the Unity.GrantManager docker-compose setup: + +```json +{ + "host": "host.docker.internal", + "port": 5432, + "database": "postgres", + "username": "postgres", + "password": "admin" +} +``` + +## Verifying the Setup + +Check Metabase status: + +```bash +# Check if services are running +docker ps | grep metabase + +# Check Metabase logs +docker-compose logs metabase + +# Check PostgreSQL logs +docker-compose logs metabase-db +``` + +Test web interface: + +```bash +curl http://localhost:3000/api/health +``` + +## Stopping and Cleanup + +Stop Metabase: + +```bash +docker-compose down +``` + +Remove volumes (this will delete all dashboards and configuration): + +```bash +docker-compose down -v +``` + +## Notes & Limitations + +- This setup is designed for local development and testing +- For production deployments, use proper secrets management +- The first startup takes longer as Metabase initializes its database +- Dashboards and questions are stored in the PostgreSQL database + +## Troubleshooting + +### Common Issues + +1. **Slow startup**: Metabase can take 2-3 minutes to fully initialize on first run +2. **Port conflicts**: If port 3000 is in use, modify the port mapping in `docker-compose.yml` +3. **Database connection issues**: Ensure your Unity database is accessible from Docker + +### Useful Commands + +```bash +# Check Metabase initialization status +docker-compose logs -f metabase | grep -i "metabase initialization" + +# Reset Metabase (removes all dashboards/config) +docker-compose down -v && docker-compose up + +# Access PostgreSQL directly +docker exec -it metabase-db psql -U metabase -d metabase +``` + +## Integration with Unity Applications + +This Metabase setup is designed to work with Unity applications for: + +- **Analytics Dashboards**: Visualize Unity application data +- **Business Intelligence**: Generate reports from Unity databases +- **Data Monitoring**: Track application metrics and KPIs +- **User Insights**: Analyze user behavior and application usage + +### Common Unity Analytics Use Cases + +- Grant application metrics and trends +- User engagement and portal usage +- Application performance monitoring +- Business process analytics +- Compliance and audit reporting + +## Production Considerations + +When deploying to production environments: + +- Use external PostgreSQL database instead of containerized one +- Implement proper backup strategies for dashboards and configuration +- Set up proper authentication integration (LDAP, SAML, etc.) +- Configure SSL/TLS for secure connections +- Use environment-specific connection strings diff --git a/applications/Unity.Tools/Unity.Metabase/docker-compose.yml b/applications/Unity.Tools/Unity.Metabase/docker-compose.yml new file mode 100644 index 0000000000..c758c444a2 --- /dev/null +++ b/applications/Unity.Tools/Unity.Metabase/docker-compose.yml @@ -0,0 +1,62 @@ +services: + metabase: + image: metabase/metabase:v0.51.4 + container_name: unity-metabase + hostname: unity-metabase + environment: + - MB_DB_TYPE=postgres + - MB_DB_DBNAME=${MB_DB_DBNAME:-metabase} + - MB_DB_PORT=5432 + - MB_DB_USER=${MB_DB_USER:-metabase} + - MB_DB_PASS=${MB_DB_PASS:-metabase123} + - MB_DB_HOST=metabase-db + - JAVA_OPTS=-Xmx1024m -Xss1m -Dfile.encoding=UTF-8 -Dlogfile.path=target/log -server + ports: + - "3000:3000" + - "8443:8443" + depends_on: + metabase-db: + condition: service_healthy + networks: + - metabase-network + volumes: + - metabase-data:/metabase-data + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 120s + restart: unless-stopped + + metabase-db: + image: postgres:15 + container_name: metabase-db + hostname: metabase-db + environment: + - POSTGRES_DB=${MB_DB_DBNAME:-metabase} + - POSTGRES_USER=${POSTGRES_USER:-metabase} + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-metabase123} + ports: + - "5433:5432" # Different port to avoid conflicts with Unity DB + networks: + - metabase-network + volumes: + - postgres-data:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-metabase} -d ${MB_DB_DBNAME:-metabase}"] + interval: 10s + timeout: 5s + retries: 5 + start_period: 30s + restart: unless-stopped + +networks: + metabase-network: + driver: bridge + +volumes: + metabase-data: + driver: local + postgres-data: + driver: local \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.NginxData/grants.html b/applications/Unity.Tools/Unity.NginxData/grants.html index 08300e35e7..46330ef6ca 100644 --- a/applications/Unity.Tools/Unity.NginxData/grants.html +++ b/applications/Unity.Tools/Unity.NginxData/grants.html @@ -1,105 +1,340 @@ - - + + - - Grants Page + + Enterprise Grant + + -
- -
-
-
-

- Enterprise Grant Management System -

-

- Welcome to the Unity Applicant Portal Grants Future. -

-

- For more information about grants.gov.bc.ca, please contact your support team. -

- Grants Background -
+ +
+ + + + + +
grants.gov.bc.ca
+ + + - + + +
+ + + + +
+ +
+ +
+ + + - + \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.NginxData/index.html b/applications/Unity.Tools/Unity.NginxData/index.html index 574aa53e3b..d75313de84 100644 --- a/applications/Unity.Tools/Unity.NginxData/index.html +++ b/applications/Unity.Tools/Unity.NginxData/index.html @@ -2,7 +2,8 @@ - Application Maintenance + Unity Grant Management - Contact Information + -
- -
-
-
-

- Application Maintenance -

-

- The Unity Grant Management System is undergoing maintenance and will be back online in a few minutes. -

-

- Please reach out to your support team if you have any questions -

+
+ + +
+

Contact Us For Onboarding and Support

+ +
+

Unity Support:

+

unitysupport@gov.bc.ca

+
- - + \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.NginxData/reference/CGG/PAC/SchoolInfo-2025.json b/applications/Unity.Tools/Unity.NginxData/reference/CGG/PAC/SchoolInfo-2025.json new file mode 100644 index 0000000000..22bd9bcbc2 --- /dev/null +++ b/applications/Unity.Tools/Unity.NginxData/reference/CGG/PAC/SchoolInfo-2025.json @@ -0,0 +1,24318 @@ +{ + "districts": [ + { + "name": "0532 Education Group Ltd.", + "district_number": "" + }, + { + "name": "Abbotsford", + "district_number": "34" + }, + { + "name": "Abbotsford Christian School Society", + "district_number": "" + }, + { + "name": "Aberdeen Hall Preparatory School Society", + "district_number": "" + }, + { + "name": "Agassiz Christian School Society", + "district_number": "" + }, + { + "name": "Ahousat Education Authority", + "district_number": "" + }, + { + "name": "Alexander Academy Corporation", + "district_number": "" + }, + { + "name": "Al-Mustafa Islamic Association", + "district_number": "" + }, + { + "name": "Anchor Academy Society", + "district_number": "" + }, + { + "name": "Anspayaxw School Society", + "district_number": "" + }, + { + "name": "Ark Elementary Montessori Reggio School", + "district_number": "" + }, + { + "name": "Arrow Lakes", + "district_number": "10" + }, + { + "name": "Arrowsmith Independent School Society", + "district_number": "" + }, + { + "name": "Artemis Place Society", + "district_number": "" + }, + { + "name": "Artscalibre Foundation", + "district_number": "" + }, + { + "name": "Az-Zahraa Islamic Academy Society", + "district_number": "" + }, + { + "name": "BC Christian Academy Society", + "district_number": "" + }, + { + "name": "BC Muslim Association", + "district_number": "" + }, + { + "name": "Beachcombers Education Society", + "district_number": "" + }, + { + "name": "Bella Bella Community School Society", + "district_number": "" + }, + { + "name": "Bibleway Christian Academy Foundation", + "district_number": "" + }, + { + "name": "Bioregional Education Association", + "district_number": "" + }, + { + "name": "Bodwell High School Inc.", + "district_number": "" + }, + { + "name": "Boundary", + "district_number": "51" + }, + { + "name": "Brentwood College Association", + "district_number": "" + }, + { + "name": "Brockton Preparatory School Society", + "district_number": "" + }, + { + "name": "Brookes Westshore School Society", + "district_number": "" + }, + { + "name": "Bulkley Valley", + "district_number": "54" + }, + { + "name": "Bulkley Valley Christian School Society", + "district_number": "" + }, + { + "name": "Burnaby", + "district_number": "41" + }, + { + "name": "Burnaby Montessori Elem School Society", + "district_number": "" + }, + { + "name": "Campbell River", + "district_number": "72" + }, + { + "name": "Campbell River Christian School Society", + "district_number": "" + }, + { + "name": "Canada Star Education Group Inc.", + "district_number": "" + }, + { + "name": "Canada Star Education Society", + "district_number": "" + }, + { + "name": "Canadian Reformed School Association Of", + "district_number": "" + }, + { + "name": "Canadian Reformed School Society Of Abbo", + "district_number": "" + }, + { + "name": "Canyon Springs Montessori School Society", + "district_number": "" + }, + { + "name": "Cariboo Country Congregation", + "district_number": "" + }, + { + "name": "Cariboo-Chilcotin", + "district_number": "27" + }, + { + "name": "Cascade Christian School Society", + "district_number": "" + }, + { + "name": "Catholic Independent Schools Diocese Of", + "district_number": "" + }, + { + "name": "Catholic Independent Schools Of Kamloops", + "district_number": "" + }, + { + "name": "Catholic Independent Schools Of Nelson D", + "district_number": "" + }, + { + "name": "Catholic Independent Schools Of The Dioc", + "district_number": "" + }, + { + "name": "Catholic Independent Schools Of Vancouve", + "district_number": "" + }, + { + "name": "Cedars Christian School", + "district_number": "" + }, + { + "name": "Central Coast", + "district_number": "49" + }, + { + "name": "Central Island Independent Sch Society", + "district_number": "" + }, + { + "name": "Central Okanagan", + "district_number": "23" + }, + { + "name": "Century High School (2003) Ltd", + "district_number": "" + }, + { + "name": "Chabad Of Vancouver Island", + "district_number": "" + }, + { + "name": "Chalo Independent School Society", + "district_number": "" + }, + { + "name": "Chief & Council Fort Ware Indian Band", + "district_number": "" + }, + { + "name": "Chief & Council Kamloops Indian Band", + "district_number": "" + }, + { + "name": "Chief & Council Of Gwa'Sala-'Nakwaxda'Xw", + "district_number": "" + }, + { + "name": "Chief & Council Of Lower Nicola Ind Band", + "district_number": "" + }, + { + "name": "Chief & Councillors Of The Iskut Band", + "district_number": "" + }, + { + "name": "Chief & Councillors Of The Kitsumkalum", + "district_number": "" + }, + { + "name": "Chief & Councillors Of Upper Nicola Band", + "district_number": "" + }, + { + "name": "Chilliwack", + "district_number": "33" + }, + { + "name": "Chilliwack Christian School Society", + "district_number": "" + }, + { + "name": "Choice School For Gifted Children", + "district_number": "" + }, + { + "name": "Christ Church Cathedral Ed Society", + "district_number": "" + }, + { + "name": "Christian Home E-School Society", + "district_number": "" + }, + { + "name": "Christian Life Centre Of Fort St John", + "district_number": "" + }, + { + "name": "Christian Outreach Of Canada", + "district_number": "" + }, + { + "name": "Christian School Society Of Houston", + "district_number": "" + }, + { + "name": "Church Of God In Christ (Mennonite)", + "district_number": "" + }, + { + "name": "Cira High School Inc.", + "district_number": "" + }, + { + "name": "City Life Church", + "district_number": "" + }, + { + "name": "City Vancouver Academy Inc.", + "district_number": "" + }, + { + "name": "Claren Academy Society", + "district_number": "" + }, + { + "name": "Coast Karma Learning Society", + "district_number": "" + }, + { + "name": "Coast Mountain Academy Society", + "district_number": "" + }, + { + "name": "Coast Mountains", + "district_number": "82" + }, + { + "name": "Coima Montessori Society", + "district_number": "" + }, + { + "name": "Collingwood School Society", + "district_number": "" + }, + { + "name": "Columbia Academy Inc.", + "district_number": "" + }, + { + "name": "Columbia College Society", + "district_number": "" + }, + { + "name": "Comox Valley", + "district_number": "71" + }, + { + "name": "Compass Community Learning Centres", + "district_number": "" + }, + { + "name": "Conseil scolaire francophone", + "district_number": "93" + }, + { + "name": "Coquitlam", + "district_number": "43" + }, + { + "name": "Coquitlam College Inc", + "district_number": "" + }, + { + "name": "Cornerstone Evangelical Baptist Church", + "district_number": "" + }, + { + "name": "Cornerstone Montessori School Society", + "district_number": "" + }, + { + "name": "Cowichan Valley", + "district_number": "79" + }, + { + "name": "Cranbrook Christian School Society", + "district_number": "" + }, + { + "name": "Crofton House School Society", + "district_number": "" + }, + { + "name": "Cvc Newbridge Academy Society", + "district_number": "" + }, + { + "name": "Daajing Giids Youth Education Society", + "district_number": "" + }, + { + "name": "Dasmesh Punjabi Educational Association", + "district_number": "" + }, + { + "name": "Delta", + "district_number": "37" + }, + { + "name": "Delta Christian School Society", + "district_number": "" + }, + { + "name": "Discover Montessori Society", + "district_number": "" + }, + { + "name": "Discovery School Society", + "district_number": "" + }, + { + "name": "Diversity By Design Society", + "district_number": "" + }, + { + "name": "Dogwood Independent School Society", + "district_number": "" + }, + { + "name": "Duncan Christian School Association", + "district_number": "" + }, + { + "name": "Eaton Arrowsmith School Vancouver", + "district_number": "" + }, + { + "name": "Epiphyte Educational Society", + "district_number": "" + }, + { + "name": "Evangelical Free Church Of Williams Lake", + "district_number": "" + }, + { + "name": "Evergreen Independent School Society", + "district_number": "" + }, + { + "name": "Focus Foundation Of BC", + "district_number": "" + }, + { + "name": "Fort Nelson", + "district_number": "81" + }, + { + "name": "Fountainview Academy Association", + "district_number": "" + }, + { + "name": "Fraser Academy Association", + "district_number": "" + }, + { + "name": "Fraser Valley Elementary School Society", + "district_number": "" + }, + { + "name": "Fraser Valley Society", + "district_number": "" + }, + { + "name": "Fraser-Cascade", + "district_number": "78" + }, + { + "name": "Freedom Thinkers Education Pbl Society", + "district_number": "" + }, + { + "name": "G.N. Sikh School Association", + "district_number": "" + }, + { + "name": "Gitsegukla Community Education Develop.", + "district_number": "" + }, + { + "name": "Glenlyon Norfolk School Society", + "district_number": "" + }, + { + "name": "Global Impact Education Corporation", + "district_number": "" + }, + { + "name": "Gobind Marg Charitable Trust Society", + "district_number": "" + }, + { + "name": "Gold Trail", + "district_number": "74" + }, + { + "name": "Greater Victoria", + "district_number": "61" + }, + { + "name": "Group Aba Children'S Society", + "district_number": "" + }, + { + "name": "Gulf Islands", + "district_number": "64" + }, + { + "name": "Guru Nanak Education Society Of BC", + "district_number": "" + }, + { + "name": "Haahuupayak Society", + "district_number": "" + }, + { + "name": "Haida Gwaii", + "district_number": "50" + }, + { + "name": "Haney-Pitt Meadows Christian School", + "district_number": "" + }, + { + "name": "Hongde Education Society", + "district_number": "" + }, + { + "name": "Hope Lutheran Church Of Port Coquitlam", + "district_number": "" + }, + { + "name": "Ilearn Secondary School Society", + "district_number": "" + }, + { + "name": "Independent Magnet Schools", + "district_number": "" + }, + { + "name": "Int'L Assoc Of Progressive Montessorians", + "district_number": "" + }, + { + "name": "Iqra Education Society", + "district_number": "" + }, + { + "name": "Island Pacific School Society", + "district_number": "" + }, + { + "name": "Jane Rowan Society", + "district_number": "" + }, + { + "name": "John Knox Christian School Association", + "district_number": "" + }, + { + "name": "Johnathan Academy Incorporated", + "district_number": "" + }, + { + "name": "Kamloops Christian School Association", + "district_number": "" + }, + { + "name": "Kamloops-Thompson", + "district_number": "73" + }, + { + "name": "Kelowna Christian Centre Society", + "district_number": "" + }, + { + "name": "Kelowna Christian School", + "district_number": "" + }, + { + "name": "Kimberley Independent School Society", + "district_number": "" + }, + { + "name": "Kootenay Lake", + "district_number": "8" + }, + { + "name": "Kootenay-Columbia", + "district_number": "20" + }, + { + "name": "Kyah Wiget Education Society", + "district_number": "" + }, + { + "name": "Lakeside Educational Society Of Kelowna", + "district_number": "" + }, + { + "name": "Langley", + "district_number": "35" + }, + { + "name": "Langley Christian School Society", + "district_number": "" + }, + { + "name": "Learningstorm Education Society", + "district_number": "" + }, + { + "name": "L'Ecole Francaise Int'L De Vancouver", + "district_number": "" + }, + { + "name": "Lighthouse Christian Academy Society", + "district_number": "" + }, + { + "name": "Lions Gate Christian Academy Association", + "district_number": "" + }, + { + "name": "Lions Gate Montessori Society", + "district_number": "" + }, + { + "name": "Lowell High School Inc.", + "district_number": "" + }, + { + "name": "Lower Kootenay Indian Band Chief & Counc", + "district_number": "" + }, + { + "name": "Lower Mainland Purpose Society For Youth", + "district_number": "" + }, + { + "name": "Madrona School Society", + "district_number": "" + }, + { + "name": "Maharishi Age Of Enlightenment Society", + "district_number": "" + }, + { + "name": "Maimonides School Society", + "district_number": "" + }, + { + "name": "Maple Hill School Inc", + "district_number": "" + }, + { + "name": "Maple Ridge-Pitt Meadows", + "district_number": "42" + }, + { + "name": "Meadow Montessori School", + "district_number": "" + }, + { + "name": "Meadowridge School Society", + "district_number": "" + }, + { + "name": "Mennonite Educational Institute Society", + "district_number": "" + }, + { + "name": "Mia Montessori Academy Society", + "district_number": "" + }, + { + "name": "Mind Montessori In Delta Society", + "district_number": "" + }, + { + "name": "Mission", + "district_number": "75" + }, + { + "name": "Mle Training And Research Society", + "district_number": "" + }, + { + "name": "Mormon Hills School Society", + "district_number": "" + }, + { + "name": "Mount Cheam Christian School Society", + "district_number": "" + }, + { + "name": "Mountain Christian School Society", + "district_number": "" + }, + { + "name": "Mountain View Christian Academy Society", + "district_number": "" + }, + { + "name": "Mulgrave Independent School Society", + "district_number": "" + }, + { + "name": "Multicultural Vancouver Projects Society", + "district_number": "" + }, + { + "name": "Nak'Al Bun Education Society", + "district_number": "" + }, + { + "name": "Namgis Education Society", + "district_number": "" + }, + { + "name": "Nanaimo Christian School (1988) Society", + "district_number": "" + }, + { + "name": "Nanaimo-Ladysmith", + "district_number": "68" + }, + { + "name": "Nechako Lakes", + "district_number": "91" + }, + { + "name": "Nelson Area Waldorf School Association", + "district_number": "" + }, + { + "name": "Nelson Christian School Society", + "district_number": "" + }, + { + "name": "Netherlands Reformed Congregation", + "district_number": "" + }, + { + "name": "New Castle Institute Of English Research", + "district_number": "" + }, + { + "name": "New Learning Society", + "district_number": "" + }, + { + "name": "New Westminster", + "district_number": "40" + }, + { + "name": "Nicola-Similkameen", + "district_number": "58" + }, + { + "name": "Nisga'a", + "district_number": "92" + }, + { + "name": "Noorunissa Montessori Academy Of Canada", + "district_number": "" + }, + { + "name": "North Cariboo Christian School Society", + "district_number": "" + }, + { + "name": "North Okanagan-Shuswap", + "district_number": "83" + }, + { + "name": "North Star Montessori Elementary Society", + "district_number": "" + }, + { + "name": "North Vancouver", + "district_number": "44" + }, + { + "name": "Northgate Christian Education Society", + "district_number": "" + }, + { + "name": "Northside Church Society", + "district_number": "" + }, + { + "name": "Nuxalk Acwsalcmalslayc Society", + "district_number": "" + }, + { + "name": "Oakridge Montessori School Inc", + "district_number": "" + }, + { + "name": "Okanagan Montessori Elementary School So", + "district_number": "" + }, + { + "name": "Okanagan Similkameen", + "district_number": "53" + }, + { + "name": "Okanagan Skaha", + "district_number": "67" + }, + { + "name": "P163 Education Inc.", + "district_number": "" + }, + { + "name": "Pacific Community Resources Society", + "district_number": "" + }, + { + "name": "Pacific Montessori Society", + "district_number": "" + }, + { + "name": "Pacific Pentecostal Ed & Com Society", + "district_number": "" + }, + { + "name": "Pacific Rim", + "district_number": "70" + }, + { + "name": "Pals Autism Society", + "district_number": "" + }, + { + "name": "Pals Society Of Canada", + "district_number": "" + }, + { + "name": "Peace River North", + "district_number": "60" + }, + { + "name": "Peace River South", + "district_number": "59" + }, + { + "name": "Pear Tree Education Inc.", + "district_number": "" + }, + { + "name": "Penelakut Island Learning Centre Society", + "district_number": "" + }, + { + "name": "Penticton Christian School Society", + "district_number": "" + }, + { + "name": "Powell River Christian School Society", + "district_number": "" + }, + { + "name": "Prince George", + "district_number": "57" + }, + { + "name": "Prince Rupert", + "district_number": "52" + }, + { + "name": "Purcell Collegiate Incorporated", + "district_number": "" + }, + { + "name": "Pythagoras Academy Society", + "district_number": "" + }, + { + "name": "qathet", + "district_number": "47" + }, + { + "name": "Qualicum", + "district_number": "69" + }, + { + "name": "Queen Margaret'S School", + "district_number": "" + }, + { + "name": "Quesnel", + "district_number": "28" + }, + { + "name": "Regent Christian Academy Society", + "district_number": "" + }, + { + "name": "Revelstoke", + "district_number": "19" + }, + { + "name": "Richmond", + "district_number": "38" + }, + { + "name": "Richmond Christian School Association", + "district_number": "" + }, + { + "name": "Richmond Jewish Day School Society", + "district_number": "" + }, + { + "name": "Rocky Mountain", + "district_number": "6" + }, + { + "name": "Rose Of Sharon Ministries", + "district_number": "" + }, + { + "name": "Royal Bridge High School Inc", + "district_number": "" + }, + { + "name": "Royal Canadian College Society", + "district_number": "" + }, + { + "name": "Saanich", + "district_number": "63" + }, + { + "name": "Saint John Paul Ii Academy Society", + "district_number": "" + }, + { + "name": "Sap Outdoor Association", + "district_number": "" + }, + { + "name": "Satnam Education Society Of BC", + "district_number": "" + }, + { + "name": "Sda Church - BC Conference", + "district_number": "" + }, + { + "name": "Sea To Sky", + "district_number": "48" + }, + { + "name": "Sea To Sky Montessori Society", + "district_number": "" + }, + { + "name": "Selfdesign Learning Foundation", + "district_number": "" + }, + { + "name": "Seminary Of Christ The King", + "district_number": "" + }, + { + "name": "Senpokchin Education Society", + "district_number": "" + }, + { + "name": "Shawnigan Lake School Society", + "district_number": "" + }, + { + "name": "Shuswap Christian Education Society", + "district_number": "" + }, + { + "name": "Sjs St John'S School Society", + "district_number": "" + }, + { + "name": "Society For Children With Disabilities", + "district_number": "" + }, + { + "name": "Sooke", + "district_number": "62" + }, + { + "name": "South Okanagan Montessori School Society", + "district_number": "" + }, + { + "name": "South Surrey Independent School Society", + "district_number": "" + }, + { + "name": "Southeast Kootenay", + "district_number": "5" + }, + { + "name": "Squamish Montessori Society", + "district_number": "" + }, + { + "name": "Squamish Waldorf School Association", + "district_number": "" + }, + { + "name": "St Alcuin College For The Liberal Arts", + "district_number": "" + }, + { + "name": "St George'S School", + "district_number": "" + }, + { + "name": "St John'S Academy Shawnigan Lake Society", + "district_number": "" + }, + { + "name": "St John'S International School Ltd", + "district_number": "" + }, + { + "name": "St Margaret'S School", + "district_number": "" + }, + { + "name": "St Thomas More Collegiate Ltd", + "district_number": "" + }, + { + "name": "St. Lawrence School Limited", + "district_number": "" + }, + { + "name": "St. Michaels University School Society", + "district_number": "" + }, + { + "name": "Stein Valley Nlakapamux School Society", + "district_number": "" + }, + { + "name": "Stikine", + "district_number": "87" + }, + { + "name": "Stratford Hall (School) Society", + "district_number": "" + }, + { + "name": "Studio 9 Independent School Society", + "district_number": "" + }, + { + "name": "Stz'Uminus Education Society", + "district_number": "" + }, + { + "name": "Sunrise Educational Society", + "district_number": "" + }, + { + "name": "Sunshine Coast", + "district_number": "46" + }, + { + "name": "Surrey", + "district_number": "36" + }, + { + "name": "Surrey Christian School Society", + "district_number": "" + }, + { + "name": "Terrace Calvin Christian School Society", + "district_number": "" + }, + { + "name": "The Bridge Educational Society", + "district_number": "" + }, + { + "name": "The Church Of God In Christ (Mennonite)", + "district_number": "" + }, + { + "name": "The Church Of God In Christ, Mennonite", + "district_number": "" + }, + { + "name": "The Fernie Academy Society", + "district_number": "" + }, + { + "name": "The First Baptist Church, Kamloops BC", + "district_number": "" + }, + { + "name": "The King'S Christian School Society", + "district_number": "" + }, + { + "name": "Timesing Education Group Inc", + "district_number": "" + }, + { + "name": "Traditional Learning Society Of BC", + "district_number": "" + }, + { + "name": "Tsawwassen Independent School Society", + "district_number": "" + }, + { + "name": "Unisus International School Ltd", + "district_number": "" + }, + { + "name": "Unisus International Schools Society", + "district_number": "" + }, + { + "name": "Urban Academy Society", + "district_number": "" + }, + { + "name": "Valley Christian School Society", + "district_number": "" + }, + { + "name": "Vancouver", + "district_number": "39" + }, + { + "name": "Vancouver Christian School Association", + "district_number": "" + }, + { + "name": "Vancouver College Limited", + "district_number": "" + }, + { + "name": "Vancouver Formosa Academy Ltd", + "district_number": "" + }, + { + "name": "Vancouver Hebrew Academy Society", + "district_number": "" + }, + { + "name": "Vancouver Island North", + "district_number": "85" + }, + { + "name": "Vancouver Island West", + "district_number": "84" + }, + { + "name": "Vancouver Montessori School Society", + "district_number": "" + }, + { + "name": "Vancouver Talmud Torah Association", + "district_number": "" + }, + { + "name": "Vancouver Waldorf School Society", + "district_number": "" + }, + { + "name": "Vernon", + "district_number": "22" + }, + { + "name": "Vernon Christian School Society", + "district_number": "" + }, + { + "name": "Victoria Christian Education Society", + "district_number": "" + }, + { + "name": "Visst Society", + "district_number": "" + }, + { + "name": "West Coast Christian Fellowship", + "district_number": "" + }, + { + "name": "West Coast Montessori Society", + "district_number": "" + }, + { + "name": "West Kootenay Education Resource Society", + "district_number": "" + }, + { + "name": "West Point Grey Academy", + "district_number": "" + }, + { + "name": "West Vancouver", + "district_number": "45" + }, + { + "name": "Westbank First Nation, BC", + "district_number": "" + }, + { + "name": "Western Communities Montessori Society", + "district_number": "" + }, + { + "name": "Westside Family Fellowship Society", + "district_number": "" + }, + { + "name": "Westside Montessori Academy Society", + "district_number": "" + }, + { + "name": "Westside Montessori School (2011) Ltd", + "district_number": "" + }, + { + "name": "Westside Montessori School Society", + "district_number": "" + }, + { + "name": "Whistler Waldorf School Society", + "district_number": "" + }, + { + "name": "White Rock Christian Academy Society", + "district_number": "" + }, + { + "name": "Woodland Centre Congregation", + "district_number": "" + }, + { + "name": "York House School Society", + "district_number": "" + }, + { + "name": "Zawiyah Foundation", + "district_number": "" + }, + { + "name": "Zion Lutheran Church & Christian School", + "district_number": "" + } + ], + "schools": [ + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "501007", + "name": "Jaffray Elem-Jr Secondary", + "total_students": 209, + "address": "PO BOX 378", + "city": "JAFFRAY", + "province": "BC", + "postal_code": "V0B1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "501009", + "name": "Isabella Dicken Elementary", + "total_students": 561, + "address": "PO BOX 1559", + "city": "FERNIE", + "province": "BC", + "postal_code": "V0B1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "501010", + "name": "Frank J Mitchell Elementary", + "total_students": 370, + "address": "PO BOX 345", + "city": "SPARWOOD", + "province": "BC", + "postal_code": "V0B2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "501017", + "name": "Rocky Mountain Elementary", + "total_students": 235, + "address": "PO BOX 460", + "city": "ELKFORD", + "province": "BC", + "postal_code": "V0B1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502001", + "name": "Mount Baker Secondary", + "total_students": 884, + "address": "1410 BAKER ST", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C1B2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502011", + "name": "Laurie Middle School", + "total_students": 413, + "address": "1808 2ND ST S", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C1C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502024", + "name": "T M Roberts Elementary", + "total_students": 349, + "address": "10 WATTSVILLE RD", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C2A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502028", + "name": "Gordon Terrace Elementary", + "total_students": 287, + "address": "1200 5TH AVE S", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C2H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502029", + "name": "Highlands Elementary", + "total_students": 255, + "address": "3300 7TH ST S", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C5G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502030", + "name": "Pinewood Elementary", + "total_students": 147, + "address": "40 PINEWOOD AVE W", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C5X8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502031", + "name": "Steeples Elementary", + "total_students": 220, + "address": "700 24TH AVE N", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C5P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "502032", + "name": "Kootenay Orchards Elementary", + "total_students": 240, + "address": "1301 - 20TH AVE S", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C6N5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "505018", + "name": "Parkland Middle School", + "total_students": 442, + "address": "1115 2ND AVE S", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C2B4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "505033", + "name": "Elkford Elementary Secondary", + "total_students": 236, + "address": "PO BOX 910", + "city": "ELKFORD", + "province": "BC", + "postal_code": "V0B1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "505034", + "name": "Fernie Secondary", + "total_students": 545, + "address": "PO BOX 370", + "city": "FERNIE", + "province": "BC", + "postal_code": "V0B1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "505035", + "name": "Sparwood Secondary", + "total_students": 307, + "address": "PO BOX 67", + "city": "SPARWOOD", + "province": "BC", + "postal_code": "V0B2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "599078", + "name": "Kootenay Educational Services", + "total_students": 103, + "address": "25 17TH AVE N", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C3W9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "5", + "district_name": "Southeast Kootenay", + "school_number": "599156", + "name": "Kootenay Discovery School", + "total_students": 183, + "address": "802 2ND AVE", + "city": "FERNIE", + "province": "BC", + "postal_code": "V0B1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "603005", + "name": "Marysville Elementary", + "total_students": 169, + "address": "546 309 AVE", + "city": "KIMBERLEY", + "province": "BC", + "postal_code": "V1A3J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "603007", + "name": "Lindsay Park Elementary", + "total_students": 165, + "address": "602 SALMO ST", + "city": "KIMBERLEY", + "province": "BC", + "postal_code": "V1A2M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "603008", + "name": "Selkirk Secondary School", + "total_students": 561, + "address": "405 HALPIN ST", + "city": "KIMBERLEY", + "province": "BC", + "postal_code": "V1A2H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "604007", + "name": "Windermere Elementary", + "total_students": 164, + "address": "4747 GOVERNMENT ST", + "city": "WINDERMERE", + "province": "BC", + "postal_code": "V0B2L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "604011", + "name": "Edgewater Elementary", + "total_students": 138, + "address": "PO BOX 69", + "city": "EDGEWATER", + "province": "BC", + "postal_code": "V0A1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "604012", + "name": "J Alfred Laird Elementary", + "total_students": 246, + "address": "1202 13TH AVENUE", + "city": "INVERMERE", + "province": "BC", + "postal_code": "V0A1K4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "604013", + "name": "Martin Morigeau Elementary", + "total_students": 69, + "address": "4891 BEATTY AVENUE", + "city": "CANAL FLATS", + "province": "BC", + "postal_code": "V0B1B0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "604014", + "name": "Eileen Madson Primary School", + "total_students": 212, + "address": "2001 15TH AVE", + "city": "INVERMERE", + "province": "BC", + "postal_code": "V0A1K4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "604015", + "name": "David Thompson Secondary", + "total_students": 484, + "address": "1535 14TH ST UNIT 1 RR 4", + "city": "INVERMERE", + "province": "BC", + "postal_code": "V0A1K4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "606000", + "name": "Continuing Ed SD 06", + "total_students": 10, + "address": "BOX 430", + "city": "INVERMERE", + "province": "BC", + "postal_code": "V0A1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "606017", + "name": "Mckim Middle School", + "total_students": 397, + "address": "689 ROTARY DR", + "city": "KIMBERLEY", + "province": "BC", + "postal_code": "V1A1E4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "618003", + "name": "Lady Grey Elementary", + "total_students": 234, + "address": "PO BOX 899", + "city": "GOLDEN", + "province": "BC", + "postal_code": "V0A1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "618005", + "name": "Golden Secondary", + "total_students": 380, + "address": "PO BOX 1350", + "city": "GOLDEN", + "province": "BC", + "postal_code": "V0A1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "618007", + "name": "Nicholson Elementary", + "total_students": 91, + "address": "PO BOX 331", + "city": "GOLDEN", + "province": "BC", + "postal_code": "V0A1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "618008", + "name": "Alexander Park Elementary", + "total_students": 193, + "address": "PO BOX 464", + "city": "GOLDEN", + "province": "BC", + "postal_code": "V0A1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "699069", + "name": "Golden Alternate School", + "total_students": 16, + "address": "PO BOX 1350", + "city": "GOLDEN", + "province": "BC", + "postal_code": "V0A1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "699086", + "name": "Kimberley Alternate School", + "total_students": 21, + "address": "214 7th Avenue", + "city": "Invermere", + "province": "BC", + "postal_code": "V0A1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "699127", + "name": "Open Doors Alternate Education", + "total_students": 31, + "address": "PO BOX 430", + "city": "INVERMERE", + "province": "BC", + "postal_code": "V0A1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "6", + "district_name": "Rocky Mountain", + "school_number": "699157", + "name": "Rocky Mountain Online Learning", + "total_students": 10, + "address": "BOX 430", + "city": "INVERMERE", + "province": "BC", + "postal_code": "V0A1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807004", + "name": "Hume Elementary School", + "total_students": 203, + "address": "310 NELSON AVE", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L2M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807005", + "name": "Trafalgar Middle School", + "total_students": 559, + "address": "1201 JOSEPHINE ST", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L1X8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807011", + "name": "Salmo Elementary School", + "total_students": 139, + "address": "PO DRAWER 220", + "city": "SALMO", + "province": "BC", + "postal_code": "V0G1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807012", + "name": "Salmo Secondary", + "total_students": 151, + "address": "PO BOX 310", + "city": "SALMO", + "province": "BC", + "postal_code": "V0G1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807013", + "name": "L V Rogers Secondary", + "total_students": 624, + "address": "1004 COTTONWOOD STREET", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L3W2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807014", + "name": "South Nelson Elementary", + "total_students": 184, + "address": "814 LATIMER ST", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L4V7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807016", + "name": "Blewett Elementary School", + "total_students": 97, + "address": "2665 BLEWETT RD", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L6V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807018", + "name": "Rosemont Elementary School", + "total_students": 125, + "address": "1605 CREASE STREET", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L1A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807025", + "name": "Mount Sentinel Secondary", + "total_students": 281, + "address": "PO BOX 99", + "city": "SOUTH SLOCAN", + "province": "BC", + "postal_code": "V0G2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807026", + "name": "W.E. Graham Community School", + "total_students": 69, + "address": "PO BOX 10", + "city": "SLOCAN", + "province": "BC", + "postal_code": "V0G2C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807033", + "name": "Brent Kennedy Elementary", + "total_students": 183, + "address": "PO BOX 40", + "city": "CRESCENT VALLEY", + "province": "BC", + "postal_code": "V0G1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807034", + "name": "Winlaw Elementary School", + "total_students": 94, + "address": "PO BOX 10", + "city": "WINLAW", + "province": "BC", + "postal_code": "V0G2J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "807035", + "name": "Redfish Elementary School", + "total_students": 107, + "address": "265 BRYAN RD", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L6M9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886004", + "name": "Adam Robertson Elementary", + "total_students": 308, + "address": "421 9 AVE N", + "city": "CRESTON", + "province": "BC", + "postal_code": "V0B1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886005", + "name": "Jewett Elementary", + "total_students": 19, + "address": "PO BOX 39", + "city": "MEADOW CREEK", + "province": "BC", + "postal_code": "V0G1N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886006", + "name": "Crawford Bay Elem-Secondary", + "total_students": 68, + "address": "PO BOX 100", + "city": "CRAWFORD BAY", + "province": "BC", + "postal_code": "V0B1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886007", + "name": "Kootenay River Secondary", + "total_students": 558, + "address": "223 18TH AVE S", + "city": "CRESTON", + "province": "BC", + "postal_code": "V0B1G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886014", + "name": "Canyon/Lister Elementary", + "total_students": 119, + "address": "4575 CANYON-LISTER ROAD", + "city": "CANYON", + "province": "BC", + "postal_code": "V0B1C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886016", + "name": "Elev8 Homelinks", + "total_students": 165, + "address": "PO BOX 250", + "city": "CRESTON", + "province": "BC", + "postal_code": "V0B1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886018", + "name": "J V Humphries Elem-Secondary", + "total_students": 192, + "address": "PO BOX 577", + "city": "KASLO", + "province": "BC", + "postal_code": "V0G1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "886019", + "name": "Erickson Elementary", + "total_students": 187, + "address": "PO BOX 180", + "city": "ERICKSON", + "province": "BC", + "postal_code": "V0B1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "898001", + "name": "Elev8 D.E.S.K.", + "total_students": 236, + "address": "811 STANLEY ST", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L1N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "899178", + "name": "Wildflower", + "total_students": 172, + "address": "811 STANLEY ST", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L1N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "899225", + "name": "Reach", + "total_students": 11, + "address": "1004 COTTONWOOD ST", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L3W2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "8", + "district_name": "Kootenay Lake", + "school_number": "899298", + "name": "Sequoia Centre", + "total_students": 15, + "address": "PO BOX 99", + "city": "SOUTH SLOCAN", + "province": "BC", + "postal_code": "V0G2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "10", + "district_name": "Arrow Lakes", + "school_number": "1010002", + "name": "Burton Elementary", + "total_students": 41, + "address": "PO BOX 3", + "city": "BURTON", + "province": "BC", + "postal_code": "V0G1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "10", + "district_name": "Arrow Lakes", + "school_number": "1010003", + "name": "Edgewood Elementary", + "total_students": 13, + "address": "PO BOX 129", + "city": "EDGEWOOD", + "province": "BC", + "postal_code": "V0G1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "10", + "district_name": "Arrow Lakes", + "school_number": "1010004", + "name": "Nakusp Elementary", + "total_students": 177, + "address": "PO BOX 250", + "city": "NAKUSP", + "province": "BC", + "postal_code": "V0G1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "10", + "district_name": "Arrow Lakes", + "school_number": "1010006", + "name": "Nakusp Secondary", + "total_students": 148, + "address": "PO BOX 249", + "city": "NAKUSP", + "province": "BC", + "postal_code": "V0G1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "10", + "district_name": "Arrow Lakes", + "school_number": "1010011", + "name": "Lucerne Elem-Secondary", + "total_students": 91, + "address": "PO BOX 130", + "city": "NEW DENVER", + "province": "BC", + "postal_code": "V0G1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "10", + "district_name": "Arrow Lakes", + "school_number": "1099217", + "name": "Arrow Lakes Distributed Learning", + "total_students": 33, + "address": "PO BOX 130", + "city": "NEW DENVER", + "province": "BC", + "postal_code": "V0G1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "19", + "district_name": "Revelstoke", + "school_number": "1919003", + "name": "Revelstoke Secondary", + "total_students": 414, + "address": "BAG 5100", + "city": "REVELSTOKE", + "province": "BC", + "postal_code": "V0E2S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "19", + "district_name": "Revelstoke", + "school_number": "1919013", + "name": "Columbia Park Elementary", + "total_students": 227, + "address": "BAG 7200", + "city": "REVELSTOKE", + "province": "BC", + "postal_code": "V0E2S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "19", + "district_name": "Revelstoke", + "school_number": "1919015", + "name": "Arrow Heights Elementary", + "total_students": 214, + "address": "PO BAG 7400", + "city": "REVELSTOKE", + "province": "BC", + "postal_code": "V0E2S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "19", + "district_name": "Revelstoke", + "school_number": "1919016", + "name": "Begbie View Elementary", + "total_students": 275, + "address": "PO BAG 7100", + "city": "REVELSTOKE", + "province": "BC", + "postal_code": "V0E2S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2009006", + "name": "Kinnaird Elementary", + "total_students": 446, + "address": "2273 10 AVE", + "city": "CASTLEGAR", + "province": "BC", + "postal_code": "V1N2Z8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2009010", + "name": "Stanley Humphries Secondary", + "total_students": 705, + "address": "720 7 AVE", + "city": "CASTLEGAR", + "province": "BC", + "postal_code": "V1N1R5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2009011", + "name": "Twin Rivers Elementary", + "total_students": 504, + "address": "649 7 AVE", + "city": "CASTLEGAR", + "province": "BC", + "postal_code": "V1N1R6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2011005", + "name": "Fruitvale Elementary", + "total_students": 354, + "address": "1867 W COLUMBIA GDNS RD B580", + "city": "FRUITVALE", + "province": "BC", + "postal_code": "V0G1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2011009", + "name": "James L Webster Elementary", + "total_students": 241, + "address": "395 SCHOFIELD HWY", + "city": "TRAIL", + "province": "BC", + "postal_code": "V1R2G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2011012", + "name": "J Lloyd Crowe Secondary", + "total_students": 884, + "address": "1300 FRANCES MORAN RD", + "city": "TRAIL", + "province": "BC", + "postal_code": "V1R4L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2011014", + "name": "Rossland Summit School", + "total_students": 486, + "address": "DRAWER 1269", + "city": "ROSSLAND", + "province": "BC", + "postal_code": "V0G1Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2011015", + "name": "Glenmerry Elementary", + "total_students": 352, + "address": "3660 CARNATION DR", + "city": "TRAIL", + "province": "BC", + "postal_code": "V1R2W6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2020021", + "name": "Robson Community School", + "total_students": 196, + "address": "PO BOX 259", + "city": "ROBSON", + "province": "BC", + "postal_code": "V0G1X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "20", + "district_name": "Kootenay-Columbia", + "school_number": "2020023", + "name": "Kootenay Columbia Secondary", + "total_students": 67, + "address": "2001 THIRD AVE", + "city": "TRAIL", + "province": "BC", + "postal_code": "V1R1R6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222001", + "name": "Ecole Beairsto Elementary", + "total_students": 664, + "address": "3302 27 ST", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T4W7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222002", + "name": "Coldstream Elementary", + "total_students": 301, + "address": "10104 KALAMALKA RD", + "city": "COLDSTREAM", + "province": "BC", + "postal_code": "V1B1L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222005", + "name": "Cherryville Elementary", + "total_students": 54, + "address": "108 NORTH FORK RD", + "city": "CHERRYVILLE", + "province": "BC", + "postal_code": "V0E2G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222006", + "name": "Lavington Elementary", + "total_students": 150, + "address": "9715 SCHOOL RD", + "city": "VERNON", + "province": "BC", + "postal_code": "V1B3G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222007", + "name": "W.L. Seaton Secondary", + "total_students": 1038, + "address": "2701 41 AVE", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T6X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222009", + "name": "Harwood Elementary", + "total_students": 392, + "address": "4320 20 ST", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T4E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222010", + "name": "J W Inglis Elementary", + "total_students": 351, + "address": "PO BOX 369", + "city": "LUMBY", + "province": "BC", + "postal_code": "V0E2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222012", + "name": "Silver Star Elementary", + "total_students": 405, + "address": "1401-35 AVE", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T2R6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222013", + "name": "Okanagan Landing Elementary", + "total_students": 281, + "address": "7322 GRANT RD", + "city": "VERNON", + "province": "BC", + "postal_code": "V1H1G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222014", + "name": "B X Elementary", + "total_students": 469, + "address": "5849 SILVER STAR RD", + "city": "VERNON", + "province": "BC", + "postal_code": "V1B3P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222015", + "name": "Hillview Elementary", + "total_students": 400, + "address": "1822 FRANCIS ST", + "city": "VERNON", + "province": "BC", + "postal_code": "V1B3A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222017", + "name": "Vernon Secondary", + "total_students": 1080, + "address": "2100-15TH ST", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T9X7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222019", + "name": "Mission Hill Elementary", + "total_students": 273, + "address": "1510 36 ST", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T6C8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222020", + "name": "Alexis Park Elementary", + "total_students": 368, + "address": "4205 35 ST", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T6C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222022", + "name": "Kalamalka Secondary", + "total_students": 701, + "address": "7900 MCCLOUNIE RD", + "city": "VERNON", + "province": "BC", + "postal_code": "V1B1P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222024", + "name": "Kidston Elementary", + "total_students": 388, + "address": "12101 LINDEN DR", + "city": "COLDSTREAM", + "province": "BC", + "postal_code": "V1B2H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222025", + "name": "Clarence Fulton Secondary", + "total_students": 784, + "address": "2301 FULTON RD", + "city": "VERNON", + "province": "BC", + "postal_code": "V1H1Y1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222026", + "name": "Ellison Elementary", + "total_students": 428, + "address": "PO BOX 2400", + "city": "VERNON", + "province": "BC", + "postal_code": "V1H1S3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2222027", + "name": "Charles Bloom Secondary", + "total_students": 367, + "address": "PO BOX 220", + "city": "LUMBY", + "province": "BC", + "postal_code": "V0E2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2299083", + "name": "Crossroads Learning Centre", + "total_students": 13, + "address": "PO BOX 1028", + "city": "LUMBY", + "province": "BC", + "postal_code": "V0E2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2299151", + "name": "VLearn.ca", + "total_students": 124, + "address": "2301 FULTON RD", + "city": "VERNON", + "province": "BC", + "postal_code": "V1H1Y1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "22", + "district_name": "Vernon", + "school_number": "2299152", + "name": "Alternative Learning Program", + "total_students": 60, + "address": "3602 30 Ave", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T2E4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323000", + "name": "Adult Education SD#23", + "total_students": 10, + "address": "1825 RICHTER ST", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y2M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323005", + "name": "Central School Programs", + "total_students": 305, + "address": "1825 RICHTER ST", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y2M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323008", + "name": "Oyama Traditional School", + "total_students": 186, + "address": "15525 GREENHOW RD", + "city": "OYAMA", + "province": "BC", + "postal_code": "V4V2E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323014", + "name": "Raymer Elementary", + "total_students": 287, + "address": "657 RAYMER AVE", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y4Z6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323015", + "name": "Rutland Middle School", + "total_students": 600, + "address": "715 RUTLAND RD N", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X3B6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323018", + "name": "Glenmore Elementary", + "total_students": 661, + "address": "960 GLENMORE DR", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y4P1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323022", + "name": "South Kelowna Elementary", + "total_students": 267, + "address": "4176 SPIERS RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W4B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323028", + "name": "George Elliot Secondary", + "total_students": 863, + "address": "10241 BOTTOM WOOD LAKE RD", + "city": "WINFIELD", + "province": "BC", + "postal_code": "V4V1Y7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323029", + "name": "Dr Knox Middle School", + "total_students": 1004, + "address": "121 DRYSDALE BLVD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1V2X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323030", + "name": "Dorothea Walker Elementary", + "total_students": 307, + "address": "4346 GORDON DR", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W1S5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323031", + "name": "A S Matheson Elementary", + "total_students": 292, + "address": "2090 GORDON DR", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y3H9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323032", + "name": "North Glenmore Elementary", + "total_students": 651, + "address": "125 SNOWSELL ST NORTH", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1V2E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323033", + "name": "South Rutland Elementary", + "total_students": 228, + "address": "200 MALLACH RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X2W5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323034", + "name": "Bankhead Elementary", + "total_students": 406, + "address": "1280 WILSON AVE", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y6Y6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323038", + "name": "KLO Middle School", + "total_students": 765, + "address": "3130 GORDON DR", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W3M4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323042", + "name": "Peachland Elementary", + "total_students": 172, + "address": "5486 CLEMENTS CRES", + "city": "PEACHLAND", + "province": "BC", + "postal_code": "V0H1X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323043", + "name": "Belgo Elementary School", + "total_students": 301, + "address": "125 ADVENTURE RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X1N3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323044", + "name": "Rutland Senior Secondary", + "total_students": 1831, + "address": "705 RUTLAND RD N", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X3B6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323046", + "name": "Casorso Elementary", + "total_students": 491, + "address": "3675 CASORSO RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W3E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323047", + "name": "Springvalley Middle School", + "total_students": 579, + "address": "350 ZIPRICK RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X4H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323048", + "name": "Pearson Road Elementary", + "total_students": 274, + "address": "700 PEARSON RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X5H8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323049", + "name": "Glenrosa Elementary", + "total_students": 295, + "address": "3430 WEBBER RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V4T1G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323050", + "name": "Springvalley Elementary", + "total_students": 291, + "address": "470 ZIPRICK RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X4H4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323051", + "name": "Mount Boucherie Secondary", + "total_students": 1798, + "address": "2751 CAMERON RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V1Z2T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323052", + "name": "Hudson Road Elementary", + "total_students": 366, + "address": "1221 HUDSON RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V1Z1J5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323055", + "name": "Bellevue Creek Elementary", + "total_students": 255, + "address": "4574 RAYMER RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W1H9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323056", + "name": "Black Mountain Elementary", + "total_students": 439, + "address": "1650 GALLAGHER RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1P1G7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323058", + "name": "Helen Gorman Elementary", + "total_students": 248, + "address": "3230 SALMON RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V4T1A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323059", + "name": "Okanagan Mission Secondary", + "total_students": 1336, + "address": "4544 GORDON DR", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W1T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323060", + "name": "Quigley Elementary", + "total_students": 274, + "address": "705 KITCH RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X5V8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323061", + "name": "Peter Greer Elementary", + "total_students": 386, + "address": "10300 SHERMAN DR", + "city": "WINFIELD", + "province": "BC", + "postal_code": "V4V1Y8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323063", + "name": "Webber Road Elementary", + "total_students": 206, + "address": "2829 INVERNESS RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V4T1J5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323065", + "name": "Rose Valley Elementary", + "total_students": 289, + "address": "1680 WESTLAKE RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V1Z3G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323066", + "name": "Davidson Road Elementary", + "total_students": 437, + "address": "2115 DAVIDSON RD", + "city": "LAKE COUNTRY", + "province": "BC", + "postal_code": "V4V1R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323067", + "name": "Shannon Lake Elementary", + "total_students": 425, + "address": "3044 SANDSTONE DR", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V4T1T2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323070", + "name": "Anne McClymont Elementary", + "total_students": 431, + "address": "4489 LAKESHORE RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W1W9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323071", + "name": "Glenrosa Middle School", + "total_students": 714, + "address": "2974 GLEN ABBEY PL", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V4T2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323072", + "name": "Ellison Elementary", + "total_students": 197, + "address": "3735 PARKDALE RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X6K9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323073", + "name": "Chief Tomat Elementary", + "total_students": 296, + "address": "3365 EAST BOUNDARY RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V4T2R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323074", + "name": "Watson Road Elementary", + "total_students": 615, + "address": "475 YATES RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1V1R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323075", + "name": "Constable Neil Bruce Middle School", + "total_students": 882, + "address": "2010 DAIMLER DR", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V1Z3Y4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323076", + "name": "Kelowna Secondary", + "total_students": 1862, + "address": "1079 RAYMER AVE", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y4Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323077", + "name": "Rutland Elementary", + "total_students": 449, + "address": "620 WEBSTER RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X4V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323078", + "name": "Chute Lake Elementary", + "total_students": 399, + "address": "5240 LARK ST", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W4K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323079", + "name": "Mar Jok Elementary", + "total_students": 432, + "address": "2101 MCDOUGALL RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V1Z4A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323082", + "name": "Central Secondary", + "total_students": 12, + "address": "1825 RICHTER ST", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y2M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323084", + "name": "Canyon Falls Middle School", + "total_students": 734, + "address": "1211 FROST RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W4P1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2323085", + "name": "HS Grenda Middle School", + "total_students": 494, + "address": "10168 KONSCHUH RD", + "city": "LAKE COUNTRY", + "province": "BC", + "postal_code": "V4V1T1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "23", + "district_name": "Central Okanagan", + "school_number": "2399159", + "name": "eSchool23", + "total_students": 10, + "address": "1040 HOLLYWOOD ROAD S", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X4N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727007", + "name": "Forest Grove Elementary", + "total_students": 85, + "address": "PO BOX 99", + "city": "FOREST GROVE", + "province": "BC", + "postal_code": "V0K1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727008", + "name": "Horsefly Elem-Jr Secondary", + "total_students": 67, + "address": "PO BOX 39", + "city": "HORSEFLY", + "province": "BC", + "postal_code": "V0L1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727011", + "name": "Marie Sharpe Elementary", + "total_students": 222, + "address": "260 CAMERON ST", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G1S8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727012", + "name": "100 Mile House Elementary", + "total_students": 299, + "address": "PO BOX 460", + "city": "100 MILE HOUSE", + "province": "BC", + "postal_code": "V0K2E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727014", + "name": "Likely Elem-Jr Secondary", + "total_students": 24, + "address": "PO BOX 57", + "city": "LIKELY", + "province": "BC", + "postal_code": "V0L1N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727020", + "name": "Big Lake Elementary", + "total_students": 23, + "address": "BOX 70", + "city": "BIG LAKE", + "province": "BC", + "postal_code": "V0L1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727027", + "name": "150 Mile Elementary", + "total_students": 234, + "address": "PO BOX 259", + "city": "150 MILE HOUSE", + "province": "BC", + "postal_code": "V0K2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727030", + "name": "Lac La Hache Elementary", + "total_students": 30, + "address": "PO BOX 128", + "city": "LAC LA HACHE", + "province": "BC", + "postal_code": "V0K1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727041", + "name": "Chilcotin Road Elementary", + "total_students": 208, + "address": "709 LYNE RD", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G3Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727045", + "name": "Mountview Elementary", + "total_students": 175, + "address": "1222 DOG CREEK RD", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G3G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727047", + "name": "Columneetza Junior Secondary", + "total_students": 709, + "address": "1045 WESTERN AVE", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G2J8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727054", + "name": "Anahim Lake Elem-Jr Secondary", + "total_students": 41, + "address": "PO BOX 3350", + "city": "ANAHIM LAKE", + "province": "BC", + "postal_code": "V0L1C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727056", + "name": "Peter Skene Ogden Secondary", + "total_students": 555, + "address": "PO BOX 910", + "city": "100 MILE HOUSE", + "province": "BC", + "postal_code": "V0K2E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727057", + "name": "Cataline Elementary", + "total_students": 319, + "address": "1175 BLAIR ST", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G1X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727059", + "name": "Naghtaneqed Elem-Jr Secondary", + "total_students": 26, + "address": "PO BOX 100", + "city": "NEMAIAH VALLEY", + "province": "BC", + "postal_code": "V0L1X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727061", + "name": "Horse Lake Elementary", + "total_students": 199, + "address": "6548 RYALL RD", + "city": "LONE BUTTE", + "province": "BC", + "postal_code": "V0K1X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727062", + "name": "Mile 108 Elementary", + "total_students": 164, + "address": "PO BOX 27", + "city": "108 MILE RANCH", + "province": "BC", + "postal_code": "V0K2Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727065", + "name": "Nesika Elementary", + "total_students": 256, + "address": "1180 MOON AVE", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G4A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727066", + "name": "Tatla Lake Elem-Jr Secondary", + "total_students": 19, + "address": "PO BOX 56", + "city": "TATLA LAKE", + "province": "BC", + "postal_code": "V0L1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727071", + "name": "Alexis Creek Elementary/Secondary", + "total_students": 28, + "address": "PO BOX 199", + "city": "ALEXIS CREEK", + "province": "BC", + "postal_code": "V0L1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2727072", + "name": "Lake City Secondary", + "total_students": 812, + "address": "640 CARSON DRIVE", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G1T3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2799060", + "name": "Graduation Routes Other Ways", + "total_students": 39, + "address": "320 SECOND AVE N", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G1Z9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2799094", + "name": "Skyline Alternate School", + "total_students": 27, + "address": "320 SECOND AVE N", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G1Z9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "27", + "district_name": "Cariboo-Chilcotin", + "school_number": "2799181", + "name": "PSO Outback Storefront", + "total_students": 15, + "address": "PO BOX 910", + "city": "100 MILE HOUSE", + "province": "BC", + "postal_code": "V0K2E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828002", + "name": "Wells Barkerville Elementary", + "total_students": 10, + "address": "PO BOX 190", + "city": "WELLS", + "province": "BC", + "postal_code": "V0K2R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828004", + "name": "Quesnel Junior School", + "total_students": 482, + "address": "950 MOUNTAIN ASH RD", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J3V7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828008", + "name": "Kersley Elementary School", + "total_students": 55, + "address": "2899 ARNOLDUS RD", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J6L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828016", + "name": "Ecole Red Bluff Lhtako Elementary", + "total_students": 284, + "address": "1533 MAPLE DR", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J4A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828020", + "name": "Bouchie Lake Elementary School", + "total_students": 154, + "address": "2074 BLACKWATER RD", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J7B3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828021", + "name": "Dragon Lake Elementary", + "total_students": 180, + "address": "2671 HYDRAULIC RD", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J4H4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828024", + "name": "Carson Elementary School", + "total_students": 111, + "address": "1255 GRAHAM AVE", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J3E2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828032", + "name": "Lakeview Elementary", + "total_students": 211, + "address": "1525 BERYL ST", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J4L8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828034", + "name": "Correlieu Secondary School", + "total_students": 746, + "address": "850 ANDERSON DR", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J1G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828036", + "name": "Voyageur Elementary School", + "total_students": 240, + "address": "1337 LARK AVE", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J4K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828038", + "name": "Parkland Elementary", + "total_students": 59, + "address": "5016 BJORNSON RD", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J6X7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828039", + "name": "Riverview Elementary", + "total_students": 173, + "address": "346 HARTLEY ST", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J1W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828040", + "name": "Barlow Creek Elementary", + "total_students": 116, + "address": "816 BARKERVILLE HWY", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J6S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2828041", + "name": "Nazko Valley Elementary", + "total_students": 10, + "address": "9560 NAZKO RD", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J3H9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2899005", + "name": "McNaughton Centre", + "total_students": 51, + "address": "241 KINCHANT ST", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J2R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "28", + "district_name": "Quesnel", + "school_number": "2899174", + "name": "Quesnel Online Learning", + "total_students": 44, + "address": "241 KINCHANT ST", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J2R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333000", + "name": "Continuing Ed SD 33", + "total_students": 63, + "address": "46361 YALE RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P2P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333003", + "name": "Strathcona Elementary", + "total_students": 352, + "address": "46375 STRATHCONA RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P3T1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333004", + "name": "Chilliwack Middle School", + "total_students": 604, + "address": "46354 YALE RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P2R1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333005", + "name": "Sardis Elementary", + "total_students": 453, + "address": "45775 MANUEL RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R2E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333008", + "name": "Chilliwack Central Elementary Community", + "total_students": 264, + "address": "9435 YOUNG RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P4S7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333009", + "name": "Cultus Lake Swilhcha Community School", + "total_students": 178, + "address": "71 SUNNYSIDE BLVD", + "city": "CULTUS LAKE", + "province": "BC", + "postal_code": "V2R5B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333010", + "name": "East Chilliwack Elementary", + "total_students": 291, + "address": "49190 CHILLIWACK CENTRAL RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P6H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333011", + "name": "Vedder Elementary", + "total_students": 488, + "address": "45850 PROMONTORY RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R5Z5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333012", + "name": "Chilliwack Secondary", + "total_students": 1584, + "address": "46363 YALE RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P2P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333013", + "name": "Cheam Elementary", + "total_students": 247, + "address": "9895 BANFORD RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P6H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333015", + "name": "Yarrow Community School", + "total_students": 271, + "address": "4605 WILSON RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R5C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333016", + "name": "Little Mountain Elementary", + "total_students": 406, + "address": "9900 CARLETON ST", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P6E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333017", + "name": "Watson Elementary", + "total_students": 442, + "address": "45305 WATSON RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R2H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333018", + "name": "Sardis Secondary", + "total_students": 1491, + "address": "45460 STEVENSON RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R2Z6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333019", + "name": "Bernard Elementary", + "total_students": 319, + "address": "45465 BERNARD AVE", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P1H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333023", + "name": "Rosedale Traditional Community", + "total_students": 598, + "address": "50850 YALE RD RR 1", + "city": "ROSEDALE", + "province": "BC", + "postal_code": "V0X1X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333024", + "name": "Robertson Elementary", + "total_students": 291, + "address": "46106 SOUTHLANDS CRES", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P1B1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333028", + "name": "McCammon Elementary", + "total_students": 278, + "address": "9601 HAMILTON ST", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P3X4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333029", + "name": "Unsworth Elementary", + "total_students": 311, + "address": "5685 UNSWORTH RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R4P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333030", + "name": "Leary Integrated Arts & Technology", + "total_students": 281, + "address": "9320 WALDEN ST", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P7Y2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333033", + "name": "A D Rundle Middle School", + "total_students": 579, + "address": "45660 HOCKING AVE", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P1A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333034", + "name": "Vedder Middle School", + "total_students": 694, + "address": "45560 SOUTH SUMAS RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R1S3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333035", + "name": "Tyson Elementary", + "total_students": 285, + "address": "45170 S SUMAS RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R1W9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333038", + "name": "Mount Slesse Middle School", + "total_students": 638, + "address": "5871 TYSON RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R2R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333039", + "name": "Evans Elementary", + "total_students": 212, + "address": "7600 EVANS RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R1L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333040", + "name": "Promontory Heights Community Elementary", + "total_students": 585, + "address": "46200 STONEVIEW DR", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R5W8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333042", + "name": "Greendale Elementary", + "total_students": 161, + "address": "6621 SUMAS PRAIRIE RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R4K1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333044", + "name": "GW Graham Secondary", + "total_students": 1585, + "address": "45955 THOMAS RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R0B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333045", + "name": "Imagine High Integrated Arts/Technology", + "total_students": 347, + "address": "45669 YALE RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3333046", + "name": "Stito:S La:Lem Toti:Lt", + "total_students": 939, + "address": "5337 TYSON ROAD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R3X7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3398003", + "name": "Fraser Valley Distance Education", + "total_students": 10, + "address": "46361 YALE RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P2P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "33", + "district_name": "Chilliwack", + "school_number": "3399056", + "name": "Kw'iyeqel Secondary", + "total_students": 169, + "address": "8855 ELM DR", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P4Y8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434000", + "name": "Bakerview Centre for Learning - CE", + "total_students": 10, + "address": "32622 MARSHALL RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T4A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434003", + "name": "Mt Lehman Elementary", + "total_students": 111, + "address": "6381 MT LEHMAN RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X2G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434005", + "name": "ASIA - North Poplar", + "total_students": 280, + "address": "32041 MARSHALL RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T1A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434007", + "name": "Sema:th Elementary School", + "total_students": 145, + "address": "36321 VYE RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G1Z5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434011", + "name": "Bradner Elementary", + "total_students": 92, + "address": "5291 BRADNER RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X2P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434016", + "name": "South Poplar Traditional Elementary", + "total_students": 277, + "address": "32746 HUNTINGDON RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T5Z1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434018", + "name": "Clearbrook Elementary", + "total_students": 424, + "address": "3614 CLEARBROOK RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T6N3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434019", + "name": "King Traditional Elementary", + "total_students": 352, + "address": "28776 KING RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X2R4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434021", + "name": "Alexander Elementary", + "total_students": 281, + "address": "2250 LOBBAN RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S3W1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434022", + "name": "Abbotsford Senior Secondary School", + "total_students": 1325, + "address": "33355 BEVAN AVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S0E7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434023", + "name": "Barrowtown Elementary", + "total_students": 52, + "address": "5137 TOLMIE RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G2V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434025", + "name": "Abbotsford Middle School", + "total_students": 720, + "address": "33231 BEVAN AVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S0A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434026", + "name": "Aberdeen Elementary", + "total_students": 215, + "address": "2975 BRADNER RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X1K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434027", + "name": "McMillan Elementary", + "total_students": 397, + "address": "34830 OAKHILL DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S7R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434028", + "name": "Godson Elementary", + "total_students": 373, + "address": "33130 BEVAN AVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S1T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434031", + "name": "Jackson Elementary", + "total_students": 249, + "address": "33165 KING RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S7Z9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434032", + "name": "Ross Elementary", + "total_students": 154, + "address": "2451 ROSS RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X1J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434033", + "name": "Margaret Stenersen Elementary", + "total_students": 464, + "address": "3060 OLD CLAYBURN RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S4H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434035", + "name": "Auguston Traditional Elementary", + "total_students": 337, + "address": "36367 STEPHEN LEACOCK DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G2Z6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434036", + "name": "Ten Broeck Elementary", + "total_students": 363, + "address": "2580 STANLEY ST", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T2R4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434037", + "name": "Centennial Park Elementary", + "total_students": 270, + "address": "2527 GLADWIN RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T3N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434038", + "name": "Yale Secondary", + "total_students": 1190, + "address": "34620 OLD YALE RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S7S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434041", + "name": "W J Mouat Secondary", + "total_students": 1520, + "address": "32355 MOUAT DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T4E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434042", + "name": "William A. Fraser Middle School", + "total_students": 707, + "address": "34695 BLATCHFORD WAY", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S6M6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434043", + "name": "Dormick Park Elementary", + "total_students": 273, + "address": "32161 Dormick Avenue", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T3J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434044", + "name": "John Maclure Community School", + "total_students": 388, + "address": "2990 ORIOLE CRES", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T4E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434045", + "name": "Dr Thomas A Swift Elementary", + "total_students": 346, + "address": "34800 MIERAU ST", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S5Y4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434046", + "name": "Terry Fox Elementary", + "total_students": 281, + "address": "3071 BABICH ST", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S5W5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434047", + "name": "Chief Dan George Middle", + "total_students": 598, + "address": "32877 OLD RIVERSIDE RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S8K2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434048", + "name": "Prince Charles Elementary", + "total_students": 281, + "address": "35410 MCKEE RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G3B1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434049", + "name": "Blue Jay Elementary", + "total_students": 420, + "address": "30995 SOUTHERN DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T6X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434050", + "name": "Sandy Hill Elementary", + "total_students": 435, + "address": "3836 OLD CLAYBURN RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G2Z5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434051", + "name": "Harry Sayers Elementary", + "total_students": 392, + "address": "31321 BLUERIDGE DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T6W2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434052", + "name": "Rick Hansen Secondary", + "total_students": 960, + "address": "31150 BLUERIDGE DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T5R2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434053", + "name": "Mountain Elementary", + "total_students": 240, + "address": "2299 MOUNTAIN DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G1E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434054", + "name": "Robert Bateman Secondary", + "total_students": 1064, + "address": "35045 EXBURY AVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S7L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434055", + "name": "Dr Roberta Bondar Elementary", + "total_students": 257, + "address": "32717 CHILCOTIN DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T5S5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434056", + "name": "Dave Kandal Elementary", + "total_students": 210, + "address": "3551 CRESTVIEW AVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T6T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434057", + "name": "Colleen And Gordie Howe Middle School", + "total_students": 606, + "address": "3174 CLEARBROOK RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T4N6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434058", + "name": "Eugene Reimer Middle School", + "total_students": 691, + "address": "3433 FIRHILL DR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T6X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434059", + "name": "Mathxwi Elementary School", + "total_students": 149, + "address": "33661 ELIZABETH AVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X1T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434060", + "name": "Clayburn Middle School", + "total_students": 740, + "address": "35139 LABURNUM AVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S8N3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434061", + "name": "Abbotsford Traditional School", + "total_students": 746, + "address": "2272 WINDSOR ST", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T6M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434064", + "name": "Abbotsford School of Integrated Arts", + "total_students": 335, + "address": "36232 LOWER SUMAS MTN RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G2J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3434066", + "name": "Irene Kelleher Toti:ltawtxw", + "total_students": 283, + "address": "2540 EAGLE MOUNTAIN DRIVE", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V3G3A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3499055", + "name": "Bakerview Centre for Learning", + "total_students": 10, + "address": "32622 MARSHALL RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T4A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "34", + "district_name": "Abbotsford", + "school_number": "3499101", + "name": "Abbotsford Virtual School", + "total_students": 536, + "address": "33952 PINE ST", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S2P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535002", + "name": "Fort Langley Elementary", + "total_students": 286, + "address": "8877 BARTLETT ST", + "city": "FORT LANGLEY", + "province": "BC", + "postal_code": "V1M2S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535009", + "name": "Belmont Elementary", + "total_students": 545, + "address": "20390 40 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A2X1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535010", + "name": "U-Connect", + "total_students": 129, + "address": "20190 48 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A3L4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535015", + "name": "North Otter Elementary", + "total_students": 390, + "address": "5370 248 ST", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W1A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535016", + "name": "Willoughby Elementary", + "total_students": 651, + "address": "20766 80 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y1X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535017", + "name": "Glenwood Elementary", + "total_students": 219, + "address": "20785 24 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2B4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535019", + "name": "Langley Secondary", + "total_students": 1169, + "address": "21405 56 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535020", + "name": "Aldergrove Community Secondary", + "total_students": 791, + "address": "26850 29 AVE", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W3C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535022", + "name": "Simonds Elementary", + "total_students": 160, + "address": "20190 48 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A3L4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535023", + "name": "Coghlan Fundamental Elementary", + "total_students": 224, + "address": "4452 256TH ST", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W1J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535024", + "name": "Wix-Brown Elementary", + "total_students": 216, + "address": "23851 24 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z3A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535026", + "name": "Peterson Road Elementary", + "total_students": 244, + "address": "23422 47 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2S3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535029", + "name": "Langley Fine Arts School", + "total_students": 876, + "address": "9096 TRATTLE ST", + "city": "FORT LANGLEY", + "province": "BC", + "postal_code": "V1M2S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535032", + "name": "Parkside Centennial Elementary", + "total_students": 505, + "address": "3300 270 ST", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W3H2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535033", + "name": "Blacklock Fine Arts Elementary", + "total_students": 303, + "address": "5100 206 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A2E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535034", + "name": "D.W. Poppy Secondary", + "total_students": 837, + "address": "23752 52 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535036", + "name": "Brookswood Secondary", + "total_students": 1056, + "address": "20902 37A AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A5N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535037", + "name": "Nicomekl Elementary", + "total_students": 426, + "address": "20050 53 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A3T9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535038", + "name": "Alice Brown Elementary", + "total_students": 311, + "address": "20011 44 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A6L8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535039", + "name": "Uplands Elementary", + "total_students": 242, + "address": "4471 207A ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A5V8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535040", + "name": "James Kennedy Elementary", + "total_students": 662, + "address": "9060 212 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M2B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535041", + "name": "R E Mountain Secondary", + "total_students": 2412, + "address": "7633 202A ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y1W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535042", + "name": "Shortreed Community School", + "total_students": 460, + "address": "27330 28 AVE", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W3K1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535043", + "name": "West Langley Elementary", + "total_students": 244, + "address": "9403 212 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M1M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535044", + "name": "Noel Booth Elementary", + "total_students": 326, + "address": "20202 35 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A0N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535045", + "name": "Douglas Park Community", + "total_students": 350, + "address": "5409 206 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A2C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535046", + "name": "Langley Meadows Elementary", + "total_students": 499, + "address": "2244 WILLOUGHBY WAY", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y1C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535047", + "name": "Alex Hope Elementary", + "total_students": 568, + "address": "21150 85 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M2M4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535048", + "name": "Gordon Greenwood Elementary", + "total_students": 337, + "address": "9175 206 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M2X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535050", + "name": "Walnut Grove Secondary", + "total_students": 2186, + "address": "8919 WALNUT GROVE DR", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M2N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535051", + "name": "James Hill Elementary", + "total_students": 365, + "address": "22144 OLD YALE RD", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z1B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535052", + "name": "Langley Fundamental Elementary", + "total_students": 516, + "address": "21789 50 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A3T2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535053", + "name": "Dorothy Peacock Elementary", + "total_students": 480, + "address": "20292 91A AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M2G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535054", + "name": "Topham Elementary", + "total_students": 321, + "address": "21555 91 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M3Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535055", + "name": "R C Garnett Demonstration Elementary", + "total_students": 611, + "address": "7096 201 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y3G7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535056", + "name": "Langley Fundamental Middle/Secondary Sch", + "total_students": 803, + "address": "21250 42 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A8K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535057", + "name": "H D Stafford Middle", + "total_students": 759, + "address": "20441 GRADE CRES", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A4J8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535058", + "name": "Betty Gilbert Middle", + "total_students": 491, + "address": "26845 27 AVE", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W3E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535061", + "name": "Lynn Fripps Elementary", + "total_students": 651, + "address": "21020 83 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y0K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535062", + "name": "Richard Bulpitt Elementary", + "total_students": 647, + "address": "20965 77A AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535063", + "name": "Yorkson Creek Middle School", + "total_students": 948, + "address": "20686 84 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535065", + "name": "Peter Ewart Middle School", + "total_students": 949, + "address": "7755 202A ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y1W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3535066", + "name": "Donna Gabriel Robins Elementary", + "total_students": 649, + "address": "7844 204b ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y3N9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3599050", + "name": "Langley Education Centre", + "total_students": 440, + "address": "21405A 56 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3599092", + "name": "Vanguard", + "total_students": 103, + "address": "3825 244 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3599168", + "name": "Langley Online and Distributed Learning", + "total_students": 335, + "address": "21405A 56 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3599173", + "name": "Choices Program", + "total_students": 129, + "address": "21405A 56 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3599201", + "name": "Advance Alternate", + "total_students": 18, + "address": "26850 29 AVE", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W3C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "35", + "district_name": "Langley", + "school_number": "3599202", + "name": "Focus Alternate", + "total_students": 31, + "address": "21405 56 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636000", + "name": "Continuing Ed SD36 (Invergarry)", + "total_students": 1679, + "address": "12772 88 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W3J9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636001", + "name": "Hjorth Road Elementary", + "total_students": 331, + "address": "14781 104 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R5X4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636002", + "name": "Port Kells Elementary", + "total_students": 78, + "address": "19076 88 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N5T2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636004", + "name": "Cloverdale Traditional", + "total_students": 303, + "address": "17857 56 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S1E2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636009", + "name": "White Rock Elementary", + "total_students": 611, + "address": "1273 FIR ST", + "city": "WHITE ROCK", + "province": "BC", + "postal_code": "V4B5A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636012", + "name": "Colebrook Elementary", + "total_students": 196, + "address": "5404 125A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X1W6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636018", + "name": "East Kensington Elementary", + "total_students": 88, + "address": "2795 184 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S9V2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636021", + "name": "Sullivan Elementary", + "total_students": 355, + "address": "6016 152 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S3K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636022", + "name": "Queen Elizabeth Secondary", + "total_students": 1498, + "address": "9457 KING GEORGE BLVD", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636028", + "name": "North Surrey Secondary", + "total_students": 1449, + "address": "15945 96 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N2R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636029", + "name": "Harold Bishop Elementary", + "total_students": 510, + "address": "15670 104 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N2J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636031", + "name": "Crescent Park Elementary", + "total_students": 307, + "address": "2440 128 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A3W3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636033", + "name": "Bridgeview Elementary", + "total_students": 196, + "address": "12834 115A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R2X4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636034", + "name": "J T Brown Elementary", + "total_students": 253, + "address": "12530 60 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X2K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636035", + "name": "Latimer Road Elementary", + "total_students": 623, + "address": "19233 60 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S2T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636036", + "name": "Ray Shepherd Elementary", + "total_students": 345, + "address": "1650 136 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A4E4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636037", + "name": "Dr F D Sinclair Elementary", + "total_students": 362, + "address": "7480 128 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W4E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636038", + "name": "Sunnyside Elementary", + "total_students": 670, + "address": "2828 159 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S0E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636039", + "name": "Surrey Centre Elementary", + "total_students": 367, + "address": "16670 OLD MCLELLAN RD", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S1K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636040", + "name": "K B Woodward Elementary", + "total_students": 762, + "address": "13130 106 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T2C3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636041", + "name": "Lord Tweedsmuir Secondary", + "total_students": 1856, + "address": "6151 180 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S4L5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636043", + "name": "Green Timbers Elementary", + "total_students": 559, + "address": "8824 144 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636044", + "name": "Prince Charles Elementary", + "total_students": 411, + "address": "12405 100 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V2X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636045", + "name": "Johnston Heights Secondary", + "total_students": 1505, + "address": "15350 99 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R0R9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636047", + "name": "Guildford Park Secondary", + "total_students": 1408, + "address": "10707 146 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R1T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636049", + "name": "Semiahmoo Secondary", + "total_students": 1544, + "address": "1785 148 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A4M5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636050", + "name": "Mountainview Montessori", + "total_students": 317, + "address": "15225 98 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R1J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636051", + "name": "A H P Matthew Elementary", + "total_students": 446, + "address": "13367 97 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T1A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636053", + "name": "T E Scott Elementary", + "total_students": 508, + "address": "7079 148 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S3E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636054", + "name": "Mary Jane Shannon Elementary", + "total_students": 373, + "address": "10682 144 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T4W1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636055", + "name": "Lena Shaw Elementary", + "total_students": 702, + "address": "14250 100A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T1K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636056", + "name": "H T Thrift Elementary", + "total_students": 357, + "address": "1739 148 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A4M6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636057", + "name": "William Watson Elementary", + "total_students": 451, + "address": "16450 80 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N0H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636058", + "name": "David Brankin Elementary", + "total_students": 425, + "address": "9160 128 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636059", + "name": "Ecole Riverdale Elementary", + "total_students": 457, + "address": "14835 108A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R1W9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636060", + "name": "Senator Reid Elementary", + "total_students": 319, + "address": "9341 126 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636061", + "name": "Martha Currie Elementary", + "total_students": 691, + "address": "5811 184 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S4N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636062", + "name": "James Ardiel Elementary", + "total_students": 487, + "address": "13751 112 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R2G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636063", + "name": "McLeod Road Traditional", + "total_students": 211, + "address": "6325 142 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X1B9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636064", + "name": "Old Yale Road Elementary", + "total_students": 534, + "address": "10135 132 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T3T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636067", + "name": "Erma Stephenson Elementary", + "total_students": 449, + "address": "10929 160 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636069", + "name": "Bear Creek Elementary", + "total_students": 592, + "address": "13780 80 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W7X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636070", + "name": "Peace Arch Elementary", + "total_students": 545, + "address": "15877 ROPER AVE", + "city": "WHITE ROCK", + "province": "BC", + "postal_code": "V4B2H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636071", + "name": "Henry Bose Elementary", + "total_students": 305, + "address": "6550 134 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W4S3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636072", + "name": "Newton Elementary", + "total_students": 413, + "address": "13359 81 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W3C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636073", + "name": "Cedar Hills Elementary", + "total_students": 329, + "address": "12370 98 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V2K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636077", + "name": "Royal Heights Elementary", + "total_students": 202, + "address": "11665 97 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V2B9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636079", + "name": "L.A. Matheson Secondary", + "total_students": 1157, + "address": "9484 122 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V4M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636080", + "name": "Surrey Traditional", + "total_students": 295, + "address": "13875 113 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R2J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636081", + "name": "Holly Elementary", + "total_students": 497, + "address": "10719 150 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R4C8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636082", + "name": "Georges Vanier Elementary", + "total_students": 609, + "address": "6985 142 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W5N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636084", + "name": "Ellendale Elementary", + "total_students": 197, + "address": "14525 110A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R2B4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636087", + "name": "Simon Cunningham Elementary", + "total_students": 560, + "address": "9380 140 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5Z4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636089", + "name": "Jessie Lee Elementary", + "total_students": 413, + "address": "2064 154 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A4S3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636090", + "name": "George Greenaway Elementary", + "total_students": 576, + "address": "17285 61A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S1W3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636105", + "name": "Earl Marriott Secondary", + "total_students": 1453, + "address": "15751 16 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A1S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636106", + "name": "Frank Hurt Secondary", + "total_students": 1539, + "address": "13940 77 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W5Z4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636107", + "name": "Betty Huff Elementary", + "total_students": 370, + "address": "13055 HUNTLEY AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V1V1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636109", + "name": "Strawberry Hill Elementary", + "total_students": 416, + "address": "7633 124 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W8N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636111", + "name": "Cindrich Elementary", + "total_students": 438, + "address": "13455 90 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V8A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636112", + "name": "Creekside Elementary", + "total_students": 299, + "address": "13838 91 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V7K4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636114", + "name": "Enver Creek Secondary", + "total_students": 1415, + "address": "14505 84 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S8X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636116", + "name": "W E Kinvig Elementary", + "total_students": 432, + "address": "13266 70B AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W8N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636117", + "name": "Laronde Elementary", + "total_students": 462, + "address": "1880 LARONDE DR", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A9S4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636118", + "name": "South Meridian Elementary", + "total_students": 349, + "address": "16244 13 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A8E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636122", + "name": "Don Christian Elementary", + "total_students": 411, + "address": "6256 184 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S8E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636128", + "name": "Bonaccord Elementary", + "total_students": 553, + "address": "14986 98 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R1J1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636129", + "name": "M B Sanford Elementary", + "total_students": 530, + "address": "7318 143 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W7T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636130", + "name": "Maple Green Elementary", + "total_students": 394, + "address": "14898 SPENSER DR", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S7K7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636131", + "name": "Hyland Elementary", + "total_students": 469, + "address": "6677 140 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W5J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636132", + "name": "Kennedy Trail Elementary", + "total_students": 274, + "address": "8305 122A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W9P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636134", + "name": "Pacific Heights Elementary", + "total_students": 502, + "address": "17148 26 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S0A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636136", + "name": "Berkshire Park Elementary", + "total_students": 455, + "address": "15372 94 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R1E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636137", + "name": "Panorama Park Elementary", + "total_students": 451, + "address": "12878 62 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X2E8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636138", + "name": "North Ridge Elementary", + "total_students": 506, + "address": "13460 62 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X2J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636139", + "name": "Cougar Creek Elementary", + "total_students": 372, + "address": "12236 70A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W4Z8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636140", + "name": "Martha Jane Norris Elementary", + "total_students": 427, + "address": "12928 66A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W8Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636141", + "name": "Fraser Heights Secondary", + "total_students": 1621, + "address": "16060 108 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636142", + "name": "Fraser Wood Elementary", + "total_students": 556, + "address": "10650 164 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1W8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636143", + "name": "Serpentine Heights Elementary", + "total_students": 417, + "address": "16126 93A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N3A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636144", + "name": "Boundary Park Elementary", + "total_students": 220, + "address": "12332 NORTH BOUNDARY DR", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X1Z6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636145", + "name": "Woodland Park Elementary", + "total_students": 537, + "address": "9025 158 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N2Y6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636146", + "name": "Brookside Elementary", + "total_students": 371, + "address": "8555 142A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W0S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636147", + "name": "Westerman Elementary", + "total_students": 372, + "address": "7626 122 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W1H4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636148", + "name": "Chantrell Creek Elementary", + "total_students": 350, + "address": "2575 137 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4P2K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636149", + "name": "Sunrise Ridge Elementary", + "total_students": 370, + "address": "18690 60 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S8L8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636150", + "name": "Tamanawis Secondary", + "total_students": 1465, + "address": "12600 66 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W2A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636151", + "name": "Cambridge Elementary", + "total_students": 774, + "address": "6115 150 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S3H7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636152", + "name": "Walnut Road Elementary", + "total_students": 838, + "address": "16152 82 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N0N5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636153", + "name": "Adams Road Elementary", + "total_students": 567, + "address": "18228 68 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S9H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636155", + "name": "Coast Meridian Elementary", + "total_students": 281, + "address": "8222 168A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N4T8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636156", + "name": "Elgin Park Secondary", + "total_students": 1428, + "address": "13484 24 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A2G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636157", + "name": "Coyote Creek Elementary", + "total_students": 793, + "address": "8131 156 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S3R4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636158", + "name": "Beaver Creek Elementary", + "total_students": 440, + "address": "6505 123A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W5Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636159", + "name": "Dogwood Elementary", + "total_students": 418, + "address": "10752 157 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636160", + "name": "Frost Road Elementary", + "total_students": 570, + "address": "8606 162 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636161", + "name": "Semiahmoo Trail Elementary", + "total_students": 430, + "address": "3040 145A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4P1P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636162", + "name": "Bayridge Elementary", + "total_students": 382, + "address": "1730 142 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A6G7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636164", + "name": "Sullivan Heights Secondary", + "total_students": 1970, + "address": "6248 144 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X1A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636165", + "name": "Chimney Hill Elementary", + "total_students": 552, + "address": "14755 74 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S8Y8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636167", + "name": "Fleetwood Park Secondary", + "total_students": 1744, + "address": "7940 156 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S3R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636170", + "name": "Ocean Cliff Elementary", + "total_students": 315, + "address": "12550 20 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A1Y6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636172", + "name": "William F. Davidson Elementary", + "total_students": 427, + "address": "15550 99A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R9H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636173", + "name": "Bothwell Elementary School", + "total_students": 360, + "address": "17070 102 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N4N6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636174", + "name": "Kirkbride Elementary", + "total_students": 370, + "address": "12150 92 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V1G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636175", + "name": "Clayton Heights Secondary", + "total_students": 1371, + "address": "7003 188 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N3G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636176", + "name": "Hillcrest Elementary", + "total_students": 464, + "address": "18599 65 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S8T2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636177", + "name": "Grandview Heights Secondary", + "total_students": 1790, + "address": "16987 25 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S9V2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636178", + "name": "A J McLellan Elementary", + "total_students": 485, + "address": "16545 61 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S5V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636180", + "name": "Douglas Elementary", + "total_students": 520, + "address": "17325 2 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3Z9P9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636183", + "name": "Forsyth Road Elementary", + "total_students": 498, + "address": "10730 139 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T4L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636184", + "name": "Maddaugh Elementary", + "total_students": 574, + "address": "19405 76 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N6C6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636186", + "name": "Janice Churchill Elementary", + "total_students": 240, + "address": "8226 146 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S3A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636188", + "name": "Morgan Elementary", + "total_students": 551, + "address": "3366 156A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3Z9Y7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636189", + "name": "Rosemary Heights Elementary", + "total_students": 577, + "address": "15516 36 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3Z0J5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636201", + "name": "Katzie Elementary", + "total_students": 753, + "address": "6887 194A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636203", + "name": "Hazelgrove Elementary", + "total_students": 621, + "address": "7057 - 191 STREET", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N6E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636206", + "name": "Edgewood Elementary", + "total_students": 755, + "address": "16666 23 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3Z9X8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636211", + "name": "Goldstone Park Elementary", + "total_students": 718, + "address": "6287 146 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S3A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636212", + "name": "Woodward Hill Elementary", + "total_students": 700, + "address": "6082 142 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X1C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636215", + "name": "Ecole Salish Secondary", + "total_students": 1560, + "address": "7278 184 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N5V2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636218", + "name": "Regent Road Elementary", + "total_students": 343, + "address": "18711 74 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N6C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636232", + "name": "Ecole Panorama Ridge Secondary", + "total_students": 1553, + "address": "13220 64 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W1X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636242", + "name": "SAIL Secondary", + "total_students": 68, + "address": "14123 92 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V1J7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636246", + "name": "Princess Margaret Secondary", + "total_students": 1465, + "address": "12870 72 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W2M9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636248", + "name": "Kwantlen Park Secondary", + "total_students": 1673, + "address": "10441 132 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T3V3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636522", + "name": "Continuing Ed SD36 (Queen Elizabeth)", + "total_students": 309, + "address": "9457 KING GEORGE BLVD", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636525", + "name": "SD 36 Education Services (Type 1)", + "total_students": 13, + "address": "14033 92 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V0B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636574", + "name": "City Central Learning Centre", + "total_students": 31, + "address": "13104 109 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T2N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636591", + "name": "North Surrey Learning Centre", + "total_students": 10, + "address": "9260 140 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5Z4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636592", + "name": "South Surrey/White Rock Learning Centre", + "total_students": 10, + "address": "13-2320 KING GEORGE HWY", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A5A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636593", + "name": "Cloverdale Learning Centre", + "total_students": 59, + "address": "5658 176 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S4C6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636595", + "name": "Ta'talu Elementary", + "total_students": 224, + "address": "1970 165A St", + "city": "Surrey", + "province": "BC", + "postal_code": "V3S9N3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3636596", + "name": "Xw'epiteng Elementary", + "total_students": 105, + "address": "18035 8 Ave", + "city": "Surrey", + "province": "BC", + "postal_code": "V3S9R9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3699008", + "name": "Education Services (Alternate)", + "total_students": 187, + "address": "14033 92 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V0B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3699142", + "name": "Surrey Academy of Innovative Learning", + "total_students": 1566, + "address": "14123 92 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V1J7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3699316", + "name": "SD 36 Alternate City Central LC", + "total_students": 107, + "address": "13104 109 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T2N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3699317", + "name": "SD 36 Alternate Cloverdale LC", + "total_students": 77, + "address": "5658 176 STREET", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R4H9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3699318", + "name": "SD 36 Alternate Guildford LC", + "total_students": 140, + "address": "10183 152A ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R4H6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3699319", + "name": "SD 36 Alternate North Surrey LC", + "total_students": 193, + "address": "9260 140 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V5Z4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "36", + "district_name": "Surrey", + "school_number": "3699320", + "name": "SD 36 Alternate S.Surrey/White Rock LC", + "total_students": 111, + "address": "13-2320 KING GEORGE BLVD", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A5A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737000", + "name": "Delta Continuing Education", + "total_students": 293, + "address": "4750 57 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K3C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737001", + "name": "Ladner Elementary", + "total_students": 589, + "address": "5016 44 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K1C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737003", + "name": "Delta Secondary", + "total_students": 1261, + "address": "4615 51 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K2V8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737007", + "name": "Richardson Elementary", + "total_students": 339, + "address": "11339 83 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C7B9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737008", + "name": "Heath Elementary", + "total_students": 260, + "address": "11364 72 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4E1Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737009", + "name": "Annieville Elementary", + "total_students": 242, + "address": "9240 112 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C4X8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737012", + "name": "North Delta Secondary", + "total_students": 1347, + "address": "11447 82 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C5J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737013", + "name": "Sunshine Hills Elementary", + "total_students": 495, + "address": "11285 BOND BLVD", + "city": "DELTA", + "province": "BC", + "postal_code": "V4E1N3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737014", + "name": "English Bluff Elementary", + "total_students": 257, + "address": "402 ENGLISH BLUFF RD", + "city": "DELTA", + "province": "BC", + "postal_code": "V4M2N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737015", + "name": "Cliff Drive Elementary", + "total_students": 346, + "address": "5025 12 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4M2A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737017", + "name": "Devon Gardens Elementary", + "total_students": 359, + "address": "8884 RUSSELL DR", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C4P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737018", + "name": "South Park Elementary", + "total_students": 418, + "address": "735 GILCHRIST DR", + "city": "DELTA", + "province": "BC", + "postal_code": "V4M3L4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737019", + "name": "Beach Grove Elementary", + "total_students": 297, + "address": "5955 17A AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4L1J7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737021", + "name": "Delview Secondary", + "total_students": 693, + "address": "9111 116 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C5W8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737022", + "name": "Chalmers Elementary", + "total_students": 438, + "address": "11315 75 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C1H4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737023", + "name": "Hellings Elementary", + "total_students": 333, + "address": "11655 86 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C2X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737024", + "name": "Gray Elementary", + "total_students": 554, + "address": "10855 80 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C1W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737025", + "name": "Hawthorne Elementary", + "total_students": 409, + "address": "5160 CENTRAL AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K2H2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737026", + "name": "Gibson Elementary", + "total_students": 393, + "address": "11451 90 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C3H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737027", + "name": "Pebble Hill Traditional Elementary", + "total_students": 277, + "address": "246 52A ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4M2Z8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737029", + "name": "Brooke Elementary", + "total_students": 335, + "address": "8718 DELWOOD DR", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C3Z9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737030", + "name": "Jarvis Traditional Elementary", + "total_students": 470, + "address": "7670 118 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C6G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737032", + "name": "McCloskey Elementary", + "total_students": 311, + "address": "11531 80 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C1X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737033", + "name": "Port Guichon Elementary", + "total_students": 191, + "address": "4381 46A ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K2M2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737034", + "name": "Burnsview Secondary", + "total_students": 864, + "address": "7658 112 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C4V8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737035", + "name": "Holly Elementary", + "total_students": 332, + "address": "4625 62 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K3L8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737037", + "name": "South Delta Secondary", + "total_students": 1417, + "address": "750 53 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4M3B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737038", + "name": "Sands Secondary", + "total_students": 730, + "address": "10840 82 AVE", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C2B3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737039", + "name": "Cougar Canyon Elementary", + "total_students": 460, + "address": "11664 LYON RD", + "city": "DELTA", + "province": "BC", + "postal_code": "V4E2K4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737040", + "name": "Seaquam Secondary", + "total_students": 1486, + "address": "11584 LYON RD", + "city": "DELTA", + "province": "BC", + "postal_code": "V4E2K4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737041", + "name": "Pinewood Elementary", + "total_students": 337, + "address": "11777 PINEWOOD DR", + "city": "DELTA", + "province": "BC", + "postal_code": "V4E3E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3737043", + "name": "Neilson Grove Elementary", + "total_students": 211, + "address": "5500 ADMIRAL BLVD", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K5B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3799141", + "name": "Home Quest", + "total_students": 81, + "address": "9240 112 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C4X8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "37", + "district_name": "Delta", + "school_number": "3799170", + "name": "Delta Access", + "total_students": 128, + "address": "4750 57 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K3C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838000", + "name": "Continuing Ed SD 38", + "total_students": 382, + "address": "7811 GRANVILLE AVE", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y3E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838001", + "name": "Mitchell Elementary", + "total_students": 376, + "address": "3800 NO.5 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X2T7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838005", + "name": "Lord Byng Elementary", + "total_students": 355, + "address": "3711 GEORGIA ST", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E6M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838006", + "name": "Hamilton Elementary", + "total_students": 390, + "address": "5180 SMITH DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6V2W5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838008", + "name": "Garden City Elementary", + "total_students": 388, + "address": "8311 GARDEN CITY RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2P1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838009", + "name": "R M Grauer Elementary", + "total_students": 203, + "address": "4440 BLUNDELL RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838013", + "name": "James Thompson Elementary", + "total_students": 257, + "address": "6211 FORSYTH CRES", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C2C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838014", + "name": "Blundell Elementary", + "total_students": 236, + "address": "6480 BLUNDELL RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C1H8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838015", + "name": "William Cook Elementary", + "total_students": 686, + "address": "8600 COOK RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y1V7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838016", + "name": "James Whiteside Elementary", + "total_students": 408, + "address": "9282 WILLIAMS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A1H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838017", + "name": "Robert J Tait Elementary", + "total_students": 233, + "address": "10071 FINLAYSON DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X1W7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838019", + "name": "Thomas Kidd Elementary", + "total_students": 193, + "address": "10851 SHELL RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A3W6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838020", + "name": "Alfred B Dixon Elementary", + "total_students": 335, + "address": "9331 DIAMOND RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E1P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838021", + "name": "John T Errington Elementary", + "total_students": 322, + "address": "9831 HERBERT RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A1T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838023", + "name": "Tomsett Elementary", + "total_students": 487, + "address": "9671 ODLIN RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X1E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838024", + "name": "R.C. Palmer Secondary", + "total_students": 1043, + "address": "8160 ST. ALBANS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2K9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838025", + "name": "James Gilmore Elementary", + "total_students": 298, + "address": "8380 ELSMORE RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C2A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838026", + "name": "Walter Lee Elementary", + "total_students": 340, + "address": "9491 ASH ST", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A2T7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838027", + "name": "W D Ferris Elementary", + "total_students": 635, + "address": "7520 SUNNYMEDE CRES", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2V8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838029", + "name": "Daniel Woodward Elementary", + "total_students": 158, + "address": "10300 SEACOTE RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A4B2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838030", + "name": "Donald E McKay Elementary", + "total_students": 305, + "address": "7360 LOMBARD RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C3N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838031", + "name": "Hugh Boyd Secondary", + "total_students": 709, + "address": "9200 NO. 1 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E6L5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838033", + "name": "Hugh McRoberts Secondary", + "total_students": 1035, + "address": "8980 WILLIAMS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A1G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838035", + "name": "Samuel Brighouse Elementary", + "total_students": 717, + "address": "6800 AZURE RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C2S8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838037", + "name": "Howard De Beck Elementary", + "total_students": 378, + "address": "8600 ASH ST", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2S3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838040", + "name": "James McKinney Elementary", + "total_students": 412, + "address": "10451 LASSAM RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E2C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838041", + "name": "Manoah Steves Elementary", + "total_students": 259, + "address": "10111 FOURTH AVE", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E1V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838042", + "name": "J.N. Burnett Secondary", + "total_students": 957, + "address": "5011 GRANVILLE AVE", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C1E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838043", + "name": "William Bridge Elementary", + "total_students": 345, + "address": "10400 LEONARD RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A2N5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838044", + "name": "Matthew McNair Secondary", + "total_students": 763, + "address": "9500 NO. 4 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A2Y9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838045", + "name": "Steveston-London Secondary", + "total_students": 1204, + "address": "6600 WILLIAMS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E1K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838046", + "name": "Maple Lane Elementary", + "total_students": 267, + "address": "7671 ALOUETTE DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A4P2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838047", + "name": "Quilchena Elementary", + "total_students": 172, + "address": "3760 MORESBY DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C4G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838048", + "name": "Kingswood Elementary", + "total_students": 240, + "address": "11511 KING RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A3B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838049", + "name": "Westwind Elementary", + "total_students": 449, + "address": "11371 KINGFISHER DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E4Y6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838052", + "name": "John G Diefenbaker Elementary", + "total_students": 385, + "address": "4511 HERMITAGE DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E4T1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838053", + "name": "Tomekichi Homma Elementary", + "total_students": 536, + "address": "5100 BRUNSWICK DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E6K9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838054", + "name": "R. C. Talmey Elementary", + "total_students": 362, + "address": "9500 KILBY DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X3N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838055", + "name": "Kathleen McNeely Elementary", + "total_students": 411, + "address": "12440 WOODHEAD RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6V1G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838056", + "name": "Jessie Wowk Elementary", + "total_students": 216, + "address": "5380 WOODWARDS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E1H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838057", + "name": "General Currie Elementary", + "total_students": 509, + "address": "8220 GENERAL CURRIE RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y1M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838058", + "name": "Cambie Secondary", + "total_students": 571, + "address": "4151 JACOMBS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6V1N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838059", + "name": "Henry Anderson Elementary", + "total_students": 651, + "address": "9460 ALBERTA RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y1T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838060", + "name": "Archibald Blair Elementary", + "total_students": 241, + "address": "6551 LYNAS LANE", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C3K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838062", + "name": "Robert A. McMath Secondary", + "total_students": 1141, + "address": "4251 GARRY ST", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E2T9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838063", + "name": "Spul'u'kwuks Elementary", + "total_students": 411, + "address": "5999 BLANSHARD DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C5V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838064", + "name": "A.R. MacNeill Secondary", + "total_students": 879, + "address": "6611 NO. 4 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2T2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3838065", + "name": "Richmond Secondary", + "total_students": 1184, + "address": "7171 MINORU BLVD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3899061", + "name": "Station Stretch", + "total_students": 10, + "address": "5280 MINORU BLVD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X2A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3899175", + "name": "Richmond Virtual School", + "total_students": 186, + "address": "8160 ST. ALBANS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2K9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "38", + "district_name": "Richmond", + "school_number": "3899228", + "name": "Errington Learning Centre", + "total_students": 10, + "address": "9831 HERBERT RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A1T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939000", + "name": "Vancouver School Board Adult Education", + "total_students": 1076, + "address": "6010 FRASER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W2Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939001", + "name": "King George Secondary", + "total_students": 643, + "address": "1755 BARCLAY ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6G1K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939003", + "name": "Magee Secondary", + "total_students": 1167, + "address": "6360 MAPLE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6M4M2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939004", + "name": "Britannia Community Secondary", + "total_students": 592, + "address": "1001 COTTON DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5L3T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939006", + "name": "Kitsilano Secondary", + "total_students": 1600, + "address": "2706 TRAFALGAR ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6K2J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939007", + "name": "John Oliver Secondary", + "total_students": 940, + "address": "530 41ST AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W1P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939008", + "name": "Lord Byng Secondary", + "total_students": 1455, + "address": "3939 16TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6R3C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939010", + "name": "Templeton Secondary", + "total_students": 1017, + "address": "727 TEMPLETON DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5L4N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939011", + "name": "Vancouver Technical Secondary", + "total_students": 1610, + "address": "2600 BROADWAY E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M1Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939012", + "name": "Point Grey Secondary", + "total_students": 967, + "address": "5350 EAST BLVD", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6M3V2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939014", + "name": "Gladstone Secondary", + "total_students": 991, + "address": "4105 GLADSTONE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N4Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939015", + "name": "Sir Winston Churchill Secondary", + "total_students": 2045, + "address": "7055 HEATHER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P3P7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939016", + "name": "Killarney Secondary", + "total_students": 1601, + "address": "6454 KILLARNEY ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S2X7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939017", + "name": "Sir Charles Tupper Secondary", + "total_students": 1102, + "address": "419 24TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V2A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939018", + "name": "David Thompson Secondary", + "total_students": 1417, + "address": "1755 55TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5P1Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939019", + "name": "Prince of Wales Secondary", + "total_students": 920, + "address": "2250 EDDINGTON DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6L2E7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939020", + "name": "Windermere Community Secondary", + "total_students": 1104, + "address": "3155 27TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R1P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939022", + "name": "Eric Hamber Secondary", + "total_students": 1598, + "address": "960 W. 33RD AVENUE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z0L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939024", + "name": "University Hill Secondary", + "total_students": 944, + "address": "3228 ROSS DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6S0C6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939028", + "name": "Lord Strathcona Community Elementary", + "total_students": 446, + "address": "592 PENDER ST E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6A1V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939031", + "name": "Lord Roberts Elementary", + "total_students": 648, + "address": "1100 BIDWELL ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6G2K4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939032", + "name": "Admiral Seymour Elementary", + "total_students": 144, + "address": "1130 KEEFER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6A1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939033", + "name": "Xpey' Elementary", + "total_students": 84, + "address": "1950 HASTINGS ST E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5L1T7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939035", + "name": "David Lloyd George Elementary", + "total_students": 426, + "address": "8370 CARTIER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P4T8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939037", + "name": "General Brock Elementary", + "total_students": 252, + "address": "4860 MAIN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V3R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939038", + "name": "Kerrisdale Elementary", + "total_students": 448, + "address": "5555 CARNARVON ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6N1J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939039", + "name": "Lord Selkirk Elementary", + "total_students": 669, + "address": "1750 22ND AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N2P7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939040", + "name": "Queen Alexandra Elementary", + "total_students": 142, + "address": "1300 BROADWAY E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N1V6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939041", + "name": "Queen Mary Elementary", + "total_students": 300, + "address": "2000 TRIMBLE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6R3Z4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939042", + "name": "Simon Fraser Elementary", + "total_students": 338, + "address": "100 15TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Y3B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939043", + "name": "L'Ecole Bilingue Elementary", + "total_students": 409, + "address": "1166 W 14TH AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6H1P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939044", + "name": "Emily Carr Elementary", + "total_students": 335, + "address": "4070 OAK ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6H2M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939045", + "name": "General Wolfe Elementary", + "total_students": 379, + "address": "4251 ONTARIO ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V3G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939046", + "name": "Lord Nelson Elementary", + "total_students": 468, + "address": "1355 GARDEN DRIVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5L0C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939047", + "name": "Lord Tennyson Elementary", + "total_students": 397, + "address": "1936 10TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J2B2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939048", + "name": "Sir Richard McBride Elementary", + "total_students": 341, + "address": "1300 29TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V2T3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939049", + "name": "Sir Wilfred Grenfell Community", + "total_students": 323, + "address": "3323 WELLINGTON AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R4Y3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939050", + "name": "Tecumseh Elementary", + "total_students": 406, + "address": "1850 41ST AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5P1K9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939051", + "name": "Florence Nightingale Elementary", + "total_students": 288, + "address": "2740 GUELPH ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5T3P7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939052", + "name": "General Gordon Elementary", + "total_students": 395, + "address": "2268 BAYSWATER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6K4P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939053", + "name": "Henry Hudson Elementary", + "total_students": 331, + "address": "1530 Maple Street", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J0H8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939054", + "name": "Laura Secord Elementary", + "total_students": 644, + "address": "2500 LAKEWOOD DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N4V1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939056", + "name": "Walter Moberly Elementary", + "total_students": 482, + "address": "1000 59TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5X1Y7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939057", + "name": "Pierre Elliott Trudeau Elementary", + "total_students": 235, + "address": "449 62ND AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5X2G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939058", + "name": "Sir Wm Van Horne Elementary", + "total_students": 442, + "address": "5855 ONTARIO ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W2L8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939059", + "name": "Charles Dickens Elementary", + "total_students": 443, + "address": "1010 EAST 17TH AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V0A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939060", + "name": "David Livingstone Elementary", + "total_students": 285, + "address": "315 23RD AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V1X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939061", + "name": "Hastings Community Elementary", + "total_students": 549, + "address": "2625 FRANKLIN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K3W7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939062", + "name": "John Norquay Elementary", + "total_students": 643, + "address": "4710 SLOCAN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R2A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939063", + "name": "J.W. Sexsmith Community Elementary", + "total_students": 431, + "address": "7410 COLUMBIA ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5X3C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939064", + "name": "Sir James Douglas Elementary", + "total_students": 522, + "address": "2150 BRIGADOON AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5P3Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939065", + "name": "Sir John Franklin Community", + "total_students": 227, + "address": "250S SKEENA ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K4N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939066", + "name": "Sir Sandford Fleming Elementary", + "total_students": 427, + "address": "6363 LANARK ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5P1S2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939067", + "name": "Bayview Community Elementary", + "total_students": 306, + "address": "2251 COLLINGWOOD ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6R3L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939069", + "name": "Lord Beaconsfield Elementary", + "total_students": 243, + "address": "3663 PENTICTON ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M3C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939070", + "name": "Lord Kitchener Elementary", + "total_students": 408, + "address": "3455 W. KING EDWARD AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6S0C7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939071", + "name": "Edith Cavell Elementary", + "total_students": 323, + "address": "500 20TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z1X7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939072", + "name": "Shaughnessy Elementary", + "total_students": 443, + "address": "4250 MARGUERITE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J4G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939073", + "name": "Wekwanes Te Syaqwem Elemtary School", + "total_students": 330, + "address": "1430 LILLOOET ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K4H6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939074", + "name": "Maple Grove Elementary", + "total_students": 572, + "address": "6199 CYPRESS ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6M3S3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939075", + "name": "Quilchena Elementary", + "total_students": 303, + "address": "5300 MAPLE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6M3T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939076", + "name": "Grandview Elementary", + "total_students": 131, + "address": "2055 WOODLAND DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N3N9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939077", + "name": "Renfrew Community Elementary", + "total_students": 462, + "address": "3315 22ND AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M2Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939079", + "name": "Sir Alexander Mackenzie Elementary", + "total_students": 411, + "address": "960 39TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W1K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939080", + "name": "Queen Elizabeth Elementary", + "total_students": 325, + "address": "4102 16TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6R3E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939082", + "name": "Thunderbird Elementary", + "total_students": 187, + "address": "2325 CASSIAR ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M3X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939084", + "name": "Trafalgar Elementary", + "total_students": 459, + "address": "4170 TRAFALGAR ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6L2M5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939085", + "name": "Sir Wilfrid Laurier Elementary", + "total_students": 420, + "address": "7350 LAUREL ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P3T9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939086", + "name": "Sir William Osler Elementary", + "total_students": 274, + "address": "5970 SELKIRK ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6M2Y8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939087", + "name": "Southlands Elementary", + "total_students": 219, + "address": "5351 CAMOSUN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6N2C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939088", + "name": "Captain James Cook Elementary", + "total_students": 465, + "address": "3340 54TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939089", + "name": "Chief Maquinna Elementary", + "total_students": 221, + "address": "2684 2ND AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M1C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939090", + "name": "David Oppenheimer Elementary", + "total_students": 417, + "address": "2421 SCARBORO AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5P2L5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939093", + "name": "Sir Charles Kingsford-Smith", + "total_students": 305, + "address": "6901 ELLIOTT ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939094", + "name": "Carnarvon Community Elementary", + "total_students": 345, + "address": "3400 BALACLAVA ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6L2S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939095", + "name": "Dr A R Lord Elementary", + "total_students": 194, + "address": "555 LILLOOET ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K4G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939097", + "name": "Dr R E McKechnie Elementary", + "total_students": 295, + "address": "7455 MAPLE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P5P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939099", + "name": "Waverley Elementary", + "total_students": 375, + "address": "6111 ELLIOTT ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S2M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939100", + "name": "G T Cunningham Elementary", + "total_students": 428, + "address": "2330 37TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R2T3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939101", + "name": "Nootka Community Elementary", + "total_students": 381, + "address": "3375 NOOTKA ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M3N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939102", + "name": "Tecumseh Annex", + "total_students": 67, + "address": "1551 37TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5P1E4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939104", + "name": "Dr Annie B Jamieson Elementary", + "total_students": 519, + "address": "6350 TISDALL STREET", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z3N4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939105", + "name": "Dr George M Weir Elementary", + "total_students": 379, + "address": "2900 44TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R3A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939106", + "name": "John Henderson Elementary", + "total_students": 500, + "address": "451 53RD AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5X1J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939107", + "name": "Queen Victoria Annex", + "total_students": 114, + "address": "1850 3RD AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N1H2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939108", + "name": "Sir Richard McBride Annex", + "total_students": 81, + "address": "4750 ST. CATHERINES ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V4M7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939109", + "name": "Graham Bruce Community Elementary", + "total_students": 283, + "address": "3633 TANNER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R5P7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939112", + "name": "Tillicum Community Annex", + "total_students": 99, + "address": "2450 CAMBRIDGE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K1L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939113", + "name": "Kerrisdale Annex", + "total_students": 85, + "address": "3250 43RD AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6N4K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939114", + "name": "Lord Selkirk Annex", + "total_students": 102, + "address": "4444 DUMFRIES ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N3T2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939115", + "name": "Dr H N MacCorkindale Elementary", + "total_students": 294, + "address": "6100 BATTISON ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S3M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939119", + "name": "Tyee Elementary", + "total_students": 190, + "address": "3525 DUMPHRIES ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N3S5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939120", + "name": "Sir James Douglas Annex", + "total_students": 163, + "address": "7668 BORDEN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5P3E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939123", + "name": "University Hill Elementary", + "total_students": 370, + "address": "5395 CHANCELLOR BLVD", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6T1E2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939124", + "name": "Charles Dickens Annex", + "total_students": 64, + "address": "3877 GLEN DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5V4S9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939127", + "name": "Mount Pleasant Elementary", + "total_students": 242, + "address": "2300 GUELPH ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5T3P1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939128", + "name": "Champlain Heights Community Elementary", + "total_students": 308, + "address": "6955 FRONTENAC ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S3T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939129", + "name": "Lord Roberts Annex", + "total_students": 147, + "address": "1150 NELSON ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6E1J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939130", + "name": "Britannia Community Elementary", + "total_students": 244, + "address": "1110 COTTON DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5L3T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939132", + "name": "Ecole Jules Quesnel Elementary", + "total_students": 338, + "address": "3050 CROWN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6R4K9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939136", + "name": "False Creek Elementary", + "total_students": 309, + "address": "900 SCHOOL GREEN", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6H3N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939137", + "name": "Champlain Heights Annex", + "total_students": 93, + "address": "7835 CHAMPLAIN CRES", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S4J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939139", + "name": "Collingwood Neighbourhood School", + "total_students": 142, + "address": "3417 EUCLID AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R6H2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939140", + "name": "Elsie Roy Elementary", + "total_students": 420, + "address": "150 DRAKE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6Z2X1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939142", + "name": "Crosstown Elementary", + "total_students": 477, + "address": "55 EXPO BLVD", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6B0P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3939143", + "name": "Norma Rose Point Elementary Junior", + "total_students": 763, + "address": "5488 ORTONA AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6T1S2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3995051", + "name": "Transition Program for Gifted Students", + "total_students": 20, + "address": "240-1924 West Mall UBC", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6T1Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3998004", + "name": "Vancouver Learning Network", + "total_students": 509, + "address": "530 41ST AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W1P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3999214", + "name": "SD 39 DL Elementary", + "total_students": 84, + "address": "530 EAST 41ST AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W1P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "39", + "district_name": "Vancouver", + "school_number": "3999224", + "name": "Vancouver Alternate School", + "total_students": 341, + "address": "1580 BROADWAY W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J5K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040000", + "name": "New Westminster Continuing Education", + "total_students": 258, + "address": "820 6th St", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M3S9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040001", + "name": "Lord Kelvin Elementary", + "total_students": 635, + "address": "1010 HAMILTON ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M2M9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040002", + "name": "Herbert Spencer Elementary", + "total_students": 483, + "address": "605 SECOND ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L5R9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040003", + "name": "Skwo:wech", + "total_students": 436, + "address": "331 RICHMOND ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L4B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040004", + "name": "Lord Tweedsmuir Elementary", + "total_students": 456, + "address": "1714 EIGHTH AVE", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M2S7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040008", + "name": "New Westminster Secondary", + "total_students": 2411, + "address": "820 6TH ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M3S9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040009", + "name": "F W Howay Elementary", + "total_students": 126, + "address": "91 COURTNEY CRES", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L4M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040010", + "name": "Connaught Heights Elementary", + "total_students": 162, + "address": "2201 LONDON ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M3G1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040012", + "name": "Queen Elizabeth Elementary", + "total_students": 529, + "address": "921 SALTER ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M6G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040013", + "name": "Ecole Glenbrook Middle School", + "total_students": 664, + "address": "701 PARK CRES", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L5V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040014", + "name": "Queensborough Middle School", + "total_students": 391, + "address": "833 SALTER ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M6G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040015", + "name": "Ecole Qayqayt Elementary", + "total_students": 728, + "address": "85 MERIVALE ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L0G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4040016", + "name": "Fraser River Middle", + "total_students": 701, + "address": "800 Queens Ave", + "city": "New Westminster", + "province": "BC", + "postal_code": "V3M0J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4099110", + "name": "Royal City Alternate Program", + "total_students": 16, + "address": "850 QUEENS AVE", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M0A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4099124", + "name": "Sigma", + "total_students": 48, + "address": "835 EIGHTH ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M3S9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4099126", + "name": "Power Alternate Secondary School", + "total_students": 51, + "address": "200-1065 COLUMBIA ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M6H7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4099136", + "name": "Home Learners Program", + "total_students": 105, + "address": "521 FADER ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L3T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "40", + "district_name": "New Westminster", + "school_number": "4099185", + "name": "New Westminster Online Schools", + "total_students": 196, + "address": "200-1065 COLUMBIA ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M6H7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141000", + "name": "Burnaby Continuing Education", + "total_students": 334, + "address": "751 HAMMARSKJOLD DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B4A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141001", + "name": "Burnaby Central Secondary", + "total_students": 1467, + "address": "6011 DEER LAKE PARKWAY", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G0A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141002", + "name": "Burnaby North Secondary", + "total_students": 1813, + "address": "751 HAMMARSKJOLD DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B4A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141005", + "name": "Alpha Secondary", + "total_students": 1253, + "address": "930 ALPHA AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C3E2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141007", + "name": "Cariboo Hill Secondary", + "total_students": 910, + "address": "8580 16TH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N1S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141008", + "name": "Edmonds Community Elementary", + "total_students": 329, + "address": "7651 18TH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N1J1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141011", + "name": "Moscrop Secondary", + "total_students": 1579, + "address": "4433 MOSCROP ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G2G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141015", + "name": "Armstrong Elementary", + "total_students": 470, + "address": "8757 ARMSTRONG AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N2H8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141016", + "name": "Aubrey Elementary", + "total_students": 364, + "address": "1075 STRATFORD AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B3X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141017", + "name": "Brantford Elementary", + "total_students": 368, + "address": "6512 BRANTFORD AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5E2S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141018", + "name": "Brentwood Park Elementary", + "total_students": 627, + "address": "1455 DELTA AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B3G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141019", + "name": "Buckingham Elementary", + "total_students": 269, + "address": "6066 BUCKINGHAM AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5E2A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141020", + "name": "Cameron Elementary", + "total_students": 537, + "address": "9540 ERICKSON DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3J1M9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141021", + "name": "Capitol Hill Elementary", + "total_students": 360, + "address": "350S HOLDOM AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B3V1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141022", + "name": "Cascade Heights Elementary", + "total_students": 477, + "address": "4343 SMITH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G2V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141023", + "name": "Chaffey-Burke Elementary", + "total_students": 649, + "address": "4404 SARDIS ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5H1K7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141024", + "name": "Clinton Elementary", + "total_students": 395, + "address": "5858 CLINTON ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J2M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141025", + "name": "Confederation Park Elementary", + "total_students": 180, + "address": "4715 PANDORA ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C2C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141026", + "name": "Douglas Road Elementary", + "total_students": 263, + "address": "4861 CANADA WAY", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G1L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141029", + "name": "Gilmore Community Elementary", + "total_students": 482, + "address": "50 S GILMORE AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C4P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141030", + "name": "Gilpin Elementary", + "total_students": 225, + "address": "5490 EGLINTON ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G2B2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141031", + "name": "Glenwood Elementary", + "total_students": 115, + "address": "5787 MARINE DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J3H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141032", + "name": "Ecole Inman Elementary", + "total_students": 409, + "address": "3963 BRANDON ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G2P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141033", + "name": "Kitchener Elementary", + "total_students": 524, + "address": "1351 GILMORE AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C4S8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141034", + "name": "Lakeview Elementary", + "total_students": 280, + "address": "7777 MAYFIELD ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5E2J5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141035", + "name": "Lochdale Community Elementary", + "total_students": 291, + "address": "6990 Aubrey Street", + "city": "Burnaby", + "province": "BC", + "postal_code": "V5B2E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141036", + "name": "Lyndhurst Elementary", + "total_students": 91, + "address": "9847 LYNDHURST ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3J1E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141037", + "name": "Ecole Marlborough Elementary", + "total_students": 1061, + "address": "6060 MARLBOROUGH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5H3L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141038", + "name": "Maywood Community Elementary", + "total_students": 601, + "address": "4567 IMPERIAL ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J1B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141039", + "name": "Morley Elementary", + "total_students": 390, + "address": "7355 MORLEY ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5E2K1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141040", + "name": "Nelson Elementary", + "total_students": 388, + "address": "4850 IRMIN ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J1Y2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141041", + "name": "Parkcrest Elementary", + "total_students": 295, + "address": "6055 HALIFAX ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B2P4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141044", + "name": "Rosser Elementary", + "total_students": 153, + "address": "4375 PANDORA ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C2B6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141046", + "name": "Ecole Seaforth Elementary", + "total_students": 468, + "address": "7881 GOVERNMENT RD", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5A2C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141047", + "name": "Second Street Community Elementary", + "total_students": 380, + "address": "7502 2ND ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N3R5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141048", + "name": "Sperling Elementary", + "total_students": 503, + "address": "2200 SPERLING AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B4K7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141049", + "name": "Stride Avenue Community Elementary", + "total_students": 327, + "address": "7014 STRIDE AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N1T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141050", + "name": "Suncrest Elementary", + "total_students": 320, + "address": "3883 RUMBLE ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J1Z5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141052", + "name": "Twelfth Avenue Elementary", + "total_students": 298, + "address": "7622 12TH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N2K1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141053", + "name": "Westridge Elementary", + "total_students": 362, + "address": "510 DUNCAN AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B4L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141054", + "name": "Windsor Elementary", + "total_students": 292, + "address": "6166 IMPERIAL ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J1G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141056", + "name": "Montecito Elementary", + "total_students": 277, + "address": "2176 DUTHIE AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5A2S2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141057", + "name": "Stoney Creek Community Elementary", + "total_students": 334, + "address": "2740 BEAVERBROOK CRES", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3J7B6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141060", + "name": "Forest Grove Elementary", + "total_students": 343, + "address": "8525 FOREST GROVE DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5A4H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141061", + "name": "South Slope Elementary", + "total_students": 217, + "address": "4446 WATLING ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J5H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141062", + "name": "Burnaby South Secondary", + "total_students": 1702, + "address": "5455 RUMBLE ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J2B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141063", + "name": "Burnaby Mountain Secondary", + "total_students": 1540, + "address": "8800 EASTLAKE DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3J7X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141065", + "name": "Taylor Park Elementary", + "total_students": 681, + "address": "7590 MISSION AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N5C7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141066", + "name": "Royal Oak Secondary Program", + "total_students": 28, + "address": "5310 WOODSWORTH ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G1S4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141068", + "name": "Byrne Creek Community Secondary", + "total_students": 1113, + "address": "7777 18TH ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N5E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4141069", + "name": "University Highlands Elementary", + "total_students": 460, + "address": "9388 TOWER RD", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5A4X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4195036", + "name": "BC Provincial School for the Deaf Second", + "total_students": 52, + "address": "5455 RUMBLE ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J2B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4195066", + "name": "BC Provincial School For The Deaf Elemen", + "total_students": 10, + "address": "4446 WATLING ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J5H3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4199036", + "name": "Fraser Park Secondary School Program", + "total_students": 22, + "address": "7900 FRASER PARK DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J5H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4199038", + "name": "Maples School Program", + "total_students": 10, + "address": "2721 Lougheed Hwy", + "city": "Coquitlam", + "province": "BC", + "postal_code": "V3C4J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4199145", + "name": "Burnaby Online Program", + "total_students": 342, + "address": "8580 16TH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N1S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4199300", + "name": "Take a Hike Secondary Program", + "total_students": 14, + "address": "5310 WOODSWORTH ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G1S4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4199301", + "name": "Burnaby Youth HUB Secondary Program", + "total_students": 52, + "address": "4750 IMPERIAL ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5J1C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "41", + "district_name": "Burnaby", + "school_number": "4199302", + "name": "Outlook Secondary Program", + "total_students": 14, + "address": "204-3993 HENNING DR", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C6P7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242000", + "name": "Continuing ED SD 42", + "total_students": 274, + "address": "20575 THORNE AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X9A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242001", + "name": "Maple Ridge Secondary", + "total_students": 1264, + "address": "21911 122 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X3X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242002", + "name": "Garibaldi Secondary", + "total_students": 1073, + "address": "24789 DEWDNEY TRUNK RD", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V4R1X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242003", + "name": "Pitt Meadows Secondary", + "total_students": 1010, + "address": "19438 116B AVE", + "city": "PITT MEADOWS", + "province": "BC", + "postal_code": "V3Y1G1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242004", + "name": "Westview Secondary", + "total_students": 905, + "address": "20905 WICKLUND AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X8E8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242005", + "name": "Albion Elementary", + "total_students": 520, + "address": "10031 240TH ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2W1G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242008", + "name": "Eric Langton Elementary", + "total_students": 476, + "address": "12138 EDGE ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X6G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242009", + "name": "Fairview Elementary", + "total_students": 416, + "address": "12209 206 ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X1T8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242010", + "name": "Glenwood Elementary", + "total_students": 363, + "address": "21410 GLENWOOD AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X3P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242011", + "name": "Golden Ears Elementary", + "total_students": 635, + "address": "23124 118 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242014", + "name": "Maple Ridge Elementary", + "total_students": 452, + "address": "20820 RIVER RD", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X1Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242017", + "name": "Pitt Meadows Elementary", + "total_students": 544, + "address": "11941 HARRIS RD", + "city": "PITT MEADOWS", + "province": "BC", + "postal_code": "V3Y2B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242020", + "name": "Webster's Corners Elementary", + "total_students": 183, + "address": "25554 DEWDNEY TRUNK RD", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V4R1X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242026", + "name": "District 42 Alternative Secondary", + "total_students": 199, + "address": "23125 116 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X0G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242031", + "name": "Davie Jones Elementary", + "total_students": 355, + "address": "12030 BLAKELY RD", + "city": "PITT MEADOWS", + "province": "BC", + "postal_code": "V3Y1J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242032", + "name": "Laity View Elementary", + "total_students": 628, + "address": "21023 123 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X4B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242033", + "name": "Highland Park Elementary", + "total_students": 340, + "address": "18961 ADVENT RD", + "city": "PITT MEADOWS", + "province": "BC", + "postal_code": "V3Y2G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242035", + "name": "Alouette Elementary", + "total_students": 491, + "address": "22155 ISAAC CRES", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X0V9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242036", + "name": "Harry Hooge Elementary", + "total_students": 518, + "address": "12280 230 ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X0P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242037", + "name": "Kanaka Creek Elementary", + "total_students": 592, + "address": "11120 234A ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2W1C8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242038", + "name": "Thomas Haney Secondary", + "total_students": 1267, + "address": "23000 116 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X0T8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242039", + "name": "Edith McDermott Elementary", + "total_students": 425, + "address": "12178 BONSON RD", + "city": "PITT MEADOWS", + "province": "BC", + "postal_code": "V3Y2L5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242040", + "name": "Whonnock Elementary", + "total_students": 286, + "address": "27471 112 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2W1P9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242041", + "name": "Blue Mountain Elementary", + "total_students": 310, + "address": "12453 248 ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V4R1J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242042", + "name": "Alexander Robinson Elementary", + "total_students": 561, + "address": "11849 238B ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V4R2T8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242043", + "name": "Hammond Elementary", + "total_students": 455, + "address": "11520 203 ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X4T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242045", + "name": "Samuel Robertson Technical Secondary", + "total_students": 805, + "address": "10445 245 ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2W2G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242046", + "name": "Environmental School Project", + "total_students": 110, + "address": "23125", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X0G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242047", + "name": "Odyssey K-9 SD 42", + "total_students": 90, + "address": "12209", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X1T8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242048", + "name": "c'usqunela Elementary", + "total_students": 657, + "address": "24093 104 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2W1J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4242052", + "name": "Yennadon Elementary", + "total_students": 708, + "address": "23347 128 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X4R9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4299153", + "name": "Outreach Alternate Secondary", + "total_students": 95, + "address": "21911 122 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X3X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "42", + "district_name": "Maple Ridge-Pitt Meadows", + "school_number": "4299154", + "name": "SD 42 Connected Learning Community", + "total_students": 223, + "address": "20575 THORNE AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X9A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343000", + "name": "Continuing ED SD 43", + "total_students": 1464, + "address": "380 MONTGOMERY ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K5G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343002", + "name": "Anmore Elementary", + "total_students": 110, + "address": "30 ELEMENTARY RD", + "city": "ANMORE", + "province": "BC", + "postal_code": "V3H4Y6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343004", + "name": "Alderson Elementary", + "total_students": 183, + "address": "825 GAUTHIER AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K7C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343005", + "name": "Baker Drive Elementary", + "total_students": 225, + "address": "885 BAKER DR", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J6W9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343006", + "name": "Birchland Elementary", + "total_students": 158, + "address": "1331 FRASER AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B1M5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343009", + "name": "Bramblewood Elementary", + "total_students": 247, + "address": "2875 PANORAMA DR", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E2S7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343010", + "name": "Cape Horn Elementary", + "total_students": 229, + "address": "155 FINNIGAN ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K5J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343011", + "name": "Cedar Drive Elementary", + "total_students": 264, + "address": "3150 CEDAR DR", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B3C3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343012", + "name": "Central Elementary", + "total_students": 375, + "address": "2260 CENTRAL AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C1V8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343013", + "name": "Ecole Coquitlam River Elementary", + "total_students": 308, + "address": "4250 SHAUGHNESSY ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3E3E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343017", + "name": "Heritage Mountain Elementary", + "total_students": 283, + "address": "125 RAVINE DR", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H4Z1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343018", + "name": "Glen Elementary", + "total_students": 559, + "address": "3064 GLEN DR", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3B2P9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343019", + "name": "Ecole Glenayre Elementary", + "total_students": 362, + "address": "495 GLENCOE DR", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H1G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343020", + "name": "Eagle Ridge Elementary", + "total_students": 386, + "address": "1215 FALCON DR", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E1X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343021", + "name": "Harbour View Elementary", + "total_students": 280, + "address": "960 LILLIAN ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J5C7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343022", + "name": "Hazel Trembath Elementary", + "total_students": 181, + "address": "1278 CONFEDERATION DR", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C6L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343023", + "name": "R. C. MacDonald Elementary", + "total_students": 140, + "address": "2550 LEDUC AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K5W6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343024", + "name": "Hillcrest Middle School", + "total_students": 516, + "address": "2161 REGAN AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J3C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343027", + "name": "Ecole Irvine Elementary", + "total_students": 407, + "address": "3862 WELLINGTON ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B3Z4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343028", + "name": "Coast Salish Elementary", + "total_students": 281, + "address": "3538 SHEFFIELD AVENUE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E3H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343029", + "name": "James Park Elementary", + "total_students": 397, + "address": "1761 WESTMINSTER AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B1E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343030", + "name": "Inquiry Hub", + "total_students": 71, + "address": "1432 BRUNETTE AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K1G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343031", + "name": "Ecole Kilmer Elementary", + "total_students": 251, + "address": "1575 KNAPPEN ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C2P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343033", + "name": "Leigh Elementary", + "total_students": 468, + "address": "1230 SOBALL ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3B3H7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343034", + "name": "Lord Baden-Powell Elementary", + "total_students": 370, + "address": "450 JOYCE ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K4G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343036", + "name": "Ecole Mary Hill Elementary", + "total_students": 276, + "address": "1890 HUMBER CRES", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C2V7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343037", + "name": "Meadowbrook Elementary", + "total_students": 212, + "address": "900 SHARPE ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3C3M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343038", + "name": "Miller Park Community School", + "total_students": 264, + "address": "800 EGMONT AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J4J8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343043", + "name": "Moody Elementary", + "total_students": 316, + "address": "2717 ST JOHNS ST", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H2B8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343044", + "name": "Mountain View Elementary", + "total_students": 177, + "address": "740 SMITH AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J4E7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343045", + "name": "Mountain Meadows Elementary", + "total_students": 179, + "address": "999 NOONS CREEK DR", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H4N3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343046", + "name": "Mundy Road Elementary", + "total_students": 224, + "address": "2200 AUSTIN AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K3S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343047", + "name": "Ecole Nestor Elementary", + "total_students": 402, + "address": "1266 NESTOR ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E2A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343048", + "name": "Ecole Panorama Heights Elementary", + "total_students": 370, + "address": "1455 JOHNSON ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E2T1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343049", + "name": "Parkland Elementary", + "total_students": 254, + "address": "1563 REGAN AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J3B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343050", + "name": "Pinetree Way Elementary", + "total_students": 304, + "address": "1420 PINETREE WAY", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3C6A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343051", + "name": "Pleasantside Elementary", + "total_students": 151, + "address": "195 BARBER ST", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H3A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343053", + "name": "Ecole Porter Street Elementary", + "total_students": 326, + "address": "728 PORTER ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J5B4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343054", + "name": "Ranch Park Elementary", + "total_students": 180, + "address": "2701 SPURAWAY AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3C2C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343055", + "name": "Ecole Rochester Elementary", + "total_students": 377, + "address": "411 SCHOOLHOUSE ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K4Y7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343056", + "name": "Roy Stibbs Elementary", + "total_students": 263, + "address": "600 FAIRVIEW ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J4A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343057", + "name": "Riverview Park Elementary", + "total_students": 240, + "address": "700 CLEARWATER WAY", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3C6A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343058", + "name": "Seaview Community School", + "total_students": 181, + "address": "1215 CECILE DR", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H1N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343059", + "name": "Smiling Creek Elementary", + "total_students": 501, + "address": "3456 PRINCETON AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E3H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343060", + "name": "CABE Secondary", + "total_students": 116, + "address": "1411 FOSTER AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J2N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343069", + "name": "Walton Elementary", + "total_students": 520, + "address": "2960 WALTON AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3B6V6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343070", + "name": "Ecole Westwood Elementary", + "total_students": 327, + "address": "3610 HASTINGS ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B4N6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343071", + "name": "Aspenwood Elementary", + "total_students": 464, + "address": "2001 PANORAMA DR", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H5G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343072", + "name": "Castle Park Elementary", + "total_students": 333, + "address": "1144 CONFEDERATION DR", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C6P1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343073", + "name": "Hampton Park Elementary", + "total_students": 268, + "address": "1760 PADDOCK DR", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E3N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343074", + "name": "Blakeburn Elementary", + "total_students": 409, + "address": "1040 RIVERSIDE DR", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B8A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343076", + "name": "Centennial Secondary", + "total_students": 1550, + "address": "570 POIRIER ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J6A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343078", + "name": "Como Lake Middle School", + "total_students": 337, + "address": "1121 KING ALBERT AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J1X8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343080", + "name": "Ecole Dr. Charles Best Secondary", + "total_students": 1661, + "address": "2525 COMO LAKE AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J3R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343081", + "name": "Ecole Maillard Middle", + "total_students": 370, + "address": "1300 ROCHESTER AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K2X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343082", + "name": "Ecole Pitt River Middle", + "total_students": 440, + "address": "2070 TYNER ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C2Z1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343084", + "name": "Ecole Montgomery Middle", + "total_students": 468, + "address": "1900 EDGEWOOD AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K2Y1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343086", + "name": "Ecole Moody Middle", + "total_students": 390, + "address": "3115 ST. JOHNS ST", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H2C6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343088", + "name": "Port Moody Secondary", + "total_students": 1321, + "address": "300 ALBERT ST", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H2M5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343090", + "name": "Minnekhada Middle School", + "total_students": 800, + "address": "1390 LAURIER AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B2B8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343091", + "name": "Ecole Maple Creek Middle", + "total_students": 632, + "address": "3700 HASTINGS ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B5K7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343093", + "name": "Ecole Banting Middle", + "total_students": 560, + "address": "820 BANTING ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J4J4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343102", + "name": "Ecole Citadel Middle", + "total_students": 446, + "address": "1265 CITADEL DR", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C5X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343108", + "name": "Ecole Kwayhquitlum Middle", + "total_students": 684, + "address": "3280 FLINT ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B4J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343110", + "name": "Eagle Mountain Middle School", + "total_students": 549, + "address": "110 DOGWOOD DR", + "city": "ANMORE", + "province": "BC", + "postal_code": "V3H5G1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343113", + "name": "Scott Creek Middle School", + "total_students": 639, + "address": "1240 LANSDOWNE DR", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E3E7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343114", + "name": "Summit Middle School", + "total_students": 639, + "address": "1450 PARKWAY BLVD", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3E3L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343125", + "name": "Gleneagle Secondary", + "total_students": 1170, + "address": "1195 LANSDOWNE DR", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3B7Y8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343127", + "name": "Heritage Woods Secondary", + "total_students": 1475, + "address": "1300 DAVID AVE", + "city": "PORT MOODY", + "province": "BC", + "postal_code": "V3H5K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343130", + "name": "Pinetree Secondary", + "total_students": 1589, + "address": "3000 PINEWOOD AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3B7Y7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343132", + "name": "Ecole Riverside Secondary", + "total_students": 1390, + "address": "2215 REEVE ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3C6K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4343136", + "name": "Terry Fox Secondary", + "total_students": 1566, + "address": "1260 RIVERWOOD GATE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B7Z5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4399143", + "name": "Coquitlam Open Learning", + "total_students": 164, + "address": "1432 BRUNETTE AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K1G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4399179", + "name": "CLC", + "total_students": 69, + "address": "1600 KING ALBERT AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J1Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4399211", + "name": "APEX", + "total_students": 118, + "address": "1432 BRUNETTE AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K1G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4399220", + "name": "Encompass 10-12", + "total_students": 67, + "address": "1600 KING ALBERT AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J1Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "43", + "district_name": "Coquitlam", + "school_number": "4399226", + "name": "Suwa'lkh School", + "total_students": 13, + "address": "1432 BRUNETTE AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K1G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444000", + "name": "Continuing Ed SD 44", + "total_students": 10, + "address": "3365 MAHON AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N3T7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444001", + "name": "Lynn Valley Elementary", + "total_students": 375, + "address": "3207 INSTITUTE ROAD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7K3E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444003", + "name": "Ridgeway Elementary", + "total_students": 689, + "address": "420 8TH ST E", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7L1Z5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444005", + "name": "Queen Mary Community Elementary", + "total_students": 454, + "address": "230 KEITH RD W", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7M1L8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444008", + "name": "Capilano Elementary", + "total_students": 420, + "address": "1230 20TH ST W", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7P2B9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444009", + "name": "Westview Elementary", + "total_students": 324, + "address": "641 17TH ST W", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7M0A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444011", + "name": "Highlands Elementary", + "total_students": 461, + "address": "3150 COLWOOD DR", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7R2R6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444012", + "name": "Sutherland Secondary", + "total_students": 1022, + "address": "1860 SUTHERLAND AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7L4C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444013", + "name": "Norgate Community Elementary", + "total_students": 183, + "address": "1295 SOWDEN ST", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7P1L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444014", + "name": "Canyon Heights Elementary", + "total_students": 377, + "address": "4501 HIGHLAND BLVD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7R3A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444016", + "name": "Queensbury Elementary", + "total_students": 307, + "address": "2020 MOODY AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7L3V3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444017", + "name": "Eastview Elementary", + "total_students": 394, + "address": "1801 MOUNTAIN HWY", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7J2M7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444019", + "name": "Seymour Heights Elementary", + "total_students": 294, + "address": "2640 CARNATION ST", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7H1H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444021", + "name": "Upper Lynn Elementary", + "total_students": 477, + "address": "1540 COLEMAN ST", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7K1W8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444022", + "name": "Argyle Secondary", + "total_students": 1543, + "address": "1131 FREDERICK RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7K1J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444023", + "name": "Carisbrooke Elementary", + "total_students": 314, + "address": "510 CARISBROOKE RD E", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N1N5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444024", + "name": "Braemar Elementary", + "total_students": 438, + "address": "3600 MAHON AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N3T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444025", + "name": "Handsworth Secondary", + "total_students": 1520, + "address": "1033 HANDSWORTH RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7R2A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444026", + "name": "Windsor Secondary", + "total_students": 927, + "address": "931 BROADVIEW DR", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7H2E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444027", + "name": "Cleveland Elementary", + "total_students": 507, + "address": "1255 ELDON RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7R1T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444029", + "name": "Ross Road Elementary", + "total_students": 493, + "address": "2875 BUSHNELL PL", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7J2Y9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444031", + "name": "Montroyal Elementary", + "total_students": 279, + "address": "5310 SONORA DR", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7R3V8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444032", + "name": "Sherwood Park Elementary", + "total_students": 382, + "address": "4085 DOLLAR RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7G1A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444034", + "name": "Larson Elementary", + "total_students": 492, + "address": "2605 LARSON RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N3W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444036", + "name": "Carson Graham Secondary", + "total_students": 1411, + "address": "2145 JONES AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7M2W7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444037", + "name": "Brooksbank Elementary", + "total_students": 426, + "address": "980 13TH ST E", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7L2N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444041", + "name": "Blueridge Elementary", + "total_students": 280, + "address": "2650 BRONTE DR", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7H1M4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444043", + "name": "Boundary Elementary", + "total_students": 381, + "address": "750 26TH ST E", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7K1A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444046", + "name": "Lynnmour Elementary School", + "total_students": 266, + "address": "800 FORSMAN AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7J2G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444047", + "name": "Seycove Secondary Community", + "total_students": 587, + "address": "1204 CALEDONIA AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7G2A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444048", + "name": "Dorothy Lynas Elementary", + "total_students": 558, + "address": "4000 INLET CRES", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7G2R2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4444049", + "name": "Cove Cliff Elementary", + "total_students": 284, + "address": "1818 BANBURY RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7G1W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4499176", + "name": "North Vancouver Online Learning", + "total_students": 251, + "address": "3365 MAHON AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N3T7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "44", + "district_name": "North Vancouver", + "school_number": "4499191", + "name": "Mountainside Secondary", + "total_students": 10, + "address": "3365 MAHON AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N3T7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545010", + "name": "Sentinel Secondary", + "total_students": 1199, + "address": "1250 CHARTWELL DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7S2R2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545015", + "name": "West Vancouver Secondary", + "total_students": 1383, + "address": "1750 MATHERS AVE", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7V2G7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545019", + "name": "Bowen Island Community School", + "total_students": 251, + "address": "PO BOX 220", + "city": "BOWEN ISLAND", + "province": "BC", + "postal_code": "V0N1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545020", + "name": "Caulfeild Elementary", + "total_students": 387, + "address": "4685 KEITH RD", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7W2M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545025", + "name": "Ecole Cedardale", + "total_students": 314, + "address": "595 BURLEY DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7T1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545030", + "name": "Chartwell Elementary", + "total_students": 313, + "address": "1300 CHARTWELL DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7S2R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545035", + "name": "Cypress Park Primary", + "total_students": 73, + "address": "4355 MARINE DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7V1P2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545040", + "name": "Eagle Harbour Montessori", + "total_students": 71, + "address": "5575 MARINE DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7W2R4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545045", + "name": "Gleneagles Elementary", + "total_students": 250, + "address": "6350 MARINE DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7W2S5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545055", + "name": "Hollyburn Elementary", + "total_students": 280, + "address": "1329 DUCHESS AVE", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7T1H5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545060", + "name": "Irwin Park Elementary", + "total_students": 427, + "address": "2455 HAYWOOD AVE", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7V1Y2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545062", + "name": "Lions Bay Community School", + "total_students": 28, + "address": "PO BOX 220", + "city": "LIONS BAY", + "province": "BC", + "postal_code": "V0N2E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545065", + "name": "Ecole Pauline Johnson Elementary", + "total_students": 398, + "address": "1150 22ND ST", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7V4C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545070", + "name": "Ridgeview Elementary", + "total_students": 402, + "address": "1250 MATHERS AVE", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7T2G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545075", + "name": "West Bay Elementary", + "total_students": 395, + "address": "3175 THOMPSON PL", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7V3E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545080", + "name": "Westcot Elementary", + "total_students": 411, + "address": "760 WESTCOT RD", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7S1N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4545081", + "name": "Rockridge Secondary", + "total_students": 832, + "address": "5350 HEADLAND DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7W3H2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "45", + "district_name": "West Vancouver", + "school_number": "4599309", + "name": "West Vancouver Inglewood Secondary", + "total_students": 30, + "address": "1735 Inglewood Avenue", + "city": "West Vancouver", + "province": "BC", + "postal_code": "V7V1Y8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646000", + "name": "Continuing Ed SD 46", + "total_students": 32, + "address": "PO BOX 369", + "city": "GIBSONS", + "province": "BC", + "postal_code": "V0N1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646001", + "name": "Gibsons Elementary", + "total_students": 349, + "address": "PO BOX 548", + "city": "GIBSONS", + "province": "BC", + "postal_code": "V0N1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646007", + "name": "Madeira Park Elementary", + "total_students": 113, + "address": "GENERAL DELIVERY", + "city": "MADEIRA PARK", + "province": "BC", + "postal_code": "V0N2H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646008", + "name": "Elphinstone Secondary", + "total_students": 579, + "address": "PO BOX 770", + "city": "GIBSONS", + "province": "BC", + "postal_code": "V0N1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646009", + "name": "Roberts Creek Elementary", + "total_students": 305, + "address": "GENERAL DELIVERY", + "city": "ROBERTS CREEK", + "province": "BC", + "postal_code": "V0N2W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646011", + "name": "Davis Bay Elementary", + "total_students": 195, + "address": "PO BOX 512", + "city": "SECHELT", + "province": "BC", + "postal_code": "V0N3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646012", + "name": "Pender Harbour Elem-Secondary", + "total_students": 76, + "address": "13639 HIGHWAY 101", + "city": "MADEIRA PARK", + "province": "BC", + "postal_code": "V0N2H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646013", + "name": "Halfmoon Bay Elementary", + "total_students": 177, + "address": "8086 NORTHWOOD RD RR 1", + "city": "HALFMOON BAY", + "province": "BC", + "postal_code": "V7Z1A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646015", + "name": "Langdale Elementary", + "total_students": 121, + "address": "PO BOX 280", + "city": "GIBSONS", + "province": "BC", + "postal_code": "V0N1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646016", + "name": "West Sechelt Elementary", + "total_students": 277, + "address": "PO BOX 220", + "city": "SECHELT", + "province": "BC", + "postal_code": "V0N3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646017", + "name": "Chatelech Secondary", + "total_students": 623, + "address": "PO BOX 1430", + "city": "SECHELT", + "province": "BC", + "postal_code": "V0N3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646018", + "name": "Cedar Grove Elementary", + "total_students": 234, + "address": "PO BOX 1130", + "city": "GIBSONS", + "province": "BC", + "postal_code": "V0N1V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4646022", + "name": "Kinnikinnick Elementary", + "total_students": 240, + "address": "PO BOX 142", + "city": "SECHELT", + "province": "BC", + "postal_code": "V0N3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4699076", + "name": "Sunshine Coast Alternative School", + "total_students": 107, + "address": "PO BOX 369", + "city": "GIBSONS", + "province": "BC", + "postal_code": "V0N1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "46", + "district_name": "Sunshine Coast", + "school_number": "4699160", + "name": "Spider", + "total_students": 73, + "address": "PO BOX 369", + "city": "GIBSONS", + "province": "BC", + "postal_code": "V0N1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747000", + "name": "Continuing ED SD 47", + "total_students": 10, + "address": "5400 MARINE AVE", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A2L6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747001", + "name": "James Thomson Elementary", + "total_students": 263, + "address": "6388 SUTHERLAND AVE", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A4W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747004", + "name": "Westview Learning Centre", + "total_students": 10, + "address": "7105 NOOKTA ST", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A5E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747010", + "name": "Edgehill Elementary", + "total_students": 222, + "address": "7312 ABBOTSFORD ST", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A2G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747013", + "name": "Henderson Elementary", + "total_students": 117, + "address": "5506 WILLOW AVE", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A4P4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747014", + "name": "Texada Elementary", + "total_students": 35, + "address": "PO BOX 40", + "city": "VAN ANDA", + "province": "BC", + "postal_code": "V0N3K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747015", + "name": "Kelly Creek Community School", + "total_students": 176, + "address": "2341 ZILINSKY RD", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A0N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747021", + "name": "Brooks Secondary", + "total_students": 897, + "address": "5400 MARINE AVE", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A2L6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4747022", + "name": "Westview Elementary", + "total_students": 360, + "address": "3900 SELKIRK AVE", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A0T8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "47", + "district_name": "qathet", + "school_number": "4799161", + "name": "Partners in Education Program (PIE)", + "total_students": 1229, + "address": "7105 NOOTKA STREET", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A5E3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848004", + "name": "Howe Sound Secondary", + "total_students": 863, + "address": "PO BOX 99 STN MAIN", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848008", + "name": "Mamquam Elementary", + "total_students": 281, + "address": "PO BOX 160", + "city": "Squamish", + "province": "BC", + "postal_code": "V0N1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848011", + "name": "Ecole Squamish Elementary", + "total_students": 398, + "address": "PO BOX 1040", + "city": "Squamish", + "province": "BC", + "postal_code": "V8B0A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848014", + "name": "Blackwater Creek Elementary", + "total_students": 10, + "address": "BOX 1729", + "city": "DEVINE", + "province": "BC", + "postal_code": "V0N1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848018", + "name": "Garibaldi Highlands Elementary", + "total_students": 437, + "address": "PO BOX 280", + "city": "Squamish", + "province": "BC", + "postal_code": "V0N1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848019", + "name": "Valleycliffe Elementary", + "total_students": 261, + "address": "PO BOX 2240", + "city": "Squamish", + "province": "BC", + "postal_code": "V8B0W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848020", + "name": "Myrtle Philip Community School", + "total_students": 323, + "address": "6195 LORIMER RD", + "city": "WHISTLER", + "province": "BC", + "postal_code": "V8E0C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848021", + "name": "Pemberton Secondary", + "total_students": 365, + "address": "PO BOX 40", + "city": "Pemberton", + "province": "BC", + "postal_code": "V0N2L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848022", + "name": "Whistler Secondary", + "total_students": 485, + "address": "8000 ALPINE WAY", + "city": "WHISTLER", + "province": "BC", + "postal_code": "V0N1B8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848023", + "name": "Brackendale Elementary", + "total_students": 320, + "address": "PO BOX 280", + "city": "Squamish", + "province": "BC", + "postal_code": "V0N1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848024", + "name": "Signal Hill Elementary", + "total_students": 425, + "address": "1410 PORTAGE RD", + "city": "PEMBERTON", + "province": "BC", + "postal_code": "V0N2L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848025", + "name": "Spring Creek Community School", + "total_students": 273, + "address": "1509 SPRING CREEK DR", + "city": "WHISTLER", + "province": "BC", + "postal_code": "V8C0A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848026", + "name": "Don Ross Middle School", + "total_students": 757, + "address": "PO BOX 299", + "city": "Brackendale", + "province": "BC", + "postal_code": "V0N1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4848027", + "name": "St'a7mes School", + "total_students": 65, + "address": "PO BOX 640", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4899147", + "name": "Sea to Sky Online School", + "total_students": 67, + "address": "PO BOX 640", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "48", + "district_name": "Sea To Sky", + "school_number": "4899215", + "name": "Sea to Sky Alternative School", + "total_students": 31, + "address": "PO BOX 99", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "49", + "district_name": "Central Coast", + "school_number": "4949002", + "name": "Sir Alexander Mackenzie Secondary", + "total_students": 86, + "address": "PO BAG 800", + "city": "HAGENSBORG", + "province": "BC", + "postal_code": "V0T1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "49", + "district_name": "Central Coast", + "school_number": "4949004", + "name": "Bella Coola Elementary", + "total_students": 69, + "address": "PO BOX 7", + "city": "BELLA COOLA", + "province": "BC", + "postal_code": "V0T1C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "49", + "district_name": "Central Coast", + "school_number": "4949007", + "name": "Shearwater Elementary", + "total_students": 11, + "address": "808 MACKAY STREET", + "city": "BELLA COOLA", + "province": "BC", + "postal_code": "V0T1C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "49", + "district_name": "Central Coast", + "school_number": "4949008", + "name": "Nusatsum Elementary", + "total_students": 45, + "address": "PO BOX 18", + "city": "HAGENSBORG", + "province": "BC", + "postal_code": "V0T1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "50", + "district_name": "Haida Gwaii", + "school_number": "5050002", + "name": "Port Clements Elementary", + "total_students": 10, + "address": "PO BOX 288", + "city": "PORT CLEMENTS", + "province": "BC", + "postal_code": "V0T1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "50", + "district_name": "Haida Gwaii", + "school_number": "5050004", + "name": "Agnes L Mathers Elementary Secondary", + "total_students": 20, + "address": "PO BOX 227", + "city": "SANDSPIT", + "province": "BC", + "postal_code": "V0T1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "50", + "district_name": "Haida Gwaii", + "school_number": "5050011", + "name": "Sk'aadgaa Naay Elementary", + "total_students": 152, + "address": "PO BOX 1252", + "city": "QUEEN CHARLOTTE", + "province": "BC", + "postal_code": "V0T1S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "50", + "district_name": "Haida Gwaii", + "school_number": "5050012", + "name": "Gidgalang Kuuyas Naay", + "total_students": 124, + "address": "PO BOX 70", + "city": "DAAJING GIIDS", + "province": "BC", + "postal_code": "V0T1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "50", + "district_name": "Haida Gwaii", + "school_number": "5050013", + "name": "Daaxiigan Sk'adaa Nee", + "total_students": 191, + "address": "1647 Collison Avenue", + "city": "Masset", + "province": "BC", + "postal_code": "V0T1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "50", + "district_name": "Haida Gwaii", + "school_number": "5099107", + "name": "SD 50 Online Learning", + "total_students": 10, + "address": "PO BOX 70", + "city": "DAAJING GIIDS", + "province": "BC", + "postal_code": "V0T1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5112001", + "name": "Dr. D.A. Perley Elementary", + "total_students": 242, + "address": "PO BOX 908", + "city": "GRAND FORKS", + "province": "BC", + "postal_code": "V0H1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5112002", + "name": "Grand Forks Secondary", + "total_students": 420, + "address": "PO BOX 339", + "city": "GRAND FORKS", + "province": "BC", + "postal_code": "V0H1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5112004", + "name": "Christina Lake Elementary", + "total_students": 72, + "address": "PO BOX 240", + "city": "CHRISTINA LAKE", + "province": "BC", + "postal_code": "V0H1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5112005", + "name": "John A. Hutton Elementary", + "total_students": 211, + "address": "PO BOX 1390", + "city": "GRAND FORKS", + "province": "BC", + "postal_code": "V0H1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5113002", + "name": "Beaverdell Elementary", + "total_students": 16, + "address": "PO BOX 116", + "city": "BEAVERDELL", + "province": "BC", + "postal_code": "V0H1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5113007", + "name": "Greenwood Elementary", + "total_students": 71, + "address": "PO BOX 219", + "city": "GREENWOOD", + "province": "BC", + "postal_code": "V0H1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5113010", + "name": "Boundary Central Secondary", + "total_students": 103, + "address": "PO BOX 159", + "city": "MIDWAY", + "province": "BC", + "postal_code": "V0H1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5113012", + "name": "West Boundary Elementary", + "total_students": 96, + "address": "4035 Kettle Valley Road Southoad S", + "city": "ROCK CREEK", + "province": "BC", + "postal_code": "V0H1Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5151013", + "name": "Big White Community School", + "total_students": 28, + "address": "400 Happy Valley Road", + "city": "Big White Mountain", + "province": "BC", + "postal_code": "V1P1T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "51", + "district_name": "Boundary", + "school_number": "5199169", + "name": "Walker Development Centre", + "total_students": 30, + "address": "PO BOX 310", + "city": "GRAND FORKS", + "province": "BC", + "postal_code": "V0H1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252003", + "name": "Conrad Elementary", + "total_students": 186, + "address": "PO BOX 520", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252005", + "name": "Port Edward Elementary", + "total_students": 10, + "address": "PO BOX 520", + "city": "PORT EDWARD", + "province": "BC", + "postal_code": "V8J1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252006", + "name": "Roosevelt Park Elementary", + "total_students": 176, + "address": "PO BOX 520", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252014", + "name": "Pineridge Elementary", + "total_students": 139, + "address": "PO BOX 520", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252017", + "name": "Hartley Bay Elem-Jr Secondary", + "total_students": 10, + "address": "224 GALAGM LAXA AVE", + "city": "HARTLEY BAY", + "province": "BC", + "postal_code": "V0V1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252018", + "name": "Charles Hays Secondary", + "total_students": 648, + "address": "PO BOX 520", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252019", + "name": "Lax Kxeen Elementary", + "total_students": 208, + "address": "PO BOX 520 STN MAIN", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J3R7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5252020", + "name": "Prince Rupert Middle", + "total_students": 372, + "address": "PO BOX 520", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "52", + "district_name": "Prince Rupert", + "school_number": "5299087", + "name": "Pacific Coast School", + "total_students": 32, + "address": "PO BOX 520", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5314001", + "name": "Southern Okanagan Secondary", + "total_students": 507, + "address": "PO BOX 990", + "city": "OLIVER", + "province": "BC", + "postal_code": "V0H1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5314002", + "name": "Okanagan Falls Elementary", + "total_students": 99, + "address": "PO BOX 6", + "city": "OKANAGAN FALLS", + "province": "BC", + "postal_code": "V0H1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5314004", + "name": "Oliver Elementary", + "total_students": 325, + "address": "PO BOX 989", + "city": "OLIVER", + "province": "BC", + "postal_code": "V0H1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5314005", + "name": "Osoyoos Elementary", + "total_students": 378, + "address": "PO BOX 580", + "city": "OSOYOOS", + "province": "BC", + "postal_code": "V0H1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5314007", + "name": "Tuc-el-Nuit Elementary", + "total_students": 230, + "address": "6648 PARK DR", + "city": "OLIVER", + "province": "BC", + "postal_code": "V0H1T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5314008", + "name": "Osoyoos Secondary", + "total_students": 251, + "address": "5800 115TH ST", + "city": "OSOYOOS", + "province": "BC", + "postal_code": "V0H1V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5316003", + "name": "Cawston Primary School", + "total_students": 186, + "address": "517 SCHOOL RD", + "city": "CAWSTON", + "province": "BC", + "postal_code": "V0X1C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5316004", + "name": "Similkameen Elem-Secondary", + "total_students": 317, + "address": "830 2ND AVE", + "city": "KEREMEOS", + "province": "BC", + "postal_code": "V0X1N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5353000", + "name": "YouLearn.ca-CE", + "total_students": 18, + "address": "PO BOX 940", + "city": "OLIVER", + "province": "BC", + "postal_code": "V0H1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5399162", + "name": "YouLearn - OL", + "total_students": 62, + "address": "PO BOX 940", + "city": "OLIVER", + "province": "BC", + "postal_code": "V0H1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5399289", + "name": "Similkameen Secondary Alt", + "total_students": 10, + "address": "830 2ND AVE", + "city": "KEREMEOS", + "province": "BC", + "postal_code": "V0X1N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "53", + "district_name": "Okanagan Similkameen", + "school_number": "5399290", + "name": "Southern Okanagan Alt", + "total_students": 10, + "address": "PO BOX 990", + "city": "OLIVER", + "province": "BC", + "postal_code": "V0H1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5454004", + "name": "Silverthorne Elementary", + "total_students": 123, + "address": "PO BOX 430", + "city": "HOUSTON", + "province": "BC", + "postal_code": "V0J1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5454005", + "name": "Telkwa Elementary", + "total_students": 130, + "address": "PO BOX 68", + "city": "TELKWA", + "province": "BC", + "postal_code": "V0J2X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5454006", + "name": "Muheim Memorial Elementary", + "total_students": 308, + "address": "PO BOX 2260", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5454010", + "name": "Walnut Park Elementary", + "total_students": 289, + "address": "PO BOX 2692", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5454011", + "name": "Houston Secondary", + "total_students": 201, + "address": "PO BOX 1600", + "city": "HOUSTON", + "province": "BC", + "postal_code": "V0J1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5454012", + "name": "Twain Sullivan Elementary", + "total_students": 160, + "address": "PO BOX 1300", + "city": "HOUSTON", + "province": "BC", + "postal_code": "V0J1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5454013", + "name": "Smithers Secondary", + "total_students": 605, + "address": "PO BOX 849", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5499163", + "name": "Bulkley Valley Education Connection", + "total_students": 38, + "address": "C/O PO BOX 758", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "54", + "district_name": "Bulkley Valley", + "school_number": "5499182", + "name": "Bulkley Valley Learning Centre", + "total_students": 50, + "address": "PO BOX 849", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757000", + "name": "Continuing ED SD 57", + "total_students": 10, + "address": "3400 WESTWOOD DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N1S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757007", + "name": "Buckhorn Elementary", + "total_students": 118, + "address": "5190 BUCKHORN LAKE RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N6B4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757012", + "name": "Duchess Park Secondary", + "total_students": 859, + "address": "747 WINNIPEG ST", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2L2V3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757017", + "name": "Ron Brent Elementary", + "total_students": 264, + "address": "1401 17TH AVE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2L3Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757022", + "name": "Pineview Elementary", + "total_students": 139, + "address": "8515 OLD CARIBOO HWY", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N5X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757024", + "name": "Harwin Elementary", + "total_students": 297, + "address": "1193 HARPER ST", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M2X1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757033", + "name": "Giscome Elementary", + "total_students": 10, + "address": "PO BOX 40", + "city": "WILLOW RIVER", + "province": "BC", + "postal_code": "V0J3C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757036", + "name": "Prince George Secondary", + "total_students": 1398, + "address": "2901 GRIFFITHS AVE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M2S7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757038", + "name": "Hixon Elementary", + "total_students": 32, + "address": "PO BOX 70", + "city": "HIXON", + "province": "BC", + "postal_code": "V0K1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757040", + "name": "Peden Hill Elementary", + "total_students": 267, + "address": "3500 WESTWOOD DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N1S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757045", + "name": "Nukko Lake Elementary", + "total_students": 108, + "address": "23955 CHIEF LAKE RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K5L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757047", + "name": "Shas Ti Kelly Road Secondary", + "total_students": 843, + "address": "7405 KELLY RD S", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K2J8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757048", + "name": "Vanway Elementary", + "total_students": 306, + "address": "4509 HIGHWAY 16 W", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N5M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757051", + "name": "Quinson Elementary", + "total_students": 263, + "address": "251 OGILVIE ST S", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M3M4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757057", + "name": "Beaverly Elementary", + "total_students": 206, + "address": "9777 WESTERN RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N6M9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757059", + "name": "Spruceland Traditional", + "total_students": 267, + "address": "3805 RAINBOW DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M3W2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757063", + "name": "Van Bien Elementary", + "total_students": 137, + "address": "311 WILSON CRES", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2L4P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757064", + "name": "Blackburn Elementary", + "total_students": 232, + "address": "2222 SOUTH BLACKBURN RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N6C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757068", + "name": "Westwood Elementary", + "total_students": 212, + "address": "2633 VANIER DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N1V1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757074", + "name": "Valemount Secondary", + "total_students": 81, + "address": "PO BOX 370", + "city": "VALEMOUNT", + "province": "BC", + "postal_code": "V0E2Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757075", + "name": "McBride Secondary", + "total_students": 52, + "address": "PO BOX 200", + "city": "MCBRIDE", + "province": "BC", + "postal_code": "V0J2E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757076", + "name": "Polaris Montessori Elementary", + "total_students": 183, + "address": "7005 GLADSTONE DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N3N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757078", + "name": "College Heights Elementary", + "total_students": 342, + "address": "5410 COWART RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N1Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757082", + "name": "Glenview Elementary", + "total_students": 207, + "address": "7310 CLUFF RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K2M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757083", + "name": "Morfee Elementary", + "total_students": 289, + "address": "PO BOX 1150", + "city": "MACKENZIE", + "province": "BC", + "postal_code": "V0J2C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757087", + "name": "Hart Highlands Elementary", + "total_students": 348, + "address": "2233 SUSSEX LANE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K3J1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757088", + "name": "Foothills Elementary", + "total_students": 194, + "address": "4375 EAGLENEST CRES", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M4Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757089", + "name": "Springwood Elementary", + "total_students": 272, + "address": "4600 ZRAL RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K5X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757096", + "name": "Valemount Elementary", + "total_students": 132, + "address": "1445 7th Ave", + "city": "VALEMOUNT", + "province": "BC", + "postal_code": "V0E2Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757098", + "name": "Heritage Elementary", + "total_students": 431, + "address": "257 ANDERSON ST", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M6C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757100", + "name": "D. P. Todd Secondary", + "total_students": 811, + "address": "4444 HILL AVE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M5V9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757101", + "name": "College Heights Secondary", + "total_students": 999, + "address": "6180 DOMANO BLVD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N3Z4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757102", + "name": "Pinewood Elementary", + "total_students": 178, + "address": "4140 CAMPBELL AVE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N3A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757104", + "name": "Edgewood Elementary", + "total_students": 177, + "address": "4440 CRAIG DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K3P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757108", + "name": "Malaspina Elementary", + "total_students": 280, + "address": "7900 MALASPINA AVE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N4A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757110", + "name": "Southridge Elementary", + "total_students": 357, + "address": "7300 SOUTHRIDGE AVE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N4Y6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757112", + "name": "McBride Centennial Elementary", + "total_students": 80, + "address": "PO BOX 187", + "city": "MCBRIDE", + "province": "BC", + "postal_code": "V0J2E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757114", + "name": "Heather Park Elementary", + "total_students": 550, + "address": "7151 HEATHER PARK RD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K5Y3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757115", + "name": "Ecole Lac des Bois", + "total_students": 375, + "address": "4131 RAINBOW DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M3W3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757116", + "name": "Nusdeh Yoh", + "total_students": 161, + "address": "2579 VICTORIA ST", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2L2M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5757118", + "name": "Mackenzie Secondary", + "total_students": 262, + "address": "PO BOX 578", + "city": "MACKENZIE", + "province": "BC", + "postal_code": "V0J2C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5798005", + "name": "Central Interior Distance Education", + "total_students": 501, + "address": "3400 WESTWOOD DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N1S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "57", + "district_name": "Prince George", + "school_number": "5799140", + "name": "Alternate Community Programs", + "total_students": 10, + "address": "3400 WESTWOOD DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N1S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5817005", + "name": "Vermilion Forks Elementary", + "total_students": 137, + "address": "PO BOX 970", + "city": "PRINCETON", + "province": "BC", + "postal_code": "V0X1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5817006", + "name": "John Allison Elementary", + "total_students": 135, + "address": "PO BOX 40", + "city": "PRINCETON", + "province": "BC", + "postal_code": "V0X1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5817008", + "name": "Princeton Secondary", + "total_students": 189, + "address": "PO BOX 500", + "city": "PRINCETON", + "province": "BC", + "postal_code": "V0X1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5831001", + "name": "Merritt Central Elementary", + "total_students": 220, + "address": "PO BOX 4100", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1B8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5831005", + "name": "Merritt Secondary", + "total_students": 605, + "address": "PO BOX 5100", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1B8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5831006", + "name": "Diamond Vale Elementary", + "total_students": 128, + "address": "2675 COLDWATER AVE", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1B2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5831007", + "name": "Nicola Canford Elementary", + "total_students": 137, + "address": "2311 POSTELL ST", + "city": "LOWER NICOLA", + "province": "BC", + "postal_code": "V0K1Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5831009", + "name": "Collettville Elementary", + "total_students": 114, + "address": "615 LINDLEY CREEK RD", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1L4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5831010", + "name": "Merritt Bench Elementary", + "total_students": 153, + "address": "3341 GRIMMET ST", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5831011", + "name": "Kengard Alternate School", + "total_students": 24, + "address": "2975 Clapperton Avenue", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5898002", + "name": "South Central Interior Distance ED", + "total_students": 603, + "address": "2975 Clapperton Avenue", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "58", + "district_name": "Nicola-Similkameen", + "school_number": "5899192", + "name": "Princeton Alternate School", + "total_students": 13, + "address": "PO BOX 2410", + "city": "PRINCETON", + "province": "BC", + "postal_code": "V0X1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959001", + "name": "Canalta Elementary", + "total_students": 254, + "address": "1901 110 AVE", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G2W6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959003", + "name": "Crescent Park Elementary", + "total_students": 256, + "address": "9300 17 ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G4A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959005", + "name": "Ecole Frank Ross Elementary", + "total_students": 443, + "address": "1000 92 AVE", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G1C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959008", + "name": "Dawson Creek Secondary", + "total_students": 1051, + "address": "10808 15 St", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G3Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959009", + "name": "Tremblay Elementary", + "total_students": 183, + "address": "11311 13A ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G3X8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959010", + "name": "Pouce Coupe Elementary", + "total_students": 117, + "address": "PO BOX 7", + "city": "POUCE COUPE", + "province": "BC", + "postal_code": "V0C2C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959011", + "name": "Chetwynd Secondary", + "total_students": 268, + "address": "5000-46 STREET", + "city": "CHETWYND", + "province": "BC", + "postal_code": "V0C1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959012", + "name": "Windrem Elementary", + "total_students": 47, + "address": "PO BOX 210", + "city": "CHETWYND", + "province": "BC", + "postal_code": "V0C1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959013", + "name": "Don Titus Montessori", + "total_students": 141, + "address": "PO BOX 538", + "city": "CHETWYND", + "province": "BC", + "postal_code": "V0C1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959014", + "name": "Devereaux Elementary", + "total_students": 73, + "address": "11600 7TH ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G4R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959018", + "name": "Moberly Lake Elementary", + "total_students": 42, + "address": "6531 LAKESHORE DRIVE", + "city": "MOBERLY LAKE", + "province": "BC", + "postal_code": "V0C1X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959024", + "name": "Parkland Elementary", + "total_students": 64, + "address": "11600 7 ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G4R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959025", + "name": "South Peace Elementary", + "total_students": 39, + "address": "11600 7TH ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G4R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959027", + "name": "Tumbler Ridge Secondary", + "total_students": 175, + "address": "180 SOUTHGATE", + "city": "TUMBLER RIDGE", + "province": "BC", + "postal_code": "V0C2W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959029", + "name": "Tumbler Ridge Elementary", + "total_students": 211, + "address": "PO BOX 700", + "city": "TUMBLER RIDGE", + "province": "BC", + "postal_code": "V0C2W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959031", + "name": "Little Prairie Elementary", + "total_students": 181, + "address": "PO BOX 1600", + "city": "CHETWYND", + "province": "BC", + "postal_code": "V0C1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959032", + "name": "Peace View School", + "total_students": 34, + "address": "11600 7TH ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G4R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5959033", + "name": "McLeod Elementary Secondary", + "total_students": 82, + "address": "PO BOX 157", + "city": "GROUNDBIRCH", + "province": "BC", + "postal_code": "V0C1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "59", + "district_name": "Peace River South", + "school_number": "5999102", + "name": "South Peace Distributed Learning", + "total_students": 56, + "address": "10808 15 ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G3Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060006", + "name": "Charlie Lake Elementary", + "total_students": 324, + "address": "12655 Charlie Lake Frontage Rd", + "city": "CHARLIE LAKE", + "province": "BC", + "postal_code": "V0C1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060007", + "name": "Ecole Central Elem School Of The Arts", + "total_students": 230, + "address": "10215 99 AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J1V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060015", + "name": "North Peace Secondary", + "total_students": 1155, + "address": "9304 86 ST", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J6L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060021", + "name": "Taylor Elementary", + "total_students": 98, + "address": "PO BOX 210", + "city": "TAYLOR", + "province": "BC", + "postal_code": "V0C2K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060025", + "name": "Alwin Holland Elementary", + "total_students": 236, + "address": "10615 96 ST", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J3R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060026", + "name": "Robert Ogilvie Elementary", + "total_students": 240, + "address": "9907 86 ST", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J4M7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060030", + "name": "Wonowon School", + "total_students": 81, + "address": "PO BOX 119", + "city": "WONOWON", + "province": "BC", + "postal_code": "V0C2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060032", + "name": "Bert Ambrose", + "total_students": 211, + "address": "9616 115 AVE", + "city": "FORT ST. JOHN", + "province": "BC", + "postal_code": "V1J2Y1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060039", + "name": "Prespatou Elem-Secondary", + "total_students": 286, + "address": "PO BOX 240", + "city": "PRESPATOU", + "province": "BC", + "postal_code": "V0C2S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060040", + "name": "Buick Creek Elementary", + "total_students": 27, + "address": "PO BOX 3060", + "city": "BUICK", + "province": "BC", + "postal_code": "V0C2R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060045", + "name": "Clearview Elem-Jr Secondary", + "total_students": 102, + "address": "10716 97 AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J6L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060047", + "name": "C.M. Finch Elementary", + "total_students": 271, + "address": "10904 106 ST", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J4G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060051", + "name": "Upper Pine Elem-Jr Secondary", + "total_students": 176, + "address": "10716 97 AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J6L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060056", + "name": "Baldonnel Elementary", + "total_students": 106, + "address": "PO BOX 196", + "city": "BALDONNEL", + "province": "BC", + "postal_code": "V0C1C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060058", + "name": "Duncan Cran Elementary", + "total_students": 328, + "address": "8130 89 AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J5S5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060060", + "name": "Hudson's Hope School", + "total_students": 145, + "address": "PO BOX 390", + "city": "HUDSONS HOPE", + "province": "BC", + "postal_code": "V0C1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060061", + "name": "Upper Halfway Elementary Jr Secondary", + "total_students": 30, + "address": "10716 97 AVE", + "city": "FORT ST. JOHN", + "province": "BC", + "postal_code": "V1J6L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060062", + "name": "Bert Bowes Middle School", + "total_students": 488, + "address": "9816 106 ST", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J4E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060063", + "name": "Dr Kearney Middle School", + "total_students": 607, + "address": "10723 92 ST", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J3J4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060064", + "name": "Energetic Learning Campus", + "total_students": 194, + "address": "9708 93 AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J6J8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060065", + "name": "Margaret Ma Murray Community School", + "total_students": 335, + "address": "11504 105TH AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J0R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6060066", + "name": "Anne Roberts Young Elementary", + "total_students": 344, + "address": "10112 105 AVE", + "city": "FORT ST. JOHN", + "province": "BC", + "postal_code": "V1J4S4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "60", + "district_name": "Peace River North", + "school_number": "6098006", + "name": "The Key Learning Centre DL", + "total_students": 438, + "address": "10511 99 AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J1V6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161000", + "name": "SJ Burnside Continuing Education", + "total_students": 148, + "address": "498 CECELIA RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T4T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161001", + "name": "Gordon Head Middle School", + "total_students": 376, + "address": "1671 KENMORE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N4M8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161002", + "name": "South Park Family School", + "total_students": 173, + "address": "508 DOUGLAS ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8V2P7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161004", + "name": "Victoria West Elementary", + "total_students": 343, + "address": "750 FRONT ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9A3Y4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161005", + "name": "George Jay Elementary", + "total_students": 433, + "address": "1118 PRINCESS AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T1L3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161006", + "name": "Victor School", + "total_students": 15, + "address": "2260 VICTOR ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R4C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161007", + "name": "Sir James Douglas Elementary", + "total_students": 388, + "address": "401 MOSS ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8V4N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161008", + "name": "Sundance-Bank Elementary", + "total_students": 86, + "address": "1623 BANK ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R4V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161010", + "name": "Craigflower Elementary", + "total_students": 180, + "address": "2766 ADMIRALS RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9A2R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161012", + "name": "Margaret Jenkins Elementary", + "total_students": 461, + "address": "1824 FAIRFIELD RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8S1G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161013", + "name": "Oaklands Elementary", + "total_students": 448, + "address": "2827 BELMONT AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R4B2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161016", + "name": "Ecole Quadra Elementary", + "total_students": 466, + "address": "3031 QUADRA ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T4G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161018", + "name": "Victoria High", + "total_students": 1040, + "address": "1260 GRANT ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T1C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161019", + "name": "Cloverdale Traditional Elementary", + "total_students": 345, + "address": "3427 QUADRA ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8X1G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161020", + "name": "Tillicum Community School", + "total_students": 458, + "address": "3155 ALBINA ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9A1Z6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161021", + "name": "Ecole Willows Elementary", + "total_students": 517, + "address": "2290 MUSGRAVE ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R5Y2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161024", + "name": "Oak Bay Secondary", + "total_students": 1308, + "address": "2121 CADBORO BAY RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R5G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161025", + "name": "Cedar Hill Middle", + "total_students": 560, + "address": "3910 CEDAR HILL RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P3Z9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161027", + "name": "McKenzie Elementary", + "total_students": 258, + "address": "4005 RAYMOND ST N", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z4K9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161028", + "name": "Doncaster Elementary", + "total_students": 433, + "address": "1525 ROWAN ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P1X4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161029", + "name": "View Royal Elementary", + "total_students": 287, + "address": "218 HELMCKEN RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B1S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161030", + "name": "Frank Hobbs Elementary", + "total_students": 253, + "address": "3875 HARO RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N4A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161032", + "name": "Strawberry Vale Elementary", + "total_students": 272, + "address": "4109 ROSEDALE AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z5J5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161033", + "name": "James Bay Community", + "total_students": 181, + "address": "140 OSWEGO ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8V2B1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161035", + "name": "Central Middle School", + "total_students": 541, + "address": "1280 FORT ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8V3L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161036", + "name": "Lansdowne Middle School", + "total_students": 767, + "address": "1765 LANSDOWNE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P1A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161038", + "name": "Glanford Middle School", + "total_students": 360, + "address": "4140 GLANFORD AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z4A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161040", + "name": "Ecole Macaulay Elementary", + "total_students": 492, + "address": "1010 WYCHBURY AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9A5K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161042", + "name": "Lake Hill Elementary", + "total_students": 223, + "address": "1031 LUCAS AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8X5L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161046", + "name": "Ecole Marigold School", + "total_students": 301, + "address": "3751 GRANGE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z4T2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161047", + "name": "Campus View Elementary", + "total_students": 459, + "address": "3900 GORDON HEAD RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P4X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161048", + "name": "Esquimalt High School", + "total_students": 939, + "address": "847 COLVILLE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9A4N9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161049", + "name": "Mount Douglas Secondary", + "total_students": 903, + "address": "3970 GORDON HEAD RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N3X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161051", + "name": "Braefoot Elementary", + "total_students": 239, + "address": "1440 HARROP ROAD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P2S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161052", + "name": "Hillcrest Elementary", + "total_students": 282, + "address": "4421 GREENTREE TERR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N3S9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161054", + "name": "Northridge Elementary", + "total_students": 264, + "address": "4190 CAREY RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z4G8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161056", + "name": "Rockheights Middle School", + "total_students": 313, + "address": "1250 HIGHROCK AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9A4V7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161057", + "name": "Reynolds Secondary", + "total_students": 961, + "address": "3963 BORDEN ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P3H9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161058", + "name": "Shoreline Community Middle School", + "total_students": 401, + "address": "2750 SHORELINE DR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B1M6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161062", + "name": "Arbutus Global Middle School", + "total_students": 443, + "address": "2306 EDGELOW ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N1R5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161063", + "name": "Spectrum Community", + "total_students": 1182, + "address": "957 BURNSIDE RD W", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z6E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161064", + "name": "Lambrick Park Secondary", + "total_students": 613, + "address": "4139 TORQUAY DR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N3L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161065", + "name": "Torquay Elementary", + "total_students": 314, + "address": "4413 TORQUAY DR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N3L3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161066", + "name": "Rogers Elementary", + "total_students": 259, + "address": "765 ROGERS AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8X5K6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161067", + "name": "Eagle View Elementary", + "total_students": 287, + "address": "97 TALCOTT RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B6L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161068", + "name": "Colquitz Middle School", + "total_students": 522, + "address": "505 DUMERESQ ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z1X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6161069", + "name": "Monterey Middle School", + "total_students": 409, + "address": "851 MONTEREY AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8S4V1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6199033", + "name": "SJ Burnside Education Centre", + "total_students": 174, + "address": "498 CECELIA RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T4T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "61", + "district_name": "Greater Victoria", + "school_number": "6199146", + "name": "The Link", + "total_students": 31, + "address": "498 CECELIA RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T4T5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262000", + "name": "SD62 Continuing Education", + "total_students": 114, + "address": "3143 Jacklin Rd", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B5R1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262002", + "name": "Happy Valley Elementary", + "total_students": 439, + "address": "3291 HAPPY VALLEY RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C2W3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262004", + "name": "Sooke Elementary", + "total_students": 320, + "address": "PO BOX 70", + "city": "SOOKE", + "province": "BC", + "postal_code": "V9Z0E4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262005", + "name": "Port Renfrew Elementary", + "total_students": 10, + "address": "6633 DEERING RD", + "city": "PORT RENFREW", + "province": "BC", + "postal_code": "V0S1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262007", + "name": "Ruth King Elementary", + "total_students": 452, + "address": "2764 JACKLIN RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B3X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262010", + "name": "Sangster Elementary", + "total_students": 306, + "address": "3325 METCHOSIN RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C2A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262011", + "name": "Millstream Elementary", + "total_students": 335, + "address": "626 HOYLAKE AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B3P7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262012", + "name": "Saseenos Elementary", + "total_students": 189, + "address": "PO BOX 820 STN MAIN", + "city": "SOOKE", + "province": "BC", + "postal_code": "V9Z1H8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262013", + "name": "Belmont Secondary", + "total_students": 1686, + "address": "3041 LANGFORD LAKE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B0L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262015", + "name": "Savory Elementary", + "total_students": 232, + "address": "2721 GRAINGER RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B3K7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262016", + "name": "Dunsmuir Middle School", + "total_students": 723, + "address": "3341 PAINTER RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C2J1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262018", + "name": "Hans Helgesen Elementary", + "total_students": 202, + "address": "4983 ROCKY POINT RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C4G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262020", + "name": "John Muir Elementary", + "total_students": 222, + "address": "PO BOX 790", + "city": "SOOKE", + "province": "BC", + "postal_code": "V9Z1H7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262021", + "name": "David Cameron Elementary", + "total_students": 427, + "address": "675 MEAFORD AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B5Y1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262022", + "name": "Wishart Elementary", + "total_students": 468, + "address": "3310 WISHART RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C1R1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262023", + "name": "John Stubbs Middle", + "total_students": 337, + "address": "301 ZEALOUS CRES", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C1H6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262025", + "name": "Spencer Middle School", + "total_students": 629, + "address": "1026 GOLDSTREAM AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B2Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262026", + "name": "Willway Elementary", + "total_students": 221, + "address": "2939 MT. WELLS DR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B4T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262031", + "name": "Journey Middle School", + "total_students": 577, + "address": "PO BOX 100", + "city": "SOOKE", + "province": "BC", + "postal_code": "V9Z0E5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262032", + "name": "Lakewood Elementary", + "total_students": 458, + "address": "2363 SETCHFIELD AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B5W1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262033", + "name": "Edward Milne Community School", + "total_students": 744, + "address": "PO BOX 1010", + "city": "SOOKE", + "province": "BC", + "postal_code": "V9Z1J1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262034", + "name": "Ecole Poirier Elementary", + "total_students": 399, + "address": "PO BOX 940", + "city": "SOOKE", + "province": "BC", + "postal_code": "V9Z1H9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262035", + "name": "Colwood Elementary", + "total_students": 196, + "address": "3000 WISHART RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C1P4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262036", + "name": "Crystal View Elementary", + "total_students": 261, + "address": "2662 SILVERSTONE WAY", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B6A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262037", + "name": "John Stubbs Elementary", + "total_students": 471, + "address": "301 ZEALOUS CRES", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C1H6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262038", + "name": "Royal Bay Secondary", + "total_students": 1716, + "address": "3500 RYDER HESJEDAL WAY", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C0J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262039", + "name": "PEXSISEN Elementary School", + "total_students": 476, + "address": "3100 CONSTELLATION AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B0V2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262040", + "name": "Centre Mountain Lellum Middle School", + "total_students": 711, + "address": "3090 CONSTELLATION AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B0V2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6262041", + "name": "Qelensen A Len Secondary School", + "total_students": 10, + "address": "1089 LANGFORD PARKWAY", + "city": "LANGFORD", + "province": "BC", + "postal_code": "V9B0A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6299043", + "name": "Westshore Secondary School", + "total_students": 234, + "address": "2139 SOOKE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B1W4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "62", + "district_name": "Sooke", + "school_number": "6299164", + "name": "SD62 Online School", + "total_students": 38, + "address": "3143 Jacklin Rd", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B5R1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363000", + "name": "Continuing Ed SD 63", + "total_students": 23, + "address": "104A-4420 CHATTERTON WAY", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8X5J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363002", + "name": "Brentwood Elementary", + "total_students": 335, + "address": "7085 WALLACE DRIVE", + "city": "BRENTWOOD BAY", + "province": "BC", + "postal_code": "V8M1P9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363003", + "name": "Cordova Bay Elementary", + "total_students": 311, + "address": "5238 CORDOVA BAY RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Y2L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363004", + "name": "Deep Cove Elementary", + "total_students": 352, + "address": "10975 WEST SAANICH RD", + "city": "NORTH SAANICH", + "province": "BC", + "postal_code": "V8L5P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363007", + "name": "Keating Elementary", + "total_students": 471, + "address": "6843 CENTRAL SAANICH RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z5V4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363008", + "name": "Lochside Elementary", + "total_students": 439, + "address": "1145 ROYAL OAK DR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8X3T7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363010", + "name": "Prospect Lake Elementary", + "total_students": 242, + "address": "321 PROSPECT LAKE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9E1J7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363011", + "name": "Kelset Elementary", + "total_students": 367, + "address": "1800 FOREST PARK DR", + "city": "NORTH SAANICH", + "province": "BC", + "postal_code": "V8L4B8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363014", + "name": "Sidney Elementary", + "total_students": 397, + "address": "2281 HENRY AVE", + "city": "SIDNEY", + "province": "BC", + "postal_code": "V8L2A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363020", + "name": "Stelly's Secondary", + "total_students": 827, + "address": "1627 STELLYS CROSS RD", + "city": "SAANICHTON", + "province": "BC", + "postal_code": "V8M1S8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363021", + "name": "Claremont Secondary", + "total_students": 1096, + "address": "4980 WESLEY RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Y1Y9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363022", + "name": "Parkland Secondary", + "total_students": 532, + "address": "10640 MCDONALD PARK RD", + "city": "NORTH SAANICH", + "province": "BC", + "postal_code": "V8L5S7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363026", + "name": "North Saanich Middle School", + "total_students": 384, + "address": "10400 MCDONALD PARK RD", + "city": "NORTH SAANICH", + "province": "BC", + "postal_code": "V8L0A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363027", + "name": "Royal Oak Middle School", + "total_students": 624, + "address": "751 TRAVINO LANE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z0C6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6363028", + "name": "Bayside Middle School", + "total_students": 593, + "address": "1101 NEWTON PL", + "city": "BRENTWOOD BAY", + "province": "BC", + "postal_code": "V8M1G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6398007", + "name": "South Island Distance Education School", + "total_students": 2270, + "address": "4575 WILKINSON RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z7E8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "63", + "district_name": "Saanich", + "school_number": "6399075", + "name": "SD 63 Individual Learning Centre", + "total_students": 193, + "address": "1649 MOUNT NEWTON CROSS RD", + "city": "SAANICHTON", + "province": "BC", + "postal_code": "V8M1L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464002", + "name": "Salt Spring Elementary", + "total_students": 248, + "address": "112 RAINBOW RD", + "city": "SALT SPRING ISLAND", + "province": "BC", + "postal_code": "V8K2K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464003", + "name": "Mayne Island School", + "total_students": 42, + "address": "535 FERNHILL ROAD", + "city": "MAYNE ISLAND", + "province": "BC", + "postal_code": "V0N2J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464004", + "name": "Saturna Island Elementary Secondary", + "total_students": 23, + "address": "PO BOX 70", + "city": "SATURNA", + "province": "BC", + "postal_code": "V0N2Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464005", + "name": "Galiano Community School", + "total_students": 55, + "address": "1290 Sturdies Bay rd", + "city": "Galiano Island", + "province": "BC", + "postal_code": "V0N1P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464007", + "name": "Fernwood Elementary", + "total_students": 215, + "address": "112 RAINBOW RD", + "city": "SALT SPRING ISLAND", + "province": "BC", + "postal_code": "V8K2K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464008", + "name": "Pender Islands Elem-Secondary", + "total_students": 110, + "address": "5714 Canal Road", + "city": "Pender Island", + "province": "BC", + "postal_code": "V0N2M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464009", + "name": "Fulford Community Elementary", + "total_students": 128, + "address": "112 RAINBOW RD", + "city": "SALT SPRING ISLAND", + "province": "BC", + "postal_code": "V8K1Y9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6464010", + "name": "Gulf Islands Secondary", + "total_students": 631, + "address": "112 RAINBOW RD", + "city": "SALT SPRING ISLAND", + "province": "BC", + "postal_code": "V8K2K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6499172", + "name": "64GO", + "total_students": 42, + "address": "112 RAINBOW RD", + "city": "SALT SPRING ISLAND", + "province": "BC", + "postal_code": "V8K2K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "64", + "district_name": "Gulf Islands", + "school_number": "6499315", + "name": "Phoenix Place", + "total_students": 13, + "address": "232 RAINBOW RD", + "city": "SALT SPRING ISLAND", + "province": "BC", + "postal_code": "V8K2A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715002", + "name": "Penticton Secondary", + "total_students": 1416, + "address": "158 ECKHARDT AVE E", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715003", + "name": "Naramata Elementary", + "total_students": 72, + "address": "GENERAL DELIVERY", + "city": "NARAMATA", + "province": "BC", + "postal_code": "V0H1N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715004", + "name": "Kaleden Elementary", + "total_students": 55, + "address": "152 LINDEN AVENUE", + "city": "KALEDEN", + "province": "BC", + "postal_code": "V0H1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715005", + "name": "Carmi Elementary", + "total_students": 163, + "address": "400 CARMI AVE", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A3G5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715006", + "name": "Queens Park Elementary", + "total_students": 266, + "address": "330 POWER ST", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A5X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715007", + "name": "West Bench Elementary", + "total_students": 107, + "address": "1604 WEST BENCH DR", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A8Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715008", + "name": "Princess Margaret Secondary", + "total_students": 658, + "address": "120 GREEN AVE W", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A3T1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715011", + "name": "Uplands Elementary", + "total_students": 256, + "address": "145 MIDDLE BENCH RD S", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A8S7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715014", + "name": "Columbia Elementary", + "total_students": 293, + "address": "1437 ALLISON ST", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A3X5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715016", + "name": "Connected - Distributed Learning", + "total_students": 35, + "address": "324 ECKHARDT AVE E", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A1Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715017", + "name": "Parkway Elementary", + "total_students": 239, + "address": "225 KINNEY AVE", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A3P2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6715018", + "name": "Wiltse Elementary", + "total_students": 347, + "address": "640 WILTSE BLVD", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A8J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6767019", + "name": "KVR Middle School", + "total_students": 376, + "address": "300 JERMYN AVE", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A2E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6767020", + "name": "Skaha Lake Middle School", + "total_students": 266, + "address": "110 GREEN AVE W", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A3T1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6767021", + "name": "Summerland Middle School", + "total_students": 188, + "address": "DRAWER 3000", + "city": "SUMMERLAND", + "province": "BC", + "postal_code": "V0H1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6777002", + "name": "Summerland Secondary", + "total_students": 524, + "address": "PO BOX 2501", + "city": "SUMMERLAND", + "province": "BC", + "postal_code": "V0H1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6777003", + "name": "Trout Creek Elementary", + "total_students": 200, + "address": "BOX 3000", + "city": "SUMMERLAND", + "province": "BC", + "postal_code": "V0H1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6777004", + "name": "Giant's Head Elementary", + "total_students": 381, + "address": "PO BOX 3000", + "city": "SUMMERLAND", + "province": "BC", + "postal_code": "V0H1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6799182", + "name": "Connected - Junior Alternate", + "total_students": 10, + "address": "274 ECKHARDT AVE E", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A1Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6799183", + "name": "Connected - Senior Alternate", + "total_students": 11, + "address": "274 ECKHARDT AVE E", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A1Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6799204", + "name": "Princess Margaret AIM", + "total_students": 28, + "address": "120 GREEN AVE W", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A3T1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "67", + "district_name": "Okanagan Skaha", + "school_number": "6799205", + "name": "Penticton Secondary Stride", + "total_students": 24, + "address": "158 ECKHARDT AVE E", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868000", + "name": "Continuing Ed SD 68", + "total_students": 10, + "address": "1270 Strathmore St", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S2L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868001", + "name": "Nanaimo District Secondary", + "total_students": 1594, + "address": "355 WAKESIAH AVE", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R3K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868002", + "name": "Ladysmith Secondary", + "total_students": 678, + "address": "PO BOX 190", + "city": "LADYSMITH", + "province": "BC", + "postal_code": "V9G1A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868007", + "name": "Cedar Secondary", + "total_students": 363, + "address": "1640 MACMILLAN RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9X1L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868009", + "name": "Cedar Elementary", + "total_students": 335, + "address": "2215 GOULD RD W", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9X1J9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868010", + "name": "Dover Bay Secondary", + "total_students": 1603, + "address": "6135 MCGIRR RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9V1M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868011", + "name": "John Barsby Secondary", + "total_students": 815, + "address": "550 SEVENTH ST", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R3Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868015", + "name": "Wellington Secondary", + "total_students": 1101, + "address": "3135 MEXICANA RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T2W8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868018", + "name": "Bayview Elementary", + "total_students": 219, + "address": "140 VIEW ST", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R4N6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868019", + "name": "Brechin Elementary", + "total_students": 180, + "address": "510 MILLSTONE AVE", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S5A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868022", + "name": "Chase River Elementary", + "total_students": 244, + "address": "1503 CRANBERRY AVE", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R6R7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868024", + "name": "Cilaire Elementary", + "total_students": 179, + "address": "25 CILAIRE DR", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S3C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868028", + "name": "Departure Bay Elementary", + "total_students": 408, + "address": "3004 DEPARTURE BAY RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T1B4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868036", + "name": "Fairview Elementary", + "total_students": 400, + "address": "205 HOWARD AVE", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R3R3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868037", + "name": "Forest Park Elementary", + "total_students": 387, + "address": "2050 LATIMER RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S2W5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868038", + "name": "Frank J. Ney Elementary", + "total_students": 419, + "address": "5301 WILLIAMSON RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9V1L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868040", + "name": "Gabriola Elementary", + "total_students": 158, + "address": "PO BOX 130", + "city": "GABRIOLA ISLAND", + "province": "BC", + "postal_code": "V0R1X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868041", + "name": "Georgia Avenue Elementary", + "total_students": 361, + "address": "625 GEORGIA AVE", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R3W3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868044", + "name": "Hammond Bay Elementary", + "total_students": 388, + "address": "1025 MORNINGSIDE DR", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T1N5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868048", + "name": "Ladysmith Intermediate", + "total_students": 334, + "address": "PO BOX 849", + "city": "LADYSMITH", + "province": "BC", + "postal_code": "V9G1A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868049", + "name": "Ladysmith Primary", + "total_students": 292, + "address": "PO BOX 910", + "city": "LADYSMITH", + "province": "BC", + "postal_code": "V9G1A6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868052", + "name": "Mountain View Elementary", + "total_students": 418, + "address": "2480 WELLINGTON RD E", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R5K3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868055", + "name": "McGirr Elementary", + "total_students": 479, + "address": "6199 MCGIRR RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9V1C7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868058", + "name": "North Oyster Elementary", + "total_students": 321, + "address": "13470 CEDAR RD", + "city": "LADYSMITH", + "province": "BC", + "postal_code": "V9G1H6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868061", + "name": "Park Avenue Elementary", + "total_students": 263, + "address": "395 EIGHTH ST", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R1A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868065", + "name": "Pauline Haarer Elementary", + "total_students": 217, + "address": "400 CAMPBELL ST", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R3G7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868066", + "name": "Pleasant Valley Elementary", + "total_students": 414, + "address": "6201 DUNBAR RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T2P2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868070", + "name": "Qwam Qwum Stuwixwulh Community School", + "total_students": 129, + "address": "1390 STUYWUT ST", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9X1M4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868071", + "name": "Quarterway Elementary", + "total_students": 387, + "address": "1632 BOWEN RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S1G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868073", + "name": "Randerson Ridge Elementary", + "total_students": 477, + "address": "6021 NELSON RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T5N7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868076", + "name": "Rock City Elementary", + "total_students": 326, + "address": "3741 DEPARTURE BAY RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T1C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868080", + "name": "Seaview Elementary", + "total_students": 271, + "address": "PO BOX 340", + "city": "LANTZVILLE", + "province": "BC", + "postal_code": "V0R2H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868086", + "name": "Uplands Park Elementary", + "total_students": 327, + "address": "3821 STRONACH DR", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T3X4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868323", + "name": "Cinnabar Valley Elementary", + "total_students": 259, + "address": "100 OHIO WAY", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9X1C8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868325", + "name": "Syuwen'ct Elementary School", + "total_students": 338, + "address": "2280 SUN VALLEY DR", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T6P1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6899022", + "name": "Learning Alternatives", + "total_students": 10, + "address": "1270 Strathmore St", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S2L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6899114", + "name": "Career Technical Centre", + "total_students": 82, + "address": "c/o Woodlands Secondary Room 109", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S2L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "68", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6899308", + "name": "Island ConnectEd K-12", + "total_students": 490, + "address": "4355 JINGLE POT RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T5P4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969000", + "name": "Continuing Ed SD 69", + "total_students": 10, + "address": "140 RENZ RD", + "city": "PARKSVILLE", + "province": "BC", + "postal_code": "V9P1E8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969006", + "name": "Qualicum Beach Elementary", + "total_students": 404, + "address": "699 Claymore Road", + "city": "QUALICUM BEACH", + "province": "BC", + "postal_code": "V9K2T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969012", + "name": "Ecole Secondaire Ballenas Secondary", + "total_students": 1006, + "address": "135 Pym Street", + "city": "Parksville", + "province": "BC", + "postal_code": "V9P1G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969014", + "name": "Kwalikum Secondary", + "total_students": 807, + "address": "266 VILLAGE WAY", + "city": "QUALICUM BEACH", + "province": "BC", + "postal_code": "V9K1L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969015", + "name": "Bowser Elementary", + "total_students": 180, + "address": "PO BOX 112", + "city": "BOWSER", + "province": "BC", + "postal_code": "V0R1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969016", + "name": "False Bay School", + "total_students": 22, + "address": "GENERAL DELIVERY", + "city": "LASQUETI ISLAND", + "province": "BC", + "postal_code": "V0R2J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969018", + "name": "Nanoose Bay Elementary", + "total_students": 324, + "address": "2875 Northwest Bay Road", + "city": "NANOOSE BAY", + "province": "BC", + "postal_code": "V9P9J9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969020", + "name": "Arrowview Elementary", + "total_students": 285, + "address": "650 BENNETT RD", + "city": "QUALICUM BEACH", + "province": "BC", + "postal_code": "V9K1N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969021", + "name": "Errington Elementary", + "total_students": 249, + "address": "PO BOX 80", + "city": "ERRINGTON", + "province": "BC", + "postal_code": "V0R1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969023", + "name": "Oceanside Elementary", + "total_students": 493, + "address": "980 Wright Road", + "city": "PARKSVILLE", + "province": "BC", + "postal_code": "V9P2B3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6969025", + "name": "Springwood Elementary", + "total_students": 513, + "address": "1037 CARDINAL WAY", + "city": "PARKSVILLE", + "province": "BC", + "postal_code": "V9P1J9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6999094", + "name": "Collaborative Education Alternative Prg.", + "total_students": 106, + "address": "140 Renz Rd", + "city": "Parksville", + "province": "BC", + "postal_code": "V9P1E8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "69", + "district_name": "Qualicum", + "school_number": "6999123", + "name": "PASS/Woodwinds Alternate", + "total_students": 10, + "address": "PO BOX 1798", + "city": "PARKSVILLE", + "province": "BC", + "postal_code": "V9P2H6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070000", + "name": "SD 70 Continuing Ed", + "total_students": 22, + "address": "2941 8TH AVE", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y2K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070001", + "name": "Alberni District Secondary", + "total_students": 1277, + "address": "4000 ROGER ST", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y0B1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070005", + "name": "Ucluelet Secondary", + "total_students": 252, + "address": "PO BOX 40", + "city": "UCLUELET", + "province": "BC", + "postal_code": "V0R3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070006", + "name": "Alberni Elementary", + "total_students": 380, + "address": "4645 HELEN ST", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y6P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070018", + "name": "John Howitt Elementary", + "total_students": 190, + "address": "3867 MARPOLE ST", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y6Y3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070020", + "name": "Maquinna Elementary", + "total_students": 300, + "address": "3881 BRUCE ST", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y1J6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070024", + "name": "Wickaninnish Community School", + "total_students": 238, + "address": "PO BOX 220", + "city": "TOFINO", + "province": "BC", + "postal_code": "V0R2Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070025", + "name": "Wood Elementary", + "total_students": 234, + "address": "4111 WOOD AVE", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y5E8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070026", + "name": "Ucluelet Elementary", + "total_students": 237, + "address": "PO BOX 669", + "city": "UCLUELET", + "province": "BC", + "postal_code": "V0R3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070027", + "name": "Bamfield Community School", + "total_students": 47, + "address": "GENERAL DELIVERY", + "city": "BAMFIELD", + "province": "BC", + "postal_code": "V0R1B0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070028", + "name": "Tsuma-as Elementary", + "total_students": 336, + "address": "5055 COMPTON RD", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y7B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7070029", + "name": "Eric J Dunn Elementary", + "total_students": 254, + "address": "3500 ARGYLE ST", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y3A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7099041", + "name": "Eighth Avenue Learning Centre", + "total_students": 141, + "address": "2941 8TH AVE", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y2K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "70", + "district_name": "Pacific Rim", + "school_number": "7099171", + "name": "Choices DL", + "total_students": 37, + "address": "2941 8TH AVE", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y2K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171000", + "name": "Sandwick Continuing Education", + "total_students": 18, + "address": "2947 Rennison Road", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9J1M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171040", + "name": "Georges P. Vanier Secondary", + "total_students": 1329, + "address": "4830 HEADQUARTERS RD", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9J1P2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171041", + "name": "Highland Secondary", + "total_students": 733, + "address": "750 PRITCHARD RD", + "city": "COMOX", + "province": "BC", + "postal_code": "V9M3S8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171043", + "name": "Glacier View Secondary Centre", + "total_students": 159, + "address": "241 BEECHER PL", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N3Y4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171050", + "name": "Ecole Robb Road", + "total_students": 471, + "address": "1909 ROBB AVE", + "city": "COMOX", + "province": "BC", + "postal_code": "V9M2C9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171052", + "name": "Lake Trail Community", + "total_students": 396, + "address": "805 WILLEMAR AVE", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N3L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171053", + "name": "Cumberland Community School", + "total_students": 707, + "address": "PO BOX 430", + "city": "CUMBERLAND", + "province": "BC", + "postal_code": "V0R1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171054", + "name": "Ecole Secondaire Mark R Isfeld Secondary", + "total_students": 1032, + "address": "1551 LERWICK RD", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N9B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171060", + "name": "Arden Elementary", + "total_students": 222, + "address": "3040 LAKE TRAIL RD", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N9M1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171063", + "name": "Brooklyn Elementary", + "total_students": 379, + "address": "1290 GUTHRIE RD", + "city": "COMOX", + "province": "BC", + "postal_code": "V9M4G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171065", + "name": "Courtenay Elementary", + "total_students": 221, + "address": "1540 MCPHEE AVE", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N3A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171067", + "name": "Denman Island Community School", + "total_students": 56, + "address": "1100 NORTHWEST RD", + "city": "DENMAN ISLAND", + "province": "BC", + "postal_code": "V0R1T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171070", + "name": "Hornby Island Elementary", + "total_students": 65, + "address": "2100 SOLLANS RD", + "city": "HORNBY ISLAND", + "province": "BC", + "postal_code": "V0R1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171071", + "name": "Ecole Puntledge Park Elementary", + "total_students": 509, + "address": "401 WILLEMAR AVE", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N3L3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171072", + "name": "Royston Elementary", + "total_students": 260, + "address": "3830 WARREN AVE", + "city": "ROYSTON", + "province": "BC", + "postal_code": "V0R2V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171077", + "name": "Airport Elementary", + "total_students": 199, + "address": "PO BOX 40", + "city": "LAZO", + "province": "BC", + "postal_code": "V0R2K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171079", + "name": "Miracle Beach Elementary", + "total_students": 256, + "address": "8763 PAULSEN RD", + "city": "BLACK CREEK", + "province": "BC", + "postal_code": "V9J1J8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171080", + "name": "Valley View Elementary", + "total_students": 361, + "address": "2300 VALLEY VIEW DR", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N9A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171081", + "name": "Huband Park Elementary", + "total_students": 393, + "address": "5120 MOTTISHAW RD", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9J1L5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171082", + "name": "Navigate Academy", + "total_students": 133, + "address": "2505 SMITH RD", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9J1T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171155", + "name": "Aspen Park Elementary", + "total_students": 394, + "address": "2250 BOLT AVE", + "city": "COMOX", + "province": "BC", + "postal_code": "V9M4E7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7171156", + "name": "Queneesh Elementary", + "total_students": 433, + "address": "2345 MISSION RD", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N9H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7198008", + "name": "North Island Distance Education", + "total_students": 3258, + "address": "2505 SMITH RD", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9J1T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "71", + "district_name": "Comox Valley", + "school_number": "7199299", + "name": "Nala'atsi Alternate Program", + "total_students": 21, + "address": "665 16TH ST", + "city": "COURTENAY", + "province": "BC", + "postal_code": "V9N1X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272010", + "name": "Carihi Secondary", + "total_students": 906, + "address": "350 DOGWOOD ST", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W2X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272012", + "name": "Timberline Secondary School", + "total_students": 790, + "address": "1681 SOUTH DOGWOOD ST", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W8C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272014", + "name": "Ecole Phoenix Middle", + "total_students": 646, + "address": "400 7TH AVE", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W3Z9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272016", + "name": "Southgate Middle School", + "total_students": 596, + "address": "740 HOLM RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W1W6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272017", + "name": "Cortes Island School", + "total_students": 72, + "address": "PO BOX 179", + "city": "MANSONS LANDING", + "province": "BC", + "postal_code": "V0P1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272029", + "name": "Cedar Elementary", + "total_students": 174, + "address": "261 CEDAR ST", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W2V3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272031", + "name": "Ecole des Deux Mondes Elementary", + "total_students": 176, + "address": "851 7TH AVE", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W4A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272032", + "name": "Ripple Rock Elementary", + "total_students": 307, + "address": "2001 CHEVIOT RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9H1R4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272035", + "name": "eBlend", + "total_students": 10, + "address": "740 ROBRON RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W6J7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272046", + "name": "Georgia Park Elementary", + "total_students": 299, + "address": "678 HUDSON RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9H1T4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272061", + "name": "Ocean Grove Elementary", + "total_students": 288, + "address": "3773 MCLELAN", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9H1K2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272065", + "name": "Pinecrest Elementary", + "total_students": 243, + "address": "300 SOUTH BIRCH ST", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W2S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272066", + "name": "Penfield Elementary", + "total_students": 276, + "address": "525 HILCHEY RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W1P9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272069", + "name": "Quadra Elementary", + "total_students": 105, + "address": "PO BOX 249", + "city": "QUATHIASKI COVE", + "province": "BC", + "postal_code": "V0P1N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272078", + "name": "Sandowne Elementary", + "total_students": 248, + "address": "699 SANDOWNE DR", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W5G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272085", + "name": "Surge Narrows Elementary", + "total_students": 17, + "address": "PO BOX 40", + "city": "SURGE NARROWS", + "province": "BC", + "postal_code": "V0P1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272097", + "name": "Ecole Willow Point Elementary", + "total_students": 235, + "address": "250 LARWOOD RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W1S4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7272119", + "name": "Sayward Elem-Jr Secondary", + "total_students": 48, + "address": "PO BOX 40", + "city": "SAYWARD", + "province": "BC", + "postal_code": "V0P1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7295057", + "name": "Compass School Program", + "total_students": 10, + "address": "740 ROBRON RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W6J7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "72", + "district_name": "Campbell River", + "school_number": "7299073", + "name": "Elm Alternate", + "total_students": 169, + "address": "740 ROBRON RD", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W6J7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324002", + "name": "Beattie Elementary", + "total_students": 350, + "address": "492 MCGILL RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C1M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324004", + "name": "Haldane Elementary", + "total_students": 263, + "address": "PO BOX 380", + "city": "CHASE", + "province": "BC", + "postal_code": "V0E1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324005", + "name": "Ecole Lloyd George Elementary", + "total_students": 451, + "address": "830 PINE ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C3A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324010", + "name": "Savona Elementary", + "total_students": 58, + "address": "PO BOX 170", + "city": "SAVONA", + "province": "BC", + "postal_code": "V0K2J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324011", + "name": "Marion Schilling Elementary", + "total_students": 235, + "address": "2200 PARK DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C4P6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324012", + "name": "South Kamloops Secondary", + "total_students": 1093, + "address": "821 MUNRO ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C3E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324014", + "name": "Kamloops School of the Arts", + "total_students": 489, + "address": "1390 9TH AVE", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C3X6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324018", + "name": "Heffley Creek Elementary", + "total_students": 20, + "address": "MARRIOTT RD RR 2", + "city": "HEFFLEY CREEK", + "province": "BC", + "postal_code": "V0E1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324020", + "name": "Westsyde Elementary", + "total_students": 240, + "address": "3550 WESTSYDE RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B7H4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324021", + "name": "Westwold Elementary", + "total_students": 10, + "address": "GENERAL DELIVERY", + "city": "WESTWOLD", + "province": "BC", + "postal_code": "V0E3B0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324023", + "name": "Dallas Elementary", + "total_students": 336, + "address": "296 HARPER RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C4Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324028", + "name": "George Hilliard Elementary", + "total_students": 176, + "address": "985 HOLT ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B5H1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324031", + "name": "Arthur Stevenson Elementary", + "total_students": 292, + "address": "2890 BANK RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B6Y7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324032", + "name": "Bert Edwards Science & Technology", + "total_students": 274, + "address": "711 WINDSOR AVE", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B2B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324033", + "name": "Ralph Bell Elementary School", + "total_students": 271, + "address": "1764 VALLEYVIEW DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C4B8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324034", + "name": "Rayleigh Elementary", + "total_students": 234, + "address": "306 PUETT RANCH RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2H1M9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324036", + "name": "Arthur Hatton Elementary", + "total_students": 306, + "address": "315 CHESTNUT AVE", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B1L4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324039", + "name": "AE Perry Elementary", + "total_students": 366, + "address": "1380 SHERBROOKE AVE", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B1W9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324040", + "name": "Kay Bingham Elementary", + "total_students": 230, + "address": "950 SOUTHILL ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B5M2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324044", + "name": "Norkam Secondary School", + "total_students": 958, + "address": "730 12TH ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B3C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324045", + "name": "Valleyview Secondary", + "total_students": 1116, + "address": "1950 VALLEYVIEW DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C4C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324052", + "name": "Barriere Elementary", + "total_students": 207, + "address": "PO BOX 250", + "city": "BARRIERE", + "province": "BC", + "postal_code": "V0E1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324053", + "name": "Logan Lake Elementary", + "total_students": 106, + "address": "PO BOX 100", + "city": "LOGAN LAKE", + "province": "BC", + "postal_code": "V0K1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324054", + "name": "Parkcrest Elementary", + "total_students": 385, + "address": "2170 PARKCREST AVE", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B4Y1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324055", + "name": "Westsyde Secondary", + "total_students": 735, + "address": "855 BEBEK RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B6P2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324056", + "name": "Robert L Clemitson Elementary", + "total_students": 405, + "address": "5990 TODD RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C5B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324057", + "name": "Sa-hali Secondary", + "total_students": 937, + "address": "255 ARROWSTONE DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C1P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324058", + "name": "David Thompson Elementary", + "total_students": 288, + "address": "1051 PINESPRINGS RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B7W3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324063", + "name": "Westmount Elementary", + "total_students": 250, + "address": "745 WALKEM RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B7Z8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324064", + "name": "South Sa-Hali Elementary", + "total_students": 369, + "address": "1585 SUMMIT DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2E1E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324067", + "name": "Pinantan Elementary", + "total_students": 71, + "address": "GENERAL DELIVERY", + "city": "PINANTAN LAKE", + "province": "BC", + "postal_code": "V0E3E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324068", + "name": "Summit Elementary", + "total_students": 309, + "address": "425 MONARCH CRT", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2E1Y3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324071", + "name": "Aberdeen Elementary", + "total_students": 496, + "address": "2191 VAN HORNE DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V1S1L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324072", + "name": "Dufferin Elementary", + "total_students": 255, + "address": "1880 HILLSIDE DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2E2E2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324077", + "name": "Juniper Ridge Elementary", + "total_students": 373, + "address": "2540 QU'APPELLE BLVD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2E2E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7324078", + "name": "McGowan Park Elementary", + "total_students": 418, + "address": "2080 TREMERTON DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2E2S2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7326002", + "name": "Blue River School", + "total_students": 10, + "address": "PO BOX 160", + "city": "BLUE RIVER", + "province": "BC", + "postal_code": "V0E1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7326005", + "name": "Clearwater Secondary", + "total_students": 187, + "address": "440 MURTLE CRES", + "city": "CLEARWATER", + "province": "BC", + "postal_code": "V0E1N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7326011", + "name": "Vavenby Elementary", + "total_students": 35, + "address": "PO BOX 100", + "city": "VAVENBY", + "province": "BC", + "postal_code": "V0E3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7326012", + "name": "Raft River Elementary", + "total_students": 296, + "address": "801 CLEARWATER VILLAGE RD", + "city": "CLEARWATER", + "province": "BC", + "postal_code": "V0E1N1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7373000", + "name": "Continuing Ed SD 73", + "total_students": 97, + "address": "655 HOLT ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B5G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7373079", + "name": "Pacific Way Elementary", + "total_students": 403, + "address": "2330 PACIFIC WAY", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V1S1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7373080", + "name": "Logan Lake Elementary Secondary", + "total_students": 170, + "address": "PO BOX 280", + "city": "LOGAN LAKE", + "province": "BC", + "postal_code": "V0K1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7373081", + "name": "Brocklehurst Secondary School", + "total_students": 482, + "address": "985 WINDBREAK ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B5P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7373083", + "name": "Chase Elementary-Secondary", + "total_students": 239, + "address": "PO BOX 319", + "city": "CHASE", + "province": "BC", + "postal_code": "V0E1M0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7373084", + "name": "Barriere Elementary-Secondary", + "total_students": 218, + "address": "PO BOX 130", + "city": "BARRIERE", + "province": "BC", + "postal_code": "V0E1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7373085", + "name": "Sun Peaks School", + "total_students": 131, + "address": "c/o Heffley Creek Elementary School", + "city": "Kamloops", + "province": "BC", + "postal_code": "V2H0B7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7399042", + "name": "Twin Rivers Education Centre", + "total_students": 188, + "address": "655 HOLT ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B5G2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "73", + "district_name": "Kamloops-Thompson", + "school_number": "7399103", + "name": "@KOOL", + "total_students": 786, + "address": "1770 SPRINGVIEW PL", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2E1X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7429007", + "name": "Gold Bridge Community", + "total_students": 10, + "address": "c/o Cayoosh Elementary School", + "city": "LILLOOET", + "province": "BC", + "postal_code": "V0K1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7429012", + "name": "Cayoosh Elementary", + "total_students": 185, + "address": "PO BOX 649", + "city": "LILLOOET", + "province": "BC", + "postal_code": "V0K1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7429014", + "name": "George M Murray Elementary", + "total_students": 87, + "address": "PO BOX 968", + "city": "LILLOOET", + "province": "BC", + "postal_code": "V0K1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7429015", + "name": "Lillooet Secondary", + "total_students": 201, + "address": "PO BOX 760", + "city": "LILLOOET", + "province": "BC", + "postal_code": "V0K1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7430009", + "name": "Cache Creek Elementary", + "total_students": 117, + "address": "PO BOX 128", + "city": "CACHE CREEK", + "province": "BC", + "postal_code": "V0K1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7474018", + "name": "David Stoddart School", + "total_students": 111, + "address": "PO BOX 129", + "city": "CLINTON", + "province": "BC", + "postal_code": "V0K1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7474019", + "name": "Desert Sands Community School", + "total_students": 268, + "address": "PO BOX 669", + "city": "ASHCROFT", + "province": "BC", + "postal_code": "V0K1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "74", + "district_name": "Gold Trail", + "school_number": "7474020", + "name": "Kumsheen ShchEma-meet", + "total_students": 10, + "address": "PO BOX 60", + "city": "LYTTON", + "province": "BC", + "postal_code": "V0K1Z0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575000", + "name": "Continuing Ed SD 75", + "total_students": 46, + "address": "33919 DEWDNEY TRUNK RD", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V6Y4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575001", + "name": "Hatzic Elementary", + "total_students": 261, + "address": "8465 DRAPER ST", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V5V6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575006", + "name": "Dewdney Elementary", + "total_students": 128, + "address": "37151 HAWKINS-PICKLE RD B107", + "city": "DEWDNEY", + "province": "BC", + "postal_code": "V0M1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575007", + "name": "Mission Central Elementary", + "total_students": 341, + "address": "7466 WELTON ST", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V6L4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575014", + "name": "Mission Senior Secondary", + "total_students": 1327, + "address": "32939 7th AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575015", + "name": "Edwin S Richards Elementary", + "total_students": 363, + "address": "33419 CHERRY AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575018", + "name": "West Heights Elementary", + "total_students": 250, + "address": "32065 VAN VELZEN AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2G6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575019", + "name": "Silverdale Elementary", + "total_students": 130, + "address": "29715 DONATELLI AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V4S1H6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575020", + "name": "Windebank Elementary", + "total_students": 403, + "address": "33570 11TH AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V6Z2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575023", + "name": "Cherry Hill Elementary", + "total_students": 290, + "address": "32557 BEST AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2S5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575027", + "name": "Hillside Traditional Academy", + "total_students": 417, + "address": "33621 BEST AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V5Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575028", + "name": "Albert McMahon Elementary", + "total_students": 454, + "address": "32865 CHERRY AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2V1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575029", + "name": "Christine Morrison Elementary", + "total_students": 395, + "address": "32611 MCRAE AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2L8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575030", + "name": "Stave Falls Elementary", + "total_students": 114, + "address": "30204 BRACKLEY AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V4S1C2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575032", + "name": "Deroche Elementary", + "total_students": 96, + "address": "10340 N DEROCHE RD", + "city": "DEROCHE", + "province": "BC", + "postal_code": "V0M1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575035", + "name": "Hatzic Middle School", + "total_students": 785, + "address": "34875 Moffat Avenue", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V6S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7575036", + "name": "Ecole Heritage Park Middle School", + "total_students": 744, + "address": "33700 PRENTIS AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V7B1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7599133", + "name": "Mission Online School", + "total_students": 160, + "address": "PORTABLE #8 32939 7TH AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "75", + "district_name": "Mission", + "school_number": "7599287", + "name": "Fraserview Learning Centre", + "total_students": 104, + "address": "32444 7TH AVE", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V2B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7832003", + "name": "Hope Secondary", + "total_students": 385, + "address": "PO BOX 249", + "city": "HOPE", + "province": "BC", + "postal_code": "V0X1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7832004", + "name": "Boston Bar Elem-Secondary", + "total_students": 10, + "address": "PO BOX 160", + "city": "BOSTON BAR", + "province": "BC", + "postal_code": "V0K1C0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7832006", + "name": "Coquihalla Elementary", + "total_students": 362, + "address": "PO BOX 969", + "city": "HOPE", + "province": "BC", + "postal_code": "V0X1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7876002", + "name": "Harrison Hot Springs Elementary", + "total_students": 119, + "address": "PO BOX 310", + "city": "HARRISON HOT SPRINGS", + "province": "BC", + "postal_code": "V0M1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7876003", + "name": "Agassiz Elem-Secondary", + "total_students": 343, + "address": "PO BOX 1100", + "city": "AGASSIZ", + "province": "BC", + "postal_code": "V0M1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7876007", + "name": "Kent Elementary", + "total_students": 278, + "address": "7285 MCCULLOUGH RD", + "city": "AGASSIZ", + "province": "BC", + "postal_code": "V0M1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7878000", + "name": "Fraser Cascade Continuing Education", + "total_students": 10, + "address": "425 PARK STREET", + "city": "HOPE", + "province": "BC", + "postal_code": "V0X1L1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7878012", + "name": "Silver Creek Elementary", + "total_students": 133, + "address": "PO BOX 670", + "city": "HOPE", + "province": "BC", + "postal_code": "V0X1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7878013", + "name": "Q'aLaTKu7em School", + "total_students": 10, + "address": "PO BOX 610", + "city": "MOUNT CURRIE", + "province": "BC", + "postal_code": "V0N2K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7899053", + "name": "Two Rivers Education Centre", + "total_students": 33, + "address": "PO BOX 108", + "city": "HOPE", + "province": "BC", + "postal_code": "V0X1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7899166", + "name": "Fraser-Cascade Open Learning", + "total_students": 37, + "address": "425 PARK STREET", + "city": "HOPE", + "province": "BC", + "postal_code": "V0X1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "78", + "district_name": "Fraser-Cascade", + "school_number": "7899183", + "name": "Agassiz Centre for Education", + "total_students": 17, + "address": "PO BOX 69", + "city": "AGASSIZ", + "province": "BC", + "postal_code": "V0M1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965006", + "name": "Crofton Elementary Community School", + "total_students": 174, + "address": "PO BOX 80", + "city": "CROFTON", + "province": "BC", + "postal_code": "V0R1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965007", + "name": "Bench Elementary", + "total_students": 414, + "address": "1501 COWICHAN BAY RD", + "city": "COWICHAN BAY", + "province": "BC", + "postal_code": "V0R1N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965014", + "name": "Alexander Elementary", + "total_students": 295, + "address": "2471 BEVERLY ST", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L3A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965016", + "name": "Tansor Elementary", + "total_students": 289, + "address": "3594 AUCHINACHIE RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L4A4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965023", + "name": "Khowhemun Elementary", + "total_students": 322, + "address": "2918 CLIFFS RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L1C5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965024", + "name": "Drinkwater Elementary", + "total_students": 422, + "address": "6236 LANE RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L4E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965025", + "name": "Alex Aitken", + "total_students": 185, + "address": "2494 ROOME RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L4L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965032", + "name": "Thetis Island Elementary", + "total_students": 19, + "address": "3172 GARNER ST", + "city": "CHEMAINUS", + "province": "BC", + "postal_code": "V0R1K2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965037", + "name": "Discovery Elementary", + "total_students": 395, + "address": "2204 McKean Rd", + "city": "SHAWNIGAN LAKE", + "province": "BC", + "postal_code": "V0R2W1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7965039", + "name": "Frances Kelsey Secondary", + "total_students": 975, + "address": "953 SHAWNIGAN-MILL BAY RD", + "city": "MILL BAY", + "province": "BC", + "postal_code": "V8H1G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7966012", + "name": "Palsson Elementary", + "total_students": 201, + "address": "PO BOX 350", + "city": "LAKE COWICHAN", + "province": "BC", + "postal_code": "V0R2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979000", + "name": "Adult Learning Centre", + "total_students": 10, + "address": "1033 NAGLE ST", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L2E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979040", + "name": "Maple Bay Elementary", + "total_students": 335, + "address": "1500 DONNAY DR", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L5R4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979041", + "name": "Chemainus Elementary Community School", + "total_students": 324, + "address": "3172 GARNER ST", + "city": "CHEMAINUS", + "province": "BC", + "postal_code": "V0R1K2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979042", + "name": "Ecole Cobble Hill Elementary", + "total_students": 353, + "address": "3642 LEARNING WAY", + "city": "COBBLE HILL", + "province": "BC", + "postal_code": "V0R1L2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979043", + "name": "Lake Cowichan Elementary", + "total_students": 188, + "address": "PO BOX 40", + "city": "LAKE COWICHAN", + "province": "BC", + "postal_code": "V0R2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979044", + "name": "Lake Cowichan Secondary", + "total_students": 186, + "address": "PO BOX 40", + "city": "LAKE COWICHAN", + "province": "BC", + "postal_code": "V0R2G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979045", + "name": "George Bonner Elementary", + "total_students": 432, + "address": "3060 COBBLE HILL RD", + "city": "MILL BAY", + "province": "BC", + "postal_code": "V8H1G9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979046", + "name": "Ecole Mount Prevost Elementary", + "total_students": 371, + "address": "6177 SOMENOS RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L4E7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979047", + "name": "Cowichan Open School", + "total_students": 73, + "address": "1033 NAGLE ST", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L2E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979048", + "name": "Quamichan School", + "total_students": 589, + "address": "2515 BEVERLY ST", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L3A5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979049", + "name": "Chemainus Secondary", + "total_students": 366, + "address": "9947 DANIEL ST", + "city": "CHEMAINUS", + "province": "BC", + "postal_code": "V0R1K1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979050", + "name": "Mill Bay Nature School", + "total_students": 82, + "address": "3175 COBBLE HILL RD", + "city": "MILL BAY", + "province": "BC", + "postal_code": "V0R2P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7979051", + "name": "Quw'utsun Secondary School", + "total_students": 949, + "address": "2652 JAMES ST", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L2X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7999081", + "name": "Cowichan Valley Open Learning Co-Op", + "total_students": 325, + "address": "1033 NAGLE ST", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L2E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "79", + "district_name": "Cowichan Valley", + "school_number": "7999145", + "name": "Cowichan Valley Distributed Learning", + "total_students": 10, + "address": "1033 NAGLE ST", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L2E6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "81", + "district_name": "Fort Nelson", + "school_number": "8181008", + "name": "G W Carlson Elementary", + "total_students": 131, + "address": "PO BOX 810", + "city": "FORT NELSON", + "province": "BC", + "postal_code": "V0C1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "81", + "district_name": "Fort Nelson", + "school_number": "8181011", + "name": "R L Angus Elementary", + "total_students": 149, + "address": "BOX 750", + "city": "FORT NELSON", + "province": "BC", + "postal_code": "V0C1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "81", + "district_name": "Fort Nelson", + "school_number": "8181013", + "name": "Fort Nelson Secondary", + "total_students": 287, + "address": "PO BOX 90", + "city": "FORT NELSON", + "province": "BC", + "postal_code": "V0C1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "81", + "district_name": "Fort Nelson", + "school_number": "8181014", + "name": "J S Clark Elementary", + "total_students": 10, + "address": "BAG 6500", + "city": "FORT NELSON", + "province": "BC", + "postal_code": "V0C1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "81", + "district_name": "Fort Nelson", + "school_number": "8181015", + "name": "Toad River Elem-Secondary", + "total_students": 10, + "address": "PO BOX 87", + "city": "FORT NELSON", + "province": "BC", + "postal_code": "V0C1R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8280001", + "name": "Nechako Elementary", + "total_students": 295, + "address": "61 NIGHTINGALE ST", + "city": "KITIMAT", + "province": "BC", + "postal_code": "V8C1M9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8280004", + "name": "Kildala Elementary", + "total_students": 223, + "address": "803 COLUMBIA AVE E", + "city": "KITIMAT", + "province": "BC", + "postal_code": "V8C1V7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8280007", + "name": "Kitimat City High", + "total_students": 56, + "address": "1426 CORMORANT ST", + "city": "KITIMAT", + "province": "BC", + "postal_code": "V8C1R8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8282038", + "name": "Skeena Middle", + "total_students": 527, + "address": "3411 MUNROE ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G3C1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8282039", + "name": "Mount Elizabeth Middle/Secondary", + "total_students": 459, + "address": "1491 KINGFISHER AVE N", + "city": "KITIMAT", + "province": "BC", + "postal_code": "V8C1E9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8282040", + "name": "NW Regional Trades & Training Centre", + "total_students": 28, + "address": "3120 16 HWY E", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G4N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288006", + "name": "Hazelton Secondary", + "total_students": 371, + "address": "PO BOX 300", + "city": "HAZELTON", + "province": "BC", + "postal_code": "V0J1Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288008", + "name": "New Hazelton Elementary", + "total_students": 90, + "address": "PO BOX 220", + "city": "NEW HAZELTON", + "province": "BC", + "postal_code": "V0J2J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288012", + "name": "Uplands Elementary", + "total_students": 259, + "address": "4110 NORTH THOMAS ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G4L7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288013", + "name": "Cassie Hall Elementary", + "total_students": 150, + "address": "2620 EBY ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G2X3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288014", + "name": "Thornhill Elementary", + "total_students": 135, + "address": "2906 CLARK ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G3S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288016", + "name": "Suwilaawks Community School", + "total_students": 353, + "address": "3430 SPARKS ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G2V3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288018", + "name": "Majagaleehl Gali Aks Elementary", + "total_students": 140, + "address": "PO BOX 240", + "city": "HAZELTON", + "province": "BC", + "postal_code": "V0J1Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288020", + "name": "Ecole Mountainview", + "total_students": 181, + "address": "3505 BAILEY ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G5P5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288022", + "name": "Thornhill Primary", + "total_students": 183, + "address": "3860 PAQUETTE AVE", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G3S8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288024", + "name": "Caledonia Secondary", + "total_students": 564, + "address": "3605 MUNROE ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G3C4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288025", + "name": "Parkside Secondary", + "total_students": 88, + "address": "3824 EBY ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G2Z8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288028", + "name": "Bear Valley School", + "total_students": 46, + "address": "PO BOX 218", + "city": "STEWART", + "province": "BC", + "postal_code": "V0T1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8288030", + "name": "Kitwanga Elementary", + "total_students": 63, + "address": "PO BOX 88", + "city": "KITWANGA", + "province": "BC", + "postal_code": "V0J2A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "82", + "district_name": "Coast Mountains", + "school_number": "8298009", + "name": "North Coast Distance Education", + "total_students": 20, + "address": "3120 HIGHWAY 16 EAST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G4N8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8321001", + "name": "Armstrong Elementary", + "total_students": 261, + "address": "3010 PLEASANT VALLEY RD", + "city": "ARMSTRONG", + "province": "BC", + "postal_code": "V4Y0J3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8321004", + "name": "Pleasant Valley Secondary", + "total_students": 506, + "address": "2365 PLEASANT VALLEY RD", + "city": "SPALLUMCHEEN", + "province": "BC", + "postal_code": "V4Y0T6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8321005", + "name": "Highland Park Elementary", + "total_students": 289, + "address": "PO BOX 647", + "city": "ARMSTRONG", + "province": "BC", + "postal_code": "V0E1B0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383035", + "name": "Salmon Arm Secondary", + "total_students": 639, + "address": "1641 30 St NE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E2Z5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383036", + "name": "Len Wood Middle School", + "total_students": 291, + "address": "3700 PATTEN DR", + "city": "ARMSTRONG", + "province": "BC", + "postal_code": "V4Y0H9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383037", + "name": "Shuswap Middle School", + "total_students": 609, + "address": "PO BOX 1090 STN MAIN", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E4P2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383038", + "name": "Carlin Elementary Middle", + "total_students": 296, + "address": "4005 MYERS FRONTAGE RD", + "city": "TAPPEN", + "province": "BC", + "postal_code": "V0E2X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383039", + "name": "North Shuswap Elementary", + "total_students": 131, + "address": "5295 SQUILAX-ANGLEMONT RD", + "city": "CELISTA", + "province": "BC", + "postal_code": "V0E1M6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383040", + "name": "Falkland Elementary Junior School", + "total_students": 116, + "address": "PO BOX 10", + "city": "FALKLAND", + "province": "BC", + "postal_code": "V0E1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383041", + "name": "Silver Creek Elementary Secondary", + "total_students": 83, + "address": "935 SALMON RIVER RD", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E3G3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383042", + "name": "Ranchero Elementary Junior", + "total_students": 153, + "address": "6285 RANCHERO DR E", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E2P9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383043", + "name": "J.L. Jackson Secondary", + "total_students": 676, + "address": "551 14 ST NE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E2S5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383044", + "name": "Eagle River Secondary", + "total_students": 168, + "address": "PO BOX 9", + "city": "SICAMOUS", + "province": "BC", + "postal_code": "V0E2V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8383045", + "name": "South Canoe", + "total_students": 150, + "address": "5970 10 AVE SE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E1W5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389002", + "name": "A.L. Fortune Secondary", + "total_students": 374, + "address": "500 BASS AVE", + "city": "ENDERBY", + "province": "BC", + "postal_code": "V4Y4B2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389009", + "name": "Grindrod Elementary", + "total_students": 126, + "address": "PO BOX 249", + "city": "GRINDROD", + "province": "BC", + "postal_code": "V0E1Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389017", + "name": "M.V. Beattie Elementary", + "total_students": 292, + "address": "PO BOX 249", + "city": "ENDERBY", + "province": "BC", + "postal_code": "V0E1V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389021", + "name": "North Canoe Elementary", + "total_students": 73, + "address": "PO BOX 78", + "city": "CANOE", + "province": "BC", + "postal_code": "V0E1K0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389022", + "name": "Salmon Arm West Elementary", + "total_students": 83, + "address": "4750 10 AVE SW", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E3B5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389023", + "name": "South Broadview Elementary", + "total_students": 210, + "address": "3200 6 AVE NE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E1J2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389028", + "name": "Bastion Elementary", + "total_students": 351, + "address": "2251 12 AVE NE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E2V5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389029", + "name": "Sorrento Elementary", + "total_students": 246, + "address": "PO BOX 220", + "city": "SORRENTO", + "province": "BC", + "postal_code": "V0E2W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389032", + "name": "Parkview Elementary School", + "total_students": 205, + "address": "PO BOX 444", + "city": "SICAMOUS", + "province": "BC", + "postal_code": "V0E2V0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8389033", + "name": "Hillcrest Elementary", + "total_students": 288, + "address": "1180 20 ST SE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E2J4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "83", + "district_name": "North Okanagan-Shuswap", + "school_number": "8399072", + "name": "Salmon Arm Storefront", + "total_students": 53, + "address": "PO BOX 129", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E4N2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "84", + "district_name": "Vancouver Island West", + "school_number": "8484011", + "name": "Ray Watkins Elementary", + "total_students": 113, + "address": "PO BOX 190", + "city": "GOLD RIVER", + "province": "BC", + "postal_code": "V0P1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "84", + "district_name": "Vancouver Island West", + "school_number": "8484012", + "name": "Gold River Secondary", + "total_students": 97, + "address": "PO BOX 700", + "city": "GOLD RIVER", + "province": "BC", + "postal_code": "V0P1G0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "84", + "district_name": "Vancouver Island West", + "school_number": "8484022", + "name": "Captain Meares Elem-Secondary", + "total_students": 26, + "address": "PO BOX 70", + "city": "TAHSIS", + "province": "BC", + "postal_code": "V0P1X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "84", + "district_name": "Vancouver Island West", + "school_number": "8484031", + "name": "Zeballos Elem-Secondary", + "total_students": 40, + "address": "PO BOX 128", + "city": "ZEBALLOS", + "province": "BC", + "postal_code": "V0P2A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "84", + "district_name": "Vancouver Island West", + "school_number": "8484041", + "name": "Kyuquot Elementary Secondary", + "total_students": 42, + "address": "GENERAL DELIVERY", + "city": "KYUQUOT", + "province": "BC", + "postal_code": "V0P1J0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585001", + "name": "A J Elliott Elementary", + "total_students": 25, + "address": "PO BOX 149", + "city": "SOINTULA", + "province": "BC", + "postal_code": "V0N3E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585008", + "name": "Alert Bay Elementary", + "total_students": 32, + "address": "PO BOX 29", + "city": "ALERT BAY", + "province": "BC", + "postal_code": "V0N1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585017", + "name": "Fort Rupert Elementary", + "total_students": 79, + "address": "PO BOX 674", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585018", + "name": "North Island Secondary", + "total_students": 298, + "address": "PO BOX 100", + "city": "PORT MCNEILL", + "province": "BC", + "postal_code": "V0N2R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585020", + "name": "Sea View Elementary School", + "total_students": 33, + "address": "PO BOX 260", + "city": "PORT ALICE", + "province": "BC", + "postal_code": "V0N2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585023", + "name": "Eagle View Elementary", + "total_students": 180, + "address": "PO BOX 369", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585026", + "name": "Port Hardy Secondary", + "total_students": 305, + "address": "PO Box 27", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585028", + "name": "Sunset Elementary", + "total_students": 186, + "address": "PO BOX 160", + "city": "PORT MCNEILL", + "province": "BC", + "postal_code": "V0N2R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8585029", + "name": "Cheslakees Elementary", + "total_students": 26, + "address": "PO BOX 1390", + "city": "PORT MCNEILL", + "province": "BC", + "postal_code": "V0N2R0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "85", + "district_name": "Vancouver Island North", + "school_number": "8599099", + "name": "Eke Me-Xi School", + "total_students": 52, + "address": "PO BOX 90", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "87", + "district_name": "Stikine", + "school_number": "8787002", + "name": "Denetia Elementary", + "total_students": 24, + "address": "PO BOX 40", + "city": "LOWER POST", + "province": "BC", + "postal_code": "V0C1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "87", + "district_name": "Stikine", + "school_number": "8787003", + "name": "Tahltan School", + "total_students": 41, + "address": "PO BOX 12", + "city": "TELEGRAPH CREEK", + "province": "BC", + "postal_code": "V0J2W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "87", + "district_name": "Stikine", + "school_number": "8787010", + "name": "Atlin School", + "total_students": 30, + "address": "PO BOX 83", + "city": "ATLIN", + "province": "BC", + "postal_code": "V0W1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "87", + "district_name": "Stikine", + "school_number": "8787011", + "name": "Dease Lake School", + "total_students": 83, + "address": "PO BOX 280", + "city": "DEASE LAKE", + "province": "BC", + "postal_code": "V0C1L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9155004", + "name": "Francois Lake Elementary", + "total_students": 50, + "address": "860 FRANCOIS LAKE ROAD", + "city": "BURNS LAKE", + "province": "BC", + "postal_code": "V0J1E2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9155005", + "name": "Grassy Plains School", + "total_students": 59, + "address": "34310 KEEFES LANDING RD", + "city": "BURNS LAKE", + "province": "BC", + "postal_code": "V0J1E4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9155015", + "name": "Babine Elem-Secondary", + "total_students": 38, + "address": "PO BOX 250", + "city": "GRANISLE", + "province": "BC", + "postal_code": "V0J1W0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9155017", + "name": "William Konkin Elementary", + "total_students": 185, + "address": "Box 7000", + "city": "Burns Lake", + "province": "BC", + "postal_code": "V0J1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156001", + "name": "Mapes Elementary", + "total_students": 56, + "address": "14907 MAPES RD", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156002", + "name": "Fraser Lake Elem-Secondary", + "total_students": 303, + "address": "PO Bag Service 1002", + "city": "Fraser Lake", + "province": "BC", + "postal_code": "V0J1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156003", + "name": "W L McLeod Elementary", + "total_students": 270, + "address": "PO Box 559", + "city": "Vanderhoof", + "province": "BC", + "postal_code": "V0J3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156007", + "name": "Fort St. James Secondary", + "total_students": 246, + "address": "PO Box 220", + "city": "Fort St. James", + "province": "BC", + "postal_code": "V0J1P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156010", + "name": "Sinkut View Elementary", + "total_students": 86, + "address": "3348 SINKUT VIEW RD", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156013", + "name": "Evelyn Dickson Elementary", + "total_students": 189, + "address": "PO Box 1970", + "city": "Vanderhoof", + "province": "BC", + "postal_code": "V0J3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156015", + "name": "David Hoy Elementary", + "total_students": 224, + "address": "PO Box 880", + "city": "Fort St. James", + "province": "BC", + "postal_code": "V0J1P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9156019", + "name": "Mouse Mountain Elementary", + "total_students": 109, + "address": "PO Bag 3001", + "city": "Fraser Lake", + "province": "BC", + "postal_code": "V0J1S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9191022", + "name": "Decker Lake Elementary", + "total_students": 93, + "address": "6710 DECKER LAKE FRTG RD", + "city": "BURNS LAKE", + "province": "BC", + "postal_code": "V0J1E1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9191023", + "name": "Lakes District Secondary", + "total_students": 317, + "address": "Box 3000", + "city": "Burns Lake", + "province": "BC", + "postal_code": "V0J1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9191024", + "name": "Nechako Valley Secondary", + "total_students": 562, + "address": "PO BOX 950", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9199085", + "name": "EBUS Academy", + "total_students": 1339, + "address": "PO BAG 8000", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9199187", + "name": "Fort St James Alternate Secondary", + "total_students": 17, + "address": "PO BOX 220", + "city": "FORT ST JAMES", + "province": "BC", + "postal_code": "V0J1P0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9199207", + "name": "Valhalla High", + "total_students": 41, + "address": "PO BOX 950", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "91", + "district_name": "Nechako Lakes", + "school_number": "9199209", + "name": "Lakes Learning Centre", + "total_students": 28, + "address": "PO BOX 3000", + "city": "BURNS LAKE", + "province": "BC", + "postal_code": "V0J1E0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "92", + "district_name": "Nisga'a", + "school_number": "9292007", + "name": "Nisga'a Elementary Secondary", + "total_students": 242, + "address": "BOX 239", + "city": "NEW AIYANSH", + "province": "BC", + "postal_code": "V0J1A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "92", + "district_name": "Nisga'a", + "school_number": "9292008", + "name": "Nathan Barton Elementary", + "total_students": 40, + "address": "1310 VOLUNTEER ST", + "city": "KINCOLITH", + "province": "BC", + "postal_code": "V0V1B0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "92", + "district_name": "Nisga'a", + "school_number": "9292009", + "name": "Alvin A McKay Elementary", + "total_students": 71, + "address": "311 CHURCH ST", + "city": "GREENVILLE", + "province": "BC", + "postal_code": "V0J1X0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "92", + "district_name": "Nisga'a", + "school_number": "9292010", + "name": "Gitwinksihlkw Elementary", + "total_students": 24, + "address": "PO BOX 77", + "city": "GITWINKSIHLKWKW", + "province": "BC", + "postal_code": "V0J3T0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9307013", + "name": "Secondaire de Nelson", + "total_students": 25, + "address": "1004 COTTONWOOD ST", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L3W2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9311004", + "name": "des Sept-sommets", + "total_students": 47, + "address": "PO Box 880", + "city": "ROSSLAND", + "province": "BC", + "postal_code": "V0G1Y0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9315013", + "name": "Entre-lacs", + "total_students": 97, + "address": "1213 DEBECK RD", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A3Z1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9319003", + "name": "Secondaire de Revelstoke", + "total_students": 23, + "address": "1007 VERNON AVE", + "city": "REVELSTOKE", + "province": "BC", + "postal_code": "V0E2S0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9323027", + "name": "de l'Anse-au-sable", + "total_students": 235, + "address": "675 LEQUIME RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W1A3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9324064", + "name": "Collines-d'or", + "total_students": 44, + "address": "2450 PARTRIDGE DR", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B8G1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9333002", + "name": "La Verendrye", + "total_students": 77, + "address": "6610 LICKMAN RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R4A9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9335028", + "name": "des Voyageurs", + "total_students": 122, + "address": "8736 216 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V1M2X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9337031", + "name": "du Bois-joli", + "total_students": 44, + "address": "785 49 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4M2P3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9338036", + "name": "des Navigateurs", + "total_students": 107, + "address": "8580 KILGOUR PL", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7C3R1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9339092", + "name": "Rose-des-vents", + "total_students": 252, + "address": "5445 BAILLIE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z3M6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9339111", + "name": "Anne-Hebert", + "total_students": 332, + "address": "7051 KILLARNEY ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S2Y5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9339118", + "name": "des Colibris", + "total_students": 68, + "address": "590 W 65TH AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P2P8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9339144", + "name": "Norval-Morrisseau", + "total_students": 98, + "address": "2882 4TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M1K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9343092", + "name": "des Pionniers-de-Maillardville", + "total_students": 696, + "address": "1618 PATRICIA AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B4A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9344004", + "name": "Andre-Piolat", + "total_students": 432, + "address": "380 KINGS RD W", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N2L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9346003", + "name": "du Pacifique", + "total_students": 58, + "address": "5538 SHORNCLIFFE", + "city": "SECHELT", + "province": "BC", + "postal_code": "V0N3A0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9346017", + "name": "Secondaire Chatelech", + "total_students": 36, + "address": "5904 COWRIE ST", + "city": "SECHELT", + "province": "BC", + "postal_code": "V0N3A7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9347006", + "name": "Cote-du-Soleil", + "total_students": 88, + "address": "4368 MICHIGAN AVE", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A2S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9347021", + "name": "Secondaire Brooks", + "total_students": 17, + "address": "5400 MARINE AVE", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A2L6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9348008", + "name": "Les Aiglons", + "total_students": 130, + "address": "1150 CARSON PLACE", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0B1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9348020", + "name": "La Passerelle", + "total_students": 68, + "address": "1509 SPRING CREEK DR", + "city": "WHISTLER", + "province": "BC", + "postal_code": "V0N1B1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9348024", + "name": "La Vallee", + "total_students": 82, + "address": "1410 PORTAGE RD", + "city": "PEMBERTON", + "province": "BC", + "postal_code": "V0N2L0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9357012", + "name": "Secondaire Duchess-Park", + "total_students": 54, + "address": "747 WINNIPEG ST", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2L2V3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9357053", + "name": "Franco-Nord", + "total_students": 80, + "address": "2641 ELLISON DR", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M2S6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9361008", + "name": "Beausoleil", + "total_students": 111, + "address": "1415 ANDREWS AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P0A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9361060", + "name": "Victor-Brodeur", + "total_students": 505, + "address": "637 HEAD ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9A5S9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9368001", + "name": "Secondaire de Nanaimo", + "total_students": 53, + "address": "355 WAKESIAH AVE", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R3K5" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9368067", + "name": "Oceane", + "total_students": 76, + "address": "1951 ESTEVAN RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9S3Y9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9370006", + "name": "des Grands-cedres", + "total_students": 57, + "address": "5100 TEBO AVE", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y5Y6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9372010", + "name": "Secondaire Carihi", + "total_students": 34, + "address": "350 DOGWOOD ST", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W2X9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9372031", + "name": "Mer-et-montagne", + "total_students": 50, + "address": "1102 SOUTH ALDER ST", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W1Z7" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9373086", + "name": "Secondaire de Kamloops", + "total_students": 10, + "address": "750 COTTONWOOD AVE", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B3X2" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9375920", + "name": "des Deux-Rives", + "total_students": 103, + "address": "7674 STAVE LAKE ST", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V4G4" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9379050", + "name": "Des Cascades", + "total_students": 28, + "address": "3039 Sprott St", + "city": "Duncan", + "province": "BC", + "postal_code": "V9L6A1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9388027", + "name": "Jack-Cook", + "total_students": 64, + "address": "4720 GRAHAM AVE", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G1A8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393002", + "name": "Gabrielle-Roy", + "total_students": 576, + "address": "6887 132 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W4L9" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393003", + "name": "des Sentiers-alpins", + "total_students": 69, + "address": "2780 3A HWY", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L6L6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393004", + "name": "Secondaire de Penticton", + "total_students": 17, + "address": "158 ECKHARDT AVE E", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A1Z3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393005", + "name": "Secondaire Jules-Verne", + "total_students": 527, + "address": "5445 BAILLIE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z3M6" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393006", + "name": "Au-Coeur-De-L'Ile", + "total_students": 266, + "address": "566 LINSHART RD", + "city": "COMOX", + "province": "BC", + "postal_code": "V9M2K8" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393007", + "name": "des Glaciers", + "total_students": 39, + "address": "1950 PARK DR", + "city": "REVELSTOKE", + "province": "BC", + "postal_code": "V0E2S1" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393008", + "name": "Sophie-Morigeau", + "total_students": 43, + "address": "44 MT WASHBURN ST", + "city": "FERNIE", + "province": "BC", + "postal_code": "V0B1M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393011", + "name": "Les Melezes-dores", + "total_students": 10, + "address": "8687 95A HWY", + "city": "KIMBERLEY", + "province": "BC", + "postal_code": "V1A3M3" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393012", + "name": "La Confluence", + "total_students": 46, + "address": "820 11 AVE S", + "city": "GOLDEN", + "province": "BC", + "postal_code": "V0A1H0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9393013", + "name": "La Grande-Ourse", + "total_students": 21, + "address": "3490 FULTON AVE", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Public School", + "district_number": "93", + "district_name": "Conseil scolaire francophone", + "school_number": "9399177", + "name": "Virtuelle", + "total_students": 47, + "address": "100-13511 COMMERCE PARKWAY", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6V2J8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Nelson D", + "school_number": "596109", + "name": "St Mary's Catholic Independent", + "total_students": 116, + "address": "1701 5TH ST S", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C1K1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cranbrook Christian School Society", + "school_number": "596640", + "name": "Kootenay Christian Academy", + "total_students": 249, + "address": "1200 KOOTENAY ST N", + "city": "CRANBROOK", + "province": "BC", + "postal_code": "V1C5X1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "The Fernie Academy Society", + "school_number": "596715", + "name": "The Fernie Academy", + "total_students": 280, + "address": "PO BOX 2677", + "city": "FERNIE", + "province": "BC", + "postal_code": "V0B1M0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Kimberley Independent School Society", + "school_number": "696795", + "name": "Kimberley Independent School", + "total_students": 66, + "address": "73 101 AVE", + "city": "KIMBERLEY", + "province": "BC", + "postal_code": "V1A1A5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Purcell Collegiate Incorporated", + "school_number": "696988", + "name": "Purcell Collegiate School", + "total_students": 17, + "address": "PO BOX 8 STN Main", + "city": "Kimberley", + "province": "BC", + "postal_code": "V1A2Y5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Nelson D", + "school_number": "896143", + "name": "St Joseph School", + "total_students": 150, + "address": "523 MILL ST", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L4S2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "West Kootenay Education Resource Society", + "school_number": "896220", + "name": "Whole School", + "total_students": 31, + "address": "PO BOX 240", + "city": "WINLAW", + "province": "BC", + "postal_code": "V0G2J0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Nelson Area Waldorf School Association", + "school_number": "896449", + "name": "Nelson Waldorf School", + "total_students": 115, + "address": "3648 Silverking Ski Hill Road", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L6N2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Nelson Christian School Society", + "school_number": "896710", + "name": "Nelson Christian Community School", + "total_students": 57, + "address": "570 JOHNSTONE RD", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L6J2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mormon Hills School Society", + "school_number": "896726", + "name": "Mormon Hills Elementary Secondary", + "total_students": 99, + "address": "876 LYONS RD", + "city": "CRESTON", + "province": "BC", + "postal_code": "V0B1G2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Nelson Christian School Society", + "school_number": "896749", + "name": "CHEK-ABC", + "total_students": 223, + "address": "570 JOHNSTONE RD", + "city": "NELSON", + "province": "BC", + "postal_code": "V1L6J2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "The Church Of God In Christ (Mennonite)", + "school_number": "896864", + "name": "Kootenay Valley Christian School", + "total_students": 31, + "address": "1152 21 HWY N", + "city": "CRESTON", + "province": "BC", + "postal_code": "V0B1G6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Lower Kootenay Indian Band Chief & Counc", + "school_number": "897558", + "name": "Yaqan Nukiy School", + "total_students": 86, + "address": "904 SIMON RD", + "city": "CRESTON", + "province": "BC", + "postal_code": "V0B1G2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Nelson D", + "school_number": "2096098", + "name": "St Michael's Elementary", + "total_students": 134, + "address": "1329 FOURTH AVE", + "city": "TRAIL", + "province": "BC", + "postal_code": "V1R1S3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "2296035", + "name": "Pleasant Valley Christian Academy", + "total_students": 73, + "address": "1802 45 AVE", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T3M7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Kamloops", + "school_number": "2296078", + "name": "St James", + "total_students": 161, + "address": "2700 28 AVE", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T1V7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vernon Christian School Society", + "school_number": "2296261", + "name": "Vernon Christian School", + "total_students": 460, + "address": "6920 PLEASANT VALLEY RD", + "city": "VERNON", + "province": "BC", + "postal_code": "V1B3R5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "The Bridge Educational Society", + "school_number": "2296858", + "name": "Okanagan Waldorf School", + "total_students": 45, + "address": "730 WHITEVALE RD", + "city": "LUMBY", + "province": "BC", + "postal_code": "V0E2G7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Nelson D", + "school_number": "2396013", + "name": "Immaculata Regional High School", + "total_students": 260, + "address": "1493 K.L.O. RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W3N8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "2396023", + "name": "Okanagan Christian School", + "total_students": 144, + "address": "1035 HOLLYWOOD RD S", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X4N3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Nelson D", + "school_number": "2396081", + "name": "St Joseph Elementary School", + "total_students": 352, + "address": "839 SUTHERLAND AVE", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y5X4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Kelowna Christian School", + "school_number": "2396281", + "name": "Kelowna Christian School", + "total_students": 835, + "address": "2870 BENVOULIN RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W2E3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Lakeside Educational Society Of Kelowna", + "school_number": "2396360", + "name": "Lakeside School Kelowna", + "total_students": 48, + "address": "429 COLLETT RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W1K6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Kelowna Christian Centre Society", + "school_number": "2396479", + "name": "Flex Academy", + "total_students": 233, + "address": "907 BADKE RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X5Z5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Okanagan Montessori Elementary School So", + "school_number": "2396575", + "name": "Okanagan Montessori Elementary School", + "total_students": 44, + "address": "3439 EAST KELOWNA RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1W4H1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Nelson D", + "school_number": "2396609", + "name": "Our Lady of Lourdes", + "total_students": 156, + "address": "2547 HEBERT RD", + "city": "WEST KELOWNA", + "province": "BC", + "postal_code": "V4T2J6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Studio 9 Independent School Society", + "school_number": "2396676", + "name": "Studio 9 Independent School of the Arts", + "total_students": 71, + "address": "1180 HOUGHTON RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X2C9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Aberdeen Hall Preparatory School Society", + "school_number": "2396689", + "name": "Aberdeen Hall Preparatory School", + "total_students": 250, + "address": "950 ACADEMY WAY", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1V3A4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Independent Magnet Schools", + "school_number": "2396719", + "name": "Kleos Open Learning", + "total_students": 462, + "address": "101-460 Doyle Ave.", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y0C2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Kelowna Christian Centre Society", + "school_number": "2396738", + "name": "Heritage Christian Online School", + "total_students": 4646, + "address": "905 BADKE RD", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1X5Z5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Aberdeen Hall Preparatory School Society", + "school_number": "2396825", + "name": "Aberdeen Hall Senior", + "total_students": 396, + "address": "950 ACADEMY WAY", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1V3A4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Independent Magnet Schools", + "school_number": "2396966", + "name": "The Balsam School", + "total_students": 110, + "address": "101-460 Doyle Ave.", + "city": "KELOWNA", + "province": "BC", + "postal_code": "V1Y0C2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Westbank First Nation, BC", + "school_number": "2397006", + "name": "Sensisyusten House of Learning", + "total_students": 66, + "address": "1920 QUAIL LANE", + "city": "WESTBANK", + "province": "BC", + "postal_code": "V4T2H3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "2796177", + "name": "Cariboo Adventist Academy", + "total_students": 88, + "address": "1405 SOUTH LAKESIDE DR", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G3A7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Evangelical Free Church Of Williams Lake", + "school_number": "2796263", + "name": "Maranatha Christian School", + "total_students": 79, + "address": "1278 LAKEVIEW CRES", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G1A3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Kamloops", + "school_number": "2796566", + "name": "Sacred Heart Catholic School", + "total_students": 93, + "address": "455 PIGEON AVE", + "city": "WILLIAMS LAKE", + "province": "BC", + "postal_code": "V2G4R5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Kamloops", + "school_number": "2896434", + "name": "St Ann's School", + "total_students": 105, + "address": "150 SUTHERLAND AVE", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J2J5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "North Cariboo Christian School Society", + "school_number": "2896621", + "name": "North Cariboo Christian School", + "total_students": 124, + "address": "2876 RED BLUFF RD", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J6C7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cariboo Country Congregation", + "school_number": "2896902", + "name": "Fraser River Christian School", + "total_students": 23, + "address": "8250 HWY 97 S", + "city": "QUESNEL", + "province": "BC", + "postal_code": "V2J6M4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3396149", + "name": "St Mary's", + "total_students": 186, + "address": "8909 MARY ST", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P4J4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chilliwack Christian School Society", + "school_number": "3396181", + "name": "Unity Christian School", + "total_students": 614, + "address": "50950 HACK BROWN ROAD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V4Z1K9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Canadian Reformed School Society Of Abbo", + "school_number": "3396192", + "name": "John Calvin School", + "total_students": 292, + "address": "4268 STEWART RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2R5G2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Netherlands Reformed Congregation", + "school_number": "3396209", + "name": "Timothy Christian School", + "total_students": 245, + "address": "50420 CASTLEMAN RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P6H4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "City Life Church", + "school_number": "3396251", + "name": "Highroad Academy", + "total_students": 425, + "address": "46641 CHILLIWACK CENTRAL RD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P1K3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mount Cheam Christian School Society", + "school_number": "3396354", + "name": "Mount Cheam Christian School", + "total_students": 383, + "address": "48988 YALE RD EAST", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V4Z0B2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "3396641", + "name": "Chilliwack Adventist Christian School", + "total_students": 13, + "address": "46018 RIVERSIDE DR", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P3K8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cascade Christian School Society", + "school_number": "3396824", + "name": "Cascade Christian School", + "total_students": 209, + "address": "45657 YALE ROAD", + "city": "CHILLIWACK", + "province": "BC", + "postal_code": "V2P2N1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mennonite Educational Institute Society", + "school_number": "3496020", + "name": "Mennonite Educational Institute", + "total_students": 1529, + "address": "4081 CLEARBROOK RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X2M8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Abbotsford Christian School Society", + "school_number": "3496069", + "name": "Abbotsford Christian School", + "total_students": 1261, + "address": "35011 OLD CLAYBURN RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S7L7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Christian Outreach Of Canada", + "school_number": "3496320", + "name": "Cornerstone Christian School", + "total_students": 237, + "address": "PO BOX 520 STN MAIN", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T6Z7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Church Of God In Christ (Mennonite)", + "school_number": "3496371", + "name": "Pacific Christian School", + "total_students": 19, + "address": "29623 DOWNES RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X1Z8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Dasmesh Punjabi Educational Association", + "school_number": "3496425", + "name": "Dasmesh Punjabi School", + "total_students": 908, + "address": "5930 RIVERSIDE ST", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V4X1T7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3496454", + "name": "St James", + "total_students": 221, + "address": "2767 TOWNLINE RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T5E1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3496595", + "name": "St. John Brebeuf Regional Secondary", + "total_students": 354, + "address": "2747 TOWNLINE RD", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2T5E1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "3496801", + "name": "West Coast Adventist DL School", + "total_students": 94, + "address": "PO BOX 1000 STN DEL CTR", + "city": "ABBOTSFORD", + "province": "BC", + "postal_code": "V2S4P5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "P163 Education Inc.", + "school_number": "3596003", + "name": "SKY Secondary School", + "total_students": 10, + "address": "20317 67 Ave", + "city": "Langley", + "province": "BC", + "postal_code": "V2Y1P6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Compass Community Learning Centres", + "school_number": "3596012", + "name": "COMPASS Christian Langley (Glover Rd.)", + "total_students": 17, + "address": "6866 Glover Rd", + "city": "Langley", + "province": "BC", + "postal_code": "V2Y0W9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "3596061", + "name": "Fraser Valley Adventist Academy", + "total_students": 255, + "address": "26026 48TH AVE", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W1J2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Canadian Reformed School Association Of", + "school_number": "3596289", + "name": "Credo Christian Schools", + "total_students": 470, + "address": "21846 52 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y2M7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Langley Christian School Society", + "school_number": "3596311", + "name": "Langley Christian School", + "total_students": 1267, + "address": "22930 48 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2T7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "The King'S Christian School Society", + "school_number": "3596376", + "name": "The King's School", + "total_students": 234, + "address": "PO BOX 28 STN MILNER", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Y0W9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3596458", + "name": "St Catherines School", + "total_students": 237, + "address": "20244 32 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2E1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Rose Of Sharon Ministries", + "school_number": "3596573", + "name": "Aldergrove Christian Academy", + "total_students": 26, + "address": "26245 28TH AVE", + "city": "ALDERGROVE", + "province": "BC", + "postal_code": "V4W2W3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Dogwood Independent School Society", + "school_number": "3596607", + "name": "Dogwood School", + "total_students": 40, + "address": "23328 44 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2V2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "West Coast Montessori Society", + "school_number": "3596616", + "name": "Murrayville Academy", + "total_students": 87, + "address": "21488 OLD YALE ROAD", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A4M8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Focus Foundation Of BC", + "school_number": "3596631", + "name": "Whytecliff Agile Learning Centre-Langley", + "total_students": 56, + "address": "20561 LOGAN AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V3A7R3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Satnam Education Society Of BC", + "school_number": "3596926", + "name": "Khalsa School of the Fraser Valley", + "total_students": 315, + "address": "26345 62 AVE", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V4W1L8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Fraser Valley Elementary School Society", + "school_number": "3696026", + "name": "Crescent Heights Academy", + "total_students": 623, + "address": "19533 64 Avenue", + "city": "Surrey", + "province": "BC", + "postal_code": "V3S4J3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3696075", + "name": "Our Lady of Good Counsel", + "total_students": 246, + "address": "10504 139 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T4L5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3696117", + "name": "Cloverdale Catholic School", + "total_students": 273, + "address": "17511 59 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S1P3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3696166", + "name": "Holy Cross Regional High School", + "total_students": 808, + "address": "16193 88 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1G3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Surrey Christian School Society", + "school_number": "3696266", + "name": "Surrey Christian School", + "total_students": 1056, + "address": "8888 162 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N3G1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "White Rock Christian Academy Society", + "school_number": "3696309", + "name": "White Rock Christian Academy", + "total_students": 608, + "address": "2265 152 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A4P1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3696321", + "name": "Star of the Sea", + "total_students": 469, + "address": "15024 24 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A2H8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Pacific Pentecostal Ed & Com Society", + "school_number": "3696394", + "name": "Pacific Academy", + "total_students": 1409, + "address": "10238 168 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1Z4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3696457", + "name": "St Bernadette", + "total_students": 217, + "address": "13130 65B AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W9M1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Regent Christian Academy Society", + "school_number": "3696476", + "name": "Regent Christian Academy", + "total_students": 731, + "address": "15100 66A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S2A6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Satnam Education Society Of BC", + "school_number": "3696585", + "name": "Khalsa Secondary School (Surrey)", + "total_students": 689, + "address": "10589 124 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V0B1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cornerstone Montessori School Society", + "school_number": "3696596", + "name": "Cornerstone Montessori School", + "total_students": 117, + "address": "14724 84 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S2M5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Bibleway Christian Academy Foundation", + "school_number": "3696602", + "name": "Bibleway Christian Academy", + "total_students": 63, + "address": "18657 60 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S7P4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "South Surrey Independent School Society", + "school_number": "3696610", + "name": "Southridge School", + "total_students": 699, + "address": "2656 160 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3Z0B7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Iqra Education Society", + "school_number": "3696667", + "name": "Iqra School", + "total_students": 561, + "address": "14590 116A AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3R2V1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "BC Muslim Association", + "school_number": "3696675", + "name": "Surrey Muslim School", + "total_students": 288, + "address": "119-7475 135 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W0M8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Traditional Learning Society Of BC", + "school_number": "3696720", + "name": "Traditional Learning Academy Online", + "total_students": 1419, + "address": "103-17688 66 Ave", + "city": "SURREY", + "province": "BC", + "postal_code": "V3S7X1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Guru Nanak Education Society Of BC", + "school_number": "3696797", + "name": "Sikh Academy", + "total_students": 285, + "address": "12895-85 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W0K8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Pals Society Of Canada", + "school_number": "3696814", + "name": "G.A.D. Elementary School", + "total_students": 699, + "address": "13479 77 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W6Y1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Ilearn Secondary School Society", + "school_number": "3696830", + "name": "iLearn Secondary School Society", + "total_students": 247, + "address": "618-7184 120 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W0M6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3696866", + "name": "St Matthew's Elementary", + "total_students": 240, + "address": "16065 88 AVE", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N1G3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Pacific Community Resources Society", + "school_number": "3696900", + "name": "Honour Secondary School", + "total_students": 18, + "address": "10453 WHALLEY BLVD", + "city": "SURREY", + "province": "BC", + "postal_code": "V3T5B1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Gobind Marg Charitable Trust Society", + "school_number": "3696912", + "name": "Gobind Sarvar School", + "total_students": 603, + "address": "8820 168 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4N6G7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cvc Newbridge Academy Society", + "school_number": "3696923", + "name": "Newbridge Academy", + "total_students": 26, + "address": "246-1959 152 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V4A9E3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Saint John Paul Ii Academy Society", + "school_number": "3696941", + "name": "St John Paul II Academy", + "total_students": 74, + "address": "15262 PACIFIC AVE", + "city": "WHITE ROCK", + "province": "BC", + "postal_code": "V4B1P7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Satnam Education Society Of BC", + "school_number": "3696947", + "name": "Khalsa School Old Yale Road", + "total_students": 950, + "address": "10677 124 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3V0B1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Satnam Education Society Of BC", + "school_number": "3696948", + "name": "Khalsa School Newton", + "total_students": 1233, + "address": "6933 124 ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W3W6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Al-Mustafa Islamic Association", + "school_number": "3696972", + "name": "Al-Mustafa School", + "total_students": 45, + "address": "5441 125A STREET", + "city": "SURREY", + "province": "BC", + "postal_code": "V3X1W4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "G.N. Sikh School Association", + "school_number": "3696989", + "name": "G.N. Sikh Elementary School", + "total_students": 68, + "address": "7050 120TH ST", + "city": "SURREY", + "province": "BC", + "postal_code": "V3W3M8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3796095", + "name": "Sacred Heart", + "total_students": 397, + "address": "PO BOX 10 LCD MAIN", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K3N5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3796130", + "name": "Immaculate Conception School", + "total_students": 443, + "address": "8840 119 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4C6M4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Delta Christian School Society", + "school_number": "3796132", + "name": "Delta Christian School", + "total_students": 279, + "address": "4789 53 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K2Y9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mind Montessori In Delta Society", + "school_number": "3796535", + "name": "Boundary Bay Montessori House", + "total_students": 52, + "address": "3800 72 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4K3N2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Tsawwassen Independent School Society", + "school_number": "3796694", + "name": "Southpointe Academy", + "total_students": 690, + "address": "1900 56 ST", + "city": "DELTA", + "province": "BC", + "postal_code": "V4L2B1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3896103", + "name": "St Paul School", + "total_students": 243, + "address": "8251 ST. ALBANS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2L2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Richmond Christian School Association", + "school_number": "3896178", + "name": "Richmond Christian School", + "total_students": 1091, + "address": "10260 NO. 5 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A4E5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "BC Muslim Association", + "school_number": "3896399", + "name": "BC Muslim School", + "total_students": 370, + "address": "12300 BLUNDELL RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6W1B3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Choice School For Gifted Children", + "school_number": "3896403", + "name": "Choice School For Gifted Children", + "total_students": 45, + "address": "20451 WESTMINSTER HWY", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6V1B3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3896463", + "name": "St Joseph the Worker", + "total_students": 232, + "address": "4451 WILLIAMS RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E1J7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Richmond Jewish Day School Society", + "school_number": "3896570", + "name": "Richmond Jewish Day School", + "total_students": 47, + "address": "8760 NO. 5 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2V4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cornerstone Evangelical Baptist Church", + "school_number": "3896625", + "name": "Cornerstone Christian Academy", + "total_students": 286, + "address": "7890 NO. 5 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2V2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Az-Zahraa Islamic Academy Society", + "school_number": "3896729", + "name": "Az-Zahraa Islamic Academy", + "total_students": 212, + "address": "8580 NO. 5 RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2V4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mia Montessori Academy Society", + "school_number": "3896771", + "name": "Mia Montessori Academy", + "total_students": 37, + "address": "3128 REGENT ST", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7E2M4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Ark Elementary Montessori Reggio School", + "school_number": "3896781", + "name": "Ark Elementary Montessori Reggio School", + "total_students": 29, + "address": "11371 No 3 Rd.", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V7A1X3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Group Aba Children'S Society", + "school_number": "3896843", + "name": "Fawkes Academy DL", + "total_students": 98, + "address": "1110-6900 GRAYBAR RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6W0A5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Pythagoras Academy Society", + "school_number": "3896867", + "name": "Pythagoras Academy", + "total_students": 41, + "address": "8760 No 5 Rd.", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2V4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "City Vancouver Academy Inc.", + "school_number": "3896889", + "name": "City Vancouver Academy", + "total_students": 31, + "address": "5900 NO. 3 RD UNIT 300", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X3P7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Canada Star Education Group Inc.", + "school_number": "3896909", + "name": "Canada Star Secondary School", + "total_students": 89, + "address": "11295 MELLIS DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X1L8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Maple Hill School Inc", + "school_number": "3896927", + "name": "Maple Hill School", + "total_students": 125, + "address": "120-6411 BUSWELL ST", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6Y2G5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Canada Star Education Society", + "school_number": "3896970", + "name": "Windsor Hall", + "total_students": 22, + "address": "11295 MELLIS DR", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X1L8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "0532 Education Group Ltd.", + "school_number": "3896977", + "name": "Chaoyin Bilingual School", + "total_students": 77, + "address": "10111 BIRD RD", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X1N4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St George'S School", + "school_number": "3996002", + "name": "St. George's School", + "total_students": 1211, + "address": "4175 W 29TH AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6S1V1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Crofton House School Society", + "school_number": "3996004", + "name": "Crofton House", + "total_students": 913, + "address": "3200 West 41st Ave", + "city": "Vancouver", + "province": "BC", + "postal_code": "V6N3E1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vancouver College Limited", + "school_number": "3996007", + "name": "Vancouver College", + "total_students": 1095, + "address": "5401 HUDSON ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6M0C5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "York House School Society", + "school_number": "3996011", + "name": "York House School", + "total_students": 682, + "address": "4176 ALEXANDRA ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J2V6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St. Lawrence School Limited", + "school_number": "3996014", + "name": "St. Lawrence School", + "total_students": 10, + "address": "200-1338 West Broadway", + "city": "Vancouver", + "province": "BC", + "postal_code": "V6H1H2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Jane Rowan Society", + "school_number": "3996019", + "name": "Little Flower Academy", + "total_students": 479, + "address": "4195 ALEXANDRA ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J4C6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996022", + "name": "Notre Dame Regional Secondary", + "total_students": 687, + "address": "2880 VENABLES ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K4Z6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "West Coast Christian Fellowship", + "school_number": "3996025", + "name": "West Coast Christian School", + "total_students": 98, + "address": "15 Renfrew St N", + "city": "Vancouver", + "province": "BC", + "postal_code": "V5K3N6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Royal Canadian College Society", + "school_number": "3996027", + "name": "Royal Canadian Christian School", + "total_students": 18, + "address": "8610 ASH ST", + "city": "Vancouver", + "province": "BC", + "postal_code": "V6P3M2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996030", + "name": "St. Patrick Regional Secondary", + "total_students": 438, + "address": "115 11TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5T2C1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996070", + "name": "Blessed Sacrament School", + "total_students": 196, + "address": "3020 HEATHER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z3K3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vancouver Christian School Association", + "school_number": "3996071", + "name": "Vancouver Christian", + "total_students": 943, + "address": "3496 MONS DRIVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M3E6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996077", + "name": "St Francis of Assisi", + "total_students": 209, + "address": "870 VICTORIA DR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5L4E7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vancouver Talmud Torah Association", + "school_number": "3996083", + "name": "Vancouver Talmud Torah Elementary", + "total_students": 469, + "address": "998 WEST 26TH AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z2G1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996113", + "name": "Corpus Christi School", + "total_students": 466, + "address": "2360 Waverley Avenue", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5S0J1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996128", + "name": "Our Lady Of Sorrows", + "total_students": 235, + "address": "575 SLOCAN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K3X5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996129", + "name": "Immaculate Conception School", + "total_students": 199, + "address": "3745 WEST 28TH AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6S1S5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996135", + "name": "St Andrew's", + "total_students": 174, + "address": "450 47TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W2B4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996138", + "name": "St Augustine's", + "total_students": 409, + "address": "2154 7TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6K0E3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996140", + "name": "St Francis Xavier", + "total_students": 441, + "address": "428 GREAT NORTHERN WAY", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5T4S5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996145", + "name": "St Joseph's", + "total_students": 193, + "address": "3261 FLEMING ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N3V6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996147", + "name": "St Jude's", + "total_students": 213, + "address": "2953 15TH AVE E", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5M2K7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996150", + "name": "St Mary's", + "total_students": 292, + "address": "5239 JOYCE ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R4G8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996161", + "name": "St Patrick's Elementary", + "total_students": 181, + "address": "2850 QUEBEC ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5T3A9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996173", + "name": "Our Lady of Perpetual Help", + "total_students": 430, + "address": "2550 CAMOSUN ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6R3W6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vancouver Montessori School Society", + "school_number": "3996225", + "name": "Vancouver Montessori School", + "total_students": 144, + "address": "8650 BARNARD ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P5G5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Columbia College Society", + "school_number": "3996319", + "name": "Columbia College", + "total_students": 50, + "address": "438 TERMINAL AVE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6A0C1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vancouver Hebrew Academy Society", + "school_number": "3996322", + "name": "Vancouver Hebrew Academy", + "total_students": 27, + "address": "1545 62ND AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P2E8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Fraser Academy Association", + "school_number": "3996332", + "name": "Fraser Academy", + "total_students": 263, + "address": "2294 10TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6K2H8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Coquitlam College Inc", + "school_number": "3996349", + "name": "Coquitlam College - Brookmere Secondary", + "total_students": 32, + "address": "300-2920 Virtual Way", + "city": "Vancouver", + "province": "BC", + "postal_code": "V5M0C4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sjs St John'S School Society", + "school_number": "3996435", + "name": "St. John's School", + "total_students": 551, + "address": "2215 10TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6K2J1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Maimonides School Society", + "school_number": "3996451", + "name": "King David High School", + "total_students": 268, + "address": "5718 WILLOW ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z4S9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "New Learning Society", + "school_number": "3996475", + "name": "Pacific Spirit School", + "total_students": 61, + "address": "PO BOX 34058", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J4M1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vancouver Formosa Academy Ltd", + "school_number": "3996509", + "name": "Vancouver Formosa Academy", + "total_students": 11, + "address": "5621 KILLARNEY ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5R3W4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St John'S International School Ltd", + "school_number": "3996527", + "name": "St. John's Academy", + "total_students": 43, + "address": "369 BOUNDARY RD", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5K4S1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Madrona School Society", + "school_number": "3996594", + "name": "Madrona School", + "total_students": 55, + "address": "2064 WEST 10TH AVENUE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J2B3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "West Point Grey Academy", + "school_number": "3996645", + "name": "West Point Grey Academy", + "total_students": 912, + "address": "4125 WEST 8TH AVENUE", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6R4P9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Century High School (2003) Ltd", + "school_number": "3996659", + "name": "Century High School", + "total_students": 49, + "address": "1788 BROADWAY W UNIT 200", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6J1Y1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "3996662", + "name": "St Anthony of Padua", + "total_students": 227, + "address": "1370 73RD AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6P3E8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Westside Montessori School (2011) Ltd", + "school_number": "3996683", + "name": "Westside Montessori School", + "total_students": 16, + "address": "4157 OAK ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6H2N1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Stratford Hall (School) Society", + "school_number": "3996692", + "name": "Stratford Hall", + "total_students": 538, + "address": "3000 Commercial Drive", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5N4E2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Lions Gate Montessori Society", + "school_number": "3996693", + "name": "Anchor Point Montessori", + "total_students": 52, + "address": "PO BOX 32138", + "city": "RICHMOND", + "province": "BC", + "postal_code": "V6X3R9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Selfdesign Learning Foundation", + "school_number": "3996721", + "name": "SelfDesign Learning Community (DL)", + "total_students": 1988, + "address": "PO BOX 74560 RPO KITSILANO", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6K4P4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Timesing Education Group Inc", + "school_number": "3996733", + "name": "Pattison High School", + "total_students": 80, + "address": "981 NELSON ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6Z3B6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Eaton Arrowsmith School Vancouver", + "school_number": "3996764", + "name": "Eaton Arrowsmith School (Vancouver) Ltd", + "total_students": 10, + "address": "660C Leg-in-Boot Square", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z4B3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Westside Montessori Academy Society", + "school_number": "3996810", + "name": "Westside Montessori Academy", + "total_students": 95, + "address": "Suite 300", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5W2Z4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Alexander Academy Corporation", + "school_number": "3996870", + "name": "Alexander Academy", + "total_students": 109, + "address": "570 DUNSMUIR ST SUITE 400", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6B1Y1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Columbia Academy Inc.", + "school_number": "3996895", + "name": "Columbia Academy", + "total_students": 68, + "address": "792 BEATTY ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6B2M1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Lowell High School Inc.", + "school_number": "3996899", + "name": "Lowell High School", + "total_students": 21, + "address": "210-750 HAMILTON ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6B2R5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Zawiyah Foundation", + "school_number": "3996901", + "name": "Qawsain Knowledge House", + "total_students": 40, + "address": "PO BOX 75044", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5X4V7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Pear Tree Education Inc.", + "school_number": "3996918", + "name": "Pear Tree School", + "total_students": 76, + "address": "215-2678 BROADWAY W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6K2G3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cira High School Inc.", + "school_number": "3996925", + "name": "Canada Royal Arts High School", + "total_students": 86, + "address": "896 8TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z1E2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Claren Academy Society", + "school_number": "3996930", + "name": "Claren Academy", + "total_students": 66, + "address": "201-1085 HOMER ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6B1J4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Westside Montessori School Society", + "school_number": "3996937", + "name": "Westside Montessori Elementary School", + "total_students": 41, + "address": "4157 Oak St", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6H2N1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "New Castle Institute Of English Research", + "school_number": "3996944", + "name": "St Regis Secondary School", + "total_students": 82, + "address": "6145 Student Union Boulevard", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6T1Z1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Oakridge Montessori School Inc", + "school_number": "3996963", + "name": "Oakridge Montessori Children's Learning", + "total_students": 49, + "address": "619 45TH AVE W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V5Z4G2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Johnathan Academy Incorporated", + "school_number": "3996964", + "name": "Johnathan Academy", + "total_students": 19, + "address": "400-5750 OAK ST", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6M2V9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Hongde Education Society", + "school_number": "3996973", + "name": "Hongde Elementary", + "total_students": 16, + "address": "100-688 HASTINGS ST W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6B1P1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Visst Society", + "school_number": "3996980", + "name": "VISST", + "total_students": 60, + "address": "200-1490 BROADWAY W", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6H4E8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Lower Mainland Purpose Society For Youth", + "school_number": "4096707", + "name": "Purpose Independent Secondary School", + "total_students": 85, + "address": "40 BEGBIE ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M3L9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Urban Academy Society", + "school_number": "4096708", + "name": "Urban Academy Junior", + "total_students": 303, + "address": "466 ROUSSEAU ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L3R3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Multicultural Vancouver Projects Society", + "school_number": "4096747", + "name": "Al-Hidayah School", + "total_students": 80, + "address": "7 - 6TH ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L2Y7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "John Knox Christian School Association", + "school_number": "4096766", + "name": "John Knox Christian - Secondary Campus", + "total_students": 327, + "address": "260 12TH STREET", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3M4H2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Pals Autism Society", + "school_number": "4096785", + "name": "PALS Autism Society (School Program)", + "total_students": 23, + "address": "101 THIRD ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L2P9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Urban Academy Society", + "school_number": "4096946", + "name": "Urban Academy Senior", + "total_students": 107, + "address": "466 ROUSSEAU ST", + "city": "NEW WESTMINSTER", + "province": "BC", + "postal_code": "V3L3R3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Compass Community Learning Centres", + "school_number": "4096982", + "name": "COMPASS Christian New West", + "total_students": 41, + "address": "101-4644 240 ST", + "city": "LANGLEY", + "province": "BC", + "postal_code": "V2Z2M7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St Thomas More Collegiate Ltd", + "school_number": "4196031", + "name": "St. Thomas More Collegiate", + "total_students": 706, + "address": "7450 12TH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N2K1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4196072", + "name": "Holy Cross Elementary School", + "total_students": 250, + "address": "1450 DELTA AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5B3G2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4196085", + "name": "Our Lady of Mercy", + "total_students": 236, + "address": "7481 10TH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N2S1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4196118", + "name": "St. Michaels", + "total_students": 234, + "address": "9387 HOLMES ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N4C3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4196139", + "name": "St. Francis de Sales", + "total_students": 229, + "address": "6656 BALMORAL ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5E1J1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4196141", + "name": "St. Helen's", + "total_students": 324, + "address": "3871 PANDORA ST.", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C2A6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "4196169", + "name": "Deer Lake SDA School", + "total_students": 299, + "address": "5550 GILPIN ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5G2H6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "John Knox Christian School Association", + "school_number": "4196182", + "name": "John Knox Christian - Elementary Campus", + "total_students": 468, + "address": "8260 13TH AVE", + "city": "BURNABY", + "province": "BC", + "postal_code": "V3N2G5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Burnaby Montessori Elem School Society", + "school_number": "4196636", + "name": "Burnaby Montessori School", + "total_students": 15, + "address": "5489 KINGSWAY", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5H2G1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Focus Foundation Of BC", + "school_number": "4196753", + "name": "Whytecliff Agile Learning Centre-Burnaby", + "total_students": 37, + "address": "3450 BOUNDARY RD", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5M4A5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Group Aba Children'S Society", + "school_number": "4196910", + "name": "Fawkes Academy", + "total_students": 59, + "address": "103-4181 HASTINGS ST", + "city": "BURNABY", + "province": "BC", + "postal_code": "V5C2J3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Haney-Pitt Meadows Christian School", + "school_number": "4296099", + "name": "Maple Ridge Christian School", + "total_students": 382, + "address": "12140 204B ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X2Z5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4296153", + "name": "St Patrick's", + "total_students": 232, + "address": "22589 121 AVE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X3T5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Fraser Valley Society", + "school_number": "4296369", + "name": "James Cameron School", + "total_students": 58, + "address": "PO BOX 157 STN MAPLE RIDGE", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X7G1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Meadowridge School Society", + "school_number": "4296400", + "name": "Meadowridge School", + "total_students": 630, + "address": "12224 240 ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V4R1N1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Meadow Montessori School", + "school_number": "4296468", + "name": "Meadow Montessori", + "total_students": 56, + "address": "11391 DARTFORD ST", + "city": "MAPLE RIDGE", + "province": "BC", + "postal_code": "V2X1V6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Canyon Springs Montessori School Society", + "school_number": "4296681", + "name": "Canyon Springs Montessori Academy", + "total_students": 18, + "address": "18477 OLD DEWDNEY TRUNK RD", + "city": "PITT MEADOWS", + "province": "BC", + "postal_code": "V3Y1Z1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4396074", + "name": "Our Lady of Fatima", + "total_students": 339, + "address": "315 WALKER ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K4C7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4396137", + "name": "Queen of All Saints Elementary", + "total_students": 226, + "address": "1405 COMO LAKE AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J3P4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4396380", + "name": "Our Lady of the Assumption", + "total_students": 241, + "address": "2255 FRASER AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B6G8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "BC Christian Academy Society", + "school_number": "4396579", + "name": "British Columbia Christian Academy", + "total_students": 543, + "address": "1019 FERNWOOD AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B5A8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Traditional Learning Society Of BC", + "school_number": "4396588", + "name": "Traditional Learning Academy", + "total_students": 179, + "address": "1189 ROCHESTER AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3K2X3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4396629", + "name": "Archbishop Carney Regional Secondary", + "total_students": 676, + "address": "1335 DOMINION AVE", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B8G7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Hope Lutheran Church Of Port Coquitlam", + "school_number": "4396635", + "name": "Hope Lutheran Christian School", + "total_students": 270, + "address": "3151 YORK ST", + "city": "PORT COQUITLAM", + "province": "BC", + "postal_code": "V3B4A7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mle Training And Research Society", + "school_number": "4396727", + "name": "Greater Heights Learning Academy", + "total_students": 50, + "address": "550 THOMPSON AVE", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3J3Z8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Coima Montessori Society", + "school_number": "4396806", + "name": "Children of Integrity Montessori", + "total_students": 60, + "address": "2541 QUAY PL", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V3H3S7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Royal Bridge High School Inc", + "school_number": "4396924", + "name": "Royal Bridge High School", + "total_students": 33, + "address": "301-1123 WESTWOOD ST", + "city": "COQUITLAM", + "province": "BC", + "postal_code": "V5H4G5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4496062", + "name": "St. Thomas Aquinas", + "total_students": 596, + "address": "541 KEITH RD W", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7M1M5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4496120", + "name": "Holy Trinity School", + "total_students": 218, + "address": "128 27TH ST W", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7N2H1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4496151", + "name": "St. Edmund's", + "total_students": 177, + "address": "535 MAHON AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7M2R7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Society For Children With Disabilities", + "school_number": "4496204", + "name": "Kenneth Gordon", + "total_students": 145, + "address": "420 SEYMOUR RIVER PL", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7H1S8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Vancouver Waldorf School Society", + "school_number": "4496214", + "name": "Vancouver Waldorf School", + "total_students": 224, + "address": "2725 ST. CHRISTOPHER'S RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7K2B6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Bodwell High School Inc.", + "school_number": "4496551", + "name": "Bodwell High School", + "total_students": 416, + "address": "955 Harbourside Drive", + "city": "North Vancouver", + "province": "BC", + "postal_code": "V7P3S4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Lions Gate Christian Academy Association", + "school_number": "4496606", + "name": "Lions Gate Christian Academy", + "total_students": 345, + "address": "919 TOLLCROSS RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7H2G3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "L'Ecole Francaise Int'L De Vancouver", + "school_number": "4496638", + "name": "Cousteau L'ecole Francaise Interna'le", + "total_students": 181, + "address": "3657 FROMME RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7K2E6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4496652", + "name": "St. Pius X Elementary School", + "total_students": 218, + "address": "1150 MT. SEYMOUR ROAD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7G1R6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "North Star Montessori Elementary Society", + "school_number": "4496654", + "name": "North Star Montessori Elementary School", + "total_students": 50, + "address": "1325 KEITH RD E", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7J1J3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Brockton Preparatory School Society", + "school_number": "4496739", + "name": "Brockton Preparatory School", + "total_students": 318, + "address": "3467 DUVAL RD", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7J3E8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St Alcuin College For The Liberal Arts", + "school_number": "4496861", + "name": "St. Alcuin College for the Liberal Arts", + "total_students": 112, + "address": "200-1046 ST. GEORGES AVE", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7L3H6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sap Outdoor Association", + "school_number": "4496978", + "name": "Saplings Nature School", + "total_students": 34, + "address": "1390 W22ND STREET", + "city": "NORTH VANCOUVER", + "province": "BC", + "postal_code": "V7P2G4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4596076", + "name": "St. Anthony's", + "total_students": 194, + "address": "595 KEITH RD", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7T1L8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Collingwood School Society", + "school_number": "4596367", + "name": "Collingwood School", + "total_students": 1222, + "address": "70 MORVEN DR", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7S1B2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Island Pacific School Society", + "school_number": "4596639", + "name": "Island Pacific School", + "total_students": 47, + "address": "671 CARTER ROAD", + "city": "BOWEN ISLAND", + "province": "BC", + "postal_code": "V0N1G0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mulgrave Independent School Society", + "school_number": "4596701", + "name": "Mulgrave School", + "total_students": 942, + "address": "2330 CYPRESS BOWL LANE", + "city": "WEST VANCOUVER", + "province": "BC", + "postal_code": "V7S3H9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Vancouve", + "school_number": "4796088", + "name": "Assumption School", + "total_students": 114, + "address": "7091 GLACIER ST", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A1R8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Powell River Christian School Society", + "school_number": "4796622", + "name": "Powell River Christian School", + "total_students": 121, + "address": "6960 QUESNEL ST", + "city": "POWELL RIVER", + "province": "BC", + "postal_code": "V8A1J2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Whistler Waldorf School Society", + "school_number": "4896700", + "name": "Whistler Waldorf School", + "total_students": 163, + "address": "PO BOX 1501", + "city": "WHISTLER", + "province": "BC", + "postal_code": "V0N1B0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Squamish Waldorf School Association", + "school_number": "4896709", + "name": "Squamish Waldorf School", + "total_students": 66, + "address": "38265 WESTWAY AVE", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0Y5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Squamish Montessori Society", + "school_number": "4896826", + "name": "Skyridge Montessori Elementary", + "total_students": 125, + "address": "41273 HORIZON DR", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0Y7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Coast Mountain Academy Society", + "school_number": "4896871", + "name": "Coast Mountain Academy", + "total_students": 127, + "address": "3295 MAMQUAM RD", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0T8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sea To Sky Montessori Society", + "school_number": "4896974", + "name": "Sea to Sky Montessori School", + "total_students": 32, + "address": "103-42000 Loggers Lane", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0H3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Global Impact Education Corporation", + "school_number": "4896976", + "name": "Phoenix Magnet Academy", + "total_students": 23, + "address": "3190 UNIVERSITY BOULEVARD", + "city": "SQUAMISH", + "province": "BC", + "postal_code": "V8B0P8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Bella Bella Community School Society", + "school_number": "4997012", + "name": "Bella Bella Community School", + "total_students": 242, + "address": "GENERAL DELIVERY", + "city": "BELLA BELLA", + "province": "BC", + "postal_code": "V0T1Z0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Nuxalk Acwsalcmalslayc Society", + "school_number": "4997170", + "name": "Acwsalcta Band School", + "total_students": 167, + "address": "PO BOX 778", + "city": "BELLA COOLA", + "province": "BC", + "postal_code": "V0T1C0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Daajing Giids Youth Education Society", + "school_number": "5096623", + "name": "Living And Learning School", + "total_students": 23, + "address": "PO BOX 850", + "city": "Daajing Giids", + "province": "BC", + "postal_code": "V0T1S0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "5296122", + "name": "Annunciation School", + "total_students": 210, + "address": "627 5TH AVE W", + "city": "PRINCE RUPERT", + "province": "BC", + "postal_code": "V8J1V1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Senpokchin Education Society", + "school_number": "5397491", + "name": "Senpaq'cin School", + "total_students": 98, + "address": "1155 SENPOKCHIN BLVD", + "city": "OLIVER", + "province": "BC", + "postal_code": "V0H1T8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Canadian Reformed School Association Of", + "school_number": "5496064", + "name": "Ebenezer Canadian Reformed School", + "total_students": 251, + "address": "PO BOX 3700", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Christian School Society Of Houston", + "school_number": "5496091", + "name": "Houston Christian School", + "total_students": 161, + "address": "PO BOX 237", + "city": "HOUSTON", + "province": "BC", + "postal_code": "V0J1Z0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Bulkley Valley Christian School Society", + "school_number": "5496124", + "name": "Bulkley Valley Christian School", + "total_students": 284, + "address": "PO BOX 3635", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "5496157", + "name": "St Joseph's", + "total_students": 170, + "address": "PO Box 454", + "city": "Smithers", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Bulkley Valley Christian School Society", + "school_number": "5496782", + "name": "Bulkley Valley Christian Online School", + "total_students": 34, + "address": "PO BOX 3635", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "5796144", + "name": "Sacred Heart", + "total_students": 173, + "address": "785 PATRICIA BLVD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2L3V5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "5796160", + "name": "St. Mary's", + "total_students": 208, + "address": "1088 GILLETT ST", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M2V3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "5796170", + "name": "Robson Valley Junior Academy", + "total_students": 10, + "address": "PO BOX 550", + "city": "MCBRIDE", + "province": "BC", + "postal_code": "V0J2E0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Cedars Christian School", + "school_number": "5796230", + "name": "Cedars Christian School", + "total_students": 455, + "address": "600 PRESTON ROAD", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2K1A8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "5796310", + "name": "Immaculate Conception", + "total_students": 200, + "address": "3285 CATHEDRAL AVE", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N6R4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Westside Family Fellowship Society", + "school_number": "5796491", + "name": "Westside Academy", + "total_students": 166, + "address": "3791 HIGHWAY 16 W", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2N5P8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Zion Lutheran Church & Christian School", + "school_number": "5796684", + "name": "Zion Lutheran Christian School", + "total_students": 34, + "address": "180 TABOR BLVD S", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V2M5T4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Diversity By Design Society", + "school_number": "5796841", + "name": "Pathways Academy", + "total_students": 281, + "address": "BOX 10096 RPO HART", + "city": "PRINCE GEORGE", + "province": "BC", + "postal_code": "V0E1Y0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chief & Councillors Of Upper Nicola Band", + "school_number": "5897019", + "name": "Nkwala School", + "total_students": 10, + "address": "PO BOX 3700", + "city": "MERRITT", + "province": "BC", + "postal_code": "V1K1B8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chief & Council Of Lower Nicola Ind Band", + "school_number": "5897032", + "name": "Lower Nicola Band School", + "total_students": 92, + "address": "201 Horn Rd", + "city": "Merritt", + "province": "BC", + "postal_code": "V1K1M9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "5996172", + "name": "Notre Dame", + "total_students": 201, + "address": "925 104 AVE", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G2H8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "5996188", + "name": "Peace Christian School", + "total_students": 112, + "address": "PO BOX 2050", + "city": "CHETWYND", + "province": "BC", + "postal_code": "V0C1J0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mountain Christian School Society", + "school_number": "5996252", + "name": "Mountain Christian School", + "total_students": 279, + "address": "9700 5 ST", + "city": "DAWSON CREEK", + "province": "BC", + "postal_code": "V1G3L4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Christian Life Centre Of Fort St John", + "school_number": "6096473", + "name": "Christian Life School", + "total_students": 138, + "address": "8923 112 AVE", + "city": "FORT ST JOHN", + "province": "BC", + "postal_code": "V1J6G2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Freedom Thinkers Education Pbl Society", + "school_number": "6096911", + "name": "Freedom Thinkers Education", + "total_students": 92, + "address": "5730 BALDONNEL RD", + "city": "BALDONNEL", + "province": "BC", + "postal_code": "V0C1C6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chabad Of Vancouver Island", + "school_number": "6196001", + "name": "Kineret Tamim Academy", + "total_students": 10, + "address": "2955 Glasgow St", + "city": "Victoria", + "province": "BC", + "postal_code": "V8T4H1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St. Michaels University School Society", + "school_number": "6196008", + "name": "St. Michaels University School", + "total_students": 1010, + "address": "3400 RICHMOND RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8P4P5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St Margaret'S School", + "school_number": "6196010", + "name": "St. Margaret's", + "total_students": 267, + "address": "1080 LUCAS AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8X3P7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Glenlyon Norfolk School Society", + "school_number": "6196021", + "name": "Glenlyon Norfolk School", + "total_students": 730, + "address": "781 RICHMOND AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8S3Z2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Victoria Christian Education Society", + "school_number": "6196084", + "name": "Pacific Christian School", + "total_students": 805, + "address": "654 AGNES ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z2E6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of The Dioc", + "school_number": "6196107", + "name": "St Joseph's Catholic", + "total_students": 373, + "address": "757 BURNSIDE RD W", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z1M9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of The Dioc", + "school_number": "6196154", + "name": "St Patrick's School", + "total_students": 321, + "address": "2368 TRENT ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R4Z3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Discovery School Society", + "school_number": "6196265", + "name": "Discovery School", + "total_students": 79, + "address": "4052 WILKINSON RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Z5A5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of The Dioc", + "school_number": "6196341", + "name": "St Andrew's Regional High", + "total_students": 424, + "address": "880 MCKENZIE AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8X3G5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Pacific Montessori Society", + "school_number": "6196347", + "name": "Selkirk Montessori School", + "total_students": 253, + "address": "2970 JUTLAND RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T5K2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Maharishi Age Of Enlightenment Society", + "school_number": "6196395", + "name": "Victoria School for Ideal Education", + "total_students": 80, + "address": "2820 BELMONT AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R4B1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Int'L Assoc Of Progressive Montessorians", + "school_number": "6196427", + "name": "Maria Montessori Academy", + "total_students": 246, + "address": "1841 FAIRBURN DR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N1P8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Christ Church Cathedral Ed Society", + "school_number": "6196520", + "name": "Christ Church Cathedral School", + "total_students": 162, + "address": "912 VANCOUVER ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8V3V7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Bioregional Education Association", + "school_number": "6196695", + "name": "Oak and Orca Bioregional School", + "total_students": 21, + "address": "2738 Higgins Street", + "city": "Victoria", + "province": "BC", + "postal_code": "V8T3N1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Bioregional Education Association", + "school_number": "6196745", + "name": "Oak and Orca School (DL)", + "total_students": 157, + "address": "2738 HIGGINS ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T3N1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Artemis Place Society", + "school_number": "6196827", + "name": "Artemis Place Secondary", + "total_students": 45, + "address": "3020 RICHMOND RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8R4V1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Learningstorm Education Society", + "school_number": "6196868", + "name": "Pacific School of Innovation and Inquiry", + "total_students": 89, + "address": "100-808 DOUGLAS ST", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8W2B6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Artscalibre Foundation", + "school_number": "6196891", + "name": "ArtsCalibre Academy", + "total_students": 39, + "address": "2625 ARBUTUS RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8N1W4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Epiphyte Educational Society", + "school_number": "6196975", + "name": "VI School of Innovation and Inquiry", + "total_students": 21, + "address": "1309 HILLSIDE AVE", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8T2B3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Western Communities Montessori Society", + "school_number": "6296432", + "name": "Westmont School", + "total_students": 223, + "address": "4075 METCHOSIN RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9C4A4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Lighthouse Christian Academy Society", + "school_number": "6296461", + "name": "Lighthouse Christian Academy", + "total_students": 196, + "address": "1289 PARKDALE DR", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B4G9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Brookes Westshore School Society", + "school_number": "6296945", + "name": "Brookes Westshore", + "total_students": 300, + "address": "1939 SOOKE RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V9B1W2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "6396127", + "name": "Lakeview Christian School", + "total_students": 62, + "address": "729 CORDOVA BAY RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8Y1P7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Regent Christian Academy Society", + "school_number": "6396767", + "name": "Regent Christian Online Academy", + "total_students": 1043, + "address": "107-19 DALLAS RD", + "city": "VICTORIA", + "province": "BC", + "postal_code": "V8V5A6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Nelson D", + "school_number": "6796080", + "name": "Holy Cross School", + "total_students": 215, + "address": "1298 MAIN ST", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A5G2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Penticton Christian School Society", + "school_number": "6796500", + "name": "Penticton Christian School", + "total_students": 86, + "address": "102-96 EDMONTON AVE", + "city": "PENTICTON", + "province": "BC", + "postal_code": "V2A2G8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "South Okanagan Montessori School Society", + "school_number": "6796687", + "name": "Summerland Montessori School", + "total_students": 58, + "address": "BOX 603", + "city": "SUMMERLAND", + "province": "BC", + "postal_code": "V0H1Z0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Unisus International Schools Society", + "school_number": "6796942", + "name": "Unisus Junior School", + "total_students": 73, + "address": "7808 PIERRE DR", + "city": "SUMMERLAND", + "province": "BC", + "postal_code": "V0H1Z2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Unisus International School Ltd", + "school_number": "6796951", + "name": "Unisus Senior School", + "total_students": 51, + "address": "7808 PIERRE DR", + "city": "SUMMERLAND", + "province": "BC", + "postal_code": "V0H1Z2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Discover Montessori Society", + "school_number": "6896229", + "name": "Discover Montessori School", + "total_students": 141, + "address": "3460 JINGLE POT RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R6W9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Nanaimo Christian School (1988) Society", + "school_number": "6896256", + "name": "Nanaimo Christian School", + "total_students": 687, + "address": "198 HOLLAND RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9R6W2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Central Island Independent Sch Society", + "school_number": "6896730", + "name": "Aspengrove School", + "total_students": 265, + "address": "7660 CLARK DR", + "city": "LANTZVILLE", + "province": "BC", + "postal_code": "V0R2H0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Stz'Uminus Education Society", + "school_number": "6897002", + "name": "Stz'uminus Senior Secondary", + "total_students": 42, + "address": "3891 SHELL BEACH RD", + "city": "LADYSMITH", + "province": "BC", + "postal_code": "V9G1K6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Coast Karma Learning Society", + "school_number": "6996000", + "name": "Coast Karma Academy", + "total_students": 60, + "address": "PO Box 309", + "city": "Qualicum Beach", + "province": "BC", + "postal_code": "V9K1S8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Arrowsmith Independent School Society", + "school_number": "6996656", + "name": "Arrowsmith Independent School", + "total_students": 46, + "address": "861 HILLIERS RD", + "city": "QUALICUM BEACH", + "province": "BC", + "postal_code": "V9K1X5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of The Dioc", + "school_number": "7096763", + "name": "John Paul II Catholic School", + "total_students": 148, + "address": "4006 8TH AVE", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y4S4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Ahousat Education Authority", + "school_number": "7097045", + "name": "Maaqtusiis Secondary", + "total_students": 95, + "address": "627 HEMLOCK DRIVE", + "city": "AHOUSAHT", + "province": "BC", + "postal_code": "V0R1A0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Haahuupayak Society", + "school_number": "7097093", + "name": "Haahuupayak School", + "total_students": 154, + "address": "6000 SANTU DR", + "city": "PORT ALBERNI", + "province": "BC", + "postal_code": "V9Y8X9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Ahousat Education Authority", + "school_number": "7097490", + "name": "Maaqtusiis Elementary", + "total_students": 101, + "address": "GENERAL DELIVERY", + "city": "AHOUSAHT", + "province": "BC", + "postal_code": "V0R1A0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Northgate Christian Education Society", + "school_number": "7196327", + "name": "Phil & Jennie Gaglardi Academy", + "total_students": 288, + "address": "1475 NOEL AVE", + "city": "COMOX", + "province": "BC", + "postal_code": "V9M3H8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Beachcombers Education Society", + "school_number": "7196822", + "name": "Beachcombers Academy", + "total_students": 63, + "address": "7375 ISLAND HIGHWAY", + "city": "FANNY BAY", + "province": "BC", + "postal_code": "V0R1W0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Campbell River Christian School Society", + "school_number": "7296335", + "name": "Campbell River Christian School", + "total_students": 234, + "address": "250 SOUTH DOGWOOD ST", + "city": "CAMPBELL RIVER", + "province": "BC", + "postal_code": "V9W6Y7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Kamloops", + "school_number": "7396094", + "name": "Our Lady of Perpetual Help", + "total_students": 150, + "address": "235 POPLAR ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B4B9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Kamloops", + "school_number": "7396194", + "name": "St. Ann's Academy", + "total_students": 376, + "address": "205 COLUMBIA ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C2S7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Kamloops Christian School Association", + "school_number": "7396280", + "name": "Kamloops Christian School", + "total_students": 304, + "address": "750 COTTONWOOD AVE", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B3X2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of Kamloops", + "school_number": "7396838", + "name": "Ascend Online Distributed Learning Prg.", + "total_students": 654, + "address": "635A TRANQUILLE RD", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2B3H5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "The First Baptist Church, Kamloops BC", + "school_number": "7396939", + "name": "First Baptist Classical Academy of Kamlo", + "total_students": 70, + "address": "454 COLUMBIA ST", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2C2T5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chief & Council Kamloops Indian Band", + "school_number": "7397036", + "name": "Sk'elep School of Excellence", + "total_students": 124, + "address": "365 POW WOW TRAIL", + "city": "KAMLOOPS", + "province": "BC", + "postal_code": "V2H1H1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Fountainview Academy Association", + "school_number": "7496333", + "name": "Fountainview Academy", + "total_students": 77, + "address": "PO BOX 500", + "city": "LILLOOET", + "province": "BC", + "postal_code": "V0K1V0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Stein Valley Nlakapamux School Society", + "school_number": "7497493", + "name": "Stein Valley Nlakapamux School", + "total_students": 117, + "address": "BAG 300", + "city": "LYTTON", + "province": "BC", + "postal_code": "V0K1Z0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Seminary Of Christ The King", + "school_number": "7596034", + "name": "Seminary of Christ the King", + "total_students": 23, + "address": "PO BOX 3310", + "city": "MISSION", + "province": "BC", + "postal_code": "V2V4J5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Valley Christian School Society", + "school_number": "7596460", + "name": "Valley Christian School", + "total_students": 143, + "address": "8955 CEDAR ST", + "city": "MISSION", + "province": "BC", + "postal_code": "V4S1A3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Valley Christian School Society", + "school_number": "7596839", + "name": "Valley Christian Online School", + "total_students": 24, + "address": "8955 CEDAR ST", + "city": "MISSION", + "province": "BC", + "postal_code": "V4S1A3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Agassiz Christian School Society", + "school_number": "7896105", + "name": "Agassiz Christian School", + "total_students": 94, + "address": "7571 MORROW RD", + "city": "AGASSIZ", + "province": "BC", + "postal_code": "V0M1A2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Brentwood College Association", + "school_number": "7996005", + "name": "Brentwood College", + "total_students": 521, + "address": "2735 MT BAKER RD", + "city": "MILL BAY", + "province": "BC", + "postal_code": "V0R2P1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Shawnigan Lake School Society", + "school_number": "7996006", + "name": "Shawnigan Lake", + "total_students": 549, + "address": "1975 RENFREW RD", + "city": "SHAWNIGAN LAKE", + "province": "BC", + "postal_code": "V8H2G7" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Queen Margaret'S School", + "school_number": "7996017", + "name": "Queen Margaret's", + "total_students": 523, + "address": "660 BROWNSEY AVE", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L1C2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Duncan Christian School Association", + "school_number": "7996086", + "name": "Duncan Christian School", + "total_students": 447, + "address": "495 BEECH AVE", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L3J8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Of The Dioc", + "school_number": "7996167", + "name": "Queen of Angels School", + "total_students": 246, + "address": "2085 MAPLE BAY RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L5L9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sunrise Educational Society", + "school_number": "7996368", + "name": "Sunrise Waldorf School", + "total_students": 153, + "address": "2148 LAKESIDE RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L6M3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Evergreen Independent School Society", + "school_number": "7996446", + "name": "Evergreen Independent School", + "total_students": 57, + "address": "3515 Watson Ave", + "city": "COBBLE HILL", + "province": "BC", + "postal_code": "V8H4A8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Noorunissa Montessori Academy Of Canada", + "school_number": "7996959", + "name": "Noorunissa Montessori Academy of Canada", + "total_students": 22, + "address": "2375 KOKSILAH RD", + "city": "DUNCAN", + "province": "BC", + "postal_code": "V9L6M5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "St John'S Academy Shawnigan Lake Society", + "school_number": "7996965", + "name": "St John's Preparatory Academy Shawnigan", + "total_students": 195, + "address": "2371 SHAWNIGAN LAKE RD", + "city": "SHAWNIGAN LAKE", + "province": "BC", + "postal_code": "V8H2H1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Penelakut Island Learning Centre Society", + "school_number": "7997497", + "name": "Penelakut Island Learning Centre", + "total_students": 61, + "address": "11330 CLAM BAY ROAD NORTH", + "city": "PENELAKUT", + "province": "BC", + "postal_code": "V0R5K0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chalo Independent School Society", + "school_number": "8197137", + "name": "Chalo School", + "total_students": 106, + "address": "295 ALASKA HIGHWAY", + "city": "FORT NELSON", + "province": "BC", + "postal_code": "V0C1R0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "8296115", + "name": "St Anthony's", + "total_students": 212, + "address": "1750 NALABILA BLVD", + "city": "KITIMAT", + "province": "BC", + "postal_code": "V8C1E6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools Diocese Of", + "school_number": "8296162", + "name": "Veritas Catholic", + "total_students": 237, + "address": "4836 STRAUME AVE", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G4G3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Terrace Calvin Christian School Society", + "school_number": "8296183", + "name": "Centennial Christian School", + "total_students": 190, + "address": "3608 SPARKS ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G2V6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Mountain View Christian Academy Society", + "school_number": "8296731", + "name": "Mountain View Christian Academy", + "total_students": 51, + "address": "3306 GRIFFITH ST", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G0C6" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Gitsegukla Community Education Develop.", + "school_number": "8297020", + "name": "Gitsegukla Elementary School", + "total_students": 41, + "address": "305 PARK DR", + "city": "GITSEGUKLA", + "province": "BC", + "postal_code": "V0J2J3" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chief & Councillors Of The Kitsumkalum", + "school_number": "8297024", + "name": "'Na Aksa Gyilak'yoo School", + "total_students": 73, + "address": "3529 WEST KALUM RD", + "city": "TERRACE", + "province": "BC", + "postal_code": "V8G0C8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Anspayaxw School Society", + "school_number": "8297051", + "name": "Kispiox Community School", + "total_students": 145, + "address": "1439 MARY BLACKWATER DR", + "city": "KISPIOX", + "province": "BC", + "postal_code": "V0J1Y4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Kyah Wiget Education Society", + "school_number": "8297485", + "name": "Witset Elementary & Secondary School", + "total_students": 84, + "address": "205 BEAVER RD UNIT 2", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "8396116", + "name": "North Okanagan Junior Academy", + "total_students": 58, + "address": "4699 SOUTH GRANDVIEW FLATS RD", + "city": "ARMSTRONG", + "province": "BC", + "postal_code": "V0E1B5" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Shuswap Christian Education Society", + "school_number": "8396240", + "name": "King's Christian School", + "total_students": 309, + "address": "350B 30 ST NE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E1J2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "8396329", + "name": "Shuswap SDA", + "total_students": 32, + "address": "3270 B 60TH AVE NE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E2A9" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Anchor Academy Society", + "school_number": "8396713", + "name": "Anchor Academy (DL)", + "total_students": 690, + "address": "PO BOX 3015", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E4R8" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Christian Home E-School Society", + "school_number": "8396714", + "name": "Christian Homelearners eStreams", + "total_students": 658, + "address": "PO BOX 162", + "city": "GRINDROD", + "province": "BC", + "postal_code": "V0E1Y0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "The Church Of God In Christ, Mennonite", + "school_number": "8396846", + "name": "Mountain View Christian", + "total_students": 28, + "address": "20 GARDOM LAKE RD", + "city": "ENDERBY", + "province": "BC", + "postal_code": "V4Y4H4" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Sda Church - BC Conference", + "school_number": "8596190", + "name": "Avalon Adventist Christian Academy", + "total_students": 41, + "address": "PO BOX 974", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Namgis Education Society", + "school_number": "8597094", + "name": "T'lisalagi'lakw School", + "total_students": 65, + "address": "PO BOX 50", + "city": "ALERT BAY", + "province": "BC", + "postal_code": "V0N1A0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chief & Council Of Gwa'Sala-'Nakwaxda'Xw", + "school_number": "8597142", + "name": "Gwa'sala-'Nakwaxda'xw School", + "total_students": 107, + "address": "PO BOX 1799", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chief & Council Fort Ware Indian Band", + "school_number": "8797074", + "name": "Aatse Davie School", + "total_students": 74, + "address": "PO BOX 79", + "city": "FORT WARE", + "province": "BC", + "postal_code": "V0J3B0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Chief & Councillors Of The Iskut Band", + "school_number": "8797088", + "name": "Klappan Independent School", + "total_students": 21, + "address": "#1 GLACIER AVE", + "city": "ISKUT", + "province": "BC", + "postal_code": "V0J1K0" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Northside Church Society", + "school_number": "9196232", + "name": "Northside Christian School", + "total_students": 125, + "address": "3400 VOTH RD", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A2" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Woodland Centre Congregation", + "school_number": "9196759", + "name": "Woodland Centre School", + "total_students": 31, + "address": "7360 HWY 16E", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A1" + }, + { + "public_or_independent": "BC Independent School", + "district_number": "", + "district_name": "Nak'Al Bun Education Society", + "school_number": "9197495", + "name": "Nak'albun Elementary School", + "total_students": 136, + "address": "PO BOX 1390", + "city": "FORT ST JAMES", + "province": "BC", + "postal_code": "V0J1P0" + } + ] +} \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.NginxData/reference/CGG/PAC/SchoolInfo.json b/applications/Unity.Tools/Unity.NginxData/reference/CGG/PAC/SchoolInfo.json index 22bd9bcbc2..8d2d636b01 100644 --- a/applications/Unity.Tools/Unity.NginxData/reference/CGG/PAC/SchoolInfo.json +++ b/applications/Unity.Tools/Unity.NginxData/reference/CGG/PAC/SchoolInfo.json @@ -6,7 +6,7 @@ }, { "name": "Abbotsford", - "district_number": "34" + "district_number": "034" }, { "name": "Abbotsford Christian School Society", @@ -40,13 +40,9 @@ "name": "Anspayaxw School Society", "district_number": "" }, - { - "name": "Ark Elementary Montessori Reggio School", - "district_number": "" - }, { "name": "Arrow Lakes", - "district_number": "10" + "district_number": "010" }, { "name": "Arrowsmith Independent School Society", @@ -94,7 +90,7 @@ }, { "name": "Boundary", - "district_number": "51" + "district_number": "051" }, { "name": "Brentwood College Association", @@ -110,7 +106,7 @@ }, { "name": "Bulkley Valley", - "district_number": "54" + "district_number": "054" }, { "name": "Bulkley Valley Christian School Society", @@ -118,15 +114,11 @@ }, { "name": "Burnaby", - "district_number": "41" - }, - { - "name": "Burnaby Montessori Elem School Society", - "district_number": "" + "district_number": "041" }, { "name": "Campbell River", - "district_number": "72" + "district_number": "072" }, { "name": "Campbell River Christian School Society", @@ -140,14 +132,6 @@ "name": "Canada Star Education Society", "district_number": "" }, - { - "name": "Canadian Reformed School Association Of", - "district_number": "" - }, - { - "name": "Canadian Reformed School Society Of Abbo", - "district_number": "" - }, { "name": "Canyon Springs Montessori School Society", "district_number": "" @@ -158,54 +142,26 @@ }, { "name": "Cariboo-Chilcotin", - "district_number": "27" + "district_number": "027" }, { "name": "Cascade Christian School Society", "district_number": "" }, - { - "name": "Catholic Independent Schools Diocese Of", - "district_number": "" - }, - { - "name": "Catholic Independent Schools Of Kamloops", - "district_number": "" - }, - { - "name": "Catholic Independent Schools Of Nelson D", - "district_number": "" - }, - { - "name": "Catholic Independent Schools Of The Dioc", - "district_number": "" - }, - { - "name": "Catholic Independent Schools Of Vancouve", - "district_number": "" - }, { "name": "Cedars Christian School", "district_number": "" }, { "name": "Central Coast", - "district_number": "49" - }, - { - "name": "Central Island Independent Sch Society", - "district_number": "" + "district_number": "049" }, { "name": "Central Okanagan", - "district_number": "23" - }, - { - "name": "Century High School (2003) Ltd", - "district_number": "" + "district_number": "023" }, { - "name": "Chabad Of Vancouver Island", + "name": "Chabad of Vancouver Island", "district_number": "" }, { @@ -216,46 +172,22 @@ "name": "Chief & Council Fort Ware Indian Band", "district_number": "" }, - { - "name": "Chief & Council Kamloops Indian Band", - "district_number": "" - }, { "name": "Chief & Council Of Gwa'Sala-'Nakwaxda'Xw", "district_number": "" }, - { - "name": "Chief & Council Of Lower Nicola Ind Band", - "district_number": "" - }, { "name": "Chief & Councillors Of The Iskut Band", "district_number": "" }, - { - "name": "Chief & Councillors Of The Kitsumkalum", - "district_number": "" - }, - { - "name": "Chief & Councillors Of Upper Nicola Band", - "district_number": "" - }, { "name": "Chilliwack", - "district_number": "33" + "district_number": "033" }, { "name": "Chilliwack Christian School Society", "district_number": "" }, - { - "name": "Choice School For Gifted Children", - "district_number": "" - }, - { - "name": "Christ Church Cathedral Ed Society", - "district_number": "" - }, { "name": "Christian Home E-School Society", "district_number": "" @@ -269,7 +201,7 @@ "district_number": "" }, { - "name": "Christian School Society Of Houston", + "name": "Christian School Society of Houston", "district_number": "" }, { @@ -302,10 +234,10 @@ }, { "name": "Coast Mountains", - "district_number": "82" + "district_number": "082" }, { - "name": "Coima Montessori Society", + "name": "COIMA Montessori Society", "district_number": "" }, { @@ -322,19 +254,19 @@ }, { "name": "Comox Valley", - "district_number": "71" + "district_number": "071" }, { - "name": "Compass Community Learning Centres", + "name": "COMPASS Community Learning Centres", "district_number": "" }, { "name": "Conseil scolaire francophone", - "district_number": "93" + "district_number": "093" }, { "name": "Coquitlam", - "district_number": "43" + "district_number": "043" }, { "name": "Coquitlam College Inc", @@ -350,7 +282,7 @@ }, { "name": "Cowichan Valley", - "district_number": "79" + "district_number": "079" }, { "name": "Cranbrook Christian School Society", @@ -374,7 +306,7 @@ }, { "name": "Delta", - "district_number": "37" + "district_number": "037" }, { "name": "Delta Christian School Society", @@ -396,10 +328,6 @@ "name": "Dogwood Independent School Society", "district_number": "" }, - { - "name": "Duncan Christian School Association", - "district_number": "" - }, { "name": "Eaton Arrowsmith School Vancouver", "district_number": "" @@ -422,7 +350,7 @@ }, { "name": "Fort Nelson", - "district_number": "81" + "district_number": "081" }, { "name": "Fountainview Academy Association", @@ -436,13 +364,9 @@ "name": "Fraser Valley Elementary School Society", "district_number": "" }, - { - "name": "Fraser Valley Society", - "district_number": "" - }, { "name": "Fraser-Cascade", - "district_number": "78" + "district_number": "078" }, { "name": "Freedom Thinkers Education Pbl Society", @@ -452,37 +376,29 @@ "name": "G.N. Sikh School Association", "district_number": "" }, - { - "name": "Gitsegukla Community Education Develop.", - "district_number": "" - }, { "name": "Glenlyon Norfolk School Society", "district_number": "" }, - { - "name": "Global Impact Education Corporation", - "district_number": "" - }, { "name": "Gobind Marg Charitable Trust Society", "district_number": "" }, { "name": "Gold Trail", - "district_number": "74" + "district_number": "074" }, { "name": "Greater Victoria", - "district_number": "61" + "district_number": "061" }, { - "name": "Group Aba Children'S Society", + "name": "Group ABA Children's Society", "district_number": "" }, { "name": "Gulf Islands", - "district_number": "64" + "district_number": "064" }, { "name": "Guru Nanak Education Society Of BC", @@ -494,32 +410,20 @@ }, { "name": "Haida Gwaii", - "district_number": "50" - }, - { - "name": "Haney-Pitt Meadows Christian School", - "district_number": "" - }, - { - "name": "Hongde Education Society", - "district_number": "" + "district_number": "050" }, { "name": "Hope Lutheran Church Of Port Coquitlam", "district_number": "" }, { - "name": "Ilearn Secondary School Society", + "name": "iLearn Secondary School Society", "district_number": "" }, { "name": "Independent Magnet Schools", "district_number": "" }, - { - "name": "Int'L Assoc Of Progressive Montessorians", - "district_number": "" - }, { "name": "Iqra Education Society", "district_number": "" @@ -536,17 +440,13 @@ "name": "John Knox Christian School Association", "district_number": "" }, - { - "name": "Johnathan Academy Incorporated", - "district_number": "" - }, { "name": "Kamloops Christian School Association", "district_number": "" }, { "name": "Kamloops-Thompson", - "district_number": "73" + "district_number": "073" }, { "name": "Kelowna Christian Centre Society", @@ -562,23 +462,23 @@ }, { "name": "Kootenay Lake", - "district_number": "8" + "district_number": "008" }, { "name": "Kootenay-Columbia", - "district_number": "20" + "district_number": "020" }, { "name": "Kyah Wiget Education Society", "district_number": "" }, { - "name": "Lakeside Educational Society Of Kelowna", + "name": "Lakeside Educational Society of Kelowna", "district_number": "" }, { "name": "Langley", - "district_number": "35" + "district_number": "035" }, { "name": "Langley Christian School Society", @@ -588,10 +488,6 @@ "name": "Learningstorm Education Society", "district_number": "" }, - { - "name": "L'Ecole Francaise Int'L De Vancouver", - "district_number": "" - }, { "name": "Lighthouse Christian Academy Society", "district_number": "" @@ -608,22 +504,10 @@ "name": "Lowell High School Inc.", "district_number": "" }, - { - "name": "Lower Kootenay Indian Band Chief & Counc", - "district_number": "" - }, - { - "name": "Lower Mainland Purpose Society For Youth", - "district_number": "" - }, { "name": "Madrona School Society", "district_number": "" }, - { - "name": "Maharishi Age Of Enlightenment Society", - "district_number": "" - }, { "name": "Maimonides School Society", "district_number": "" @@ -634,7 +518,7 @@ }, { "name": "Maple Ridge-Pitt Meadows", - "district_number": "42" + "district_number": "042" }, { "name": "Meadow Montessori School", @@ -658,7 +542,7 @@ }, { "name": "Mission", - "district_number": "75" + "district_number": "075" }, { "name": "Mle Training And Research Society", @@ -702,11 +586,11 @@ }, { "name": "Nanaimo-Ladysmith", - "district_number": "68" + "district_number": "068" }, { "name": "Nechako Lakes", - "district_number": "91" + "district_number": "091" }, { "name": "Nelson Area Waldorf School Association", @@ -720,25 +604,21 @@ "name": "Netherlands Reformed Congregation", "district_number": "" }, - { - "name": "New Castle Institute Of English Research", - "district_number": "" - }, { "name": "New Learning Society", "district_number": "" }, { "name": "New Westminster", - "district_number": "40" + "district_number": "040" }, { "name": "Nicola-Similkameen", - "district_number": "58" + "district_number": "058" }, { "name": "Nisga'a", - "district_number": "92" + "district_number": "092" }, { "name": "Noorunissa Montessori Academy Of Canada", @@ -750,7 +630,7 @@ }, { "name": "North Okanagan-Shuswap", - "district_number": "83" + "district_number": "083" }, { "name": "North Star Montessori Elementary Society", @@ -758,7 +638,7 @@ }, { "name": "North Vancouver", - "district_number": "44" + "district_number": "044" }, { "name": "Northgate Christian Education Society", @@ -776,17 +656,13 @@ "name": "Oakridge Montessori School Inc", "district_number": "" }, - { - "name": "Okanagan Montessori Elementary School So", - "district_number": "" - }, { "name": "Okanagan Similkameen", - "district_number": "53" + "district_number": "053" }, { "name": "Okanagan Skaha", - "district_number": "67" + "district_number": "067" }, { "name": "P163 Education Inc.", @@ -800,13 +676,9 @@ "name": "Pacific Montessori Society", "district_number": "" }, - { - "name": "Pacific Pentecostal Ed & Com Society", - "district_number": "" - }, { "name": "Pacific Rim", - "district_number": "70" + "district_number": "070" }, { "name": "Pals Autism Society", @@ -818,20 +690,16 @@ }, { "name": "Peace River North", - "district_number": "60" + "district_number": "060" }, { "name": "Peace River South", - "district_number": "59" + "district_number": "059" }, { "name": "Pear Tree Education Inc.", "district_number": "" }, - { - "name": "Penelakut Island Learning Centre Society", - "district_number": "" - }, { "name": "Penticton Christian School Society", "district_number": "" @@ -842,35 +710,31 @@ }, { "name": "Prince George", - "district_number": "57" + "district_number": "057" }, { "name": "Prince Rupert", - "district_number": "52" + "district_number": "052" }, { "name": "Purcell Collegiate Incorporated", "district_number": "" }, - { - "name": "Pythagoras Academy Society", - "district_number": "" - }, { "name": "qathet", - "district_number": "47" + "district_number": "047" }, { "name": "Qualicum", - "district_number": "69" + "district_number": "069" }, { - "name": "Queen Margaret'S School", + "name": "Queen Margaret's School", "district_number": "" }, { "name": "Quesnel", - "district_number": "28" + "district_number": "028" }, { "name": "Regent Christian Academy Society", @@ -878,11 +742,11 @@ }, { "name": "Revelstoke", - "district_number": "19" + "district_number": "019" }, { "name": "Richmond", - "district_number": "38" + "district_number": "038" }, { "name": "Richmond Christian School Association", @@ -894,7 +758,7 @@ }, { "name": "Rocky Mountain", - "district_number": "6" + "district_number": "006" }, { "name": "Rose Of Sharon Ministries", @@ -910,7 +774,7 @@ }, { "name": "Saanich", - "district_number": "63" + "district_number": "063" }, { "name": "Saint John Paul Ii Academy Society", @@ -929,8 +793,8 @@ "district_number": "" }, { - "name": "Sea To Sky", - "district_number": "48" + "name": "Sea to Sky", + "district_number": "048" }, { "name": "Sea To Sky Montessori Society", @@ -941,7 +805,7 @@ "district_number": "" }, { - "name": "Seminary Of Christ The King", + "name": "Seminary of Christ the King", "district_number": "" }, { @@ -957,16 +821,12 @@ "district_number": "" }, { - "name": "Sjs St John'S School Society", - "district_number": "" - }, - { - "name": "Society For Children With Disabilities", + "name": "SJS St John's School Society", "district_number": "" }, { "name": "Sooke", - "district_number": "62" + "district_number": "062" }, { "name": "South Okanagan Montessori School Society", @@ -978,7 +838,7 @@ }, { "name": "Southeast Kootenay", - "district_number": "5" + "district_number": "005" }, { "name": "Squamish Montessori Society", @@ -989,23 +849,19 @@ "district_number": "" }, { - "name": "St Alcuin College For The Liberal Arts", - "district_number": "" - }, - { - "name": "St George'S School", + "name": "St George's School", "district_number": "" }, { - "name": "St John'S Academy Shawnigan Lake Society", + "name": "St John's Academy Shawnigan Lake Society", "district_number": "" }, { - "name": "St John'S International School Ltd", + "name": "St John's International School Ltd", "district_number": "" }, { - "name": "St Margaret'S School", + "name": "St Margaret's School", "district_number": "" }, { @@ -1026,7 +882,7 @@ }, { "name": "Stikine", - "district_number": "87" + "district_number": "087" }, { "name": "Stratford Hall (School) Society", @@ -1037,7 +893,7 @@ "district_number": "" }, { - "name": "Stz'Uminus Education Society", + "name": "Stz'uminus Education Society", "district_number": "" }, { @@ -1046,11 +902,11 @@ }, { "name": "Sunshine Coast", - "district_number": "46" + "district_number": "046" }, { "name": "Surrey", - "district_number": "36" + "district_number": "036" }, { "name": "Surrey Christian School Society", @@ -1064,10 +920,6 @@ "name": "The Bridge Educational Society", "district_number": "" }, - { - "name": "The Church Of God In Christ (Mennonite)", - "district_number": "" - }, { "name": "The Church Of God In Christ, Mennonite", "district_number": "" @@ -1081,7 +933,7 @@ "district_number": "" }, { - "name": "The King'S Christian School Society", + "name": "The King's Christian School Society", "district_number": "" }, { @@ -1096,10 +948,6 @@ "name": "Tsawwassen Independent School Society", "district_number": "" }, - { - "name": "Unisus International School Ltd", - "district_number": "" - }, { "name": "Unisus International Schools Society", "district_number": "" @@ -1114,7 +962,7 @@ }, { "name": "Vancouver", - "district_number": "39" + "district_number": "039" }, { "name": "Vancouver Christian School Association", @@ -1124,21 +972,17 @@ "name": "Vancouver College Limited", "district_number": "" }, - { - "name": "Vancouver Formosa Academy Ltd", - "district_number": "" - }, { "name": "Vancouver Hebrew Academy Society", "district_number": "" }, { "name": "Vancouver Island North", - "district_number": "85" + "district_number": "085" }, { "name": "Vancouver Island West", - "district_number": "84" + "district_number": "084" }, { "name": "Vancouver Montessori School Society", @@ -1154,7 +998,7 @@ }, { "name": "Vernon", - "district_number": "22" + "district_number": "022" }, { "name": "Vernon Christian School Society", @@ -1165,7 +1009,7 @@ "district_number": "" }, { - "name": "Visst Society", + "name": "VISST Society", "district_number": "" }, { @@ -1186,11 +1030,7 @@ }, { "name": "West Vancouver", - "district_number": "45" - }, - { - "name": "Westbank First Nation, BC", - "district_number": "" + "district_number": "045" }, { "name": "Western Communities Montessori Society", @@ -1229,198 +1069,362 @@ "district_number": "" }, { - "name": "Zawiyah Foundation", + "name": "Catholic Independent Schools of Nelson Diocese", + "district_number": "" + }, + { + "name": "The Church Of God In Christ (Mennonite) (Creston)", + "district_number": "" + }, + { + "name": "Lower Kootenay Indian Band Chief & Council", + "district_number": "" + }, + { + "name": "Seventh-Day Adventist Church - British Columbia Conference", + "district_number": "" + }, + { + "name": "Catholic Independent Schools of Kamloops Diocese", + "district_number": "" + }, + { + "name": "Okanagan Montessori Elementary School Society", + "district_number": "" + }, + { + "name": "The Chief And Councillors Of The Westbank First Nation, British Columbia", + "district_number": "" + }, + { + "name": "Catholic Independent Schools of Vancouver Archdiocese", + "district_number": "" + }, + { + "name": "Canadian Reformed School Society of Abbotsford", + "district_number": "" + }, + { + "name": "Canadian Reformed School Association Of Langley", + "district_number": "" + }, + { + "name": "Pacific Pentecostal Education And Communication Society", + "district_number": "" + }, + { + "name": "Ahmadiyya Muslim Schools Society", + "district_number": "" + }, + { + "name": "Choice School For Gifted Children Society", + "district_number": "" + }, + { + "name": "Ark Elementary Montessori Reggio School Inc.", + "district_number": "" + }, + { + "name": "Coal Harbour Academy Society", + "district_number": "" + }, + { + "name": "1498955 B.C. LTD", + "district_number": "" + }, + { + "name": "New Castle Institute Of English Research Corp.", + "district_number": "" + }, + { + "name": "Franklin School Inc.", + "district_number": "" + }, + { + "name": "Johnathan Academy Inc.", + "district_number": "" + }, + { + "name": "Lower Mainland Purpose Society For Youth And Families", + "district_number": "" + }, + { + "name": "Burnaby Montessori Elementary School Society", + "district_number": "" + }, + { + "name": "Haney-Pitt Meadows Christian School Association", + "district_number": "" + }, + { + "name": "Fraser Valley Society For Children With Learning Disabilities", + "district_number": "" + }, + { + "name": "Society For The Education Of Children With Specific Learning Disabilities", + "district_number": "" + }, + { + "name": "Cousteau, L'Ecole Francaise Internationale De Vancouver", + "district_number": "" + }, + { + "name": "St Alcuin College For The Liberal Arts Society", + "district_number": "" + }, + { + "name": "Catholic Independent Schools Diocese of Prince George", + "district_number": "" + }, + { + "name": "Canadian Reformed School Association Of Smithers", + "district_number": "" + }, + { + "name": "Zion Lutheran Church And Christian School Of Prince George", + "district_number": "" + }, + { + "name": "Chief And Councillors Of Upper Nicola Band Merritt BC", + "district_number": "" + }, + { + "name": "Chief & Councillors Of The Lower Nicola Indian Band", + "district_number": "" + }, + { + "name": "Catholic Independent Schools of the Diocese Of Victoria", + "district_number": "" + }, + { + "name": "Maharishi Age Of Enlightenment School Society", + "district_number": "" + }, + { + "name": "International Association Of Progressive Montessorians", + "district_number": "" + }, + { + "name": "Christ Church Cathedral Educational Society", + "district_number": "" + }, + { + "name": "Unisus International Schools Ltd", + "district_number": "" + }, + { + "name": "Central Island Independent School Society", + "district_number": "" + }, + { + "name": "Chief & Council Of The Kamloops Indian Band", + "district_number": "" + }, + { + "name": "Duncan Christian School Association (1979)", + "district_number": "" + }, + { + "name": "Gitsegukla Community Education Development Authority Association", + "district_number": "" + }, + { + "name": "The Church Of God In Christ, Mennonite (Enderby)", "district_number": "" }, { - "name": "Zion Lutheran Church & Christian School", + "name": "Chief And Councillors Of The Fort Ware Indian Band Fort Ware BC", + "district_number": "" + }, + { + "name": "Chief & Councillors Of The Iskut Band Iskut British Columbia", "district_number": "" } ], "schools": [ { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "501007", "name": "Jaffray Elem-Jr Secondary", - "total_students": 209, + "total_students": 221, "address": "PO BOX 378", "city": "JAFFRAY", "province": "BC", "postal_code": "V0B1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "501009", "name": "Isabella Dicken Elementary", - "total_students": 561, + "total_students": 544, "address": "PO BOX 1559", "city": "FERNIE", "province": "BC", "postal_code": "V0B1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "501010", "name": "Frank J Mitchell Elementary", - "total_students": 370, + "total_students": 352, "address": "PO BOX 345", "city": "SPARWOOD", "province": "BC", "postal_code": "V0B2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "501017", "name": "Rocky Mountain Elementary", - "total_students": 235, + "total_students": 232, "address": "PO BOX 460", "city": "ELKFORD", "province": "BC", "postal_code": "V0B1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502001", "name": "Mount Baker Secondary", - "total_students": 884, + "total_students": 867, "address": "1410 BAKER ST", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C1B2" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502011", "name": "Laurie Middle School", - "total_students": 413, + "total_students": 350, "address": "1808 2ND ST S", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C1C5" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502024", "name": "T M Roberts Elementary", - "total_students": 349, + "total_students": 346, "address": "10 WATTSVILLE RD", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C2A2" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502028", "name": "Gordon Terrace Elementary", - "total_students": 287, + "total_students": 288, "address": "1200 5TH AVE S", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C2H1" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502029", "name": "Highlands Elementary", - "total_students": 255, + "total_students": 298, "address": "3300 7TH ST S", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C5G3" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502030", "name": "Pinewood Elementary", - "total_students": 147, + "total_students": 149, "address": "40 PINEWOOD AVE W", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C5X8" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502031", "name": "Steeples Elementary", - "total_students": 220, + "total_students": 207, "address": "700 24TH AVE N", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C5P6" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "502032", "name": "Kootenay Orchards Elementary", - "total_students": 240, + "total_students": 239, "address": "1301 - 20TH AVE S", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C6N5" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "505018", "name": "Parkland Middle School", - "total_students": 442, + "total_students": 430, "address": "1115 2ND AVE S", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C2B4" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "505033", "name": "Elkford Elementary Secondary", - "total_students": 236, + "total_students": 235, "address": "PO BOX 910", "city": "ELKFORD", "province": "BC", "postal_code": "V0B1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "505034", "name": "Fernie Secondary", - "total_students": 545, + "total_students": 548, "address": "PO BOX 370", "city": "FERNIE", "province": "BC", "postal_code": "V0B1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "505035", "name": "Sparwood Secondary", @@ -1431,536 +1435,524 @@ "postal_code": "V0B2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "599078", "name": "Kootenay Educational Services", - "total_students": 103, + "total_students": 127, "address": "25 17TH AVE N", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C3W9" }, { - "public_or_independent": "BC Public School", - "district_number": "5", + "public_or_independent": "Public School", + "district_number": "005", "district_name": "Southeast Kootenay", "school_number": "599156", "name": "Kootenay Discovery School", - "total_students": 183, + "total_students": 254, "address": "802 2ND AVE", "city": "FERNIE", "province": "BC", "postal_code": "V0B1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "603005", "name": "Marysville Elementary", - "total_students": 169, + "total_students": 155, "address": "546 309 AVE", "city": "KIMBERLEY", "province": "BC", "postal_code": "V1A3J3" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "603007", "name": "Lindsay Park Elementary", - "total_students": 165, + "total_students": 146, "address": "602 SALMO ST", "city": "KIMBERLEY", "province": "BC", "postal_code": "V1A2M8" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "603008", "name": "Selkirk Secondary School", - "total_students": 561, + "total_students": 577, "address": "405 HALPIN ST", "city": "KIMBERLEY", "province": "BC", "postal_code": "V1A2H1" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "604007", "name": "Windermere Elementary", - "total_students": 164, + "total_students": 169, "address": "4747 GOVERNMENT ST", "city": "WINDERMERE", "province": "BC", "postal_code": "V0B2L2" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "604011", "name": "Edgewater Elementary", - "total_students": 138, + "total_students": 150, "address": "PO BOX 69", "city": "EDGEWATER", "province": "BC", "postal_code": "V0A1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "604012", "name": "J Alfred Laird Elementary", - "total_students": 246, + "total_students": 252, "address": "1202 13TH AVENUE", "city": "INVERMERE", "province": "BC", "postal_code": "V0A1K4" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "604013", "name": "Martin Morigeau Elementary", - "total_students": 69, + "total_students": 62, "address": "4891 BEATTY AVENUE", "city": "CANAL FLATS", "province": "BC", "postal_code": "V0B1B0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "604014", "name": "Eileen Madson Primary School", - "total_students": 212, + "total_students": 207, "address": "2001 15TH AVE", "city": "INVERMERE", "province": "BC", "postal_code": "V0A1K4" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "604015", "name": "David Thompson Secondary", - "total_students": 484, + "total_students": 482, "address": "1535 14TH ST UNIT 1 RR 4", "city": "INVERMERE", "province": "BC", "postal_code": "V0A1K4" }, { - "public_or_independent": "BC Public School", - "district_number": "6", - "district_name": "Rocky Mountain", - "school_number": "606000", - "name": "Continuing Ed SD 06", - "total_students": 10, - "address": "BOX 430", - "city": "INVERMERE", - "province": "BC", - "postal_code": "V0A1K0" - }, - { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "606017", "name": "Mckim Middle School", - "total_students": 397, + "total_students": 394, "address": "689 ROTARY DR", "city": "KIMBERLEY", "province": "BC", "postal_code": "V1A1E4" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "618003", "name": "Lady Grey Elementary", - "total_students": 234, + "total_students": 239, "address": "PO BOX 899", "city": "GOLDEN", "province": "BC", "postal_code": "V0A1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "618005", "name": "Golden Secondary", - "total_students": 380, + "total_students": 385, "address": "PO BOX 1350", "city": "GOLDEN", "province": "BC", "postal_code": "V0A1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "618007", "name": "Nicholson Elementary", - "total_students": 91, + "total_students": 93, "address": "PO BOX 331", "city": "GOLDEN", "province": "BC", "postal_code": "V0A1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "618008", "name": "Alexander Park Elementary", - "total_students": 193, + "total_students": 170, "address": "PO BOX 464", "city": "GOLDEN", "province": "BC", "postal_code": "V0A1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "699069", "name": "Golden Alternate School", - "total_students": 16, + "total_students": 17, "address": "PO BOX 1350", "city": "GOLDEN", "province": "BC", "postal_code": "V0A1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "699086", "name": "Kimberley Alternate School", - "total_students": 21, + "total_students": 20, "address": "214 7th Avenue", "city": "Invermere", "province": "BC", "postal_code": "V0A1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "699127", "name": "Open Doors Alternate Education", - "total_students": 31, + "total_students": 29, "address": "PO BOX 430", "city": "INVERMERE", "province": "BC", "postal_code": "V0A1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "6", + "public_or_independent": "Public School", + "district_number": "006", "district_name": "Rocky Mountain", "school_number": "699157", "name": "Rocky Mountain Online Learning", - "total_students": 10, + "total_students": 28, "address": "BOX 430", "city": "INVERMERE", "province": "BC", "postal_code": "V0A1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807004", "name": "Hume Elementary School", - "total_students": 203, + "total_students": 210, "address": "310 NELSON AVE", "city": "NELSON", "province": "BC", "postal_code": "V1L2M8" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807005", "name": "Trafalgar Middle School", - "total_students": 559, + "total_students": 546, "address": "1201 JOSEPHINE ST", "city": "NELSON", "province": "BC", "postal_code": "V1L1X8" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807011", "name": "Salmo Elementary School", - "total_students": 139, + "total_students": 149, "address": "PO DRAWER 220", "city": "SALMO", "province": "BC", "postal_code": "V0G1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807012", "name": "Salmo Secondary", - "total_students": 151, + "total_students": 129, "address": "PO BOX 310", "city": "SALMO", "province": "BC", "postal_code": "V0G1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807013", "name": "L V Rogers Secondary", - "total_students": 624, + "total_students": 606, "address": "1004 COTTONWOOD STREET", "city": "NELSON", "province": "BC", "postal_code": "V1L3W2" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807014", "name": "South Nelson Elementary", - "total_students": 184, + "total_students": 181, "address": "814 LATIMER ST", "city": "NELSON", "province": "BC", "postal_code": "V1L4V7" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807016", "name": "Blewett Elementary School", - "total_students": 97, + "total_students": 91, "address": "2665 BLEWETT RD", "city": "NELSON", "province": "BC", "postal_code": "V1L6V4" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807018", "name": "Rosemont Elementary School", - "total_students": 125, + "total_students": 111, "address": "1605 CREASE STREET", "city": "NELSON", "province": "BC", "postal_code": "V1L1A5" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807025", "name": "Mount Sentinel Secondary", - "total_students": 281, + "total_students": 290, "address": "PO BOX 99", "city": "SOUTH SLOCAN", "province": "BC", "postal_code": "V0G2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807026", "name": "W.E. Graham Community School", - "total_students": 69, + "total_students": 81, "address": "PO BOX 10", "city": "SLOCAN", "province": "BC", "postal_code": "V0G2C0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807033", "name": "Brent Kennedy Elementary", - "total_students": 183, + "total_students": 174, "address": "PO BOX 40", "city": "CRESCENT VALLEY", "province": "BC", "postal_code": "V0G1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807034", "name": "Winlaw Elementary School", - "total_students": 94, + "total_students": 95, "address": "PO BOX 10", "city": "WINLAW", "province": "BC", "postal_code": "V0G2J0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "807035", "name": "Redfish Elementary School", - "total_students": 107, + "total_students": 106, "address": "265 BRYAN RD", "city": "NELSON", "province": "BC", "postal_code": "V1L6M9" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886004", "name": "Adam Robertson Elementary", - "total_students": 308, + "total_students": 309, "address": "421 9 AVE N", "city": "CRESTON", "province": "BC", "postal_code": "V0B1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886005", "name": "Jewett Elementary", - "total_students": 19, + "total_students": 11, "address": "PO BOX 39", "city": "MEADOW CREEK", "province": "BC", "postal_code": "V0G1N0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886006", "name": "Crawford Bay Elem-Secondary", - "total_students": 68, + "total_students": 62, "address": "PO BOX 100", "city": "CRAWFORD BAY", "province": "BC", "postal_code": "V0B1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886007", "name": "Kootenay River Secondary", - "total_students": 558, + "total_students": 529, "address": "223 18TH AVE S", "city": "CRESTON", "province": "BC", "postal_code": "V0B1G5" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886014", "name": "Canyon/Lister Elementary", - "total_students": 119, + "total_students": 127, "address": "4575 CANYON-LISTER ROAD", "city": "CANYON", "province": "BC", "postal_code": "V0B1C0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886016", "name": "Elev8 Homelinks", - "total_students": 165, + "total_students": 154, "address": "PO BOX 250", "city": "CRESTON", "province": "BC", "postal_code": "V0B1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886018", "name": "J V Humphries Elem-Secondary", - "total_students": 192, + "total_students": 200, "address": "PO BOX 577", "city": "KASLO", "province": "BC", "postal_code": "V0G1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "886019", "name": "Erickson Elementary", - "total_students": 187, + "total_students": 191, "address": "PO BOX 180", "city": "ERICKSON", "province": "BC", "postal_code": "V0B1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "898001", "name": "Elev8 D.E.S.K.", - "total_students": 236, + "total_students": 276, "address": "811 STANLEY ST", "city": "NELSON", "province": "BC", "postal_code": "V1L1N8" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "899178", "name": "Wildflower", - "total_students": 172, + "total_students": 175, "address": "811 STANLEY ST", "city": "NELSON", "province": "BC", "postal_code": "V1L1N8" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "899225", "name": "Reach", @@ -1971,296 +1963,308 @@ "postal_code": "V1L3W2" }, { - "public_or_independent": "BC Public School", - "district_number": "8", + "public_or_independent": "Public School", + "district_number": "008", "district_name": "Kootenay Lake", "school_number": "899298", "name": "Sequoia Centre", - "total_students": 15, + "total_students": 11, "address": "PO BOX 99", "city": "SOUTH SLOCAN", "province": "BC", "postal_code": "V0G2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "10", + "public_or_independent": "Public School", + "district_number": "010", "district_name": "Arrow Lakes", "school_number": "1010002", "name": "Burton Elementary", - "total_students": 41, + "total_students": 40, "address": "PO BOX 3", "city": "BURTON", "province": "BC", - "postal_code": "V0G1E0" + "postal_code": "V0G1R1" }, { - "public_or_independent": "BC Public School", - "district_number": "10", + "public_or_independent": "Public School", + "district_number": "010", "district_name": "Arrow Lakes", "school_number": "1010003", "name": "Edgewood Elementary", - "total_students": 13, + "total_students": 12, "address": "PO BOX 129", "city": "EDGEWOOD", "province": "BC", "postal_code": "V0G1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "10", + "public_or_independent": "Public School", + "district_number": "010", "district_name": "Arrow Lakes", "school_number": "1010004", "name": "Nakusp Elementary", - "total_students": 177, + "total_students": 183, "address": "PO BOX 250", "city": "NAKUSP", "province": "BC", "postal_code": "V0G1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "10", + "public_or_independent": "Public School", + "district_number": "010", "district_name": "Arrow Lakes", "school_number": "1010006", "name": "Nakusp Secondary", - "total_students": 148, + "total_students": 149, "address": "PO BOX 249", "city": "NAKUSP", "province": "BC", "postal_code": "V0G1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "10", + "public_or_independent": "Public School", + "district_number": "010", "district_name": "Arrow Lakes", "school_number": "1010011", "name": "Lucerne Elem-Secondary", - "total_students": 91, + "total_students": 93, "address": "PO BOX 130", "city": "NEW DENVER", "province": "BC", "postal_code": "V0G1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "10", + "public_or_independent": "Public School", + "district_number": "010", "district_name": "Arrow Lakes", "school_number": "1099217", "name": "Arrow Lakes Distributed Learning", - "total_students": 33, + "total_students": 22, "address": "PO BOX 130", "city": "NEW DENVER", "province": "BC", "postal_code": "V0G1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "19", + "public_or_independent": "Public School", + "district_number": "019", "district_name": "Revelstoke", "school_number": "1919003", "name": "Revelstoke Secondary", - "total_students": 414, + "total_students": 398, "address": "BAG 5100", "city": "REVELSTOKE", "province": "BC", "postal_code": "V0E2S0" }, { - "public_or_independent": "BC Public School", - "district_number": "19", + "public_or_independent": "Public School", + "district_number": "019", "district_name": "Revelstoke", "school_number": "1919013", "name": "Columbia Park Elementary", - "total_students": 227, + "total_students": 231, "address": "BAG 7200", "city": "REVELSTOKE", "province": "BC", "postal_code": "V0E2S0" }, { - "public_or_independent": "BC Public School", - "district_number": "19", + "public_or_independent": "Public School", + "district_number": "019", "district_name": "Revelstoke", "school_number": "1919015", "name": "Arrow Heights Elementary", - "total_students": 214, + "total_students": 216, "address": "PO BAG 7400", "city": "REVELSTOKE", "province": "BC", "postal_code": "V0E2S0" }, { - "public_or_independent": "BC Public School", - "district_number": "19", + "public_or_independent": "Public School", + "district_number": "019", "district_name": "Revelstoke", "school_number": "1919016", "name": "Begbie View Elementary", - "total_students": 275, + "total_students": 278, "address": "PO BAG 7100", "city": "REVELSTOKE", "province": "BC", "postal_code": "V0E2S0" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2009006", "name": "Kinnaird Elementary", - "total_students": 446, + "total_students": 420, "address": "2273 10 AVE", "city": "CASTLEGAR", "province": "BC", "postal_code": "V1N2Z8" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2009010", "name": "Stanley Humphries Secondary", - "total_students": 705, + "total_students": 724, "address": "720 7 AVE", "city": "CASTLEGAR", "province": "BC", "postal_code": "V1N1R5" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2009011", "name": "Twin Rivers Elementary", - "total_students": 504, + "total_students": 494, "address": "649 7 AVE", "city": "CASTLEGAR", "province": "BC", "postal_code": "V1N1R6" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2011005", "name": "Fruitvale Elementary", - "total_students": 354, + "total_students": 349, "address": "1867 W COLUMBIA GDNS RD B580", "city": "FRUITVALE", "province": "BC", "postal_code": "V0G1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2011009", "name": "James L Webster Elementary", - "total_students": 241, + "total_students": 240, "address": "395 SCHOFIELD HWY", "city": "TRAIL", "province": "BC", "postal_code": "V1R2G5" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2011012", "name": "J Lloyd Crowe Secondary", - "total_students": 884, + "total_students": 886, "address": "1300 FRANCES MORAN RD", "city": "TRAIL", "province": "BC", "postal_code": "V1R4L9" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2011014", "name": "Rossland Summit School", - "total_students": 486, + "total_students": 491, "address": "DRAWER 1269", "city": "ROSSLAND", "province": "BC", "postal_code": "V0G1Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2011015", "name": "Glenmerry Elementary", - "total_students": 352, + "total_students": 351, "address": "3660 CARNATION DR", "city": "TRAIL", "province": "BC", "postal_code": "V1R2W6" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2020021", "name": "Robson Community School", - "total_students": 196, + "total_students": 181, "address": "PO BOX 259", "city": "ROBSON", "province": "BC", "postal_code": "V0G1X0" }, { - "public_or_independent": "BC Public School", - "district_number": "20", + "public_or_independent": "Public School", + "district_number": "020", "district_name": "Kootenay-Columbia", "school_number": "2020023", "name": "Kootenay Columbia Secondary", - "total_students": 67, + "total_students": 80, "address": "2001 THIRD AVE", "city": "TRAIL", "province": "BC", "postal_code": "V1R1R6" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", + "district_name": "Vernon", + "school_number": "2222000", + "name": "Continuing Ed SD 22", + "total_students": 10, + "address": "3602 30 Ave", + "city": "VERNON", + "province": "BC", + "postal_code": "V1T2E4" + }, + { + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222001", "name": "Ecole Beairsto Elementary", - "total_students": 664, + "total_students": 607, "address": "3302 27 ST", "city": "VERNON", "province": "BC", "postal_code": "V1T4W7" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222002", "name": "Coldstream Elementary", - "total_students": 301, + "total_students": 298, "address": "10104 KALAMALKA RD", "city": "COLDSTREAM", "province": "BC", "postal_code": "V1B1L7" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222005", "name": "Cherryville Elementary", - "total_students": 54, + "total_students": 52, "address": "108 NORTH FORK RD", "city": "CHERRYVILLE", "province": "BC", "postal_code": "V0E2G3" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222006", "name": "Lavington Elementary", @@ -2271,224 +2275,224 @@ "postal_code": "V1B3G4" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222007", "name": "W.L. Seaton Secondary", - "total_students": 1038, + "total_students": 1064, "address": "2701 41 AVE", "city": "VERNON", "province": "BC", "postal_code": "V1T6X3" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222009", "name": "Harwood Elementary", - "total_students": 392, + "total_students": 431, "address": "4320 20 ST", "city": "VERNON", "province": "BC", "postal_code": "V1T4E3" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222010", "name": "J W Inglis Elementary", - "total_students": 351, + "total_students": 343, "address": "PO BOX 369", "city": "LUMBY", "province": "BC", "postal_code": "V0E2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222012", "name": "Silver Star Elementary", - "total_students": 405, + "total_students": 409, "address": "1401-35 AVE", "city": "VERNON", "province": "BC", "postal_code": "V1T2R6" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222013", "name": "Okanagan Landing Elementary", - "total_students": 281, + "total_students": 271, "address": "7322 GRANT RD", "city": "VERNON", "province": "BC", "postal_code": "V1H1G6" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222014", "name": "B X Elementary", - "total_students": 469, + "total_students": 493, "address": "5849 SILVER STAR RD", "city": "VERNON", "province": "BC", "postal_code": "V1B3P6" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222015", "name": "Hillview Elementary", - "total_students": 400, + "total_students": 384, "address": "1822 FRANCIS ST", "city": "VERNON", "province": "BC", "postal_code": "V1B3A5" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222017", "name": "Vernon Secondary", - "total_students": 1080, + "total_students": 1099, "address": "2100-15TH ST", "city": "VERNON", "province": "BC", "postal_code": "V1T9X7" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222019", "name": "Mission Hill Elementary", - "total_students": 273, + "total_students": 295, "address": "1510 36 ST", "city": "VERNON", "province": "BC", "postal_code": "V1T6C8" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222020", "name": "Alexis Park Elementary", - "total_students": 368, + "total_students": 355, "address": "4205 35 ST", "city": "VERNON", "province": "BC", "postal_code": "V1T6C4" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222022", "name": "Kalamalka Secondary", - "total_students": 701, + "total_students": 690, "address": "7900 MCCLOUNIE RD", "city": "VERNON", "province": "BC", "postal_code": "V1B1P8" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222024", "name": "Kidston Elementary", - "total_students": 388, + "total_students": 358, "address": "12101 LINDEN DR", "city": "COLDSTREAM", "province": "BC", "postal_code": "V1B2H3" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222025", "name": "Clarence Fulton Secondary", - "total_students": 784, + "total_students": 787, "address": "2301 FULTON RD", "city": "VERNON", "province": "BC", "postal_code": "V1H1Y1" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222026", "name": "Ellison Elementary", - "total_students": 428, + "total_students": 400, "address": "PO BOX 2400", "city": "VERNON", "province": "BC", "postal_code": "V1H1S3" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2222027", "name": "Charles Bloom Secondary", - "total_students": 367, + "total_students": 356, "address": "PO BOX 220", "city": "LUMBY", "province": "BC", "postal_code": "V0E2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2299083", "name": "Crossroads Learning Centre", - "total_students": 13, - "address": "PO BOX 1028", - "city": "LUMBY", + "total_students": 10, + "address": "3602 30 Ave", + "city": "Vernon", "province": "BC", - "postal_code": "V0E2G0" + "postal_code": "V1T2E4" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2299151", "name": "VLearn.ca", - "total_students": 124, + "total_students": 114, "address": "2301 FULTON RD", "city": "VERNON", "province": "BC", "postal_code": "V1H1Y1" }, { - "public_or_independent": "BC Public School", - "district_number": "22", + "public_or_independent": "Public School", + "district_number": "022", "district_name": "Vernon", "school_number": "2299152", "name": "Alternative Learning Program", - "total_students": 60, + "total_students": 56, "address": "3602 30 Ave", "city": "VERNON", "province": "BC", "postal_code": "V1T2E4" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323000", "name": "Adult Education SD#23", @@ -2499,812 +2503,812 @@ "postal_code": "V1Y2M8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323005", "name": "Central School Programs", - "total_students": 305, + "total_students": 280, "address": "1825 RICHTER ST", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y2M8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323008", "name": "Oyama Traditional School", - "total_students": 186, + "total_students": 180, "address": "15525 GREENHOW RD", "city": "OYAMA", "province": "BC", "postal_code": "V4V2E1" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323014", "name": "Raymer Elementary", - "total_students": 287, + "total_students": 302, "address": "657 RAYMER AVE", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y4Z6" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323015", "name": "Rutland Middle School", - "total_students": 600, + "total_students": 620, "address": "715 RUTLAND RD N", "city": "KELOWNA", "province": "BC", "postal_code": "V1X3B6" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323018", "name": "Glenmore Elementary", - "total_students": 661, + "total_students": 634, "address": "960 GLENMORE DR", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y4P1" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323022", "name": "South Kelowna Elementary", - "total_students": 267, + "total_students": 248, "address": "4176 SPIERS RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W4B5" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323028", "name": "George Elliot Secondary", - "total_students": 863, + "total_students": 894, "address": "10241 BOTTOM WOOD LAKE RD", "city": "WINFIELD", "province": "BC", "postal_code": "V4V1Y7" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323029", "name": "Dr Knox Middle School", - "total_students": 1004, + "total_students": 1067, "address": "121 DRYSDALE BLVD", "city": "KELOWNA", "province": "BC", "postal_code": "V1V2X9" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323030", "name": "Dorothea Walker Elementary", - "total_students": 307, + "total_students": 315, "address": "4346 GORDON DR", "city": "KELOWNA", "province": "BC", "postal_code": "V1W1S5" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323031", "name": "A S Matheson Elementary", - "total_students": 292, + "total_students": 291, "address": "2090 GORDON DR", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y3H9" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323032", "name": "North Glenmore Elementary", - "total_students": 651, + "total_students": 631, "address": "125 SNOWSELL ST NORTH", "city": "KELOWNA", "province": "BC", "postal_code": "V1V2E3" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323033", "name": "South Rutland Elementary", - "total_students": 228, + "total_students": 204, "address": "200 MALLACH RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X2W5" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323034", "name": "Bankhead Elementary", - "total_students": 406, + "total_students": 389, "address": "1280 WILSON AVE", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y6Y6" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323038", "name": "KLO Middle School", - "total_students": 765, + "total_students": 789, "address": "3130 GORDON DR", "city": "KELOWNA", "province": "BC", "postal_code": "V1W3M4" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323042", "name": "Peachland Elementary", - "total_students": 172, + "total_students": 10, "address": "5486 CLEMENTS CRES", "city": "PEACHLAND", "province": "BC", "postal_code": "V0H1X5" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323043", "name": "Belgo Elementary School", - "total_students": 301, + "total_students": 287, "address": "125 ADVENTURE RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X1N3" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323044", "name": "Rutland Senior Secondary", - "total_students": 1831, + "total_students": 1849, "address": "705 RUTLAND RD N", "city": "KELOWNA", "province": "BC", "postal_code": "V1X3B6" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323046", "name": "Casorso Elementary", - "total_students": 491, + "total_students": 479, "address": "3675 CASORSO RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W3E1" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323047", "name": "Springvalley Middle School", - "total_students": 579, + "total_students": 560, "address": "350 ZIPRICK RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X4H3" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323048", "name": "Pearson Road Elementary", - "total_students": 274, + "total_students": 290, "address": "700 PEARSON RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X5H8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323049", "name": "Glenrosa Elementary", - "total_students": 295, + "total_students": 262, "address": "3430 WEBBER RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V4T1G8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323050", "name": "Springvalley Elementary", - "total_students": 291, + "total_students": 325, "address": "470 ZIPRICK RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X4H4" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323051", "name": "Mount Boucherie Secondary", - "total_students": 1798, + "total_students": 1761, "address": "2751 CAMERON RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V1Z2T6" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323052", "name": "Hudson Road Elementary", - "total_students": 366, + "total_students": 355, "address": "1221 HUDSON RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V1Z1J5" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323055", "name": "Bellevue Creek Elementary", - "total_students": 255, + "total_students": 231, "address": "4574 RAYMER RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W1H9" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323056", "name": "Black Mountain Elementary", - "total_students": 439, + "total_students": 445, "address": "1650 GALLAGHER RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1P1G7" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323058", "name": "Helen Gorman Elementary", - "total_students": 248, + "total_students": 240, "address": "3230 SALMON RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V4T1A7" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323059", "name": "Okanagan Mission Secondary", - "total_students": 1336, + "total_students": 1345, "address": "4544 GORDON DR", "city": "KELOWNA", "province": "BC", "postal_code": "V1W1T4" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323060", "name": "Quigley Elementary", - "total_students": 274, + "total_students": 266, "address": "705 KITCH RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X5V8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323061", "name": "Peter Greer Elementary", - "total_students": 386, + "total_students": 369, "address": "10300 SHERMAN DR", "city": "WINFIELD", "province": "BC", "postal_code": "V4V1Y8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323063", "name": "Webber Road Elementary", - "total_students": 206, + "total_students": 216, "address": "2829 INVERNESS RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V4T1J5" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323065", "name": "Rose Valley Elementary", - "total_students": 289, + "total_students": 261, "address": "1680 WESTLAKE RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V1Z3G6" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323066", "name": "Davidson Road Elementary", - "total_students": 437, + "total_students": 434, "address": "2115 DAVIDSON RD", "city": "LAKE COUNTRY", "province": "BC", "postal_code": "V4V1R3" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323067", "name": "Shannon Lake Elementary", - "total_students": 425, + "total_students": 420, "address": "3044 SANDSTONE DR", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V4T1T2" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323070", "name": "Anne McClymont Elementary", - "total_students": 431, + "total_students": 413, "address": "4489 LAKESHORE RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W1W9" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323071", "name": "Glenrosa Middle School", - "total_students": 714, + "total_students": 754, "address": "2974 GLEN ABBEY PL", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V4T2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323072", "name": "Ellison Elementary", - "total_students": 197, + "total_students": 183, "address": "3735 PARKDALE RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X6K9" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323073", "name": "Chief Tomat Elementary", - "total_students": 296, + "total_students": 293, "address": "3365 EAST BOUNDARY RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V4T2R8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323074", "name": "Watson Road Elementary", - "total_students": 615, + "total_students": 591, "address": "475 YATES RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1V1R3" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323075", "name": "Constable Neil Bruce Middle School", - "total_students": 882, + "total_students": 927, "address": "2010 DAIMLER DR", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V1Z3Y4" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323076", "name": "Kelowna Secondary", - "total_students": 1862, + "total_students": 1891, "address": "1079 RAYMER AVE", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y4Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323077", "name": "Rutland Elementary", - "total_students": 449, + "total_students": 434, "address": "620 WEBSTER RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X4V5" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323078", "name": "Chute Lake Elementary", - "total_students": 399, + "total_students": 376, "address": "5240 LARK ST", "city": "KELOWNA", "province": "BC", "postal_code": "V1W4K8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323079", "name": "Mar Jok Elementary", - "total_students": 432, + "total_students": 424, "address": "2101 MCDOUGALL RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V1Z4A4" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323082", "name": "Central Secondary", - "total_students": 12, + "total_students": 10, "address": "1825 RICHTER ST", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y2M8" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323084", "name": "Canyon Falls Middle School", - "total_students": 734, + "total_students": 696, "address": "1211 FROST RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W4P1" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2323085", "name": "HS Grenda Middle School", - "total_students": 494, + "total_students": 490, "address": "10168 KONSCHUH RD", "city": "LAKE COUNTRY", "province": "BC", "postal_code": "V4V1T1" }, { - "public_or_independent": "BC Public School", - "district_number": "23", + "public_or_independent": "Public School", + "district_number": "023", "district_name": "Central Okanagan", "school_number": "2399159", "name": "eSchool23", - "total_students": 10, + "total_students": 247, "address": "1040 HOLLYWOOD ROAD S", "city": "KELOWNA", "province": "BC", "postal_code": "V1X4N2" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727007", "name": "Forest Grove Elementary", - "total_students": 85, + "total_students": 93, "address": "PO BOX 99", "city": "FOREST GROVE", "province": "BC", "postal_code": "V0K1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727008", "name": "Horsefly Elem-Jr Secondary", - "total_students": 67, + "total_students": 58, "address": "PO BOX 39", "city": "HORSEFLY", "province": "BC", "postal_code": "V0L1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727011", "name": "Marie Sharpe Elementary", - "total_students": 222, + "total_students": 209, "address": "260 CAMERON ST", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G1S8" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727012", "name": "100 Mile House Elementary", - "total_students": 299, + "total_students": 295, "address": "PO BOX 460", "city": "100 MILE HOUSE", "province": "BC", "postal_code": "V0K2E0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727014", "name": "Likely Elem-Jr Secondary", - "total_students": 24, + "total_students": 21, "address": "PO BOX 57", "city": "LIKELY", "province": "BC", "postal_code": "V0L1N0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727020", "name": "Big Lake Elementary", - "total_students": 23, + "total_students": 20, "address": "BOX 70", "city": "BIG LAKE", "province": "BC", "postal_code": "V0L1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727027", "name": "150 Mile Elementary", - "total_students": 234, + "total_students": 218, "address": "PO BOX 259", "city": "150 MILE HOUSE", "province": "BC", "postal_code": "V0K2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727030", "name": "Lac La Hache Elementary", - "total_students": 30, + "total_students": 25, "address": "PO BOX 128", "city": "LAC LA HACHE", "province": "BC", "postal_code": "V0K1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727041", "name": "Chilcotin Road Elementary", - "total_students": 208, + "total_students": 226, "address": "709 LYNE RD", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G3Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727045", "name": "Mountview Elementary", - "total_students": 175, + "total_students": 155, "address": "1222 DOG CREEK RD", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G3G9" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727047", "name": "Columneetza Junior Secondary", - "total_students": 709, + "total_students": 695, "address": "1045 WESTERN AVE", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G2J8" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727054", "name": "Anahim Lake Elem-Jr Secondary", - "total_students": 41, + "total_students": 33, "address": "PO BOX 3350", "city": "ANAHIM LAKE", "province": "BC", "postal_code": "V0L1C0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727056", "name": "Peter Skene Ogden Secondary", - "total_students": 555, + "total_students": 542, "address": "PO BOX 910", "city": "100 MILE HOUSE", "province": "BC", "postal_code": "V0K2E0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727057", "name": "Cataline Elementary", - "total_students": 319, + "total_students": 295, "address": "1175 BLAIR ST", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G1X3" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727059", "name": "Naghtaneqed Elem-Jr Secondary", - "total_students": 26, + "total_students": 20, "address": "PO BOX 100", "city": "NEMAIAH VALLEY", "province": "BC", "postal_code": "V0L1X0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727061", "name": "Horse Lake Elementary", - "total_students": 199, + "total_students": 204, "address": "6548 RYALL RD", "city": "LONE BUTTE", "province": "BC", "postal_code": "V0K1X3" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727062", "name": "Mile 108 Elementary", - "total_students": 164, + "total_students": 156, "address": "PO BOX 27", "city": "108 MILE RANCH", "province": "BC", "postal_code": "V0K2Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727065", "name": "Nesika Elementary", - "total_students": 256, + "total_students": 239, "address": "1180 MOON AVE", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G4A6" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727066", "name": "Tatla Lake Elem-Jr Secondary", - "total_students": 19, + "total_students": 24, "address": "PO BOX 56", "city": "TATLA LAKE", "province": "BC", "postal_code": "V0L1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727071", "name": "Alexis Creek Elementary/Secondary", @@ -3315,56 +3319,56 @@ "postal_code": "V0L1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2727072", "name": "Lake City Secondary", - "total_students": 812, + "total_students": 772, "address": "640 CARSON DRIVE", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G1T3" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2799060", "name": "Graduation Routes Other Ways", - "total_students": 39, + "total_students": 48, "address": "320 SECOND AVE N", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G1Z9" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2799094", "name": "Skyline Alternate School", - "total_students": 27, + "total_students": 21, "address": "320 SECOND AVE N", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G1Z9" }, { - "public_or_independent": "BC Public School", - "district_number": "27", + "public_or_independent": "Public School", + "district_number": "027", "district_name": "Cariboo-Chilcotin", "school_number": "2799181", "name": "PSO Outback Storefront", - "total_students": 15, + "total_students": 10, "address": "PO BOX 910", "city": "100 MILE HOUSE", "province": "BC", "postal_code": "V0K2E0" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828002", "name": "Wells Barkerville Elementary", @@ -3375,152 +3379,152 @@ "postal_code": "V0K2R0" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828004", "name": "Quesnel Junior School", - "total_students": 482, + "total_students": 447, "address": "950 MOUNTAIN ASH RD", "city": "QUESNEL", "province": "BC", "postal_code": "V2J3V7" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828008", "name": "Kersley Elementary School", - "total_students": 55, + "total_students": 59, "address": "2899 ARNOLDUS RD", "city": "QUESNEL", "province": "BC", "postal_code": "V2J6L2" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828016", "name": "Ecole Red Bluff Lhtako Elementary", - "total_students": 284, + "total_students": 283, "address": "1533 MAPLE DR", "city": "QUESNEL", "province": "BC", "postal_code": "V2J4A2" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828020", "name": "Bouchie Lake Elementary School", - "total_students": 154, + "total_students": 152, "address": "2074 BLACKWATER RD", "city": "QUESNEL", "province": "BC", "postal_code": "V2J7B3" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828021", "name": "Dragon Lake Elementary", - "total_students": 180, + "total_students": 182, "address": "2671 HYDRAULIC RD", "city": "QUESNEL", "province": "BC", "postal_code": "V2J4H4" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828024", "name": "Carson Elementary School", - "total_students": 111, + "total_students": 110, "address": "1255 GRAHAM AVE", "city": "QUESNEL", "province": "BC", "postal_code": "V2J3E2" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828032", "name": "Lakeview Elementary", - "total_students": 211, + "total_students": 212, "address": "1525 BERYL ST", "city": "QUESNEL", "province": "BC", "postal_code": "V2J4L8" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828034", "name": "Correlieu Secondary School", - "total_students": 746, + "total_students": 708, "address": "850 ANDERSON DR", "city": "QUESNEL", "province": "BC", "postal_code": "V2J1G4" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828036", "name": "Voyageur Elementary School", - "total_students": 240, + "total_students": 223, "address": "1337 LARK AVE", "city": "QUESNEL", "province": "BC", "postal_code": "V2J4K5" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828038", "name": "Parkland Elementary", - "total_students": 59, + "total_students": 54, "address": "5016 BJORNSON RD", "city": "QUESNEL", "province": "BC", "postal_code": "V2J6X7" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828039", "name": "Riverview Elementary", - "total_students": 173, + "total_students": 167, "address": "346 HARTLEY ST", "city": "QUESNEL", "province": "BC", "postal_code": "V2J1W4" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828040", "name": "Barlow Creek Elementary", - "total_students": 116, + "total_students": 112, "address": "816 BARKERVILLE HWY", "city": "QUESNEL", "province": "BC", "postal_code": "V2J6S6" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2828041", "name": "Nazko Valley Elementary", @@ -3531,392 +3535,392 @@ "postal_code": "V2J3H9" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2899005", - "name": "McNaughton Centre", - "total_students": 51, + "name": "Mcnaughton Centre", + "total_students": 44, "address": "241 KINCHANT ST", "city": "QUESNEL", "province": "BC", "postal_code": "V2J2R3" }, { - "public_or_independent": "BC Public School", - "district_number": "28", + "public_or_independent": "Public School", + "district_number": "028", "district_name": "Quesnel", "school_number": "2899174", "name": "Quesnel Online Learning", - "total_students": 44, + "total_students": 47, "address": "241 KINCHANT ST", "city": "QUESNEL", "province": "BC", "postal_code": "V2J2R3" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333000", "name": "Continuing Ed SD 33", - "total_students": 63, + "total_students": 223, "address": "46361 YALE RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P2P8" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333003", "name": "Strathcona Elementary", - "total_students": 352, + "total_students": 328, "address": "46375 STRATHCONA RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P3T1" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333004", "name": "Chilliwack Middle School", - "total_students": 604, + "total_students": 637, "address": "46354 YALE RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P2R1" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333005", "name": "Sardis Elementary", - "total_students": 453, + "total_students": 454, "address": "45775 MANUEL RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R2E6" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333008", "name": "Chilliwack Central Elementary Community", - "total_students": 264, + "total_students": 272, "address": "9435 YOUNG RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P4S7" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333009", - "name": "Cultus Lake Swilhcha Community School", - "total_students": 178, + "name": "Cultus Lake Swílhcha Community School", + "total_students": 182, "address": "71 SUNNYSIDE BLVD", "city": "CULTUS LAKE", "province": "BC", "postal_code": "V2R5B5" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333010", "name": "East Chilliwack Elementary", - "total_students": 291, + "total_students": 277, "address": "49190 CHILLIWACK CENTRAL RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P6H3" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333011", "name": "Vedder Elementary", - "total_students": 488, + "total_students": 497, "address": "45850 PROMONTORY RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R5Z5" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333012", "name": "Chilliwack Secondary", - "total_students": 1584, + "total_students": 1609, "address": "46363 YALE RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P2P8" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333013", "name": "Cheam Elementary", - "total_students": 247, + "total_students": 260, "address": "9895 BANFORD RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P6H3" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333015", "name": "Yarrow Community School", - "total_students": 271, + "total_students": 278, "address": "4605 WILSON RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R5C4" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333016", "name": "Little Mountain Elementary", - "total_students": 406, + "total_students": 387, "address": "9900 CARLETON ST", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P6E1" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333017", "name": "Watson Elementary", - "total_students": 442, + "total_students": 413, "address": "45305 WATSON RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R2H5" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333018", "name": "Sardis Secondary", - "total_students": 1491, + "total_students": 1486, "address": "45460 STEVENSON RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R2Z6" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333019", "name": "Bernard Elementary", - "total_students": 319, + "total_students": 304, "address": "45465 BERNARD AVE", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P1H5" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333023", "name": "Rosedale Traditional Community", - "total_students": 598, + "total_students": 603, "address": "50850 YALE RD RR 1", "city": "ROSEDALE", "province": "BC", "postal_code": "V0X1X2" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333024", "name": "Robertson Elementary", - "total_students": 291, + "total_students": 282, "address": "46106 SOUTHLANDS CRES", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P1B1" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333028", "name": "McCammon Elementary", - "total_students": 278, + "total_students": 290, "address": "9601 HAMILTON ST", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P3X4" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333029", "name": "Unsworth Elementary", - "total_students": 311, + "total_students": 294, "address": "5685 UNSWORTH RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R4P5" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333030", "name": "Leary Integrated Arts & Technology", - "total_students": 281, + "total_students": 259, "address": "9320 WALDEN ST", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P7Y2" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333033", "name": "A D Rundle Middle School", - "total_students": 579, + "total_students": 559, "address": "45660 HOCKING AVE", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P1A1" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333034", "name": "Vedder Middle School", - "total_students": 694, + "total_students": 671, "address": "45560 SOUTH SUMAS RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R1S3" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333035", "name": "Tyson Elementary", - "total_students": 285, + "total_students": 273, "address": "45170 S SUMAS RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R1W9" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333038", "name": "Mount Slesse Middle School", - "total_students": 638, + "total_students": 610, "address": "5871 TYSON RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R2R3" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333039", "name": "Evans Elementary", - "total_students": 212, + "total_students": 215, "address": "7600 EVANS RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R1L2" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333040", "name": "Promontory Heights Community Elementary", - "total_students": 585, + "total_students": 599, "address": "46200 STONEVIEW DR", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R5W8" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333042", "name": "Greendale Elementary", - "total_students": 161, + "total_students": 163, "address": "6621 SUMAS PRAIRIE RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R4K1" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333044", "name": "GW Graham Secondary", - "total_students": 1585, + "total_students": 1584, "address": "45955 THOMAS RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R0B5" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333045", "name": "Imagine High Integrated Arts/Technology", - "total_students": 347, + "total_students": 354, "address": "45669 YALE RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3333046", - "name": "Stito:S La:Lem Toti:Lt", - "total_students": 939, + "name": "Stitó:s Lá:lém Totí:lt", + "total_students": 959, "address": "5337 TYSON ROAD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R3X7" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3398003", "name": "Fraser Valley Distance Education", @@ -3927,392 +3931,392 @@ "postal_code": "V2P2P8" }, { - "public_or_independent": "BC Public School", - "district_number": "33", + "public_or_independent": "Public School", + "district_number": "033", "district_name": "Chilliwack", "school_number": "3399056", - "name": "Kw'iyeqel Secondary", - "total_students": 169, + "name": "Kw'íyeqel Secondary", + "total_students": 10, "address": "8855 ELM DR", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P4Y8" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434000", "name": "Bakerview Centre for Learning - CE", - "total_students": 10, + "total_students": 17, "address": "32622 MARSHALL RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T4A2" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434003", "name": "Mt Lehman Elementary", - "total_students": 111, + "total_students": 108, "address": "6381 MT LEHMAN RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X2G5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434005", "name": "ASIA - North Poplar", - "total_students": 280, + "total_students": 265, "address": "32041 MARSHALL RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T1A2" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434007", - "name": "Sema:th Elementary School", - "total_students": 145, + "name": "Semá:th Elementary School", + "total_students": 154, "address": "36321 VYE RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V3G1Z5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434011", "name": "Bradner Elementary", - "total_students": 92, + "total_students": 102, "address": "5291 BRADNER RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X2P5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434016", "name": "South Poplar Traditional Elementary", - "total_students": 277, + "total_students": 275, "address": "32746 HUNTINGDON RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T5Z1" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434018", "name": "Clearbrook Elementary", - "total_students": 424, + "total_students": 450, "address": "3614 CLEARBROOK RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T6N3" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434019", "name": "King Traditional Elementary", - "total_students": 352, + "total_students": 347, "address": "28776 KING RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X2R4" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434021", "name": "Alexander Elementary", - "total_students": 281, + "total_students": 296, "address": "2250 LOBBAN RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S3W1" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434022", "name": "Abbotsford Senior Secondary School", - "total_students": 1325, + "total_students": 1327, "address": "33355 BEVAN AVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S0E7" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434023", "name": "Barrowtown Elementary", - "total_students": 52, + "total_students": 55, "address": "5137 TOLMIE RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V3G2V4" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434025", "name": "Abbotsford Middle School", - "total_students": 720, + "total_students": 731, "address": "33231 BEVAN AVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S0A9" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434026", "name": "Aberdeen Elementary", - "total_students": 215, + "total_students": 196, "address": "2975 BRADNER RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X1K6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434027", "name": "McMillan Elementary", - "total_students": 397, + "total_students": 370, "address": "34830 OAKHILL DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S7R3" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434028", "name": "Godson Elementary", - "total_students": 373, + "total_students": 371, "address": "33130 BEVAN AVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S1T6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434031", "name": "Jackson Elementary", - "total_students": 249, + "total_students": 245, "address": "33165 KING RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S7Z9" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434032", "name": "Ross Elementary", - "total_students": 154, + "total_students": 151, "address": "2451 ROSS RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X1J3" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434033", "name": "Margaret Stenersen Elementary", - "total_students": 464, + "total_students": 444, "address": "3060 OLD CLAYBURN RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S4H3" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434035", "name": "Auguston Traditional Elementary", - "total_students": 337, + "total_students": 333, "address": "36367 STEPHEN LEACOCK DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V3G2Z6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434036", "name": "Ten Broeck Elementary", - "total_students": 363, + "total_students": 351, "address": "2580 STANLEY ST", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T2R4" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434037", "name": "Centennial Park Elementary", - "total_students": 270, + "total_students": 263, "address": "2527 GLADWIN RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T3N8" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434038", "name": "Yale Secondary", - "total_students": 1190, + "total_students": 1200, "address": "34620 OLD YALE RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S7S6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434041", "name": "W J Mouat Secondary", - "total_students": 1520, + "total_students": 1505, "address": "32355 MOUAT DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T4E9" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434042", "name": "William A. Fraser Middle School", - "total_students": 707, + "total_students": 766, "address": "34695 BLATCHFORD WAY", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S6M6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434043", "name": "Dormick Park Elementary", - "total_students": 273, + "total_students": 276, "address": "32161 Dormick Avenue", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T3J6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434044", "name": "John Maclure Community School", - "total_students": 388, + "total_students": 378, "address": "2990 ORIOLE CRES", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T4E1" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434045", "name": "Dr Thomas A Swift Elementary", - "total_students": 346, + "total_students": 347, "address": "34800 MIERAU ST", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S5Y4" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434046", "name": "Terry Fox Elementary", - "total_students": 281, + "total_students": 315, "address": "3071 BABICH ST", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S5W5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434047", "name": "Chief Dan George Middle", - "total_students": 598, + "total_students": 561, "address": "32877 OLD RIVERSIDE RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S8K2" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434048", "name": "Prince Charles Elementary", - "total_students": 281, + "total_students": 263, "address": "35410 MCKEE RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V3G3B1" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434049", "name": "Blue Jay Elementary", - "total_students": 420, + "total_students": 424, "address": "30995 SOUTHERN DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T6X5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434050", "name": "Sandy Hill Elementary", @@ -4323,1940 +4327,1928 @@ "postal_code": "V3G2Z5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434051", "name": "Harry Sayers Elementary", - "total_students": 392, + "total_students": 375, "address": "31321 BLUERIDGE DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T6W2" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434052", "name": "Rick Hansen Secondary", - "total_students": 960, + "total_students": 961, "address": "31150 BLUERIDGE DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T5R2" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434053", "name": "Mountain Elementary", - "total_students": 240, + "total_students": 233, "address": "2299 MOUNTAIN DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V3G1E6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434054", "name": "Robert Bateman Secondary", - "total_students": 1064, + "total_students": 1058, "address": "35045 EXBURY AVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S7L1" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434055", "name": "Dr Roberta Bondar Elementary", - "total_students": 257, + "total_students": 237, "address": "32717 CHILCOTIN DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T5S5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434056", "name": "Dave Kandal Elementary", - "total_students": 210, + "total_students": 231, "address": "3551 CRESTVIEW AVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T6T5" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434057", "name": "Colleen And Gordie Howe Middle School", - "total_students": 606, + "total_students": 526, "address": "3174 CLEARBROOK RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T4N6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434058", "name": "Eugene Reimer Middle School", - "total_students": 691, + "total_students": 697, "address": "3433 FIRHILL DR", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T6X6" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434059", - "name": "Mathxwi Elementary School", - "total_students": 149, + "name": "Mathxwí Elementary School", + "total_students": 144, "address": "33661 ELIZABETH AVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X1T4" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434060", "name": "Clayburn Middle School", - "total_students": 740, + "total_students": 734, "address": "35139 LABURNUM AVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S8N3" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434061", "name": "Abbotsford Traditional School", - "total_students": 746, + "total_students": 804, "address": "2272 WINDSOR ST", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T6M1" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434064", - "name": "Abbotsford School of Integrated Arts", - "total_students": 335, + "name": "Abbotsford School Of Integrated Arts", + "total_students": 321, "address": "36232 LOWER SUMAS MTN RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V3G2J3" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3434066", - "name": "Irene Kelleher Toti:ltawtxw", - "total_students": 283, + "name": "Irene Kelleher Totí:ltawtxw", + "total_students": 281, "address": "2540 EAGLE MOUNTAIN DRIVE", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V3G3A1" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3499055", "name": "Bakerview Centre for Learning", - "total_students": 10, + "total_students": 235, "address": "32622 MARSHALL RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T4A2" }, { - "public_or_independent": "BC Public School", - "district_number": "34", + "public_or_independent": "Public School", + "district_number": "034", "district_name": "Abbotsford", "school_number": "3499101", "name": "Abbotsford Virtual School", - "total_students": 536, + "total_students": 631, "address": "33952 PINE ST", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S2P3" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535002", "name": "Fort Langley Elementary", - "total_students": 286, + "total_students": 288, "address": "8877 BARTLETT ST", "city": "FORT LANGLEY", "province": "BC", "postal_code": "V1M2S6" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535009", "name": "Belmont Elementary", - "total_students": 545, + "total_students": 549, "address": "20390 40 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A2X1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535010", "name": "U-Connect", - "total_students": 129, + "total_students": 138, "address": "20190 48 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A3L4" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535015", "name": "North Otter Elementary", - "total_students": 390, + "total_students": 389, "address": "5370 248 ST", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W1A7" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535016", "name": "Willoughby Elementary", - "total_students": 651, + "total_students": 507, "address": "20766 80 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y1X6" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535017", "name": "Glenwood Elementary", - "total_students": 219, + "total_students": 212, "address": "20785 24 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z2B4" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535019", "name": "Langley Secondary", - "total_students": 1169, + "total_students": 1303, "address": "21405 56 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535020", "name": "Aldergrove Community Secondary", - "total_students": 791, + "total_students": 862, "address": "26850 29 AVE", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W3C1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535022", "name": "Simonds Elementary", - "total_students": 160, + "total_students": 154, "address": "20190 48 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A3L4" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535023", "name": "Coghlan Fundamental Elementary", - "total_students": 224, + "total_students": 225, "address": "4452 256TH ST", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W1J3" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535024", "name": "Wix-Brown Elementary", - "total_students": 216, + "total_students": 233, "address": "23851 24 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z3A3" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535026", "name": "Peterson Road Elementary", - "total_students": 244, + "total_students": 235, "address": "23422 47 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z2S3" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535029", "name": "Langley Fine Arts School", - "total_students": 876, + "total_students": 889, "address": "9096 TRATTLE ST", "city": "FORT LANGLEY", "province": "BC", "postal_code": "V1M2S6" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535032", "name": "Parkside Centennial Elementary", - "total_students": 505, + "total_students": 522, "address": "3300 270 ST", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W3H2" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535033", "name": "Blacklock Fine Arts Elementary", - "total_students": 303, + "total_students": 289, "address": "5100 206 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V3A2E5" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535034", "name": "D.W. Poppy Secondary", - "total_students": 837, + "total_students": 892, "address": "23752 52 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z2P3" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535036", "name": "Brookswood Secondary", - "total_students": 1056, + "total_students": 1063, "address": "20902 37A AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A5N2" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535037", "name": "Nicomekl Elementary", - "total_students": 426, + "total_students": 446, "address": "20050 53 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A3T9" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535038", "name": "Alice Brown Elementary", - "total_students": 311, + "total_students": 302, "address": "20011 44 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A6L8" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535039", "name": "Uplands Elementary", - "total_students": 242, + "total_students": 218, "address": "4471 207A ST", "city": "LANGLEY", "province": "BC", "postal_code": "V3A5V8" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535040", "name": "James Kennedy Elementary", - "total_students": 662, + "total_students": 665, "address": "9060 212 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V1M2B7" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535041", "name": "R E Mountain Secondary", - "total_students": 2412, + "total_students": 2571, "address": "7633 202A ST", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y1W4" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535042", "name": "Shortreed Community School", - "total_students": 460, + "total_students": 474, "address": "27330 28 AVE", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W3K1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535043", "name": "West Langley Elementary", - "total_students": 244, + "total_students": 249, "address": "9403 212 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V1M1M1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535044", "name": "Noel Booth Elementary", - "total_students": 326, + "total_students": 338, "address": "20202 35 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A0N1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535045", "name": "Douglas Park Community", - "total_students": 350, + "total_students": 374, "address": "5409 206 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V3A2C5" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535046", "name": "Langley Meadows Elementary", - "total_students": 499, + "total_students": 523, "address": "2244 WILLOUGHBY WAY", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y1C1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535047", "name": "Alex Hope Elementary", - "total_students": 568, + "total_students": 575, "address": "21150 85 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V1M2M4" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535048", "name": "Gordon Greenwood Elementary", - "total_students": 337, + "total_students": 311, "address": "9175 206 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V1M2X2" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535050", "name": "Walnut Grove Secondary", - "total_students": 2186, + "total_students": 2199, "address": "8919 WALNUT GROVE DR", "city": "LANGLEY", "province": "BC", "postal_code": "V1M2N7" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535051", "name": "James Hill Elementary", - "total_students": 365, + "total_students": 360, "address": "22144 OLD YALE RD", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z1B5" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535052", "name": "Langley Fundamental Elementary", - "total_students": 516, + "total_students": 514, "address": "21789 50 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A3T2" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535053", "name": "Dorothy Peacock Elementary", - "total_students": 480, + "total_students": 469, "address": "20292 91A AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V1M2G2" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535054", "name": "Topham Elementary", - "total_students": 321, + "total_students": 332, "address": "21555 91 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V1M3Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535055", "name": "R C Garnett Demonstration Elementary", - "total_students": 611, + "total_students": 621, "address": "7096 201 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y3G7" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535056", "name": "Langley Fundamental Middle/Secondary Sch", - "total_students": 803, + "total_students": 820, "address": "21250 42 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A8K6" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535057", "name": "H D Stafford Middle", - "total_students": 759, + "total_students": 784, "address": "20441 GRADE CRES", "city": "LANGLEY", "province": "BC", "postal_code": "V3A4J8" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535058", "name": "Betty Gilbert Middle", - "total_students": 491, + "total_students": 489, "address": "26845 27 AVE", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W3E6" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535061", "name": "Lynn Fripps Elementary", - "total_students": 651, + "total_students": 577, "address": "21020 83 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y0K8" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535062", "name": "Richard Bulpitt Elementary", - "total_students": 647, + "total_students": 623, "address": "20965 77A AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y2E6" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535063", "name": "Yorkson Creek Middle School", - "total_students": 948, + "total_students": 1053, "address": "20686 84 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y2B5" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535065", "name": "Peter Ewart Middle School", - "total_students": 949, + "total_students": 983, "address": "7755 202A ST", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y1W4" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3535066", "name": "Donna Gabriel Robins Elementary", - "total_students": 649, + "total_students": 637, "address": "7844 204b ST", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y3N9" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", + "district_name": "Langley", + "school_number": "3535067", + "name": "Josette Dandurand Elementary", + "total_students": 446, + "address": "20143 82 Avenue", + "city": "Langley", + "province": "BC", + "postal_code": "V2Y2A8" + }, + { + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3599050", "name": "Langley Education Centre", - "total_students": 440, + "total_students": 587, "address": "21405A 56 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3599092", "name": "Vanguard", - "total_students": 103, + "total_students": 98, "address": "3825 244 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z2L1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3599168", "name": "Langley Online and Distributed Learning", - "total_students": 335, + "total_students": 401, "address": "21405A 56 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", + "public_or_independent": "Public School", + "district_number": "035", "district_name": "Langley", "school_number": "3599173", "name": "Choices Program", - "total_students": 129, + "total_students": 45, "address": "21405A 56 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "35", - "district_name": "Langley", - "school_number": "3599201", - "name": "Advance Alternate", - "total_students": 18, - "address": "26850 29 AVE", - "city": "ALDERGROVE", - "province": "BC", - "postal_code": "V4W3C1" - }, - { - "public_or_independent": "BC Public School", - "district_number": "35", - "district_name": "Langley", - "school_number": "3599202", - "name": "Focus Alternate", - "total_students": 31, - "address": "21405 56 AVE", - "city": "LANGLEY", - "province": "BC", - "postal_code": "V2Y2N1" - }, - { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636000", "name": "Continuing Ed SD36 (Invergarry)", - "total_students": 1679, + "total_students": 1730, "address": "12772 88 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W3J9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636001", "name": "Hjorth Road Elementary", - "total_students": 331, + "total_students": 329, "address": "14781 104 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R5X4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636002", "name": "Port Kells Elementary", - "total_students": 78, + "total_students": 71, "address": "19076 88 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N5T2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636004", "name": "Cloverdale Traditional", - "total_students": 303, + "total_students": 307, "address": "17857 56 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S1E2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636009", "name": "White Rock Elementary", - "total_students": 611, + "total_students": 577, "address": "1273 FIR ST", "city": "WHITE ROCK", "province": "BC", "postal_code": "V4B5A6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636012", "name": "Colebrook Elementary", - "total_students": 196, + "total_students": 170, "address": "5404 125A ST", "city": "SURREY", "province": "BC", "postal_code": "V3X1W6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636018", "name": "East Kensington Elementary", - "total_students": 88, + "total_students": 117, "address": "2795 184 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S9V2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636021", "name": "Sullivan Elementary", - "total_students": 355, + "total_students": 352, "address": "6016 152 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S3K6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636022", "name": "Queen Elizabeth Secondary", - "total_students": 1498, + "total_students": 1566, "address": "9457 KING GEORGE BLVD", "city": "SURREY", "province": "BC", "postal_code": "V3V5W4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636028", "name": "North Surrey Secondary", - "total_students": 1449, + "total_students": 1420, "address": "15945 96 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N2R8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636029", "name": "Harold Bishop Elementary", - "total_students": 510, + "total_students": 504, "address": "15670 104 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N2J3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636031", "name": "Crescent Park Elementary", - "total_students": 307, + "total_students": 305, "address": "2440 128 ST", "city": "SURREY", "province": "BC", "postal_code": "V4A3W3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636033", "name": "Bridgeview Elementary", - "total_students": 196, + "total_students": 184, "address": "12834 115A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R2X4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636034", "name": "J T Brown Elementary", - "total_students": 253, + "total_students": 247, "address": "12530 60 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3X2K8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636035", "name": "Latimer Road Elementary", - "total_students": 623, + "total_students": 613, "address": "19233 60 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S2T5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636036", "name": "Ray Shepherd Elementary", - "total_students": 345, + "total_students": 337, "address": "1650 136 ST", "city": "SURREY", "province": "BC", "postal_code": "V4A4E4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636037", "name": "Dr F D Sinclair Elementary", - "total_students": 362, + "total_students": 343, "address": "7480 128 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W4E5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636038", "name": "Sunnyside Elementary", - "total_students": 670, + "total_students": 689, "address": "2828 159 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S0E5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636039", "name": "Surrey Centre Elementary", - "total_students": 367, + "total_students": 392, "address": "16670 OLD MCLELLAN RD", "city": "SURREY", "province": "BC", "postal_code": "V3S1K3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636040", "name": "K B Woodward Elementary", - "total_students": 762, + "total_students": 621, "address": "13130 106 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3T2C3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636041", "name": "Lord Tweedsmuir Secondary", - "total_students": 1856, + "total_students": 1844, "address": "6151 180 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S4L5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636043", "name": "Green Timbers Elementary", - "total_students": 559, + "total_students": 531, "address": "8824 144 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V5Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636044", "name": "Prince Charles Elementary", - "total_students": 411, + "total_students": 390, "address": "12405 100 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V2X2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636045", "name": "Johnston Heights Secondary", - "total_students": 1505, + "total_students": 1559, "address": "15350 99 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R0R9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636047", "name": "Guildford Park Secondary", - "total_students": 1408, + "total_students": 1428, "address": "10707 146 ST", "city": "SURREY", "province": "BC", "postal_code": "V3R1T5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636049", "name": "Semiahmoo Secondary", - "total_students": 1544, + "total_students": 1664, "address": "1785 148 ST", "city": "SURREY", "province": "BC", "postal_code": "V4A4M5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636050", "name": "Mountainview Montessori", - "total_students": 317, + "total_students": 307, "address": "15225 98 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R1J2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636051", "name": "A H P Matthew Elementary", - "total_students": 446, + "total_students": 428, "address": "13367 97 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3T1A4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636053", "name": "T E Scott Elementary", - "total_students": 508, + "total_students": 537, "address": "7079 148 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S3E5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636054", "name": "Mary Jane Shannon Elementary", - "total_students": 373, + "total_students": 379, "address": "10682 144 ST", "city": "SURREY", "province": "BC", "postal_code": "V3T4W1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636055", "name": "Lena Shaw Elementary", - "total_students": 702, + "total_students": 719, "address": "14250 100A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3T1K8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636056", "name": "H T Thrift Elementary", - "total_students": 357, + "total_students": 333, "address": "1739 148 ST", "city": "SURREY", "province": "BC", "postal_code": "V4A4M6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636057", "name": "William Watson Elementary", - "total_students": 451, + "total_students": 417, "address": "16450 80 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N0H3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636058", "name": "David Brankin Elementary", - "total_students": 425, + "total_students": 378, "address": "9160 128 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V5M8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636059", "name": "Ecole Riverdale Elementary", - "total_students": 457, + "total_students": 458, "address": "14835 108A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R1W9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636060", "name": "Senator Reid Elementary", - "total_students": 319, + "total_students": 317, "address": "9341 126 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V5C4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636061", "name": "Martha Currie Elementary", - "total_students": 691, + "total_students": 678, "address": "5811 184 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S4N2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636062", "name": "James Ardiel Elementary", - "total_students": 487, + "total_students": 516, "address": "13751 112 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R2G4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636063", "name": "McLeod Road Traditional", - "total_students": 211, + "total_students": 205, "address": "6325 142 ST", "city": "SURREY", "province": "BC", "postal_code": "V3X1B9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636064", "name": "Old Yale Road Elementary", - "total_students": 534, + "total_students": 588, "address": "10135 132 ST", "city": "SURREY", "province": "BC", "postal_code": "V3T3T6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636067", "name": "Erma Stephenson Elementary", - "total_students": 449, + "total_students": 441, "address": "10929 160 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N1P3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636069", "name": "Bear Creek Elementary", - "total_students": 592, + "total_students": 570, "address": "13780 80 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W7X6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636070", "name": "Peace Arch Elementary", - "total_students": 545, + "total_students": 508, "address": "15877 ROPER AVE", "city": "WHITE ROCK", "province": "BC", "postal_code": "V4B2H5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636071", "name": "Henry Bose Elementary", - "total_students": 305, + "total_students": 306, "address": "6550 134 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W4S3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636072", "name": "Newton Elementary", - "total_students": 413, + "total_students": 432, "address": "13359 81 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W3C5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636073", "name": "Cedar Hills Elementary", - "total_students": 329, + "total_students": 315, "address": "12370 98 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V2K3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636077", "name": "Royal Heights Elementary", - "total_students": 202, + "total_students": 198, "address": "11665 97 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V2B9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636079", "name": "L.A. Matheson Secondary", - "total_students": 1157, + "total_students": 1179, "address": "9484 122 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V4M1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636080", "name": "Surrey Traditional", - "total_students": 295, + "total_students": 289, "address": "13875 113 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R2J6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636081", "name": "Holly Elementary", - "total_students": 497, + "total_students": 496, "address": "10719 150 ST", "city": "SURREY", "province": "BC", "postal_code": "V3R4C8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636082", "name": "Georges Vanier Elementary", - "total_students": 609, + "total_students": 585, "address": "6985 142 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W5N1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636084", "name": "Ellendale Elementary", - "total_students": 197, + "total_students": 187, "address": "14525 110A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R2B4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636087", "name": "Simon Cunningham Elementary", - "total_students": 560, + "total_students": 505, "address": "9380 140 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V5Z4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636089", "name": "Jessie Lee Elementary", - "total_students": 413, + "total_students": 379, "address": "2064 154 ST", "city": "SURREY", "province": "BC", "postal_code": "V4A4S3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636090", "name": "George Greenaway Elementary", - "total_students": 576, + "total_students": 577, "address": "17285 61A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S1W3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636105", "name": "Earl Marriott Secondary", - "total_students": 1453, + "total_students": 1530, "address": "15751 16 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4A1S1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636106", "name": "Frank Hurt Secondary", - "total_students": 1539, + "total_students": 1521, "address": "13940 77 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W5Z4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636107", "name": "Betty Huff Elementary", - "total_students": 370, + "total_students": 332, "address": "13055 HUNTLEY AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V1V1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636109", "name": "Strawberry Hill Elementary", - "total_students": 416, + "total_students": 408, "address": "7633 124 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W8N2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636111", "name": "Cindrich Elementary", - "total_students": 438, + "total_students": 418, "address": "13455 90 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V8A2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636112", "name": "Creekside Elementary", - "total_students": 299, + "total_students": 291, "address": "13838 91 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V7K4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636114", "name": "Enver Creek Secondary", - "total_students": 1415, + "total_students": 1405, "address": "14505 84 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S8X2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636116", "name": "W E Kinvig Elementary", - "total_students": 432, + "total_students": 429, "address": "13266 70B AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W8N1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636117", "name": "Laronde Elementary", - "total_students": 462, + "total_students": 466, "address": "1880 LARONDE DR", "city": "SURREY", "province": "BC", "postal_code": "V4A9S4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636118", "name": "South Meridian Elementary", - "total_students": 349, + "total_students": 334, "address": "16244 13 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4A8E6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636122", "name": "Don Christian Elementary", - "total_students": 411, + "total_students": 389, "address": "6256 184 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S8E6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636128", "name": "Bonaccord Elementary", - "total_students": 553, + "total_students": 560, "address": "14986 98 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R1J1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636129", "name": "M B Sanford Elementary", - "total_students": 530, + "total_students": 483, "address": "7318 143 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W7T6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636130", "name": "Maple Green Elementary", - "total_students": 394, + "total_students": 392, "address": "14898 SPENSER DR", "city": "SURREY", "province": "BC", "postal_code": "V3S7K7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636131", "name": "Hyland Elementary", - "total_students": 469, + "total_students": 499, "address": "6677 140 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W5J3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636132", "name": "Kennedy Trail Elementary", - "total_students": 274, + "total_students": 283, "address": "8305 122A ST", "city": "SURREY", "province": "BC", "postal_code": "V3W9P8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636134", "name": "Pacific Heights Elementary", - "total_students": 502, + "total_students": 514, "address": "17148 26 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S0A4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636136", "name": "Berkshire Park Elementary", - "total_students": 455, + "total_students": 444, "address": "15372 94 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R1E3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636137", "name": "Panorama Park Elementary", - "total_students": 451, + "total_students": 438, "address": "12878 62 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3X2E8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636138", "name": "North Ridge Elementary", - "total_students": 506, + "total_students": 458, "address": "13460 62 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3X2J2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636139", "name": "Cougar Creek Elementary", - "total_students": 372, + "total_students": 354, "address": "12236 70A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W4Z8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636140", "name": "Martha Jane Norris Elementary", - "total_students": 427, + "total_students": 446, "address": "12928 66A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W8Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636141", "name": "Fraser Heights Secondary", - "total_students": 1621, + "total_students": 1611, "address": "16060 108 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N1M1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636142", "name": "Fraser Wood Elementary", - "total_students": 556, + "total_students": 506, "address": "10650 164 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N1W8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636143", "name": "Serpentine Heights Elementary", - "total_students": 417, + "total_students": 412, "address": "16126 93A AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N3A2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636144", "name": "Boundary Park Elementary", - "total_students": 220, + "total_students": 204, "address": "12332 NORTH BOUNDARY DR", "city": "SURREY", "province": "BC", "postal_code": "V3X1Z6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636145", "name": "Woodland Park Elementary", - "total_students": 537, + "total_students": 549, "address": "9025 158 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N2Y6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636146", "name": "Brookside Elementary", - "total_students": 371, + "total_students": 358, "address": "8555 142A ST", "city": "SURREY", "province": "BC", "postal_code": "V3W0S6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636147", "name": "Westerman Elementary", - "total_students": 372, + "total_students": 336, "address": "7626 122 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W1H4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636148", "name": "Chantrell Creek Elementary", - "total_students": 350, + "total_students": 321, "address": "2575 137 ST", "city": "SURREY", "province": "BC", "postal_code": "V4P2K5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636149", "name": "Sunrise Ridge Elementary", - "total_students": 370, + "total_students": 360, "address": "18690 60 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S8L8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636150", "name": "Tamanawis Secondary", - "total_students": 1465, + "total_students": 1391, "address": "12600 66 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W2A8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636151", "name": "Cambridge Elementary", - "total_students": 774, + "total_students": 641, "address": "6115 150 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S3H7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636152", "name": "Walnut Road Elementary", - "total_students": 838, + "total_students": 847, "address": "16152 82 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N0N5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636153", "name": "Adams Road Elementary", - "total_students": 567, + "total_students": 516, "address": "18228 68 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S9H5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636155", "name": "Coast Meridian Elementary", - "total_students": 281, + "total_students": 285, "address": "8222 168A ST", "city": "SURREY", "province": "BC", "postal_code": "V4N4T8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636156", "name": "Elgin Park Secondary", - "total_students": 1428, + "total_students": 1426, "address": "13484 24 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4A2G5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636157", "name": "Coyote Creek Elementary", - "total_students": 793, + "total_students": 752, "address": "8131 156 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S3R4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636158", "name": "Beaver Creek Elementary", - "total_students": 440, + "total_students": 429, "address": "6505 123A ST", "city": "SURREY", "province": "BC", "postal_code": "V3W5Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636159", "name": "Dogwood Elementary", - "total_students": 418, + "total_students": 407, "address": "10752 157 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N1K6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636160", "name": "Frost Road Elementary", - "total_students": 570, + "total_students": 555, "address": "8606 162 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N1B5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636161", "name": "Semiahmoo Trail Elementary", - "total_students": 430, + "total_students": 413, "address": "3040 145A ST", "city": "SURREY", "province": "BC", "postal_code": "V4P1P8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636162", "name": "Bayridge Elementary", @@ -6267,560 +6259,512 @@ "postal_code": "V4A6G7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636164", "name": "Sullivan Heights Secondary", - "total_students": 1970, + "total_students": 2091, "address": "6248 144 ST", "city": "SURREY", "province": "BC", "postal_code": "V3X1A1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636165", "name": "Chimney Hill Elementary", - "total_students": 552, + "total_students": 516, "address": "14755 74 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S8Y8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636167", "name": "Fleetwood Park Secondary", - "total_students": 1744, + "total_students": 1798, "address": "7940 156 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S3R3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636170", "name": "Ocean Cliff Elementary", - "total_students": 315, + "total_students": 309, "address": "12550 20 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4A1Y6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636172", "name": "William F. Davidson Elementary", - "total_students": 427, + "total_students": 430, "address": "15550 99A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R9H5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636173", "name": "Bothwell Elementary School", - "total_students": 360, + "total_students": 357, "address": "17070 102 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N4N6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636174", "name": "Kirkbride Elementary", - "total_students": 370, + "total_students": 359, "address": "12150 92 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V1G2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636175", "name": "Clayton Heights Secondary", - "total_students": 1371, + "total_students": 1316, "address": "7003 188 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N3G6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636176", "name": "Hillcrest Elementary", - "total_students": 464, + "total_students": 465, "address": "18599 65 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S8T2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636177", "name": "Grandview Heights Secondary", - "total_students": 1790, + "total_students": 1855, "address": "16987 25 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S9V2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636178", "name": "A J McLellan Elementary", - "total_students": 485, + "total_students": 456, "address": "16545 61 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S5V4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636180", "name": "Douglas Elementary", - "total_students": 520, + "total_students": 509, "address": "17325 2 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3Z9P9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636183", "name": "Forsyth Road Elementary", - "total_students": 498, + "total_students": 499, "address": "10730 139 ST", "city": "SURREY", "province": "BC", "postal_code": "V3T4L9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636184", "name": "Maddaugh Elementary", - "total_students": 574, + "total_students": 580, "address": "19405 76 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N6C6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636186", "name": "Janice Churchill Elementary", - "total_students": 240, + "total_students": 231, "address": "8226 146 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S3A5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636188", "name": "Morgan Elementary", - "total_students": 551, + "total_students": 550, "address": "3366 156A ST", "city": "SURREY", "province": "BC", "postal_code": "V3Z9Y7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636189", "name": "Rosemary Heights Elementary", - "total_students": 577, + "total_students": 543, "address": "15516 36 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3Z0J5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636201", "name": "Katzie Elementary", - "total_students": 753, + "total_students": 740, "address": "6887 194A ST", "city": "SURREY", "province": "BC", "postal_code": "V4N1N2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636203", "name": "Hazelgrove Elementary", - "total_students": 621, + "total_students": 574, "address": "7057 - 191 STREET", "city": "SURREY", "province": "BC", "postal_code": "V4N6E5" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636206", "name": "Edgewood Elementary", - "total_students": 755, + "total_students": 718, "address": "16666 23 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3Z9X8" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636211", "name": "Goldstone Park Elementary", - "total_students": 718, + "total_students": 557, "address": "6287 146 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S3A3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636212", "name": "Woodward Hill Elementary", - "total_students": 700, + "total_students": 541, "address": "6082 142 ST", "city": "SURREY", "province": "BC", "postal_code": "V3X1C1" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636215", "name": "Ecole Salish Secondary", - "total_students": 1560, + "total_students": 1554, "address": "7278 184 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N5V2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636218", "name": "Regent Road Elementary", - "total_students": 343, + "total_students": 331, "address": "18711 74 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N6C2" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636232", "name": "Ecole Panorama Ridge Secondary", - "total_students": 1553, + "total_students": 1512, "address": "13220 64 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W1X9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636242", "name": "SAIL Secondary", - "total_students": 68, + "total_students": 71, "address": "14123 92 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V1J7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636246", "name": "Princess Margaret Secondary", - "total_students": 1465, + "total_students": 1438, "address": "12870 72 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W2M9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636248", "name": "Kwantlen Park Secondary", - "total_students": 1673, + "total_students": 1659, "address": "10441 132 ST", "city": "SURREY", "province": "BC", "postal_code": "V3T3V3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636522", "name": "Continuing Ed SD36 (Queen Elizabeth)", - "total_students": 309, + "total_students": 375, "address": "9457 KING GEORGE BLVD", "city": "SURREY", "province": "BC", "postal_code": "V3V5W4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", - "district_name": "Surrey", - "school_number": "3636525", - "name": "SD 36 Education Services (Type 1)", - "total_students": 13, - "address": "14033 92 AVE", - "city": "SURREY", - "province": "BC", - "postal_code": "V3V0B7" - }, - { - "public_or_independent": "BC Public School", - "district_number": "36", - "district_name": "Surrey", - "school_number": "3636574", - "name": "City Central Learning Centre", - "total_students": 31, - "address": "13104 109 AVE", - "city": "SURREY", - "province": "BC", - "postal_code": "V3T2N7" - }, - { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636591", "name": "North Surrey Learning Centre", - "total_students": 10, + "total_students": 31, "address": "9260 140 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V5Z4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", - "district_name": "Surrey", - "school_number": "3636592", - "name": "South Surrey/White Rock Learning Centre", - "total_students": 10, - "address": "13-2320 KING GEORGE HWY", - "city": "SURREY", - "province": "BC", - "postal_code": "V4A5A5" - }, - { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636593", "name": "Cloverdale Learning Centre", - "total_students": 59, + "total_students": 46, "address": "5658 176 ST", "city": "SURREY", "province": "BC", "postal_code": "V3S4C6" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636595", "name": "Ta'talu Elementary", - "total_students": 224, + "total_students": 302, "address": "1970 165A St", "city": "Surrey", "province": "BC", "postal_code": "V3S9N3" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3636596", "name": "Xw'epiteng Elementary", - "total_students": 105, + "total_students": 77, "address": "18035 8 Ave", "city": "Surrey", "province": "BC", "postal_code": "V3S9R9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", + "district_name": "Surrey", + "school_number": "3636597", + "name": "Snokomish Elementary", + "total_students": 406, + "address": "14778 58B Ave", + "city": "Surrey", + "province": "BC", + "postal_code": "V3S3B9" + }, + { + "public_or_independent": "Public School", + "district_number": "036", + "district_name": "Surrey", + "school_number": "3636598", + "name": "Theresa Clarke Elementary", + "total_students": 186, + "address": "13104 109 Ave", + "city": "Surrey", + "province": "BC", + "postal_code": "V3T2N7" + }, + { + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3699008", "name": "Education Services (Alternate)", - "total_students": 187, + "total_students": 209, "address": "14033 92 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V0B7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3699142", "name": "Surrey Academy of Innovative Learning", - "total_students": 1566, + "total_students": 2662, "address": "14123 92 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3V1J7" }, { - "public_or_independent": "BC Public School", - "district_number": "36", - "district_name": "Surrey", - "school_number": "3699316", - "name": "SD 36 Alternate City Central LC", - "total_students": 107, - "address": "13104 109 AVE", - "city": "SURREY", - "province": "BC", - "postal_code": "V3T2N7" - }, - { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3699317", "name": "SD 36 Alternate Cloverdale LC", - "total_students": 77, + "total_students": 96, "address": "5658 176 STREET", "city": "SURREY", "province": "BC", "postal_code": "V3R4H9" }, { - "public_or_independent": "BC Public School", - "district_number": "36", - "district_name": "Surrey", - "school_number": "3699318", - "name": "SD 36 Alternate Guildford LC", - "total_students": 140, - "address": "10183 152A ST", - "city": "SURREY", - "province": "BC", - "postal_code": "V3R4H6" - }, - { - "public_or_independent": "BC Public School", - "district_number": "36", + "public_or_independent": "Public School", + "district_number": "036", "district_name": "Surrey", "school_number": "3699319", "name": "SD 36 Alternate North Surrey LC", - "total_students": 193, + "total_students": 281, "address": "9260 140 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V5Z4" }, { - "public_or_independent": "BC Public School", - "district_number": "36", - "district_name": "Surrey", - "school_number": "3699320", - "name": "SD 36 Alternate S.Surrey/White Rock LC", - "total_students": 111, - "address": "13-2320 KING GEORGE BLVD", - "city": "SURREY", - "province": "BC", - "postal_code": "V4A5A5" - }, - { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737000", "name": "Delta Continuing Education", - "total_students": 293, + "total_students": 380, "address": "4750 57 ST", "city": "DELTA", "province": "BC", "postal_code": "V4K3C9" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737001", "name": "Ladner Elementary", - "total_students": 589, + "total_students": 615, "address": "5016 44 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4K1C1" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737003", "name": "Delta Secondary", - "total_students": 1261, + "total_students": 1243, "address": "4615 51 ST", "city": "DELTA", "province": "BC", "postal_code": "V4K2V8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737007", "name": "Richardson Elementary", @@ -6831,68 +6775,68 @@ "postal_code": "V4C7B9" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737008", "name": "Heath Elementary", - "total_students": 260, + "total_students": 243, "address": "11364 72 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4E1Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737009", "name": "Annieville Elementary", - "total_students": 242, + "total_students": 227, "address": "9240 112 ST", "city": "DELTA", "province": "BC", "postal_code": "V4C4X8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737012", "name": "North Delta Secondary", - "total_students": 1347, + "total_students": 1298, "address": "11447 82 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4C5J6" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737013", "name": "Sunshine Hills Elementary", - "total_students": 495, + "total_students": 487, "address": "11285 BOND BLVD", "city": "DELTA", "province": "BC", "postal_code": "V4E1N3" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737014", "name": "English Bluff Elementary", - "total_students": 257, + "total_students": 247, "address": "402 ENGLISH BLUFF RD", "city": "DELTA", "province": "BC", "postal_code": "V4M2N2" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737015", "name": "Cliff Drive Elementary", @@ -6903,404 +6847,404 @@ "postal_code": "V4M2A7" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737017", "name": "Devon Gardens Elementary", - "total_students": 359, + "total_students": 353, "address": "8884 RUSSELL DR", "city": "DELTA", "province": "BC", "postal_code": "V4C4P8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737018", "name": "South Park Elementary", - "total_students": 418, + "total_students": 428, "address": "735 GILCHRIST DR", "city": "DELTA", "province": "BC", "postal_code": "V4M3L4" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737019", "name": "Beach Grove Elementary", - "total_students": 297, + "total_students": 291, "address": "5955 17A AVE", "city": "DELTA", "province": "BC", "postal_code": "V4L1J7" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737021", "name": "Delview Secondary", - "total_students": 693, + "total_students": 712, "address": "9111 116 ST", "city": "DELTA", "province": "BC", "postal_code": "V4C5W8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737022", "name": "Chalmers Elementary", - "total_students": 438, + "total_students": 428, "address": "11315 75 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4C1H4" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737023", "name": "Hellings Elementary", - "total_students": 333, + "total_students": 330, "address": "11655 86 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4C2X5" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737024", "name": "Gray Elementary", - "total_students": 554, + "total_students": 529, "address": "10855 80 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4C1W4" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737025", "name": "Hawthorne Elementary", - "total_students": 409, + "total_students": 398, "address": "5160 CENTRAL AVE", "city": "DELTA", "province": "BC", "postal_code": "V4K2H2" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737026", "name": "Gibson Elementary", - "total_students": 393, + "total_students": 370, "address": "11451 90 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4C3H3" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737027", "name": "Pebble Hill Traditional Elementary", - "total_students": 277, + "total_students": 269, "address": "246 52A ST", "city": "DELTA", "province": "BC", "postal_code": "V4M2Z8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737029", "name": "Brooke Elementary", - "total_students": 335, + "total_students": 333, "address": "8718 DELWOOD DR", "city": "DELTA", "province": "BC", "postal_code": "V4C3Z9" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737030", "name": "Jarvis Traditional Elementary", - "total_students": 470, + "total_students": 467, "address": "7670 118 ST", "city": "DELTA", "province": "BC", "postal_code": "V4C6G8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737032", "name": "McCloskey Elementary", - "total_students": 311, + "total_students": 291, "address": "11531 80 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4C1X5" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737033", "name": "Port Guichon Elementary", - "total_students": 191, + "total_students": 181, "address": "4381 46A ST", "city": "DELTA", "province": "BC", "postal_code": "V4K2M2" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737034", "name": "Burnsview Secondary", - "total_students": 864, + "total_students": 886, "address": "7658 112 ST", "city": "DELTA", "province": "BC", "postal_code": "V4C4V8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737035", "name": "Holly Elementary", - "total_students": 332, + "total_students": 335, "address": "4625 62 ST", "city": "DELTA", "province": "BC", "postal_code": "V4K3L8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737037", "name": "South Delta Secondary", - "total_students": 1417, + "total_students": 1398, "address": "750 53 ST", "city": "DELTA", "province": "BC", "postal_code": "V4M3B7" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737038", "name": "Sands Secondary", - "total_students": 730, + "total_students": 709, "address": "10840 82 AVE", "city": "DELTA", "province": "BC", "postal_code": "V4C2B3" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737039", "name": "Cougar Canyon Elementary", - "total_students": 460, + "total_students": 463, "address": "11664 LYON RD", "city": "DELTA", "province": "BC", "postal_code": "V4E2K4" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737040", "name": "Seaquam Secondary", - "total_students": 1486, + "total_students": 1505, "address": "11584 LYON RD", "city": "DELTA", "province": "BC", "postal_code": "V4E2K4" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737041", "name": "Pinewood Elementary", - "total_students": 337, + "total_students": 335, "address": "11777 PINEWOOD DR", "city": "DELTA", "province": "BC", "postal_code": "V4E3E9" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3737043", "name": "Neilson Grove Elementary", - "total_students": 211, + "total_students": 207, "address": "5500 ADMIRAL BLVD", "city": "DELTA", "province": "BC", "postal_code": "V4K5B7" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3799141", "name": "Home Quest", - "total_students": 81, + "total_students": 70, "address": "9240 112 ST", "city": "DELTA", "province": "BC", "postal_code": "V4C4X8" }, { - "public_or_independent": "BC Public School", - "district_number": "37", + "public_or_independent": "Public School", + "district_number": "037", "district_name": "Delta", "school_number": "3799170", "name": "Delta Access", - "total_students": 128, + "total_students": 136, "address": "4750 57 ST", "city": "DELTA", "province": "BC", "postal_code": "V4K3C9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838000", "name": "Continuing Ed SD 38", - "total_students": 382, + "total_students": 439, "address": "7811 GRANVILLE AVE", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y3E3" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838001", "name": "Mitchell Elementary", - "total_students": 376, + "total_students": 385, "address": "3800 NO.5 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6X2T7" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838005", "name": "Lord Byng Elementary", - "total_students": 355, + "total_students": 331, "address": "3711 GEORGIA ST", "city": "RICHMOND", "province": "BC", "postal_code": "V7E6M3" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838006", "name": "Hamilton Elementary", - "total_students": 390, + "total_students": 383, "address": "5180 SMITH DR", "city": "RICHMOND", "province": "BC", "postal_code": "V6V2W5" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838008", "name": "Garden City Elementary", - "total_students": 388, + "total_students": 376, "address": "8311 GARDEN CITY RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2P1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838009", "name": "R M Grauer Elementary", - "total_students": 203, + "total_students": 188, "address": "4440 BLUNDELL RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7C1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838013", "name": "James Thompson Elementary", - "total_students": 257, + "total_students": 238, "address": "6211 FORSYTH CRES", "city": "RICHMOND", "province": "BC", "postal_code": "V7C2C4" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838014", "name": "Blundell Elementary", - "total_students": 236, + "total_students": 224, "address": "6480 BLUNDELL RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7C1H8" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838015", "name": "William Cook Elementary", - "total_students": 686, + "total_students": 647, "address": "8600 COOK RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y1V7" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838016", "name": "James Whiteside Elementary", @@ -7311,356 +7255,356 @@ "postal_code": "V7A1H1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838017", "name": "Robert J Tait Elementary", - "total_students": 233, + "total_students": 240, "address": "10071 FINLAYSON DR", "city": "RICHMOND", "province": "BC", "postal_code": "V6X1W7" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838019", "name": "Thomas Kidd Elementary", - "total_students": 193, + "total_students": 187, "address": "10851 SHELL RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A3W6" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838020", "name": "Alfred B Dixon Elementary", - "total_students": 335, + "total_students": 296, "address": "9331 DIAMOND RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7E1P5" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838021", "name": "John T Errington Elementary", - "total_students": 322, + "total_students": 319, "address": "9831 HERBERT RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A1T6" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838023", "name": "Tomsett Elementary", - "total_students": 487, + "total_students": 493, "address": "9671 ODLIN RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6X1E1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838024", - "name": "R.C. Palmer Secondary", - "total_students": 1043, + "name": "R C Palmer Secondary", + "total_students": 1089, "address": "8160 ST. ALBANS RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2K9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838025", "name": "James Gilmore Elementary", - "total_students": 298, + "total_students": 299, "address": "8380 ELSMORE RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7C2A1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838026", "name": "Walter Lee Elementary", - "total_students": 340, + "total_students": 341, "address": "9491 ASH ST", "city": "RICHMOND", "province": "BC", "postal_code": "V7A2T7" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838027", "name": "W D Ferris Elementary", - "total_students": 635, + "total_students": 638, "address": "7520 SUNNYMEDE CRES", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2V8" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838029", "name": "Daniel Woodward Elementary", - "total_students": 158, + "total_students": 166, "address": "10300 SEACOTE RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A4B2" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838030", "name": "Donald E McKay Elementary", - "total_students": 305, + "total_students": 302, "address": "7360 LOMBARD RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7C3N1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838031", "name": "Hugh Boyd Secondary", - "total_students": 709, + "total_students": 731, "address": "9200 NO. 1 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7E6L5" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838033", "name": "Hugh McRoberts Secondary", - "total_students": 1035, + "total_students": 1039, "address": "8980 WILLIAMS RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A1G6" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838035", "name": "Samuel Brighouse Elementary", - "total_students": 717, + "total_students": 708, "address": "6800 AZURE RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7C2S8" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838037", "name": "Howard De Beck Elementary", - "total_students": 378, + "total_students": 381, "address": "8600 ASH ST", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2S3" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838040", "name": "James McKinney Elementary", - "total_students": 412, + "total_students": 399, "address": "10451 LASSAM RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7E2C2" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838041", "name": "Manoah Steves Elementary", - "total_students": 259, + "total_students": 244, "address": "10111 FOURTH AVE", "city": "RICHMOND", "province": "BC", "postal_code": "V7E1V5" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838042", "name": "J.N. Burnett Secondary", - "total_students": 957, + "total_students": 908, "address": "5011 GRANVILLE AVE", "city": "RICHMOND", "province": "BC", "postal_code": "V7C1E6" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838043", "name": "William Bridge Elementary", - "total_students": 345, + "total_students": 352, "address": "10400 LEONARD RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A2N5" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838044", "name": "Matthew McNair Secondary", - "total_students": 763, + "total_students": 784, "address": "9500 NO. 4 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A2Y9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838045", "name": "Steveston-London Secondary", - "total_students": 1204, + "total_students": 1213, "address": "6600 WILLIAMS RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7E1K5" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838046", "name": "Maple Lane Elementary", - "total_students": 267, + "total_students": 268, "address": "7671 ALOUETTE DR", "city": "RICHMOND", "province": "BC", "postal_code": "V7A4P2" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838047", "name": "Quilchena Elementary", - "total_students": 172, + "total_students": 167, "address": "3760 MORESBY DR", "city": "RICHMOND", "province": "BC", "postal_code": "V7C4G6" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838048", "name": "Kingswood Elementary", - "total_students": 240, + "total_students": 210, "address": "11511 KING RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A3B5" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838049", "name": "Westwind Elementary", - "total_students": 449, + "total_students": 416, "address": "11371 KINGFISHER DR", "city": "RICHMOND", "province": "BC", "postal_code": "V7E4Y6" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838052", "name": "John G Diefenbaker Elementary", - "total_students": 385, + "total_students": 359, "address": "4511 HERMITAGE DR", "city": "RICHMOND", "province": "BC", "postal_code": "V7E4T1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838053", "name": "Tomekichi Homma Elementary", - "total_students": 536, + "total_students": 503, "address": "5100 BRUNSWICK DR", "city": "RICHMOND", "province": "BC", "postal_code": "V7E6K9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838054", "name": "R. C. Talmey Elementary", - "total_students": 362, + "total_students": 357, "address": "9500 KILBY DR", "city": "RICHMOND", "province": "BC", "postal_code": "V6X3N2" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838055", "name": "Kathleen McNeely Elementary", - "total_students": 411, + "total_students": 381, "address": "12440 WOODHEAD RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6V1G3" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838056", "name": "Jessie Wowk Elementary", @@ -7671,68 +7615,68 @@ "postal_code": "V7E1H1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838057", "name": "General Currie Elementary", - "total_students": 509, + "total_students": 492, "address": "8220 GENERAL CURRIE RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y1M1" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838058", "name": "Cambie Secondary", - "total_students": 571, + "total_students": 580, "address": "4151 JACOMBS RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6V1N7" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838059", "name": "Henry Anderson Elementary", - "total_students": 651, + "total_students": 630, "address": "9460 ALBERTA RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y1T6" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838060", "name": "Archibald Blair Elementary", - "total_students": 241, + "total_students": 242, "address": "6551 LYNAS LANE", "city": "RICHMOND", "province": "BC", "postal_code": "V7C3K8" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838062", "name": "Robert A. McMath Secondary", - "total_students": 1141, + "total_students": 1146, "address": "4251 GARRY ST", "city": "RICHMOND", "province": "BC", "postal_code": "V7E2T9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838063", "name": "Spul'u'kwuks Elementary", @@ -7743,32 +7687,32 @@ "postal_code": "V7C5V4" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838064", "name": "A.R. MacNeill Secondary", - "total_students": 879, + "total_students": 941, "address": "6611 NO. 4 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2T2" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3838065", "name": "Richmond Secondary", - "total_students": 1184, + "total_students": 1142, "address": "7171 MINORU BLVD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y1Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3899061", "name": "Station Stretch", @@ -7779,20 +7723,20 @@ "postal_code": "V6X2A9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3899175", "name": "Richmond Virtual School", - "total_students": 186, + "total_students": 208, "address": "8160 ST. ALBANS RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2K9" }, { - "public_or_independent": "BC Public School", - "district_number": "38", + "public_or_independent": "Public School", + "district_number": "038", "district_name": "Richmond", "school_number": "3899228", "name": "Errington Learning Centre", @@ -7803,656 +7747,656 @@ "postal_code": "V7A1T6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939000", "name": "Vancouver School Board Adult Education", - "total_students": 1076, + "total_students": 1471, "address": "6010 FRASER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W2Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939001", "name": "King George Secondary", - "total_students": 643, + "total_students": 622, "address": "1755 BARCLAY ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6G1K6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939003", "name": "Magee Secondary", - "total_students": 1167, + "total_students": 1194, "address": "6360 MAPLE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6M4M2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939004", "name": "Britannia Community Secondary", - "total_students": 592, + "total_students": 585, "address": "1001 COTTON DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V5L3T4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939006", "name": "Kitsilano Secondary", - "total_students": 1600, + "total_students": 1566, "address": "2706 TRAFALGAR ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6K2J6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939007", "name": "John Oliver Secondary", - "total_students": 940, + "total_students": 926, "address": "530 41ST AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W1P3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939008", "name": "Lord Byng Secondary", - "total_students": 1455, + "total_students": 1497, "address": "3939 16TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6R3C9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939010", "name": "Templeton Secondary", - "total_students": 1017, + "total_students": 1062, "address": "727 TEMPLETON DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V5L4N8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939011", "name": "Vancouver Technical Secondary", - "total_students": 1610, + "total_students": 1553, "address": "2600 BROADWAY E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M1Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939012", "name": "Point Grey Secondary", - "total_students": 967, + "total_students": 1029, "address": "5350 EAST BLVD", "city": "VANCOUVER", "province": "BC", "postal_code": "V6M3V2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939014", "name": "Gladstone Secondary", - "total_students": 991, + "total_students": 965, "address": "4105 GLADSTONE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N4Z2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939015", "name": "Sir Winston Churchill Secondary", - "total_students": 2045, + "total_students": 2015, "address": "7055 HEATHER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P3P7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939016", "name": "Killarney Secondary", - "total_students": 1601, + "total_students": 1565, "address": "6454 KILLARNEY ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S2X7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939017", "name": "Sir Charles Tupper Secondary", - "total_students": 1102, + "total_students": 1085, "address": "419 24TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V2A2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939018", "name": "David Thompson Secondary", - "total_students": 1417, + "total_students": 1462, "address": "1755 55TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5P1Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939019", - "name": "Prince of Wales Secondary", - "total_students": 920, + "name": "Prince Of Wales Secondary", + "total_students": 848, "address": "2250 EDDINGTON DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V6L2E7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939020", "name": "Windermere Community Secondary", - "total_students": 1104, + "total_students": 1070, "address": "3155 27TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R1P3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939022", "name": "Eric Hamber Secondary", - "total_students": 1598, + "total_students": 1697, "address": "960 W. 33RD AVENUE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z0L2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939024", "name": "University Hill Secondary", - "total_students": 944, + "total_students": 920, "address": "3228 ROSS DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V6S0C6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939028", "name": "Lord Strathcona Community Elementary", - "total_students": 446, + "total_students": 422, "address": "592 PENDER ST E", "city": "VANCOUVER", "province": "BC", "postal_code": "V6A1V5" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939031", "name": "Lord Roberts Elementary", - "total_students": 648, + "total_students": 573, "address": "1100 BIDWELL ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6G2K4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939032", "name": "Admiral Seymour Elementary", - "total_students": 144, + "total_students": 145, "address": "1130 KEEFER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6A1Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939033", - "name": "Xpey' Elementary", - "total_students": 84, + "name": "¿pey¿ Elementary", + "total_students": 65, "address": "1950 HASTINGS ST E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5L1T7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939035", "name": "David Lloyd George Elementary", - "total_students": 426, + "total_students": 410, "address": "8370 CARTIER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P4T8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939037", "name": "General Brock Elementary", - "total_students": 252, + "total_students": 268, "address": "4860 MAIN ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V3R8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939038", "name": "Kerrisdale Elementary", - "total_students": 448, + "total_students": 457, "address": "5555 CARNARVON ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6N1J2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939039", "name": "Lord Selkirk Elementary", - "total_students": 669, + "total_students": 658, "address": "1750 22ND AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N2P7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939040", "name": "Queen Alexandra Elementary", - "total_students": 142, + "total_students": 150, "address": "1300 BROADWAY E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N1V6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939041", "name": "Queen Mary Elementary", - "total_students": 300, + "total_students": 290, "address": "2000 TRIMBLE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6R3Z4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939042", "name": "Simon Fraser Elementary", - "total_students": 338, + "total_students": 330, "address": "100 15TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Y3B7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939043", "name": "L'Ecole Bilingue Elementary", - "total_students": 409, + "total_students": 426, "address": "1166 W 14TH AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V6H1P6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939044", "name": "Emily Carr Elementary", - "total_students": 335, + "total_students": 320, "address": "4070 OAK ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6H2M8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939045", "name": "General Wolfe Elementary", - "total_students": 379, + "total_students": 366, "address": "4251 ONTARIO ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V3G8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939046", "name": "Lord Nelson Elementary", - "total_students": 468, + "total_students": 457, "address": "1355 GARDEN DRIVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5L0C4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939047", "name": "Lord Tennyson Elementary", - "total_students": 397, + "total_students": 391, "address": "1936 10TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J2B2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939048", "name": "Sir Richard McBride Elementary", - "total_students": 341, + "total_students": 337, "address": "1300 29TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V2T3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939049", "name": "Sir Wilfred Grenfell Community", - "total_students": 323, + "total_students": 289, "address": "3323 WELLINGTON AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R4Y3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939050", "name": "Tecumseh Elementary", - "total_students": 406, + "total_students": 402, "address": "1850 41ST AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5P1K9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939051", "name": "Florence Nightingale Elementary", - "total_students": 288, + "total_students": 295, "address": "2740 GUELPH ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5T3P7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939052", "name": "General Gordon Elementary", - "total_students": 395, + "total_students": 398, "address": "2268 BAYSWATER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6K4P5" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939053", "name": "Henry Hudson Elementary", - "total_students": 331, + "total_students": 325, "address": "1530 Maple Street", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J0H8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939054", "name": "Laura Secord Elementary", - "total_students": 644, + "total_students": 650, "address": "2500 LAKEWOOD DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N4V1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939056", "name": "Walter Moberly Elementary", - "total_students": 482, + "total_students": 485, "address": "1000 59TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5X1Y7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939057", "name": "Pierre Elliott Trudeau Elementary", - "total_students": 235, + "total_students": 227, "address": "449 62ND AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5X2G2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939058", "name": "Sir Wm Van Horne Elementary", - "total_students": 442, + "total_students": 431, "address": "5855 ONTARIO ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W2L8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939059", "name": "Charles Dickens Elementary", - "total_students": 443, + "total_students": 430, "address": "1010 EAST 17TH AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V0A6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939060", "name": "David Livingstone Elementary", - "total_students": 285, + "total_students": 274, "address": "315 23RD AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V1X6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939061", "name": "Hastings Community Elementary", - "total_students": 549, + "total_students": 563, "address": "2625 FRANKLIN ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5K3W7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939062", "name": "John Norquay Elementary", - "total_students": 643, + "total_students": 654, "address": "4710 SLOCAN ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R2A1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939063", "name": "J.W. Sexsmith Community Elementary", - "total_students": 431, + "total_students": 432, "address": "7410 COLUMBIA ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5X3C1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939064", "name": "Sir James Douglas Elementary", - "total_students": 522, + "total_students": 511, "address": "2150 BRIGADOON AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5P3Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939065", "name": "Sir John Franklin Community", - "total_students": 227, + "total_students": 223, "address": "250S SKEENA ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5K4N8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939066", "name": "Sir Sandford Fleming Elementary", - "total_students": 427, + "total_students": 422, "address": "6363 LANARK ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5P1S2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939067", "name": "Bayview Community Elementary", - "total_students": 306, + "total_students": 308, "address": "2251 COLLINGWOOD ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6R3L1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939069", "name": "Lord Beaconsfield Elementary", @@ -8463,8 +8407,8 @@ "postal_code": "V5M3C9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939070", "name": "Lord Kitchener Elementary", @@ -8475,788 +8419,776 @@ "postal_code": "V6S0C7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939071", "name": "Edith Cavell Elementary", - "total_students": 323, + "total_students": 319, "address": "500 20TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z1X7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939072", "name": "Shaughnessy Elementary", - "total_students": 443, + "total_students": 414, "address": "4250 MARGUERITE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J4G3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939073", - "name": "Wekwanes Te Syaqwem Elemtary School", - "total_students": 330, + "name": "w¿k¿¿an¿¿s t¿ syaq¿¿m Elementary School", + "total_students": 323, "address": "1430 LILLOOET ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5K4H6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939074", "name": "Maple Grove Elementary", - "total_students": 572, + "total_students": 565, "address": "6199 CYPRESS ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6M3S3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939075", "name": "Quilchena Elementary", - "total_students": 303, + "total_students": 295, "address": "5300 MAPLE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6M3T6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939076", - "name": "Grandview Elementary", - "total_students": 131, + "name": "Grandview ¿uuqinak’uuh Elementary", + "total_students": 124, "address": "2055 WOODLAND DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N3N9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939077", "name": "Renfrew Community Elementary", - "total_students": 462, + "total_students": 473, "address": "3315 22ND AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M2Z2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939079", "name": "Sir Alexander Mackenzie Elementary", - "total_students": 411, + "total_students": 393, "address": "960 39TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W1K8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939080", "name": "Queen Elizabeth Elementary", - "total_students": 325, + "total_students": 291, "address": "4102 16TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6R3E3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939082", - "name": "Thunderbird Elementary", - "total_students": 187, + "name": "Thunderbird šx¿¿x¿a¿¿s Elementary", + "total_students": 167, "address": "2325 CASSIAR ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M3X3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939084", "name": "Trafalgar Elementary", - "total_students": 459, + "total_students": 457, "address": "4170 TRAFALGAR ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6L2M5" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939085", "name": "Sir Wilfrid Laurier Elementary", - "total_students": 420, + "total_students": 399, "address": "7350 LAUREL ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P3T9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939086", "name": "Sir William Osler Elementary", - "total_students": 274, + "total_students": 286, "address": "5970 SELKIRK ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6M2Y8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939087", "name": "Southlands Elementary", - "total_students": 219, + "total_students": 193, "address": "5351 CAMOSUN ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6N2C4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939088", "name": "Captain James Cook Elementary", - "total_students": 465, + "total_students": 463, "address": "3340 54TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S1Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939089", "name": "Chief Maquinna Elementary", - "total_students": 221, + "total_students": 234, "address": "2684 2ND AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M1C9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939090", "name": "David Oppenheimer Elementary", - "total_students": 417, + "total_students": 420, "address": "2421 SCARBORO AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5P2L5" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939093", "name": "Sir Charles Kingsford-Smith", - "total_students": 305, + "total_students": 298, "address": "6901 ELLIOTT ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939094", "name": "Carnarvon Community Elementary", - "total_students": 345, + "total_students": 310, "address": "3400 BALACLAVA ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6L2S6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939095", "name": "Dr A R Lord Elementary", - "total_students": 194, + "total_students": 190, "address": "555 LILLOOET ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5K4G4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939097", "name": "Dr R E McKechnie Elementary", - "total_students": 295, + "total_students": 270, "address": "7455 MAPLE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P5P8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939099", "name": "Waverley Elementary", - "total_students": 375, + "total_students": 342, "address": "6111 ELLIOTT ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S2M1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939100", "name": "G T Cunningham Elementary", - "total_students": 428, + "total_students": 412, "address": "2330 37TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R2T3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939101", "name": "Nootka Community Elementary", - "total_students": 381, + "total_students": 378, "address": "3375 NOOTKA ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M3N2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939102", "name": "Tecumseh Annex", - "total_students": 67, + "total_students": 62, "address": "1551 37TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5P1E4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939104", "name": "Dr Annie B Jamieson Elementary", - "total_students": 519, + "total_students": 513, "address": "6350 TISDALL STREET", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z3N4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939105", "name": "Dr George M Weir Elementary", - "total_students": 379, + "total_students": 398, "address": "2900 44TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R3A8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939106", "name": "John Henderson Elementary", - "total_students": 500, + "total_students": 492, "address": "451 53RD AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5X1J3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939107", "name": "Queen Victoria Annex", - "total_students": 114, + "total_students": 112, "address": "1850 3RD AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N1H2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939108", "name": "Sir Richard McBride Annex", - "total_students": 81, + "total_students": 77, "address": "4750 ST. CATHERINES ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V4M7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939109", "name": "Graham Bruce Community Elementary", - "total_students": 283, + "total_students": 271, "address": "3633 TANNER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R5P7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939112", "name": "Tillicum Community Annex", - "total_students": 99, + "total_students": 92, "address": "2450 CAMBRIDGE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5K1L2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939113", "name": "Kerrisdale Annex", - "total_students": 85, + "total_students": 72, "address": "3250 43RD AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6N4K3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939114", "name": "Lord Selkirk Annex", - "total_students": 102, + "total_students": 86, "address": "4444 DUMFRIES ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N3T2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939115", - "name": "Dr H N MacCorkindale Elementary", - "total_students": 294, + "name": "Dr H N Maccorkindale Elementary", + "total_students": 281, "address": "6100 BATTISON ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S3M8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939119", "name": "Tyee Elementary", - "total_students": 190, + "total_students": 192, "address": "3525 DUMPHRIES ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N3S5" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939120", "name": "Sir James Douglas Annex", - "total_students": 163, + "total_students": 166, "address": "7668 BORDEN ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5P3E1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939123", "name": "University Hill Elementary", - "total_students": 370, + "total_students": 363, "address": "5395 CHANCELLOR BLVD", "city": "VANCOUVER", "province": "BC", "postal_code": "V6T1E2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939124", "name": "Charles Dickens Annex", - "total_students": 64, + "total_students": 69, "address": "3877 GLEN DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V5V4S9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939127", "name": "Mount Pleasant Elementary", - "total_students": 242, + "total_students": 249, "address": "2300 GUELPH ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5T3P1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939128", "name": "Champlain Heights Community Elementary", - "total_students": 308, + "total_students": 323, "address": "6955 FRONTENAC ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S3T4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", - "district_name": "Vancouver", - "school_number": "3939129", - "name": "Lord Roberts Annex", - "total_students": 147, - "address": "1150 NELSON ST", - "city": "VANCOUVER", - "province": "BC", - "postal_code": "V6E1J2" - }, - { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939130", "name": "Britannia Community Elementary", - "total_students": 244, + "total_students": 247, "address": "1110 COTTON DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V5L3T5" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939132", "name": "Ecole Jules Quesnel Elementary", - "total_students": 338, + "total_students": 333, "address": "3050 CROWN ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6R4K9" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939136", "name": "False Creek Elementary", - "total_students": 309, + "total_students": 298, "address": "900 SCHOOL GREEN", "city": "VANCOUVER", "province": "BC", "postal_code": "V6H3N7" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939137", "name": "Champlain Heights Annex", - "total_students": 93, + "total_students": 90, "address": "7835 CHAMPLAIN CRES", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S4J6" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939139", "name": "Collingwood Neighbourhood School", - "total_students": 142, + "total_students": 131, "address": "3417 EUCLID AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R6H2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939140", "name": "Elsie Roy Elementary", - "total_students": 420, + "total_students": 428, "address": "150 DRAKE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6Z2X1" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939142", - "name": "Crosstown Elementary", - "total_students": 477, + "name": "šx¿w¿q¿¿¿¿¿t Crosstown Elementary", + "total_students": 481, "address": "55 EXPO BLVD", "city": "VANCOUVER", "province": "BC", "postal_code": "V6B0P8" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3939143", "name": "Norma Rose Point Elementary Junior", - "total_students": 763, + "total_students": 760, "address": "5488 ORTONA AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V6T1S2" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", - "school_number": "3995051", - "name": "Transition Program for Gifted Students", - "total_students": 20, - "address": "240-1924 West Mall UBC", - "city": "VANCOUVER", + "school_number": "3939144", + "name": "New School at Coal Harbour", + "total_students": 227, + "address": "482 Broughton St", + "city": "Vancouver", "province": "BC", - "postal_code": "V6T1Z2" + "postal_code": "V6G3H4" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3998004", "name": "Vancouver Learning Network", - "total_students": 509, + "total_students": 1117, "address": "530 41ST AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W1P3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3999214", "name": "SD 39 DL Elementary", - "total_students": 84, + "total_students": 82, "address": "530 EAST 41ST AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W1P3" }, { - "public_or_independent": "BC Public School", - "district_number": "39", + "public_or_independent": "Public School", + "district_number": "039", "district_name": "Vancouver", "school_number": "3999224", "name": "Vancouver Alternate School", - "total_students": 341, + "total_students": 339, "address": "1580 BROADWAY W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J5K8" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040000", "name": "New Westminster Continuing Education", - "total_students": 258, + "total_students": 1300, "address": "820 6th St", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M3S9" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040001", "name": "Lord Kelvin Elementary", - "total_students": 635, + "total_students": 650, "address": "1010 HAMILTON ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M2M9" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040002", "name": "Herbert Spencer Elementary", - "total_students": 483, + "total_students": 451, "address": "605 SECOND ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L5R9" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040003", "name": "Skwo:wech", - "total_students": 436, + "total_students": 460, "address": "331 RICHMOND ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L4B7" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040004", "name": "Lord Tweedsmuir Elementary", - "total_students": 456, + "total_students": 423, "address": "1714 EIGHTH AVE", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M2S7" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040008", "name": "New Westminster Secondary", - "total_students": 2411, + "total_students": 2450, "address": "820 6TH ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M3S9" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040009", "name": "F W Howay Elementary", - "total_students": 126, + "total_students": 141, "address": "91 COURTNEY CRES", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L4M1" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040010", "name": "Connaught Heights Elementary", - "total_students": 162, + "total_students": 179, "address": "2201 LONDON ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M3G1" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040012", "name": "Queen Elizabeth Elementary", - "total_students": 529, + "total_students": 526, "address": "921 SALTER ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M6G8" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040013", "name": "Ecole Glenbrook Middle School", - "total_students": 664, + "total_students": 673, "address": "701 PARK CRES", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L5V4" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040014", "name": "Queensborough Middle School", - "total_students": 391, + "total_students": 405, "address": "833 SALTER ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M6G8" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040015", "name": "Ecole Qayqayt Elementary", @@ -9267,707 +9199,707 @@ "postal_code": "V3L0G2" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4040016", "name": "Fraser River Middle", - "total_students": 701, + "total_students": 726, "address": "800 Queens Ave", "city": "New Westminster", "province": "BC", "postal_code": "V3M0J2" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4099110", "name": "Royal City Alternate Program", - "total_students": 16, - "address": "850 QUEENS AVE", + "total_students": 13, + "address": "200 - 1065 Columbia Street", "city": "NEW WESTMINSTER", "province": "BC", - "postal_code": "V3M0A8" + "postal_code": "V3M6H7" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4099124", "name": "Sigma", - "total_students": 48, - "address": "835 EIGHTH ST", + "total_students": 47, + "address": "820 Sixth Street", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M3S9" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4099126", "name": "Power Alternate Secondary School", - "total_students": 51, + "total_students": 54, "address": "200-1065 COLUMBIA ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M6H7" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4099136", "name": "Home Learners Program", - "total_students": 105, + "total_students": 91, "address": "521 FADER ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L3T4" }, { - "public_or_independent": "BC Public School", - "district_number": "40", + "public_or_independent": "Public School", + "district_number": "040", "district_name": "New Westminster", "school_number": "4099185", "name": "New Westminster Online Schools", - "total_students": 196, + "total_students": 330, "address": "200-1065 COLUMBIA ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M6H7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141000", "name": "Burnaby Continuing Education", - "total_students": 334, + "total_students": 1472, "address": "751 HAMMARSKJOLD DR", "city": "BURNABY", "province": "BC", "postal_code": "V5B4A1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141001", "name": "Burnaby Central Secondary", - "total_students": 1467, + "total_students": 1462, "address": "6011 DEER LAKE PARKWAY", "city": "BURNABY", "province": "BC", "postal_code": "V5G0A9" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141002", "name": "Burnaby North Secondary", - "total_students": 1813, + "total_students": 1965, "address": "751 HAMMARSKJOLD DR", "city": "BURNABY", "province": "BC", "postal_code": "V5B4A1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141005", "name": "Alpha Secondary", - "total_students": 1253, + "total_students": 1273, "address": "930 ALPHA AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5C3E2" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141007", "name": "Cariboo Hill Secondary", - "total_students": 910, + "total_students": 933, "address": "8580 16TH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N1S6" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141008", "name": "Edmonds Community Elementary", - "total_students": 329, + "total_students": 331, "address": "7651 18TH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N1J1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141011", "name": "Moscrop Secondary", - "total_students": 1579, + "total_students": 1672, "address": "4433 MOSCROP ST", "city": "BURNABY", "province": "BC", "postal_code": "V5G2G3" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141015", "name": "Armstrong Elementary", - "total_students": 470, + "total_students": 469, "address": "8757 ARMSTRONG AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N2H8" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141016", "name": "Aubrey Elementary", - "total_students": 364, + "total_students": 345, "address": "1075 STRATFORD AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5B3X9" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141017", "name": "Brantford Elementary", - "total_students": 368, + "total_students": 367, "address": "6512 BRANTFORD AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5E2S1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141018", "name": "Brentwood Park Elementary", - "total_students": 627, + "total_students": 635, "address": "1455 DELTA AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5B3G4" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141019", "name": "Buckingham Elementary", - "total_students": 269, + "total_students": 268, "address": "6066 BUCKINGHAM AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5E2A4" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141020", "name": "Cameron Elementary", - "total_students": 537, + "total_students": 519, "address": "9540 ERICKSON DR", "city": "BURNABY", "province": "BC", "postal_code": "V3J1M9" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141021", "name": "Capitol Hill Elementary", - "total_students": 360, + "total_students": 349, "address": "350S HOLDOM AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5B3V1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141022", "name": "Cascade Heights Elementary", - "total_students": 477, + "total_students": 469, "address": "4343 SMITH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5G2V5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141023", "name": "Chaffey-Burke Elementary", - "total_students": 649, + "total_students": 621, "address": "4404 SARDIS ST", "city": "BURNABY", "province": "BC", "postal_code": "V5H1K7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141024", "name": "Clinton Elementary", - "total_students": 395, + "total_students": 412, "address": "5858 CLINTON ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J2M3" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141025", "name": "Confederation Park Elementary", - "total_students": 180, + "total_students": 168, "address": "4715 PANDORA ST", "city": "BURNABY", "province": "BC", "postal_code": "V5C2C2" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141026", "name": "Douglas Road Elementary", - "total_students": 263, + "total_students": 247, "address": "4861 CANADA WAY", "city": "BURNABY", "province": "BC", "postal_code": "V5G1L7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141029", "name": "Gilmore Community Elementary", - "total_students": 482, + "total_students": 496, "address": "50 S GILMORE AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5C4P5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141030", "name": "Gilpin Elementary", - "total_students": 225, + "total_students": 199, "address": "5490 EGLINTON ST", "city": "BURNABY", "province": "BC", "postal_code": "V5G2B2" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141031", "name": "Glenwood Elementary", - "total_students": 115, + "total_students": 103, "address": "5787 MARINE DR", "city": "BURNABY", "province": "BC", "postal_code": "V5J3H1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141032", - "name": "Ecole Inman Elementary", - "total_students": 409, + "name": "École Inman Elementary", + "total_students": 388, "address": "3963 BRANDON ST", "city": "BURNABY", "province": "BC", "postal_code": "V5G2P6" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141033", "name": "Kitchener Elementary", - "total_students": 524, + "total_students": 552, "address": "1351 GILMORE AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5C4S8" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141034", "name": "Lakeview Elementary", - "total_students": 280, + "total_students": 288, "address": "7777 MAYFIELD ST", "city": "BURNABY", "province": "BC", "postal_code": "V5E2J5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141035", "name": "Lochdale Community Elementary", - "total_students": 291, + "total_students": 280, "address": "6990 Aubrey Street", "city": "Burnaby", "province": "BC", "postal_code": "V5B2E5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141036", "name": "Lyndhurst Elementary", - "total_students": 91, + "total_students": 92, "address": "9847 LYNDHURST ST", "city": "BURNABY", "province": "BC", "postal_code": "V3J1E9" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141037", - "name": "Ecole Marlborough Elementary", - "total_students": 1061, + "name": "École Marlborough Elementary", + "total_students": 1027, "address": "6060 MARLBOROUGH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5H3L7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141038", "name": "Maywood Community Elementary", - "total_students": 601, + "total_students": 594, "address": "4567 IMPERIAL ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J1B7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141039", "name": "Morley Elementary", - "total_students": 390, + "total_students": 410, "address": "7355 MORLEY ST", "city": "BURNABY", "province": "BC", "postal_code": "V5E2K1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141040", "name": "Nelson Elementary", - "total_students": 388, + "total_students": 404, "address": "4850 IRMIN ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J1Y2" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141041", "name": "Parkcrest Elementary", - "total_students": 295, + "total_students": 286, "address": "6055 HALIFAX ST", "city": "BURNABY", "province": "BC", "postal_code": "V5B2P4" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141044", "name": "Rosser Elementary", - "total_students": 153, + "total_students": 160, "address": "4375 PANDORA ST", "city": "BURNABY", "province": "BC", "postal_code": "V5C2B6" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141046", "name": "Ecole Seaforth Elementary", - "total_students": 468, + "total_students": 470, "address": "7881 GOVERNMENT RD", "city": "BURNABY", "province": "BC", "postal_code": "V5A2C9" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141047", "name": "Second Street Community Elementary", - "total_students": 380, + "total_students": 369, "address": "7502 2ND ST", "city": "BURNABY", "province": "BC", "postal_code": "V3N3R5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141048", "name": "Sperling Elementary", - "total_students": 503, + "total_students": 493, "address": "2200 SPERLING AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5B4K7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141049", "name": "Stride Avenue Community Elementary", - "total_students": 327, + "total_students": 322, "address": "7014 STRIDE AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N1T4" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141050", "name": "Suncrest Elementary", - "total_students": 320, + "total_students": 318, "address": "3883 RUMBLE ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J1Z5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141052", "name": "Twelfth Avenue Elementary", - "total_students": 298, + "total_students": 303, "address": "7622 12TH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N2K1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141053", "name": "Westridge Elementary", - "total_students": 362, + "total_students": 347, "address": "510 DUNCAN AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5B4L9" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141054", "name": "Windsor Elementary", - "total_students": 292, + "total_students": 288, "address": "6166 IMPERIAL ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J1G5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141056", "name": "Montecito Elementary", - "total_students": 277, + "total_students": 262, "address": "2176 DUTHIE AVE", "city": "BURNABY", "province": "BC", "postal_code": "V5A2S2" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141057", "name": "Stoney Creek Community Elementary", - "total_students": 334, + "total_students": 322, "address": "2740 BEAVERBROOK CRES", "city": "BURNABY", "province": "BC", "postal_code": "V3J7B6" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141060", "name": "Forest Grove Elementary", - "total_students": 343, + "total_students": 316, "address": "8525 FOREST GROVE DR", "city": "BURNABY", "province": "BC", "postal_code": "V5A4H5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141061", "name": "South Slope Elementary", - "total_students": 217, + "total_students": 213, "address": "4446 WATLING ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J5H3" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141062", "name": "Burnaby South Secondary", - "total_students": 1702, + "total_students": 1837, "address": "5455 RUMBLE ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J2B7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141063", "name": "Burnaby Mountain Secondary", - "total_students": 1540, + "total_students": 1523, "address": "8800 EASTLAKE DR", "city": "BURNABY", "province": "BC", "postal_code": "V3J7X5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141065", "name": "Taylor Park Elementary", - "total_students": 681, + "total_students": 670, "address": "7590 MISSION AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N5C7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141066", "name": "Royal Oak Secondary Program", - "total_students": 28, + "total_students": 30, "address": "5310 WOODSWORTH ST", "city": "BURNABY", "province": "BC", "postal_code": "V5G1S4" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141068", "name": "Byrne Creek Community Secondary", - "total_students": 1113, + "total_students": 1034, "address": "7777 18TH ST", "city": "BURNABY", "province": "BC", "postal_code": "V3N5E5" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4141069", "name": "University Highlands Elementary", - "total_students": 460, + "total_students": 467, "address": "9388 TOWER RD", "city": "BURNABY", "province": "BC", "postal_code": "V5A4X6" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4195036", - "name": "BC Provincial School for the Deaf Second", - "total_students": 52, + "name": "BC Provincial School for the Deaf Secondary", + "total_students": 48, "address": "5455 RUMBLE ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J2B7" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4195066", - "name": "BC Provincial School For The Deaf Elemen", + "name": "BC Provincial School For The Deaf Elementary", "total_students": 10, "address": "4446 WATLING ST", "city": "BURNABY", @@ -9975,20 +9907,20 @@ "postal_code": "V5J5H3" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4199036", "name": "Fraser Park Secondary School Program", - "total_students": 22, + "total_students": 15, "address": "7900 FRASER PARK DR", "city": "BURNABY", "province": "BC", "postal_code": "V5J5H1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4199038", "name": "Maples School Program", @@ -9999,23 +9931,23 @@ "postal_code": "V3C4J2" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4199145", "name": "Burnaby Online Program", - "total_students": 342, - "address": "8580 16TH AVE", + "total_students": 591, + "address": "751 Hammarskjold Dr", "city": "BURNABY", "province": "BC", - "postal_code": "V3N1S6" + "postal_code": "V5B4A1" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4199300", - "name": "Take a Hike Secondary Program", + "name": "Take A Hike Secondary Program", "total_students": 14, "address": "5310 WOODSWORTH ST", "city": "BURNABY", @@ -10023,20 +9955,20 @@ "postal_code": "V5G1S4" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4199301", - "name": "Burnaby Youth HUB Secondary Program", - "total_students": 52, + "name": "Burnaby Youth Hub Secondary Program", + "total_students": 50, "address": "4750 IMPERIAL ST", "city": "BURNABY", "province": "BC", "postal_code": "V5J1C2" }, { - "public_or_independent": "BC Public School", - "district_number": "41", + "public_or_independent": "Public School", + "district_number": "041", "district_name": "Burnaby", "school_number": "4199302", "name": "Outlook Secondary Program", @@ -10047,680 +9979,680 @@ "postal_code": "V5C6P7" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242000", "name": "Continuing ED SD 42", - "total_students": 274, + "total_students": 405, "address": "20575 THORNE AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X9A6" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242001", "name": "Maple Ridge Secondary", - "total_students": 1264, + "total_students": 1271, "address": "21911 122 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X3X2" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242002", "name": "Garibaldi Secondary", - "total_students": 1073, + "total_students": 1083, "address": "24789 DEWDNEY TRUNK RD", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V4R1X2" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242003", "name": "Pitt Meadows Secondary", - "total_students": 1010, + "total_students": 1047, "address": "19438 116B AVE", "city": "PITT MEADOWS", "province": "BC", "postal_code": "V3Y1G1" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242004", "name": "Westview Secondary", - "total_students": 905, + "total_students": 894, "address": "20905 WICKLUND AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X8E8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242005", "name": "Albion Elementary", - "total_students": 520, + "total_students": 499, "address": "10031 240TH ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2W1G2" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242008", "name": "Eric Langton Elementary", - "total_students": 476, + "total_students": 485, "address": "12138 EDGE ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X6G8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242009", "name": "Fairview Elementary", - "total_students": 416, + "total_students": 410, "address": "12209 206 ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X1T8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242010", "name": "Glenwood Elementary", - "total_students": 363, + "total_students": 364, "address": "21410 GLENWOOD AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X3P6" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242011", "name": "Golden Ears Elementary", - "total_students": 635, + "total_students": 651, "address": "23124 118 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242014", "name": "Maple Ridge Elementary", - "total_students": 452, + "total_students": 450, "address": "20820 RIVER RD", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X1Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242017", "name": "Pitt Meadows Elementary", - "total_students": 544, + "total_students": 550, "address": "11941 HARRIS RD", "city": "PITT MEADOWS", "province": "BC", "postal_code": "V3Y2B5" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242020", "name": "Webster's Corners Elementary", - "total_students": 183, + "total_students": 184, "address": "25554 DEWDNEY TRUNK RD", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V4R1X9" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242026", "name": "District 42 Alternative Secondary", - "total_students": 199, + "total_students": 190, "address": "23125 116 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X0G8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242031", "name": "Davie Jones Elementary", - "total_students": 355, + "total_students": 349, "address": "12030 BLAKELY RD", "city": "PITT MEADOWS", "province": "BC", "postal_code": "V3Y1J6" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242032", "name": "Laity View Elementary", - "total_students": 628, + "total_students": 617, "address": "21023 123 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X4B5" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242033", "name": "Highland Park Elementary", - "total_students": 340, + "total_students": 335, "address": "18961 ADVENT RD", "city": "PITT MEADOWS", "province": "BC", "postal_code": "V3Y2G4" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242035", "name": "Alouette Elementary", - "total_students": 491, + "total_students": 510, "address": "22155 ISAAC CRES", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X0V9" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242036", "name": "Harry Hooge Elementary", - "total_students": 518, + "total_students": 493, "address": "12280 230 ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X0P6" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242037", "name": "Kanaka Creek Elementary", - "total_students": 592, + "total_students": 575, "address": "11120 234A ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2W1C8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242038", "name": "Thomas Haney Secondary", - "total_students": 1267, + "total_students": 1244, "address": "23000 116 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X0T8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242039", "name": "Edith McDermott Elementary", - "total_students": 425, + "total_students": 403, "address": "12178 BONSON RD", "city": "PITT MEADOWS", "province": "BC", "postal_code": "V3Y2L5" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242040", "name": "Whonnock Elementary", - "total_students": 286, + "total_students": 280, "address": "27471 112 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2W1P9" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242041", "name": "Blue Mountain Elementary", - "total_students": 310, + "total_students": 301, "address": "12453 248 ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V4R1J3" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242042", "name": "Alexander Robinson Elementary", - "total_students": 561, + "total_students": 550, "address": "11849 238B ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V4R2T8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242043", "name": "Hammond Elementary", - "total_students": 455, + "total_students": 450, "address": "11520 203 ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X4T6" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242045", "name": "Samuel Robertson Technical Secondary", - "total_students": 805, + "total_students": 833, "address": "10445 245 ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2W2G4" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242046", - "name": "Environmental School Project", - "total_students": 110, + "name": "ci:tm¿xw Environmental Community", + "total_students": 106, "address": "23125", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X0G8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242047", "name": "Odyssey K-9 SD 42", - "total_students": 90, + "total_students": 91, "address": "12209", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X1T8" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242048", "name": "c'usqunela Elementary", - "total_students": 657, + "total_students": 670, "address": "24093 104 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2W1J2" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4242052", "name": "Yennadon Elementary", - "total_students": 708, + "total_students": 699, "address": "23347 128 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X4R9" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4299153", "name": "Outreach Alternate Secondary", - "total_students": 95, + "total_students": 83, "address": "21911 122 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X3X2" }, { - "public_or_independent": "BC Public School", - "district_number": "42", + "public_or_independent": "Public School", + "district_number": "042", "district_name": "Maple Ridge-Pitt Meadows", "school_number": "4299154", "name": "SD 42 Connected Learning Community", - "total_students": 223, + "total_students": 243, "address": "20575 THORNE AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X9A6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343000", "name": "Continuing ED SD 43", - "total_students": 1464, + "total_students": 1840, "address": "380 MONTGOMERY ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K5G2" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343002", "name": "Anmore Elementary", - "total_students": 110, + "total_students": 113, "address": "30 ELEMENTARY RD", "city": "ANMORE", "province": "BC", "postal_code": "V3H4Y6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343004", "name": "Alderson Elementary", - "total_students": 183, + "total_students": 197, "address": "825 GAUTHIER AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K7C4" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343005", "name": "Baker Drive Elementary", - "total_students": 225, + "total_students": 217, "address": "885 BAKER DR", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J6W9" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343006", "name": "Birchland Elementary", - "total_students": 158, + "total_students": 135, "address": "1331 FRASER AVE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B1M5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343009", "name": "Bramblewood Elementary", - "total_students": 247, + "total_students": 253, "address": "2875 PANORAMA DR", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E2S7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343010", "name": "Cape Horn Elementary", - "total_students": 229, + "total_students": 222, "address": "155 FINNIGAN ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K5J2" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343011", "name": "Cedar Drive Elementary", - "total_students": 264, + "total_students": 254, "address": "3150 CEDAR DR", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B3C3" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343012", "name": "Central Elementary", - "total_students": 375, + "total_students": 374, "address": "2260 CENTRAL AVE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C1V8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343013", "name": "Ecole Coquitlam River Elementary", - "total_students": 308, + "total_students": 306, "address": "4250 SHAUGHNESSY ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3E3E5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343017", "name": "Heritage Mountain Elementary", - "total_students": 283, + "total_students": 261, "address": "125 RAVINE DR", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H4Z1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343018", "name": "Glen Elementary", - "total_students": 559, + "total_students": 505, "address": "3064 GLEN DR", "city": "COQUITLAM", "province": "BC", "postal_code": "V3B2P9" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343019", "name": "Ecole Glenayre Elementary", - "total_students": 362, + "total_students": 352, "address": "495 GLENCOE DR", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H1G6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343020", "name": "Eagle Ridge Elementary", - "total_students": 386, + "total_students": 357, "address": "1215 FALCON DR", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E1X9" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343021", "name": "Harbour View Elementary", - "total_students": 280, + "total_students": 266, "address": "960 LILLIAN ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J5C7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343022", "name": "Hazel Trembath Elementary", - "total_students": 181, + "total_students": 164, "address": "1278 CONFEDERATION DR", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C6L9" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343023", "name": "R. C. MacDonald Elementary", - "total_students": 140, + "total_students": 122, "address": "2550 LEDUC AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K5W6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343024", "name": "Hillcrest Middle School", - "total_students": 516, + "total_students": 533, "address": "2161 REGAN AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J3C5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343027", "name": "Ecole Irvine Elementary", - "total_students": 407, + "total_students": 401, "address": "3862 WELLINGTON ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B3Z4" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343028", "name": "Coast Salish Elementary", - "total_students": 281, + "total_students": 330, "address": "3538 SHEFFIELD AVENUE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E3H1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343029", "name": "James Park Elementary", - "total_students": 397, + "total_students": 410, "address": "1761 WESTMINSTER AVE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B1E5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343030", "name": "Inquiry Hub", - "total_students": 71, + "total_students": 77, "address": "1432 BRUNETTE AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K1G5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343031", "name": "Ecole Kilmer Elementary", - "total_students": 251, + "total_students": 240, "address": "1575 KNAPPEN ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C2P8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343033", "name": "Leigh Elementary", @@ -10731,284 +10663,284 @@ "postal_code": "V3B3H7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343034", "name": "Lord Baden-Powell Elementary", - "total_students": 370, + "total_students": 355, "address": "450 JOYCE ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K4G4" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343036", "name": "Ecole Mary Hill Elementary", - "total_students": 276, + "total_students": 270, "address": "1890 HUMBER CRES", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C2V7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343037", "name": "Meadowbrook Elementary", - "total_students": 212, + "total_students": 206, "address": "900 SHARPE ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3C3M3" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343038", "name": "Miller Park Community School", - "total_students": 264, + "total_students": 246, "address": "800 EGMONT AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J4J8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343043", "name": "Moody Elementary", - "total_students": 316, - "address": "2717 ST JOHNS ST", + "total_students": 338, + "address": "110 BULLER ST", "city": "PORT MOODY", "province": "BC", - "postal_code": "V3H2B8" + "postal_code": "V3H0P5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343044", "name": "Mountain View Elementary", - "total_students": 177, + "total_students": 159, "address": "740 SMITH AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J4E7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343045", "name": "Mountain Meadows Elementary", - "total_students": 179, + "total_students": 159, "address": "999 NOONS CREEK DR", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H4N3" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343046", "name": "Mundy Road Elementary", - "total_students": 224, + "total_students": 197, "address": "2200 AUSTIN AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K3S1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343047", "name": "Ecole Nestor Elementary", - "total_students": 402, + "total_students": 378, "address": "1266 NESTOR ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E2A4" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343048", "name": "Ecole Panorama Heights Elementary", - "total_students": 370, + "total_students": 350, "address": "1455 JOHNSON ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E2T1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343049", "name": "Parkland Elementary", - "total_students": 254, + "total_students": 239, "address": "1563 REGAN AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J3B7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343050", "name": "Pinetree Way Elementary", - "total_students": 304, + "total_students": 293, "address": "1420 PINETREE WAY", "city": "COQUITLAM", "province": "BC", "postal_code": "V3C6A3" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343051", "name": "Pleasantside Elementary", - "total_students": 151, + "total_students": 139, "address": "195 BARBER ST", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H3A8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343053", "name": "Ecole Porter Street Elementary", - "total_students": 326, + "total_students": 321, "address": "728 PORTER ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J5B4" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343054", "name": "Ranch Park Elementary", - "total_students": 180, + "total_students": 163, "address": "2701 SPURAWAY AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3C2C4" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343055", "name": "Ecole Rochester Elementary", - "total_students": 377, + "total_students": 385, "address": "411 SCHOOLHOUSE ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K4Y7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343056", "name": "Roy Stibbs Elementary", - "total_students": 263, + "total_students": 298, "address": "600 FAIRVIEW ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J4A7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343057", "name": "Riverview Park Elementary", - "total_students": 240, + "total_students": 226, "address": "700 CLEARWATER WAY", "city": "COQUITLAM", "province": "BC", "postal_code": "V3C6A3" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343058", "name": "Seaview Community School", - "total_students": 181, + "total_students": 175, "address": "1215 CECILE DR", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H1N2" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343059", "name": "Smiling Creek Elementary", - "total_students": 501, + "total_students": 486, "address": "3456 PRINCETON AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E3H1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343060", - "name": "CABE Secondary", - "total_students": 116, + "name": "Cabe Secondary", + "total_students": 122, "address": "1411 FOSTER AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J2N1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343069", "name": "Walton Elementary", - "total_students": 520, + "total_students": 527, "address": "2960 WALTON AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3B6V6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343070", "name": "Ecole Westwood Elementary", - "total_students": 327, + "total_students": 334, "address": "3610 HASTINGS ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B4N6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343071", "name": "Aspenwood Elementary", @@ -11019,356 +10951,356 @@ "postal_code": "V3H5G8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343072", "name": "Castle Park Elementary", - "total_students": 333, + "total_students": 313, "address": "1144 CONFEDERATION DR", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C6P1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343073", "name": "Hampton Park Elementary", - "total_students": 268, + "total_students": 258, "address": "1760 PADDOCK DR", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E3N8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343074", "name": "Blakeburn Elementary", - "total_students": 409, + "total_students": 393, "address": "1040 RIVERSIDE DR", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B8A7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343076", "name": "Centennial Secondary", - "total_students": 1550, + "total_students": 1555, "address": "570 POIRIER ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J6A8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343078", "name": "Como Lake Middle School", - "total_students": 337, + "total_students": 396, "address": "1121 KING ALBERT AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J1X8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343080", - "name": "Ecole Dr. Charles Best Secondary", - "total_students": 1661, + "name": "École Dr. Charles Best Secondary", + "total_students": 1604, "address": "2525 COMO LAKE AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J3R8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343081", "name": "Ecole Maillard Middle", - "total_students": 370, + "total_students": 353, "address": "1300 ROCHESTER AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K2X5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343082", "name": "Ecole Pitt River Middle", - "total_students": 440, + "total_students": 432, "address": "2070 TYNER ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C2Z1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343084", "name": "Ecole Montgomery Middle", - "total_students": 468, + "total_students": 505, "address": "1900 EDGEWOOD AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K2Y1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343086", "name": "Ecole Moody Middle", - "total_students": 390, + "total_students": 374, "address": "3115 ST. JOHNS ST", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H2C6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343088", "name": "Port Moody Secondary", - "total_students": 1321, + "total_students": 1278, "address": "300 ALBERT ST", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H2M5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343090", "name": "Minnekhada Middle School", - "total_students": 800, + "total_students": 854, "address": "1390 LAURIER AVE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B2B8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343091", "name": "Ecole Maple Creek Middle", - "total_students": 632, + "total_students": 623, "address": "3700 HASTINGS ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B5K7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343093", "name": "Ecole Banting Middle", - "total_students": 560, + "total_students": 563, "address": "820 BANTING ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J4J4" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343102", "name": "Ecole Citadel Middle", - "total_students": 446, + "total_students": 433, "address": "1265 CITADEL DR", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C5X6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343108", "name": "Ecole Kwayhquitlum Middle", - "total_students": 684, + "total_students": 663, "address": "3280 FLINT ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B4J2" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343110", "name": "Eagle Mountain Middle School", - "total_students": 549, + "total_students": 562, "address": "110 DOGWOOD DR", "city": "ANMORE", "province": "BC", "postal_code": "V3H5G1" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343113", "name": "Scott Creek Middle School", - "total_students": 639, + "total_students": 615, "address": "1240 LANSDOWNE DR", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E3E7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343114", "name": "Summit Middle School", - "total_students": 639, + "total_students": 662, "address": "1450 PARKWAY BLVD", "city": "COQUITLAM", "province": "BC", "postal_code": "V3E3L2" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343125", "name": "Gleneagle Secondary", - "total_students": 1170, + "total_students": 1088, "address": "1195 LANSDOWNE DR", "city": "COQUITLAM", "province": "BC", "postal_code": "V3B7Y8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343127", "name": "Heritage Woods Secondary", - "total_students": 1475, + "total_students": 1479, "address": "1300 DAVID AVE", "city": "PORT MOODY", "province": "BC", "postal_code": "V3H5K6" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343130", "name": "Pinetree Secondary", - "total_students": 1589, + "total_students": 1554, "address": "3000 PINEWOOD AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3B7Y7" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343132", "name": "Ecole Riverside Secondary", - "total_students": 1390, + "total_students": 1336, "address": "2215 REEVE ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3C6K8" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4343136", "name": "Terry Fox Secondary", - "total_students": 1566, + "total_students": 1622, "address": "1260 RIVERWOOD GATE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B7Z5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4399143", "name": "Coquitlam Open Learning", - "total_students": 164, + "total_students": 136, "address": "1432 BRUNETTE AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K1G5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4399179", - "name": "CLC", - "total_students": 69, + "name": "Customized Learning Centre (CLC)", + "total_students": 67, "address": "1600 KING ALBERT AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J1Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4399211", "name": "APEX", - "total_students": 118, + "total_students": 117, "address": "1432 BRUNETTE AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K1G5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4399220", "name": "Encompass 10-12", - "total_students": 67, + "total_students": 75, "address": "1600 KING ALBERT AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J1Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "43", + "public_or_independent": "Public School", + "district_number": "043", "district_name": "Coquitlam", "school_number": "4399226", "name": "Suwa'lkh School", - "total_students": 13, + "total_students": 20, "address": "1432 BRUNETTE AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K1G5" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444000", "name": "Continuing Ed SD 44", @@ -11379,392 +11311,392 @@ "postal_code": "V7N3T7" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444001", "name": "Lynn Valley Elementary", - "total_students": 375, + "total_students": 376, "address": "3207 INSTITUTE ROAD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7K3E5" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444003", "name": "Ridgeway Elementary", - "total_students": 689, + "total_students": 676, "address": "420 8TH ST E", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7L1Z5" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444005", "name": "Queen Mary Community Elementary", - "total_students": 454, + "total_students": 457, "address": "230 KEITH RD W", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7M1L8" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444008", "name": "Capilano Elementary", - "total_students": 420, + "total_students": 406, "address": "1230 20TH ST W", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7P2B9" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444009", "name": "Westview Elementary", - "total_students": 324, + "total_students": 331, "address": "641 17TH ST W", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7M0A1" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444011", "name": "Highlands Elementary", - "total_students": 461, + "total_students": 466, "address": "3150 COLWOOD DR", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7R2R6" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444012", "name": "Sutherland Secondary", - "total_students": 1022, + "total_students": 1074, "address": "1860 SUTHERLAND AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7L4C2" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444013", "name": "Norgate Community Elementary", - "total_students": 183, + "total_students": 167, "address": "1295 SOWDEN ST", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7P1L9" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444014", "name": "Canyon Heights Elementary", - "total_students": 377, + "total_students": 384, "address": "4501 HIGHLAND BLVD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7R3A2" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444016", "name": "Queensbury Elementary", - "total_students": 307, + "total_students": 319, "address": "2020 MOODY AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7L3V3" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444017", "name": "Eastview Elementary", - "total_students": 394, + "total_students": 397, "address": "1801 MOUNTAIN HWY", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7J2M7" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444019", "name": "Seymour Heights Elementary", - "total_students": 294, + "total_students": 296, "address": "2640 CARNATION ST", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7H1H5" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444021", "name": "Upper Lynn Elementary", - "total_students": 477, + "total_students": 456, "address": "1540 COLEMAN ST", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7K1W8" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444022", "name": "Argyle Secondary", - "total_students": 1543, + "total_students": 1558, "address": "1131 FREDERICK RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7K1J3" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444023", "name": "Carisbrooke Elementary", - "total_students": 314, + "total_students": 337, "address": "510 CARISBROOKE RD E", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7N1N5" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444024", "name": "Braemar Elementary", - "total_students": 438, + "total_students": 440, "address": "3600 MAHON AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7N3T6" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444025", "name": "Handsworth Secondary", - "total_students": 1520, + "total_students": 1582, "address": "1033 HANDSWORTH RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7R2A7" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444026", "name": "Windsor Secondary", - "total_students": 927, + "total_students": 944, "address": "931 BROADVIEW DR", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7H2E9" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444027", "name": "Cleveland Elementary", - "total_students": 507, + "total_students": 498, "address": "1255 ELDON RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7R1T5" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444029", "name": "Ross Road Elementary", - "total_students": 493, + "total_students": 484, "address": "2875 BUSHNELL PL", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7J2Y9" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444031", "name": "Montroyal Elementary", - "total_students": 279, + "total_students": 261, "address": "5310 SONORA DR", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7R3V8" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444032", "name": "Sherwood Park Elementary", - "total_students": 382, + "total_students": 374, "address": "4085 DOLLAR RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7G1A5" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444034", "name": "Larson Elementary", - "total_students": 492, + "total_students": 491, "address": "2605 LARSON RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7N3W4" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444036", "name": "Carson Graham Secondary", - "total_students": 1411, + "total_students": 1393, "address": "2145 JONES AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7M2W7" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444037", "name": "Brooksbank Elementary", - "total_students": 426, + "total_students": 431, "address": "980 13TH ST E", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7L2N2" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444041", "name": "Blueridge Elementary", - "total_students": 280, + "total_students": 260, "address": "2650 BRONTE DR", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7H1M4" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444043", "name": "Boundary Elementary", - "total_students": 381, + "total_students": 364, "address": "750 26TH ST E", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7K1A4" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444046", "name": "Lynnmour Elementary School", - "total_students": 266, + "total_students": 256, "address": "800 FORSMAN AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7J2G6" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444047", "name": "Seycove Secondary Community", - "total_students": 587, + "total_students": 583, "address": "1204 CALEDONIA AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7G2A6" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444048", "name": "Dorothy Lynas Elementary", - "total_students": 558, + "total_students": 547, "address": "4000 INLET CRES", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7G2R2" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4444049", "name": "Cove Cliff Elementary", - "total_students": 284, + "total_students": 275, "address": "1818 BANBURY RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7G1W4" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4499176", "name": "North Vancouver Online Learning", - "total_students": 251, + "total_students": 278, "address": "3365 MAHON AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7N3T7" }, { - "public_or_independent": "BC Public School", - "district_number": "44", + "public_or_independent": "Public School", + "district_number": "044", "district_name": "North Vancouver", "school_number": "4499191", "name": "Mountainside Secondary", @@ -11775,296 +11707,296 @@ "postal_code": "V7N3T7" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545010", "name": "Sentinel Secondary", - "total_students": 1199, + "total_students": 1214, "address": "1250 CHARTWELL DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7S2R2" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545015", "name": "West Vancouver Secondary", - "total_students": 1383, + "total_students": 1326, "address": "1750 MATHERS AVE", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7V2G7" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545019", "name": "Bowen Island Community School", - "total_students": 251, + "total_students": 235, "address": "PO BOX 220", "city": "BOWEN ISLAND", "province": "BC", "postal_code": "V0N1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545020", "name": "Caulfeild Elementary", - "total_students": 387, + "total_students": 365, "address": "4685 KEITH RD", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7W2M8" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545025", "name": "Ecole Cedardale", - "total_students": 314, + "total_students": 329, "address": "595 BURLEY DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7T1Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545030", "name": "Chartwell Elementary", - "total_students": 313, + "total_students": 317, "address": "1300 CHARTWELL DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7S2R3" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545035", "name": "Cypress Park Primary", - "total_students": 73, + "total_students": 67, "address": "4355 MARINE DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7V1P2" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545040", "name": "Eagle Harbour Montessori", - "total_students": 71, + "total_students": 68, "address": "5575 MARINE DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7W2R4" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545045", "name": "Gleneagles Elementary", - "total_students": 250, + "total_students": 251, "address": "6350 MARINE DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7W2S5" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545055", "name": "Hollyburn Elementary", - "total_students": 280, + "total_students": 267, "address": "1329 DUCHESS AVE", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7T1H5" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545060", "name": "Irwin Park Elementary", - "total_students": 427, + "total_students": 405, "address": "2455 HAYWOOD AVE", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7V1Y2" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545062", "name": "Lions Bay Community School", - "total_students": 28, + "total_students": 27, "address": "PO BOX 220", "city": "LIONS BAY", "province": "BC", "postal_code": "V0N2E0" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545065", "name": "Ecole Pauline Johnson Elementary", - "total_students": 398, + "total_students": 389, "address": "1150 22ND ST", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7V4C4" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545070", "name": "Ridgeview Elementary", - "total_students": 402, + "total_students": 356, "address": "1250 MATHERS AVE", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7T2G3" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545075", "name": "West Bay Elementary", - "total_students": 395, + "total_students": 383, "address": "3175 THOMPSON PL", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7V3E3" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545080", "name": "Westcot Elementary", - "total_students": 411, + "total_students": 412, "address": "760 WESTCOT RD", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7S1N7" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4545081", "name": "Rockridge Secondary", - "total_students": 832, + "total_students": 852, "address": "5350 HEADLAND DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7W3H2" }, { - "public_or_independent": "BC Public School", - "district_number": "45", + "public_or_independent": "Public School", + "district_number": "045", "district_name": "West Vancouver", "school_number": "4599309", "name": "West Vancouver Inglewood Secondary", - "total_students": 30, + "total_students": 32, "address": "1735 Inglewood Avenue", "city": "West Vancouver", "province": "BC", "postal_code": "V7V1Y8" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646000", "name": "Continuing Ed SD 46", - "total_students": 32, - "address": "PO BOX 369", + "total_students": 10, + "address": "805 GIBSONS WAY", "city": "GIBSONS", "province": "BC", - "postal_code": "V0N1V0" + "postal_code": "V0N1V8" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646001", "name": "Gibsons Elementary", - "total_students": 349, + "total_students": 331, "address": "PO BOX 548", "city": "GIBSONS", "province": "BC", "postal_code": "V0N1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646007", "name": "Madeira Park Elementary", - "total_students": 113, - "address": "GENERAL DELIVERY", + "total_students": 104, + "address": "BOX 151", "city": "MADEIRA PARK", "province": "BC", "postal_code": "V0N2H0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646008", "name": "Elphinstone Secondary", - "total_students": 579, + "total_students": 609, "address": "PO BOX 770", "city": "GIBSONS", "province": "BC", "postal_code": "V0N1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646009", "name": "Roberts Creek Elementary", - "total_students": 305, + "total_students": 294, "address": "GENERAL DELIVERY", "city": "ROBERTS CREEK", "province": "BC", "postal_code": "V0N2W0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646011", "name": "Davis Bay Elementary", - "total_students": 195, + "total_students": 200, "address": "PO BOX 512", "city": "SECHELT", "province": "BC", "postal_code": "V0N3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646012", "name": "Pender Harbour Elem-Secondary", @@ -12075,104 +12007,104 @@ "postal_code": "V0N2H1" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646013", "name": "Halfmoon Bay Elementary", - "total_students": 177, - "address": "8086 NORTHWOOD RD RR 1", + "total_students": 166, + "address": "8086 NORTHWOOD RD", "city": "HALFMOON BAY", "province": "BC", "postal_code": "V7Z1A8" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646015", "name": "Langdale Elementary", - "total_students": 121, + "total_students": 126, "address": "PO BOX 280", "city": "GIBSONS", "province": "BC", "postal_code": "V0N1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646016", "name": "West Sechelt Elementary", - "total_students": 277, + "total_students": 276, "address": "PO BOX 220", "city": "SECHELT", "province": "BC", "postal_code": "V0N3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646017", "name": "Chatelech Secondary", - "total_students": 623, + "total_students": 617, "address": "PO BOX 1430", "city": "SECHELT", "province": "BC", "postal_code": "V0N3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646018", "name": "Cedar Grove Elementary", - "total_students": 234, + "total_students": 220, "address": "PO BOX 1130", "city": "GIBSONS", "province": "BC", "postal_code": "V0N1V4" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4646022", "name": "Kinnikinnick Elementary", - "total_students": 240, + "total_students": 222, "address": "PO BOX 142", "city": "SECHELT", "province": "BC", "postal_code": "V0N3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4699076", "name": "Sunshine Coast Alternative School", - "total_students": 107, - "address": "PO BOX 369", + "total_students": 130, + "address": "805 GIBSONS WAY", "city": "GIBSONS", "province": "BC", - "postal_code": "V0N1V0" + "postal_code": "V0N1V8" }, { - "public_or_independent": "BC Public School", - "district_number": "46", + "public_or_independent": "Public School", + "district_number": "046", "district_name": "Sunshine Coast", "school_number": "4699160", "name": "Spider", - "total_students": 73, - "address": "PO BOX 369", + "total_students": 10, + "address": "805 GIBSONS WAY", "city": "GIBSONS", "province": "BC", - "postal_code": "V0N1V0" + "postal_code": "V0N1V8" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747000", "name": "Continuing ED SD 47", @@ -12183,20 +12115,20 @@ "postal_code": "V8A2L6" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747001", "name": "James Thomson Elementary", - "total_students": 263, + "total_students": 261, "address": "6388 SUTHERLAND AVE", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A4W4" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747004", "name": "Westview Learning Centre", @@ -12207,129 +12139,129 @@ "postal_code": "V8A5E3" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747010", "name": "Edgehill Elementary", - "total_students": 222, + "total_students": 215, "address": "7312 ABBOTSFORD ST", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A2G5" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747013", "name": "Henderson Elementary", - "total_students": 117, + "total_students": 125, "address": "5506 WILLOW AVE", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A4P4" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747014", "name": "Texada Elementary", - "total_students": 35, + "total_students": 36, "address": "PO BOX 40", "city": "VAN ANDA", "province": "BC", "postal_code": "V0N3K0" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747015", "name": "Kelly Creek Community School", - "total_students": 176, + "total_students": 174, "address": "2341 ZILINSKY RD", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A0N8" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747021", "name": "Brooks Secondary", - "total_students": 897, + "total_students": 926, "address": "5400 MARINE AVE", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A2L6" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4747022", "name": "Westview Elementary", - "total_students": 360, + "total_students": 359, "address": "3900 SELKIRK AVE", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A0T8" }, { - "public_or_independent": "BC Public School", - "district_number": "47", + "public_or_independent": "Public School", + "district_number": "047", "district_name": "qathet", "school_number": "4799161", "name": "Partners in Education Program (PIE)", - "total_students": 1229, + "total_students": 1241, "address": "7105 NOOTKA STREET", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A5E3" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848004", "name": "Howe Sound Secondary", - "total_students": 863, - "address": "PO BOX 99 STN MAIN", + "total_students": 894, + "address": "PO BOX 99", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0A1" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848008", "name": "Mamquam Elementary", - "total_students": 281, + "total_students": 280, "address": "PO BOX 160", "city": "Squamish", "province": "BC", "postal_code": "V0N1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848011", "name": "Ecole Squamish Elementary", - "total_students": 398, + "total_students": 415, "address": "PO BOX 1040", "city": "Squamish", "province": "BC", "postal_code": "V8B0A7" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848014", "name": "Blackwater Creek Elementary", "total_students": 10, @@ -12339,260 +12271,260 @@ "postal_code": "V0N1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848018", "name": "Garibaldi Highlands Elementary", - "total_students": 437, + "total_students": 408, "address": "PO BOX 280", "city": "Squamish", "province": "BC", "postal_code": "V0N1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848019", "name": "Valleycliffe Elementary", - "total_students": 261, - "address": "PO BOX 2240", + "total_students": 245, + "address": "38430 Westway Avenue", "city": "Squamish", "province": "BC", "postal_code": "V8B0W4" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848020", "name": "Myrtle Philip Community School", - "total_students": 323, + "total_students": 327, "address": "6195 LORIMER RD", "city": "WHISTLER", "province": "BC", "postal_code": "V8E0C5" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848021", "name": "Pemberton Secondary", - "total_students": 365, + "total_students": 386, "address": "PO BOX 40", "city": "Pemberton", "province": "BC", "postal_code": "V0N2L0" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848022", "name": "Whistler Secondary", - "total_students": 485, + "total_students": 481, "address": "8000 ALPINE WAY", "city": "WHISTLER", "province": "BC", "postal_code": "V0N1B8" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848023", "name": "Brackendale Elementary", - "total_students": 320, + "total_students": 299, "address": "PO BOX 280", "city": "Squamish", "province": "BC", "postal_code": "V0N1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848024", "name": "Signal Hill Elementary", - "total_students": 425, + "total_students": 412, "address": "1410 PORTAGE RD", "city": "PEMBERTON", "province": "BC", "postal_code": "V0N2L1" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848025", "name": "Spring Creek Community School", - "total_students": 273, + "total_students": 263, "address": "1509 SPRING CREEK DR", "city": "WHISTLER", "province": "BC", "postal_code": "V8C0A2" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848026", "name": "Don Ross Middle School", - "total_students": 757, + "total_students": 756, "address": "PO BOX 299", "city": "Brackendale", "province": "BC", "postal_code": "V0N1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4848027", "name": "St'a7mes School", - "total_students": 65, + "total_students": 10, "address": "PO BOX 640", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0A5" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4899147", "name": "Sea to Sky Online School", - "total_students": 67, + "total_students": 21, "address": "PO BOX 640", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0A5" }, { - "public_or_independent": "BC Public School", - "district_number": "48", - "district_name": "Sea To Sky", + "public_or_independent": "Public School", + "district_number": "048", + "district_name": "Sea to Sky", "school_number": "4899215", "name": "Sea to Sky Alternative School", - "total_students": 31, + "total_students": 25, "address": "PO BOX 99", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0A1" }, { - "public_or_independent": "BC Public School", - "district_number": "49", + "public_or_independent": "Public School", + "district_number": "049", "district_name": "Central Coast", "school_number": "4949002", "name": "Sir Alexander Mackenzie Secondary", - "total_students": 86, + "total_students": 75, "address": "PO BAG 800", "city": "HAGENSBORG", "province": "BC", "postal_code": "V0T1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "49", + "public_or_independent": "Public School", + "district_number": "049", "district_name": "Central Coast", "school_number": "4949004", "name": "Bella Coola Elementary", - "total_students": 69, + "total_students": 61, "address": "PO BOX 7", "city": "BELLA COOLA", "province": "BC", "postal_code": "V0T1C0" }, { - "public_or_independent": "BC Public School", - "district_number": "49", + "public_or_independent": "Public School", + "district_number": "049", "district_name": "Central Coast", "school_number": "4949007", "name": "Shearwater Elementary", - "total_students": 11, + "total_students": 10, "address": "808 MACKAY STREET", "city": "BELLA COOLA", "province": "BC", "postal_code": "V0T1C0" }, { - "public_or_independent": "BC Public School", - "district_number": "49", + "public_or_independent": "Public School", + "district_number": "049", "district_name": "Central Coast", "school_number": "4949008", "name": "Nusatsum Elementary", - "total_students": 45, + "total_students": 10, "address": "PO BOX 18", "city": "HAGENSBORG", "province": "BC", "postal_code": "V0T1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "50", + "public_or_independent": "Public School", + "district_number": "050", "district_name": "Haida Gwaii", "school_number": "5050002", "name": "Port Clements Elementary", - "total_students": 10, + "total_students": 25, "address": "PO BOX 288", "city": "PORT CLEMENTS", "province": "BC", "postal_code": "V0T1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "50", + "public_or_independent": "Public School", + "district_number": "050", "district_name": "Haida Gwaii", "school_number": "5050004", "name": "Agnes L Mathers Elementary Secondary", - "total_students": 20, + "total_students": 23, "address": "PO BOX 227", "city": "SANDSPIT", "province": "BC", "postal_code": "V0T1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "50", + "public_or_independent": "Public School", + "district_number": "050", "district_name": "Haida Gwaii", "school_number": "5050011", "name": "Sk'aadgaa Naay Elementary", - "total_students": 152, + "total_students": 134, "address": "PO BOX 1252", - "city": "QUEEN CHARLOTTE", + "city": "Skidegate", "province": "BC", "postal_code": "V0T1S1" }, { - "public_or_independent": "BC Public School", - "district_number": "50", + "public_or_independent": "Public School", + "district_number": "050", "district_name": "Haida Gwaii", "school_number": "5050012", "name": "Gidgalang Kuuyas Naay", - "total_students": 124, + "total_students": 125, "address": "PO BOX 70", "city": "DAAJING GIIDS", "province": "BC", "postal_code": "V0T1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "50", + "public_or_independent": "Public School", + "district_number": "050", "district_name": "Haida Gwaii", "school_number": "5050013", - "name": "Daaxiigan Sk'adaa Nee", - "total_students": 191, + "name": "Daaxiigan Sk'adáa Née", + "total_students": 188, "address": "1647 Collison Avenue", "city": "Masset", "province": "BC", "postal_code": "V0T1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "50", + "public_or_independent": "Public School", + "district_number": "050", "district_name": "Haida Gwaii", "school_number": "5099107", "name": "SD 50 Online Learning", @@ -12603,140 +12535,140 @@ "postal_code": "V0T1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5112001", "name": "Dr. D.A. Perley Elementary", - "total_students": 242, + "total_students": 208, "address": "PO BOX 908", "city": "GRAND FORKS", "province": "BC", "postal_code": "V0H1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5112002", "name": "Grand Forks Secondary", - "total_students": 420, + "total_students": 396, "address": "PO BOX 339", "city": "GRAND FORKS", "province": "BC", "postal_code": "V0H1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5112004", "name": "Christina Lake Elementary", - "total_students": 72, + "total_students": 64, "address": "PO BOX 240", "city": "CHRISTINA LAKE", "province": "BC", "postal_code": "V0H1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5112005", "name": "John A. Hutton Elementary", - "total_students": 211, + "total_students": 246, "address": "PO BOX 1390", "city": "GRAND FORKS", "province": "BC", "postal_code": "V0H1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5113002", "name": "Beaverdell Elementary", - "total_students": 16, + "total_students": 12, "address": "PO BOX 116", "city": "BEAVERDELL", "province": "BC", "postal_code": "V0H1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5113007", "name": "Greenwood Elementary", - "total_students": 71, + "total_students": 60, "address": "PO BOX 219", "city": "GREENWOOD", "province": "BC", "postal_code": "V0H1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5113010", "name": "Boundary Central Secondary", - "total_students": 103, + "total_students": 117, "address": "PO BOX 159", "city": "MIDWAY", "province": "BC", "postal_code": "V0H1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5113012", "name": "West Boundary Elementary", - "total_students": 96, + "total_students": 108, "address": "4035 Kettle Valley Road Southoad S", "city": "ROCK CREEK", "province": "BC", "postal_code": "V0H1Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5151013", "name": "Big White Community School", - "total_students": 28, + "total_students": 33, "address": "400 Happy Valley Road", "city": "Big White Mountain", "province": "BC", "postal_code": "V1P1T4" }, { - "public_or_independent": "BC Public School", - "district_number": "51", + "public_or_independent": "Public School", + "district_number": "051", "district_name": "Boundary", "school_number": "5199169", "name": "Walker Development Centre", - "total_students": 30, + "total_students": 23, "address": "PO BOX 310", "city": "GRAND FORKS", "province": "BC", "postal_code": "V0H1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252003", "name": "Conrad Elementary", - "total_students": 186, + "total_students": 196, "address": "PO BOX 520", "city": "PRINCE RUPERT", "province": "BC", "postal_code": "V8J1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252005", "name": "Port Edward Elementary", @@ -12747,32 +12679,32 @@ "postal_code": "V8J1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252006", "name": "Roosevelt Park Elementary", - "total_students": 176, + "total_students": 183, "address": "PO BOX 520", "city": "PRINCE RUPERT", "province": "BC", "postal_code": "V8J1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252014", "name": "Pineridge Elementary", - "total_students": 139, + "total_students": 133, "address": "PO BOX 520", "city": "PRINCE RUPERT", "province": "BC", "postal_code": "V8J1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252017", "name": "Hartley Bay Elem-Jr Secondary", @@ -12783,32 +12715,32 @@ "postal_code": "V0V1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252018", "name": "Charles Hays Secondary", - "total_students": 648, + "total_students": 619, "address": "PO BOX 520", "city": "PRINCE RUPERT", "province": "BC", "postal_code": "V8J1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252019", "name": "Lax Kxeen Elementary", - "total_students": 208, + "total_students": 196, "address": "PO BOX 520 STN MAIN", "city": "PRINCE RUPERT", "province": "BC", "postal_code": "V8J3R7" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5252020", "name": "Prince Rupert Middle", @@ -12819,140 +12751,140 @@ "postal_code": "V8J1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "52", + "public_or_independent": "Public School", + "district_number": "052", "district_name": "Prince Rupert", "school_number": "5299087", "name": "Pacific Coast School", - "total_students": 32, + "total_students": 37, "address": "PO BOX 520", "city": "PRINCE RUPERT", "province": "BC", "postal_code": "V8J1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5314001", "name": "Southern Okanagan Secondary", - "total_students": 507, + "total_students": 481, "address": "PO BOX 990", "city": "OLIVER", "province": "BC", "postal_code": "V0H1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5314002", "name": "Okanagan Falls Elementary", - "total_students": 99, + "total_students": 84, "address": "PO BOX 6", "city": "OKANAGAN FALLS", "province": "BC", "postal_code": "V0H1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5314004", "name": "Oliver Elementary", - "total_students": 325, + "total_students": 311, "address": "PO BOX 989", "city": "OLIVER", "province": "BC", "postal_code": "V0H1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5314005", "name": "Osoyoos Elementary", - "total_students": 378, + "total_students": 360, "address": "PO BOX 580", "city": "OSOYOOS", "province": "BC", "postal_code": "V0H1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5314007", "name": "Tuc-el-Nuit Elementary", - "total_students": 230, + "total_students": 248, "address": "6648 PARK DR", "city": "OLIVER", "province": "BC", "postal_code": "V0H1T4" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5314008", "name": "Osoyoos Secondary", - "total_students": 251, + "total_students": 264, "address": "5800 115TH ST", "city": "OSOYOOS", "province": "BC", "postal_code": "V0H1V4" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5316003", "name": "Cawston Primary School", - "total_students": 186, + "total_students": 165, "address": "517 SCHOOL RD", "city": "CAWSTON", "province": "BC", "postal_code": "V0X1C1" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5316004", "name": "Similkameen Elem-Secondary", - "total_students": 317, + "total_students": 304, "address": "830 2ND AVE", "city": "KEREMEOS", "province": "BC", "postal_code": "V0X1N2" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5353000", "name": "YouLearn.ca-CE", - "total_students": 18, + "total_students": 17, "address": "PO BOX 940", "city": "OLIVER", "province": "BC", "postal_code": "V0H1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5399162", "name": "YouLearn - OL", - "total_students": 62, + "total_students": 102, "address": "PO BOX 940", "city": "OLIVER", "province": "BC", "postal_code": "V0H1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5399289", "name": "Similkameen Secondary Alt", @@ -12963,8 +12895,8 @@ "postal_code": "V0X1N2" }, { - "public_or_independent": "BC Public School", - "district_number": "53", + "public_or_independent": "Public School", + "district_number": "053", "district_name": "Okanagan Similkameen", "school_number": "5399290", "name": "Southern Okanagan Alt", @@ -12975,896 +12907,872 @@ "postal_code": "V0H1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5454004", "name": "Silverthorne Elementary", - "total_students": 123, + "total_students": 108, "address": "PO BOX 430", "city": "HOUSTON", "province": "BC", "postal_code": "V0J1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5454005", "name": "Telkwa Elementary", - "total_students": 130, + "total_students": 127, "address": "PO BOX 68", "city": "TELKWA", "province": "BC", "postal_code": "V0J2X0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5454006", "name": "Muheim Memorial Elementary", - "total_students": 308, + "total_students": 300, "address": "PO BOX 2260", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5454010", "name": "Walnut Park Elementary", - "total_students": 289, + "total_students": 279, "address": "PO BOX 2692", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5454011", "name": "Houston Secondary", - "total_students": 201, + "total_students": 194, "address": "PO BOX 1600", "city": "HOUSTON", "province": "BC", "postal_code": "V0J1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5454012", "name": "Twain Sullivan Elementary", - "total_students": 160, + "total_students": 158, "address": "PO BOX 1300", "city": "HOUSTON", "province": "BC", "postal_code": "V0J1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5454013", "name": "Smithers Secondary", - "total_students": 605, + "total_students": 614, "address": "PO BOX 849", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5499163", "name": "Bulkley Valley Education Connection", - "total_students": 38, - "address": "C/O PO BOX 758", + "total_students": 13, + "address": "PO BOX 758", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "54", + "public_or_independent": "Public School", + "district_number": "054", "district_name": "Bulkley Valley", "school_number": "5499182", "name": "Bulkley Valley Learning Centre", - "total_students": 50, + "total_students": 33, "address": "PO BOX 849", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", - "district_name": "Prince George", - "school_number": "5757000", - "name": "Continuing ED SD 57", - "total_students": 10, - "address": "3400 WESTWOOD DR", - "city": "PRINCE GEORGE", - "province": "BC", - "postal_code": "V2N1S1" - }, - { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757007", "name": "Buckhorn Elementary", - "total_students": 118, + "total_students": 115, "address": "5190 BUCKHORN LAKE RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N6B4" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757012", "name": "Duchess Park Secondary", - "total_students": 859, + "total_students": 899, "address": "747 WINNIPEG ST", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2L2V3" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757017", "name": "Ron Brent Elementary", - "total_students": 264, + "total_students": 266, "address": "1401 17TH AVE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2L3Z2" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757022", "name": "Pineview Elementary", - "total_students": 139, + "total_students": 145, "address": "8515 OLD CARIBOO HWY", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N5X5" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757024", "name": "Harwin Elementary", - "total_students": 297, + "total_students": 295, "address": "1193 HARPER ST", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M2X1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", - "district_name": "Prince George", - "school_number": "5757033", - "name": "Giscome Elementary", - "total_students": 10, - "address": "PO BOX 40", - "city": "WILLOW RIVER", - "province": "BC", - "postal_code": "V0J3C0" - }, - { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757036", "name": "Prince George Secondary", - "total_students": 1398, + "total_students": 1371, "address": "2901 GRIFFITHS AVE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M2S7" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757038", "name": "Hixon Elementary", - "total_students": 32, + "total_students": 30, "address": "PO BOX 70", "city": "HIXON", "province": "BC", "postal_code": "V0K1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757040", "name": "Peden Hill Elementary", - "total_students": 267, + "total_students": 265, "address": "3500 WESTWOOD DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N1S1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757045", "name": "Nukko Lake Elementary", - "total_students": 108, + "total_students": 110, "address": "23955 CHIEF LAKE RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K5L1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757047", "name": "Shas Ti Kelly Road Secondary", - "total_students": 843, + "total_students": 887, "address": "7405 KELLY RD S", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K2J8" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757048", "name": "Vanway Elementary", - "total_students": 306, + "total_students": 308, "address": "4509 HIGHWAY 16 W", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N5M8" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757051", "name": "Quinson Elementary", - "total_students": 263, + "total_students": 250, "address": "251 OGILVIE ST S", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M3M4" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757057", "name": "Beaverly Elementary", - "total_students": 206, + "total_students": 208, "address": "9777 WESTERN RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N6M9" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757059", - "name": "Spruceland Traditional", - "total_students": 267, + "name": "Spruceland Community School of the Arts", + "total_students": 240, "address": "3805 RAINBOW DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M3W2" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757063", "name": "Van Bien Elementary", - "total_students": 137, + "total_students": 130, "address": "311 WILSON CRES", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2L4P8" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757064", "name": "Blackburn Elementary", - "total_students": 232, + "total_students": 234, "address": "2222 SOUTH BLACKBURN RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N6C1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757068", "name": "Westwood Elementary", - "total_students": 212, + "total_students": 210, "address": "2633 VANIER DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N1V1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757074", "name": "Valemount Secondary", - "total_students": 81, + "total_students": 92, "address": "PO BOX 370", "city": "VALEMOUNT", "province": "BC", "postal_code": "V0E2Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757075", "name": "McBride Secondary", - "total_students": 52, + "total_students": 54, "address": "PO BOX 200", "city": "MCBRIDE", "province": "BC", "postal_code": "V0J2E0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757076", "name": "Polaris Montessori Elementary", - "total_students": 183, + "total_students": 191, "address": "7005 GLADSTONE DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N3N7" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757078", "name": "College Heights Elementary", - "total_students": 342, + "total_students": 329, "address": "5410 COWART RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N1Z2" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757082", "name": "Glenview Elementary", - "total_students": 207, + "total_students": 192, "address": "7310 CLUFF RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K2M3" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757083", "name": "Morfee Elementary", - "total_students": 289, + "total_students": 258, "address": "PO BOX 1150", "city": "MACKENZIE", "province": "BC", "postal_code": "V0J2C0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757087", "name": "Hart Highlands Elementary", - "total_students": 348, + "total_students": 346, "address": "2233 SUSSEX LANE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K3J1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757088", "name": "Foothills Elementary", - "total_students": 194, + "total_students": 202, "address": "4375 EAGLENEST CRES", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M4Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757089", "name": "Springwood Elementary", - "total_students": 272, + "total_students": 271, "address": "4600 ZRAL RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K5X9" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757096", "name": "Valemount Elementary", - "total_students": 132, + "total_students": 140, "address": "1445 7th Ave", "city": "VALEMOUNT", "province": "BC", "postal_code": "V0E2Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757098", "name": "Heritage Elementary", - "total_students": 431, + "total_students": 397, "address": "257 ANDERSON ST", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M6C1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757100", "name": "D. P. Todd Secondary", - "total_students": 811, + "total_students": 799, "address": "4444 HILL AVE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M5V9" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757101", "name": "College Heights Secondary", - "total_students": 999, + "total_students": 966, "address": "6180 DOMANO BLVD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N3Z4" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757102", "name": "Pinewood Elementary", - "total_students": 178, + "total_students": 184, "address": "4140 CAMPBELL AVE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N3A9" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757104", "name": "Edgewood Elementary", - "total_students": 177, + "total_students": 182, "address": "4440 CRAIG DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K3P5" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757108", "name": "Malaspina Elementary", - "total_students": 280, + "total_students": 282, "address": "7900 MALASPINA AVE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N4A9" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757110", "name": "Southridge Elementary", - "total_students": 357, + "total_students": 344, "address": "7300 SOUTHRIDGE AVE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N4Y6" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757112", "name": "McBride Centennial Elementary", - "total_students": 80, + "total_students": 76, "address": "PO BOX 187", "city": "MCBRIDE", "province": "BC", "postal_code": "V0J2E0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757114", "name": "Heather Park Elementary", - "total_students": 550, + "total_students": 538, "address": "7151 HEATHER PARK RD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K5Y3" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757115", - "name": "Ecole Lac des Bois", - "total_students": 375, + "name": "Ecole Lac Des Bois", + "total_students": 364, "address": "4131 RAINBOW DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M3W3" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757116", "name": "Nusdeh Yoh", - "total_students": 161, + "total_students": 174, "address": "2579 VICTORIA ST", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2L2M3" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5757118", "name": "Mackenzie Secondary", - "total_students": 262, + "total_students": 280, "address": "PO BOX 578", "city": "MACKENZIE", "province": "BC", "postal_code": "V0J2C0" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5798005", "name": "Central Interior Distance Education", - "total_students": 501, + "total_students": 207, "address": "3400 WESTWOOD DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N1S1" }, { - "public_or_independent": "BC Public School", - "district_number": "57", + "public_or_independent": "Public School", + "district_number": "057", "district_name": "Prince George", "school_number": "5799140", "name": "Alternate Community Programs", - "total_students": 10, + "total_students": 230, "address": "3400 WESTWOOD DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N1S1" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5817005", "name": "Vermilion Forks Elementary", - "total_students": 137, + "total_students": 143, "address": "PO BOX 970", "city": "PRINCETON", "province": "BC", "postal_code": "V0X1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5817006", "name": "John Allison Elementary", - "total_students": 135, + "total_students": 151, "address": "PO BOX 40", "city": "PRINCETON", "province": "BC", "postal_code": "V0X1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5817008", "name": "Princeton Secondary", - "total_students": 189, + "total_students": 198, "address": "PO BOX 500", "city": "PRINCETON", "province": "BC", "postal_code": "V0X1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5831001", "name": "Merritt Central Elementary", - "total_students": 220, + "total_students": 200, "address": "PO BOX 4100", "city": "MERRITT", "province": "BC", "postal_code": "V1K1B8" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5831005", "name": "Merritt Secondary", - "total_students": 605, + "total_students": 601, "address": "PO BOX 5100", "city": "MERRITT", "province": "BC", "postal_code": "V1K1B8" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5831006", "name": "Diamond Vale Elementary", - "total_students": 128, + "total_students": 122, "address": "2675 COLDWATER AVE", "city": "MERRITT", "province": "BC", "postal_code": "V1K1B2" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5831007", "name": "Nicola Canford Elementary", - "total_students": 137, + "total_students": 115, "address": "2311 POSTELL ST", "city": "LOWER NICOLA", "province": "BC", "postal_code": "V0K1Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5831009", "name": "Collettville Elementary", - "total_students": 114, + "total_students": 112, "address": "615 LINDLEY CREEK RD", "city": "MERRITT", "province": "BC", "postal_code": "V1K1L4" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5831010", "name": "Merritt Bench Elementary", - "total_students": 153, + "total_students": 143, "address": "3341 GRIMMET ST", "city": "MERRITT", "province": "BC", "postal_code": "V1K1M3" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5831011", "name": "Kengard Alternate School", - "total_students": 24, + "total_students": 1, "address": "2975 Clapperton Avenue", "city": "MERRITT", "province": "BC", "postal_code": "V1K1A3" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5898002", "name": "South Central Interior Distance ED", - "total_students": 603, + "total_students": 803, "address": "2975 Clapperton Avenue", "city": "MERRITT", "province": "BC", "postal_code": "V1K1A3" }, { - "public_or_independent": "BC Public School", - "district_number": "58", + "public_or_independent": "Public School", + "district_number": "058", "district_name": "Nicola-Similkameen", "school_number": "5899192", "name": "Princeton Alternate School", - "total_students": 13, + "total_students": 10, "address": "PO BOX 2410", "city": "PRINCETON", "province": "BC", "postal_code": "V0X1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959001", "name": "Canalta Elementary", - "total_students": 254, + "total_students": 225, "address": "1901 110 AVE", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G2W6" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959003", "name": "Crescent Park Elementary", - "total_students": 256, + "total_students": 250, "address": "9300 17 ST", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G4A6" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959005", "name": "Ecole Frank Ross Elementary", - "total_students": 443, + "total_students": 438, "address": "1000 92 AVE", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G1C1" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959008", "name": "Dawson Creek Secondary", - "total_students": 1051, + "total_students": 997, "address": "10808 15 St", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G3Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959009", "name": "Tremblay Elementary", - "total_students": 183, + "total_students": 196, "address": "11311 13A ST", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G3X8" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959010", "name": "Pouce Coupe Elementary", - "total_students": 117, + "total_students": 121, "address": "PO BOX 7", "city": "POUCE COUPE", "province": "BC", "postal_code": "V0C2C0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959011", "name": "Chetwynd Secondary", - "total_students": 268, + "total_students": 263, "address": "5000-46 STREET", "city": "CHETWYND", "province": "BC", "postal_code": "V0C1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959012", "name": "Windrem Elementary", - "total_students": 47, + "total_students": 31, "address": "PO BOX 210", "city": "CHETWYND", "province": "BC", "postal_code": "V0C1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959013", "name": "Don Titus Montessori", - "total_students": 141, + "total_students": 143, "address": "PO BOX 538", "city": "CHETWYND", "province": "BC", "postal_code": "V0C1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959014", "name": "Devereaux Elementary", - "total_students": 73, + "total_students": 80, "address": "11600 7TH ST", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G4R8" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959018", "name": "Moberly Lake Elementary", @@ -13875,8 +13783,8 @@ "postal_code": "V0C1X0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959024", "name": "Parkland Elementary", @@ -13887,200 +13795,200 @@ "postal_code": "V1G4R8" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959025", "name": "South Peace Elementary", - "total_students": 39, + "total_students": 37, "address": "11600 7TH ST", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G4R8" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959027", "name": "Tumbler Ridge Secondary", - "total_students": 175, + "total_students": 191, "address": "180 SOUTHGATE", "city": "TUMBLER RIDGE", "province": "BC", "postal_code": "V0C2W0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959029", "name": "Tumbler Ridge Elementary", - "total_students": 211, + "total_students": 219, "address": "PO BOX 700", "city": "TUMBLER RIDGE", "province": "BC", "postal_code": "V0C2W0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959031", "name": "Little Prairie Elementary", - "total_students": 181, + "total_students": 185, "address": "PO BOX 1600", "city": "CHETWYND", "province": "BC", "postal_code": "V0C1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959032", "name": "Peace View School", - "total_students": 34, + "total_students": 32, "address": "11600 7TH ST", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G4R8" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5959033", "name": "McLeod Elementary Secondary", - "total_students": 82, + "total_students": 79, "address": "PO BOX 157", "city": "GROUNDBIRCH", "province": "BC", "postal_code": "V0C1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "59", + "public_or_independent": "Public School", + "district_number": "059", "district_name": "Peace River South", "school_number": "5999102", "name": "South Peace Distributed Learning", - "total_students": 56, + "total_students": 70, "address": "10808 15 ST", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G3Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060006", "name": "Charlie Lake Elementary", - "total_students": 324, + "total_students": 319, "address": "12655 Charlie Lake Frontage Rd", "city": "CHARLIE LAKE", "province": "BC", "postal_code": "V0C1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060007", "name": "Ecole Central Elem School Of The Arts", - "total_students": 230, + "total_students": 225, "address": "10215 99 AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J1V5" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060015", "name": "North Peace Secondary", - "total_students": 1155, + "total_students": 1075, "address": "9304 86 ST", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J6L9" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060021", "name": "Taylor Elementary", - "total_students": 98, + "total_students": 102, "address": "PO BOX 210", "city": "TAYLOR", "province": "BC", "postal_code": "V0C2K0" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060025", "name": "Alwin Holland Elementary", - "total_students": 236, + "total_students": 238, "address": "10615 96 ST", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J3R3" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060026", "name": "Robert Ogilvie Elementary", - "total_students": 240, + "total_students": 232, "address": "9907 86 ST", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J4M7" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060030", "name": "Wonowon School", - "total_students": 81, + "total_students": 83, "address": "PO BOX 119", "city": "WONOWON", "province": "BC", "postal_code": "V0C2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060032", "name": "Bert Ambrose", - "total_students": 211, + "total_students": 199, "address": "9616 115 AVE", "city": "FORT ST. JOHN", "province": "BC", "postal_code": "V1J2Y1" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060039", "name": "Prespatou Elem-Secondary", - "total_students": 286, + "total_students": 308, "address": "PO BOX 240", "city": "PRESPATOU", "province": "BC", "postal_code": "V0C2S0" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060040", "name": "Buick Creek Elementary", @@ -14091,860 +13999,860 @@ "postal_code": "V0C2R0" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060045", "name": "Clearview Elem-Jr Secondary", - "total_students": 102, + "total_students": 108, "address": "10716 97 AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J6L7" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060047", "name": "C.M. Finch Elementary", - "total_students": 271, + "total_students": 255, "address": "10904 106 ST", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J4G3" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060051", "name": "Upper Pine Elem-Jr Secondary", - "total_students": 176, + "total_students": 184, "address": "10716 97 AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J6L7" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060056", "name": "Baldonnel Elementary", - "total_students": 106, + "total_students": 103, "address": "PO BOX 196", "city": "BALDONNEL", "province": "BC", "postal_code": "V0C1C0" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060058", "name": "Duncan Cran Elementary", - "total_students": 328, + "total_students": 333, "address": "8130 89 AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J5S5" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060060", "name": "Hudson's Hope School", - "total_students": 145, + "total_students": 144, "address": "PO BOX 390", "city": "HUDSONS HOPE", "province": "BC", "postal_code": "V0C1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060061", "name": "Upper Halfway Elementary Jr Secondary", - "total_students": 30, + "total_students": 35, "address": "10716 97 AVE", "city": "FORT ST. JOHN", "province": "BC", "postal_code": "V1J6L7" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060062", "name": "Bert Bowes Middle School", - "total_students": 488, + "total_students": 502, "address": "9816 106 ST", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J4E6" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060063", "name": "Dr Kearney Middle School", - "total_students": 607, + "total_students": 614, "address": "10723 92 ST", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J3J4" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060064", "name": "Energetic Learning Campus", - "total_students": 194, + "total_students": 203, "address": "9708 93 AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J6J8" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060065", "name": "Margaret Ma Murray Community School", - "total_students": 335, + "total_students": 325, "address": "11504 105TH AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J0R8" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6060066", "name": "Anne Roberts Young Elementary", - "total_students": 344, + "total_students": 345, "address": "10112 105 AVE", "city": "FORT ST. JOHN", "province": "BC", "postal_code": "V1J4S4" }, { - "public_or_independent": "BC Public School", - "district_number": "60", + "public_or_independent": "Public School", + "district_number": "060", "district_name": "Peace River North", "school_number": "6098006", "name": "The Key Learning Centre DL", - "total_students": 438, + "total_students": 260, "address": "10511 99 AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J1V6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161000", "name": "SJ Burnside Continuing Education", - "total_students": 148, - "address": "498 CECELIA RD", + "total_students": 129, + "address": "3130 Jutland Rd", "city": "VICTORIA", "province": "BC", - "postal_code": "V8T4T5" + "postal_code": "V8T2T3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161001", "name": "Gordon Head Middle School", - "total_students": 376, + "total_students": 379, "address": "1671 KENMORE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8N4M8" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161002", "name": "South Park Family School", - "total_students": 173, + "total_students": 176, "address": "508 DOUGLAS ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8V2P7" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161004", "name": "Victoria West Elementary", - "total_students": 343, + "total_students": 342, "address": "750 FRONT ST", "city": "VICTORIA", "province": "BC", "postal_code": "V9A3Y4" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161005", "name": "George Jay Elementary", - "total_students": 433, + "total_students": 416, "address": "1118 PRINCESS AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8T1L3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161006", "name": "Victor School", - "total_students": 15, + "total_students": 10, "address": "2260 VICTOR ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8R4C5" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161007", "name": "Sir James Douglas Elementary", - "total_students": 388, + "total_students": 387, "address": "401 MOSS ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8V4N2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161008", "name": "Sundance-Bank Elementary", - "total_students": 86, + "total_students": 10, "address": "1623 BANK ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8R4V5" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161010", "name": "Craigflower Elementary", - "total_students": 180, + "total_students": 166, "address": "2766 ADMIRALS RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9A2R3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161012", "name": "Margaret Jenkins Elementary", - "total_students": 461, + "total_students": 440, "address": "1824 FAIRFIELD RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8S1G8" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161013", "name": "Oaklands Elementary", - "total_students": 448, + "total_students": 422, "address": "2827 BELMONT AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8R4B2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161016", "name": "Ecole Quadra Elementary", - "total_students": 466, + "total_students": 451, "address": "3031 QUADRA ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8T4G2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161018", "name": "Victoria High", - "total_students": 1040, + "total_students": 1100, "address": "1260 GRANT ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8T1C2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161019", "name": "Cloverdale Traditional Elementary", - "total_students": 345, + "total_students": 341, "address": "3427 QUADRA ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8X1G8" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161020", "name": "Tillicum Community School", - "total_students": 458, + "total_students": 440, "address": "3155 ALBINA ST", "city": "VICTORIA", "province": "BC", "postal_code": "V9A1Z6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161021", "name": "Ecole Willows Elementary", - "total_students": 517, + "total_students": 499, "address": "2290 MUSGRAVE ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8R5Y2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161024", "name": "Oak Bay Secondary", - "total_students": 1308, + "total_students": 1329, "address": "2121 CADBORO BAY RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8R5G4" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161025", "name": "Cedar Hill Middle", - "total_students": 560, + "total_students": 538, "address": "3910 CEDAR HILL RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8P3Z9" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161027", "name": "McKenzie Elementary", - "total_students": 258, + "total_students": 257, "address": "4005 RAYMOND ST N", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z4K9" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161028", "name": "Doncaster Elementary", - "total_students": 433, + "total_students": 422, "address": "1525 ROWAN ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8P1X4" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161029", "name": "View Royal Elementary", - "total_students": 287, + "total_students": 263, "address": "218 HELMCKEN RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9B1S6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161030", "name": "Frank Hobbs Elementary", - "total_students": 253, + "total_students": 226, "address": "3875 HARO RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8N4A6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161032", "name": "Strawberry Vale Elementary", - "total_students": 272, + "total_students": 275, "address": "4109 ROSEDALE AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z5J5" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161033", "name": "James Bay Community", - "total_students": 181, + "total_students": 178, "address": "140 OSWEGO ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8V2B1" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161035", "name": "Central Middle School", - "total_students": 541, + "total_students": 557, "address": "1280 FORT ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8V3L2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161036", "name": "Lansdowne Middle School", - "total_students": 767, + "total_students": 757, "address": "1765 LANSDOWNE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8P1A7" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161038", "name": "Glanford Middle School", - "total_students": 360, + "total_students": 380, "address": "4140 GLANFORD AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z4A8" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161040", "name": "Ecole Macaulay Elementary", - "total_students": 492, + "total_students": 475, "address": "1010 WYCHBURY AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9A5K6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161042", "name": "Lake Hill Elementary", - "total_students": 223, + "total_students": 210, "address": "1031 LUCAS AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8X5L2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161046", "name": "Ecole Marigold School", - "total_students": 301, + "total_students": 300, "address": "3751 GRANGE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z4T2" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161047", "name": "Campus View Elementary", - "total_students": 459, + "total_students": 440, "address": "3900 GORDON HEAD RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8P4X3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161048", "name": "Esquimalt High School", - "total_students": 939, + "total_students": 990, "address": "847 COLVILLE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9A4N9" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161049", "name": "Mount Douglas Secondary", - "total_students": 903, + "total_students": 939, "address": "3970 GORDON HEAD RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8N3X3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161051", "name": "Braefoot Elementary", - "total_students": 239, + "total_students": 231, "address": "1440 HARROP ROAD", "city": "VICTORIA", "province": "BC", "postal_code": "V8P2S6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161052", "name": "Hillcrest Elementary", - "total_students": 282, + "total_students": 258, "address": "4421 GREENTREE TERR", "city": "VICTORIA", "province": "BC", "postal_code": "V8N3S9" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161054", "name": "Northridge Elementary", - "total_students": 264, + "total_students": 254, "address": "4190 CAREY RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z4G8" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161056", "name": "Rockheights Middle School", - "total_students": 313, + "total_students": 316, "address": "1250 HIGHROCK AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9A4V7" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161057", "name": "Reynolds Secondary", - "total_students": 961, + "total_students": 1002, "address": "3963 BORDEN ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8P3H9" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161058", "name": "Shoreline Community Middle School", - "total_students": 401, + "total_students": 409, "address": "2750 SHORELINE DR", "city": "VICTORIA", "province": "BC", "postal_code": "V9B1M6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161062", "name": "Arbutus Global Middle School", - "total_students": 443, + "total_students": 467, "address": "2306 EDGELOW ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8N1R5" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161063", "name": "Spectrum Community", - "total_students": 1182, + "total_students": 1093, "address": "957 BURNSIDE RD W", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z6E9" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161064", "name": "Lambrick Park Secondary", - "total_students": 613, + "total_students": 612, "address": "4139 TORQUAY DR", "city": "VICTORIA", "province": "BC", "postal_code": "V8N3L1" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161065", "name": "Torquay Elementary", - "total_students": 314, + "total_students": 296, "address": "4413 TORQUAY DR", "city": "VICTORIA", "province": "BC", "postal_code": "V8N3L3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161066", "name": "Rogers Elementary", - "total_students": 259, + "total_students": 224, "address": "765 ROGERS AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8X5K6" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161067", "name": "Eagle View Elementary", - "total_students": 287, + "total_students": 293, "address": "97 TALCOTT RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9B6L9" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161068", "name": "Colquitz Middle School", - "total_students": 522, + "total_students": 533, "address": "505 DUMERESQ ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z1X3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6161069", "name": "Monterey Middle School", - "total_students": 409, + "total_students": 404, "address": "851 MONTEREY AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8S4V1" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6199033", "name": "SJ Burnside Education Centre", - "total_students": 174, - "address": "498 CECELIA RD", + "total_students": 172, + "address": "3130 Jutland Rd", "city": "VICTORIA", "province": "BC", - "postal_code": "V8T4T5" + "postal_code": "V8T2T3" }, { - "public_or_independent": "BC Public School", - "district_number": "61", + "public_or_independent": "Public School", + "district_number": "061", "district_name": "Greater Victoria", "school_number": "6199146", "name": "The Link", - "total_students": 31, - "address": "498 CECELIA RD", + "total_students": 37, + "address": "3130 Jutland Rd", "city": "VICTORIA", "province": "BC", - "postal_code": "V8T4T5" + "postal_code": "V8T2T3" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262000", "name": "SD62 Continuing Education", - "total_students": 114, - "address": "3143 Jacklin Rd", + "total_students": 128, + "address": "120-798 Goldstream Ave", "city": "VICTORIA", "province": "BC", - "postal_code": "V9B5R1" + "postal_code": "V9B2X6" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262002", "name": "Happy Valley Elementary", - "total_students": 439, + "total_students": 361, "address": "3291 HAPPY VALLEY RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9C2W3" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262004", "name": "Sooke Elementary", - "total_students": 320, + "total_students": 304, "address": "PO BOX 70", "city": "SOOKE", "province": "BC", "postal_code": "V9Z0E4" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262005", "name": "Port Renfrew Elementary", - "total_students": 10, + "total_students": 13, "address": "6633 DEERING RD", "city": "PORT RENFREW", "province": "BC", "postal_code": "V0S1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262007", "name": "Ruth King Elementary", - "total_students": 452, + "total_students": 458, "address": "2764 JACKLIN RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9B3X6" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262010", "name": "Sangster Elementary", - "total_students": 306, + "total_students": 336, "address": "3325 METCHOSIN RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9C2A4" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262011", "name": "Millstream Elementary", - "total_students": 335, + "total_students": 334, "address": "626 HOYLAKE AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9B3P7" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262012", "name": "Saseenos Elementary", - "total_students": 189, + "total_students": 173, "address": "PO BOX 820 STN MAIN", "city": "SOOKE", "province": "BC", "postal_code": "V9Z1H8" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262013", "name": "Belmont Secondary", - "total_students": 1686, + "total_students": 1747, "address": "3041 LANGFORD LAKE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9B0L9" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262015", "name": "Savory Elementary", @@ -14955,560 +14863,572 @@ "postal_code": "V9B3K7" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262016", "name": "Dunsmuir Middle School", - "total_students": 723, + "total_students": 811, "address": "3341 PAINTER RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9C2J1" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262018", "name": "Hans Helgesen Elementary", - "total_students": 202, + "total_students": 196, "address": "4983 ROCKY POINT RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9C4G4" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262020", "name": "John Muir Elementary", - "total_students": 222, + "total_students": 224, "address": "PO BOX 790", "city": "SOOKE", "province": "BC", "postal_code": "V9Z1H7" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262021", "name": "David Cameron Elementary", - "total_students": 427, + "total_students": 442, "address": "675 MEAFORD AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9B5Y1" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262022", "name": "Wishart Elementary", - "total_students": 468, + "total_students": 324, "address": "3310 WISHART RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9C1R1" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262023", "name": "John Stubbs Middle", - "total_students": 337, + "total_students": 366, "address": "301 ZEALOUS CRES", "city": "VICTORIA", "province": "BC", "postal_code": "V9C1H6" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262025", "name": "Spencer Middle School", - "total_students": 629, + "total_students": 676, "address": "1026 GOLDSTREAM AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9B2Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262026", "name": "Willway Elementary", - "total_students": 221, + "total_students": 226, "address": "2939 MT. WELLS DR", "city": "VICTORIA", "province": "BC", "postal_code": "V9B4T4" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262031", "name": "Journey Middle School", - "total_students": 577, + "total_students": 564, "address": "PO BOX 100", "city": "SOOKE", "province": "BC", "postal_code": "V9Z0E5" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262032", "name": "Lakewood Elementary", - "total_students": 458, + "total_students": 451, "address": "2363 SETCHFIELD AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9B5W1" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262033", "name": "Edward Milne Community School", - "total_students": 744, + "total_students": 762, "address": "PO BOX 1010", "city": "SOOKE", "province": "BC", "postal_code": "V9Z1J1" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262034", "name": "Ecole Poirier Elementary", - "total_students": 399, + "total_students": 393, "address": "PO BOX 940", "city": "SOOKE", "province": "BC", "postal_code": "V9Z1H9" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262035", "name": "Colwood Elementary", - "total_students": 196, + "total_students": 177, "address": "3000 WISHART RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9C1P4" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262036", "name": "Crystal View Elementary", - "total_students": 261, + "total_students": 235, "address": "2662 SILVERSTONE WAY", "city": "VICTORIA", "province": "BC", "postal_code": "V9B6A6" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262037", "name": "John Stubbs Elementary", - "total_students": 471, + "total_students": 478, "address": "301 ZEALOUS CRES", "city": "VICTORIA", "province": "BC", "postal_code": "V9C1H6" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262038", "name": "Royal Bay Secondary", - "total_students": 1716, + "total_students": 1749, "address": "3500 RYDER HESJEDAL WAY", "city": "VICTORIA", "province": "BC", "postal_code": "V9C0J6" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262039", - "name": "PEXSISEN Elementary School", - "total_students": 476, + "name": "PEXSISE¿ Elementary", + "total_students": 480, "address": "3100 CONSTELLATION AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9B0V2" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262040", "name": "Centre Mountain Lellum Middle School", - "total_students": 711, + "total_students": 697, "address": "3090 CONSTELLATION AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V9B0V2" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6262041", "name": "Qelensen A Len Secondary School", - "total_students": 10, + "total_students": 96, "address": "1089 LANGFORD PARKWAY", "city": "LANGFORD", "province": "BC", "postal_code": "V9B0A5" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", + "district_name": "Sooke", + "school_number": "6262042", + "name": "SCI¿NEW_ S¿E¿I¿¿E¿ Elementary School", + "total_students": 313, + "address": "802 Latoria Rd", + "city": "Langford", + "province": "BC", + "postal_code": "V9C3A7" + }, + { + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6299043", "name": "Westshore Secondary School", - "total_students": 234, + "total_students": 212, "address": "2139 SOOKE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9B1W4" }, { - "public_or_independent": "BC Public School", - "district_number": "62", + "public_or_independent": "Public School", + "district_number": "062", "district_name": "Sooke", "school_number": "6299164", "name": "SD62 Online School", - "total_students": 38, - "address": "3143 Jacklin Rd", + "total_students": 31, + "address": "798 Goldstream Ave", "city": "VICTORIA", "province": "BC", - "postal_code": "V9B5R1" + "postal_code": "V9B2X6" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363000", "name": "Continuing Ed SD 63", - "total_students": 23, + "total_students": 41, "address": "104A-4420 CHATTERTON WAY", "city": "VICTORIA", "province": "BC", "postal_code": "V8X5J2" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363002", "name": "Brentwood Elementary", - "total_students": 335, + "total_students": 322, "address": "7085 WALLACE DRIVE", "city": "BRENTWOOD BAY", "province": "BC", "postal_code": "V8M1P9" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363003", "name": "Cordova Bay Elementary", - "total_students": 311, + "total_students": 322, "address": "5238 CORDOVA BAY RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Y2L2" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363004", "name": "Deep Cove Elementary", - "total_students": 352, + "total_students": 357, "address": "10975 WEST SAANICH RD", "city": "NORTH SAANICH", "province": "BC", "postal_code": "V8L5P6" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363007", "name": "Keating Elementary", - "total_students": 471, + "total_students": 450, "address": "6843 CENTRAL SAANICH RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z5V4" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363008", "name": "Lochside Elementary", - "total_students": 439, + "total_students": 420, "address": "1145 ROYAL OAK DR", "city": "VICTORIA", "province": "BC", "postal_code": "V8X3T7" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363010", "name": "Prospect Lake Elementary", - "total_students": 242, + "total_students": 205, "address": "321 PROSPECT LAKE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9E1J7" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363011", - "name": "Kelset Elementary", - "total_students": 367, + "name": "¿ELSET Elementary", + "total_students": 364, "address": "1800 FOREST PARK DR", "city": "NORTH SAANICH", "province": "BC", "postal_code": "V8L4B8" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363014", "name": "Sidney Elementary", - "total_students": 397, + "total_students": 377, "address": "2281 HENRY AVE", "city": "SIDNEY", "province": "BC", "postal_code": "V8L2A8" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363020", "name": "Stelly's Secondary", - "total_students": 827, + "total_students": 839, "address": "1627 STELLYS CROSS RD", "city": "SAANICHTON", "province": "BC", "postal_code": "V8M1S8" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363021", "name": "Claremont Secondary", - "total_students": 1096, + "total_students": 1108, "address": "4980 WESLEY RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Y1Y9" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363022", "name": "Parkland Secondary", - "total_students": 532, + "total_students": 540, "address": "10640 MCDONALD PARK RD", "city": "NORTH SAANICH", "province": "BC", "postal_code": "V8L5S7" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363026", "name": "North Saanich Middle School", - "total_students": 384, + "total_students": 404, "address": "10400 MCDONALD PARK RD", "city": "NORTH SAANICH", "province": "BC", "postal_code": "V8L0A3" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363027", "name": "Royal Oak Middle School", - "total_students": 624, + "total_students": 633, "address": "751 TRAVINO LANE", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z0C6" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6363028", "name": "Bayside Middle School", - "total_students": 593, + "total_students": 587, "address": "1101 NEWTON PL", "city": "BRENTWOOD BAY", "province": "BC", "postal_code": "V8M1G2" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6398007", "name": "South Island Distance Education School", - "total_students": 2270, + "total_students": 3306, "address": "4575 WILKINSON RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z7E8" }, { - "public_or_independent": "BC Public School", - "district_number": "63", + "public_or_independent": "Public School", + "district_number": "063", "district_name": "Saanich", "school_number": "6399075", "name": "SD 63 Individual Learning Centre", - "total_students": 193, + "total_students": 191, "address": "1649 MOUNT NEWTON CROSS RD", "city": "SAANICHTON", "province": "BC", "postal_code": "V8M1L1" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464002", "name": "Salt Spring Elementary", - "total_students": 248, + "total_students": 230, "address": "112 RAINBOW RD", "city": "SALT SPRING ISLAND", "province": "BC", "postal_code": "V8K2K3" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464003", "name": "Mayne Island School", - "total_students": 42, + "total_students": 49, "address": "535 FERNHILL ROAD", "city": "MAYNE ISLAND", "province": "BC", "postal_code": "V0N2J2" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464004", "name": "Saturna Island Elementary Secondary", - "total_students": 23, + "total_students": 19, "address": "PO BOX 70", "city": "SATURNA", "province": "BC", "postal_code": "V0N2Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464005", "name": "Galiano Community School", - "total_students": 55, + "total_students": 53, "address": "1290 Sturdies Bay rd", "city": "Galiano Island", "province": "BC", "postal_code": "V0N1P0" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464007", "name": "Fernwood Elementary", - "total_students": 215, + "total_students": 210, "address": "112 RAINBOW RD", "city": "SALT SPRING ISLAND", "province": "BC", "postal_code": "V8K2K3" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464008", "name": "Pender Islands Elem-Secondary", - "total_students": 110, + "total_students": 104, "address": "5714 Canal Road", "city": "Pender Island", "province": "BC", "postal_code": "V0N2M1" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464009", "name": "Fulford Community Elementary", - "total_students": 128, + "total_students": 130, "address": "112 RAINBOW RD", "city": "SALT SPRING ISLAND", "province": "BC", "postal_code": "V8K1Y9" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6464010", "name": "Gulf Islands Secondary", - "total_students": 631, + "total_students": 577, "address": "112 RAINBOW RD", "city": "SALT SPRING ISLAND", "province": "BC", "postal_code": "V8K2K3" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6499172", "name": "64GO", @@ -15519,524 +15439,452 @@ "postal_code": "V8K2K3" }, { - "public_or_independent": "BC Public School", - "district_number": "64", + "public_or_independent": "Public School", + "district_number": "064", "district_name": "Gulf Islands", "school_number": "6499315", "name": "Phoenix Place", - "total_students": 13, + "total_students": 21, "address": "232 RAINBOW RD", "city": "SALT SPRING ISLAND", "province": "BC", "postal_code": "V8K2A9" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715002", "name": "Penticton Secondary", - "total_students": 1416, + "total_students": 1438, "address": "158 ECKHARDT AVE E", "city": "PENTICTON", "province": "BC", "postal_code": "V2A1Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715003", "name": "Naramata Elementary", - "total_students": 72, + "total_students": 78, "address": "GENERAL DELIVERY", "city": "NARAMATA", "province": "BC", "postal_code": "V0H1N0" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715004", "name": "Kaleden Elementary", - "total_students": 55, + "total_students": 64, "address": "152 LINDEN AVENUE", "city": "KALEDEN", "province": "BC", "postal_code": "V0H1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "67", - "district_name": "Okanagan Skaha", - "school_number": "6715005", - "name": "Carmi Elementary", - "total_students": 163, - "address": "400 CARMI AVE", - "city": "PENTICTON", - "province": "BC", - "postal_code": "V2A3G5" - }, - { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715006", "name": "Queens Park Elementary", - "total_students": 266, + "total_students": 269, "address": "330 POWER ST", "city": "PENTICTON", "province": "BC", "postal_code": "V2A5X2" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715007", "name": "West Bench Elementary", - "total_students": 107, + "total_students": 123, "address": "1604 WEST BENCH DR", "city": "PENTICTON", "province": "BC", "postal_code": "V2A8Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715008", "name": "Princess Margaret Secondary", - "total_students": 658, + "total_students": 646, "address": "120 GREEN AVE W", "city": "PENTICTON", "province": "BC", "postal_code": "V2A3T1" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715011", "name": "Uplands Elementary", - "total_students": 256, + "total_students": 271, "address": "145 MIDDLE BENCH RD S", "city": "PENTICTON", "province": "BC", "postal_code": "V2A8S7" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715014", "name": "Columbia Elementary", - "total_students": 293, + "total_students": 303, "address": "1437 ALLISON ST", "city": "PENTICTON", "province": "BC", "postal_code": "V2A3X5" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715016", - "name": "Connected - Distributed Learning", - "total_students": 35, - "address": "324 ECKHARDT AVE E", - "city": "PENTICTON", - "province": "BC", - "postal_code": "V2A1Z2" - }, - { - "public_or_independent": "BC Public School", - "district_number": "67", - "district_name": "Okanagan Skaha", - "school_number": "6715017", - "name": "Parkway Elementary", - "total_students": 239, - "address": "225 KINNEY AVE", - "city": "PENTICTON", + "name": "ConnectEd - Online Learning", + "total_students": 44, + "address": "255 Kinney Avenue", + "city": "Penticton", "province": "BC", "postal_code": "V2A3P2" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6715018", "name": "Wiltse Elementary", - "total_students": 347, + "total_students": 305, "address": "640 WILTSE BLVD", "city": "PENTICTON", "province": "BC", "postal_code": "V2A8J2" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", - "school_number": "6767019", - "name": "KVR Middle School", - "total_students": 376, + "school_number": "6767023", + "name": "KVR Elementary", + "total_students": 565, "address": "300 JERMYN AVE", "city": "PENTICTON", "province": "BC", "postal_code": "V2A2E1" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", - "school_number": "6767020", - "name": "Skaha Lake Middle School", - "total_students": 266, + "school_number": "6767024", + "name": "Skaha Lake Elementary", + "total_students": 449, "address": "110 GREEN AVE W", "city": "PENTICTON", "province": "BC", "postal_code": "V2A3T1" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", - "school_number": "6767021", - "name": "Summerland Middle School", - "total_students": 188, + "school_number": "6767025", + "name": "Summerland Elementary", + "total_students": 473, "address": "DRAWER 3000", "city": "SUMMERLAND", "province": "BC", "postal_code": "V0H1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6777002", "name": "Summerland Secondary", - "total_students": 524, + "total_students": 607, "address": "PO BOX 2501", "city": "SUMMERLAND", "province": "BC", "postal_code": "V0H1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6777003", "name": "Trout Creek Elementary", - "total_students": 200, + "total_students": 219, "address": "BOX 3000", "city": "SUMMERLAND", "province": "BC", "postal_code": "V0H1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "67", - "district_name": "Okanagan Skaha", - "school_number": "6777004", - "name": "Giant's Head Elementary", - "total_students": 381, - "address": "PO BOX 3000", - "city": "SUMMERLAND", - "province": "BC", - "postal_code": "V0H1Z0" - }, - { - "public_or_independent": "BC Public School", - "district_number": "67", - "district_name": "Okanagan Skaha", - "school_number": "6799182", - "name": "Connected - Junior Alternate", - "total_students": 10, - "address": "274 ECKHARDT AVE E", - "city": "PENTICTON", - "province": "BC", - "postal_code": "V2A1Z2" - }, - { - "public_or_independent": "BC Public School", - "district_number": "67", + "public_or_independent": "Public School", + "district_number": "067", "district_name": "Okanagan Skaha", "school_number": "6799183", - "name": "Connected - Senior Alternate", - "total_students": 11, - "address": "274 ECKHARDT AVE E", - "city": "PENTICTON", - "province": "BC", - "postal_code": "V2A1Z2" - }, - { - "public_or_independent": "BC Public School", - "district_number": "67", - "district_name": "Okanagan Skaha", - "school_number": "6799204", - "name": "Princess Margaret AIM", - "total_students": 28, - "address": "120 GREEN AVE W", - "city": "PENTICTON", - "province": "BC", - "postal_code": "V2A3T1" - }, - { - "public_or_independent": "BC Public School", - "district_number": "67", - "district_name": "Okanagan Skaha", - "school_number": "6799205", - "name": "Penticton Secondary Stride", - "total_students": 24, - "address": "158 ECKHARDT AVE E", - "city": "PENTICTON", + "name": "ConnectEd - Alternative Programs", + "total_students": 44, + "address": "255 Kinney Avenue", + "city": "Penticton", "province": "BC", - "postal_code": "V2A1Z3" + "postal_code": "V2A3P2" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868000", "name": "Continuing Ed SD 68", - "total_students": 10, + "total_students": 21, "address": "1270 Strathmore St", "city": "NANAIMO", "province": "BC", "postal_code": "V9S2L9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868001", "name": "Nanaimo District Secondary", - "total_students": 1594, + "total_students": 1593, "address": "355 WAKESIAH AVE", "city": "NANAIMO", "province": "BC", "postal_code": "V9R3K5" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868002", "name": "Ladysmith Secondary", - "total_students": 678, + "total_students": 686, "address": "PO BOX 190", "city": "LADYSMITH", "province": "BC", "postal_code": "V9G1A2" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868007", "name": "Cedar Secondary", - "total_students": 363, + "total_students": 382, "address": "1640 MACMILLAN RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9X1L9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868009", "name": "Cedar Elementary", - "total_students": 335, + "total_students": 308, "address": "2215 GOULD RD W", "city": "NANAIMO", "province": "BC", "postal_code": "V9X1J9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868010", "name": "Dover Bay Secondary", - "total_students": 1603, + "total_students": 1665, "address": "6135 MCGIRR RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9V1M1" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868011", "name": "John Barsby Secondary", - "total_students": 815, + "total_students": 860, "address": "550 SEVENTH ST", "city": "NANAIMO", "province": "BC", "postal_code": "V9R3Z2" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868015", "name": "Wellington Secondary", - "total_students": 1101, + "total_students": 1095, "address": "3135 MEXICANA RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9T2W8" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868018", "name": "Bayview Elementary", - "total_students": 219, + "total_students": 216, "address": "140 VIEW ST", "city": "NANAIMO", "province": "BC", "postal_code": "V9R4N6" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868019", "name": "Brechin Elementary", - "total_students": 180, + "total_students": 177, "address": "510 MILLSTONE AVE", "city": "NANAIMO", "province": "BC", "postal_code": "V9S5A9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868022", "name": "Chase River Elementary", - "total_students": 244, + "total_students": 230, "address": "1503 CRANBERRY AVE", "city": "NANAIMO", "province": "BC", "postal_code": "V9R6R7" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868024", "name": "Cilaire Elementary", - "total_students": 179, + "total_students": 176, "address": "25 CILAIRE DR", "city": "NANAIMO", "province": "BC", "postal_code": "V9S3C9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868028", "name": "Departure Bay Elementary", - "total_students": 408, + "total_students": 351, "address": "3004 DEPARTURE BAY RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9T1B4" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868036", "name": "Fairview Elementary", - "total_students": 400, + "total_students": 414, "address": "205 HOWARD AVE", "city": "NANAIMO", "province": "BC", "postal_code": "V9R3R3" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868037", "name": "Forest Park Elementary", - "total_students": 387, + "total_students": 374, "address": "2050 LATIMER RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9S2W5" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868038", "name": "Frank J. Ney Elementary", - "total_students": 419, + "total_students": 324, "address": "5301 WILLIAMSON RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9V1L1" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868040", "name": "Gabriola Elementary", - "total_students": 158, + "total_students": 142, "address": "PO BOX 130", "city": "GABRIOLA ISLAND", "province": "BC", "postal_code": "V0R1X0" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868041", "name": "Georgia Avenue Elementary", - "total_students": 361, + "total_students": 368, "address": "625 GEORGIA AVE", "city": "NANAIMO", "province": "BC", "postal_code": "V9R3W3" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868044", "name": "Hammond Bay Elementary", - "total_students": 388, + "total_students": 405, "address": "1025 MORNINGSIDE DR", "city": "NANAIMO", "province": "BC", "postal_code": "V9T1N5" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868048", "name": "Ladysmith Intermediate", - "total_students": 334, + "total_students": 337, "address": "PO BOX 849", "city": "LADYSMITH", "province": "BC", "postal_code": "V9G1A6" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868049", "name": "Ladysmith Primary", @@ -16047,212 +15895,236 @@ "postal_code": "V9G1A6" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868052", "name": "Mountain View Elementary", - "total_students": 418, + "total_students": 400, "address": "2480 WELLINGTON RD E", "city": "NANAIMO", "province": "BC", "postal_code": "V9R5K3" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868053", + "name": "Mount Benson Elementary", + "total_students": 34, + "address": "4355 JINGLE POT RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T5P4" + }, + { + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868055", "name": "McGirr Elementary", - "total_students": 479, + "total_students": 464, "address": "6199 MCGIRR RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9V1C7" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868058", "name": "North Oyster Elementary", - "total_students": 321, + "total_students": 292, "address": "13470 CEDAR RD", "city": "LADYSMITH", "province": "BC", "postal_code": "V9G1H6" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868061", "name": "Park Avenue Elementary", - "total_students": 263, + "total_students": 265, "address": "395 EIGHTH ST", "city": "NANAIMO", "province": "BC", "postal_code": "V9R1A9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868065", "name": "Pauline Haarer Elementary", - "total_students": 217, + "total_students": 215, "address": "400 CAMPBELL ST", "city": "NANAIMO", "province": "BC", "postal_code": "V9R3G7" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868066", "name": "Pleasant Valley Elementary", - "total_students": 414, + "total_students": 424, "address": "6201 DUNBAR RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9T2P2" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868070", "name": "Qwam Qwum Stuwixwulh Community School", - "total_students": 129, + "total_students": 131, "address": "1390 STUYWUT ST", "city": "NANAIMO", "province": "BC", "postal_code": "V9X1M4" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868071", "name": "Quarterway Elementary", - "total_students": 387, + "total_students": 391, "address": "1632 BOWEN RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9S1G6" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868073", "name": "Randerson Ridge Elementary", - "total_students": 477, + "total_students": 402, "address": "6021 NELSON RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9T5N7" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868076", "name": "Rock City Elementary", - "total_students": 326, + "total_students": 297, "address": "3741 DEPARTURE BAY RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9T1C5" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", + "district_name": "Nanaimo-Ladysmith", + "school_number": "6868077", + "name": "Rutherford Elementary", + "total_students": 271, + "address": "5840 HAMMOND BAY RD", + "city": "NANAIMO", + "province": "BC", + "postal_code": "V9T5N3" + }, + { + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868080", "name": "Seaview Elementary", - "total_students": 271, + "total_students": 245, "address": "PO BOX 340", "city": "LANTZVILLE", "province": "BC", "postal_code": "V0R2H0" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868086", "name": "Uplands Park Elementary", - "total_students": 327, + "total_students": 317, "address": "3821 STRONACH DR", "city": "NANAIMO", "province": "BC", "postal_code": "V9T3X4" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868323", "name": "Cinnabar Valley Elementary", - "total_students": 259, + "total_students": 239, "address": "100 OHIO WAY", "city": "NANAIMO", "province": "BC", "postal_code": "V9X1C8" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6868325", - "name": "Syuwen'ct Elementary School", - "total_students": 338, + "name": "Syu¿én'ct Elementary School", + "total_students": 326, "address": "2280 SUN VALLEY DR", "city": "NANAIMO", "province": "BC", "postal_code": "V9T6P1" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6899022", "name": "Learning Alternatives", - "total_students": 10, + "total_students": 272, "address": "1270 Strathmore St", "city": "NANAIMO", "province": "BC", "postal_code": "V9S2L9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6899114", "name": "Career Technical Centre", - "total_students": 82, + "total_students": 91, "address": "c/o Woodlands Secondary Room 109", "city": "NANAIMO", "province": "BC", "postal_code": "V9S2L9" }, { - "public_or_independent": "BC Public School", - "district_number": "68", + "public_or_independent": "Public School", + "district_number": "068", "district_name": "Nanaimo-Ladysmith", "school_number": "6899308", - "name": "Island ConnectEd K-12", - "total_students": 490, + "name": "Island Connected K-12", + "total_students": 487, "address": "4355 JINGLE POT RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9T5P4" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969000", "name": "Continuing Ed SD 69", @@ -16263,188 +16135,188 @@ "postal_code": "V9P1E8" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969006", "name": "Qualicum Beach Elementary", - "total_students": 404, + "total_students": 385, "address": "699 Claymore Road", "city": "QUALICUM BEACH", "province": "BC", "postal_code": "V9K2T6" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969012", "name": "Ecole Secondaire Ballenas Secondary", - "total_students": 1006, + "total_students": 1021, "address": "135 Pym Street", "city": "Parksville", "province": "BC", "postal_code": "V9P1G4" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969014", "name": "Kwalikum Secondary", - "total_students": 807, + "total_students": 803, "address": "266 VILLAGE WAY", "city": "QUALICUM BEACH", "province": "BC", "postal_code": "V9K1L1" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969015", "name": "Bowser Elementary", - "total_students": 180, + "total_students": 195, "address": "PO BOX 112", "city": "BOWSER", "province": "BC", "postal_code": "V0R1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969016", "name": "False Bay School", - "total_students": 22, + "total_students": 30, "address": "GENERAL DELIVERY", "city": "LASQUETI ISLAND", "province": "BC", "postal_code": "V0R2J0" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969018", "name": "Nanoose Bay Elementary", - "total_students": 324, + "total_students": 314, "address": "2875 Northwest Bay Road", "city": "NANOOSE BAY", "province": "BC", "postal_code": "V9P9J9" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969020", "name": "Arrowview Elementary", - "total_students": 285, + "total_students": 271, "address": "650 BENNETT RD", "city": "QUALICUM BEACH", "province": "BC", "postal_code": "V9K1N1" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969021", "name": "Errington Elementary", - "total_students": 249, + "total_students": 248, "address": "PO BOX 80", "city": "ERRINGTON", "province": "BC", "postal_code": "V0R1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969023", "name": "Oceanside Elementary", - "total_students": 493, + "total_students": 465, "address": "980 Wright Road", "city": "PARKSVILLE", "province": "BC", "postal_code": "V9P2B3" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6969025", "name": "Springwood Elementary", - "total_students": 513, - "address": "1037 CARDINAL WAY", + "total_students": 521, + "address": "450 Despard Avenue", "city": "PARKSVILLE", "province": "BC", "postal_code": "V9P1J9" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6999094", "name": "Collaborative Education Alternative Prg.", - "total_students": 106, + "total_students": 88, "address": "140 Renz Rd", "city": "Parksville", "province": "BC", "postal_code": "V9P1E8" }, { - "public_or_independent": "BC Public School", - "district_number": "69", + "public_or_independent": "Public School", + "district_number": "069", "district_name": "Qualicum", "school_number": "6999123", - "name": "PASS/Woodwinds Alternate", + "name": "Pass/Woodwinds Alternate", "total_students": 10, - "address": "PO BOX 1798", + "address": "140 Renz Road", "city": "PARKSVILLE", "province": "BC", - "postal_code": "V9P2H6" + "postal_code": "V9P1E8" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070000", "name": "SD 70 Continuing Ed", - "total_students": 22, + "total_students": 213, "address": "2941 8TH AVE", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y2K5" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070001", "name": "Alberni District Secondary", - "total_students": 1277, + "total_students": 1290, "address": "4000 ROGER ST", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y0B1" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070005", "name": "Ucluelet Secondary", - "total_students": 252, + "total_students": 261, "address": "PO BOX 40", "city": "UCLUELET", "province": "BC", "postal_code": "V0R3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070006", "name": "Alberni Elementary", @@ -16455,404 +16327,404 @@ "postal_code": "V9Y6P6" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070018", "name": "John Howitt Elementary", - "total_students": 190, + "total_students": 184, "address": "3867 MARPOLE ST", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y6Y3" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070020", "name": "Maquinna Elementary", - "total_students": 300, + "total_students": 282, "address": "3881 BRUCE ST", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y1J6" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070024", "name": "Wickaninnish Community School", - "total_students": 238, + "total_students": 231, "address": "PO BOX 220", "city": "TOFINO", "province": "BC", "postal_code": "V0R2Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070025", "name": "Wood Elementary", - "total_students": 234, + "total_students": 228, "address": "4111 WOOD AVE", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y5E8" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070026", "name": "Ucluelet Elementary", - "total_students": 237, + "total_students": 239, "address": "PO BOX 669", "city": "UCLUELET", "province": "BC", "postal_code": "V0R3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070027", "name": "Bamfield Community School", - "total_students": 47, + "total_students": 35, "address": "GENERAL DELIVERY", "city": "BAMFIELD", "province": "BC", "postal_code": "V0R1B0" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070028", "name": "Tsuma-as Elementary", - "total_students": 336, + "total_students": 329, "address": "5055 COMPTON RD", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y7B5" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7070029", "name": "Eric J Dunn Elementary", - "total_students": 254, + "total_students": 273, "address": "3500 ARGYLE ST", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y3A8" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7099041", "name": "Eighth Avenue Learning Centre", - "total_students": 141, + "total_students": 146, "address": "2941 8TH AVE", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y2K5" }, { - "public_or_independent": "BC Public School", - "district_number": "70", + "public_or_independent": "Public School", + "district_number": "070", "district_name": "Pacific Rim", "school_number": "7099171", "name": "Choices DL", - "total_students": 37, + "total_students": 35, "address": "2941 8TH AVE", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y2K5" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171000", "name": "Sandwick Continuing Education", - "total_students": 18, + "total_students": 14, "address": "2947 Rennison Road", "city": "COURTENAY", "province": "BC", "postal_code": "V9J1M1" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171040", "name": "Georges P. Vanier Secondary", - "total_students": 1329, + "total_students": 1441, "address": "4830 HEADQUARTERS RD", "city": "COURTENAY", "province": "BC", "postal_code": "V9J1P2" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171041", "name": "Highland Secondary", - "total_students": 733, + "total_students": 739, "address": "750 PRITCHARD RD", "city": "COMOX", "province": "BC", "postal_code": "V9M3S8" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171043", "name": "Glacier View Secondary Centre", - "total_students": 159, + "total_students": 181, "address": "241 BEECHER PL", "city": "COURTENAY", "province": "BC", "postal_code": "V9N3Y4" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171050", "name": "Ecole Robb Road", - "total_students": 471, + "total_students": 490, "address": "1909 ROBB AVE", "city": "COMOX", "province": "BC", "postal_code": "V9M2C9" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171052", "name": "Lake Trail Community", - "total_students": 396, + "total_students": 382, "address": "805 WILLEMAR AVE", "city": "COURTENAY", "province": "BC", "postal_code": "V9N3L7" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171053", "name": "Cumberland Community School", - "total_students": 707, + "total_students": 683, "address": "PO BOX 430", "city": "CUMBERLAND", "province": "BC", "postal_code": "V0R1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171054", "name": "Ecole Secondaire Mark R Isfeld Secondary", - "total_students": 1032, + "total_students": 924, "address": "1551 LERWICK RD", "city": "COURTENAY", "province": "BC", "postal_code": "V9N9B5" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171060", "name": "Arden Elementary", - "total_students": 222, + "total_students": 216, "address": "3040 LAKE TRAIL RD", "city": "COURTENAY", "province": "BC", "postal_code": "V9N9M1" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171063", "name": "Brooklyn Elementary", - "total_students": 379, + "total_students": 388, "address": "1290 GUTHRIE RD", "city": "COMOX", "province": "BC", "postal_code": "V9M4G2" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171065", "name": "Courtenay Elementary", - "total_students": 221, + "total_students": 232, "address": "1540 MCPHEE AVE", "city": "COURTENAY", "province": "BC", "postal_code": "V9N3A5" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171067", "name": "Denman Island Community School", - "total_students": 56, + "total_students": 46, "address": "1100 NORTHWEST RD", "city": "DENMAN ISLAND", "province": "BC", "postal_code": "V0R1T0" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171070", "name": "Hornby Island Elementary", - "total_students": 65, + "total_students": 59, "address": "2100 SOLLANS RD", "city": "HORNBY ISLAND", "province": "BC", "postal_code": "V0R1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171071", "name": "Ecole Puntledge Park Elementary", - "total_students": 509, + "total_students": 500, "address": "401 WILLEMAR AVE", "city": "COURTENAY", "province": "BC", "postal_code": "V9N3L3" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171072", "name": "Royston Elementary", - "total_students": 260, + "total_students": 227, "address": "3830 WARREN AVE", "city": "ROYSTON", "province": "BC", "postal_code": "V0R2V0" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171077", "name": "Airport Elementary", - "total_students": 199, + "total_students": 218, "address": "PO BOX 40", "city": "LAZO", "province": "BC", "postal_code": "V0R2K0" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171079", "name": "Miracle Beach Elementary", - "total_students": 256, + "total_students": 249, "address": "8763 PAULSEN RD", "city": "BLACK CREEK", "province": "BC", "postal_code": "V9J1J8" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171080", "name": "Valley View Elementary", - "total_students": 361, + "total_students": 364, "address": "2300 VALLEY VIEW DR", "city": "COURTENAY", "province": "BC", "postal_code": "V9N9A3" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171081", "name": "Huband Park Elementary", - "total_students": 393, + "total_students": 395, "address": "5120 MOTTISHAW RD", "city": "COURTENAY", "province": "BC", "postal_code": "V9J1L5" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171082", "name": "Navigate Academy", - "total_students": 133, + "total_students": 119, "address": "2505 SMITH RD", "city": "COURTENAY", "province": "BC", "postal_code": "V9J1T6" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171155", "name": "Aspen Park Elementary", - "total_students": 394, + "total_students": 360, "address": "2250 BOLT AVE", "city": "COMOX", "province": "BC", "postal_code": "V9M4E7" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7171156", "name": "Queneesh Elementary", - "total_students": 433, + "total_students": 428, "address": "2345 MISSION RD", "city": "COURTENAY", "province": "BC", "postal_code": "V9N9H1" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7198008", "name": "North Island Distance Education", - "total_students": 3258, + "total_students": 4570, "address": "2505 SMITH RD", "city": "COURTENAY", "province": "BC", "postal_code": "V9J1T6" }, { - "public_or_independent": "BC Public School", - "district_number": "71", + "public_or_independent": "Public School", + "district_number": "071", "district_name": "Comox Valley", "school_number": "7199299", "name": "Nala'atsi Alternate Program", @@ -16863,104 +16735,104 @@ "postal_code": "V9N1X6" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272010", "name": "Carihi Secondary", - "total_students": 906, + "total_students": 924, "address": "350 DOGWOOD ST", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W2X9" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272012", "name": "Timberline Secondary School", - "total_students": 790, + "total_students": 801, "address": "1681 SOUTH DOGWOOD ST", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W8C1" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272014", "name": "Ecole Phoenix Middle", - "total_students": 646, + "total_students": 642, "address": "400 7TH AVE", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W3Z9" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272016", "name": "Southgate Middle School", - "total_students": 596, + "total_students": 627, "address": "740 HOLM RD", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W1W6" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272017", "name": "Cortes Island School", - "total_students": 72, + "total_students": 91, "address": "PO BOX 179", "city": "MANSONS LANDING", "province": "BC", "postal_code": "V0P1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272029", "name": "Cedar Elementary", - "total_students": 174, + "total_students": 181, "address": "261 CEDAR ST", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W2V3" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272031", - "name": "Ecole des Deux Mondes Elementary", - "total_students": 176, + "name": "Ecole Des Deux Mondes Elementary", + "total_students": 173, "address": "851 7TH AVE", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W4A3" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272032", "name": "Ripple Rock Elementary", - "total_students": 307, + "total_students": 312, "address": "2001 CHEVIOT RD", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9H1R4" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272035", "name": "eBlend", @@ -16971,80 +16843,80 @@ "postal_code": "V9W6J7" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272046", "name": "Georgia Park Elementary", - "total_students": 299, + "total_students": 285, "address": "678 HUDSON RD", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9H1T4" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272061", "name": "Ocean Grove Elementary", - "total_students": 288, + "total_students": 268, "address": "3773 MCLELAN", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9H1K2" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272065", "name": "Pinecrest Elementary", - "total_students": 243, + "total_students": 232, "address": "300 SOUTH BIRCH ST", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W2S1" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272066", "name": "Penfield Elementary", - "total_students": 276, + "total_students": 268, "address": "525 HILCHEY RD", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W1P9" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272069", "name": "Quadra Elementary", - "total_students": 105, + "total_students": 113, "address": "PO BOX 249", "city": "QUATHIASKI COVE", "province": "BC", "postal_code": "V0P1N0" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272078", "name": "Sandowne Elementary", - "total_students": 248, + "total_students": 222, "address": "699 SANDOWNE DR", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W5G9" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272085", "name": "Surge Narrows Elementary", @@ -17055,20 +16927,20 @@ "postal_code": "V0P1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272097", - "name": "Ecole Willow Point Elementary", - "total_students": 235, + "name": "E`cole Willow Point Elementary", + "total_students": 244, "address": "250 LARWOOD RD", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W1S4" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7272119", "name": "Sayward Elem-Jr Secondary", @@ -17079,8 +16951,8 @@ "postal_code": "V0P1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7295057", "name": "Compass School Program", @@ -17091,128 +16963,128 @@ "postal_code": "V9W6J7" }, { - "public_or_independent": "BC Public School", - "district_number": "72", + "public_or_independent": "Public School", + "district_number": "072", "district_name": "Campbell River", "school_number": "7299073", "name": "Elm Alternate", - "total_students": 169, + "total_students": 197, "address": "740 ROBRON RD", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W6J7" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324002", "name": "Beattie Elementary", - "total_students": 350, + "total_students": 356, "address": "492 MCGILL RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C1M3" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324004", "name": "Haldane Elementary", - "total_students": 263, + "total_students": 238, "address": "PO BOX 380", "city": "CHASE", "province": "BC", "postal_code": "V0E1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324005", "name": "Ecole Lloyd George Elementary", - "total_students": 451, + "total_students": 450, "address": "830 PINE ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C3A1" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324010", "name": "Savona Elementary", - "total_students": 58, + "total_students": 55, "address": "PO BOX 170", "city": "SAVONA", "province": "BC", "postal_code": "V0K2J0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324011", "name": "Marion Schilling Elementary", - "total_students": 235, + "total_students": 229, "address": "2200 PARK DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C4P6" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324012", "name": "South Kamloops Secondary", - "total_students": 1093, + "total_students": 1127, "address": "821 MUNRO ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C3E9" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324014", "name": "Kamloops School of the Arts", - "total_students": 489, + "total_students": 497, "address": "1390 9TH AVE", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C3X6" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324018", "name": "Heffley Creek Elementary", - "total_students": 20, + "total_students": 22, "address": "MARRIOTT RD RR 2", "city": "HEFFLEY CREEK", "province": "BC", "postal_code": "V0E1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324020", "name": "Westsyde Elementary", - "total_students": 240, + "total_students": 230, "address": "3550 WESTSYDE RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B7H4" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324021", "name": "Westwold Elementary", @@ -17223,92 +17095,92 @@ "postal_code": "V0E3B0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324023", "name": "Dallas Elementary", - "total_students": 336, + "total_students": 323, "address": "296 HARPER RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C4Z2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324028", "name": "George Hilliard Elementary", - "total_students": 176, + "total_students": 191, "address": "985 HOLT ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B5H1" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324031", "name": "Arthur Stevenson Elementary", - "total_students": 292, + "total_students": 286, "address": "2890 BANK RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B6Y7" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324032", "name": "Bert Edwards Science & Technology", - "total_students": 274, + "total_students": 276, "address": "711 WINDSOR AVE", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B2B7" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324033", "name": "Ralph Bell Elementary School", - "total_students": 271, + "total_students": 290, "address": "1764 VALLEYVIEW DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C4B8" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324034", "name": "Rayleigh Elementary", - "total_students": 234, + "total_students": 233, "address": "306 PUETT RANCH RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2H1M9" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324036", "name": "Arthur Hatton Elementary", - "total_students": 306, + "total_students": 315, "address": "315 CHESTNUT AVE", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B1L4" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324039", "name": "AE Perry Elementary", @@ -17319,224 +17191,224 @@ "postal_code": "V2B1W9" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324040", "name": "Kay Bingham Elementary", - "total_students": 230, + "total_students": 196, "address": "950 SOUTHILL ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B5M2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324044", "name": "Norkam Secondary School", - "total_students": 958, + "total_students": 948, "address": "730 12TH ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B3C1" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324045", "name": "Valleyview Secondary", - "total_students": 1116, + "total_students": 1149, "address": "1950 VALLEYVIEW DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C4C2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324052", "name": "Barriere Elementary", - "total_students": 207, + "total_students": 206, "address": "PO BOX 250", "city": "BARRIERE", "province": "BC", "postal_code": "V0E1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324053", "name": "Logan Lake Elementary", - "total_students": 106, + "total_students": 134, "address": "PO BOX 100", "city": "LOGAN LAKE", "province": "BC", "postal_code": "V0K1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324054", "name": "Parkcrest Elementary", - "total_students": 385, + "total_students": 384, "address": "2170 PARKCREST AVE", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B4Y1" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324055", "name": "Westsyde Secondary", - "total_students": 735, + "total_students": 748, "address": "855 BEBEK RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B6P2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324056", "name": "Robert L Clemitson Elementary", - "total_students": 405, + "total_students": 399, "address": "5990 TODD RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C5B7" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324057", - "name": "Sa-hali Secondary", - "total_students": 937, + "name": "Sa-Hali Secondary", + "total_students": 854, "address": "255 ARROWSTONE DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C1P8" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324058", "name": "David Thompson Elementary", - "total_students": 288, + "total_students": 290, "address": "1051 PINESPRINGS RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B7W3" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324063", "name": "Westmount Elementary", - "total_students": 250, + "total_students": 245, "address": "745 WALKEM RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B7Z8" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324064", "name": "South Sa-Hali Elementary", - "total_students": 369, + "total_students": 378, "address": "1585 SUMMIT DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2E1E9" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324067", "name": "Pinantan Elementary", - "total_students": 71, + "total_students": 67, "address": "GENERAL DELIVERY", "city": "PINANTAN LAKE", "province": "BC", "postal_code": "V0E3E1" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324068", "name": "Summit Elementary", - "total_students": 309, + "total_students": 330, "address": "425 MONARCH CRT", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2E1Y3" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324071", "name": "Aberdeen Elementary", - "total_students": 496, + "total_students": 502, "address": "2191 VAN HORNE DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V1S1L9" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324072", "name": "Dufferin Elementary", - "total_students": 255, + "total_students": 260, "address": "1880 HILLSIDE DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2E2E2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324077", "name": "Juniper Ridge Elementary", - "total_students": 373, - "address": "2540 QU'APPELLE BLVD", + "total_students": 350, + "address": "2540 QUAPPELLE BLVD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2E2E9" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7324078", "name": "McGowan Park Elementary", - "total_students": 418, + "total_students": 401, "address": "2080 TREMERTON DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2E2S2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7326002", "name": "Blue River School", @@ -17547,152 +17419,152 @@ "postal_code": "V0E1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7326005", "name": "Clearwater Secondary", - "total_students": 187, + "total_students": 190, "address": "440 MURTLE CRES", "city": "CLEARWATER", "province": "BC", "postal_code": "V0E1N1" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7326011", "name": "Vavenby Elementary", - "total_students": 35, + "total_students": 23, "address": "PO BOX 100", "city": "VAVENBY", "province": "BC", "postal_code": "V0E3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7326012", "name": "Raft River Elementary", - "total_students": 296, + "total_students": 288, "address": "801 CLEARWATER VILLAGE RD", "city": "CLEARWATER", "province": "BC", "postal_code": "V0E1N1" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7373000", "name": "Continuing Ed SD 73", - "total_students": 97, + "total_students": 104, "address": "655 HOLT ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B5G2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7373079", "name": "Pacific Way Elementary", - "total_students": 403, + "total_students": 401, "address": "2330 PACIFIC WAY", "city": "KAMLOOPS", "province": "BC", "postal_code": "V1S1Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7373080", "name": "Logan Lake Elementary Secondary", - "total_students": 170, + "total_students": 140, "address": "PO BOX 280", "city": "LOGAN LAKE", "province": "BC", "postal_code": "V0K1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7373081", "name": "Brocklehurst Secondary School", - "total_students": 482, + "total_students": 561, "address": "985 WINDBREAK ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B5P5" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7373083", "name": "Chase Elementary-Secondary", - "total_students": 239, + "total_students": 230, "address": "PO BOX 319", "city": "CHASE", "province": "BC", "postal_code": "V0E1M0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7373084", "name": "Barriere Elementary-Secondary", - "total_students": 218, + "total_students": 222, "address": "PO BOX 130", "city": "BARRIERE", "province": "BC", "postal_code": "V0E1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7373085", "name": "Sun Peaks School", - "total_students": 131, + "total_students": 130, "address": "c/o Heffley Creek Elementary School", "city": "Kamloops", "province": "BC", "postal_code": "V2H0B7" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7399042", "name": "Twin Rivers Education Centre", - "total_students": 188, + "total_students": 180, "address": "655 HOLT ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B5G2" }, { - "public_or_independent": "BC Public School", - "district_number": "73", + "public_or_independent": "Public School", + "district_number": "073", "district_name": "Kamloops-Thompson", "school_number": "7399103", "name": "@KOOL", - "total_students": 786, + "total_students": 836, "address": "1770 SPRINGVIEW PL", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2E1X9" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7429007", "name": "Gold Bridge Community", @@ -17703,80 +17575,80 @@ "postal_code": "V0K1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7429012", "name": "Cayoosh Elementary", - "total_students": 185, + "total_students": 179, "address": "PO BOX 649", "city": "LILLOOET", "province": "BC", "postal_code": "V0K1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7429014", "name": "George M Murray Elementary", - "total_students": 87, + "total_students": 73, "address": "PO BOX 968", "city": "LILLOOET", "province": "BC", "postal_code": "V0K1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7429015", "name": "Lillooet Secondary", - "total_students": 201, + "total_students": 197, "address": "PO BOX 760", "city": "LILLOOET", "province": "BC", "postal_code": "V0K1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7430009", "name": "Cache Creek Elementary", - "total_students": 117, + "total_students": 122, "address": "PO BOX 128", "city": "CACHE CREEK", "province": "BC", "postal_code": "V0K1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7474018", "name": "David Stoddart School", - "total_students": 111, + "total_students": 117, "address": "PO BOX 129", "city": "CLINTON", "province": "BC", "postal_code": "V0K1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7474019", "name": "Desert Sands Community School", - "total_students": 268, + "total_students": 248, "address": "PO BOX 669", "city": "ASHCROFT", "province": "BC", "postal_code": "V0K1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "74", + "public_or_independent": "Public School", + "district_number": "074", "district_name": "Gold Trail", "school_number": "7474020", "name": "Kumsheen ShchEma-meet", @@ -17787,80 +17659,80 @@ "postal_code": "V0K1Z0" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575000", "name": "Continuing Ed SD 75", - "total_students": 46, + "total_students": 67, "address": "33919 DEWDNEY TRUNK RD", "city": "MISSION", "province": "BC", "postal_code": "V2V6Y4" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575001", "name": "Hatzic Elementary", - "total_students": 261, + "total_students": 255, "address": "8465 DRAPER ST", "city": "MISSION", "province": "BC", "postal_code": "V2V5V6" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575006", "name": "Dewdney Elementary", - "total_students": 128, + "total_students": 143, "address": "37151 HAWKINS-PICKLE RD B107", "city": "DEWDNEY", "province": "BC", - "postal_code": "V0M1H0" + "postal_code": "V2V0M7" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575007", "name": "Mission Central Elementary", - "total_students": 341, + "total_students": 330, "address": "7466 WELTON ST", "city": "MISSION", "province": "BC", "postal_code": "V2V6L4" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575014", "name": "Mission Senior Secondary", - "total_students": 1327, + "total_students": 1379, "address": "32939 7th AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V2C5" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575015", "name": "Edwin S Richards Elementary", - "total_students": 363, + "total_students": 338, "address": "33419 CHERRY AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V2V5" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575018", "name": "West Heights Elementary", @@ -17871,80 +17743,80 @@ "postal_code": "V2V2G6" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575019", "name": "Silverdale Elementary", - "total_students": 130, + "total_students": 128, "address": "29715 DONATELLI AVE", "city": "MISSION", "province": "BC", "postal_code": "V4S1H6" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575020", "name": "Windebank Elementary", - "total_students": 403, + "total_students": 390, "address": "33570 11TH AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V6Z2" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575023", "name": "Cherry Hill Elementary", - "total_students": 290, + "total_students": 269, "address": "32557 BEST AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V2S5" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575027", "name": "Hillside Traditional Academy", - "total_students": 417, + "total_students": 418, "address": "33621 BEST AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V5Z3" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575028", "name": "Albert McMahon Elementary", - "total_students": 454, + "total_students": 445, "address": "32865 CHERRY AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V2V1" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575029", "name": "Christine Morrison Elementary", - "total_students": 395, + "total_students": 380, "address": "32611 MCRAE AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V2L8" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575030", "name": "Stave Falls Elementary", @@ -17955,80 +17827,80 @@ "postal_code": "V4S1C2" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575032", "name": "Deroche Elementary", - "total_students": 96, + "total_students": 99, "address": "10340 N DEROCHE RD", "city": "DEROCHE", "province": "BC", "postal_code": "V0M1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575035", "name": "Hatzic Middle School", - "total_students": 785, + "total_students": 741, "address": "34875 Moffat Avenue", "city": "MISSION", "province": "BC", "postal_code": "V2V6S1" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7575036", "name": "Ecole Heritage Park Middle School", - "total_students": 744, + "total_students": 779, "address": "33700 PRENTIS AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V7B1" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7599133", "name": "Mission Online School", - "total_students": 160, + "total_students": 183, "address": "PORTABLE #8 32939 7TH AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V2C5" }, { - "public_or_independent": "BC Public School", - "district_number": "75", + "public_or_independent": "Public School", + "district_number": "075", "district_name": "Mission", "school_number": "7599287", "name": "Fraserview Learning Centre", - "total_students": 104, + "total_students": 115, "address": "32444 7TH AVE", "city": "MISSION", "province": "BC", "postal_code": "V2V2B5" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7832003", - "name": "Hope Secondary", - "total_students": 385, + "name": "Spirit of Hope Secondary", + "total_students": 390, "address": "PO BOX 249", "city": "HOPE", "province": "BC", "postal_code": "V0X1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7832004", "name": "Boston Bar Elem-Secondary", @@ -18039,56 +17911,56 @@ "postal_code": "V0K1C0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7832006", "name": "Coquihalla Elementary", - "total_students": 362, + "total_students": 352, "address": "PO BOX 969", "city": "HOPE", "province": "BC", "postal_code": "V0X1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7876002", "name": "Harrison Hot Springs Elementary", - "total_students": 119, + "total_students": 129, "address": "PO BOX 310", "city": "HARRISON HOT SPRINGS", "province": "BC", "postal_code": "V0M1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7876003", "name": "Agassiz Elem-Secondary", - "total_students": 343, + "total_students": 351, "address": "PO BOX 1100", "city": "AGASSIZ", "province": "BC", "postal_code": "V0M1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7876007", "name": "Kent Elementary", - "total_students": 278, + "total_students": 308, "address": "7285 MCCULLOUGH RD", "city": "AGASSIZ", "province": "BC", "postal_code": "V0M1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7878000", "name": "Fraser Cascade Continuing Education", @@ -18096,23 +17968,23 @@ "address": "425 PARK STREET", "city": "HOPE", "province": "BC", - "postal_code": "V0X1L1" + "postal_code": "V0X1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7878012", "name": "Silver Creek Elementary", - "total_students": 133, + "total_students": 134, "address": "PO BOX 670", "city": "HOPE", "province": "BC", "postal_code": "V0X1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7878013", "name": "Q'aLaTKu7em School", @@ -18123,92 +17995,92 @@ "postal_code": "V0N2K0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7899053", "name": "Two Rivers Education Centre", - "total_students": 33, + "total_students": 27, "address": "PO BOX 108", "city": "HOPE", "province": "BC", "postal_code": "V0X1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7899166", "name": "Fraser-Cascade Open Learning", - "total_students": 37, + "total_students": 68, "address": "425 PARK STREET", "city": "HOPE", "province": "BC", "postal_code": "V0X1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "78", + "public_or_independent": "Public School", + "district_number": "078", "district_name": "Fraser-Cascade", "school_number": "7899183", "name": "Agassiz Centre for Education", - "total_students": 17, + "total_students": 10, "address": "PO BOX 69", "city": "AGASSIZ", "province": "BC", "postal_code": "V0M1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965006", "name": "Crofton Elementary Community School", - "total_students": 174, + "total_students": 159, "address": "PO BOX 80", "city": "CROFTON", "province": "BC", "postal_code": "V0R1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965007", "name": "Bench Elementary", - "total_students": 414, + "total_students": 411, "address": "1501 COWICHAN BAY RD", "city": "COWICHAN BAY", "province": "BC", "postal_code": "V0R1N2" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965014", "name": "Alexander Elementary", - "total_students": 295, + "total_students": 287, "address": "2471 BEVERLY ST", - "city": "DUNCAN", + "city": "NORTH COWICHAN", "province": "BC", "postal_code": "V9L3A3" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965016", "name": "Tansor Elementary", - "total_students": 289, + "total_students": 279, "address": "3594 AUCHINACHIE RD", - "city": "DUNCAN", + "city": "NORTH COWICHAN", "province": "BC", "postal_code": "V9L4A4" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965023", "name": "Khowhemun Elementary", @@ -18219,80 +18091,80 @@ "postal_code": "V9L1C5" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965024", "name": "Drinkwater Elementary", - "total_students": 422, + "total_students": 367, "address": "6236 LANE RD", - "city": "DUNCAN", + "city": "NORTH COWICHAN", "province": "BC", - "postal_code": "V9L4E1" + "postal_code": "V9L4E3" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965025", "name": "Alex Aitken", - "total_students": 185, + "total_students": 188, "address": "2494 ROOME RD", - "city": "DUNCAN", + "city": "NORTH COWICHAN", "province": "BC", "postal_code": "V9L4L2" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965032", "name": "Thetis Island Elementary", - "total_students": 19, + "total_students": 16, "address": "3172 GARNER ST", "city": "CHEMAINUS", "province": "BC", "postal_code": "V0R1K2" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965037", "name": "Discovery Elementary", - "total_students": 395, + "total_students": 396, "address": "2204 McKean Rd", "city": "SHAWNIGAN LAKE", "province": "BC", - "postal_code": "V0R2W1" + "postal_code": "V8H2E8" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7965039", "name": "Frances Kelsey Secondary", - "total_students": 975, + "total_students": 966, "address": "953 SHAWNIGAN-MILL BAY RD", "city": "MILL BAY", "province": "BC", "postal_code": "V8H1G3" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7966012", "name": "Palsson Elementary", - "total_students": 201, - "address": "PO BOX 350", + "total_students": 176, + "address": "9 GROSSKLEG WAY", "city": "LAKE COWICHAN", "province": "BC", - "postal_code": "V0R2G0" + "postal_code": "V0R2G1" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979000", "name": "Adult Learning Centre", @@ -18303,164 +18175,164 @@ "postal_code": "V9L2E6" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979040", "name": "Maple Bay Elementary", - "total_students": 335, + "total_students": 348, "address": "1500 DONNAY DR", - "city": "DUNCAN", + "city": "NORTH COWICHAN", "province": "BC", "postal_code": "V9L5R4" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979041", "name": "Chemainus Elementary Community School", - "total_students": 324, + "total_students": 318, "address": "3172 GARNER ST", "city": "CHEMAINUS", "province": "BC", "postal_code": "V0R1K2" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979042", "name": "Ecole Cobble Hill Elementary", - "total_students": 353, + "total_students": 348, "address": "3642 LEARNING WAY", "city": "COBBLE HILL", "province": "BC", - "postal_code": "V0R1L2" + "postal_code": "V8H0H4" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979043", "name": "Lake Cowichan Elementary", - "total_students": 188, + "total_students": 203, "address": "PO BOX 40", "city": "LAKE COWICHAN", "province": "BC", "postal_code": "V0R2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979044", "name": "Lake Cowichan Secondary", - "total_students": 186, + "total_students": 188, "address": "PO BOX 40", "city": "LAKE COWICHAN", "province": "BC", "postal_code": "V0R2G0" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979045", "name": "George Bonner Elementary", - "total_students": 432, + "total_students": 376, "address": "3060 COBBLE HILL RD", "city": "MILL BAY", "province": "BC", "postal_code": "V8H1G9" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979046", "name": "Ecole Mount Prevost Elementary", - "total_students": 371, + "total_students": 377, "address": "6177 SOMENOS RD", - "city": "DUNCAN", + "city": "NORTH COWICHAN", "province": "BC", "postal_code": "V9L4E7" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979047", "name": "Cowichan Open School", - "total_students": 73, + "total_students": 70, "address": "1033 NAGLE ST", "city": "DUNCAN", "province": "BC", "postal_code": "V9L2E6" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979048", "name": "Quamichan School", - "total_students": 589, + "total_students": 554, "address": "2515 BEVERLY ST", - "city": "DUNCAN", + "city": "NORTH COWICHAN", "province": "BC", "postal_code": "V9L3A5" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979049", "name": "Chemainus Secondary", - "total_students": 366, + "total_students": 363, "address": "9947 DANIEL ST", "city": "CHEMAINUS", "province": "BC", "postal_code": "V0R1K1" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979050", "name": "Mill Bay Nature School", - "total_students": 82, + "total_students": 96, "address": "3175 COBBLE HILL RD", "city": "MILL BAY", "province": "BC", - "postal_code": "V0R2P3" + "postal_code": "V8H1J2" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7979051", "name": "Quw'utsun Secondary School", - "total_students": 949, - "address": "2652 JAMES ST", - "city": "DUNCAN", + "total_students": 1016, + "address": "2003 University Way", + "city": "NORTH COWICHAN", "province": "BC", - "postal_code": "V9L2X2" + "postal_code": "V9L0G9" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7999081", "name": "Cowichan Valley Open Learning Co-Op", - "total_students": 325, + "total_students": 308, "address": "1033 NAGLE ST", "city": "DUNCAN", "province": "BC", "postal_code": "V9L2E6" }, { - "public_or_independent": "BC Public School", - "district_number": "79", + "public_or_independent": "Public School", + "district_number": "079", "district_name": "Cowichan Valley", "school_number": "7999145", "name": "Cowichan Valley Distributed Learning", @@ -18471,44 +18343,44 @@ "postal_code": "V9L2E6" }, { - "public_or_independent": "BC Public School", - "district_number": "81", + "public_or_independent": "Public School", + "district_number": "081", "district_name": "Fort Nelson", "school_number": "8181008", "name": "G W Carlson Elementary", - "total_students": 131, + "total_students": 126, "address": "PO BOX 810", "city": "FORT NELSON", "province": "BC", "postal_code": "V0C1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "81", + "public_or_independent": "Public School", + "district_number": "081", "district_name": "Fort Nelson", "school_number": "8181011", "name": "R L Angus Elementary", - "total_students": 149, + "total_students": 142, "address": "BOX 750", "city": "FORT NELSON", "province": "BC", "postal_code": "V0C1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "81", + "public_or_independent": "Public School", + "district_number": "081", "district_name": "Fort Nelson", "school_number": "8181013", "name": "Fort Nelson Secondary", - "total_students": 287, + "total_students": 271, "address": "PO BOX 90", "city": "FORT NELSON", "province": "BC", "postal_code": "V0C1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "81", + "public_or_independent": "Public School", + "district_number": "081", "district_name": "Fort Nelson", "school_number": "8181014", "name": "J S Clark Elementary", @@ -18519,8 +18391,8 @@ "postal_code": "V0C1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "81", + "public_or_independent": "Public School", + "district_number": "081", "district_name": "Fort Nelson", "school_number": "8181015", "name": "Toad River Elem-Secondary", @@ -18531,404 +18403,404 @@ "postal_code": "V0C1R0" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8280001", "name": "Nechako Elementary", - "total_students": 295, + "total_students": 273, "address": "61 NIGHTINGALE ST", "city": "KITIMAT", "province": "BC", "postal_code": "V8C1M9" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8280004", "name": "Kildala Elementary", - "total_students": 223, + "total_students": 235, "address": "803 COLUMBIA AVE E", "city": "KITIMAT", "province": "BC", "postal_code": "V8C1V7" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8280007", "name": "Kitimat City High", - "total_students": 56, + "total_students": 59, "address": "1426 CORMORANT ST", "city": "KITIMAT", "province": "BC", "postal_code": "V8C1R8" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8282038", "name": "Skeena Middle", - "total_students": 527, + "total_students": 569, "address": "3411 MUNROE ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G3C1" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8282039", "name": "Mount Elizabeth Middle/Secondary", - "total_students": 459, + "total_students": 485, "address": "1491 KINGFISHER AVE N", "city": "KITIMAT", "province": "BC", "postal_code": "V8C1E9" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8282040", "name": "NW Regional Trades & Training Centre", - "total_students": 28, + "total_students": 10, "address": "3120 16 HWY E", "city": "TERRACE", "province": "BC", "postal_code": "V8G4N8" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288006", "name": "Hazelton Secondary", - "total_students": 371, + "total_students": 373, "address": "PO BOX 300", "city": "HAZELTON", "province": "BC", "postal_code": "V0J1Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288008", "name": "New Hazelton Elementary", - "total_students": 90, + "total_students": 116, "address": "PO BOX 220", "city": "NEW HAZELTON", "province": "BC", "postal_code": "V0J2J0" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288012", "name": "Uplands Elementary", - "total_students": 259, + "total_students": 248, "address": "4110 NORTH THOMAS ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G4L7" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288013", "name": "Cassie Hall Elementary", - "total_students": 150, + "total_students": 132, "address": "2620 EBY ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G2X3" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288014", "name": "Thornhill Elementary", - "total_students": 135, + "total_students": 153, "address": "2906 CLARK ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G3S1" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288016", "name": "Suwilaawks Community School", - "total_students": 353, + "total_students": 327, "address": "3430 SPARKS ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G2V3" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288018", "name": "Majagaleehl Gali Aks Elementary", - "total_students": 140, - "address": "PO BOX 240", + "total_students": 123, + "address": "3990 John Field Rd", "city": "HAZELTON", "province": "BC", "postal_code": "V0J1Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288020", "name": "Ecole Mountainview", - "total_students": 181, + "total_students": 186, "address": "3505 BAILEY ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G5P5" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288022", "name": "Thornhill Primary", - "total_students": 183, + "total_students": 148, "address": "3860 PAQUETTE AVE", "city": "TERRACE", "province": "BC", "postal_code": "V8G3S8" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288024", "name": "Caledonia Secondary", - "total_students": 564, + "total_students": 588, "address": "3605 MUNROE ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G3C4" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288025", "name": "Parkside Secondary", - "total_students": 88, + "total_students": 65, "address": "3824 EBY ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G2Z8" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288028", "name": "Bear Valley School", - "total_students": 46, + "total_students": 10, "address": "PO BOX 218", "city": "STEWART", "province": "BC", "postal_code": "V0T1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8288030", "name": "Kitwanga Elementary", - "total_students": 63, + "total_students": 78, "address": "PO BOX 88", "city": "KITWANGA", "province": "BC", "postal_code": "V0J2A0" }, { - "public_or_independent": "BC Public School", - "district_number": "82", + "public_or_independent": "Public School", + "district_number": "082", "district_name": "Coast Mountains", "school_number": "8298009", "name": "North Coast Distance Education", - "total_students": 20, + "total_students": 17, "address": "3120 HIGHWAY 16 EAST", "city": "TERRACE", "province": "BC", "postal_code": "V8G4N8" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8321001", "name": "Armstrong Elementary", - "total_students": 261, + "total_students": 266, "address": "3010 PLEASANT VALLEY RD", "city": "ARMSTRONG", "province": "BC", "postal_code": "V4Y0J3" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8321004", "name": "Pleasant Valley Secondary", - "total_students": 506, + "total_students": 494, "address": "2365 PLEASANT VALLEY RD", "city": "SPALLUMCHEEN", "province": "BC", "postal_code": "V4Y0T6" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8321005", "name": "Highland Park Elementary", - "total_students": 289, + "total_students": 292, "address": "PO BOX 647", "city": "ARMSTRONG", "province": "BC", "postal_code": "V0E1B0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383035", "name": "Salmon Arm Secondary", - "total_students": 639, + "total_students": 715, "address": "1641 30 St NE", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E2Z5" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383036", "name": "Len Wood Middle School", - "total_students": 291, + "total_students": 294, "address": "3700 PATTEN DR", "city": "ARMSTRONG", "province": "BC", "postal_code": "V4Y0H9" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383037", "name": "Shuswap Middle School", - "total_students": 609, + "total_students": 587, "address": "PO BOX 1090 STN MAIN", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E4P2" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383038", "name": "Carlin Elementary Middle", - "total_students": 296, + "total_students": 300, "address": "4005 MYERS FRONTAGE RD", "city": "TAPPEN", "province": "BC", "postal_code": "V0E2X0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383039", "name": "North Shuswap Elementary", - "total_students": 131, + "total_students": 133, "address": "5295 SQUILAX-ANGLEMONT RD", "city": "CELISTA", "province": "BC", "postal_code": "V0E1M6" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383040", "name": "Falkland Elementary Junior School", - "total_students": 116, + "total_students": 104, "address": "PO BOX 10", "city": "FALKLAND", "province": "BC", "postal_code": "V0E1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383041", "name": "Silver Creek Elementary Secondary", - "total_students": 83, + "total_students": 84, "address": "935 SALMON RIVER RD", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E3G3" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383042", "name": "Ranchero Elementary Junior", - "total_students": 153, + "total_students": 147, "address": "6285 RANCHERO DR E", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E2P9" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383043", "name": "J.L. Jackson Secondary", - "total_students": 676, + "total_students": 617, "address": "551 14 ST NE", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E2S5" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383044", "name": "Eagle River Secondary", - "total_students": 168, + "total_students": 183, "address": "PO BOX 9", "city": "SICAMOUS", "province": "BC", "postal_code": "V0E2V0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8383045", "name": "South Canoe", @@ -18939,200 +18811,200 @@ "postal_code": "V1E1W5" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389002", "name": "A.L. Fortune Secondary", - "total_students": 374, + "total_students": 366, "address": "500 BASS AVE", "city": "ENDERBY", "province": "BC", "postal_code": "V4Y4B2" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389009", "name": "Grindrod Elementary", - "total_students": 126, + "total_students": 122, "address": "PO BOX 249", "city": "GRINDROD", "province": "BC", "postal_code": "V0E1Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389017", "name": "M.V. Beattie Elementary", - "total_students": 292, + "total_students": 278, "address": "PO BOX 249", "city": "ENDERBY", "province": "BC", "postal_code": "V0E1V0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389021", "name": "North Canoe Elementary", - "total_students": 73, + "total_students": 76, "address": "PO BOX 78", "city": "CANOE", "province": "BC", "postal_code": "V0E1K0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389022", "name": "Salmon Arm West Elementary", - "total_students": 83, + "total_students": 89, "address": "4750 10 AVE SW", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E3B5" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389023", "name": "South Broadview Elementary", - "total_students": 210, + "total_students": 216, "address": "3200 6 AVE NE", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E1J2" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389028", "name": "Bastion Elementary", - "total_students": 351, + "total_students": 356, "address": "2251 12 AVE NE", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E2V5" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389029", "name": "Sorrento Elementary", - "total_students": 246, + "total_students": 225, "address": "PO BOX 220", "city": "SORRENTO", "province": "BC", "postal_code": "V0E2W0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389032", "name": "Parkview Elementary School", - "total_students": 205, + "total_students": 214, "address": "PO BOX 444", "city": "SICAMOUS", "province": "BC", "postal_code": "V0E2V0" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8389033", "name": "Hillcrest Elementary", - "total_students": 288, + "total_students": 276, "address": "1180 20 ST SE", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E2J4" }, { - "public_or_independent": "BC Public School", - "district_number": "83", + "public_or_independent": "Public School", + "district_number": "083", "district_name": "North Okanagan-Shuswap", "school_number": "8399072", "name": "Salmon Arm Storefront", - "total_students": 53, + "total_students": 55, "address": "PO BOX 129", "city": "SALMON ARM", "province": "BC", "postal_code": "V1E4N2" }, { - "public_or_independent": "BC Public School", - "district_number": "84", + "public_or_independent": "Public School", + "district_number": "084", "district_name": "Vancouver Island West", "school_number": "8484011", "name": "Ray Watkins Elementary", - "total_students": 113, + "total_students": 122, "address": "PO BOX 190", "city": "GOLD RIVER", "province": "BC", "postal_code": "V0P1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "84", + "public_or_independent": "Public School", + "district_number": "084", "district_name": "Vancouver Island West", "school_number": "8484012", "name": "Gold River Secondary", - "total_students": 97, + "total_students": 88, "address": "PO BOX 700", "city": "GOLD RIVER", "province": "BC", "postal_code": "V0P1G0" }, { - "public_or_independent": "BC Public School", - "district_number": "84", + "public_or_independent": "Public School", + "district_number": "084", "district_name": "Vancouver Island West", "school_number": "8484022", "name": "Captain Meares Elem-Secondary", - "total_students": 26, + "total_students": 30, "address": "PO BOX 70", "city": "TAHSIS", "province": "BC", "postal_code": "V0P1X0" }, { - "public_or_independent": "BC Public School", - "district_number": "84", + "public_or_independent": "Public School", + "district_number": "084", "district_name": "Vancouver Island West", "school_number": "8484031", "name": "Zeballos Elem-Secondary", - "total_students": 40, + "total_students": 34, "address": "PO BOX 128", "city": "ZEBALLOS", "province": "BC", "postal_code": "V0P2A0" }, { - "public_or_independent": "BC Public School", - "district_number": "84", + "public_or_independent": "Public School", + "district_number": "084", "district_name": "Vancouver Island West", "school_number": "8484041", "name": "Kyuquot Elementary Secondary", - "total_students": 42, + "total_students": 37, "address": "GENERAL DELIVERY", "city": "KYUQUOT", "province": "BC", "postal_code": "V0P1J0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585001", "name": "A J Elliott Elementary", @@ -19143,20 +19015,20 @@ "postal_code": "V0N3E0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585008", "name": "Alert Bay Elementary", - "total_students": 32, + "total_students": 19, "address": "PO BOX 29", "city": "ALERT BAY", "province": "BC", "postal_code": "V0N1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585017", "name": "Fort Rupert Elementary", @@ -19167,164 +19039,152 @@ "postal_code": "V0N2P0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585018", "name": "North Island Secondary", - "total_students": 298, + "total_students": 269, "address": "PO BOX 100", "city": "PORT MCNEILL", "province": "BC", "postal_code": "V0N2R0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585020", "name": "Sea View Elementary School", - "total_students": 33, + "total_students": 38, "address": "PO BOX 260", "city": "PORT ALICE", "province": "BC", "postal_code": "V0N2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585023", "name": "Eagle View Elementary", - "total_students": 180, + "total_students": 182, "address": "PO BOX 369", "city": "PORT HARDY", "province": "BC", "postal_code": "V0N2P0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585026", "name": "Port Hardy Secondary", - "total_students": 305, + "total_students": 304, "address": "PO Box 27", "city": "PORT HARDY", "province": "BC", "postal_code": "V0N2P0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8585028", "name": "Sunset Elementary", - "total_students": 186, + "total_students": 225, "address": "PO BOX 160", "city": "PORT MCNEILL", "province": "BC", "postal_code": "V0N2R0" }, { - "public_or_independent": "BC Public School", - "district_number": "85", - "district_name": "Vancouver Island North", - "school_number": "8585029", - "name": "Cheslakees Elementary", - "total_students": 26, - "address": "PO BOX 1390", - "city": "PORT MCNEILL", - "province": "BC", - "postal_code": "V0N2R0" - }, - { - "public_or_independent": "BC Public School", - "district_number": "85", + "public_or_independent": "Public School", + "district_number": "085", "district_name": "Vancouver Island North", "school_number": "8599099", "name": "Eke Me-Xi School", - "total_students": 52, + "total_students": 56, "address": "PO BOX 90", "city": "PORT HARDY", "province": "BC", "postal_code": "V0N2P0" }, { - "public_or_independent": "BC Public School", - "district_number": "87", + "public_or_independent": "Public School", + "district_number": "087", "district_name": "Stikine", "school_number": "8787002", "name": "Denetia Elementary", - "total_students": 24, + "total_students": 22, "address": "PO BOX 40", "city": "LOWER POST", "province": "BC", "postal_code": "V0C1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "87", + "public_or_independent": "Public School", + "district_number": "087", "district_name": "Stikine", "school_number": "8787003", "name": "Tahltan School", - "total_students": 41, + "total_students": 51, "address": "PO BOX 12", "city": "TELEGRAPH CREEK", "province": "BC", "postal_code": "V0J2W0" }, { - "public_or_independent": "BC Public School", - "district_number": "87", + "public_or_independent": "Public School", + "district_number": "087", "district_name": "Stikine", "school_number": "8787010", "name": "Atlin School", - "total_students": 30, + "total_students": 32, "address": "PO BOX 83", "city": "ATLIN", "province": "BC", "postal_code": "V0W1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "87", + "public_or_independent": "Public School", + "district_number": "087", "district_name": "Stikine", "school_number": "8787011", "name": "Dease Lake School", - "total_students": 83, + "total_students": 74, "address": "PO BOX 280", "city": "DEASE LAKE", "province": "BC", "postal_code": "V0C1L0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9155004", "name": "Francois Lake Elementary", - "total_students": 50, + "total_students": 39, "address": "860 FRANCOIS LAKE ROAD", "city": "BURNS LAKE", "province": "BC", "postal_code": "V0J1E2" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9155005", "name": "Grassy Plains School", - "total_students": 59, + "total_students": 62, "address": "34310 KEEFES LANDING RD", "city": "BURNS LAKE", "province": "BC", "postal_code": "V0J1E4" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9155015", "name": "Babine Elem-Secondary", @@ -19335,188 +19195,188 @@ "postal_code": "V0J1W0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9155017", "name": "William Konkin Elementary", - "total_students": 185, + "total_students": 192, "address": "Box 7000", "city": "Burns Lake", "province": "BC", "postal_code": "V0J1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156001", "name": "Mapes Elementary", - "total_students": 56, + "total_students": 55, "address": "14907 MAPES RD", "city": "VANDERHOOF", "province": "BC", "postal_code": "V0J3A1" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156002", "name": "Fraser Lake Elem-Secondary", - "total_students": 303, + "total_students": 289, "address": "PO Bag Service 1002", "city": "Fraser Lake", "province": "BC", "postal_code": "V0J1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156003", "name": "W L McLeod Elementary", - "total_students": 270, + "total_students": 279, "address": "PO Box 559", "city": "Vanderhoof", "province": "BC", "postal_code": "V0J3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156007", "name": "Fort St. James Secondary", - "total_students": 246, + "total_students": 251, "address": "PO Box 220", "city": "Fort St. James", "province": "BC", "postal_code": "V0J1P0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156010", "name": "Sinkut View Elementary", - "total_students": 86, + "total_students": 81, "address": "3348 SINKUT VIEW RD", "city": "VANDERHOOF", "province": "BC", "postal_code": "V0J3A2" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156013", "name": "Evelyn Dickson Elementary", - "total_students": 189, + "total_students": 164, "address": "PO Box 1970", "city": "Vanderhoof", "province": "BC", "postal_code": "V0J3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156015", "name": "David Hoy Elementary", - "total_students": 224, + "total_students": 219, "address": "PO Box 880", "city": "Fort St. James", "province": "BC", "postal_code": "V0J1P0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9156019", "name": "Mouse Mountain Elementary", - "total_students": 109, + "total_students": 94, "address": "PO Bag 3001", "city": "Fraser Lake", "province": "BC", "postal_code": "V0J1S0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9191022", "name": "Decker Lake Elementary", - "total_students": 93, + "total_students": 91, "address": "6710 DECKER LAKE FRTG RD", "city": "BURNS LAKE", "province": "BC", "postal_code": "V0J1E1" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9191023", "name": "Lakes District Secondary", - "total_students": 317, + "total_students": 302, "address": "Box 3000", "city": "Burns Lake", "province": "BC", "postal_code": "V0J1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9191024", "name": "Nechako Valley Secondary", - "total_students": 562, + "total_students": 528, "address": "PO BOX 950", "city": "VANDERHOOF", "province": "BC", "postal_code": "V0J3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9199085", "name": "EBUS Academy", - "total_students": 1339, + "total_students": 1804, "address": "PO BAG 8000", "city": "VANDERHOOF", "province": "BC", "postal_code": "V0J3A2" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9199187", "name": "Fort St James Alternate Secondary", - "total_students": 17, + "total_students": 12, "address": "PO BOX 220", "city": "FORT ST JAMES", "province": "BC", "postal_code": "V0J1P0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9199207", "name": "Valhalla High", - "total_students": 41, + "total_students": 47, "address": "PO BOX 950", "city": "VANDERHOOF", "province": "BC", "postal_code": "V0J3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "91", + "public_or_independent": "Public School", + "district_number": "091", "district_name": "Nechako Lakes", "school_number": "9199209", "name": "Lakes Learning Centre", @@ -19527,44 +19387,44 @@ "postal_code": "V0J1E0" }, { - "public_or_independent": "BC Public School", - "district_number": "92", + "public_or_independent": "Public School", + "district_number": "092", "district_name": "Nisga'a", "school_number": "9292007", - "name": "Nisga'a Elementary Secondary", - "total_students": 242, + "name": "Nisga'a Secondary School", + "total_students": 160, "address": "BOX 239", "city": "NEW AIYANSH", "province": "BC", "postal_code": "V0J1A0" }, { - "public_or_independent": "BC Public School", - "district_number": "92", + "public_or_independent": "Public School", + "district_number": "092", "district_name": "Nisga'a", "school_number": "9292008", "name": "Nathan Barton Elementary", - "total_students": 40, + "total_students": 38, "address": "1310 VOLUNTEER ST", "city": "KINCOLITH", "province": "BC", "postal_code": "V0V1B0" }, { - "public_or_independent": "BC Public School", - "district_number": "92", + "public_or_independent": "Public School", + "district_number": "092", "district_name": "Nisga'a", "school_number": "9292009", "name": "Alvin A McKay Elementary", - "total_students": 71, + "total_students": 72, "address": "311 CHURCH ST", "city": "GREENVILLE", "province": "BC", "postal_code": "V0J1X0" }, { - "public_or_independent": "BC Public School", - "district_number": "92", + "public_or_independent": "Public School", + "district_number": "092", "district_name": "Nisga'a", "school_number": "9292010", "name": "Gitwinksihlkw Elementary", @@ -19575,104 +19435,116 @@ "postal_code": "V0J3T0" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "092", + "district_name": "Nisga'a", + "school_number": "9292014", + "name": "Nisga'a Elementary School", + "total_students": 86, + "address": "BOX 239", + "city": "NEW AIYANSH", + "province": "BC", + "postal_code": "V0J1A0" + }, + { + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9307013", "name": "Secondaire de Nelson", - "total_students": 25, - "address": "1004 COTTONWOOD ST", - "city": "NELSON", + "total_students": 27, + "address": "2780 3A HWY", + "city": "Nelson", "province": "BC", - "postal_code": "V1L3W2" + "postal_code": "V1L6L6" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9311004", "name": "des Sept-sommets", - "total_students": 47, + "total_students": 39, "address": "PO Box 880", "city": "ROSSLAND", "province": "BC", "postal_code": "V0G1Y0" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9315013", "name": "Entre-lacs", - "total_students": 97, + "total_students": 74, "address": "1213 DEBECK RD", "city": "PENTICTON", "province": "BC", "postal_code": "V2A3Z1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9319003", "name": "Secondaire de Revelstoke", - "total_students": 23, - "address": "1007 VERNON AVE", - "city": "REVELSTOKE", + "total_students": 24, + "address": "1950 Park Drive", + "city": "Revelstoke", "province": "BC", - "postal_code": "V0E2S0" + "postal_code": "V0E2S1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9323027", "name": "de l'Anse-au-sable", - "total_students": 235, + "total_students": 222, "address": "675 LEQUIME RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W1A3" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9324064", "name": "Collines-d'or", - "total_students": 44, + "total_students": 36, "address": "2450 PARTRIDGE DR", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B8G1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9333002", "name": "La Verendrye", - "total_students": 77, + "total_students": 76, "address": "6610 LICKMAN RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R4A9" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9335028", "name": "des Voyageurs", - "total_students": 122, + "total_students": 124, "address": "8736 216 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V1M2X9" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9337031", "name": "du Bois-joli", @@ -19683,152 +19555,152 @@ "postal_code": "V4M2P3" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9338036", "name": "des Navigateurs", - "total_students": 107, + "total_students": 98, "address": "8580 KILGOUR PL", "city": "RICHMOND", "province": "BC", "postal_code": "V7C3R1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9339092", "name": "Rose-des-vents", - "total_students": 252, + "total_students": 297, "address": "5445 BAILLIE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z3M6" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9339111", "name": "Anne-Hebert", - "total_students": 332, + "total_students": 323, "address": "7051 KILLARNEY ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S2Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9339118", "name": "des Colibris", - "total_students": 68, + "total_students": 72, "address": "590 W 65TH AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P2P8" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9339144", "name": "Norval-Morrisseau", - "total_students": 98, + "total_students": 87, "address": "2882 4TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M1K8" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9343092", "name": "des Pionniers-de-Maillardville", - "total_students": 696, + "total_students": 701, "address": "1618 PATRICIA AVE", "city": "PORT COQUITLAM", "province": "BC", - "postal_code": "V3B4A8" + "postal_code": "V3B3Y5" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9344004", "name": "Andre-Piolat", - "total_students": 432, + "total_students": 386, "address": "380 KINGS RD W", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7N2L9" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9346003", "name": "du Pacifique", - "total_students": 58, + "total_students": 64, "address": "5538 SHORNCLIFFE", "city": "SECHELT", "province": "BC", "postal_code": "V0N3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9346017", "name": "Secondaire Chatelech", - "total_students": 36, - "address": "5904 COWRIE ST", - "city": "SECHELT", + "total_students": 35, + "address": "5538 Shorncliffe", + "city": "Sechelt", "province": "BC", - "postal_code": "V0N3A7" + "postal_code": "V0N3A0" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9347006", "name": "Cote-du-Soleil", - "total_students": 88, + "total_students": 72, "address": "4368 MICHIGAN AVE", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A2S1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9347021", "name": "Secondaire Brooks", - "total_students": 17, - "address": "5400 MARINE AVE", + "total_students": 13, + "address": "4368 MICHIGAN AVE", "city": "POWELL RIVER", "province": "BC", - "postal_code": "V8A2L6" + "postal_code": "V8A2S1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9348008", "name": "Les Aiglons", - "total_students": 130, + "total_students": 123, "address": "1150 CARSON PLACE", "city": "SQUAMISH", "province": "BC", - "postal_code": "V8B0B1" + "postal_code": "V8B0A2" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9348020", "name": "La Passerelle", @@ -19839,92 +19711,92 @@ "postal_code": "V0N1B1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9348024", "name": "La Vallee", - "total_students": 82, + "total_students": 87, "address": "1410 PORTAGE RD", "city": "PEMBERTON", "province": "BC", "postal_code": "V0N2L0" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9357012", "name": "Secondaire Duchess-Park", - "total_students": 54, - "address": "747 WINNIPEG ST", - "city": "PRINCE GEORGE", + "total_students": 52, + "address": "2641 Ellison Drive", + "city": "Prince George", "province": "BC", - "postal_code": "V2L2V3" + "postal_code": "V2M2S6" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9357053", "name": "Franco-Nord", - "total_students": 80, + "total_students": 93, "address": "2641 ELLISON DR", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M2S6" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9361008", "name": "Beausoleil", - "total_students": 111, + "total_students": 96, "address": "1415 ANDREWS AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8P0A8" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9361060", "name": "Victor-Brodeur", - "total_students": 505, + "total_students": 470, "address": "637 HEAD ST", "city": "VICTORIA", "province": "BC", "postal_code": "V9A5S9" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9368001", "name": "Secondaire de Nanaimo", - "total_students": 53, - "address": "355 WAKESIAH AVE", - "city": "NANAIMO", + "total_students": 49, + "address": "1951 Estevan Road", + "city": "Nanaimo", "province": "BC", - "postal_code": "V9R3K5" + "postal_code": "V9S3Y9" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9368067", "name": "Oceane", - "total_students": 76, + "total_students": 80, "address": "1951 ESTEVAN RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9S3Y9" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9370006", "name": "des Grands-cedres", @@ -19935,71 +19807,59 @@ "postal_code": "V9Y5Y6" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9372010", "name": "Secondaire Carihi", - "total_students": 34, - "address": "350 DOGWOOD ST", - "city": "CAMPBELL RIVER", + "total_students": 23, + "address": "1102 Alder St S", + "city": "Campbell River", "province": "BC", - "postal_code": "V9W2X9" + "postal_code": "V9W1Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9372031", "name": "Mer-et-montagne", - "total_students": 50, + "total_students": 49, "address": "1102 SOUTH ALDER ST", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W1Z7" }, { - "public_or_independent": "BC Public School", - "district_number": "93", - "district_name": "Conseil scolaire francophone", - "school_number": "9373086", - "name": "Secondaire de Kamloops", - "total_students": 10, - "address": "750 COTTONWOOD AVE", - "city": "KAMLOOPS", - "province": "BC", - "postal_code": "V2B3X2" - }, - { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9375920", "name": "des Deux-Rives", - "total_students": 103, + "total_students": 102, "address": "7674 STAVE LAKE ST", "city": "MISSION", "province": "BC", "postal_code": "V2V4G4" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9379050", "name": "Des Cascades", - "total_students": 28, + "total_students": 23, "address": "3039 Sprott St", "city": "Duncan", "province": "BC", "postal_code": "V9L6A1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9388027", - "name": "Jack-Cook", + "name": "des Cinq-saumons", "total_students": 64, "address": "4720 GRAHAM AVE", "city": "TERRACE", @@ -20007,104 +19867,104 @@ "postal_code": "V8G1A8" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393002", "name": "Gabrielle-Roy", - "total_students": 576, + "total_students": 598, "address": "6887 132 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W4L9" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393003", "name": "des Sentiers-alpins", - "total_students": 69, + "total_students": 60, "address": "2780 3A HWY", "city": "NELSON", "province": "BC", "postal_code": "V1L6L6" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393004", "name": "Secondaire de Penticton", - "total_students": 17, - "address": "158 ECKHARDT AVE E", - "city": "PENTICTON", + "total_students": 12, + "address": "1213 Debeck Road", + "city": "Penticton", "province": "BC", - "postal_code": "V2A1Z3" + "postal_code": "V2A1Z1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393005", "name": "Secondaire Jules-Verne", - "total_students": 527, + "total_students": 540, "address": "5445 BAILLIE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z3M6" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393006", - "name": "Au-Coeur-De-L'Ile", - "total_students": 266, + "name": "École Au coeur de l'île", + "total_students": 253, "address": "566 LINSHART RD", "city": "COMOX", "province": "BC", "postal_code": "V9M2K8" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393007", "name": "des Glaciers", - "total_students": 39, + "total_students": 42, "address": "1950 PARK DR", "city": "REVELSTOKE", "province": "BC", "postal_code": "V0E2S1" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393008", "name": "Sophie-Morigeau", - "total_students": 43, + "total_students": 39, "address": "44 MT WASHBURN ST", "city": "FERNIE", "province": "BC", "postal_code": "V0B1M3" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393011", "name": "Les Melezes-dores", - "total_students": 10, + "total_students": 18, "address": "8687 95A HWY", "city": "KIMBERLEY", "province": "BC", "postal_code": "V1A3M3" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393012", "name": "La Confluence", @@ -20115,189 +19975,189 @@ "postal_code": "V0A1H0" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9393013", "name": "La Grande-Ourse", "total_students": 21, - "address": "3490 FULTON AVE", + "address": "3344 3rd Ave", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Public School", - "district_number": "93", + "public_or_independent": "Public School", + "district_number": "093", "district_name": "Conseil scolaire francophone", "school_number": "9399177", "name": "Virtuelle", - "total_students": 47, + "total_students": 96, "address": "100-13511 COMMERCE PARKWAY", "city": "RICHMOND", "province": "BC", "postal_code": "V6V2J8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Nelson D", + "district_name": "Catholic Independent Schools of Nelson Diocese", "school_number": "596109", "name": "St Mary's Catholic Independent", - "total_students": 116, + "total_students": 109, "address": "1701 5TH ST S", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C1K1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cranbrook Christian School Society", "school_number": "596640", "name": "Kootenay Christian Academy", - "total_students": 249, + "total_students": 239, "address": "1200 KOOTENAY ST N", "city": "CRANBROOK", "province": "BC", "postal_code": "V1C5X1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "The Fernie Academy Society", "school_number": "596715", "name": "The Fernie Academy", - "total_students": 280, + "total_students": 302, "address": "PO BOX 2677", "city": "FERNIE", "province": "BC", "postal_code": "V0B1M0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Kimberley Independent School Society", "school_number": "696795", "name": "Kimberley Independent School", - "total_students": 66, + "total_students": 73, "address": "73 101 AVE", "city": "KIMBERLEY", "province": "BC", "postal_code": "V1A1A5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Purcell Collegiate Incorporated", "school_number": "696988", "name": "Purcell Collegiate School", - "total_students": 17, - "address": "PO BOX 8 STN Main", + "total_students": 36, + "address": "1850 Warren Ave.", "city": "Kimberley", "province": "BC", - "postal_code": "V1A2Y5" + "postal_code": "V1A1S1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Nelson D", + "district_name": "Catholic Independent Schools of Nelson Diocese", "school_number": "896143", "name": "St Joseph School", - "total_students": 150, + "total_students": 156, "address": "523 MILL ST", "city": "NELSON", "province": "BC", "postal_code": "V1L4S2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "West Kootenay Education Resource Society", "school_number": "896220", "name": "Whole School", - "total_students": 31, + "total_students": 27, "address": "PO BOX 240", "city": "WINLAW", "province": "BC", "postal_code": "V0G2J0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Nelson Area Waldorf School Association", "school_number": "896449", "name": "Nelson Waldorf School", - "total_students": 115, + "total_students": 120, "address": "3648 Silverking Ski Hill Road", "city": "NELSON", "province": "BC", "postal_code": "V1L6N2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Nelson Christian School Society", "school_number": "896710", "name": "Nelson Christian Community School", - "total_students": 57, + "total_students": 49, "address": "570 JOHNSTONE RD", "city": "NELSON", "province": "BC", "postal_code": "V1L6J2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mormon Hills School Society", "school_number": "896726", "name": "Mormon Hills Elementary Secondary", - "total_students": 99, + "total_students": 96, "address": "876 LYONS RD", "city": "CRESTON", "province": "BC", "postal_code": "V0B1G2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Nelson Christian School Society", "school_number": "896749", "name": "CHEK-ABC", - "total_students": 223, + "total_students": 221, "address": "570 JOHNSTONE RD", "city": "NELSON", "province": "BC", "postal_code": "V1L6J2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "The Church Of God In Christ (Mennonite)", + "district_name": "The Church Of God In Christ (Mennonite) (Creston)", "school_number": "896864", "name": "Kootenay Valley Christian School", - "total_students": 31, + "total_students": 28, "address": "1152 21 HWY N", "city": "CRESTON", "province": "BC", "postal_code": "V0B1G6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Lower Kootenay Indian Band Chief & Counc", + "district_name": "Lower Kootenay Indian Band Chief & Council", "school_number": "897558", "name": "Yaqan Nukiy School", - "total_students": 86, + "total_students": 94, "address": "904 SIMON RD", "city": "CRESTON", "province": "BC", "postal_code": "V0B1G2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Nelson D", + "district_name": "Catholic Independent Schools of Nelson Diocese", "school_number": "2096098", "name": "St Michael's Elementary", "total_students": 134, @@ -20307,273 +20167,261 @@ "postal_code": "V1R1S3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "2296035", "name": "Pleasant Valley Christian Academy", - "total_students": 73, + "total_students": 81, "address": "1802 45 AVE", "city": "VERNON", "province": "BC", "postal_code": "V1T3M7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Kamloops", + "district_name": "Catholic Independent Schools of Kamloops Diocese", "school_number": "2296078", "name": "St James", - "total_students": 161, + "total_students": 179, "address": "2700 28 AVE", "city": "VERNON", "province": "BC", "postal_code": "V1T1V7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Vernon Christian School Society", "school_number": "2296261", "name": "Vernon Christian School", - "total_students": 460, + "total_students": 470, "address": "6920 PLEASANT VALLEY RD", "city": "VERNON", "province": "BC", "postal_code": "V1B3R5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "The Bridge Educational Society", "school_number": "2296858", "name": "Okanagan Waldorf School", - "total_students": 45, + "total_students": 51, "address": "730 WHITEVALE RD", "city": "LUMBY", "province": "BC", "postal_code": "V0E2G7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Nelson D", + "district_name": "Catholic Independent Schools of Nelson Diocese", "school_number": "2396013", "name": "Immaculata Regional High School", - "total_students": 260, + "total_students": 280, "address": "1493 K.L.O. RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W3N8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "2396023", "name": "Okanagan Christian School", - "total_students": 144, + "total_students": 131, "address": "1035 HOLLYWOOD RD S", "city": "KELOWNA", "province": "BC", "postal_code": "V1X4N3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Nelson D", + "district_name": "Catholic Independent Schools of Nelson Diocese", "school_number": "2396081", "name": "St Joseph Elementary School", - "total_students": 352, + "total_students": 342, "address": "839 SUTHERLAND AVE", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y5X4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Kelowna Christian School", "school_number": "2396281", "name": "Kelowna Christian School", - "total_students": 835, + "total_students": 842, "address": "2870 BENVOULIN RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W2E3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Lakeside Educational Society Of Kelowna", + "district_name": "Lakeside Educational Society of Kelowna", "school_number": "2396360", "name": "Lakeside School Kelowna", - "total_students": 48, + "total_students": 37, "address": "429 COLLETT RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W1K6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Kelowna Christian Centre Society", "school_number": "2396479", "name": "Flex Academy", - "total_students": 233, + "total_students": 273, "address": "907 BADKE RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X5Z5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Okanagan Montessori Elementary School So", + "district_name": "Okanagan Montessori Elementary School Society", "school_number": "2396575", "name": "Okanagan Montessori Elementary School", - "total_students": 44, + "total_students": 50, "address": "3439 EAST KELOWNA RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1W4H1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Nelson D", + "district_name": "Catholic Independent Schools of Nelson Diocese", "school_number": "2396609", "name": "Our Lady of Lourdes", - "total_students": 156, + "total_students": 135, "address": "2547 HEBERT RD", "city": "WEST KELOWNA", "province": "BC", "postal_code": "V4T2J6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Studio 9 Independent School Society", "school_number": "2396676", - "name": "Studio 9 Independent School of the Arts", - "total_students": 71, + "name": "Kelowna Arts Academy", + "total_students": 66, "address": "1180 HOUGHTON RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X2C9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Aberdeen Hall Preparatory School Society", "school_number": "2396689", "name": "Aberdeen Hall Preparatory School", - "total_students": 250, + "total_students": 663, "address": "950 ACADEMY WAY", "city": "KELOWNA", "province": "BC", "postal_code": "V1V3A4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Independent Magnet Schools", "school_number": "2396719", "name": "Kleos Open Learning", - "total_students": 462, + "total_students": 484, "address": "101-460 Doyle Ave.", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y0C2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Kelowna Christian Centre Society", "school_number": "2396738", "name": "Heritage Christian Online School", - "total_students": 4646, + "total_students": 5072, "address": "905 BADKE RD", "city": "KELOWNA", "province": "BC", "postal_code": "V1X5Z5" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Aberdeen Hall Preparatory School Society", - "school_number": "2396825", - "name": "Aberdeen Hall Senior", - "total_students": 396, - "address": "950 ACADEMY WAY", - "city": "KELOWNA", - "province": "BC", - "postal_code": "V1V3A4" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Independent Magnet Schools", "school_number": "2396966", "name": "The Balsam School", - "total_students": 110, + "total_students": 112, "address": "101-460 Doyle Ave.", "city": "KELOWNA", "province": "BC", "postal_code": "V1Y0C2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Westbank First Nation, BC", + "district_name": "The Chief And Councillors Of The Westbank First Nation, British Columbia", "school_number": "2397006", "name": "Sensisyusten House of Learning", - "total_students": 66, + "total_students": 74, "address": "1920 QUAIL LANE", "city": "WESTBANK", "province": "BC", "postal_code": "V4T2H3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "2796177", "name": "Cariboo Adventist Academy", - "total_students": 88, + "total_students": 105, "address": "1405 SOUTH LAKESIDE DR", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G3A7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Evangelical Free Church Of Williams Lake", "school_number": "2796263", "name": "Maranatha Christian School", - "total_students": 79, + "total_students": 73, "address": "1278 LAKEVIEW CRES", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G1A3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Kamloops", + "district_name": "Catholic Independent Schools of Kamloops Diocese", "school_number": "2796566", "name": "Sacred Heart Catholic School", - "total_students": 93, + "total_students": 110, "address": "455 PIGEON AVE", "city": "WILLIAMS LAKE", "province": "BC", "postal_code": "V2G4R5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Kamloops", + "district_name": "Catholic Independent Schools of Kamloops Diocese", "school_number": "2896434", "name": "St Ann's School", "total_students": 105, @@ -20583,105 +20431,105 @@ "postal_code": "V2J2J5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "North Cariboo Christian School Society", "school_number": "2896621", "name": "North Cariboo Christian School", - "total_students": 124, + "total_students": 122, "address": "2876 RED BLUFF RD", "city": "QUESNEL", "province": "BC", "postal_code": "V2J6C7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cariboo Country Congregation", "school_number": "2896902", "name": "Fraser River Christian School", - "total_students": 23, + "total_students": 19, "address": "8250 HWY 97 S", "city": "QUESNEL", "province": "BC", "postal_code": "V2J6M4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3396149", "name": "St Mary's", - "total_students": 186, + "total_students": 187, "address": "8909 MARY ST", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P4J4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Chilliwack Christian School Society", "school_number": "3396181", "name": "Unity Christian School", - "total_students": 614, + "total_students": 623, "address": "50950 HACK BROWN ROAD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V4Z1K9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Canadian Reformed School Society Of Abbo", + "district_name": "Canadian Reformed School Society of Abbotsford", "school_number": "3396192", "name": "John Calvin School", - "total_students": 292, + "total_students": 284, "address": "4268 STEWART RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2R5G2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Netherlands Reformed Congregation", "school_number": "3396209", "name": "Timothy Christian School", - "total_students": 245, + "total_students": 248, "address": "50420 CASTLEMAN RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P6H4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "City Life Church", "school_number": "3396251", "name": "Highroad Academy", - "total_students": 425, + "total_students": 424, "address": "46641 CHILLIWACK CENTRAL RD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P1K3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mount Cheam Christian School Society", "school_number": "3396354", "name": "Mount Cheam Christian School", - "total_students": 383, + "total_students": 395, "address": "48988 YALE RD EAST", "city": "CHILLIWACK", "province": "BC", "postal_code": "V4Z0B2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "3396641", "name": "Chilliwack Adventist Christian School", "total_students": 13, @@ -20691,215 +20539,215 @@ "postal_code": "V2P3K8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cascade Christian School Society", "school_number": "3396824", "name": "Cascade Christian School", - "total_students": 209, + "total_students": 207, "address": "45657 YALE ROAD", "city": "CHILLIWACK", "province": "BC", "postal_code": "V2P2N1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mennonite Educational Institute Society", "school_number": "3496020", "name": "Mennonite Educational Institute", - "total_students": 1529, + "total_students": 1521, "address": "4081 CLEARBROOK RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X2M8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Abbotsford Christian School Society", "school_number": "3496069", "name": "Abbotsford Christian School", - "total_students": 1261, + "total_students": 1260, "address": "35011 OLD CLAYBURN RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2S7L7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Christian Outreach Of Canada", "school_number": "3496320", "name": "Cornerstone Christian School", - "total_students": 237, + "total_students": 229, "address": "PO BOX 520 STN MAIN", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T6Z7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Church Of God In Christ (Mennonite)", "school_number": "3496371", "name": "Pacific Christian School", - "total_students": 19, + "total_students": 21, "address": "29623 DOWNES RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X1Z8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Dasmesh Punjabi Educational Association", "school_number": "3496425", "name": "Dasmesh Punjabi School", - "total_students": 908, + "total_students": 933, "address": "5930 RIVERSIDE ST", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V4X1T7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3496454", "name": "St James", - "total_students": 221, + "total_students": 220, "address": "2767 TOWNLINE RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T5E1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3496595", "name": "St. John Brebeuf Regional Secondary", - "total_students": 354, + "total_students": 361, "address": "2747 TOWNLINE RD", "city": "ABBOTSFORD", "province": "BC", "postal_code": "V2T5E1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "3496801", "name": "West Coast Adventist DL School", - "total_students": 94, - "address": "PO BOX 1000 STN DEL CTR", + "total_students": 109, + "address": "300-1626 McCallum Road", "city": "ABBOTSFORD", "province": "BC", - "postal_code": "V2S4P5" + "postal_code": "V2S0P1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "P163 Education Inc.", "school_number": "3596003", "name": "SKY Secondary School", - "total_students": 10, + "total_students": 19, "address": "20317 67 Ave", "city": "Langley", "province": "BC", "postal_code": "V2Y1P6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Compass Community Learning Centres", + "district_name": "COMPASS Community Learning Centres", "school_number": "3596012", "name": "COMPASS Christian Langley (Glover Rd.)", - "total_students": 17, + "total_students": 26, "address": "6866 Glover Rd", "city": "Langley", "province": "BC", "postal_code": "V2Y0W9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "3596061", "name": "Fraser Valley Adventist Academy", - "total_students": 255, + "total_students": 252, "address": "26026 48TH AVE", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W1J2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Canadian Reformed School Association Of", + "district_name": "Canadian Reformed School Association Of Langley", "school_number": "3596289", "name": "Credo Christian Schools", - "total_students": 470, + "total_students": 463, "address": "21846 52 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y2M7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Langley Christian School Society", "school_number": "3596311", "name": "Langley Christian School", - "total_students": 1267, + "total_students": 1284, "address": "22930 48 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z2T7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "The King'S Christian School Society", + "district_name": "The King's Christian School Society", "school_number": "3596376", "name": "The King's School", - "total_students": 234, + "total_students": 229, "address": "PO BOX 28 STN MILNER", "city": "LANGLEY", "province": "BC", "postal_code": "V2Y0W9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3596458", "name": "St Catherines School", - "total_students": 237, + "total_students": 241, "address": "20244 32 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z2E1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Rose Of Sharon Ministries", "school_number": "3596573", "name": "Aldergrove Christian Academy", - "total_students": 26, + "total_students": 28, "address": "26245 28TH AVE", "city": "ALDERGROVE", "province": "BC", "postal_code": "V4W2W3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Dogwood Independent School Society", "school_number": "3596607", - "name": "Dogwood School", + "name": "OneSchool Global Vancouver", "total_students": 40, "address": "23328 44 AVE", "city": "LANGLEY", @@ -20907,223 +20755,235 @@ "postal_code": "V2Z2V2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "West Coast Montessori Society", "school_number": "3596616", "name": "Murrayville Academy", - "total_students": 87, + "total_students": 72, "address": "21488 OLD YALE ROAD", "city": "LANGLEY", "province": "BC", "postal_code": "V3A4M8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Focus Foundation Of BC", "school_number": "3596631", "name": "Whytecliff Agile Learning Centre-Langley", - "total_students": 56, + "total_students": 50, "address": "20561 LOGAN AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V3A7R3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Satnam Education Society Of BC", "school_number": "3596926", "name": "Khalsa School of the Fraser Valley", - "total_students": 315, + "total_students": 361, "address": "26345 62 AVE", "city": "LANGLEY", "province": "BC", "postal_code": "V4W1L8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Fraser Valley Elementary School Society", "school_number": "3696026", "name": "Crescent Heights Academy", - "total_students": 623, + "total_students": 674, "address": "19533 64 Avenue", "city": "Surrey", "province": "BC", "postal_code": "V3S4J3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", - "school_number": "3696075", + "district_name": "Regent Christian Academy Society", + "school_number": "3696040", + "name": "Regent Christian Online Academy", + "total_students": 994, + "address": "15100 66A Ave", + "city": "Surrey", + "province": "BC", + "postal_code": "V3S2A6" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", + "school_number": "3696075", "name": "Our Lady of Good Counsel", - "total_students": 246, + "total_students": 245, "address": "10504 139 ST", "city": "SURREY", "province": "BC", "postal_code": "V3T4L5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3696117", "name": "Cloverdale Catholic School", - "total_students": 273, + "total_students": 272, "address": "17511 59 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S1P3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3696166", "name": "Holy Cross Regional High School", - "total_students": 808, + "total_students": 798, "address": "16193 88 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4N1G3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Surrey Christian School Society", "school_number": "3696266", "name": "Surrey Christian School", - "total_students": 1056, + "total_students": 1036, "address": "8888 162 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N3G1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "White Rock Christian Academy Society", "school_number": "3696309", "name": "White Rock Christian Academy", - "total_students": 608, + "total_students": 596, "address": "2265 152 ST", "city": "SURREY", "province": "BC", "postal_code": "V4A4P1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3696321", "name": "Star of the Sea", - "total_students": 469, + "total_students": 472, "address": "15024 24 AVE", "city": "SURREY", "province": "BC", "postal_code": "V4A2H8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Pacific Pentecostal Ed & Com Society", + "district_name": "Pacific Pentecostal Education And Communication Society", "school_number": "3696394", "name": "Pacific Academy", - "total_students": 1409, + "total_students": 1389, "address": "10238 168 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N1Z4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3696457", "name": "St Bernadette", - "total_students": 217, + "total_students": 215, "address": "13130 65B AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W9M1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Regent Christian Academy Society", "school_number": "3696476", "name": "Regent Christian Academy", - "total_students": 731, + "total_students": 742, "address": "15100 66A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S2A6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Satnam Education Society Of BC", "school_number": "3696585", "name": "Khalsa Secondary School (Surrey)", - "total_students": 689, + "total_students": 757, "address": "10589 124 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V0B1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cornerstone Montessori School Society", "school_number": "3696596", "name": "Cornerstone Montessori School", - "total_students": 117, + "total_students": 116, "address": "14724 84 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S2M5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Bibleway Christian Academy Foundation", "school_number": "3696602", "name": "Bibleway Christian Academy", - "total_students": 63, + "total_students": 65, "address": "18657 60 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3S7P4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "South Surrey Independent School Society", "school_number": "3696610", "name": "Southridge School", - "total_students": 699, + "total_students": 695, "address": "2656 160 ST", "city": "SURREY", "province": "BC", "postal_code": "V3Z0B7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Iqra Education Society", "school_number": "3696667", "name": "Iqra School", - "total_students": 561, + "total_students": 560, "address": "14590 116A AVE", "city": "SURREY", "province": "BC", "postal_code": "V3R2V1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "BC Muslim Association", "school_number": "3696675", @@ -21135,57 +20995,57 @@ "postal_code": "V3W0M8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Traditional Learning Society Of BC", "school_number": "3696720", "name": "Traditional Learning Academy Online", - "total_students": 1419, + "total_students": 1537, "address": "103-17688 66 Ave", "city": "SURREY", "province": "BC", "postal_code": "V3S7X1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Guru Nanak Education Society Of BC", "school_number": "3696797", "name": "Sikh Academy", - "total_students": 285, + "total_students": 319, "address": "12895-85 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W0K8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Pals Society Of Canada", "school_number": "3696814", - "name": "G.A.D. Elementary School", - "total_students": 699, + "name": "Guru Angad Dev School", + "total_students": 717, "address": "13479 77 AVE", "city": "SURREY", "province": "BC", "postal_code": "V3W6Y1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Ilearn Secondary School Society", + "district_name": "iLearn Secondary School Society", "school_number": "3696830", "name": "iLearn Secondary School Society", - "total_students": 247, + "total_students": 221, "address": "618-7184 120 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W0M6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3696866", "name": "St Matthew's Elementary", "total_students": 240, @@ -21195,139 +21055,151 @@ "postal_code": "V4N1G3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Pacific Community Resources Society", "school_number": "3696900", "name": "Honour Secondary School", - "total_students": 18, + "total_students": 21, "address": "10453 WHALLEY BLVD", "city": "SURREY", "province": "BC", "postal_code": "V3T5B1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Gobind Marg Charitable Trust Society", "school_number": "3696912", "name": "Gobind Sarvar School", - "total_students": 603, + "total_students": 640, "address": "8820 168 ST", "city": "SURREY", "province": "BC", "postal_code": "V4N6G7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cvc Newbridge Academy Society", "school_number": "3696923", "name": "Newbridge Academy", - "total_students": 26, + "total_students": 30, "address": "246-1959 152 ST", "city": "SURREY", "province": "BC", "postal_code": "V4A9E3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Saint John Paul Ii Academy Society", "school_number": "3696941", "name": "St John Paul II Academy", - "total_students": 74, - "address": "15262 PACIFIC AVE", - "city": "WHITE ROCK", + "total_students": 141, + "address": "2358 182nd Street", + "city": "Surrey", "province": "BC", - "postal_code": "V4B1P7" + "postal_code": "V3Z9V9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Satnam Education Society Of BC", "school_number": "3696947", "name": "Khalsa School Old Yale Road", - "total_students": 950, + "total_students": 991, "address": "10677 124 ST", "city": "SURREY", "province": "BC", "postal_code": "V3V0B1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Satnam Education Society Of BC", "school_number": "3696948", "name": "Khalsa School Newton", - "total_students": 1233, + "total_students": 1290, "address": "6933 124 ST", "city": "SURREY", "province": "BC", "postal_code": "V3W3W6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Al-Mustafa Islamic Association", "school_number": "3696972", "name": "Al-Mustafa School", - "total_students": 45, + "total_students": 41, "address": "5441 125A STREET", "city": "SURREY", "province": "BC", "postal_code": "V3X1W4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "G.N. Sikh School Association", "school_number": "3696989", "name": "G.N. Sikh Elementary School", - "total_students": 68, + "total_students": 106, "address": "7050 120TH ST", "city": "SURREY", "province": "BC", "postal_code": "V3W3M8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Ahmadiyya Muslim Schools Society", + "school_number": "3796029", + "name": "Ahmadiyya Muslim School", + "total_students": 16, + "address": "9570 River Road", + "city": "Delta", + "province": "BC", + "postal_code": "V4G1B5" + }, + { + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3796095", "name": "Sacred Heart", - "total_students": 397, + "total_students": 380, "address": "PO BOX 10 LCD MAIN", "city": "DELTA", "province": "BC", "postal_code": "V4K3N5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3796130", "name": "Immaculate Conception School", - "total_students": 443, + "total_students": 438, "address": "8840 119 ST", "city": "DELTA", "province": "BC", "postal_code": "V4C6M4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Delta Christian School Society", "school_number": "3796132", "name": "Delta Christian School", - "total_students": 279, + "total_students": 301, "address": "4789 53 ST", "city": "DELTA", "province": "BC", "postal_code": "V4K2Y9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mind Montessori In Delta Society", "school_number": "3796535", @@ -21339,199 +21211,187 @@ "postal_code": "V4K3N2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Tsawwassen Independent School Society", "school_number": "3796694", "name": "Southpointe Academy", - "total_students": 690, + "total_students": 711, "address": "1900 56 ST", "city": "DELTA", "province": "BC", "postal_code": "V4L2B1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3896103", "name": "St Paul School", - "total_students": 243, + "total_students": 240, "address": "8251 ST. ALBANS RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2L2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Richmond Christian School Association", "school_number": "3896178", "name": "Richmond Christian School", - "total_students": 1091, - "address": "10260 NO. 5 RD", + "total_students": 1095, + "address": "10200 NO. 5 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7A4E5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "BC Muslim Association", "school_number": "3896399", "name": "BC Muslim School", - "total_students": 370, + "total_students": 386, "address": "12300 BLUNDELL RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6W1B3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Choice School For Gifted Children", + "district_name": "Choice School For Gifted Children Society", "school_number": "3896403", "name": "Choice School For Gifted Children", - "total_students": 45, + "total_students": 42, "address": "20451 WESTMINSTER HWY", "city": "RICHMOND", "province": "BC", "postal_code": "V6V1B3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3896463", "name": "St Joseph the Worker", - "total_students": 232, + "total_students": 233, "address": "4451 WILLIAMS RD", "city": "RICHMOND", "province": "BC", "postal_code": "V7E1J7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Richmond Jewish Day School Society", "school_number": "3896570", "name": "Richmond Jewish Day School", - "total_students": 47, + "total_students": 46, "address": "8760 NO. 5 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2V4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cornerstone Evangelical Baptist Church", "school_number": "3896625", "name": "Cornerstone Christian Academy", - "total_students": 286, + "total_students": 287, "address": "7890 NO. 5 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2V2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Az-Zahraa Islamic Academy Society", "school_number": "3896729", "name": "Az-Zahraa Islamic Academy", - "total_students": 212, + "total_students": 210, "address": "8580 NO. 5 RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2V4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mia Montessori Academy Society", "school_number": "3896771", "name": "Mia Montessori Academy", - "total_students": 37, + "total_students": 39, "address": "3128 REGENT ST", "city": "RICHMOND", "province": "BC", "postal_code": "V7E2M4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Ark Elementary Montessori Reggio School", + "district_name": "Ark Elementary Montessori Reggio School Inc.", "school_number": "3896781", "name": "Ark Elementary Montessori Reggio School", - "total_students": 29, - "address": "11371 No 3 Rd.", + "total_students": 25, + "address": "Broadmoor PO Box 39509", "city": "RICHMOND", "province": "BC", - "postal_code": "V7A1X3" + "postal_code": "V7A0A9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Group Aba Children'S Society", + "district_name": "Group ABA Children's Society", "school_number": "3896843", "name": "Fawkes Academy DL", - "total_students": 98, + "total_students": 92, "address": "1110-6900 GRAYBAR RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6W0A5" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Pythagoras Academy Society", - "school_number": "3896867", - "name": "Pythagoras Academy", - "total_students": 41, - "address": "8760 No 5 Rd.", - "city": "RICHMOND", - "province": "BC", - "postal_code": "V6Y2V4" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "City Vancouver Academy Inc.", "school_number": "3896889", "name": "City Vancouver Academy", - "total_students": 31, + "total_students": 43, "address": "5900 NO. 3 RD UNIT 300", "city": "RICHMOND", "province": "BC", "postal_code": "V6X3P7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Canada Star Education Group Inc.", "school_number": "3896909", "name": "Canada Star Secondary School", - "total_students": 89, + "total_students": 87, "address": "11295 MELLIS DR", "city": "RICHMOND", "province": "BC", "postal_code": "V6X1L8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Maple Hill School Inc", "school_number": "3896927", "name": "Maple Hill School", - "total_students": 125, + "total_students": 149, "address": "120-6411 BUSWELL ST", "city": "RICHMOND", "province": "BC", "postal_code": "V6Y2G5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Canada Star Education Society", "school_number": "3896970", @@ -21543,201 +21403,225 @@ "postal_code": "V6X1L8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "0532 Education Group Ltd.", "school_number": "3896977", "name": "Chaoyin Bilingual School", - "total_students": 77, + "total_students": 86, "address": "10111 BIRD RD", "city": "RICHMOND", "province": "BC", "postal_code": "V6X1N4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "St George'S School", + "district_name": "St George's School", "school_number": "3996002", "name": "St. George's School", - "total_students": 1211, + "total_students": 1213, "address": "4175 W 29TH AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V6S1V1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Crofton House School Society", "school_number": "3996004", "name": "Crofton House", - "total_students": 913, + "total_students": 910, "address": "3200 West 41st Ave", "city": "Vancouver", "province": "BC", "postal_code": "V6N3E1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Vancouver College Limited", "school_number": "3996007", "name": "Vancouver College", - "total_students": 1095, + "total_students": 1098, "address": "5401 HUDSON ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6M0C5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "York House School Society", "school_number": "3996011", "name": "York House School", - "total_students": 682, + "total_students": 686, "address": "4176 ALEXANDRA ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J2V6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "St. Lawrence School Limited", "school_number": "3996014", "name": "St. Lawrence School", - "total_students": 10, + "total_students": 27, "address": "200-1338 West Broadway", "city": "Vancouver", "province": "BC", "postal_code": "V6H1H2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Jane Rowan Society", "school_number": "3996019", "name": "Little Flower Academy", - "total_students": 479, + "total_students": 480, "address": "4195 ALEXANDRA ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J4C6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996022", "name": "Notre Dame Regional Secondary", - "total_students": 687, + "total_students": 681, "address": "2880 VENABLES ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5K4Z6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "West Coast Christian Fellowship", "school_number": "3996025", "name": "West Coast Christian School", - "total_students": 98, + "total_students": 111, "address": "15 Renfrew St N", "city": "Vancouver", "province": "BC", "postal_code": "V5K3N6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Royal Canadian College Society", "school_number": "3996027", "name": "Royal Canadian Christian School", - "total_students": 18, + "total_students": 28, "address": "8610 ASH ST", "city": "Vancouver", "province": "BC", "postal_code": "V6P3M2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996030", "name": "St. Patrick Regional Secondary", - "total_students": 438, + "total_students": 439, "address": "115 11TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5T2C1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Coal Harbour Academy Society", + "school_number": "3996033", + "name": "Columbia Academy Elementary", + "total_students": 20, + "address": "792 Beatty St", + "city": "Vancouver", + "province": "BC", + "postal_code": "V6B2M1" + }, + { + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "1498955 B.C. LTD", + "school_number": "3996036", + "name": "ILAC International High School", + "total_students": 21, + "address": "1168 W Cordova St", + "city": "Vancouver", + "province": "BC", + "postal_code": "V6E2K9" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996070", "name": "Blessed Sacrament School", - "total_students": 196, + "total_students": 192, "address": "3020 HEATHER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z3K3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Vancouver Christian School Association", "school_number": "3996071", "name": "Vancouver Christian", - "total_students": 943, + "total_students": 944, "address": "3496 MONS DRIVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M3E6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996077", "name": "St Francis of Assisi", - "total_students": 209, + "total_students": 205, "address": "870 VICTORIA DR", "city": "VANCOUVER", "province": "BC", "postal_code": "V5L4E7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Vancouver Talmud Torah Association", "school_number": "3996083", "name": "Vancouver Talmud Torah Elementary", - "total_students": 469, + "total_students": 502, "address": "998 WEST 26TH AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z2G1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996113", "name": "Corpus Christi School", - "total_students": 466, + "total_students": 464, "address": "2360 Waverley Avenue", "city": "VANCOUVER", "province": "BC", "postal_code": "V5S0J1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996128", "name": "Our Lady Of Sorrows", "total_students": 235, @@ -21747,9 +21631,9 @@ "postal_code": "V5K3X5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996129", "name": "Immaculate Conception School", "total_students": 199, @@ -21759,331 +21643,307 @@ "postal_code": "V6S1S5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996135", "name": "St Andrew's", - "total_students": 174, + "total_students": 177, "address": "450 47TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W2B4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996138", "name": "St Augustine's", - "total_students": 409, + "total_students": 406, "address": "2154 7TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6K0E3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996140", "name": "St Francis Xavier", - "total_students": 441, + "total_students": 435, "address": "428 GREAT NORTHERN WAY", "city": "VANCOUVER", "province": "BC", "postal_code": "V5T4S5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996145", "name": "St Joseph's", - "total_students": 193, + "total_students": 181, "address": "3261 FLEMING ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N3V6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996147", "name": "St Jude's", - "total_students": 213, + "total_students": 210, "address": "2953 15TH AVE E", "city": "VANCOUVER", "province": "BC", "postal_code": "V5M2K7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996150", "name": "St Mary's", - "total_students": 292, + "total_students": 322, "address": "5239 JOYCE ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5R4G8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996161", "name": "St Patrick's Elementary", - "total_students": 181, + "total_students": 173, "address": "2850 QUEBEC ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5T3A9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996173", "name": "Our Lady of Perpetual Help", - "total_students": 430, + "total_students": 429, "address": "2550 CAMOSUN ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6R3W6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Vancouver Montessori School Society", "school_number": "3996225", "name": "Vancouver Montessori School", - "total_students": 144, + "total_students": 153, "address": "8650 BARNARD ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P5G5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Columbia College Society", "school_number": "3996319", "name": "Columbia College", - "total_students": 50, + "total_students": 35, "address": "438 TERMINAL AVE", "city": "VANCOUVER", "province": "BC", "postal_code": "V6A0C1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Vancouver Hebrew Academy Society", "school_number": "3996322", - "name": "Vancouver Hebrew Academy", - "total_students": 27, - "address": "1545 62ND AVE W", + "name": "Tamim Academy of Vancouver", + "total_students": 35, + "address": "1535 62ND AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P2E8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Fraser Academy Association", "school_number": "3996332", "name": "Fraser Academy", - "total_students": 263, + "total_students": 250, "address": "2294 10TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6K2H8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Coquitlam College Inc", "school_number": "3996349", "name": "Coquitlam College - Brookmere Secondary", - "total_students": 32, + "total_students": 37, "address": "300-2920 Virtual Way", "city": "Vancouver", "province": "BC", "postal_code": "V5M0C4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sjs St John'S School Society", + "district_name": "SJS St John's School Society", "school_number": "3996435", "name": "St. John's School", - "total_students": 551, + "total_students": 543, "address": "2215 10TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6K2J1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Maimonides School Society", "school_number": "3996451", "name": "King David High School", - "total_students": 268, + "total_students": 272, "address": "5718 WILLOW ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z4S9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "New Learning Society", "school_number": "3996475", "name": "Pacific Spirit School", - "total_students": 61, - "address": "PO BOX 34058", + "total_students": 59, + "address": "PO Box 34058 STN D", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J4M1" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Vancouver Formosa Academy Ltd", - "school_number": "3996509", - "name": "Vancouver Formosa Academy", - "total_students": 11, - "address": "5621 KILLARNEY ST", - "city": "VANCOUVER", - "province": "BC", - "postal_code": "V5R3W4" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "St John'S International School Ltd", + "district_name": "St John's International School Ltd", "school_number": "3996527", "name": "St. John's Academy", - "total_students": 43, + "total_students": 47, "address": "369 BOUNDARY RD", "city": "VANCOUVER", "province": "BC", "postal_code": "V5K4S1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Madrona School Society", "school_number": "3996594", "name": "Madrona School", - "total_students": 55, + "total_students": 49, "address": "2064 WEST 10TH AVENUE", "city": "VANCOUVER", "province": "BC", "postal_code": "V6J2B3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "West Point Grey Academy", "school_number": "3996645", "name": "West Point Grey Academy", - "total_students": 912, + "total_students": 894, "address": "4125 WEST 8TH AVENUE", "city": "VANCOUVER", "province": "BC", "postal_code": "V6R4P9" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Century High School (2003) Ltd", - "school_number": "3996659", - "name": "Century High School", - "total_students": 49, - "address": "1788 BROADWAY W UNIT 200", - "city": "VANCOUVER", - "province": "BC", - "postal_code": "V6J1Y1" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "3996662", "name": "St Anthony of Padua", - "total_students": 227, + "total_students": 230, "address": "1370 73RD AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6P3E8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Westside Montessori School (2011) Ltd", "school_number": "3996683", "name": "Westside Montessori School", - "total_students": 16, + "total_students": 20, "address": "4157 OAK ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6H2N1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Stratford Hall (School) Society", "school_number": "3996692", "name": "Stratford Hall", - "total_students": 538, + "total_students": 533, "address": "3000 Commercial Drive", "city": "VANCOUVER", "province": "BC", "postal_code": "V5N4E2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Lions Gate Montessori Society", "school_number": "3996693", "name": "Anchor Point Montessori", - "total_students": 52, - "address": "PO BOX 32138", - "city": "RICHMOND", + "total_students": 40, + "address": "15977 28 Avenue", + "city": "Surrey", "province": "BC", - "postal_code": "V6X3R9" + "postal_code": "V3Z0E5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Selfdesign Learning Foundation", "school_number": "3996721", "name": "SelfDesign Learning Community (DL)", - "total_students": 1988, + "total_students": 1987, "address": "PO BOX 74560 RPO KITSILANO", "city": "VANCOUVER", "province": "BC", "postal_code": "V6K4P4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Timesing Education Group Inc", "school_number": "3996733", "name": "Pattison High School", - "total_students": 80, + "total_students": 54, "address": "981 NELSON ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6Z3B6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Eaton Arrowsmith School Vancouver", "school_number": "3996764", @@ -22095,273 +21955,273 @@ "postal_code": "V5Z4B3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Westside Montessori Academy Society", "school_number": "3996810", "name": "Westside Montessori Academy", - "total_students": 95, + "total_students": 110, "address": "Suite 300", "city": "VANCOUVER", "province": "BC", "postal_code": "V5W2Z4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Alexander Academy Corporation", "school_number": "3996870", "name": "Alexander Academy", - "total_students": 109, + "total_students": 117, "address": "570 DUNSMUIR ST SUITE 400", "city": "VANCOUVER", "province": "BC", "postal_code": "V6B1Y1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Columbia Academy Inc.", "school_number": "3996895", "name": "Columbia Academy", - "total_students": 68, - "address": "792 BEATTY ST", + "total_students": 43, + "address": "602 West Hastings St", "city": "VANCOUVER", "province": "BC", - "postal_code": "V6B2M1" + "postal_code": "V6B1P2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Lowell High School Inc.", "school_number": "3996899", "name": "Lowell High School", - "total_students": 21, + "total_students": 32, "address": "210-750 HAMILTON ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6B2R5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Zawiyah Foundation", "school_number": "3996901", "name": "Qawsain Knowledge House", - "total_students": 40, + "total_students": 54, "address": "PO BOX 75044", "city": "VANCOUVER", "province": "BC", "postal_code": "V5X4V7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Pear Tree Education Inc.", "school_number": "3996918", "name": "Pear Tree School", - "total_students": 76, + "total_students": 96, "address": "215-2678 BROADWAY W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6K2G3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cira High School Inc.", "school_number": "3996925", "name": "Canada Royal Arts High School", - "total_students": 86, + "total_students": 102, "address": "896 8TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z1E2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Claren Academy Society", "school_number": "3996930", "name": "Claren Academy", - "total_students": 66, + "total_students": 59, "address": "201-1085 HOMER ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6B1J4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Westside Montessori School Society", "school_number": "3996937", "name": "Westside Montessori Elementary School", - "total_students": 41, + "total_students": 49, "address": "4157 Oak St", "city": "VANCOUVER", "province": "BC", "postal_code": "V6H2N1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "New Castle Institute Of English Research", + "district_name": "New Castle Institute Of English Research Corp.", "school_number": "3996944", "name": "St Regis Secondary School", - "total_students": 82, + "total_students": 89, "address": "6145 Student Union Boulevard", "city": "VANCOUVER", "province": "BC", "postal_code": "V6T1Z1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Franklin School Inc.", + "school_number": "3996958", + "name": "Franklin School", + "total_students": 17, + "address": "530 HORNBY ST - 2ND FLOOR", + "city": "VANCOUVER", + "province": "BC", + "postal_code": "V6C2E7" + }, + { + "public_or_independent": "Independent School", "district_number": "", "district_name": "Oakridge Montessori School Inc", "school_number": "3996963", "name": "Oakridge Montessori Children's Learning", - "total_students": 49, + "total_students": 27, "address": "619 45TH AVE W", "city": "VANCOUVER", "province": "BC", "postal_code": "V5Z4G2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Johnathan Academy Incorporated", + "district_name": "Johnathan Academy Inc.", "school_number": "3996964", "name": "Johnathan Academy", - "total_students": 19, + "total_students": 39, "address": "400-5750 OAK ST", "city": "VANCOUVER", "province": "BC", "postal_code": "V6M2V9" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Hongde Education Society", - "school_number": "3996973", - "name": "Hongde Elementary", - "total_students": 16, - "address": "100-688 HASTINGS ST W", - "city": "VANCOUVER", - "province": "BC", - "postal_code": "V6B1P1" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Visst Society", + "district_name": "VISST Society", "school_number": "3996980", "name": "VISST", - "total_students": 60, + "total_students": 75, "address": "200-1490 BROADWAY W", "city": "VANCOUVER", "province": "BC", "postal_code": "V6H4E8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Lower Mainland Purpose Society For Youth", + "district_name": "Lower Mainland Purpose Society For Youth And Families", "school_number": "4096707", "name": "Purpose Independent Secondary School", - "total_students": 85, + "total_students": 95, "address": "40 BEGBIE ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M3L9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Urban Academy Society", "school_number": "4096708", "name": "Urban Academy Junior", - "total_students": 303, + "total_students": 145, "address": "466 ROUSSEAU ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L3R3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Multicultural Vancouver Projects Society", "school_number": "4096747", "name": "Al-Hidayah School", - "total_students": 80, + "total_students": 77, "address": "7 - 6TH ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L2Y7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "John Knox Christian School Association", "school_number": "4096766", "name": "John Knox Christian - Secondary Campus", - "total_students": 327, + "total_students": 343, "address": "260 12TH STREET", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3M4H2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Pals Autism Society", "school_number": "4096785", "name": "PALS Autism Society (School Program)", - "total_students": 23, + "total_students": 22, "address": "101 THIRD ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L2P9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Urban Academy Society", "school_number": "4096946", "name": "Urban Academy Senior", - "total_students": 107, + "total_students": 284, "address": "466 ROUSSEAU ST", "city": "NEW WESTMINSTER", "province": "BC", "postal_code": "V3L3R3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Compass Community Learning Centres", + "district_name": "COMPASS Community Learning Centres", "school_number": "4096982", - "name": "COMPASS Christian New West", - "total_students": 41, + "name": "Compass Christian New West", + "total_students": 47, "address": "101-4644 240 ST", "city": "LANGLEY", "province": "BC", "postal_code": "V2Z2M7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "St Thomas More Collegiate Ltd", "school_number": "4196031", "name": "St. Thomas More Collegiate", - "total_students": 706, + "total_students": 705, "address": "7450 12TH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N2K1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4196072", "name": "Holy Cross Elementary School", "total_students": 250, @@ -22371,415 +22231,415 @@ "postal_code": "V5B3G2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4196085", "name": "Our Lady of Mercy", - "total_students": 236, + "total_students": 241, "address": "7481 10TH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N2S1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4196118", "name": "St. Michaels", - "total_students": 234, + "total_students": 235, "address": "9387 HOLMES ST", "city": "BURNABY", "province": "BC", "postal_code": "V3N4C3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4196139", "name": "St. Francis de Sales", - "total_students": 229, + "total_students": 227, "address": "6656 BALMORAL ST", "city": "BURNABY", "province": "BC", "postal_code": "V5E1J1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4196141", "name": "St. Helen's", - "total_students": 324, + "total_students": 334, "address": "3871 PANDORA ST.", "city": "BURNABY", "province": "BC", "postal_code": "V5C2A6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "4196169", "name": "Deer Lake SDA School", - "total_students": 299, + "total_students": 301, "address": "5550 GILPIN ST", "city": "BURNABY", "province": "BC", "postal_code": "V5G2H6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "John Knox Christian School Association", "school_number": "4196182", "name": "John Knox Christian - Elementary Campus", - "total_students": 468, + "total_students": 470, "address": "8260 13TH AVE", "city": "BURNABY", "province": "BC", "postal_code": "V3N2G5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Burnaby Montessori Elem School Society", + "district_name": "Burnaby Montessori Elementary School Society", "school_number": "4196636", "name": "Burnaby Montessori School", - "total_students": 15, + "total_students": 12, "address": "5489 KINGSWAY", "city": "BURNABY", "province": "BC", "postal_code": "V5H2G1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Focus Foundation Of BC", "school_number": "4196753", "name": "Whytecliff Agile Learning Centre-Burnaby", - "total_students": 37, + "total_students": 35, "address": "3450 BOUNDARY RD", "city": "BURNABY", "province": "BC", "postal_code": "V5M4A5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Group Aba Children'S Society", + "district_name": "Group ABA Children's Society", "school_number": "4196910", "name": "Fawkes Academy", - "total_students": 59, + "total_students": 50, "address": "103-4181 HASTINGS ST", "city": "BURNABY", "province": "BC", "postal_code": "V5C2J3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Haney-Pitt Meadows Christian School", + "district_name": "Haney-Pitt Meadows Christian School Association", "school_number": "4296099", "name": "Maple Ridge Christian School", - "total_students": 382, + "total_students": 434, "address": "12140 204B ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X2Z5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4296153", "name": "St Patrick's", - "total_students": 232, + "total_students": 226, "address": "22589 121 AVE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X3T5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Fraser Valley Society", + "district_name": "Fraser Valley Society For Children With Learning Disabilities", "school_number": "4296369", "name": "James Cameron School", - "total_students": 58, + "total_students": 66, "address": "PO BOX 157 STN MAPLE RIDGE", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X7G1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Meadowridge School Society", "school_number": "4296400", "name": "Meadowridge School", - "total_students": 630, + "total_students": 615, "address": "12224 240 ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V4R1N1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Meadow Montessori School", "school_number": "4296468", "name": "Meadow Montessori", - "total_students": 56, + "total_students": 51, "address": "11391 DARTFORD ST", "city": "MAPLE RIDGE", "province": "BC", "postal_code": "V2X1V6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Canyon Springs Montessori School Society", "school_number": "4296681", "name": "Canyon Springs Montessori Academy", - "total_students": 18, + "total_students": 26, "address": "18477 OLD DEWDNEY TRUNK RD", "city": "PITT MEADOWS", "province": "BC", "postal_code": "V3Y1Z1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4396074", "name": "Our Lady of Fatima", - "total_students": 339, + "total_students": 353, "address": "315 WALKER ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K4C7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4396137", "name": "Queen of All Saints Elementary", - "total_students": 226, + "total_students": 239, "address": "1405 COMO LAKE AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J3P4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4396380", "name": "Our Lady of the Assumption", - "total_students": 241, + "total_students": 244, "address": "2255 FRASER AVE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B6G8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "BC Christian Academy Society", "school_number": "4396579", "name": "British Columbia Christian Academy", - "total_students": 543, + "total_students": 544, "address": "1019 FERNWOOD AVE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B5A8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Traditional Learning Society Of BC", "school_number": "4396588", "name": "Traditional Learning Academy", - "total_students": 179, + "total_students": 161, "address": "1189 ROCHESTER AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3K2X3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4396629", "name": "Archbishop Carney Regional Secondary", - "total_students": 676, + "total_students": 681, "address": "1335 DOMINION AVE", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B8G7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Hope Lutheran Church Of Port Coquitlam", "school_number": "4396635", "name": "Hope Lutheran Christian School", - "total_students": 270, + "total_students": 260, "address": "3151 YORK ST", "city": "PORT COQUITLAM", "province": "BC", "postal_code": "V3B4A7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mle Training And Research Society", "school_number": "4396727", "name": "Greater Heights Learning Academy", - "total_students": 50, + "total_students": 51, "address": "550 THOMPSON AVE", "city": "COQUITLAM", "province": "BC", "postal_code": "V3J3Z8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Coima Montessori Society", + "district_name": "COIMA Montessori Society", "school_number": "4396806", "name": "Children of Integrity Montessori", - "total_students": 60, + "total_students": 50, "address": "2541 QUAY PL", "city": "COQUITLAM", "province": "BC", "postal_code": "V3H3S7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Royal Bridge High School Inc", "school_number": "4396924", "name": "Royal Bridge High School", - "total_students": 33, + "total_students": 43, "address": "301-1123 WESTWOOD ST", "city": "COQUITLAM", "province": "BC", "postal_code": "V5H4G5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4496062", "name": "St. Thomas Aquinas", - "total_students": 596, + "total_students": 623, "address": "541 KEITH RD W", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7M1M5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4496120", "name": "Holy Trinity School", - "total_students": 218, + "total_students": 217, "address": "128 27TH ST W", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7N2H1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4496151", "name": "St. Edmund's", - "total_students": 177, + "total_students": 180, "address": "535 MAHON AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7M2R7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Society For Children With Disabilities", + "district_name": "Society For The Education Of Children With Specific Learning Disabilities", "school_number": "4496204", "name": "Kenneth Gordon", - "total_students": 145, + "total_students": 140, "address": "420 SEYMOUR RIVER PL", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7H1S8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Vancouver Waldorf School Society", "school_number": "4496214", "name": "Vancouver Waldorf School", - "total_students": 224, - "address": "2725 ST. CHRISTOPHER'S RD", + "total_students": 200, + "address": "2725 St. Christophers Rd", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7K2B6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Bodwell High School Inc.", "school_number": "4496551", "name": "Bodwell High School", - "total_students": 416, + "total_students": 374, "address": "955 Harbourside Drive", "city": "North Vancouver", "province": "BC", "postal_code": "V7P3S4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Lions Gate Christian Academy Association", "school_number": "4496606", "name": "Lions Gate Christian Academy", - "total_students": 345, + "total_students": 357, "address": "919 TOLLCROSS RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7H2G3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "L'Ecole Francaise Int'L De Vancouver", + "district_name": "Cousteau, L'Ecole Francaise Internationale De Vancouver", "school_number": "4496638", "name": "Cousteau L'ecole Francaise Interna'le", - "total_students": 181, + "total_students": 178, "address": "3657 FROMME RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7K2E6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4496652", "name": "St. Pius X Elementary School", - "total_students": 218, + "total_students": 220, "address": "1150 MT. SEYMOUR ROAD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7G1R6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "North Star Montessori Elementary Society", "school_number": "4496654", @@ -22791,333 +22651,321 @@ "postal_code": "V7J1J3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Brockton Preparatory School Society", "school_number": "4496739", "name": "Brockton Preparatory School", - "total_students": 318, + "total_students": 317, "address": "3467 DUVAL RD", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7J3E8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "St Alcuin College For The Liberal Arts", + "district_name": "St Alcuin College For The Liberal Arts Society", "school_number": "4496861", "name": "St. Alcuin College for the Liberal Arts", - "total_students": 112, + "total_students": 115, "address": "200-1046 ST. GEORGES AVE", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7L3H6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Sap Outdoor Association", "school_number": "4496978", "name": "Saplings Nature School", - "total_students": 34, + "total_students": 39, "address": "1390 W22ND STREET", "city": "NORTH VANCOUVER", "province": "BC", "postal_code": "V7P2G4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4596076", "name": "St. Anthony's", - "total_students": 194, + "total_students": 191, "address": "595 KEITH RD", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7T1L8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Collingwood School Society", "school_number": "4596367", "name": "Collingwood School", - "total_students": 1222, + "total_students": 1223, "address": "70 MORVEN DR", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7S1B2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Island Pacific School Society", "school_number": "4596639", "name": "Island Pacific School", - "total_students": 47, + "total_students": 43, "address": "671 CARTER ROAD", "city": "BOWEN ISLAND", "province": "BC", "postal_code": "V0N1G0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mulgrave Independent School Society", "school_number": "4596701", "name": "Mulgrave School", - "total_students": 942, + "total_students": 952, "address": "2330 CYPRESS BOWL LANE", "city": "WEST VANCOUVER", "province": "BC", "postal_code": "V7S3H9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Vancouve", + "district_name": "Catholic Independent Schools of Vancouver Archdiocese", "school_number": "4796088", "name": "Assumption School", - "total_students": 114, + "total_students": 96, "address": "7091 GLACIER ST", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A1R8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Powell River Christian School Society", "school_number": "4796622", "name": "Powell River Christian School", - "total_students": 121, + "total_students": 136, "address": "6960 QUESNEL ST", "city": "POWELL RIVER", "province": "BC", "postal_code": "V8A1J2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Whistler Waldorf School Society", "school_number": "4896700", "name": "Whistler Waldorf School", - "total_students": 163, - "address": "PO BOX 1501", + "total_students": 180, + "address": "7324 Kirkpatrick Way", "city": "WHISTLER", "province": "BC", - "postal_code": "V0N1B0" + "postal_code": "V8E0E8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Squamish Waldorf School Association", "school_number": "4896709", "name": "Squamish Waldorf School", - "total_students": 66, + "total_students": 80, "address": "38265 WESTWAY AVE", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0Y5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Squamish Montessori Society", "school_number": "4896826", "name": "Skyridge Montessori Elementary", - "total_students": 125, + "total_students": 129, "address": "41273 HORIZON DR", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0Y7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Coast Mountain Academy Society", "school_number": "4896871", "name": "Coast Mountain Academy", - "total_students": 127, + "total_students": 113, "address": "3295 MAMQUAM RD", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0T8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Sea To Sky Montessori Society", "school_number": "4896974", "name": "Sea to Sky Montessori School", - "total_students": 32, + "total_students": 43, "address": "103-42000 Loggers Lane", "city": "SQUAMISH", "province": "BC", "postal_code": "V8B0H3" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Global Impact Education Corporation", - "school_number": "4896976", - "name": "Phoenix Magnet Academy", - "total_students": 23, - "address": "3190 UNIVERSITY BOULEVARD", - "city": "SQUAMISH", - "province": "BC", - "postal_code": "V8B0P8" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Bella Bella Community School Society", "school_number": "4997012", "name": "Bella Bella Community School", - "total_students": 242, + "total_students": 225, "address": "GENERAL DELIVERY", "city": "BELLA BELLA", "province": "BC", "postal_code": "V0T1Z0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Nuxalk Acwsalcmalslayc Society", "school_number": "4997170", "name": "Acwsalcta Band School", - "total_students": 167, + "total_students": 172, "address": "PO BOX 778", "city": "BELLA COOLA", "province": "BC", "postal_code": "V0T1C0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Daajing Giids Youth Education Society", "school_number": "5096623", "name": "Living And Learning School", - "total_students": 23, + "total_students": 19, "address": "PO BOX 850", "city": "Daajing Giids", "province": "BC", "postal_code": "V0T1S0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "5296122", "name": "Annunciation School", - "total_students": 210, + "total_students": 216, "address": "627 5TH AVE W", "city": "PRINCE RUPERT", "province": "BC", "postal_code": "V8J1V1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Senpokchin Education Society", "school_number": "5397491", "name": "Senpaq'cin School", - "total_students": 98, - "address": "1155 SENPOKCHIN BLVD", + "total_students": 91, + "address": "1156 SENPOKCHIN BLVD", "city": "OLIVER", "province": "BC", "postal_code": "V0H1T8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Canadian Reformed School Association Of", + "district_name": "Canadian Reformed School Association Of Smithers", "school_number": "5496064", "name": "Ebenezer Canadian Reformed School", - "total_students": 251, + "total_students": 241, "address": "PO BOX 3700", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Christian School Society Of Houston", + "district_name": "Christian School Society of Houston", "school_number": "5496091", "name": "Houston Christian School", - "total_students": 161, + "total_students": 144, "address": "PO BOX 237", "city": "HOUSTON", "province": "BC", "postal_code": "V0J1Z0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Bulkley Valley Christian School Society", "school_number": "5496124", "name": "Bulkley Valley Christian School", "total_students": 284, - "address": "PO BOX 3635", - "city": "SMITHERS", + "address": "PO Box 3635", + "city": "Smithers", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "5496157", "name": "St Joseph's", - "total_students": 170, + "total_students": 176, "address": "PO Box 454", "city": "Smithers", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Bulkley Valley Christian School Society", "school_number": "5496782", "name": "Bulkley Valley Christian Online School", - "total_students": 34, + "total_students": 49, "address": "PO BOX 3635", "city": "SMITHERS", "province": "BC", "postal_code": "V0J2N0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "5796144", "name": "Sacred Heart", - "total_students": 173, + "total_students": 170, "address": "785 PATRICIA BLVD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2L3V5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "5796160", "name": "St. Mary's", - "total_students": 208, + "total_students": 202, "address": "1088 GILLETT ST", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M2V3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "5796170", "name": "Robson Valley Junior Academy", "total_students": 10, @@ -23127,583 +22975,571 @@ "postal_code": "V0J2E0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Cedars Christian School", "school_number": "5796230", "name": "Cedars Christian School", - "total_students": 455, + "total_students": 495, "address": "600 PRESTON ROAD", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2K1A8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "5796310", "name": "Immaculate Conception", - "total_students": 200, + "total_students": 198, "address": "3285 CATHEDRAL AVE", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N6R4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Westside Family Fellowship Society", "school_number": "5796491", "name": "Westside Academy", - "total_students": 166, + "total_students": 118, "address": "3791 HIGHWAY 16 W", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2N5P8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Zion Lutheran Church & Christian School", + "district_name": "Zion Lutheran Church And Christian School Of Prince George", "school_number": "5796684", "name": "Zion Lutheran Christian School", - "total_students": 34, + "total_students": 35, "address": "180 TABOR BLVD S", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V2M5T4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Diversity By Design Society", "school_number": "5796841", "name": "Pathways Academy", - "total_students": 281, + "total_students": 260, "address": "BOX 10096 RPO HART", "city": "PRINCE GEORGE", "province": "BC", "postal_code": "V0E1Y0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Chief & Councillors Of Upper Nicola Band", + "district_name": "Chief And Councillors Of Upper Nicola Band Merritt BC", "school_number": "5897019", - "name": "Nkwala School", - "total_students": 10, - "address": "PO BOX 3700", - "city": "MERRITT", + "name": "N'kwala School", + "total_students": 16, + "address": "General Delivery", + "city": "Douglas Lake", "province": "BC", - "postal_code": "V1K1B8" + "postal_code": "V0E1S0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Chief & Council Of Lower Nicola Ind Band", + "district_name": "Chief & Councillors Of The Lower Nicola Indian Band", "school_number": "5897032", "name": "Lower Nicola Band School", - "total_students": 92, + "total_students": 98, "address": "201 Horn Rd", "city": "Merritt", "province": "BC", "postal_code": "V1K1M9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "5996172", "name": "Notre Dame", - "total_students": 201, + "total_students": 203, "address": "925 104 AVE", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G2H8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "5996188", "name": "Peace Christian School", - "total_students": 112, + "total_students": 120, "address": "PO BOX 2050", "city": "CHETWYND", "province": "BC", "postal_code": "V0C1J0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mountain Christian School Society", "school_number": "5996252", "name": "Mountain Christian School", - "total_students": 279, + "total_students": 301, "address": "9700 5 ST", "city": "DAWSON CREEK", "province": "BC", "postal_code": "V1G3L4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Christian Life Centre Of Fort St John", "school_number": "6096473", "name": "Christian Life School", - "total_students": 138, + "total_students": 142, "address": "8923 112 AVE", "city": "FORT ST JOHN", "province": "BC", "postal_code": "V1J6G2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Freedom Thinkers Education Pbl Society", "school_number": "6096911", "name": "Freedom Thinkers Education", - "total_students": 92, + "total_students": 94, "address": "5730 BALDONNEL RD", "city": "BALDONNEL", "province": "BC", "postal_code": "V0C1C6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Chabad Of Vancouver Island", + "district_name": "Chabad of Vancouver Island", "school_number": "6196001", "name": "Kineret Tamim Academy", - "total_students": 10, + "total_students": 17, "address": "2955 Glasgow St", "city": "Victoria", "province": "BC", "postal_code": "V8T4H1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "St. Michaels University School Society", "school_number": "6196008", - "name": "St. Michaels University School", - "total_students": 1010, + "name": "St Michaels University School", + "total_students": 1012, "address": "3400 RICHMOND RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8P4P5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "St Margaret'S School", + "district_name": "St Margaret's School", "school_number": "6196010", "name": "St. Margaret's", - "total_students": 267, + "total_students": 272, "address": "1080 LUCAS AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8X3P7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Glenlyon Norfolk School Society", "school_number": "6196021", "name": "Glenlyon Norfolk School", - "total_students": 730, + "total_students": 697, "address": "781 RICHMOND AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8S3Z2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Victoria Christian Education Society", "school_number": "6196084", "name": "Pacific Christian School", - "total_students": 805, + "total_students": 800, "address": "654 AGNES ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z2E6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of The Dioc", + "district_name": "Catholic Independent Schools of the Diocese Of Victoria", "school_number": "6196107", "name": "St Joseph's Catholic", - "total_students": 373, + "total_students": 379, "address": "757 BURNSIDE RD W", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z1M9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of The Dioc", + "district_name": "Catholic Independent Schools of the Diocese Of Victoria", "school_number": "6196154", "name": "St Patrick's School", - "total_students": 321, + "total_students": 331, "address": "2368 TRENT ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8R4Z3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Discovery School Society", "school_number": "6196265", "name": "Discovery School", - "total_students": 79, + "total_students": 82, "address": "4052 WILKINSON RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Z5A5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of The Dioc", + "district_name": "Catholic Independent Schools of the Diocese Of Victoria", "school_number": "6196341", "name": "St Andrew's Regional High", - "total_students": 424, + "total_students": 457, "address": "880 MCKENZIE AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8X3G5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Pacific Montessori Society", "school_number": "6196347", "name": "Selkirk Montessori School", - "total_students": 253, + "total_students": 259, "address": "2970 JUTLAND RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8T5K2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Maharishi Age Of Enlightenment Society", + "district_name": "Maharishi Age Of Enlightenment School Society", "school_number": "6196395", "name": "Victoria School for Ideal Education", - "total_students": 80, + "total_students": 81, "address": "2820 BELMONT AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8R4B1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Int'L Assoc Of Progressive Montessorians", + "district_name": "International Association Of Progressive Montessorians", "school_number": "6196427", "name": "Maria Montessori Academy", - "total_students": 246, + "total_students": 243, "address": "1841 FAIRBURN DR", "city": "VICTORIA", "province": "BC", "postal_code": "V8N1P8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Christ Church Cathedral Ed Society", + "district_name": "Christ Church Cathedral Educational Society", "school_number": "6196520", "name": "Christ Church Cathedral School", - "total_students": 162, + "total_students": 138, "address": "912 VANCOUVER ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8V3V7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Bioregional Education Association", "school_number": "6196695", "name": "Oak and Orca Bioregional School", - "total_students": 21, + "total_students": 19, "address": "2738 Higgins Street", "city": "Victoria", "province": "BC", "postal_code": "V8T3N1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Bioregional Education Association", "school_number": "6196745", "name": "Oak and Orca School (DL)", - "total_students": 157, + "total_students": 155, "address": "2738 HIGGINS ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8T3N1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Artemis Place Society", "school_number": "6196827", "name": "Artemis Place Secondary", - "total_students": 45, + "total_students": 52, "address": "3020 RICHMOND RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8R4V1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Learningstorm Education Society", "school_number": "6196868", "name": "Pacific School of Innovation and Inquiry", - "total_students": 89, + "total_students": 111, "address": "100-808 DOUGLAS ST", "city": "VICTORIA", "province": "BC", "postal_code": "V8W2B6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Artscalibre Foundation", "school_number": "6196891", "name": "ArtsCalibre Academy", - "total_students": 39, - "address": "2625 ARBUTUS RD", + "total_students": 32, + "address": "3909 St. Georges Lane", "city": "VICTORIA", "province": "BC", - "postal_code": "V8N1W4" + "postal_code": "V8N4E3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Epiphyte Educational Society", "school_number": "6196975", "name": "VI School of Innovation and Inquiry", - "total_students": 21, - "address": "1309 HILLSIDE AVE", + "total_students": 20, + "address": "1307 HILLSIDE AVE", "city": "VICTORIA", "province": "BC", "postal_code": "V8T2B3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Western Communities Montessori Society", "school_number": "6296432", - "name": "Westmont School", - "total_students": 223, + "name": "Westmont Montessori School", + "total_students": 231, "address": "4075 METCHOSIN RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9C4A4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Lighthouse Christian Academy Society", "school_number": "6296461", "name": "Lighthouse Christian Academy", - "total_students": 196, + "total_students": 189, "address": "1289 PARKDALE DR", "city": "VICTORIA", "province": "BC", "postal_code": "V9B4G9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Brookes Westshore School Society", "school_number": "6296945", "name": "Brookes Westshore", - "total_students": 300, + "total_students": 298, "address": "1939 SOOKE RD", "city": "VICTORIA", "province": "BC", "postal_code": "V9B1W2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Sda Church - BC Conference", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", "school_number": "6396127", "name": "Lakeview Christian School", - "total_students": 62, + "total_students": 63, "address": "729 CORDOVA BAY RD", "city": "VICTORIA", "province": "BC", "postal_code": "V8Y1P7" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Regent Christian Academy Society", - "school_number": "6396767", - "name": "Regent Christian Online Academy", - "total_students": 1043, - "address": "107-19 DALLAS RD", - "city": "VICTORIA", - "province": "BC", - "postal_code": "V8V5A6" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Nelson D", + "district_name": "Catholic Independent Schools of Nelson Diocese", "school_number": "6796080", "name": "Holy Cross School", - "total_students": 215, + "total_students": 220, "address": "1298 MAIN ST", "city": "PENTICTON", "province": "BC", "postal_code": "V2A5G2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Penticton Christian School Society", "school_number": "6796500", "name": "Penticton Christian School", - "total_students": 86, + "total_students": 92, "address": "102-96 EDMONTON AVE", "city": "PENTICTON", "province": "BC", "postal_code": "V2A2G8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "South Okanagan Montessori School Society", "school_number": "6796687", "name": "Summerland Montessori School", - "total_students": 58, + "total_students": 59, "address": "BOX 603", "city": "SUMMERLAND", "province": "BC", "postal_code": "V0H1Z0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Unisus International Schools Society", "school_number": "6796942", "name": "Unisus Junior School", - "total_students": 73, + "total_students": 62, "address": "7808 PIERRE DR", "city": "SUMMERLAND", "province": "BC", "postal_code": "V0H1Z2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Unisus International School Ltd", + "district_name": "Unisus International Schools Ltd", "school_number": "6796951", "name": "Unisus Senior School", - "total_students": 51, + "total_students": 68, "address": "7808 PIERRE DR", "city": "SUMMERLAND", "province": "BC", "postal_code": "V0H1Z2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Discover Montessori Society", "school_number": "6896229", "name": "Discover Montessori School", - "total_students": 141, + "total_students": 145, "address": "3460 JINGLE POT RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9R6W9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Nanaimo Christian School (1988) Society", "school_number": "6896256", "name": "Nanaimo Christian School", - "total_students": 687, + "total_students": 701, "address": "198 HOLLAND RD", "city": "NANAIMO", "province": "BC", "postal_code": "V9R6W2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Central Island Independent Sch Society", + "district_name": "Central Island Independent School Society", "school_number": "6896730", "name": "Aspengrove School", - "total_students": 265, + "total_students": 317, "address": "7660 CLARK DR", "city": "LANTZVILLE", "province": "BC", "postal_code": "V0R2H0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Stz'Uminus Education Society", + "district_name": "Stz'uminus Education Society", "school_number": "6897002", "name": "Stz'uminus Senior Secondary", - "total_students": 42, + "total_students": 59, "address": "3891 SHELL BEACH RD", "city": "LADYSMITH", "province": "BC", "postal_code": "V9G1K6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Coast Karma Learning Society", "school_number": "6996000", "name": "Coast Karma Academy", - "total_students": 60, + "total_students": 76, "address": "PO Box 309", "city": "Qualicum Beach", "province": "BC", "postal_code": "V9K1S8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Arrowsmith Independent School Society", "school_number": "6996656", "name": "Arrowsmith Independent School", - "total_students": 46, + "total_students": 39, "address": "861 HILLIERS RD", "city": "QUALICUM BEACH", "province": "BC", "postal_code": "V9K1X5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of The Dioc", + "district_name": "Catholic Independent Schools of the Diocese Of Victoria", "school_number": "7096763", "name": "John Paul II Catholic School", - "total_students": 148, + "total_students": 151, "address": "4006 8TH AVE", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y4S4" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Ahousat Education Authority", "school_number": "7097045", @@ -23715,139 +23551,139 @@ "postal_code": "V0R1A0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Haahuupayak Society", "school_number": "7097093", "name": "Haahuupayak School", - "total_students": 154, + "total_students": 153, "address": "6000 SANTU DR", "city": "PORT ALBERNI", "province": "BC", "postal_code": "V9Y8X9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Ahousat Education Authority", "school_number": "7097490", "name": "Maaqtusiis Elementary", - "total_students": 101, + "total_students": 97, "address": "GENERAL DELIVERY", "city": "AHOUSAHT", "province": "BC", "postal_code": "V0R1A0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Northgate Christian Education Society", "school_number": "7196327", "name": "Phil & Jennie Gaglardi Academy", - "total_students": 288, + "total_students": 280, "address": "1475 NOEL AVE", "city": "COMOX", "province": "BC", "postal_code": "V9M3H8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Beachcombers Education Society", "school_number": "7196822", "name": "Beachcombers Academy", - "total_students": 63, + "total_students": 59, "address": "7375 ISLAND HIGHWAY", "city": "FANNY BAY", "province": "BC", "postal_code": "V0R1W0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Campbell River Christian School Society", "school_number": "7296335", "name": "Campbell River Christian School", - "total_students": 234, + "total_students": 229, "address": "250 SOUTH DOGWOOD ST", "city": "CAMPBELL RIVER", "province": "BC", "postal_code": "V9W6Y7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Kamloops", + "district_name": "Catholic Independent Schools of Kamloops Diocese", "school_number": "7396094", "name": "Our Lady of Perpetual Help", - "total_students": 150, + "total_students": 148, "address": "235 POPLAR ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B4B9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Kamloops", + "district_name": "Catholic Independent Schools of Kamloops Diocese", "school_number": "7396194", "name": "St. Ann's Academy", - "total_students": 376, + "total_students": 392, "address": "205 COLUMBIA ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C2S7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Kamloops Christian School Association", "school_number": "7396280", "name": "Kamloops Christian School", - "total_students": 304, + "total_students": 292, "address": "750 COTTONWOOD AVE", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B3X2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of Kamloops", + "district_name": "Catholic Independent Schools of Kamloops Diocese", "school_number": "7396838", "name": "Ascend Online Distributed Learning Prg.", - "total_students": 654, + "total_students": 710, "address": "635A TRANQUILLE RD", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2B3H5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "The First Baptist Church, Kamloops BC", "school_number": "7396939", - "name": "First Baptist Classical Academy of Kamlo", - "total_students": 70, + "name": "First Baptist Classical Academy of Kamloops", + "total_students": 54, "address": "454 COLUMBIA ST", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2C2T5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Chief & Council Kamloops Indian Band", + "district_name": "Chief & Council Of The Kamloops Indian Band", "school_number": "7397036", "name": "Sk'elep School of Excellence", - "total_students": 124, + "total_students": 131, "address": "365 POW WOW TRAIL", "city": "KAMLOOPS", "province": "BC", "postal_code": "V2H1H1" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Fountainview Academy Association", "school_number": "7496333", @@ -23859,268 +23695,436 @@ "postal_code": "V0K1V0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Stein Valley Nlakapamux School Society", "school_number": "7497493", "name": "Stein Valley Nlakapamux School", - "total_students": 117, + "total_students": 130, "address": "BAG 300", "city": "LYTTON", "province": "BC", "postal_code": "V0K1Z0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Seminary Of Christ The King", + "district_name": "Seminary of Christ the King", "school_number": "7596034", "name": "Seminary of Christ the King", - "total_students": 23, + "total_students": 24, "address": "PO BOX 3310", "city": "MISSION", "province": "BC", "postal_code": "V2V4J5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Valley Christian School Society", "school_number": "7596460", "name": "Valley Christian School", - "total_students": 143, + "total_students": 132, "address": "8955 CEDAR ST", "city": "MISSION", "province": "BC", "postal_code": "V4S1A3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Valley Christian School Society", "school_number": "7596839", "name": "Valley Christian Online School", - "total_students": 24, + "total_students": 22, "address": "8955 CEDAR ST", "city": "MISSION", "province": "BC", "postal_code": "V4S1A3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Agassiz Christian School Society", "school_number": "7896105", "name": "Agassiz Christian School", - "total_students": 94, + "total_students": 111, "address": "7571 MORROW RD", "city": "AGASSIZ", "province": "BC", "postal_code": "V0M1A2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Brentwood College Association", "school_number": "7996005", "name": "Brentwood College", - "total_students": 521, + "total_students": 541, "address": "2735 MT BAKER RD", "city": "MILL BAY", "province": "BC", - "postal_code": "V0R2P1" + "postal_code": "V8H1K8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Shawnigan Lake School Society", "school_number": "7996006", "name": "Shawnigan Lake", - "total_students": 549, + "total_students": 529, "address": "1975 RENFREW RD", "city": "SHAWNIGAN LAKE", "province": "BC", "postal_code": "V8H2G7" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Queen Margaret'S School", + "district_name": "Queen Margaret's School", "school_number": "7996017", "name": "Queen Margaret's", - "total_students": 523, + "total_students": 503, "address": "660 BROWNSEY AVE", "city": "DUNCAN", "province": "BC", "postal_code": "V9L1C2" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Duncan Christian School Association", + "district_name": "Duncan Christian School Association (1979)", "school_number": "7996086", "name": "Duncan Christian School", - "total_students": 447, + "total_students": 473, "address": "495 BEECH AVE", "city": "DUNCAN", "province": "BC", "postal_code": "V9L3J8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Of The Dioc", + "district_name": "Catholic Independent Schools of the Diocese Of Victoria", "school_number": "7996167", "name": "Queen of Angels School", - "total_students": 246, + "total_students": 282, "address": "2085 MAPLE BAY RD", "city": "DUNCAN", "province": "BC", "postal_code": "V9L5L9" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Sunrise Educational Society", "school_number": "7996368", "name": "Sunrise Waldorf School", - "total_students": 153, + "total_students": 156, "address": "2148 LAKESIDE RD", "city": "DUNCAN", "province": "BC", "postal_code": "V9L6M3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Evergreen Independent School Society", "school_number": "7996446", "name": "Evergreen Independent School", - "total_students": 57, + "total_students": 40, "address": "3515 Watson Ave", "city": "COBBLE HILL", "province": "BC", "postal_code": "V8H4A8" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Noorunissa Montessori Academy Of Canada", "school_number": "7996959", "name": "Noorunissa Montessori Academy of Canada", - "total_students": 22, + "total_students": 26, "address": "2375 KOKSILAH RD", "city": "DUNCAN", "province": "BC", "postal_code": "V9L6M5" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "St John'S Academy Shawnigan Lake Society", + "district_name": "St John's Academy Shawnigan Lake Society", "school_number": "7996965", "name": "St John's Preparatory Academy Shawnigan", - "total_students": 195, + "total_students": 159, "address": "2371 SHAWNIGAN LAKE RD", "city": "SHAWNIGAN LAKE", "province": "BC", "postal_code": "V8H2H1" }, { - "public_or_independent": "BC Independent School", - "district_number": "", - "district_name": "Penelakut Island Learning Centre Society", - "school_number": "7997497", - "name": "Penelakut Island Learning Centre", - "total_students": 61, - "address": "11330 CLAM BAY ROAD NORTH", - "city": "PENELAKUT", - "province": "BC", - "postal_code": "V0R5K0" - }, - { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Chalo Independent School Society", "school_number": "8197137", "name": "Chalo School", - "total_students": 106, + "total_students": 110, "address": "295 ALASKA HIGHWAY", "city": "FORT NELSON", "province": "BC", "postal_code": "V0C1R0" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "8296115", "name": "St Anthony's", - "total_students": 212, + "total_students": 216, "address": "1750 NALABILA BLVD", "city": "KITIMAT", "province": "BC", "postal_code": "V8C1E6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Catholic Independent Schools Diocese Of", + "district_name": "Catholic Independent Schools Diocese of Prince George", "school_number": "8296162", "name": "Veritas Catholic", - "total_students": 237, + "total_students": 240, "address": "4836 STRAUME AVE", "city": "TERRACE", "province": "BC", "postal_code": "V8G4G3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Terrace Calvin Christian School Society", "school_number": "8296183", "name": "Centennial Christian School", - "total_students": 190, + "total_students": 206, "address": "3608 SPARKS ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G2V6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", "district_name": "Mountain View Christian Academy Society", "school_number": "8296731", "name": "Mountain View Christian Academy", - "total_students": 51, + "total_students": 60, "address": "3306 GRIFFITH ST", "city": "TERRACE", "province": "BC", "postal_code": "V8G0C6" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Gitsegukla Community Education Develop.", + "district_name": "Gitsegukla Community Education Development Authority Association", "school_number": "8297020", "name": "Gitsegukla Elementary School", - "total_students": 41, + "total_students": 37, "address": "305 PARK DR", "city": "GITSEGUKLA", "province": "BC", "postal_code": "V0J2J3" }, { - "public_or_independent": "BC Independent School", + "public_or_independent": "Independent School", "district_number": "", - "district_name": "Chief & Councillors Of The Kitsumkalum", - "school_number": "8297024", - "name": "'Na Aksa Gyilak'yoo School", - "total_students": 73, - "address": "3529 WEST KALUM RD", - "city": "TERRACE", + "district_name": "Anspayaxw School Society", + "school_number": "8297051", + "name": "Kispiox Community School", + "total_students": 126, + "address": "1439 MARY BLACKWATER DR", + "city": "KISPIOX", + "province": "BC", + "postal_code": "V0J1Y4" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Kyah Wiget Education Society", + "school_number": "8297485", + "name": "Witset Elementary & Secondary School", + "total_students": 81, + "address": "205 BEAVER RD UNIT 2", + "city": "SMITHERS", + "province": "BC", + "postal_code": "V0J2N1" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", + "school_number": "8396116", + "name": "North Okanagan Junior Academy", + "total_students": 58, + "address": "4699 GRANDVIEW FLATS RD S", + "city": "SPALLUMCHEEN", + "province": "BC", + "postal_code": "V4Y0P6" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Shuswap Christian Education Society", + "school_number": "8396240", + "name": "King's Christian School", + "total_students": 298, + "address": "350B 30 ST NE", + "city": "SALMON ARM", "province": "BC", - "postal_code": "V8G0C8" + "postal_code": "V1E1J2" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", + "school_number": "8396329", + "name": "Shuswap SDA", + "total_students": 33, + "address": "3270 B 60TH AVE NE", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E2A9" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Anchor Academy Society", + "school_number": "8396713", + "name": "Anchor Academy (DL)", + "total_students": 726, + "address": "PO BOX 3015", + "city": "SALMON ARM", + "province": "BC", + "postal_code": "V1E4R8" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Christian Home E-School Society", + "school_number": "8396714", + "name": "Christian Homelearners eStreams", + "total_students": 726, + "address": "3775 Schubert Rd", + "city": "Armstrong", + "province": "BC", + "postal_code": "V4Y0K5" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "The Church Of God In Christ, Mennonite (Enderby)", + "school_number": "8396846", + "name": "Mountain View Christian", + "total_students": 39, + "address": "20 GARDOM LAKE RD", + "city": "ENDERBY", + "province": "BC", + "postal_code": "V4Y4H4" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Seventh-Day Adventist Church - British Columbia Conference", + "school_number": "8596190", + "name": "Avalon Adventist Christian Academy", + "total_students": 43, + "address": "4640 Byng Road", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Namgis Education Society", + "school_number": "8597094", + "name": "T'lisa_lagi'lakw School", + "total_students": 55, + "address": "PO BOX 50", + "city": "ALERT BAY", + "province": "BC", + "postal_code": "V0N1A0" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Chief & Council Of Gwa'Sala-'Nakwaxda'Xw", + "school_number": "8597142", + "name": "Gwa'sala-'Nakwaxda'xw School", + "total_students": 100, + "address": "PO BOX 1799", + "city": "PORT HARDY", + "province": "BC", + "postal_code": "V0N2P0" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Chief And Councillors Of The Fort Ware Indian Band Fort Ware BC", + "school_number": "8797074", + "name": "Aatse Davie School", + "total_students": 90, + "address": "PO BOX 79", + "city": "FORT WARE", + "province": "BC", + "postal_code": "V0J3B0" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Chief & Councillors Of The Iskut Band Iskut British Columbia", + "school_number": "8797088", + "name": "Luwechon Kots'ede'i Kime", + "total_students": 44, + "address": "#1 GLACIER AVE", + "city": "ISKUT", + "province": "BC", + "postal_code": "V0J1K0" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Northside Church Society", + "school_number": "9196232", + "name": "Northside Christian School", + "total_students": 123, + "address": "3400 VOTH RD", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A2" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Woodland Centre Congregation", + "school_number": "9196759", + "name": "Woodland Centre School", + "total_students": 40, + "address": "7360 HWY 16E", + "city": "VANDERHOOF", + "province": "BC", + "postal_code": "V0J3A1" + }, + { + "public_or_independent": "Independent School", + "district_number": "", + "district_name": "Nak'Al Bun Education Society", + "school_number": "9197495", + "name": "Nak'al Bun Elementary School", + "total_students": 125, + "address": "PO BOX 1390", + "city": "FORT ST JAMES", + "province": "BC", + "postal_code": "V0J1P0" }, { "public_or_independent": "BC Independent School", @@ -24153,10 +24157,10 @@ "school_number": "8396116", "name": "North Okanagan Junior Academy", "total_students": 58, - "address": "4699 SOUTH GRANDVIEW FLATS RD", - "city": "ARMSTRONG", + "address": "4699 GRANDVIEW FLATS RD S", + "city": "SPALLUMCHEEN", "province": "BC", - "postal_code": "V0E1B5" + "postal_code": "V4Y0P6" }, { "public_or_independent": "BC Independent School", @@ -24201,10 +24205,10 @@ "school_number": "8396714", "name": "Christian Homelearners eStreams", "total_students": 658, - "address": "PO BOX 162", - "city": "GRINDROD", + "address": "3775 Schubert Rd", + "city": "Armstrong", "province": "BC", - "postal_code": "V0E1Y0" + "postal_code": "V4Y0K5" }, { "public_or_independent": "BC Independent School", @@ -24225,7 +24229,7 @@ "school_number": "8596190", "name": "Avalon Adventist Christian Academy", "total_students": 41, - "address": "PO BOX 974", + "address": "4640 Byng Road", "city": "PORT HARDY", "province": "BC", "postal_code": "V0N2P0" @@ -24309,10 +24313,10 @@ "school_number": "9197495", "name": "Nak'albun Elementary School", "total_students": 136, - "address": "PO BOX 1390", - "city": "FORT ST JAMES", - "province": "BC", - "postal_code": "V0J1P0" + "address": "", + "city": "", + "province": "", + "postal_code": "" } ] } \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.NginxData/reference/common/images/ExtendedUnityBanner.webp b/applications/Unity.Tools/Unity.NginxData/reference/common/images/ExtendedUnityBanner.webp deleted file mode 100644 index 31e1226097..0000000000 Binary files a/applications/Unity.Tools/Unity.NginxData/reference/common/images/ExtendedUnityBanner.webp and /dev/null differ diff --git a/applications/Unity.Tools/Unity.NginxData/reference/common/images/grants-background.webp b/applications/Unity.Tools/Unity.NginxData/reference/common/images/grants-background.webp deleted file mode 100644 index 07846aff3c..0000000000 Binary files a/applications/Unity.Tools/Unity.NginxData/reference/common/images/grants-background.webp and /dev/null differ diff --git a/applications/Unity.Tools/Unity.NginxData/reference/common/images/unity.svg b/applications/Unity.Tools/Unity.NginxData/reference/common/images/unity.svg new file mode 100644 index 0000000000..6f5bd1fb6b --- /dev/null +++ b/applications/Unity.Tools/Unity.NginxData/reference/common/images/unity.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json b/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json index ec12026ef3..18283d73f9 100644 --- a/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json +++ b/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json @@ -1 +1 @@ -[{"location":"100 Mile House","place_name":"100 Mile House","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"105 Mile House","place_name":"105 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"105 Mile Post 2","place_name":"","community":"105 Mile Post 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"108 Mile Ranch","place_name":"108 Mile Ranch","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"111 Mile House","place_name":"111 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"114 Mile House","place_name":"114 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"12 Mile","place_name":"12 Mile","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"122 Mile House","place_name":"122 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"127 Mile House","place_name":"127 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"141 Mile House","place_name":"141 Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"150 Mile House","place_name":"150 Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"40 Mile Flats","place_name":"40 Mile Flats","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"70 Mile House","place_name":"70 Mile House","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"93 Mile","place_name":"93 Mile","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"A:mai","place_name":"A:mai","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Aa-at-sow-is","place_name":"Aa-at-sow-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Abbotsford","place_name":"","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Abbott Heights","place_name":"Abbott Heights","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Aberdeen - Abbotsford","place_name":"Aberdeen","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Aberdeen - Kamloops","place_name":"Aberdeen","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Acous","place_name":"Acous","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Adams Lake","place_name":"Adams Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Agassiz","place_name":"Agassiz","community":"Kent","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Agate","place_name":"Agate","community":"Shackan 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Agats Meadow 8","place_name":"","community":"Agats Meadow 8","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ah:tliish","place_name":"Ah:tliish","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ahahswinis 1","place_name":"","community":"Ahahswinis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ahaminaquus 12","place_name":"","community":"Ahaminaquus 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ahbau","place_name":"Ahbau","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ahousat","place_name":"Ahousat","community":"Marktosis 15","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ainsworth Hot Springs","place_name":"Ainsworth Hot Springs","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Aitchelitch 9","place_name":"","community":"Aitchelitch 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Aiyansh (Kitladamas) 1","place_name":"Aiyansh (Kitladamas) 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Aiyansh 1","place_name":"Aiyansh 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ak:tiis","place_name":"Ak:tiis","community":"Village Island 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Akiskinook","place_name":"Akiskinook","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alamo","place_name":"Alamo","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Albas","place_name":"Albas","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Alberni","place_name":"Alberni","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni 2","place_name":"","community":"Alberni 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alberni-Clayoquot A","place_name":"","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot B","place_name":"","community":"Alberni-Clayoquot B","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot C","place_name":"","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot D","place_name":"","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot E","place_name":"","community":"Alberni-Clayoquot E","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot F","place_name":"","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot, Subd. A","place_name":"Alberni-Clayoquot, Subd. A","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot, Subd. B","place_name":"Alberni-Clayoquot, Subd. B","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Albert Flat 5","place_name":"","community":"Albert Flat 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Albert Head","place_name":"Albert Head","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Albion","place_name":"Albion","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Albreda","place_name":"Albreda","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alder Creek","place_name":"Alder Creek","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Aldergrove","place_name":"Aldergrove","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Alert Bay","place_name":"Alert Bay","community":"Alert Bay - Village","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Alert Bay - Indian reserve","place_name":"","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alert Bay - Village","place_name":"","community":"Alert Bay - Village","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Alert Bay 1","place_name":"Alert Bay 1","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alert Bay 1A","place_name":"Alert Bay 1A","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alexandria","place_name":"","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 1","place_name":"Alexandria 1","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 1A","place_name":"Alexandria 1A","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 3","place_name":"Alexandria 3","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 3A","place_name":"Alexandria 3A","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis 9","place_name":"","community":"Alexis 9","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Alexis Creek","place_name":"Alexis Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 6","place_name":"Alexis Creek 6","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 14","place_name":"","community":"Alexis Creek 14","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 16","place_name":"","community":"Alexis Creek 16","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 17","place_name":"Alexis Creek 17","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 21","place_name":"","community":"Alexis Creek 21","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 24","place_name":"Alexis Creek 24","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 25","place_name":"Alexis Creek 25","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 34","place_name":"","community":"Alexis Creek 34","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Aleza Lake","place_name":"Aleza Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Alice Arm","place_name":"Alice Arm","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Alice Siding","place_name":"Alice Siding","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alkali Lake","place_name":"Alkali Lake","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alkali Lake 1","place_name":"","community":"Alkali Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alkali Lake 4A","place_name":"","community":"Alkali Lake 4A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Allenby","place_name":"Allenby","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Allens Addition","place_name":"Allens Addition","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alliford Bay","place_name":"Alliford Bay","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Allison Lake","place_name":"Allison Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Almond Gardens","place_name":"Almond Gardens","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Almond Gardens Trailer Park","place_name":"Almond Gardens Trailer Park","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alpine Meadows","place_name":"Alpine Meadows","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Alpine Trailer Park","place_name":"Alpine Trailer Park","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Alta Lake","place_name":"Alta Lake","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Altamont","place_name":"Altamont","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Altona","place_name":"Altona","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Alvin","place_name":"Alvin","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ambleside","place_name":"Ambleside","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Anacla 12","place_name":"","community":"Anacla 12","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Anaconda","place_name":"Anaconda","community":"Greenwood","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Anahim Lake","place_name":"Anahim Lake","community":"Squinas 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Flat 1","place_name":"","community":"Anahim's Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow","place_name":"","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow 2","place_name":"Anahim's Meadow 2","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow 2A","place_name":"Anahim's Meadow 2A","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anaqtl'a","place_name":"Anaqtl'a","community":"Anacla 12","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Anderson","place_name":"Anderson","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Andy Cahoose Meadow 16","place_name":"Andy Cahoose Meadow 16","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Anglemont","place_name":"Anglemont","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Anmore","place_name":"","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Anniedale","place_name":"Anniedale","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Annis","place_name":"Annis","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Annis Bay","place_name":"Annis Bay","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Anvil Island","place_name":"Anvil Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Anyox","place_name":"Anyox","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Anzac","place_name":"Anzac","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Apex Mountain","place_name":"Apex Mountain","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Appledale","place_name":"Appledale","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Applegrove","place_name":"Applegrove","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Apsagayu 1A","place_name":"Apsagayu 1A","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Arbutus","place_name":"Arbutus","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Arbutus Ridge","place_name":"Arbutus Ridge","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Archibald Subdivision","place_name":"Archibald Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ardmore","place_name":"Ardmore","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Argenta","place_name":"Argenta","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Armitage Trailer Court","place_name":"Armitage Trailer Court","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Armstrong","place_name":"","community":"Armstrong","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Armstrong - Armstrong","place_name":"Armstrong","community":"Armstrong","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Armstrong - Spallumcheen","place_name":"Armstrong","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Arnold","place_name":"Arnold","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Arras","place_name":"Arras","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Arrow Creek","place_name":"Arrow Creek","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrow Creek-Lakeview","place_name":"Arrow Creek-Lakeview","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrow Park","place_name":"Arrow Park","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrowhead","place_name":"Arrowhead","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Arrowview Heights","place_name":"Arrowview Heights","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Artina Trailer Court","place_name":"Artina Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Aschcroft Ranch","place_name":"Aschcroft Ranch","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashcroft","place_name":"","community":"Ashcroft","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashcroft 4","place_name":"","community":"Ashcroft 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ashcroft Manor","place_name":"Ashcroft Manor","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashnola 10","place_name":"","community":"Ashnola 10","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ashton Creek","place_name":"Ashton Creek","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Aspen Grove","place_name":"Aspen Grove","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Aspen Mobile Trailer Court","place_name":"Aspen Mobile Trailer Court","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Atchelitz","place_name":"Atchelitz","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Athalmer","place_name":"Athalmer","community":"Shuswap","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Atlin","place_name":"Atlin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Atluck","place_name":"Atluck","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Atnarko","place_name":"Atnarko","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Attachie","place_name":"Attachie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Aupe 6","place_name":"Aupe 6","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Aupe 6A","place_name":"Aupe 6A","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Austin Heights","place_name":"Austin Heights","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Australian","place_name":"Australian","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Avola","place_name":"Avola","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Aywawwis 15","place_name":"Aywawwis 15","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Azu Ski Village","place_name":"Azu Ski Village","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"B and D Trailer Court","place_name":"B and D Trailer Court","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Babcock Subdivision","place_name":"Babcock Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Babine 6","place_name":"Babine 6","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 16","place_name":"","community":"Babine 16","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 17","place_name":"","community":"Babine 17","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Babine 25","place_name":"","community":"Babine 25","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 6","place_name":"","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine Lake 21B","place_name":"","community":"Babine Lake 21B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Baezaeko River 25","place_name":"Baezaeko River 25","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baezaeko River 26","place_name":"Baezaeko River 26","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baezaeko River 27","place_name":"","community":"Baezaeko River 27","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Baker","place_name":"Baker","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Baker Creek","place_name":"Baker Creek","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baldonnel","place_name":"Baldonnel","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Baldy Hughes","place_name":"Baldy Hughes","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Balfour","place_name":"Balfour","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Balmoral","place_name":"Balmoral","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Balmoral Beach","place_name":"Balmoral Beach","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bamberton","place_name":"Bamberton","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bamfield","place_name":"Bamfield","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Bankeir","place_name":"Bankeir","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Baptiste Meadow 2","place_name":"","community":"Baptiste Meadow 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Bargain Harbour","place_name":"Bargain Harbour","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Barkerville","place_name":"Barkerville","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Barlow Creek","place_name":"Barlow Creek","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Barnet","place_name":"Barnet","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Barnhartvale","place_name":"Barnhartvale","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Barnston Island","place_name":"Barnston Island","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Barnston Island 3","place_name":"","community":"Barnston Island 3","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Barrett Lake","place_name":"Barrett Lake","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Barriere","place_name":"","community":"Barriere","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Barrowtown","place_name":"Barrowtown","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Basque 18","place_name":"","community":"Basque 18","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bastion Bay","place_name":"Bastion Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Batchelor Hills","place_name":"Batchelor Hills","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Bates Beach","place_name":"Bates Beach","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Baynes Lake","place_name":"Baynes Lake","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bayview Estates","place_name":"Bayview Estates","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Beach Grove","place_name":"Beach Grove","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Beachcomber","place_name":"Beachcomber","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Beachcomber Bay","place_name":"Beachcomber Bay","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Bealby Point","place_name":"Bealby Point","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bear Camp","place_name":"Bear Camp","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bear Creek","place_name":"Bear Creek","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bear Flat","place_name":"Bear Flat","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bear Lake - Fraser-Fort George G","place_name":"Bear Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bear Lake - Stikine Region","place_name":"Bear Lake","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bear Mountain","place_name":"Bear Mountain","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Bear River Trailer Court","place_name":"Bear River Trailer Court","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Beard's Creek","place_name":"Beard's Creek","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Beasley","place_name":"Beasley","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Beaton","place_name":"Beaton","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Beatton Ranch","place_name":"Beatton Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Beaver Cove","place_name":"Beaver Cove","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Beaver Creek","place_name":"Beaver Creek","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Beaver Falls","place_name":"Beaver Falls","community":"Montrose","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Beaver Lake","place_name":"Beaver Lake","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Beaver Pass House","place_name":"Beaver Pass House","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Beaver Point","place_name":"Beaver Point","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Beaverdell","place_name":"Beaverdell","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Beaverley","place_name":"Beaverley","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Beban Trailer Park","place_name":"Beban Trailer Park","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Becher Bay 1","place_name":"","community":"Becher Bay 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Becher Bay 2","place_name":"Becher Bay 2","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Becher House","place_name":"Becher House","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bedwell Harbour","place_name":"Bedwell Harbour","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Belaire Estates Trailer Park","place_name":"Belaire Estates Trailer Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Belcarra","place_name":"","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Bell II","place_name":"Bell II","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Bella Bella","place_name":"Bella Bella","community":"Bella Bella 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Bella 1","place_name":"","community":"Bella Bella 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Coola","place_name":"Bella Coola","community":"Bella Coola 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Coola 1","place_name":"","community":"Bella Coola 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Belle Vue Trailer Court","place_name":"Belle Vue Trailer Court","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Belleview","place_name":"Belleview","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Belmont Park","place_name":"Belmont Park","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Belva's Trailer Park","place_name":"Belva's Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Belvedere","place_name":"Belvedere","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Ben-My-Chree","place_name":"Ben-My-Chree","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bennett","place_name":"Bennett","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Benson Lake","place_name":"Benson Lake","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Benvoulin","place_name":"Benvoulin","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Beresford","place_name":"Beresford","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Bergs","place_name":"Bergs","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Beryl Prairie","place_name":"Beryl Prairie","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bessborough","place_name":"Bessborough","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bestwick","place_name":"Bestwick","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Betty Creek 18","place_name":"","community":"Betty Creek 18","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Bevan","place_name":"Bevan","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Big Bar","place_name":"Big Bar","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Big Bar Creek","place_name":"Big Bar Creek","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Big Bay","place_name":"Big Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Big Creek","place_name":"Big Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Big Eddy","place_name":"Big Eddy","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Big Lake Ranch","place_name":"Big Lake Ranch","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Big White","place_name":"Big White","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Big White Village","place_name":"Big White Village","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bihl' k'a 18","place_name":"Bihl' k'a 18","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bihlk'a 6","place_name":"Bihlk'a 6","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Billings","place_name":"Billings","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Billings Bay","place_name":"Billings Bay","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Binche 2","place_name":"","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Binche 2 (Pinchie 2)","place_name":"Binche 2 (Pinchie 2)","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Birch Island","place_name":"Birch Island","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Birchdale","place_name":"Birchdale","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Birchland Manor","place_name":"Birchland Manor","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Birken","place_name":"Birken","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Black Creek - Cariboo F","place_name":"Black Creek","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Black Creek - Comox Valley C (Puntledge - Black Creek)","place_name":"Black Creek","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Black Pines","place_name":"Black Pines","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blackcomb","place_name":"Blackcomb","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Blackloam","place_name":"Blackloam","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Blackpool","place_name":"Blackpool","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blackstock Subdivision","place_name":"Blackstock Subdivision","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Blackwater - Cariboo I","place_name":"Blackwater","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Blackwater - Squamish-Lillooet C","place_name":"Blackwater","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Blackwater Meadow 11","place_name":"Blackwater Meadow 11","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Blaeberry","place_name":"Blaeberry","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blakeburn","place_name":"Blakeburn","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blewett","place_name":"Blewett","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Blind Bay","place_name":"Blind Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blind Channel","place_name":"Blind Channel","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blind Creek 6","place_name":"","community":"Blind Creek 6","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bliss Landing","place_name":"Bliss Landing","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Bloedel","place_name":"Bloedel","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blowhole","place_name":"Blowhole","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blubber Bay","place_name":"Blubber Bay","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blucher Hall","place_name":"Blucher Hall","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blue Hills","place_name":"Blue Hills","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Blue River","place_name":"Blue River","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blue Springs","place_name":"Blue Springs","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blueberry Creek","place_name":"Blueberry Creek","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Blueberry Farm","place_name":"Blueberry Farm","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Blueberry River 205","place_name":"","community":"Blueberry River 205","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Blueridge","place_name":"Blueridge","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Boat Basin","place_name":"Boat Basin","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Boat Harbour","place_name":"Boat Harbour","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bob Quinn Lake","place_name":"Bob Quinn Lake","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Bold Point","place_name":"Bold Point","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Bonaparte 3","place_name":"","community":"Bonaparte 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bonaventure Trailer Park","place_name":"Bonaventure Trailer Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bonnet Hill","place_name":"Bonnet Hill","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Bonnington Falls","place_name":"Bonnington Falls","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Boothroyd","place_name":"Boothroyd","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boothroyd (Part) 8A","place_name":"Boothroyd (Part) 8A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Boothroyd 13","place_name":"","community":"Boothroyd 13","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Boothroyd 5A","place_name":"Boothroyd 5A","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boothroyd 8A","place_name":"","community":"Boothroyd 8A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Boring Ranch","place_name":"Boring Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Boston Bar","place_name":"Boston Bar","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boston Bar 1A","place_name":"","community":"Boston Bar 1A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Boston Flats","place_name":"Boston Flats","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Boswell - Central Coast A","place_name":"Boswell","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Boswell - Central Kootenay A","place_name":"Boswell","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bouchie Lake","place_name":"Bouchie Lake","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Boulder City","place_name":"Boulder City","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Boundary Bay","place_name":"Boundary Bay","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Boundary Falls","place_name":"Boundary Falls","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bowen Bay","place_name":"Bowen Bay","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowen Island","place_name":"","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowen Island Trust","place_name":"Bowen Island Trust","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowron Lake","place_name":"Bowron Lake","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bowser","place_name":"Bowser","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Box Lake","place_name":"Box Lake","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brackendale","place_name":"Brackendale","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bradner","place_name":"Bradner","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brady Ranch","place_name":"Brady Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Braeloch","place_name":"Braeloch","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Braemar Heights","place_name":"Braemar Heights","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Braeside","place_name":"Braeside","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bralorne","place_name":"Bralorne","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Brandon","place_name":"Brandon","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brauns Island","place_name":"Brauns Island","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Brem River","place_name":"Brem River","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brennan Creek","place_name":"Brennan Creek","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Brentwood Bay","place_name":"Brentwood Bay","community":"South Saanich 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Brentwood Park","place_name":"Brentwood Park","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brew Bay","place_name":"Brew Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brexton","place_name":"Brexton","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Briar Ridge","place_name":"Briar Ridge","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bridal Falls","place_name":"Bridal Falls","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bridesville","place_name":"Bridesville","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bridge Lake","place_name":"Bridge Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bridge River 1","place_name":"","community":"Bridge River 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Bridgeview","place_name":"Bridgeview","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brigade Lake","place_name":"Brigade Lake","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brighouse","place_name":"Brighouse","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brighton Beach","place_name":"Brighton Beach","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brilliant","place_name":"Brilliant","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brisco","place_name":"Brisco","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Britannia Beach","place_name":"Britannia Beach","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"British Properties","place_name":"British Properties","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Broadmoor","place_name":"Broadmoor","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Broadview","place_name":"Broadview","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Broadview Villa","place_name":"Broadview Villa","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Brocklehurst","place_name":"Brocklehurst","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Broman Lake","place_name":"Broman Lake","community":"Duncan Lake 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Brookfield Trailers","place_name":"Brookfield Trailers","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brookmere","place_name":"Brookmere","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brookswood","place_name":"Brookswood","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brouse","place_name":"Brouse","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brown Road Trailer Park","place_name":"Brown Road Trailer Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Browns Bay","place_name":"Browns Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brunette Creek","place_name":"Brunette Creek","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brunswick","place_name":"Brunswick","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brunswick Beach","place_name":"Brunswick Beach","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Buccaneer Bay","place_name":"Buccaneer Bay","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Buckhorn","place_name":"Buckhorn","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Buckingham Heights","place_name":"Buckingham Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Buckinghorse River","place_name":"Buckinghorse River","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Buckley Bay","place_name":"Buckley Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bucktum 4","place_name":"","community":"Bucktum 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Buena Vista Estates","place_name":"Buena Vista Estates","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Buffalo Creek","place_name":"Buffalo Creek","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Buick","place_name":"Buick","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bulkley House","place_name":"Bulkley House","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley River 19","place_name":"","community":"Bulkley River 19","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Bulkley-Nechako A","place_name":"","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako B","place_name":"","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako C","place_name":"","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako D","place_name":"","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako E","place_name":"","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako F","place_name":"","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako G","place_name":"","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. A","place_name":"Bulkley-Nechako, Subd. A","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. B","place_name":"Bulkley-Nechako, Subd. B","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. C","place_name":"Bulkley-Nechako, Subd. C","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bull Harbour","place_name":"Bull Harbour","community":"Hope Island 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bull River","place_name":"Bull River","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bummers Flat 6","place_name":"Bummers Flat 6","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Buntzen Bay","place_name":"Buntzen Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Burkeville","place_name":"Burkeville","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burnaby","place_name":"","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burnaby Heights","place_name":"Burnaby Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burns Lake","place_name":"","community":"Burns Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Burns Lake 18","place_name":"","community":"Burns Lake 18","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Burnt Flats","place_name":"Burnt Flats","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Burquitlam","place_name":"Burquitlam","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burrard Inlet 3","place_name":"","community":"Burrard Inlet 3","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Burton","place_name":"Burton","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Butedale","place_name":"Butedale","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cache Creek","place_name":"","community":"Cache Creek","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cache Creek Campground","place_name":"Cache Creek Campground","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cadboro Bay","place_name":"Cadboro Bay","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Caesars","place_name":"Caesars","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Cahilty","place_name":"Cahilty","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cahoose 8","place_name":"Cahoose 8","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cahoose 10","place_name":"Cahoose 10","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cahoose 12","place_name":"Cahoose 12","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Caithness","place_name":"Caithness","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Caithness Trailer Court","place_name":"Caithness Trailer Court","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Callison Ranch","place_name":"Callison Ranch","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cambie-Solsqua","place_name":"Cambie-Solsqua","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Camborne","place_name":"Camborne","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cameron Bar 13","place_name":"Cameron Bar 13","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cameron Heights","place_name":"Cameron Heights","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Camp Artaban","place_name":"Camp Artaban","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Camp Homewood","place_name":"Camp Homewood","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Camp McKinney","place_name":"Camp McKinney","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Campbell Creek","place_name":"Campbell Creek","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Campbell Island","place_name":"Campbell Island","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Campbell River","place_name":"","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Campbell River 11","place_name":"","community":"Campbell River 11","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Campbellton","place_name":"Campbellton","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Canal Flats","place_name":"","community":"Canal Flats","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Canford","place_name":"Canford","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Canim Lake","place_name":"Canim Lake","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Canim Lake 1","place_name":"","community":"Canim Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canim Lake 2","place_name":"","community":"Canim Lake 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canim Lake 4","place_name":"","community":"Canim Lake 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canoe","place_name":"Canoe","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Canoe Creek 1","place_name":"","community":"Canoe Creek 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Canoe Creek 2","place_name":"","community":"Canoe Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Canoe Creek 3","place_name":"","community":"Canoe Creek 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canyon","place_name":"Canyon","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Canyon Alpine","place_name":"Canyon Alpine","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Canyon Heights","place_name":"Canyon Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Canyon Hot Springs","place_name":"Canyon Hot Springs","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Canyon Trailer Park","place_name":"Canyon Trailer Park","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cape Mudge 10","place_name":"","community":"Cape Mudge 10","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Capilano 5","place_name":"","community":"Capilano 5","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Capilano Highlands","place_name":"Capilano Highlands","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Capital B","place_name":"Capital B","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital D","place_name":"Capital D","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. A","place_name":"Capital, Subd. A","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. B","place_name":"Capital, Subd. B","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. C","place_name":"Capital, Subd. C","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. D","place_name":"Capital, Subd. D","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capitol Hill","place_name":"Capitol Hill","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cariboo - Cariboo C","place_name":"Cariboo","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo - Coquitlam","place_name":"Cariboo","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cariboo A","place_name":"","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo B","place_name":"","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo C","place_name":"","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo D","place_name":"","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo E","place_name":"","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo F","place_name":"","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo G","place_name":"","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo H","place_name":"","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo I","place_name":"","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo J","place_name":"","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo K","place_name":"","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo L","place_name":"","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo Meadows","place_name":"Cariboo Meadows","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cariboo, Subd. A","place_name":"Cariboo, Subd. A","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo, Subd. B","place_name":"Cariboo, Subd. B","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo, Subd. C","place_name":"Cariboo, Subd. C","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Carlin","place_name":"Carlin","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Carlson","place_name":"Carlson","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Carmi","place_name":"Carmi","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Carmi Subdivision","place_name":"Carmi Subdivision","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Carnaby","place_name":"Carnaby","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Carraholly","place_name":"Carraholly","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Carrolls Landing","place_name":"Carrolls Landing","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Carrs","place_name":"Carrs","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Carrs Landing","place_name":"Carrs Landing","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Carson","place_name":"Carson","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cascade - Belcarra","place_name":"Cascade","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cascade - Kootenay Boundary C / Christina Lake","place_name":"Cascade","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cascade Heights","place_name":"Cascade Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Casimiel Meadows 15A","place_name":"Casimiel Meadows 15A","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Casino","place_name":"Casino","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Cassiar","place_name":"Cassiar","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cassidy","place_name":"Cassidy","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cassidy Mobile Home Park","place_name":"Cassidy Mobile Home Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cassimayooks (Mayook) 5","place_name":"","community":"Cassimayooks (Mayook) 5","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Cassin","place_name":"Cassin","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Castle Rock","place_name":"Castle Rock","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Castledale","place_name":"Castledale","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Castlegar","place_name":"","community":"Castlegar","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Caulfeild","place_name":"Caulfeild","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cawston","place_name":"Cawston","community":"Okanagan-Similkameen B","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Caycuse","place_name":"Caycuse","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cayoosh Creek 1","place_name":"","community":"Cayoosh Creek 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cecil Lake","place_name":"Cecil Lake","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Cedar","place_name":"Cedar","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar By The Sea","place_name":"Cedar By The Sea","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar Creek Mobile Home Park","place_name":"Cedar Creek Mobile Home Park","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar Grove","place_name":"Cedar Grove","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Cedar Heights Estates","place_name":"Cedar Heights Estates","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cedardale","place_name":"Cedardale","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cedarside","place_name":"Cedarside","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cedarvale","place_name":"Cedarvale","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Ceepeecee","place_name":"Ceepeecee","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Celista","place_name":"Celista","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Central Coast A","place_name":"","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast C","place_name":"","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast D","place_name":"","community":"Central Coast D","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast E","place_name":"","community":"Central Coast E","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast, Subd. A","place_name":"Central Coast, Subd. A","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Fraser Valley, Subd. A","place_name":"Central Fraser Valley, Subd. A","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Central Kootenay A","place_name":"","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay B","place_name":"","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay C","place_name":"","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay D","place_name":"","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay E","place_name":"","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay F","place_name":"","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay G","place_name":"","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay H","place_name":"","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay I","place_name":"","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay J","place_name":"","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay K","place_name":"","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. A","place_name":"Central Kootenay, Subd. A","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. B","place_name":"Central Kootenay, Subd. B","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. C","place_name":"Central Kootenay, Subd. C","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Okanagan","place_name":"","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan G","place_name":"Central Okanagan G","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan H","place_name":"Central Okanagan H","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan J","place_name":"Central Okanagan J","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan West","place_name":"","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan, Subd. A","place_name":"Central Okanagan, Subd. A","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan, Subd. B","place_name":"Central Okanagan, Subd. B","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Saanich","place_name":"","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Centreville","place_name":"Centreville","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cha cha tsi tsi us","place_name":"Cha cha tsi tsi us","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chaatl","place_name":"Chaatl","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Chain Lake","place_name":"Chain Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Chamiss Bay","place_name":"Chamiss Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Channel Ridge","place_name":"Channel Ridge","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chap-is","place_name":"Chap-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chapman Camp","place_name":"Chapman Camp","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Chapmans","place_name":"Chapmans","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Chapperon Ranch","place_name":"Chapperon Ranch","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Charella Garden","place_name":"Charella Garden","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Charley Boy's Meadow 3","place_name":"","community":"Charley Boy's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Charlie Lake","place_name":"Charlie Lake","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Charlotte Lake","place_name":"Charlotte Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chase","place_name":"","community":"Chase","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Chase River","place_name":"Chase River","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Chasm","place_name":"Chasm","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chateau Village Trailer Court","place_name":"Chateau Village Trailer Court","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Chaumox","place_name":"Chaumox","community":"Speyum 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chaumox 11","place_name":"Chaumox 11","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Chawathil 4","place_name":"","community":"Chawathil 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheakamus","place_name":"Cheakamus","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cheakamus 11","place_name":"","community":"Cheakamus 11","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheam 1","place_name":"","community":"Cheam 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheam View","place_name":"Cheam View","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cheekye","place_name":"Cheekye","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chehalis 5","place_name":"","community":"Chehalis 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chekwelp 26","place_name":"","community":"Chekwelp 26","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chekwelp 26A","place_name":"Chekwelp 26A","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chemainus","place_name":"Chemainus","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Chemainus 13","place_name":"","community":"Chemainus 13","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chenahkint 12","place_name":"","community":"Chenahkint 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chenatha","place_name":"Chenatha","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chequis","place_name":"Chequis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cherry Creek - Alberni-Clayoquot F","place_name":"Cherry Creek","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cherry Creek - Thompson-Nicola J (Copper Desert Country)","place_name":"Cherry Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cherryville","place_name":"Cherryville","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ches-la-kee 3","place_name":"Ches-la-kee 3","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Cheslatta","place_name":"Cheslatta","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cheslatta 1","place_name":"","community":"Cheslatta 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Chetarpe","place_name":"Chetarpe","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chetwynd","place_name":"","community":"Chetwynd","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Chezacut","place_name":"Chezacut","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chicoltin Estates Trailer Park","place_name":"Chicoltin Estates Trailer Park","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilanko Forks","place_name":"Chilanko Forks","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilco Lake 1","place_name":"","community":"Chilco Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Chilco Lake 1A","place_name":"","community":"Chilco Lake 1A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Chilcotin Forest","place_name":"Chilcotin Forest","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilhil 6","place_name":"","community":"Chilhil 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chilliwack","place_name":"","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Chilton Subdivision","place_name":"Chilton Subdivision","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Chimney Valley","place_name":"Chimney Valley","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chineside","place_name":"Chineside","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Chinook Cove","place_name":"Chinook Cove","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chinook Mobile Home Park","place_name":"Chinook Mobile Home Park","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Choate","place_name":"Choate","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chopaka","place_name":"Chopaka","community":"Chopaka 7 & 8","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chopaka 7 & 8","place_name":"","community":"Chopaka 7 & 8","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Christian Valley","place_name":"Christian Valley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Christina Lake","place_name":"Christina Lake","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Chu Chua","place_name":"Chu Chua","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chuchhraischin","place_name":"","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchhriaschin 5","place_name":"Chuchhriaschin 5","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchhriaschin 5A","place_name":"Chuchhriaschin 5A","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchuwayha 2","place_name":"","community":"Chuchuwayha 2","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chum Creek 2","place_name":"","community":"Chum Creek 2","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chumata","place_name":"Chumata","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Church House","place_name":"Church House","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Chute Lake","place_name":"Chute Lake","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cinema","place_name":"Cinema","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cinnabar Valley","place_name":"Cinnabar Valley","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"City of West Kelowna","place_name":"City of West Kelowna","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Clairmont","place_name":"Clairmont","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clakamucus 2","place_name":"","community":"Clakamucus 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Claoose 4","place_name":"Claoose 4","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Clapperton","place_name":"Clapperton","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Claremont Subdivision","place_name":"Claremont Subdivision","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clayburn","place_name":"Clayburn","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clayhurst","place_name":"Clayhurst","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clayoquot","place_name":"Clayoquot","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cleagh Creek","place_name":"Cleagh Creek","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Clearbrook","place_name":"Clearbrook","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clearwater","place_name":"","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Clearwater Trailer Park","place_name":"Clearwater Trailer Park","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Clem Clem","place_name":"Clem Clem","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Clemretta","place_name":"Clemretta","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cleveland Park","place_name":"Cleveland Park","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clinton","place_name":"","community":"Clinton","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Clo-oose","place_name":"Clo-oose","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Clover Acres Mobile Villa","place_name":"Clover Acres Mobile Villa","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cloverdale","place_name":"Cloverdale","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clutus","place_name":"Clutus","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Coal Harbour","place_name":"Coal Harbour","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Coal River","place_name":"Coal River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Coalmont","place_name":"Coalmont","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cobble Hill","place_name":"Cobble Hill","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cody","place_name":"Cody","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Coffin Point","place_name":"Coffin Point","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coglistiko River 29","place_name":"","community":"Coglistiko River 29","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Cokato","place_name":"Cokato","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Coldspring House","place_name":"Coldspring House","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Coldstream","place_name":"","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Coldstream Ranch","place_name":"Coldstream Ranch","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Coldwater 1","place_name":"","community":"Coldwater 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Coldwell Beach","place_name":"Coldwell Beach","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cole Bay 3","place_name":"","community":"Cole Bay 3","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"College Heights","place_name":"College Heights","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Collettville","place_name":"Collettville","community":"Merritt","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Colleymount","place_name":"Colleymount","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Colquitz","place_name":"Colquitz","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Columbia Gardens","place_name":"Columbia Gardens","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Columbia Lake 3","place_name":"","community":"Columbia Lake 3","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Columbia Lake Resort Trailer Park","place_name":"Columbia Lake Resort Trailer Park","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Columbia-Shuswap A","place_name":"","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap B","place_name":"","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap C","place_name":"","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap D","place_name":"","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap E","place_name":"","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap F","place_name":"","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap, Subd. A","place_name":"Columbia-Shuswap, Subd. A","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap, Subd. B","place_name":"Columbia-Shuswap, Subd. B","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap, Subd. C","place_name":"Columbia-Shuswap, Subd. C","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columere Park","place_name":"Columere Park","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Colwood","place_name":"","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Comer Hill Trailer Park","place_name":"Comer Hill Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Comiaken","place_name":"Comiaken","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Commodore Heights","place_name":"Commodore Heights","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Comox","place_name":"","community":"Comox","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox 1","place_name":"","community":"Comox 1","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Comox Valley A","place_name":"","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox Valley B (Lazo North)","place_name":"","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox Valley C (Puntledge - Black Creek)","place_name":"","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona A","place_name":"Comox-Strathcona A","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona B","place_name":"Comox-Strathcona B","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona C","place_name":"Comox-Strathcona C","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona D","place_name":"Comox-Strathcona D","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona G","place_name":"Comox-Strathcona G","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona H","place_name":"Comox-Strathcona H","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona I","place_name":"Comox-Strathcona I","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona J","place_name":"Comox-Strathcona J","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona K","place_name":"Comox-Strathcona K","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona, Subd. A","place_name":"Comox-Strathcona, Subd. A","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona, Subd. B","place_name":"Comox-Strathcona, Subd. B","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona, Subd. C","place_name":"Comox-Strathcona, Subd. C","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona, Subd. D","place_name":"Comox-Strathcona, Subd. D","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Compton Island 6","place_name":"Compton Island 6","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Connaught Heights","place_name":"Connaught Heights","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Coombe","place_name":"Coombe","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Coombs","place_name":"Coombs","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coombs Trailer Park","place_name":"Coombs Trailer Park","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cooper Creek","place_name":"Cooper Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Copper City","place_name":"Copper City","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Copper Cove","place_name":"Copper Cove","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Copper Creek","place_name":"Copper Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Copper Mountain","place_name":"Copper Mountain","community":"Princeton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Coquitlam","place_name":"","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Coquitlam 1","place_name":"","community":"Coquitlam 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Coquitlam 2","place_name":"","community":"Coquitlam 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Coral Beach","place_name":"Coral Beach","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Corbin","place_name":"Corbin","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Cordova Bay","place_name":"Cordova Bay","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Cornwall Lodge Trailer Park","place_name":"Cornwall Lodge Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Corra Linn","place_name":"Corra Linn","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cortes Bay","place_name":"Cortes Bay","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Coryatsaqua (Moricetown) 2","place_name":"","community":"Coryatsaqua (Moricetown) 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Coryville","place_name":"Coryville","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cosy Cove","place_name":"Cosy Cove","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cottonwood","place_name":"Cottonwood","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cottonwood Trailer Park","place_name":"Cottonwood Trailer Park","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Couldwell Subdivision","place_name":"Couldwell Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Country Lane Park","place_name":"Country Lane Park","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Country Side Estates Trailer Court","place_name":"Country Side Estates Trailer Court","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Courtenay","place_name":"","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Coutlee","place_name":"Coutlee","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cove Cliff","place_name":"Cove Cliff","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cowans Point","place_name":"Cowans Point","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cowichan","place_name":"","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan 1","place_name":"Cowichan 1","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan 9","place_name":"Cowichan 9","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan Bay","place_name":"Cowichan Bay","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Lake","place_name":"","community":"Cowichan Lake","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan Station","place_name":"Cowichan Station","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley A","place_name":"","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley B","place_name":"","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley C","place_name":"","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley D","place_name":"","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley E","place_name":"","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley F","place_name":"","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley G","place_name":"","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley H","place_name":"","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley I","place_name":"","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. A","place_name":"Cowichan Valley, Subd. A","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. B","place_name":"Cowichan Valley, Subd. B","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. C","place_name":"Cowichan Valley, Subd. C","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. D","place_name":"Cowichan Valley, Subd. D","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coyle","place_name":"Coyle","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cracroft","place_name":"Cracroft","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Craigellachie","place_name":"Craigellachie","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Craigs Trailer Court","place_name":"Craigs Trailer Court","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cranberry","place_name":"Cranberry","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cranberry Junction","place_name":"Cranberry Junction","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cranbrook","place_name":"","community":"Cranbrook","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Cranbrook Trailer Court","place_name":"Cranbrook Trailer Court","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Crawford Bay","place_name":"Crawford Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Creekside","place_name":"Creekside","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Creekside Trailer Park","place_name":"Creekside Trailer Park","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Creighton Valley","place_name":"Creighton Valley","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Crescent","place_name":"Crescent","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Crescent Bay - Central Kootenay F","place_name":"Crescent Bay","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crescent Bay - Central Kootenay K","place_name":"Crescent Bay","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crescent Beach - Okanagan-Similkameen F","place_name":"Crescent Beach","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Crescent Beach - Surrey","place_name":"Crescent Beach","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Crescent Spur","place_name":"Crescent Spur","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Crescent Valley","place_name":"Crescent Valley","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crest-A-Way","place_name":"Crest-A-Way","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Creston","place_name":"","community":"Creston","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Creston 1","place_name":"","community":"Creston 1","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Creston Valley Mobile Park","place_name":"Creston Valley Mobile Park","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Creston Wyndle Road","place_name":"Creston Wyndle Road","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crestwood Subdivision","place_name":"Crestwood Subdivision","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Criss Creek","place_name":"Criss Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Crofton","place_name":"Crofton","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Crotteau Subdivision","place_name":"Crotteau Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Crowsnest","place_name":"Crowsnest","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Croydon","place_name":"Croydon","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cultus Lake","place_name":"Cultus Lake","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cultus Lake Estates Mobile Home Park","place_name":"Cultus Lake Estates Mobile Home Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cumberland","place_name":"","community":"Cumberland","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cumshewa","place_name":"Cumshewa","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Curzon","place_name":"Curzon","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cypress Park","place_name":"Cypress Park","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dadens","place_name":"Dadens","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Dallas","place_name":"Dallas","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Danskin","place_name":"Danskin","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"D'Arcy","place_name":"D'Arcy","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Darfield","place_name":"Darfield","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Darrell Bay","place_name":"Darrell Bay","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dartmoor","place_name":"Dartmoor","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dashwood","place_name":"Dashwood","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Davis Bay","place_name":"Davis Bay","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dawson Creek","place_name":"","community":"Dawson Creek","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 3"},{"location":"Dawsons Landing","place_name":"Dawsons Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Days Ranch","place_name":"Days Ranch","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Day's Subdivision","place_name":"Day's Subdivision","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"De Courcy Island","place_name":"De Courcy Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dead Point 5","place_name":"","community":"Dead Point 5","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Deadtree Point","place_name":"Deadtree Point","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Deadwood","place_name":"Deadwood","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Dease Lake","place_name":"Dease Lake","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Dease Lake 9","place_name":"","community":"Dease Lake 9","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dease River 1","place_name":"","community":"Dease River 1","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Decker Lake","place_name":"Decker Lake","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Deekyakus","place_name":"Deekyakus","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Deep Bay","place_name":"Deep Bay","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Deep Cove - North Saanich","place_name":"Deep Cove","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Deep Cove - North Vancouver - District municipality","place_name":"Deep Cove","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Deep Creek","place_name":"Deep Creek","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Deep Creek 2","place_name":"","community":"Deep Creek 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Deer Park","place_name":"Deer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Deerholme","place_name":"Deerholme","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Defot","place_name":"Defot","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Deka Lake","place_name":"Deka Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Deka Lake Subdivision","place_name":"Deka Lake Subdivision","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Del Oro Subdivision","place_name":"Del Oro Subdivision","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Delbrook","place_name":"Delbrook","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Delkatla","place_name":"Delkatla","community":"Masset","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Delta","place_name":"","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Denman Island","place_name":"Denman Island","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dentville","place_name":"Dentville","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Departure Bay","place_name":"Departure Bay","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Deroche","place_name":"Deroche","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Devine","place_name":"Devine","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dewdney","place_name":"Dewdney","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Dewdney-Alouette, Subd. A","place_name":"Dewdney-Alouette, Subd. A","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dibble Subdivision","place_name":"Dibble Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Digby Island","place_name":"Digby Island","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dochsupple","place_name":"Dochsupple","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dodge Cove","place_name":"Dodge Cove","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Doe River","place_name":"Doe River","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dog Creek - Bulkley-Nechako F","place_name":"Dog Creek","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Dog Creek - Cariboo E","place_name":"Dog Creek","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dog Creek 1","place_name":"","community":"Dog Creek 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Dog Creek 2","place_name":"","community":"Dog Creek 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Dogpatch","place_name":"Dogpatch","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dogwood Valley","place_name":"Dogwood Valley","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Doig River","place_name":"Doig River","community":"Doig River 206","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Doig River 206","place_name":"","community":"Doig River 206","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Dokie Siding","place_name":"Dokie Siding","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dokkie Subdivision","place_name":"Dokkie Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dolan Road Subdivision","place_name":"Dolan Road Subdivision","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dollarton","place_name":"Dollarton","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dolphin Beach","place_name":"Dolphin Beach","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dolphin Beach Estates","place_name":"Dolphin Beach Estates","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dolphin Island 1","place_name":"","community":"Dolphin Island 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dome Creek","place_name":"Dome Creek","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Donald","place_name":"Donald","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Donald Landing","place_name":"Donald Landing","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Donnely Landing","place_name":"Donnely Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Don's Trailer Court","place_name":"Don's Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Dookqua","place_name":"Dookqua","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dorcas Point","place_name":"Dorcas Point","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Doriston","place_name":"Doriston","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Dorreen","place_name":"Dorreen","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Douglas","place_name":"Douglas","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Douglas 8","place_name":"","community":"Douglas 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Douglas Hill Estates","place_name":"Douglas Hill Estates","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Douglas Lake","place_name":"Douglas Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Douglas Lake 3","place_name":"","community":"Douglas Lake 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Dove Creek","place_name":"Dove Creek","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dragon Lake 3","place_name":"","community":"Dragon Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Drew Harbour","place_name":"Drew Harbour","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Driftwood Creek","place_name":"Driftwood Creek","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Dry Gulch","place_name":"Dry Gulch","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Duck Lake 7","place_name":"","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Duck Range","place_name":"Duck Range","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dufferin","place_name":"Dufferin","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Dugan Lake","place_name":"Dugan Lake","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dunbar-Southlands","place_name":"Dunbar-Southlands","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Duncan","place_name":"","community":"Duncan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Duncan Bay","place_name":"Duncan Bay","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Duncan Lake 2","place_name":"","community":"Duncan Lake 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Duncanby Landing","place_name":"Duncanby Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Dundarave","place_name":"Dundarave","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dunkley","place_name":"Dunkley","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dunsmuir","place_name":"Dunsmuir","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dunster","place_name":"Dunster","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Durieu","place_name":"Durieu","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dutch Creek Subdivision","place_name":"Dutch Creek Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Dutch Lake","place_name":"Dutch Lake","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Resort","place_name":"Dutch Lake Resort","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Subdivision","place_name":"Dutch Lake Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Trailer Park","place_name":"Dutch Lake Trailer Park","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dzitline Lee 9","place_name":"","community":"Dzitline Lee 9","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Ê”Esdilagh","place_name":"Ê”Esdilagh","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Eagle Bay","place_name":"Eagle Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Bay Estates Subdivision","place_name":"Eagle Bay Estates Subdivision","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Bluff","place_name":"Eagle Bluff","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Creek","place_name":"Eagle Creek","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Eagle Harbour","place_name":"Eagle Harbour","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eagle Heights","place_name":"Eagle Heights","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Eagle Ridge","place_name":"Eagle Ridge","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eagle Rock Trailer Park","place_name":"Eagle Rock Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Eagle Run","place_name":"Eagle Run","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Earls Cove","place_name":"Earls Cove","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"East Arrow Park","place_name":"East Arrow Park","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Gate - Columbia-Shuswap A","place_name":"East Gate","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"East Gate - Okanagan-Similkameen H","place_name":"East Gate","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"East Kelowna","place_name":"East Kelowna","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"East Kootenay A","place_name":"","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay B","place_name":"","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay C","place_name":"","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"East Kootenay E","place_name":"","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay F","place_name":"","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay G","place_name":"","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay, Subd. A","place_name":"East Kootenay, Subd. A","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay, Subd. B","place_name":"East Kootenay, Subd. B","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"East Kootenay, Subd. C","place_name":"East Kootenay, Subd. C","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Moberly Lake 169","place_name":"","community":"East Moberly Lake 169","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"East Osoyoos","place_name":"East Osoyoos","community":"Okanagan-Similkameen A","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"East Pine","place_name":"East Pine","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"East Saanich 2","place_name":"","community":"East Saanich 2","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"East Sooke","place_name":"East Sooke","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"East Trail","place_name":"East Trail","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"East Wellington","place_name":"East Wellington","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Eastbourne","place_name":"Eastbourne","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Eastburn","place_name":"Eastburn","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eastgate","place_name":"Eastgate","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Echo Bay","place_name":"Echo Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ecoole","place_name":"Ecoole","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Eddontenajon","place_name":"Eddontenajon","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Eddy","place_name":"Eddy","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Edelweiss","place_name":"Edelweiss","community":"Golden","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Edgewater","place_name":"Edgewater","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Edgewood","place_name":"Edgewood","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Edgewood Trailer Court","place_name":"Edgewood Trailer Court","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Egmont","place_name":"Egmont","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Ehatis 11","place_name":"","community":"Ehatis 11","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ehatisaht","place_name":"Ehatisaht","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Eholt","place_name":"Eholt","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ekins Point","place_name":"Ekins Point","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Elephant Crossing","place_name":"Elephant Crossing","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Eleven Mile Site","place_name":"Eleven Mile Site","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Elgin","place_name":"Elgin","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Elhlateese 2","place_name":"","community":"Elhlateese 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Elk Bay","place_name":"Elk Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Elk Prairie","place_name":"Elk Prairie","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elk Valley Trailer Court","place_name":"Elk Valley Trailer Court","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elkford","place_name":"","community":"Elkford","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elko","place_name":"Elko","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ellison","place_name":"Ellison","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Ellsworth Trailer Camp","place_name":"Ellsworth Trailer Camp","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Elphinstone","place_name":"Elphinstone","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Endako","place_name":"Endako","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Enderby","place_name":"","community":"Enderby","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Enderby 2","place_name":"","community":"Enderby 2","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Engen","place_name":"Engen","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Engineer","place_name":"Engineer","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Enterprise","place_name":"Enterprise","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Entlqwekkinh 19","place_name":"","community":"Entlqwekkinh 19","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Erickson","place_name":"Erickson","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Erie","place_name":"Erie","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Errington","place_name":"Errington","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Esler","place_name":"Esler","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Esowista 3","place_name":"","community":"Esowista 3","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Esperanza","place_name":"Esperanza","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Espinosa Inlet","place_name":"Espinosa Inlet","community":"Oclucje 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Esquimalt - District municipality","place_name":"","community":"Esquimalt - District municipality","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Esquimalt - Indian reserve","place_name":"","community":"Esquimalt - Indian reserve","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Essondale","place_name":"Essondale","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Estevan Point","place_name":"Estevan Point","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Est-Patrolas 4","place_name":"","community":"Est-Patrolas 4","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Euchinico Creek 17","place_name":"","community":"Euchinico Creek 17","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Evergreen Acres - Clearwater","place_name":"Evergreen Acres","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Evergreen Acres - Peace River B","place_name":"Evergreen Acres","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Evergreen Trailer Park","place_name":"Evergreen Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ewing","place_name":"Ewing","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Exeter","place_name":"Exeter","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Exlou","place_name":"Exlou","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Extension","place_name":"Extension","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fair Harbour","place_name":"Fair Harbour","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fairbridge","place_name":"Fairbridge","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fairfield - Chilliwack","place_name":"Fairfield","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Fairfield - Victoria","place_name":"Fairfield","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Fairmont Hot Springs","place_name":"Fairmont Hot Springs","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fairview - Okanagan-Similkameen C","place_name":"Fairview","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fairview - Vancouver","place_name":"Fairview","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fairview Subdivision","place_name":"Fairview Subdivision","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fairwinds","place_name":"Fairwinds","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Falkland","place_name":"Falkland","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fallsway","place_name":"Fallsway","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"False Bay","place_name":"False Bay","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fanny Bay - Comox Valley A","place_name":"Fanny Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fanny Bay - Strathcona C","place_name":"Fanny Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Farmington","place_name":"Farmington","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Farrell Creek","place_name":"Farrell Creek","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Fauquier","place_name":"Fauquier","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Federal Ranch","place_name":"Federal Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Fellers Heights","place_name":"Fellers Heights","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ferguson","place_name":"Ferguson","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Fern Ridge","place_name":"Fern Ridge","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ferndale","place_name":"Ferndale","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fernie","place_name":"","community":"Fernie","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fernlee","place_name":"Fernlee","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Fernwood","place_name":"Fernwood","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Field","place_name":"Field","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Fife","place_name":"Fife","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fifth Cabin","place_name":"Fifth Cabin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Finlay River 6","place_name":"","community":"Finlay River 6","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fintry","place_name":"Fintry","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Fireside","place_name":"Fireside","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Firvale","place_name":"Firvale","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fishtrap 19","place_name":"","community":"Fishtrap 19","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Five Mile","place_name":"Five Mile","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Five Mile Point 3","place_name":"Five Mile Point 3","community":"Five Mile Point 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Five Mile Point 3","place_name":"","community":"Five Mile Point 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Flathead","place_name":"Flathead","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Flatrock","place_name":"Flatrock","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Flats","place_name":"Flats","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fleetwood","place_name":"Fleetwood","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Floods","place_name":"Floods","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fontas","place_name":"Fontas","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fontas 1","place_name":"","community":"Fontas 1","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fontas 1 - Northern Rockies","place_name":"Fontas 1","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Forde","place_name":"Forde","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Foreman","place_name":"Foreman","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Forest Grove","place_name":"Forest Grove","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Forest Grove Trailer Park","place_name":"Forest Grove Trailer Park","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Forest Hills","place_name":"Forest Hills","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Forest Knolls","place_name":"Forest Knolls","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Forest Lawn Trailer Court","place_name":"Forest Lawn Trailer Court","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Forestdale","place_name":"Forestdale","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Forestglade Trailer Park","place_name":"Forestglade Trailer Park","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fort Babine","place_name":"Fort Babine","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Fort Fraser","place_name":"Fort Fraser","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fort George (Shelley) 2","place_name":"Fort George (Shelley) 2","community":"Fort George 2","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Fort George 2","place_name":"","community":"Fort George 2","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Fort Langley","place_name":"Fort Langley","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fort Nelson","place_name":"Fort Nelson","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fort Nelson 2","place_name":"","community":"Fort Nelson 2","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fort Nelson-Liard, Subd. A","place_name":"Fort Nelson-Liard, Subd. A","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fort Rupert","place_name":"Fort Rupert","community":"Port Hardy","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Fort Rupert 1","place_name":"","community":"Fort Rupert 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Fort St. James","place_name":"","community":"Fort St. James","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Fort St. John","place_name":"","community":"Fort St. John","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 3"},{"location":"Fort Steele","place_name":"Fort Steele","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fort Ware","place_name":"Fort Ware","community":"Fort Ware 1","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fort Ware 1","place_name":"","community":"Fort Ware 1","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fosthall","place_name":"Fosthall","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fountain","place_name":"Fountain","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Fountain 1","place_name":"Fountain 1","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3","place_name":"Fountain 3","community":"Fountain 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1","place_name":"","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 10","place_name":"","community":"Fountain 10","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 11","place_name":"","community":"Fountain 11","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 12","place_name":"","community":"Fountain 12","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1B","place_name":"","community":"Fountain 1B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1D","place_name":"","community":"Fountain 1D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3","place_name":"","community":"Fountain 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3A","place_name":"","community":"Fountain 3A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain Creek 8","place_name":"","community":"Fountain Creek 8","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain Valley","place_name":"Fountain Valley","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fourth Cabin","place_name":"Fourth Cabin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fourways Trailer Park","place_name":"Fourways Trailer Park","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fowler","place_name":"Fowler","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Fox Mountain","place_name":"Fox Mountain","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Frames","place_name":"Frames","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Francis Peninsula","place_name":"Francis Peninsula","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"François Lake","place_name":"François Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Francois Lake 7","place_name":"","community":"Francois Lake 7","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Franklin Camp","place_name":"Franklin Camp","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Franks 10","place_name":"Franks 10","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser","place_name":"Fraser","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fraser Heights","place_name":"Fraser Heights","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Lake","place_name":"","community":"Fraser Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fraser Mills","place_name":"Fraser Mills","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Valley A","place_name":"","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Fraser Valley B","place_name":"","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley C","place_name":"","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley D","place_name":"","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley E","place_name":"","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley F","place_name":"","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley G","place_name":"","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Fraser Valley H","place_name":"","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. A","place_name":"Fraser Valley, Subd. A","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. B","place_name":"Fraser Valley, Subd. B","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. C","place_name":"Fraser Valley, Subd. C","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. D","place_name":"Fraser Valley, Subd. D","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Valley, Subd. E","place_name":"Fraser Valley, Subd. E","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser-Fort George A","place_name":"","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George C","place_name":"","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George D","place_name":"","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George E","place_name":"","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George F","place_name":"","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George G","place_name":"","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George H","place_name":"","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George, Subd. A","place_name":"Fraser-Fort George, Subd. A","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George, Subd. B","place_name":"Fraser-Fort George, Subd. B","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Freeport Trailer Park","place_name":"Freeport Trailer Park","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"French Creek","place_name":"French Creek","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fruitvale","place_name":"","community":"Fruitvale","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fry Creek","place_name":"Fry Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fulford Harbour","place_name":"Fulford Harbour","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Furry Creek","place_name":"Furry Creek","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gabriola","place_name":"Gabriola","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Gabriola Island","place_name":"Gabriola Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Gabriola Island Trust Area part A","place_name":"Gabriola Island Trust Area part A","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Galena","place_name":"Galena","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Galena Bay","place_name":"Galena Bay","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Galiano Island 9","place_name":"","community":"Galiano Island 9","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Gallagher Lake","place_name":"Gallagher Lake","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Galloway","place_name":"Galloway","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gambier Harbour","place_name":"Gambier Harbour","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gambier Island","place_name":"Gambier Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gang Ranch","place_name":"Gang Ranch","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ganges","place_name":"Ganges","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Garden","place_name":"","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden 2","place_name":"Garden 2","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden 2A","place_name":"Garden 2A","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden Bay","place_name":"Garden Bay","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Garden Village","place_name":"Garden Village","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gardner Lake Mobile Home Park","place_name":"Gardner Lake Mobile Home Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Garibaldi","place_name":"Garibaldi","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Garibaldi Estates","place_name":"Garibaldi Estates","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Garnet Rock Trailer Court","place_name":"Garnet Rock Trailer Court","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Garnet Valley","place_name":"Garnet Valley","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Garry Oaks","place_name":"Garry Oaks","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gates","place_name":"Gates","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gateway","place_name":"Gateway","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Gellatly","place_name":"Gellatly","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Genelle","place_name":"Genelle","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Genoa Bay","place_name":"Genoa Bay","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"George River","place_name":"George River","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Georgetown Mills","place_name":"Georgetown Mills","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Germansen Landing","place_name":"Germansen Landing","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Gerow Island","place_name":"Gerow Island","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Gerrard","place_name":"Gerrard","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gibson Creek","place_name":"Gibson Creek","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gibsons","place_name":"","community":"Gibsons","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gifford","place_name":"Gifford","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gillies Bay","place_name":"Gillies Bay","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gilpin","place_name":"Gilpin","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gingolx","place_name":"Gingolx","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Giscome","place_name":"Giscome","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Gitanmaax 1","place_name":"","community":"Gitanmaax 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitanyow","place_name":"Gitanyow","community":"Gitanyow 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitanyow 1","place_name":"","community":"Gitanyow 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitlaxksiip","place_name":"Gitlaxksiip","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitsegukla 1","place_name":"","community":"Gitsegukla 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwangak 1","place_name":"","community":"Gitwangak 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwinksihlkw","place_name":"Gitwinksihlkw","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwinksihlkw 7","place_name":"Gitwinksihlkw 7","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitzault 24","place_name":"Gitzault 24","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Glacier Gulch","place_name":"Glacier Gulch","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glade","place_name":"Glade","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gladwin Trailer Court","place_name":"Gladwin Trailer Court","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Glen Lake","place_name":"Glen Lake","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Glen Valley","place_name":"Glen Valley","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glen Vowell","place_name":"Glen Vowell","community":"Sik-e-dakh 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Glenannan","place_name":"Glenannan","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glenbank","place_name":"Glenbank","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Glenbrooke North","place_name":"Glenbrooke North","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glendale","place_name":"Glendale","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"Gleneagles","place_name":"Gleneagles","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gleneden","place_name":"Gleneden","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Glenemma","place_name":"Glenemma","community":"Okanagan (Part) 1 - Thompson/Okanagan","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Glen-Gla-Ouch 5","place_name":"Glen-Gla-Ouch 5","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Glenlily","place_name":"Glenlily","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Glenmerry","place_name":"Glenmerry","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Glenmore","place_name":"Glenmore","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glenora - Cowichan Valley E","place_name":"Glenora","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Glenora - Kitimat-Stikine D","place_name":"Glenora","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Glenrosa","place_name":"Glenrosa","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Glentanna","place_name":"Glentanna","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glimpse Lake","place_name":"Glimpse Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Gold Bridge","place_name":"Gold Bridge","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Gold River","place_name":"","community":"Gold River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Golden","place_name":"","community":"Golden","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Goldstream","place_name":"Goldstream","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Good Hope","place_name":"Good Hope","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Good Hope Lake","place_name":"","community":"Good Hope Lake","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Goodlow","place_name":"Goodlow","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Goose Bay","place_name":"Goose Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gordon Head","place_name":"Gordon Head","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Gordon River","place_name":"Gordon River","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gordon River 2","place_name":"","community":"Gordon River 2","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Gorge Harbour","place_name":"Gorge Harbour","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gossen Creek","place_name":"Gossen Creek","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Gossip Island","place_name":"Gossip Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gowlland Harbour","place_name":"Gowlland Harbour","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Graffunder Trailer Park","place_name":"Graffunder Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Gramsons","place_name":"Gramsons","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Grand Forks","place_name":"","community":"Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Grand Haven","place_name":"Grand Haven","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Grand Rapids","place_name":"Grand Rapids","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Granduc","place_name":"Granduc","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Grandview","place_name":"Grandview","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Grandview Bench","place_name":"Grandview Bench","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Grandview-Woodlands","place_name":"Grandview-Woodlands","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Granisle","place_name":"","community":"Granisle","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Granite","place_name":"Granite","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Granite Bay","place_name":"Granite Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Granite Falls","place_name":"Granite Falls","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Granite Trailer Park","place_name":"Granite Trailer Park","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grantham","place_name":"Grantham","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Granthams Landing","place_name":"Granthams Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Grasmere","place_name":"Grasmere","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grassy Plains","place_name":"Grassy Plains","community":"Cheslatta 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Gravelle Ferry","place_name":"Gravelle Ferry","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Gray Creek","place_name":"Gray Creek","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Great Central","place_name":"Great Central","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Great Central Lake","place_name":"Great Central Lake","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Greata","place_name":"Greata","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Greater Vancouver A","place_name":"Greater Vancouver A","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Greater Vancouver C","place_name":"Greater Vancouver C","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Greater Vancouver, Subd. A","place_name":"Greater Vancouver, Subd. A","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Green Acres Trailer Park - Central Kootenay J","place_name":"Green Acres Trailer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Green Acres Trailer Park - Columbia-Shuswap E","place_name":"Green Acres Trailer Park","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Green Bay Resort","place_name":"Green Bay Resort","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Green Cove","place_name":"Green Cove","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Greendale","place_name":"Greendale","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Greenwood","place_name":"","community":"Greenwood","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Greenwood Mobile Park","place_name":"Greenwood Mobile Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grindrod","place_name":"Grindrod","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Groundbirch","place_name":"Groundbirch","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Guhthe Tah 12","place_name":"","community":"Guhthe Tah 12","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Guildford","place_name":"Guildford","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gun Lake","place_name":"Gun Lake","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Gundy","place_name":"Gundy","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Gwayasdums 1","place_name":"","community":"Gwayasdums 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hagensborg","place_name":"Hagensborg","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hagwilget","place_name":"Hagwilget","community":"Hagwilget 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Hagwilget 1","place_name":"","community":"Hagwilget 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Haig","place_name":"Haig","community":"Schkam 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Haina","place_name":"Haina","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Halalt 2","place_name":"","community":"Halalt 2","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Halfmoon Bay","place_name":"Halfmoon Bay","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Halfway Graham Subdivision","place_name":"Halfway Graham Subdivision","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Halfway Ranch","place_name":"Halfway Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Halfway River 168","place_name":"","community":"Halfway River 168","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Halhalaeden","place_name":"","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Halhalaeden 14","place_name":"Halhalaeden 14","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Halhalaeden 14A","place_name":"Halhalaeden 14A","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hall","place_name":"Hall","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Halyn Trailer Court","place_name":"Halyn Trailer Court","community":"Canal Flats","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hamilton Creek 2","place_name":"","community":"Hamilton Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hamilton Creek 7","place_name":"Hamilton Creek 7","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hanbury","place_name":"Hanbury","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hanceville","place_name":"Hanceville","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Haney","place_name":"Haney","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Happy Valley","place_name":"Happy Valley","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Happy Valley Trailer Park","place_name":"Happy Valley Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Harbour Chines","place_name":"Harbour Chines","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Harbour Village","place_name":"Harbour Village","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hardwicke Island","place_name":"Hardwicke Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Harmac","place_name":"Harmac","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Harmony Heights Trailer Park","place_name":"Harmony Heights Trailer Park","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Harris 3","place_name":"","community":"Harris 3","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Harrison Hot Springs","place_name":"","community":"Harrison Hot Springs","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Harrison Mills","place_name":"Harrison Mills","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Harrogate","place_name":"Harrogate","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Harrop","place_name":"Harrop","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hart Highlands","place_name":"Hart Highlands","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Hartley Bay","place_name":"Hartley Bay","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Harwood Island 2","place_name":"Harwood Island 2","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hasler Flat","place_name":"Hasler Flat","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hasler Flats Subdivision","place_name":"Hasler Flats Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hastings-Sunrise","place_name":"Hastings-Sunrise","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hatzic","place_name":"Hatzic","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hawkins Lake Subdivision","place_name":"Hawkins Lake Subdivision","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hayview Mobile Home","place_name":"Hayview Mobile Home","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hayward Subdivision","place_name":"Hayward Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hazelmere","place_name":"Hazelmere","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hazelton","place_name":"","community":"Hazelton","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Headquarters","place_name":"Headquarters","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Headwaters Ranch","place_name":"Headwaters Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Health Bay","place_name":"Health Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hecate","place_name":"Hecate","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hedley","place_name":"Hedley","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Heffley Creek","place_name":"Heffley Creek","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Hells Gate","place_name":"Hells Gate","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Hemlock Valley","place_name":"Hemlock Valley","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hendrix Lake","place_name":"Hendrix Lake","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Henry And Ann Trailer Park","place_name":"Henry And Ann Trailer Park","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Heriot Bay","place_name":"Heriot Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hesquiat","place_name":"Hesquiat","community":"Hesquiat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hesquiat 1","place_name":"","community":"Hesquiat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Heydon Bay","place_name":"Heydon Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hickethier Ranch","place_name":"Hickethier Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hideway Trailer Court","place_name":"Hideway Trailer Court","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"High Bar 1","place_name":"","community":"High Bar 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Highland Valley Subdivision","place_name":"Highland Valley Subdivision","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Highlands","place_name":"","community":"Highlands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 3"},{"location":"Hiina'is","place_name":"Hiina'is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hillcrest","place_name":"Hillcrest","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hilliers","place_name":"Hilliers","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hills","place_name":"Hills","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hillside Mobile Home Park","place_name":"Hillside Mobile Home Park","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hilltop Ranch","place_name":"Hilltop Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hippa","place_name":"Hippa","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Hisnit","place_name":"Hisnit","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hitacu","place_name":"Hitacu","community":"Ittatsoo 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hi'tatis","place_name":"Hi'tatis","community":"Elhlateese 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hiusta Meadow","place_name":"Hiusta Meadow","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Hixon","place_name":"Hixon","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hkusam","place_name":"Hkusam","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Holachten 8","place_name":"","community":"Holachten 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Holberg","place_name":"Holberg","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Holiday Family Trailer Park","place_name":"Holiday Family Trailer Park","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hollyburn","place_name":"Hollyburn","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Holmwood","place_name":"Holmwood","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Homalco 9","place_name":"","community":"Homalco 9","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Homestead Trailer Park","place_name":"Homestead Trailer Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Homfray Creek","place_name":"Homfray Creek","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Honeymoon Bay","place_name":"Honeymoon Bay","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Honeymoon Creek","place_name":"Honeymoon Creek","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hoodoos","place_name":"Hoodoos","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hoo-ii","place_name":"Hoo-ii","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hope","place_name":"","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hope Bay","place_name":"Hope Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hope Island 1","place_name":"","community":"Hope Island 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hopetown","place_name":"Hopetown","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hopetown 10A","place_name":"","community":"Hopetown 10A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hopington","place_name":"Hopington","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hopkins Landing","place_name":"Hopkins Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Horlick Point","place_name":"Horlick Point","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hornby Island","place_name":"Hornby Island","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Horsefly","place_name":"Horsefly","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Horseshoe Bay","place_name":"Horseshoe Bay","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hosmatqts'os","place_name":"Hosmatqts'os","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hosmer","place_name":"Hosmer","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hosmer Trailer Park","place_name":"Hosmer Trailer Park","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hospital Hill","place_name":"Hospital Hill","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hot Springs Cove","place_name":"Hot Springs Cove","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Houpsitas","place_name":"Houpsitas","community":"Houpsitas 6","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Houpsitas 6","place_name":"","community":"Houpsitas 6","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Houston","place_name":"","community":"Houston","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Houston Trailer Court","place_name":"Houston Trailer Court","community":"Houston","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Howser","place_name":"Howser","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hudson Hope","place_name":"Hudson Hope","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hudson's Hope","place_name":"","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hullcar","place_name":"Hullcar","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Humpback Bay","place_name":"Humpback Bay","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Huntingdon","place_name":"Huntingdon","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hunts Inlet","place_name":"Hunts Inlet","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Hupel","place_name":"Hupel","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Huscroft","place_name":"Huscroft","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hustalen 1","place_name":"","community":"Hustalen 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hutchinson","place_name":"Hutchinson","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hu'ul","place_name":"Hu'ul","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hyacinthe Bay","place_name":"Hyacinthe Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hyde Creek","place_name":"Hyde Creek","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hydraulic","place_name":"Hydraulic","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hyland Post","place_name":"Hyland Post","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Hyland Ranch","place_name":"Hyland Ranch","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Idabel Lake","place_name":"Idabel Lake","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Indian Rock","place_name":"Indian Rock","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ingenika Mine","place_name":"Ingenika Mine","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ingenika Point","place_name":"","community":"Ingenika Point","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Inkahtsaph 6","place_name":"","community":"Inkahtsaph 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Inkaneep","place_name":"Inkaneep","community":"Osoyoos 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen","place_name":"","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen 21","place_name":"Inkluckcheen 21","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen 21B","place_name":"Inkluckcheen 21B","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inklyuhkinatko 2","place_name":"","community":"Inklyuhkinatko 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Invermere","place_name":"","community":"Invermere","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Ioco","place_name":"Ioco","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Iron Bay","place_name":"Iron Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Iron Mask Trailer Park","place_name":"Iron Mask Trailer Park","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Irvines Landing","place_name":"Irvines Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Isaac (Gale Lake) 8","place_name":"Isaac (Gale Lake) 8","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Isidore's Ranch 4","place_name":"","community":"Isidore's Ranch 4","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Iskut","place_name":"Iskut","community":"Iskut 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Iskut 6","place_name":"","community":"Iskut 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Island Cache","place_name":"Island Cache","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Isle Pierre","place_name":"Isle Pierre","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Ittatsoo 1","place_name":"","community":"Ittatsoo 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ivy Green Mobile Home Park","place_name":"Ivy Green Mobile Home Park","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Jackfish Lake Subdivision","place_name":"Jackfish Lake Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Jackman","place_name":"Jackman","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Jackpine Flats","place_name":"Jackpine Flats","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jackson Bay","place_name":"Jackson Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Jacksons","place_name":"Jacksons","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jade City","place_name":"Jade City","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Jaffray","place_name":"Jaffray","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Jaffray Estates","place_name":"Jaffray Estates","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"James Bay","place_name":"James Bay","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Jean Baptiste 28","place_name":"","community":"Jean Baptiste 28","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Jedway","place_name":"Jedway","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jellicoe","place_name":"Jellicoe","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Jersey","place_name":"Jersey","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Jervis Inlet","place_name":"Jervis Inlet","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Jesmond","place_name":"Jesmond","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Jeune Landing","place_name":"Jeune Landing","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Jim Smith Lake and Area","place_name":"Jim Smith Lake and Area","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Joeyaska 2","place_name":"","community":"Joeyaska 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Johnson","place_name":"Johnson","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Johnson Heights","place_name":"Johnson Heights","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Johnsons Landing","place_name":"Johnsons Landing","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Johny Sticks 2","place_name":"","community":"Johny Sticks 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Jordan River","place_name":"Jordan River","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca","place_name":"Juan de Fuca","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca (Part 1)","place_name":"","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca (Part 2)","place_name":"","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Jumbo Glacier","place_name":"Jumbo Glacier","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"June Springs Estates","place_name":"June Springs Estates","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Juniper Ridge","place_name":"Juniper Ridge","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Jura","place_name":"Jura","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Juskatla","place_name":"Juskatla","community":"Port Clements","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Ka:ook","place_name":"Ka:ook","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ka:oop:insh","place_name":"Ka:oop:insh","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ka:youk","place_name":"Ka:youk","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kahmoose 4","place_name":"","community":"Kahmoose 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kahntah","place_name":"Kahntah","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Kahntah 3","place_name":"","community":"Kahntah 3","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Kaisun","place_name":"Kaisun","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kakawis","place_name":"Kakawis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kaleden","place_name":"Kaleden","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kaleva","place_name":"Kaleva","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kamloops","place_name":"","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Kamloops 1","place_name":"","community":"Kamloops 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar","place_name":"","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar - Thompson-Nicola I (Blue Sky Country)","place_name":"Kanaka Bar","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kanaka Bar 1A","place_name":"Kanaka Bar 1A","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar 2","place_name":"Kanaka Bar 2","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Karlukwees","place_name":"Karlukwees","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Karlukwees 1","place_name":"Karlukwees 1","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kaslo","place_name":"","community":"Kaslo","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Katit 1","place_name":"","community":"Katit 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Katzie 1","place_name":"","community":"Katzie 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Katzie 2","place_name":"","community":"Katzie 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Ka-x-shiitl","place_name":"Ka-x-shiitl","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Keating","place_name":"Keating","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Keats Island","place_name":"Keats Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kedleston","place_name":"Kedleston","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Keekwillie Subdivision","place_name":"Keekwillie Subdivision","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Keekwillie Trailer Park","place_name":"Keekwillie Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Keeshan 9","place_name":"Keeshan 9","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Keithley Creek","place_name":"Keithley Creek","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Keith-Lynn","place_name":"Keith-Lynn","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kelly Lake - Peace River D","place_name":"Kelly Lake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Kelly Lake - Thompson-Nicola E (Bonaparte Plateau)","place_name":"Kelly Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kelly Lake Road Estates","place_name":"Kelly Lake Road Estates","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kelowna","place_name":"","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Kelvin","place_name":"Kelvin","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kemano","place_name":"Kemano","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kemano Beach","place_name":"Kemano Beach","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kendrick Camp","place_name":"Kendrick Camp","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kensington-Cedar Cottage","place_name":"Kensington-Cedar Cottage","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kent","place_name":"","community":"Kent","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Keremeos","place_name":"","community":"Keremeos","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kerr Creek","place_name":"Kerr Creek","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kerrisdale","place_name":"Kerrisdale","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kershaw Subdivision","place_name":"Kershaw Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kersley","place_name":"Kersley","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kettle Valley","place_name":"Kettle Valley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Khahanie Trailer Court","place_name":"Khahanie Trailer Court","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Khenipsen","place_name":"Khenipsen","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"K'i Deldel","place_name":"K'i Deldel","community":"Charley Boy's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Kia Ora Trailer Park","place_name":"Kia Ora Trailer Park","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kicking Horse","place_name":"Kicking Horse","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kiikiixink'ok","place_name":"Kiikiixink'ok","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kiix aa","place_name":"Kiix aa","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kiix-in","place_name":"Kiix-in","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kilbella Bay","place_name":"Kilbella Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kildala Arm","place_name":"Kildala Arm","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kildonan","place_name":"Kildonan","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kilgard","place_name":"Kilgard","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kilkerran","place_name":"Kilkerran","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Killarney","place_name":"Killarney","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Killiney Beach","place_name":"Killiney Beach","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Kil-pah-las 3","place_name":"","community":"Kil-pah-las 3","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kimberley","place_name":"","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kimsquit","place_name":"Kimsquit","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kincolith 14","place_name":"Kincolith 14","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kingcome","place_name":"Kingcome","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kingcome Inlet - Mount Waddington A","place_name":"Kingcome Inlet","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kingcome Inlet - Quaee 7","place_name":"Kingcome Inlet","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kingfisher","place_name":"Kingfisher","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kingsgate","place_name":"Kingsgate","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kinnaird","place_name":"Kinnaird","community":"Castlegar","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Kippase 2","place_name":"","community":"Kippase 2","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kispiox","place_name":"Kispiox","community":"Kispiox 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kispiox 1","place_name":"","community":"Kispiox 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kispiox Valley","place_name":"Kispiox Valley","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitamaat 2","place_name":"","community":"Kitamaat 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitamaat Village","place_name":"Kitamaat Village","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitasoo 1","place_name":"","community":"Kitasoo 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitchener","place_name":"Kitchener","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kitimat","place_name":"","community":"Kitimat","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 2"},{"location":"Kitimat-Stikine A","place_name":"","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine B","place_name":"","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine C (Part 1)","place_name":"","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine C (Part 2)","place_name":"","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine D","place_name":"","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine E","place_name":"","community":"Kitimat-Stikine E","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine F","place_name":"","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. A","place_name":"Kitimat-Stikine, Subd. A","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. B","place_name":"Kitimat-Stikine, Subd. B","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. C","place_name":"Kitimat-Stikine, Subd. C","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. D","place_name":"Kitimat-Stikine, Subd. D","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitkatla","place_name":"Kitkatla","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitsault","place_name":"Kitsault","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitseguecla","place_name":"Kitseguecla","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitselas 1","place_name":"","community":"Kitselas 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitsilano","place_name":"Kitsilano","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kitsumkalum","place_name":"Kitsumkalum","community":"Terrace","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Kitsumkaylum 1","place_name":"","community":"Kitsumkaylum 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitty Coleman","place_name":"Kitty Coleman","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kitwanga","place_name":"Kitwanga","community":"Gitwangak 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitzowit 20","place_name":"","community":"Kitzowit 20","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kiusta","place_name":"Kiusta","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Klahkamich 17","place_name":"","community":"Klahkamich 17","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Klahkowit 5","place_name":"Klahkowit 5","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kleanza Creek Subdivision","place_name":"Kleanza Creek Subdivision","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kleecoot","place_name":"Kleecoot","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kleena Kleene","place_name":"Kleena Kleene","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kleetlekut 22","place_name":"","community":"Kleetlekut 22","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Klehkoot 2","place_name":"","community":"Klehkoot 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kleindale","place_name":"Kleindale","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Klemtu","place_name":"Klemtu","community":"Kitasoo 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Klickkumcheen 18","place_name":"","community":"Klickkumcheen 18","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kliikliihuwis","place_name":"Kliikliihuwis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Klit-kle-mah-ah","place_name":"Klit-kle-mah-ah","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kloklowuck 7","place_name":"","community":"Kloklowuck 7","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kluachon Lake 1","place_name":"Kluachon Lake 1","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kluskus 1","place_name":"","community":"Kluskus 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Knutsford","place_name":"Knutsford","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kobes","place_name":"Kobes","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Kokish","place_name":"Kokish","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Koksilah","place_name":"Koksilah","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kookswees","place_name":"Kookswees","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kootenay 1","place_name":"","community":"Kootenay 1","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Kootenay Bay","place_name":"Kootenay Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary A","place_name":"","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary B","place_name":"Kootenay Boundary B","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary B / Lower Columbia-Old-Glory","place_name":"","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary C","place_name":"Kootenay Boundary C","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary C / Christina Lake","place_name":"","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary D","place_name":"Kootenay Boundary D","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary D / Rural Grand Forks","place_name":"","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary E","place_name":"Kootenay Boundary E","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary E / West Boundary","place_name":"","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary, Subd. A","place_name":"Kootenay Boundary, Subd. A","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary, Subd. B","place_name":"Kootenay Boundary, Subd. B","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Cove Mobile Village","place_name":"Kootenay Cove Mobile Village","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Crossing","place_name":"Kootenay Crossing","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Flats West","place_name":"Kootenay Flats West","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kopchitchin 2","place_name":"","community":"Kopchitchin 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kowtain 17","place_name":"","community":"Kowtain 17","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"K'oxsinqii","place_name":"K'oxsinqii","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kragmont","place_name":"Kragmont","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Krestova","place_name":"Krestova","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ksan","place_name":"Ksan","community":"Gitanmaax 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kshish 4","place_name":"","community":"Kshish 4","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kuldo","place_name":"Kuldo","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Kulkayu (Hartley Bay) 4","place_name":"","community":"Kulkayu (Hartley Bay) 4","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulkayu (Hartley Bay) 4A","place_name":"","community":"Kulkayu (Hartley Bay) 4A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulkayu 4","place_name":"Kulkayu 4","community":"Kulkayu (Hartley Bay) 4","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulspai 6","place_name":"","community":"Kulspai 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kumcheen 1","place_name":"","community":"Kumcheen 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kung","place_name":"Kung","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kuper Island 7","place_name":"Kuper Island 7","community":"Penelakut Island 7","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kushya Creek 7","place_name":"Kushya Creek 7","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kuskonook","place_name":"Kuskonook","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kuthlalth 3","place_name":"Kuthlalth 3","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kuz Che 5","place_name":"Kuz Che 5","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Kwawkwawapilt 6","place_name":"","community":"Kwawkwawapilt 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kwinaquth","place_name":"Kwinaquth","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kwisitis","place_name":"Kwisitis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kye Bay","place_name":"Kye Bay","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Kyuquot","place_name":"Kyuquot","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Lac la Hache","place_name":"Lac la Hache","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lac Le Jeune","place_name":"Lac Le Jeune","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lachkaltsap 9","place_name":"Lachkaltsap 9","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ladner","place_name":"Ladner","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ladysmith","place_name":"","community":"Ladysmith","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Laidlaw","place_name":"Laidlaw","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lakahahmen 11","place_name":"","community":"Lakahahmen 11","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lake Buntzen","place_name":"Lake Buntzen","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Lake Country","place_name":"","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Lake Cowichan","place_name":"","community":"Lake Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lake Errock","place_name":"Lake Errock","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lake Hill","place_name":"Lake Hill","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Lake Kathlyn","place_name":"Lake Kathlyn","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lakelse Lake","place_name":"Lakelse Lake","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lakeshore Highlands","place_name":"Lakeshore Highlands","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Laketon","place_name":"Laketon","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Laketown 3","place_name":"","community":"Laketown 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lakeview Heights","place_name":"Lakeview Heights","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Lambourn Trailer Park","place_name":"Lambourn Trailer Park","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lamming Mills","place_name":"Lamming Mills","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lang Bay","place_name":"Lang Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Langdale","place_name":"Langdale","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Langford","place_name":"","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Langley - City","place_name":"","community":"Langley - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langley - District municipality","place_name":"","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langley 2","place_name":"","community":"Langley 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Langley 5","place_name":"Langley 5","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langner Trailer Park","place_name":"Langner Trailer Park","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Lantzville","place_name":"","community":"Lantzville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Larch Hill","place_name":"Larch Hill","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lardeau","place_name":"Lardeau","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Larsons Landing","place_name":"Larsons Landing","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Laurentian Belaire","place_name":"Laurentian Belaire","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lavington","place_name":"Lavington","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Lawnhill","place_name":"Lawnhill","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lax Kw'alaams","place_name":"Lax Kw'alaams","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Lax Kw'alaams 1","place_name":"","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Laxgalts'ap","place_name":"Laxgalts'ap","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Lazo","place_name":"Lazo","community":"Comox","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lebahdo","place_name":"Lebahdo","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Lee Creek","place_name":"Lee Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Leechtown","place_name":"Leechtown","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lees Corner","place_name":"Lees Corner","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lejac","place_name":"Lejac","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lemon Creek","place_name":"Lemon Creek","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Lemoray","place_name":"Lemoray","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Leo Creek","place_name":"Leo Creek","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Leon Creek 2","place_name":"Leon Creek 2","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Lexau Ranch","place_name":"Lexau Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Lexington Subdivision","place_name":"Lexington Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lezbye 6","place_name":"Lezbye 6","community":"Lezbye 6","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Lezbye 6","place_name":"","community":"Lezbye 6","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Liard River","place_name":"Liard River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Liard River 3","place_name":"","community":"Liard River 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lighthouse Point","place_name":"Lighthouse Point","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Likely","place_name":"Likely","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lillooet","place_name":"","community":"Lillooet","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Lillooet 1","place_name":"","community":"Lillooet 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lily Lake","place_name":"Lily Lake","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lincoln Park","place_name":"Lincoln Park","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lindell","place_name":"Lindell","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lindell Beach","place_name":"Lindell Beach","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lindeman","place_name":"Lindeman","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lions Bay","place_name":"","community":"Lions Bay","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Lismore Trailer Park","place_name":"Lismore Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lister","place_name":"Lister","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Little Acres Trailer Court","place_name":"Little Acres Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Little Fort","place_name":"Little Fort","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Little River","place_name":"Little River","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Little Springs","place_name":"","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Little Springs 8","place_name":"Little Springs 8","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Little Springs 18","place_name":"Little Springs 18","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Liumchen Village Mobile Home Park","place_name":"Liumchen Village Mobile Home Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Living Waters Trailer Park","place_name":"Living Waters Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lockeport","place_name":"Lockeport","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lodge Pole Trailer Park","place_name":"Lodge Pole Trailer Park","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Logan Lake","place_name":"","community":"Logan Lake","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lohbiee 3","place_name":"","community":"Lohbiee 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Lone Butte","place_name":"Lone Butte","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lone Prairie","place_name":"Lone Prairie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Long Harbour","place_name":"Long Harbour","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Longbeach","place_name":"Longbeach","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Longworth","place_name":"Longworth","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Loon Lake","place_name":"Loon Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Loon Lake Subdivision","place_name":"Loon Lake Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Loos","place_name":"Loos","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Louis Creek","place_name":"Louis Creek","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Louis Creek 4","place_name":"","community":"Louis Creek 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Louis Squinas Ranch 14","place_name":"Louis Squinas Ranch 14","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lower China Creek","place_name":"Lower China Creek","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lower Hat Creek 2","place_name":"","community":"Lower Hat Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lower Lodge Pole Trailer Court","place_name":"Lower Lodge Pole Trailer Court","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lower Lonsdale","place_name":"Lower Lonsdale","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lower Nicola","place_name":"Lower Nicola","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lower Nicola Trailer Park","place_name":"Lower Nicola Trailer Park","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lower Post","place_name":"","community":"Lower Post","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lower Similkameen 2","place_name":"","community":"Lower Similkameen 2","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lucerne","place_name":"Lucerne","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lukseetsissum 9","place_name":"","community":"Lukseetsissum 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lulu 5","place_name":"","community":"Lulu 5","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lumberton","place_name":"Lumberton","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lumby","place_name":"","community":"Lumby","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lund","place_name":"Lund","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Lust Subdivision","place_name":"Lust Subdivision","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Luxton","place_name":"Luxton","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Lyacksun 3","place_name":"","community":"Lyacksun 3","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Lynn Valley","place_name":"Lynn Valley","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lynnmour","place_name":"Lynnmour","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lynx Creek","place_name":"Lynx Creek","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Lytton","place_name":"","community":"Lytton","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lytton 27B","place_name":"Lytton 27B","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lytton 4A","place_name":"","community":"Lytton 4A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 4E","place_name":"","community":"Lytton 4E","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 9A","place_name":"","community":"Lytton 9A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 9B","place_name":"","community":"Lytton 9B","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Maalth-sit","place_name":"Maalth-sit","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Mabel Lake","place_name":"Mabel Lake","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Macalister","place_name":"Macalister","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mackenzie","place_name":"","community":"Mackenzie","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Macoah","place_name":"Macoah","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Macoah 1","place_name":"","community":"Macoah 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Madeira Park","place_name":"Madeira Park","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Magic Lake Estates","place_name":"Magic Lake Estates","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Magna Bay","place_name":"Magna Bay","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Magnum Mine","place_name":"Magnum Mine","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mah:kiit","place_name":"Mah:kiit","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahatta River","place_name":"Mahatta River","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahmalillikullah 1","place_name":"Mahmalillikullah 1","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahood Falls","place_name":"Mahood Falls","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mahope","place_name":"Mahope","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Maht'ii'as","place_name":"Maht'ii'as","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Maillardville","place_name":"Maillardville","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Makinson","place_name":"Makinson","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Malachan 11","place_name":"","community":"Malachan 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Malahat","place_name":"Malahat","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Malahat 11","place_name":"","community":"Malahat 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Malakwa","place_name":"Malakwa","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Malakwa Trailer Park","place_name":"Malakwa Trailer Park","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Malibu","place_name":"Malibu","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Mammel Subdivision","place_name":"Mammel Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Manca Subdivision","place_name":"Manca Subdivision","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Manning Park","place_name":"Manning Park","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Manson Creek","place_name":"Manson Creek","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mansons Landing","place_name":"Mansons Landing","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mapes","place_name":"Mapes","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Maple Bay","place_name":"Maple Bay","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Maple Ridge","place_name":"","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Maplewood","place_name":"Maplewood","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Maq:cup","place_name":"Maq:cup","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mara","place_name":"Mara","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Marble Canyon 3","place_name":"","community":"Marble Canyon 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Marblehead","place_name":"Marblehead","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Margaret Bay","place_name":"Margaret Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Marguerite","place_name":"Marguerite","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Marigold","place_name":"Marigold","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Marilla","place_name":"Marilla","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Marktosis","place_name":"Marktosis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Marktosis 15","place_name":"","community":"Marktosis 15","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Marne","place_name":"Marne","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Marpole","place_name":"Marpole","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Marron Valley","place_name":"Marron Valley","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Marsh Creek Area","place_name":"Marsh Creek Area","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Marsh Subdivision","place_name":"Marsh Subdivision","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Marshall School Junction","place_name":"Marshall School Junction","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Martin Prairie","place_name":"Martin Prairie","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Martin Valley","place_name":"Martin Valley","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mary Hill","place_name":"Mary Hill","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Marysville","place_name":"Marysville","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mason Creek","place_name":"Mason Creek","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Masset","place_name":"","community":"Masset","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Masset 1","place_name":"","community":"Masset 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Matilpi","place_name":"Matilpi","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Matsayno 5","place_name":"Matsayno 5","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Matsqui","place_name":"Matsqui","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Matsqui 4","place_name":"","community":"Matsqui 4","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Matsqui Main 2","place_name":"","community":"Matsqui Main 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Maurelle Island","place_name":"Maurelle Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Maxan Lake 4","place_name":"Maxan Lake 4","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mayfair","place_name":"Mayfair","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mayne Island","place_name":"Mayne Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mayne Island 6","place_name":"Mayne Island 6","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mayook","place_name":"Mayook","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"McBride","place_name":"","community":"McBride","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McCalls Landing","place_name":"McCalls Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"McCartney's Flat 4","place_name":"","community":"McCartney's Flat 4","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"McCulloch","place_name":"McCulloch","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"McDame","place_name":"McDame","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"McDonalds Landing","place_name":"McDonalds Landing","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"McGillivray","place_name":"McGillivray","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"McGregor","place_name":"McGregor","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"McGuire","place_name":"McGuire","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"McKearney Ranch","place_name":"McKearney Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"McKinley Landing","place_name":"McKinley Landing","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"McLean Ranch","place_name":"McLean Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"McLeese Lake","place_name":"McLeese Lake","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Lake","place_name":"McLeod Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Lake 1","place_name":"","community":"McLeod Lake 1","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"McLeod Lake 5","place_name":"McLeod Lake 5","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Subdivision","place_name":"McLeod Subdivision","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"McLure","place_name":"McLure","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"McMillan Island 6","place_name":"","community":"McMillan Island 6","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"McNab Creek","place_name":"McNab Creek","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Meachen","place_name":"Meachen","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meadow Creek - Central Kootenay D","place_name":"Meadow Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meadow Creek - Columbia-Shuswap F","place_name":"Meadow Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Meadow Lake","place_name":"Meadow Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Meadowbrook","place_name":"Meadowbrook","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Meadowbrook Estates Trailer Park","place_name":"Meadowbrook Estates Trailer Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Meadows","place_name":"Meadows","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meem Quam Leese","place_name":"Meem Quam Leese","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Meldrum Creek","place_name":"Meldrum Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Merritt","place_name":"","community":"Merritt","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Merville","place_name":"Merville","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Mesachie Lake","place_name":"Mesachie Lake","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mesilinka 7","place_name":"","community":"Mesilinka 7","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Metchosin","place_name":"","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Metlakatla","place_name":"Metlakatla","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Metro Vancouver A","place_name":"","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Metrotown","place_name":"Metrotown","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Meziadin Junction","place_name":"Meziadin Junction","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Meziadin Subdivision","place_name":"Meziadin Subdivision","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Mica Creek","place_name":"Mica Creek","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Michel Gardens 36","place_name":"","community":"Michel Gardens 36","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Middle River","place_name":"Middle River","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Middlegate","place_name":"Middlegate","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Midway","place_name":"","community":"Midway","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mile 16 (Hwy 97)","place_name":"Mile 16 (Hwy 97)","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mile 19 Overhead","place_name":"Mile 19 Overhead","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mile 292 Subdivision Alaska Hwy","place_name":"Mile 292 Subdivision Alaska Hwy","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 293 Alaska Highway","place_name":"Mile 293 Alaska Highway","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 422 Alaska Highway","place_name":"Mile 422 Alaska Highway","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 5 Alaska Highway","place_name":"Mile 5 Alaska Highway","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mile 62 1/2","place_name":"Mile 62 1/2","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mill Bay - Bulkley-Nechako G","place_name":"Mill Bay","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mill Bay - Cowichan Valley A","place_name":"Mill Bay","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mill Bay - Nisga'a","place_name":"Mill Bay","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Miller Creek Subdivision","place_name":"Miller Creek Subdivision","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Miller Subdivision","place_name":"Miller Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Millers Landing","place_name":"Millers Landing","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Millstream","place_name":"Millstream","community":"Highlands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 3"},{"location":"Milner","place_name":"Milner","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Milnes Landing","place_name":"Milnes Landing","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Minaty Bay","place_name":"Minaty Bay","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Minstrel Island","place_name":"Minstrel Island","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Minto Landing","place_name":"Minto Landing","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Miocene","place_name":"Miocene","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Miracle Beach","place_name":"Miracle Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Miracle Valley","place_name":"Miracle Valley","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Mirror Lake","place_name":"Mirror Lake","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Missezula Lake","place_name":"Missezula Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mission","place_name":"","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mission 1","place_name":"","community":"Mission 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mission 5","place_name":"","community":"Mission 5","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mission Hill","place_name":"Mission Hill","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Mission Island 2","place_name":"Mission Island 2","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mission Lands 17","place_name":"","community":"Mission Lands 17","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Mitchell Bay","place_name":"Mitchell Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Miworth","place_name":"Miworth","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Moberly Lake","place_name":"Moberly Lake","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Moha","place_name":"Moha","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Montague Harbour","place_name":"Montague Harbour","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Monte Creek","place_name":"Monte Creek","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Monte Lake","place_name":"Monte Lake","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Montizambert Wynd","place_name":"Montizambert Wynd","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Montney","place_name":"Montney","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Montrose","place_name":"","community":"Montrose","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moose Heights","place_name":"Moose Heights","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mooyah Bay","place_name":"Mooyah Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Moresby Camp","place_name":"Moresby Camp","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Morgan Subdivision","place_name":"Morgan Subdivision","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Moricetown","place_name":"Moricetown","community":"Babine 17","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Moricetown 1","place_name":"","community":"Moricetown 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Morrissey","place_name":"Morrissey","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Mound Road Subdivision","place_name":"Mound Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mount Baldy","place_name":"Mount Baldy","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mount Currie","place_name":"","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 1","place_name":"Mount Currie 1","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 2","place_name":"Mount Currie 2","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 6","place_name":"Mount Currie 6","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 8","place_name":"Mount Currie 8","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 10","place_name":"Mount Currie 10","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Gardner","place_name":"Mount Gardner","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Mount Lehman","place_name":"Mount Lehman","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mount Pleasant","place_name":"Mount Pleasant","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mount Robson","place_name":"Mount Robson","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mount View Trailer Court","place_name":"Mount View Trailer Court","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mount Waddington A","place_name":"","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington B","place_name":"","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington C","place_name":"","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington D","place_name":"","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington, Subd. A","place_name":"Mount Waddington, Subd. A","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington, Subd. B","place_name":"Mount Waddington, Subd. B","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Washington","place_name":"Mount Washington","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Mountain Peak Trailer Court","place_name":"Mountain Peak Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mountain Shadow Trailer Court","place_name":"Mountain Shadow Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Mountain Shadows Trailer Court","place_name":"Mountain Shadows Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mountain Station","place_name":"Mountain Station","community":"Nelson","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Mountain View","place_name":"Mountain View","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mountain View Trailer Court","place_name":"Mountain View Trailer Court","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mountainview Trailer Park","place_name":"Mountainview Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Moyie","place_name":"Moyie","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie Lake","place_name":"Moyie Lake","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie River","place_name":"Moyie River","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie Shore Estates","place_name":"Moyie Shore Estates","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mud Bay - Comox Valley A","place_name":"Mud Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mud Bay - Surrey","place_name":"Mud Bay","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mud River","place_name":"Mud River","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Mudge Island","place_name":"Mudge Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Muncho Lake","place_name":"Muncho Lake","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Murdale","place_name":"Murdale","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Murrayville","place_name":"Murrayville","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Musgrave Landing","place_name":"Musgrave Landing","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Muskwa","place_name":"Muskwa","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Musqueam 2","place_name":"","community":"Musqueam 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Musqueam 4","place_name":"","community":"Musqueam 4","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Myra","place_name":"Myra","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Myrtle Point","place_name":"Myrtle Point","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ná:mint","place_name":"Ná:mint","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nadu","place_name":"Nadu","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Nahmint","place_name":"Nahmint","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nahun","place_name":"Nahun","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Nak'azdli","place_name":"","community":"Nak'azdli","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nak'azdli (Necoslie 1)","place_name":"Nak'azdli (Necoslie 1)","community":"Nak'azdli","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nakusp","place_name":"","community":"Nakusp","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Nalos Landing","place_name":"Nalos Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Namu","place_name":"Namu","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nanaimo","place_name":"","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Nanaimo A","place_name":"","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo B","place_name":"","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nanaimo C","place_name":"","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo D","place_name":"Nanaimo D","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo E","place_name":"","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo F","place_name":"","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo G","place_name":"","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo H","place_name":"","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo River","place_name":"","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 2","place_name":"Nanaimo River 2","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 3","place_name":"Nanaimo River 3","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 4","place_name":"Nanaimo River 4","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo Town 1","place_name":"","community":"Nanaimo Town 1","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo, Subd. A","place_name":"Nanaimo, Subd. A","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo, Subd. B","place_name":"Nanaimo, Subd. B","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanoose","place_name":"","community":"Nanoose","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanoose Bay","place_name":"Nanoose Bay","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Naramata","place_name":"Naramata","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Narcosli Creek","place_name":"Narcosli Creek","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nasookin Road Subdivision","place_name":"Nasookin Road Subdivision","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nass Camp","place_name":"Nass Camp","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Nautley (Fort Fraser) 1","place_name":"","community":"Nautley (Fort Fraser) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nazco 20","place_name":"","community":"Nazco 20","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Nazko","place_name":"Nazko","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Necait 6","place_name":"","community":"Necait 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nechako","place_name":"Nechako","community":"Kitimat","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 2"},{"location":"Nedoats 11","place_name":"","community":"Nedoats 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Needles","place_name":"Needles","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nekalliston 2","place_name":"","community":"Nekalliston 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nekliptum 1","place_name":"Nekliptum 1","community":"Nekliptum 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nekliptum 1","place_name":"","community":"Nekliptum 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nelson","place_name":"","community":"Nelson","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Nelson Forks","place_name":"Nelson Forks","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Nelson Island","place_name":"Nelson Island","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Nelway","place_name":"Nelway","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nemaiah Valley","place_name":"Nemaiah Valley","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nemiah Valley","place_name":"Nemiah Valley","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nenagwas 12","place_name":"","community":"Nenagwas 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nequatque","place_name":"","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nequatque 1","place_name":"Nequatque 1","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nequatque 2","place_name":"Nequatque 2","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Nequatque 3A","place_name":"Nequatque 3A","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nesikep 6","place_name":"","community":"Nesikep 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Neskonlith","place_name":"","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 1","place_name":"Neskonlith 1","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 1 (Neskainlith 1)","place_name":"Neskonlith 1 (Neskainlith 1)","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 2","place_name":"Neskonlith 2","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nesters","place_name":"Nesters","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Nesuch 3","place_name":"","community":"Nesuch 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"New Aiyansh","place_name":"New Aiyansh","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"New Aiyansh 1","place_name":"New Aiyansh 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"New Barkerville","place_name":"New Barkerville","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"New Brighton","place_name":"New Brighton","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"New Clew","place_name":"New Clew","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Denver","place_name":"","community":"New Denver","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"New Hazelton","place_name":"","community":"New Hazelton","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Remo","place_name":"New Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Settlement","place_name":"New Settlement","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"New Songhees 1A","place_name":"","community":"New Songhees 1A","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"New Westminster","place_name":"","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Newcastle","place_name":"Newcastle","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Newgate","place_name":"Newgate","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Newlands","place_name":"Newlands","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Newton","place_name":"Newton","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Niagara","place_name":"Niagara","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nichols Mobile Homes","place_name":"Nichols Mobile Homes","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Nicholson","place_name":"Nicholson","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Nickel Palm 4","place_name":"","community":"Nickel Palm 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nickeyeah 25","place_name":"","community":"Nickeyeah 25","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicks Island","place_name":"Nicks Island","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nicola","place_name":"Nicola","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Nicola Lake 1","place_name":"","community":"Nicola Lake 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicola Mameet 1","place_name":"","community":"Nicola Mameet 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicomen 1","place_name":"","community":"Nicomen 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nimpkish","place_name":"Nimpkish","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nimpkish 2","place_name":"","community":"Nimpkish 2","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nimpkish Heights","place_name":"Nimpkish Heights","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nimpo Lake","place_name":"Nimpo Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Five Mile House","place_name":"Ninety Five Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Four Mile House","place_name":"Ninety Four Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Seven Mile House","place_name":"Ninety Seven Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Three Mile House","place_name":"Ninety Three Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninstints","place_name":"Ninstints","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Nisga'a","place_name":"","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Nkaih 10","place_name":"","community":"Nkaih 10","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nohomeen 23","place_name":"","community":"Nohomeen 23","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nooaitch 10","place_name":"","community":"Nooaitch 10","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Noonla 6","place_name":"","community":"Noonla 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nootka","place_name":"Nootka","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Noralee","place_name":"Noralee","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Norgate","place_name":"Norgate","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Bay 5","place_name":"","community":"North Bay 5","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"North Bend","place_name":"North Bend","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"North Bonaparte","place_name":"North Bonaparte","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"North Bulkley","place_name":"North Bulkley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"North Campbell River","place_name":"North Campbell River","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"North Coast A","place_name":"","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Coast C","place_name":"","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"North Coast D","place_name":"","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Coast E","place_name":"","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Cowichan","place_name":"","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"North Delta","place_name":"North Delta","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Galiano","place_name":"North Galiano","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"North Kamloops","place_name":"North Kamloops","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"North Lonsdale","place_name":"North Lonsdale","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Nechako","place_name":"North Nechako","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"North Okanagan B","place_name":"","community":"North Okanagan B","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"North Okanagan C","place_name":"","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"North Okanagan D","place_name":"","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan E","place_name":"","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan F","place_name":"","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan, Subd. A","place_name":"North Okanagan, Subd. A","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan, Subd. B","place_name":"North Okanagan, Subd. B","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Pender Island","place_name":"North Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"North Pine","place_name":"North Pine","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"North Poplar","place_name":"North Poplar","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Saanich","place_name":"","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"North Star","place_name":"North Star","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"North Tacla Lake","place_name":"","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"North Tacla Lake 7","place_name":"North Tacla Lake 7","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"North Tacla Lake 7A","place_name":"North Tacla Lake 7A","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"North Thompson 1","place_name":"","community":"North Thompson 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"North Vancouver - City","place_name":"","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Vancouver - District municipality","place_name":"","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Woodlands","place_name":"North Woodlands","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Northern Rockies","place_name":"","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies A","place_name":"Northern Rockies A","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies B","place_name":"Northern Rockies B","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies Regional Municipality","place_name":"Northern Rockies Regional Municipality","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northfield","place_name":"Northfield","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Northridge","place_name":"Northridge","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Notch Hill","place_name":"Notch Hill","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Nourse Subdivision","place_name":"Nourse Subdivision","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Nuchaquis","place_name":"Nuchaquis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nuchatl 1","place_name":"Nuchatl 1","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nuchatl 2","place_name":"Nuchatl 2","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nuchatlitz","place_name":"Nuchatlitz","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nukko Lake","place_name":"Nukko Lake","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Nulki","place_name":"Nulki","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Numukamis 1","place_name":"","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nursery","place_name":"Nursery","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nuuautin 2","place_name":"","community":"Nuuautin 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nuumaqimyis","place_name":"Nuumaqimyis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Oak Bay","place_name":"","community":"Oak Bay","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Oak Hills","place_name":"Oak Hills","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Oakridge","place_name":"Oakridge","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oasis","place_name":"Oasis","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Oasis Trailer Court","place_name":"Oasis Trailer Court","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ocean Falls","place_name":"Ocean Falls","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ocean Grove","place_name":"Ocean Grove","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Ocean Park","place_name":"Ocean Park","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oclucje 7","place_name":"","community":"Oclucje 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oetco Flats","place_name":"Oetco Flats","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ogden","place_name":"Ogden","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Ohamil 1","place_name":"","community":"Ohamil 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Okanagan (Part) 1 - North Okanagan","place_name":"","community":"Okanagan (Part) 1 - North Okanagan","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Okanagan (Part) 1 - Thompson/Okanagan","place_name":"","community":"Okanagan (Part) 1 - Thompson/Okanagan","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Okanagan Centre","place_name":"Okanagan Centre","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan Falls","place_name":"Okanagan Falls","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan Landing","place_name":"Okanagan Landing","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan Mission","place_name":"Okanagan Mission","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan Terrace Trailer Park","place_name":"Okanagan Terrace Trailer Park","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan-Similkameen A","place_name":"","community":"Okanagan-Similkameen A","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen B","place_name":"","community":"Okanagan-Similkameen B","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen C","place_name":"","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen D","place_name":"","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen E","place_name":"","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen F","place_name":"","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan-Similkameen G","place_name":"","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen H","place_name":"","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen I","place_name":"","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen, Subd. A","place_name":"Okanagan-Similkameen, Subd. A","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan-Similkameen, Subd. B","place_name":"Okanagan-Similkameen, Subd. B","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen, Subd. C","place_name":"Okanagan-Similkameen, Subd. C","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Olalla","place_name":"Olalla","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Old Bella Bella","place_name":"Old Bella Bella","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Old Fort - Nedoats 11","place_name":"Old Fort","community":"Nedoats 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Old Fort - Peace River C","place_name":"Old Fort","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Old Fort Nelson","place_name":"Old Fort Nelson","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Old Hogem","place_name":"Old Hogem","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Old Massett","place_name":"Old Massett","community":"Masset 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Old Remo","place_name":"Old Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Old Town","place_name":"Old Town","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Oliver","place_name":"","community":"Oliver","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Oliver's Landing","place_name":"Oliver's Landing","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Omineca 1","place_name":"","community":"Omineca 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"One Forty One Mile House","place_name":"One Forty One Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"One Hundred Mile House","place_name":"","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Oona River","place_name":"Oona River","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ootischenia","place_name":"Ootischenia","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ootischenia Flats","place_name":"Ootischenia Flats","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ootsa Lake","place_name":"Ootsa Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Openit 27","place_name":"Openit 27","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Opitsat","place_name":"Opitsat","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Opitsat 1","place_name":"","community":"Opitsat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oregon Jack Creek 5","place_name":"","community":"Oregon Jack Creek 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Orlomah Beach","place_name":"Orlomah Beach","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Osborn","place_name":"Osborn","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Osland","place_name":"Osland","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Osoyoos","place_name":"","community":"Osoyoos","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Osoyoos 1","place_name":"","community":"Osoyoos 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Osprey Lake","place_name":"Osprey Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Othello","place_name":"Othello","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ots'oo-a","place_name":"Ots'oo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Otter Bay","place_name":"Otter Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Otway","place_name":"Otway","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Ououkinsh","place_name":"Ououkinsh","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Oweekeno","place_name":"Oweekeno","community":"Katit 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Owen Bay","place_name":"Owen Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Owl Creek","place_name":"Owl Creek","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Oxford Heights","place_name":"Oxford Heights","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oyama","place_name":"Oyama","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Oyster Bay 12","place_name":"","community":"Oyster Bay 12","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oyster River","place_name":"Oyster River","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Pacheena 1","place_name":"Pacheena 1","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pahas 3","place_name":"Pahas 3","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Paldi","place_name":"Paldi","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Palling","place_name":"Palling","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Palling 1","place_name":"","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Palling 1A","place_name":"Palling 1A","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Panorama","place_name":"Panorama","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Panorama Ridge","place_name":"Panorama Ridge","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Panorama Subdivision","place_name":"Panorama Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Panorama Trailer Court","place_name":"Panorama Trailer Court","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Papyum 27","place_name":"","community":"Papyum 27","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Papyum 27A","place_name":"Papyum 27A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paqulh","place_name":"","community":"Paqulh","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Paradise Point","place_name":"Paradise Point","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paradise Valley - qathet B","place_name":"Paradise Valley","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Paradise Valley - Squamish","place_name":"Paradise Valley","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Paradise Valley Trailer Court","place_name":"Paradise Valley Trailer Court","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Park Royal","place_name":"Park Royal","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Park Siding","place_name":"Park Siding","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Parkdale Gardens","place_name":"Parkdale Gardens","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Parkland","place_name":"Parkland","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Parksville","place_name":"","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Parkville Trailer Park","place_name":"Parkville Trailer Park","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Parsnip 5","place_name":"Parsnip 5","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Parson","place_name":"Parson","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Pashilqua 2","place_name":"","community":"Pashilqua 2","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Paska Island 3","place_name":"","community":"Paska Island 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pasley Island","place_name":"Pasley Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pass Creek","place_name":"Pass Creek","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Passmore","place_name":"Passmore","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Paterson","place_name":"Paterson","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Paul Lake","place_name":"Paul Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paul's Basin 2","place_name":"","community":"Paul's Basin 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Paulson","place_name":"Paulson","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pavilion","place_name":"Pavilion","community":"Pavilion 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Pavilion 1","place_name":"","community":"Pavilion 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Pavillon Lake","place_name":"Pavillon Lake","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Paxton Valley","place_name":"Paxton Valley","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Peace River B","place_name":"","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River C","place_name":"","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River D","place_name":"","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River E","place_name":"","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River, Subd. B","place_name":"Peace River, Subd. B","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River, Subd. C","place_name":"Peace River, Subd. C","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peachland","place_name":"","community":"Peachland","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pebble Beach","place_name":"Pebble Beach","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Peejay","place_name":"Peejay","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pemberton","place_name":"","community":"Pemberton","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pemberton Heights","place_name":"Pemberton Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Pemberton Meadows","place_name":"Pemberton Meadows","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pemynoos 9","place_name":"","community":"Pemynoos 9","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pender Island","place_name":"Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pendleton Bay","place_name":"Pendleton Bay","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Penelakut Island 7","place_name":"","community":"Penelakut Island 7","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Penny","place_name":"Penny","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Penticton","place_name":"Penticton","community":"Penticton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Penticton 1","place_name":"","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pentledge 2","place_name":"","community":"Pentledge 2","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Peq-Paq 22","place_name":"","community":"Peq-Paq 22","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Perow","place_name":"Perow","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Perrys","place_name":"Perrys","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Peters 1","place_name":"","community":"Peters 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Phillips Arm","place_name":"Phillips Arm","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Phoenix","place_name":"Phoenix","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Piers Island","place_name":"Piers Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pilot Bay","place_name":"Pilot Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pinantan Lake","place_name":"Pinantan Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pinchi","place_name":"Pinchi","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Pinchi Lake","place_name":"Pinchi Lake","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Pine Hills Mobile Home Park","place_name":"Pine Hills Mobile Home Park","community":"Peachland","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pine Springs","place_name":"Pine Springs","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pine Trailer Court","place_name":"Pine Trailer Court","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Pine Valley - Cariboo D","place_name":"Pine Valley","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pine Valley - Peace River E","place_name":"Pine Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pinecrest Mobile Home Park","place_name":"Pinecrest Mobile Home Park","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pinegrove","place_name":"Pinegrove","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pinegrove Trailer Park","place_name":"Pinegrove Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Pineridge Estates","place_name":"Pineridge Estates","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pineview - Fraser-Fort George D","place_name":"Pineview","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Pineview - Peace River C","place_name":"Pineview","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pinewood Subdivision","place_name":"Pinewood Subdivision","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pink Mountain","place_name":"Pink Mountain","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pioneer Mine","place_name":"Pioneer Mine","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Pioneer Subdivision","place_name":"Pioneer Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pitt Meadows","place_name":"","community":"Pitt Meadows","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Pixie Beach","place_name":"Pixie Beach","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Playmor Junction","place_name":"Playmor Junction","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pleasant Camp","place_name":"Pleasant Camp","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Pleasantside","place_name":"Pleasantside","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Plumper Harbour","place_name":"Plumper Harbour","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Point Holmes","place_name":"Point Holmes","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Poison Creek 17A","place_name":"","community":"Poison Creek 17A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Ponderosa Trailer Park","place_name":"Ponderosa Trailer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pope Landing","place_name":"Pope Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Popkum","place_name":"Popkum","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Popkum 1","place_name":"","community":"Popkum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Poplar Creek","place_name":"Poplar Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Poplar Grove","place_name":"Poplar Grove","community":"Penticton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Porcher Island","place_name":"Porcher Island","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Porpoise Bay","place_name":"Porpoise Bay","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Alberni","place_name":"","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Port Albion","place_name":"Port Albion","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Alice","place_name":"","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Port Clements","place_name":"","community":"Port Clements","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Port Coquitlam","place_name":"","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Desire","place_name":"Port Desire","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Douglas","place_name":"Port Douglas","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Edward","place_name":"","community":"Port Edward","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Port Essington","place_name":"Port Essington","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Port Guichon","place_name":"Port Guichon","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hammond","place_name":"Port Hammond","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hammond - Haney","place_name":"Port Hammond - Haney","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hardy","place_name":"","community":"Port Hardy","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Kells","place_name":"Port Kells","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Mann","place_name":"Port Mann","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port McNeill","place_name":"","community":"Port McNeill","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Mellon","place_name":"Port Mellon","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Moody","place_name":"","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Neville","place_name":"Port Neville","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Port Renfrew","place_name":"Port Renfrew","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Port Simpson 1","place_name":"Port Simpson 1","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Port Washington","place_name":"Port Washington","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Porteau","place_name":"Porteau","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Porter Landing","place_name":"Porter Landing","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Portier Pass 5","place_name":"","community":"Portier Pass 5","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Porto Rico","place_name":"Porto Rico","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pouce Coupe","place_name":"","community":"Pouce Coupe","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Powell River","place_name":"","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Powell River A","place_name":"Powell River A","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River B","place_name":"Powell River B","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River C","place_name":"Powell River C","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River D","place_name":"Powell River D","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River E","place_name":"Powell River E","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River, Subd. A","place_name":"Powell River, Subd. A","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powers Addition","place_name":"Powers Addition","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Prairie Valley","place_name":"Prairie Valley","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Prairiedale","place_name":"Prairiedale","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Premier","place_name":"Premier","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Premier Lake","place_name":"Premier Lake","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Prespatou","place_name":"Prespatou","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pressy Lake","place_name":"Pressy Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Priest's Valley 6","place_name":"","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Prince George","place_name":"","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Prince Rupert","place_name":"","community":"Prince Rupert","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Princeton","place_name":"","community":"Princeton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pritchard","place_name":"Pritchard","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pritchard Mobile Subdivision","place_name":"Pritchard Mobile Subdivision","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Procter","place_name":"Procter","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Progress","place_name":"Progress","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Promontory","place_name":"Promontory","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Prophet River - Northern Rockies","place_name":"Prophet River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Prophet River - Prophet River 4","place_name":"Prophet River","community":"Prophet River 4","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Prophet River 4","place_name":"","community":"Prophet River 4","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Prospect Lake","place_name":"Prospect Lake","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Puckatholetchin 11","place_name":"","community":"Puckatholetchin 11","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Punchaw","place_name":"Punchaw","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Puntledge","place_name":"Puntledge","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Puntzi Lake 2","place_name":"","community":"Puntzi Lake 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Purden Lake","place_name":"Purden Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Q'alatkú7em","place_name":"","community":"Q'alatkú7em","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"qathet A","place_name":"","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet B","place_name":"","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet C","place_name":"","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet D","place_name":"","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet E","place_name":"","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quaaout 1","place_name":"","community":"Quaaout 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Quadra Loop","place_name":"Quadra Loop","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quaee 7","place_name":"","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Qualicum","place_name":"","community":"Qualicum","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Qualicum Bay","place_name":"Qualicum Bay","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Qualicum Beach","place_name":"","community":"Qualicum Beach","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Quamichan","place_name":"Quamichan","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Quathiaski Cove","place_name":"Quathiaski Cove","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quatsino","place_name":"Quatsino","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quatsino Subdivision 18","place_name":"","community":"Quatsino Subdivision 18","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Quattishe 1","place_name":"Quattishe 1","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Queen Charlotte","place_name":"","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Queens Bay","place_name":"Queens Bay","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Queens Cove","place_name":"Queens Cove","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Queens Park","place_name":"Queens Park","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Queensborough","place_name":"Queensborough","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Quesnel","place_name":"","community":"Quesnel","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Quesnel 1","place_name":"","community":"Quesnel 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Quesnel Canyon","place_name":"Quesnel Canyon","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quesnel Forks","place_name":"Quesnel Forks","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quesnel View","place_name":"Quesnel View","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quick","place_name":"Quick","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Quilchena","place_name":"Quilchena","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Quin-e-ex","place_name":"Quin-e-ex","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quinsam","place_name":"Quinsam","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Quinsam 12","place_name":"","community":"Quinsam 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Race Point","place_name":"Race Point","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Radium Hot Springs","place_name":"","community":"Radium Hot Springs","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Raft River","place_name":"Raft River","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rail Lake","place_name":"Rail Lake","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Rainbow Trailer Court","place_name":"Rainbow Trailer Court","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Rainy Hollow","place_name":"Rainy Hollow","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ranch Park","place_name":"Ranch Park","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ranch Park Trailer Park","place_name":"Ranch Park Trailer Park","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Ranchero","place_name":"Ranchero","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Raspberry","place_name":"Raspberry","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rayleigh","place_name":"Rayleigh","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Read Island","place_name":"Read Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Red Bluff","place_name":"Red Bluff","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Red Mountain","place_name":"Red Mountain","community":"Rossland","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Red Pass","place_name":"Red Pass","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Red Rock","place_name":"Red Rock","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Red Rose","place_name":"Red Rose","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Redroofs","place_name":"Redroofs","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Redstone","place_name":"Redstone","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Redstone Flat 1","place_name":"","community":"Redstone Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Refuge Cove","place_name":"Refuge Cove","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Refuge Cove 6","place_name":"","community":"Refuge Cove 6","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Reid Lake","place_name":"Reid Lake","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Remac","place_name":"Remac","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Remo","place_name":"Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Renata","place_name":"Renata","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rendez-Vous Island","place_name":"Rendez-Vous Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Renfrew-Collingwood","place_name":"Renfrew-Collingwood","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rennie Subdivision","place_name":"Rennie Subdivision","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Retallack","place_name":"Retallack","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Revelstoke","place_name":"","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rhone","place_name":"Rhone","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rich Bar","place_name":"Rich Bar","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Richmond","place_name":"","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ridgedale","place_name":"Ridgedale","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Riley Park","place_name":"Riley Park","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Riondel","place_name":"Riondel","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Riske Creek","place_name":"Riske Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Riva Ridge Trailer Park","place_name":"Riva Ridge Trailer Park","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"River Bend Trailer Court","place_name":"River Bend Trailer Court","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"River Jordan","place_name":"River Jordan","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"River Springs","place_name":"River Springs","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rivers Inlet","place_name":"Rivers Inlet","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rivershore","place_name":"Rivershore","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Riverside Trailer Court","place_name":"Riverside Trailer Court","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rivervale","place_name":"Rivervale","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Roberts Creek","place_name":"Roberts Creek","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Robson","place_name":"Robson","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Robson West","place_name":"Robson West","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Roche Lake Resort","place_name":"Roche Lake Resort","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rock Bay","place_name":"Rock Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rock Creek","place_name":"Rock Creek","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rockyview","place_name":"Rockyview","community":"Cranbrook","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Roe Lake","place_name":"Roe Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Rogers Pass","place_name":"Rogers Pass","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Rolla","place_name":"Rolla","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Rolling Hills Park","place_name":"Rolling Hills Park","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Roosville","place_name":"Roosville","community":"Tobacco Plains 2","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Rose Harbour","place_name":"Rose Harbour","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Rose Lake","place_name":"Rose Lake","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Rose Prairie","place_name":"Rose Prairie","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Rosebery","place_name":"Rosebery","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rosedale","place_name":"Rosedale","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Rosen Lake Trailer Court","place_name":"Rosen Lake Trailer Court","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ross Spur","place_name":"Ross Spur","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rossland","place_name":"","community":"Rossland","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rosswood","place_name":"Rosswood","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Rough Bay","place_name":"Rough Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Round Lake","place_name":"Round Lake","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Round Prairie","place_name":"Round Prairie","community":"Elkford","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Roy","place_name":"Roy","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Royal Oak","place_name":"Royal Oak","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Royston","place_name":"Royston","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Ruault Road Subdivision","place_name":"Ruault Road Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ruby Creek","place_name":"Ruby Creek","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ruby Creek 2","place_name":"","community":"Ruby Creek 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Rumble Beach","place_name":"Rumble Beach","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rupert","place_name":"Rupert","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ruskin","place_name":"Ruskin","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rutland","place_name":"Rutland","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Ryder Lake","place_name":"Ryder Lake","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Rykerts","place_name":"Rykerts","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ryter's Trailer Court","place_name":"Ryter's Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"S1/2 Tsimpsean 2","place_name":"","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Saaiyouck 6","place_name":"Saaiyouck 6","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Saanich","place_name":"","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Saanichton","place_name":"Saanichton","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sachawil","place_name":"Sachawil","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sachsa","place_name":"Sachsa","community":"Sachsa 4","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sachsa 4","place_name":"","community":"Sachsa 4","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sachteen","place_name":"","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sachteen 2","place_name":"Sachteen 2","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sachteen 2A","place_name":"Sachteen 2A","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Saddle Rock 9","place_name":"","community":"Saddle Rock 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sahali","place_name":"Sahali","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Sahara Heights","place_name":"Sahara Heights","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sahhaltkum 4","place_name":"","community":"Sahhaltkum 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sahtlam","place_name":"Sahtlam","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Salmo","place_name":"","community":"Salmo","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Salmon Arm","place_name":"","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Salmon Beach","place_name":"Salmon Beach","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Salmon River 1","place_name":"","community":"Salmon River 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Salmon River Meadow 7","place_name":"","community":"Salmon River Meadow 7","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Salmon Valley","place_name":"Salmon Valley","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Saloon","place_name":"Saloon","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Saltair","place_name":"Saltair","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saltery Bay","place_name":"Saltery Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Saltspring Island","place_name":"","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Samahquam 1","place_name":"Samahquam 1","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"San Josef","place_name":"San Josef","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sanca","place_name":"Sanca","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sanderson Site","place_name":"Sanderson Site","community":"Quesnel","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Sandon","place_name":"Sandon","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sandspit","place_name":"Sandspit","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Sandwick","place_name":"Sandwick","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sandy Beach Resort","place_name":"Sandy Beach Resort","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sandy Cove","place_name":"Sandy Cove","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sandy Harry 4","place_name":"","community":"Sandy Harry 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sandy Point","place_name":"Sandy Point","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sandyville","place_name":"Sandyville","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sapperton","place_name":"Sapperton","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Saratoga Beach","place_name":"Saratoga Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sardis","place_name":"Sardis","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Sarita","place_name":"Sarita","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Saseenos","place_name":"Saseenos","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saturna","place_name":"Saturna","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saturna Island","place_name":"Saturna Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Savarie Subdivision","place_name":"Savarie Subdivision","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Savona","place_name":"Savona","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sayward","place_name":"","community":"Sayward","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Schaltuuch 27","place_name":"Schaltuuch 27","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Schelowat 1","place_name":"","community":"Schelowat 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Schemenauer Subdivision","place_name":"Schemenauer Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Schkam 2","place_name":"","community":"Schkam 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Scotch Creek","place_name":"Scotch Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Scotch Creek 4","place_name":"","community":"Scotch Creek 4","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Scotia Bay","place_name":"Scotia Bay","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Scott Cove","place_name":"Scott Cove","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Scotties Trailer Park","place_name":"Scotties Trailer Park","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Scotty Creek","place_name":"Scotty Creek","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Scowlitz 1","place_name":"","community":"Scowlitz 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seabird Island","place_name":"","community":"Seabird Island","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seabird Mobile Home Park","place_name":"Seabird Mobile Home Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Seafair","place_name":"Seafair","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seaford","place_name":"Seaford","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Seah 5","place_name":"","community":"Seah 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Seaichem 16","place_name":"","community":"Seaichem 16","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seal Bay Subdivision","place_name":"Seal Bay Subdivision","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Seaside Park","place_name":"Seaside Park","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Seaspunkut 4","place_name":"","community":"Seaspunkut 4","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Sechelt","place_name":"","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sechelt (Part) - qathet","place_name":"","community":"Sechelt (Part) - qathet","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sechelt (Part) - Sunshine Coast","place_name":"","community":"Sechelt (Part) - Sunshine Coast","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Secret Cove","place_name":"Secret Cove","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Selma Park","place_name":"Selma Park","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Semiahmoo","place_name":"","community":"Semiahmoo","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sentinel Hill","place_name":"Sentinel Hill","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seton Lake 5","place_name":"","community":"Seton Lake 5","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seton Lake 5A","place_name":"Seton Lake 5A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Seton Portage","place_name":"Seton Portage","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Seven Mile Corner","place_name":"Seven Mile Corner","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sevenoaks","place_name":"Sevenoaks","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Seventy Mile House","place_name":"Seventy Mile House","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Sewall","place_name":"Sewall","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Sewell Inlet","place_name":"Sewell Inlet","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Seymour Arm","place_name":"Seymour Arm","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Seymour Creek 2","place_name":"","community":"Seymour Creek 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seymour Heights","place_name":"Seymour Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seymour Inlet","place_name":"Seymour Inlet","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Seymour Lake","place_name":"Seymour Lake","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Seymour Landing","place_name":"Seymour Landing","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Seymour Meadows 19","place_name":"Seymour Meadows 19","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sha:wiis","place_name":"Sha:wiis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shackan 11","place_name":"","community":"Shackan 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shady Valley","place_name":"Shady Valley","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Shaha Estates","place_name":"Shaha Estates","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shalalth","place_name":"Shalalth","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Shannon Bay","place_name":"Shannon Bay","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Shannon Trailer Park","place_name":"Shannon Trailer Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sharpe Lake","place_name":"Sharpe Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Shaughnessy","place_name":"Shaughnessy","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Shawl Bay","place_name":"Shawl Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shawnaire Resort","place_name":"Shawnaire Resort","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan","place_name":"Shawnigan","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan Lake","place_name":"Shawnigan Lake","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan Lake Mobile Home Park","place_name":"Shawnigan Lake Mobile Home Park","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawniken 4B","place_name":"","community":"Shawniken 4B","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shearer Dale","place_name":"Shearer Dale","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Shearwater","place_name":"Shearwater","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shell Beach","place_name":"Shell Beach","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shelley","place_name":"Shelley","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Shelter Bay","place_name":"Shelter Bay","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Shelter Point","place_name":"Shelter Point","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Shepherds Inn","place_name":"Shepherds Inn","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sheraton","place_name":"Sheraton","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Shere","place_name":"Shere","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sheridan Lake","place_name":"Sheridan Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sheslay","place_name":"Sheslay","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Shingle Creek","place_name":"Shingle Creek","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Shingle Point 4","place_name":"","community":"Shingle Point 4","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Shirley","place_name":"Shirley","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shitlthmaq-is","place_name":"Shitlthmaq-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sho-ook 5","place_name":"Sho-ook 5","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Shoreacres","place_name":"Shoreacres","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Shoreholme","place_name":"Shoreholme","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Shorewood San Parreil","place_name":"Shorewood San Parreil","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shulus","place_name":"Shulus","community":"Nicola Mameet 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shushartie","place_name":"Shushartie","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shuswap","place_name":"","community":"Shuswap","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Shuswap - Thompson-Nicola L (Grasslands)","place_name":"Shuswap","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shuswap Falls","place_name":"Shuswap Falls","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shuswap Lake Estates","place_name":"Shuswap Lake Estates","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shutty Bench","place_name":"Shutty Bench","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sicamous","place_name":"","community":"Sicamous","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sidley","place_name":"Sidley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Sidney","place_name":"","community":"Sidney","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sikanni Chief","place_name":"Sikanni Chief","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sik-e-dakh 2","place_name":"","community":"Sik-e-dakh 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Silica","place_name":"Silica","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Silver Creek - Columbia-Shuswap D","place_name":"Silver Creek","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Silver Creek - Hope","place_name":"Silver Creek","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Silver River","place_name":"Silver River","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Silver Star","place_name":"Silver Star","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Silver Star Trailer Park","place_name":"Silver Star Trailer Park","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Silver Valley","place_name":"Silver Valley","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Silverhill","place_name":"Silverhill","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Silverton","place_name":"","community":"Silverton","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Simpson Ranch","place_name":"Simpson Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sinclair Mills","place_name":"Sinclair Mills","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Sinkut River","place_name":"Sinkut River","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Sirdar","place_name":"Sirdar","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Siska Flat","place_name":"","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Siska Flat 3","place_name":"Siska Flat 3","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Siska Flat 5A","place_name":"Siska Flat 5A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Siska Flat 5B","place_name":"Siska Flat 5B","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Siska Flat 8","place_name":"Siska Flat 8","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Six Mile Point","place_name":"Six Mile Point","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Six Mile Ranch","place_name":"Six Mile Ranch","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Skawahlook 1","place_name":"","community":"Skawahlook 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skedans","place_name":"Skedans","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena Crossing","place_name":"Skeena Crossing","community":"Gitsegukla 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte A","place_name":"Skeena-Queen Charlotte A","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte C","place_name":"Skeena-Queen Charlotte C","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte D","place_name":"Skeena-Queen Charlotte D","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte E","place_name":"Skeena-Queen Charlotte E","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte F","place_name":"Skeena-Queen Charlotte F","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte, Subd. A","place_name":"Skeena-Queen Charlotte, Subd. A","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte, Subd. B","place_name":"Skeena-Queen Charlotte, Subd. B","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeetchestn","place_name":"","community":"Skeetchestn","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skidegate","place_name":"Skidegate","community":"Skidegate 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skidegate 1","place_name":"","community":"Skidegate 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skidegate Landing","place_name":"Skidegate Landing","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skins Lake 16A","place_name":"","community":"Skins Lake 16A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Skins Lake 16B","place_name":"","community":"Skins Lake 16B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Skooks Landing","place_name":"Skooks Landing","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Skookumchuck - East Kootenay E","place_name":"Skookumchuck","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Skookumchuck - Skookumchuck 4","place_name":"Skookumchuck","community":"Skookumchuck 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skookumchuck 4","place_name":"","community":"Skookumchuck 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale","place_name":"","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale 10","place_name":"Skowkale 10","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale 11","place_name":"Skowkale 11","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skuppah 2A","place_name":"","community":"Skuppah 2A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skuppah 4","place_name":"","community":"Skuppah 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skwah 4","place_name":"","community":"Skwah 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skwahla 2","place_name":"Skwahla 2","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Skwali 3","place_name":"","community":"Skwali 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skway 5","place_name":"","community":"Skway 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skwayaynope 26","place_name":"","community":"Skwayaynope 26","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skweahm 10","place_name":"","community":"Skweahm 10","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Slaterville","place_name":"Slaterville","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Sleepy Hollow Road Trailer Park","place_name":"Sleepy Hollow Road Trailer Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Slesse Park","place_name":"Slesse Park","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sliammon","place_name":"Sliammon","community":"Sliammon 1","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sliammon 1","place_name":"","community":"Sliammon 1","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Slocan","place_name":"","community":"Slocan","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Slocan Park","place_name":"Slocan Park","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Slosh 1","place_name":"","community":"Slosh 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Slosh 1A","place_name":"Slosh 1A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Smith River","place_name":"Smith River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Smithers","place_name":"","community":"Smithers","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Smithers - Telkwa","place_name":"Smithers","community":"Telkwa","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Smithers Landing","place_name":"Smithers Landing","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Snake 5","place_name":"Snake 5","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Snake River","place_name":"Snake River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Snow Peak Trailer Court","place_name":"Snow Peak Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Snug Cove","place_name":"Snug Cove","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Soames Point","place_name":"Soames Point","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Soda Creek","place_name":"Soda Creek","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Soda Creek 1","place_name":"","community":"Soda Creek 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sointula","place_name":"Sointula","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Solly","place_name":"Solly","community":"Alberni-Clayoquot E","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Solsqua","place_name":"Solsqua","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Somenos","place_name":"Somenos","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sonora Island","place_name":"Sonora Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sooke","place_name":"","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Soowahlie 14","place_name":"","community":"Soowahlie 14","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sorrento","place_name":"Sorrento","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"South Bentinck","place_name":"South Bentinck","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"South Cambie","place_name":"South Cambie","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Canoe","place_name":"South Canoe","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"South Dawson","place_name":"South Dawson","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"South Fort George","place_name":"South Fort George","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"South Hazelton","place_name":"South Hazelton","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"South Lakeside","place_name":"South Lakeside","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"South Lakeside (Williams Lake)","place_name":"South Lakeside (Williams Lake)","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"South Pender Island","place_name":"South Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"South Poplar","place_name":"South Poplar","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Saanich 1","place_name":"","community":"South Saanich 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"South Shalalth","place_name":"South Shalalth","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"South Slocan","place_name":"South Slocan","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"South Slope","place_name":"South Slope","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Sumas","place_name":"South Sumas","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"South Surrey","place_name":"South Surrey","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Taylor","place_name":"South Taylor","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"South Thormanby Island","place_name":"South Thormanby Island","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"South Wellington","place_name":"South Wellington","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Southarm","place_name":"Southarm","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Southbank","place_name":"Southbank","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Southern Gulf Islands","place_name":"","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sowchea 3","place_name":"","community":"Sowchea 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Soyandostar 2","place_name":"Soyandostar 2","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Spallumcheen","place_name":"","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Sparwood","place_name":"","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Spatsum","place_name":"Spatsum","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Spatsum 11","place_name":"Spatsum 11","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Spectacle Lake Mobile Home Park","place_name":"Spectacle Lake Mobile Home Park","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Spences Bridge","place_name":"","community":"Spences Bridge","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Spences Bridge 4","place_name":"Spences Bridge 4","community":"Spences Bridge","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Spences Bridge 4C","place_name":"Spences Bridge 4C","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Speyum 3","place_name":"","community":"Speyum 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Spillimacheen","place_name":"Spillimacheen","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spintlum Flat 3","place_name":"","community":"Spintlum Flat 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Springhouse","place_name":"Springhouse","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sproat Lake","place_name":"Sproat Lake","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sproat Trailer Park","place_name":"Sproat Trailer Park","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sproatt","place_name":"Sproatt","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sproule Creek","place_name":"Sproule Creek","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spur Valley Subdivision","place_name":"Spur Valley Subdivision","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spuzzum","place_name":"Spuzzum","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Spuzzum 1","place_name":"","community":"Spuzzum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squaam 2","place_name":"","community":"Squaam 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Squaam Bay","place_name":"Squaam Bay","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Squamish","place_name":"","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet A","place_name":"","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet B","place_name":"","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet C","place_name":"","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet D","place_name":"","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet, Subd. A","place_name":"Squamish-Lillooet, Subd. A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet, Subd. B","place_name":"Squamish-Lillooet, Subd. B","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squaw-Hay-One 11","place_name":"","community":"Squaw-Hay-One 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Squawkum Creek 3","place_name":"","community":"Squawkum Creek 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squeah","place_name":"Squeah","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squiaala","place_name":"","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squiaala 7","place_name":"Squiaala 7","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squiaala 8","place_name":"Squiaala 8","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squilax","place_name":"Squilax","community":"Quaaout 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Squinas 2","place_name":"","community":"Squinas 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Squirrel Cove","place_name":"Squirrel Cove","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Squirrel Cove 8","place_name":"","community":"Squirrel Cove 8","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"St. Andrews","place_name":"St. Andrews","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"St. Eugene Mission","place_name":"St. Eugene Mission","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"St. Ives","place_name":"St. Ives","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"St. Joseph Mission","place_name":"St. Joseph Mission","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"St. Mary Lake","place_name":"St. Mary Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"St. Mary's","place_name":"","community":"St. Mary's","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"St. Vincent Bay","place_name":"St. Vincent Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Staiyahanny 8","place_name":"Staiyahanny 8","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Stanley","place_name":"Stanley","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Star Subdivision","place_name":"Star Subdivision","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Stave Falls","place_name":"Stave Falls","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stawamus 24","place_name":"","community":"Stawamus 24","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Steamboat","place_name":"Steamboat","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Steelhead","place_name":"Steelhead","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stellako","place_name":"Stellako","community":"Stellaquo (Stella) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stellaquo (Stella) 1","place_name":"","community":"Stellaquo (Stella) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stepping Stones Estates","place_name":"Stepping Stones Estates","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Stequmwhulpa 5","place_name":"","community":"Stequmwhulpa 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Steveston","place_name":"Steveston","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stewardson Inlet","place_name":"Stewardson Inlet","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Stewart","place_name":"","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stikine","place_name":"Stikine","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stikine Region","place_name":"","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stikine, Subd. A","place_name":"Stikine, Subd. A","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stillwater - qathet C","place_name":"Stillwater","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stillwater - Thompson-Nicola A (Wells Gray Country)","place_name":"Stillwater","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Stone 1","place_name":"","community":"Stone 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Stoner","place_name":"Stoner","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Stones Bay","place_name":"Stones Bay","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stony Creek 1","place_name":"","community":"Stony Creek 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stories Beach","place_name":"Stories Beach","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Strachan Creek","place_name":"Strachan Creek","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Straiton","place_name":"Straiton","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strathcona","place_name":"Strathcona","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strathcona A","place_name":"","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona B","place_name":"","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona C","place_name":"","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona D (Oyster Bay - Buttle Lake)","place_name":"","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Strathnaver","place_name":"Strathnaver","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Strawberry Hill","place_name":"Strawberry Hill","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strawberry Vale","place_name":"Strawberry Vale","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Streatham","place_name":"Streatham","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stryen 9","place_name":"","community":"Stryen 9","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Stuart Bay 6","place_name":"Stuart Bay 6","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Stuart Island","place_name":"Stuart Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stuart River","place_name":"Stuart River","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stuie","place_name":"Stuie","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stullawheets 8","place_name":"","community":"Stullawheets 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Stump Lake","place_name":"Stump Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sturdies Bay","place_name":"Sturdies Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sugarcane","place_name":"Sugarcane","community":"Williams Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sullivan","place_name":"Sullivan","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sullivan Bay","place_name":"Sullivan Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sullivan Heights","place_name":"Sullivan Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Summerland","place_name":"","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Summit Lake - Central Kootenay H","place_name":"Summit Lake","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Summit Lake - Fraser-Fort George G","place_name":"Summit Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Summit Lake - Northern Rockies","place_name":"Summit Lake","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Sun Peaks","place_name":"Sun Peaks","community":"Sun Peaks Mountain","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sun Peaks Mountain","place_name":"","community":"Sun Peaks Mountain","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sun Valley","place_name":"Sun Valley","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunbury","place_name":"Sunbury","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Suncrest","place_name":"Suncrest","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sundance Subdivision - Columbia-Shuswap E","place_name":"Sundance Subdivision","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sundance Subdivision - Peace River E","place_name":"Sundance Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sundayman's Meadow 3","place_name":"","community":"Sundayman's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sunningdale","place_name":"Sunningdale","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Sunny Dale","place_name":"Sunny Dale","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sunnybrae","place_name":"Sunnybrae","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunnyside - Surrey","place_name":"Sunnyside","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunnyside - Tache 1","place_name":"Sunnyside","community":"Tache 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Sunnyside Trailer Court","place_name":"Sunnyside Trailer Court","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sunnyview Trailer Court","place_name":"Sunnyview Trailer Court","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunrise Valley","place_name":"Sunrise Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sunset","place_name":"Sunset","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunset Beach - Lantzville","place_name":"Sunset Beach","community":"Lantzville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sunset Beach - West Vancouver","place_name":"Sunset Beach","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunset Prairie","place_name":"Sunset Prairie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sunset Trailer Park","place_name":"Sunset Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Sunshine","place_name":"Sunshine","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunshine Bay","place_name":"Sunshine Bay","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sunshine Coast A","place_name":"","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Coast B","place_name":"","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Coast D","place_name":"","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast E","place_name":"","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast F","place_name":"","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast Trailer Court","place_name":"Sunshine Coast Trailer Court","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast, Subd. A","place_name":"Sunshine Coast, Subd. A","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Hills","place_name":"Sunshine Hills","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunshine Valley - Clearwater","place_name":"Sunshine Valley","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunshine Valley - Fraser Valley B","place_name":"Sunshine Valley","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Suquash","place_name":"Suquash","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Surge Narrows","place_name":"Surge Narrows","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Surprise","place_name":"Surprise","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Surrey","place_name":"","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Surrey Centre","place_name":"Surrey Centre","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Swahliseah 14","place_name":"Swahliseah 14","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Swan Lake 3","place_name":"Swan Lake 3","community":"Swan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Swan Lake 3","place_name":"","community":"Swan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Swartz Bay","place_name":"Swartz Bay","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sweetwater","place_name":"Sweetwater","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Switsemalph","place_name":"","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 3","place_name":"","community":"Switsemalph 3","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 6","place_name":"Switsemalph 6","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 7","place_name":"Switsemalph 7","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ta Ta Creek","place_name":"Ta Ta Creek","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ta:shiis","place_name":"Ta:shiis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tabor Lake","place_name":"Tabor Lake","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Tache 1","place_name":"","community":"Tache 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tachie","place_name":"Tachie","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tacla Lake (Ferry Landing) 9","place_name":"","community":"Tacla Lake (Ferry Landing) 9","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tadanac","place_name":"Tadanac","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Tadinlay 15","place_name":"","community":"Tadinlay 15","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Taghum","place_name":"Taghum","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Taghum Hill","place_name":"Taghum Hill","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tahltan","place_name":"Tahltan","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tahltan 1","place_name":"","community":"Tahltan 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tahsis","place_name":"","community":"Tahsis","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Takla Landing","place_name":"Takla Landing","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Taku","place_name":"Taku","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Takysie Lake","place_name":"Takysie Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tall Timbers Trailer Park","place_name":"Tall Timbers Trailer Park","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tallheo","place_name":"Tallheo","community":"Central Coast E","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tamarisk","place_name":"Tamarisk","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tanakut 4","place_name":"","community":"Tanakut 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tantalus Acres","place_name":"Tantalus Acres","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tanu","place_name":"Tanu","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tappen","place_name":"Tappen","community":"North Bay 5","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tarrys","place_name":"Tarrys","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tasu","place_name":"Tasu","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tatalrose","place_name":"Tatalrose","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tatelkus Lake 28","place_name":"Tatelkus Lake 28","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatla Lake","place_name":"Tatla Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatla West 11","place_name":"","community":"Tatla West 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tatla't East 2","place_name":"","community":"Tatla't East 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tatlayoko Lake","place_name":"Tatlayoko Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatlow","place_name":"Tatlow","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tatogga","place_name":"Tatogga","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tatpo-oose 10","place_name":"Tatpo-oose 10","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tatton","place_name":"Tatton","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Taylor","place_name":"","community":"Taylor","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tchesinkut Lake","place_name":"Tchesinkut Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Teakerne Arm","place_name":"Teakerne Arm","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Telachick","place_name":"Telachick","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Telegraph Cove","place_name":"Telegraph Cove","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Telegraph Creek","place_name":"","community":"Telegraph Creek","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Telegraph Creek 6","place_name":"Telegraph Creek 6","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Telegraph Creek 6A","place_name":"Telegraph Creek 6A","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Telkwa","place_name":"","community":"Telkwa","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Telkwa - Bulkley-Nechako A","place_name":"Telkwa","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Telkwa Trailer Park","place_name":"Telkwa Trailer Park","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ten Mile Lake","place_name":"Ten Mile Lake","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Terrace","place_name":"","community":"Terrace","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Tetachuk","place_name":"Tetachuk","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tête Jaune Cache","place_name":"Tête Jaune Cache","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Theik 2","place_name":"","community":"Theik 2","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Theodosia Arm","place_name":"Theodosia Arm","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thetis Island","place_name":"Thetis Island","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Thomas Point 5","place_name":"","community":"Thomas Point 5","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Thomas Point 5A","place_name":"","community":"Thomas Point 5A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Thomas Squinas Ranch 2A","place_name":"","community":"Thomas Squinas Ranch 2A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Thompson","place_name":"Thompson","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Thompson River Estates","place_name":"Thompson River Estates","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson Sound","place_name":"Thompson Sound","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thompson-Nicola A (Wells Gray Country)","place_name":"","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola B (Thompson Headwaters)","place_name":"","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola E (Bonaparte Plateau)","place_name":"","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola I (Blue Sky Country)","place_name":"","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola J (Copper Desert Country)","place_name":"","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola L","place_name":"Thompson-Nicola L","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola L (Grasslands)","place_name":"","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola M","place_name":"Thompson-Nicola M","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola M (Beautiful Nicola Valley - North)","place_name":"","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola N","place_name":"Thompson-Nicola N","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola N (Beautiful Nicola Valley - South)","place_name":"","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola O (Lower North Thompson)","place_name":"","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola P (Rivers and the Peaks)","place_name":"","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. A","place_name":"Thompson-Nicola, Subd. A","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola, Subd. B","place_name":"Thompson-Nicola, Subd. B","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. C","place_name":"Thompson-Nicola, Subd. C","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. D","place_name":"Thompson-Nicola, Subd. D","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola, Subd. E","place_name":"Thompson-Nicola, Subd. E","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thornhill","place_name":"Thornhill","community":"Kitimat-Stikine E","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Three Forks","place_name":"Three Forks","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Thrums","place_name":"Thrums","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Thunder Bay","place_name":"Thunder Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thurlow","place_name":"Thurlow","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thurston Harbour","place_name":"Thurston Harbour","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Thwaytes","place_name":"Thwaytes","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tie Lake","place_name":"Tie Lake","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tiili Landing","place_name":"Tiili Landing","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tillicum","place_name":"Tillicum","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Timberland Trailer Park","place_name":"Timberland Trailer Park","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tin Wis 11","place_name":"","community":"Tin Wis 11","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tintagel","place_name":"Tintagel","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tipella","place_name":"Tipella","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tipella 7","place_name":"","community":"Tipella 7","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tlaa Gaa Aawtlaas 28","place_name":"","community":"Tlaa Gaa Aawtlaas 28","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tl'aaniiwa'a","place_name":"Tl'aaniiwa'a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tlakmaqis","place_name":"Tlakmaqis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tlell","place_name":"Tlell","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tl'esqox","place_name":"Tl'esqox","community":"Toosey 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tl'etinqox","place_name":"Tl'etinqox","community":"Anahim's Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tl'isnachis","place_name":"Tl'isnachis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tl'itsnit","place_name":"Tl'itsnit","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tloohat-a","place_name":"Tloohat-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Toad River","place_name":"Toad River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tobacco Plains 2","place_name":"","community":"Tobacco Plains 2","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Tobiano","place_name":"Tobiano","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Toby Creek","place_name":"Toby Creek","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Toby's Meadow 4","place_name":"Toby's Meadow 4","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tofino","place_name":"","community":"Tofino","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tomslake","place_name":"Tomslake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Toosey 1","place_name":"","community":"Toosey 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Topley","place_name":"Topley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Topley Landing","place_name":"Topley Landing","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tork 7","place_name":"","community":"Tork 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tow Hill Road","place_name":"Tow Hill Road","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Towdystan","place_name":"Towdystan","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Towdystan Lake 3","place_name":"","community":"Towdystan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tower Lake","place_name":"Tower Lake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Towinock 2","place_name":"","community":"Towinock 2","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Traders Cove","place_name":"Traders Cove","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trail","place_name":"","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Tranquille","place_name":"Tranquille","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Trépanier","place_name":"Trépanier","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trevor Channel","place_name":"Trevor Channel","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Trinity Valley","place_name":"Trinity Valley","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Triple E Trailer Park","place_name":"Triple E Trailer Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Trout Creek","place_name":"Trout Creek","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trout Lake","place_name":"Trout Lake","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Trout Lake Alec 16","place_name":"","community":"Trout Lake Alec 16","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Trutch","place_name":"Trutch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Tsa Xana 18","place_name":"","community":"Tsa Xana 18","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsahaheh 1","place_name":"","community":"Tsahaheh 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsaukan 12","place_name":"","community":"Tsaukan 12","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsawwassen","place_name":"","community":"Tsawwassen","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tsawwassen - Delta","place_name":"Tsawwassen","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tsawwassen Beach","place_name":"Tsawwassen Beach","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ts'axq'oo-is","place_name":"Ts'axq'oo-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tsay Cho 4","place_name":"Tsay Cho 4","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tsay Keh Dene","place_name":"Tsay Keh Dene","community":"Finlay River 6","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Tseatah 2","place_name":"","community":"Tseatah 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tsideldel","place_name":"Tsideldel","community":"Redstone Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ts'iispoo-a","place_name":"Ts'iispoo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tsimpsean 2 North Part","place_name":"Tsimpsean 2 North Part","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tsinstikeptum 9","place_name":"Tsinstikeptum 9","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsinstikeptum 10","place_name":"","community":"Tsinstikeptum 10","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsinstikeptum 9","place_name":"","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsolum","place_name":"Tsolum","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tsolum River","place_name":"Tsolum River","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"T'Sou-ke","place_name":"","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"T'Sou-ke 1 (Sooke 1)","place_name":"T'Sou-ke 1 (Sooke 1)","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"T'Sou-ke 2 (Sooke 2)","place_name":"T'Sou-ke 2 (Sooke 2)","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsulquate 4","place_name":"","community":"Tsulquate 4","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsunnia Lake 5","place_name":"Tsunnia Lake 5","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tsussie 6","place_name":"","community":"Tsussie 6","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tuckkwiowhum 1","place_name":"","community":"Tuckkwiowhum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tulameen","place_name":"Tulameen","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tulsequah","place_name":"Tulsequah","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tumbler Ridge","place_name":"","community":"Tumbler Ridge","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tupper","place_name":"Tupper","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Turner Subdivision","place_name":"Turner Subdivision","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Turtle Valley","place_name":"Turtle Valley","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tuwanek","place_name":"Tuwanek","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Twidwell Bend","place_name":"Twidwell Bend","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Twin Bays","place_name":"Twin Bays","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Twin Creeks","place_name":"Twin Creeks","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Twin Firs Trailer Park","place_name":"Twin Firs Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Twin Islands","place_name":"Twin Islands","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Twin Lakes","place_name":"Twin Lakes","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Twin Sevens Trailer Park","place_name":"Twin Sevens Trailer Park","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Two Mile","place_name":"Two Mile","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Two Mile Hazelton","place_name":"Two Mile Hazelton","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Two Rivers","place_name":"Two Rivers","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Twoyqhalsht 16","place_name":"","community":"Twoyqhalsht 16","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tyax Lake","place_name":"Tyax Lake","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Tyhee Trailer Park","place_name":"Tyhee Trailer Park","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tynehead","place_name":"Tynehead","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tzart-Lam 5","place_name":"","community":"Tzart-Lam 5","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tzeachten 13","place_name":"","community":"Tzeachten 13","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tzetzi Lake 11","place_name":"Tzetzi Lake 11","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tzouhalem","place_name":"Tzouhalem","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Ucluelet","place_name":"","community":"Ucluelet","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Ulkatcho","place_name":"Ulkatcho","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ulkatcho 13","place_name":"","community":"Ulkatcho 13","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ulkatcho 14A","place_name":"","community":"Ulkatcho 14A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Uncha Lake 13A","place_name":"","community":"Uncha Lake 13A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Union Bay","place_name":"Union Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Union Bay 4","place_name":"","community":"Union Bay 4","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"University Endowment Area","place_name":"University Endowment Area","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"University Hill","place_name":"University Hill","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Unnamed 10","place_name":"","community":"Unnamed 10","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Upland Trailer Court","place_name":"Upland Trailer Court","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Upper Bench","place_name":"Upper Bench","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Upper China Creek","place_name":"Upper China Creek","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Upper Cutbank","place_name":"Upper Cutbank","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Upper Fraser","place_name":"Upper Fraser","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Upper Halfway","place_name":"Upper Halfway","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Upper Hat Creek","place_name":"Upper Hat Creek","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Upper Hat Creek 1","place_name":"","community":"Upper Hat Creek 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Upper Lynn","place_name":"Upper Lynn","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Upper Nepa 6","place_name":"","community":"Upper Nepa 6","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Upper Squamish Valley","place_name":"Upper Squamish Valley","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Upper Sumas 6","place_name":"","community":"Upper Sumas 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Upsowis","place_name":"Upsowis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Usk","place_name":"Usk","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Uuts","place_name":"Uuts","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Valemount","place_name":"","community":"Valemount","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Valhalla","place_name":"Valhalla","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Valhalla Subdivision","place_name":"Valhalla Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Valley Mobile Home","place_name":"Valley Mobile Home","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Valley Road Subdivision","place_name":"Valley Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Valley View","place_name":"Valley View","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Valleycliffe","place_name":"Valleycliffe","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Valleyview","place_name":"Valleyview","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Vallican","place_name":"Vallican","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Van Anda","place_name":"Van Anda","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Vancouver","place_name":"","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Vanderhoof","place_name":"","community":"Vanderhoof","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Vanway","place_name":"Vanway","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Vaseaux Lake","place_name":"Vaseaux Lake","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Vaucroft Beach","place_name":"Vaucroft Beach","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Vavenby","place_name":"Vavenby","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Vedder Crossing","place_name":"Vedder Crossing","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Vermilion Crossing","place_name":"Vermilion Crossing","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Vernon","place_name":"","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Vesuvius","place_name":"Vesuvius","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Victoria","place_name":"","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Victoria Lake","place_name":"Victoria Lake","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Victoria-Fraserview","place_name":"Victoria-Fraserview","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Vidette","place_name":"Vidette","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"View Royal","place_name":"","community":"View Royal","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Village Bay","place_name":"Village Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Village Island 1","place_name":"","community":"Village Island 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Village of Queen Charlotte","place_name":"Village of Queen Charlotte","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Vinsulla","place_name":"Vinsulla","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"W'aayi","place_name":"W'aayi","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wabi Estates","place_name":"Wabi Estates","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Wabi Hill Trailer Court","place_name":"Wabi Hill Trailer Court","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Wadhams","place_name":"Wadhams","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wagner Ranch","place_name":"Wagner Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Waiwakum 14","place_name":"","community":"Waiwakum 14","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Walcott","place_name":"Walcott","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Walhachin","place_name":"Walhachin","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Walkers","place_name":"Walkers","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Wall Beach","place_name":"Wall Beach","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Walnut Grove","place_name":"Walnut Grove","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Waneta","place_name":"Waneta","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Waneta Junction","place_name":"Waneta Junction","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Wardner","place_name":"Wardner","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Warfield","place_name":"","community":"Warfield","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Warner Bay","place_name":"Warner Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wasa","place_name":"Wasa","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Water's Subdivision","place_name":"Water's Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Webber Site","place_name":"Webber Site","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Websters Corners","place_name":"Websters Corners","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Weeping Willow Trailer Court","place_name":"Weeping Willow Trailer Court","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Weewanie","place_name":"Weewanie","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Welcome Beach","place_name":"Welcome Beach","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Weldwood","place_name":"Weldwood","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wellington","place_name":"Wellington","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Wells","place_name":"","community":"Wells","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Weneez","place_name":"Weneez","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"West Bay","place_name":"West Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"West Bench","place_name":"West Bench","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"West Creston","place_name":"West Creston","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"West End - New Westminster","place_name":"West End","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West End - Vancouver","place_name":"West End","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West End Trailer Park","place_name":"West End Trailer Park","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"West Heights","place_name":"West Heights","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Kelowna","place_name":"","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"West Landing","place_name":"West Landing","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"West Lynn","place_name":"West Lynn","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Mara Lake","place_name":"West Mara Lake","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"West Midway","place_name":"West Midway","community":"Midway","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"West Moberly Lake 168A","place_name":"","community":"West Moberly Lake 168A","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"West Point Grey","place_name":"West Point Grey","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Road Subdivision","place_name":"West Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"West Sechelt","place_name":"West Sechelt","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"West Thurlow","place_name":"West Thurlow","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"West Trail","place_name":"West Trail","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"West Vancouver","place_name":"","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Westbank - Tsinstikeptum 9","place_name":"Westbank","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Westbank - West Kelowna","place_name":"Westbank","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Westbridge","place_name":"Westbridge","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Westcoast Energy","place_name":"Westcoast Energy","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Westholme","place_name":"Westholme","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Westmount","place_name":"Westmount","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Westmount Acres Trailer Court","place_name":"Westmount Acres Trailer Court","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Westridge","place_name":"Westridge","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Westside","place_name":"Westside","community":"Tsinstikeptum 10","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Westsyde","place_name":"Westsyde","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Westview","place_name":"Westview","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Westwold","place_name":"Westwold","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Wet'suwet'en Village","place_name":"Wet'suwet'en Village","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Weyerhaeuser Subdivision","place_name":"Weyerhaeuser Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Whaletown","place_name":"Whaletown","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Whalley","place_name":"Whalley","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Wheel Estates-Saratoga Beach","place_name":"Wheel Estates-Saratoga Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Whiplash Ranch","place_name":"Whiplash Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Whisky Creek","place_name":"Whisky Creek","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Whispering Pines 4","place_name":"","community":"Whispering Pines 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Whispering Pines Trailer Park","place_name":"Whispering Pines Trailer Park","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Whispering Winds Trailer Court","place_name":"Whispering Winds Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Whistler","place_name":"","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Whistler Creek","place_name":"Whistler Creek","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"White Lake","place_name":"White Lake","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"White Rock","place_name":"","community":"White Rock","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"White Spruce Trailer Court","place_name":"White Spruce Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Whitecroft","place_name":"Whitecroft","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Whiterock Passage","place_name":"Whiterock Passage","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Whonnock","place_name":"Whonnock","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Whonnock 1","place_name":"","community":"Whonnock 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Whyac","place_name":"Whyac","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Whytecliff","place_name":"Whytecliff","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Wigwam Inn","place_name":"Wigwam Inn","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Wihat'a","place_name":"Wihat'a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wii Lax K'ap","place_name":"Wii Lax K'ap","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Wildwood","place_name":"Wildwood","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wildwood Subdivision","place_name":"Wildwood Subdivision","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wildwood Trailer Park","place_name":"Wildwood Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wiley","place_name":"Wiley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Williams Beach","place_name":"Williams Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Williams Lake","place_name":"","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"Williams Lake 1","place_name":"","community":"Williams Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Williams Landing","place_name":"Williams Landing","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Williams Prairie Meadow 1A","place_name":"","community":"Williams Prairie Meadow 1A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Williamsons Landing","place_name":"Williamsons Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Willingdon Heights","place_name":"Willingdon Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Willow Brook","place_name":"Willow Brook","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willow Flats","place_name":"Willow Flats","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willow Point","place_name":"Willow Point","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Willow Ranch","place_name":"Willow Ranch","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willow River","place_name":"Willow River","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Willow Valley","place_name":"Willow Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willowbrook - Okanagan-Similkameen C","place_name":"Willowbrook","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willowbrook - Peace River D","place_name":"Willowbrook","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willowvale","place_name":"Willowvale","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wilmer","place_name":"Wilmer","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Wilson Creek","place_name":"Wilson Creek","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Wilson Landing","place_name":"Wilson Landing","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Windermere","place_name":"Windermere","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Windmill Trailer Park","place_name":"Windmill Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Windsor Park","place_name":"Windsor Park","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Windy Mouth 7","place_name":"","community":"Windy Mouth 7","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Winfield","place_name":"Winfield","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Winfield Mobile Home Park","place_name":"Winfield Mobile Home Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Wingdam","place_name":"Wingdam","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Winlaw","place_name":"Winlaw","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Winter Harbour","place_name":"Winter Harbour","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wistaria","place_name":"Wistaria","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wisteria","place_name":"Wisteria","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wolf","place_name":"Wolf","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wonowon","place_name":"Wonowon","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Woodcock","place_name":"Woodcock","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Woodcreek","place_name":"Woodcreek","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Woodfibre","place_name":"Woodfibre","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Woodhaven","place_name":"Woodhaven","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Woodland Park Estates","place_name":"Woodland Park Estates","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Woodlands","place_name":"Woodlands","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Woodmere","place_name":"Woodmere","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Woodpecker","place_name":"Woodpecker","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Woods Landing","place_name":"Woods Landing","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Woodsdale","place_name":"Woodsdale","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Woss","place_name":"Woss","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Woyenne 27","place_name":"","community":"Woyenne 27","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Wright","place_name":"Wright","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wyah 3","place_name":"Wyah 3","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Wycliffe","place_name":"Wycliffe","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Wycliffe Trailer Park","place_name":"Wycliffe Trailer Park","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Wyndhaven Subdivision","place_name":"Wyndhaven Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Wynndel","place_name":"Wynndel","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Xeni","place_name":"Xeni","community":"Lohbiee 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Y.D. Ranch Subdivision","place_name":"Y.D. Ranch Subdivision","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ya:kats","place_name":"Ya:kats","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yaashitquo-a","place_name":"Yaashitquo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Yaculta","place_name":"Yaculta","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yahk","place_name":"Yahk","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Yaku","place_name":"Yaku","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Yakweakwioose 12","place_name":"","community":"Yakweakwioose 12","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yale","place_name":"Yale","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Yale Town 1","place_name":"","community":"Yale Town 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yankee Flats","place_name":"Yankee Flats","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Yarksis","place_name":"Yarksis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Yarrow","place_name":"Yarrow","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Yawaucht 11","place_name":"","community":"Yawaucht 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ye Koo Che 3","place_name":"","community":"Ye Koo Che 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Yekooche","place_name":"Yekooche","community":"Ye Koo Che 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Yekwaupsum 18","place_name":"","community":"Yekwaupsum 18","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yellow Point","place_name":"Yellow Point","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Yennadon","place_name":"Yennadon","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ymir","place_name":"Ymir","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Youbou","place_name":"Youbou","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Youbou West","place_name":"Youbou West","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Young Lake","place_name":"Young Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Yreka","place_name":"Yreka","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"YunesÌ‚it'in","place_name":"YunesÌ‚it'in","community":"Stone 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Yuquot","place_name":"Yuquot","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yuquot 1","place_name":"","community":"Yuquot 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Yuuhluth","place_name":"Yuuhluth","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Zacht 5","place_name":"","community":"Zacht 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Zamora","place_name":"Zamora","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Zeballos","place_name":"","community":"Zeballos","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Zincton","place_name":"Zincton","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Zoht 4","place_name":"","community":"Zoht 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"}] \ No newline at end of file +[{"location" : "100 Mile House", "place_name" : "100 Mile House", "community" : "One Hundred Mile House", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "105 Mile House", "place_name" : "105 Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "108 Mile Ranch", "place_name" : "108 Mile Ranch", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "111 Mile House", "place_name" : "111 Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "114 Mile House", "place_name" : "114 Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "122 Mile House", "place_name" : "122 Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "127 Mile House", "place_name" : "127 Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "12 Mile", "place_name" : "12 Mile", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "141 Mile House", "place_name" : "141 Mile House", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "150 Mile House", "place_name" : "150 Mile House", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "40 Mile Flats", "place_name" : "40 Mile Flats", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "70 Mile House", "place_name" : "70 Mile House", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "93 Mile", "place_name" : "93 Mile", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Aa-at-sow-is", "place_name" : "Aa-at-sow-is", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Abbott Heights", "place_name" : "Abbott Heights", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Aberdeen", "place_name" : "Aberdeen", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Aberdeen", "place_name" : "Aberdeen", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Acous", "place_name" : "Acous", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Adams Lake", "place_name" : "Adams Lake", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Agassiz", "place_name" : "Agassiz", "community" : "Kent", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Agate", "place_name" : "Agate", "community" : "Shackan 11", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Ahbau", "place_name" : "Ahbau", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ahousat", "place_name" : "Ahousat", "community" : "Marktosis 15", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Ah:tliish", "place_name" : "Ah:tliish", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ainsworth Hot Springs", "place_name" : "Ainsworth Hot Springs", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Aiyansh 1", "place_name" : "Aiyansh 1", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Aiyansh (Kitladamas) 1", "place_name" : "Aiyansh (Kitladamas) 1", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Akiskinook", "place_name" : "Akiskinook", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ak:tiis", "place_name" : "Ak:tiis", "community" : "Village Island 1", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Alamo", "place_name" : "Alamo", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Albas", "place_name" : "Albas", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Alberni", "place_name" : "Alberni", "community" : "Port Alberni", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Alberni-Clayoquot, Subd. A", "place_name" : "Alberni-Clayoquot, Subd. A", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Alberni-Clayoquot, Subd. B", "place_name" : "Alberni-Clayoquot, Subd. B", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Albert Head", "place_name" : "Albert Head", "community" : "Metchosin", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Albion", "place_name" : "Albion", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Albreda", "place_name" : "Albreda", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Alder Creek", "place_name" : "Alder Creek", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Aldergrove", "place_name" : "Aldergrove", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Alert Bay", "place_name" : "Alert Bay", "community" : "Alert Bay - Village", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Alert Bay 1", "place_name" : "Alert Bay 1", "community" : "Alert Bay - Indian reserve", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Alert Bay 1A", "place_name" : "Alert Bay 1A", "community" : "Alert Bay - Indian reserve", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Alexandria", "place_name" : "Alexandria", "community" : "Cariboo A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Alexandria 1", "place_name" : "Alexandria 1", "community" : "Alexandria", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexandria 1A", "place_name" : "Alexandria 1A", "community" : "Alexandria", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexandria 3", "place_name" : "Alexandria 3", "community" : "Alexandria", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexandria 3A", "place_name" : "Alexandria 3A", "community" : "Alexandria", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexis Creek", "place_name" : "Alexis Creek", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Alexis Creek 17", "place_name" : "Alexis Creek 17", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Alexis Creek 24", "place_name" : "Alexis Creek 24", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Alexis Creek 25", "place_name" : "Alexis Creek 25", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Alexis Creek 6", "place_name" : "Alexis Creek 6", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Aleza Lake", "place_name" : "Aleza Lake", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Alice Arm", "place_name" : "Alice Arm", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Alice Siding", "place_name" : "Alice Siding", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Alkali Lake", "place_name" : "Alkali Lake", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Allenby", "place_name" : "Allenby", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Allens Addition", "place_name" : "Allens Addition", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Alliford Bay", "place_name" : "Alliford Bay", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Allison Lake", "place_name" : "Allison Lake", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Almond Gardens", "place_name" : "Almond Gardens", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Almond Gardens Trailer Park", "place_name" : "Almond Gardens Trailer Park", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Alpine Meadows", "place_name" : "Alpine Meadows", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Alpine Trailer Park", "place_name" : "Alpine Trailer Park", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Alta Lake", "place_name" : "Alta Lake", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Altamont", "place_name" : "Altamont", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Altona", "place_name" : "Altona", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Alvin", "place_name" : "Alvin", "community" : "Fraser Valley F", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "A:mai", "place_name" : "A:mai", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ambleside", "place_name" : "Ambleside", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Anaconda", "place_name" : "Anaconda", "community" : "Greenwood", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Anahim Lake", "place_name" : "Anahim Lake", "community" : "Squinas 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Anahim's Meadow 2", "place_name" : "Anahim's Meadow 2", "community" : "Anahim's Meadow", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Anahim's Meadow 2A", "place_name" : "Anahim's Meadow 2A", "community" : "Anahim's Meadow", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Anaqtl'a", "place_name" : "Anaqtl'a", "community" : "Anacla 12", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Anderson", "place_name" : "Anderson", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Andy Cahoose Meadow 16", "place_name" : "Andy Cahoose Meadow 16", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Anglemont", "place_name" : "Anglemont", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Anniedale", "place_name" : "Anniedale", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Annis", "place_name" : "Annis", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Annis Bay", "place_name" : "Annis Bay", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Anvil Island", "place_name" : "Anvil Island", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Anyox", "place_name" : "Anyox", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Anzac", "place_name" : "Anzac", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Apex Mountain", "place_name" : "Apex Mountain", "community" : "Okanagan-Similkameen I", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Appledale", "place_name" : "Appledale", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Applegrove", "place_name" : "Applegrove", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Apsagayu 1A", "place_name" : "Apsagayu 1A", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Arbutus", "place_name" : "Arbutus", "community" : "Cowichan Valley C", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Arbutus Ridge", "place_name" : "Arbutus Ridge", "community" : "Cowichan Valley C", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Arbutus Ridge", "place_name" : "Arbutus Ridge", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Archibald Subdivision", "place_name" : "Archibald Subdivision", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ardmore", "place_name" : "Ardmore", "community" : "North Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Argenta", "place_name" : "Argenta", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Armitage Trailer Court", "place_name" : "Armitage Trailer Court", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Armstrong", "place_name" : "Armstrong", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Arnold", "place_name" : "Arnold", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Arras", "place_name" : "Arras", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Arrow Creek", "place_name" : "Arrow Creek", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Arrow Creek-Lakeview", "place_name" : "Arrow Creek-Lakeview", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Arrowhead", "place_name" : "Arrowhead", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Arrow Park", "place_name" : "Arrow Park", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Arrowview Heights", "place_name" : "Arrowview Heights", "community" : "Alberni-Clayoquot F", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Artina Trailer Court", "place_name" : "Artina Trailer Court", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Aschcroft Ranch", "place_name" : "Aschcroft Ranch", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ashcroft Manor", "place_name" : "Ashcroft Manor", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ashton Creek", "place_name" : "Ashton Creek", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Aspen Grove", "place_name" : "Aspen Grove", "community" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Aspen Mobile Trailer Court", "place_name" : "Aspen Mobile Trailer Court", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Atchelitz", "place_name" : "Atchelitz", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Athalmer", "place_name" : "Athalmer", "community" : "Shuswap", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Atlin", "place_name" : "Atlin", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Atluck", "place_name" : "Atluck", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Atnarko", "place_name" : "Atnarko", "community" : "Central Coast C", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Attachie", "place_name" : "Attachie", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Aupe 6", "place_name" : "Aupe 6", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Aupe 6A", "place_name" : "Aupe 6A", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Austin Heights", "place_name" : "Austin Heights", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Australian", "place_name" : "Australian", "community" : "Cariboo A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Avola", "place_name" : "Avola", "community" : "Thompson-Nicola B (Thompson Headwaters)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Aywawwis 15", "place_name" : "Aywawwis 15", "community" : "Hope", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Azu Ski Village", "place_name" : "Azu Ski Village", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Babcock Subdivision", "place_name" : "Babcock Subdivision", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Babine 6", "place_name" : "Babine 6", "community" : "Babine 6", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Baezaeko River 25", "place_name" : "Baezaeko River 25", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Baezaeko River 26", "place_name" : "Baezaeko River 26", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Baker", "place_name" : "Baker", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Baker Creek", "place_name" : "Baker Creek", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Baldonnel", "place_name" : "Baldonnel", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Baldy Hughes", "place_name" : "Baldy Hughes", "community" : "Fraser-Fort George C", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Balfour", "place_name" : "Balfour", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Balmoral", "place_name" : "Balmoral", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Balmoral Beach", "place_name" : "Balmoral Beach", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Bamberton", "place_name" : "Bamberton", "community" : "Cowichan Valley A", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Bamfield", "place_name" : "Bamfield", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "B and D Trailer Court", "place_name" : "B and D Trailer Court", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Bankeir", "place_name" : "Bankeir", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Bargain Harbour", "place_name" : "Bargain Harbour", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Barkerville", "place_name" : "Barkerville", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Barlow Creek", "place_name" : "Barlow Creek", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Barnet", "place_name" : "Barnet", "community" : "Port Moody", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Barnhartvale", "place_name" : "Barnhartvale", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Barnston Island", "place_name" : "Barnston Island", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Barrett Lake", "place_name" : "Barrett Lake", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Barrowtown", "place_name" : "Barrowtown", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Bastion Bay", "place_name" : "Bastion Bay", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Batchelor Hills", "place_name" : "Batchelor Hills", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Bates Beach", "place_name" : "Bates Beach", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Baynes Lake", "place_name" : "Baynes Lake", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Bayview Estates", "place_name" : "Bayview Estates", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Beachcomber", "place_name" : "Beachcomber", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Beachcomber Bay", "place_name" : "Beachcomber Bay", "community" : "Vernon", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Beach Grove", "place_name" : "Beach Grove", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Bealby Point", "place_name" : "Bealby Point", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Bear Camp", "place_name" : "Bear Camp", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bear Creek", "place_name" : "Bear Creek", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Beard's Creek", "place_name" : "Beard's Creek", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Bear Flat", "place_name" : "Bear Flat", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Bear Lake", "place_name" : "Bear Lake", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Bear Lake", "place_name" : "Bear Lake", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bear Mountain", "place_name" : "Bear Mountain", "community" : "Langford", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Bear River Trailer Court", "place_name" : "Bear River Trailer Court", "community" : "Stewart", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Beasley", "place_name" : "Beasley", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Beaton", "place_name" : "Beaton", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Beatton Ranch", "place_name" : "Beatton Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Beaver Cove", "place_name" : "Beaver Cove", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Beaver Creek", "place_name" : "Beaver Creek", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Beaverdell", "place_name" : "Beaverdell", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Beaver Falls", "place_name" : "Beaver Falls", "community" : "Montrose", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Beaver Lake", "place_name" : "Beaver Lake", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Beaverley", "place_name" : "Beaverley", "community" : "Fraser-Fort George C", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Beaver Pass House", "place_name" : "Beaver Pass House", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Beaver Point", "place_name" : "Beaver Point", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Beban Trailer Park", "place_name" : "Beban Trailer Park", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Becher Bay 2", "place_name" : "Becher Bay 2", "community" : "Metchosin", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Becher House", "place_name" : "Becher House", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Bedwell Harbour", "place_name" : "Bedwell Harbour", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Belaire Estates Trailer Park", "place_name" : "Belaire Estates Trailer Park", "community" : "Duck Lake 7", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Bella Bella", "place_name" : "Bella Bella", "community" : "Bella Bella 1", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Bella Coola", "place_name" : "Bella Coola", "community" : "Bella Coola 1", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Belleview", "place_name" : "Belleview", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Belle Vue Trailer Court", "place_name" : "Belle Vue Trailer Court", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Bell II", "place_name" : "Bell II", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Belmont Park", "place_name" : "Belmont Park", "community" : "Colwood", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Belva's Trailer Park", "place_name" : "Belva's Trailer Park", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Belvedere", "place_name" : "Belvedere", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Ben-My-Chree", "place_name" : "Ben-My-Chree", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bennett", "place_name" : "Bennett", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Benson Lake", "place_name" : "Benson Lake", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Benvoulin", "place_name" : "Benvoulin", "community" : "Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Beresford", "place_name" : "Beresford", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Bergs", "place_name" : "Bergs", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Beryl Prairie", "place_name" : "Beryl Prairie", "community" : "Hudson's Hope", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Bessborough", "place_name" : "Bessborough", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Bestwick", "place_name" : "Bestwick", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Bevan", "place_name" : "Bevan", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Big Bar", "place_name" : "Big Bar", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Big Bar Creek", "place_name" : "Big Bar Creek", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Big Bay", "place_name" : "Big Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Big Creek", "place_name" : "Big Creek", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Big Eddy", "place_name" : "Big Eddy", "community" : "Revelstoke", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Big Lake Ranch", "place_name" : "Big Lake Ranch", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Big White", "place_name" : "Big White", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Big White Village", "place_name" : "Big White Village", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Bihl' k'a 18", "place_name" : "Bihl' k'a 18", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bihlk'a 6", "place_name" : "Bihlk'a 6", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Billings", "place_name" : "Billings", "community" : "Kootenay Boundary C / Christina Lake", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Billings Bay", "place_name" : "Billings Bay", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Binche 2 (Pinchie 2)", "place_name" : "Binche 2 (Pinchie 2)", "community" : "Binche 2", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Birchdale", "place_name" : "Birchdale", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Birch Island", "place_name" : "Birch Island", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Birchland Manor", "place_name" : "Birchland Manor", "community" : "Port Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Birken", "place_name" : "Birken", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Blackcomb", "place_name" : "Blackcomb", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Black Creek", "place_name" : "Black Creek", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Black Creek", "place_name" : "Black Creek", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Blackloam", "place_name" : "Blackloam", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Black Pines", "place_name" : "Black Pines", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Blackpool", "place_name" : "Blackpool", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Blackstock Subdivision", "place_name" : "Blackstock Subdivision", "community" : "One Hundred Mile House", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Blackwater", "place_name" : "Blackwater", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Blackwater", "place_name" : "Blackwater", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Blackwater Meadow 11", "place_name" : "Blackwater Meadow 11", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Blaeberry", "place_name" : "Blaeberry", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Blakeburn", "place_name" : "Blakeburn", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Blewett", "place_name" : "Blewett", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Blind Bay", "place_name" : "Blind Bay", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Blind Channel", "place_name" : "Blind Channel", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Bliss Landing", "place_name" : "Bliss Landing", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Bloedel", "place_name" : "Bloedel", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Blowhole", "place_name" : "Blowhole", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Blubber Bay", "place_name" : "Blubber Bay", "community" : "qathet D", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Blucher Hall", "place_name" : "Blucher Hall", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Blueberry Creek", "place_name" : "Blueberry Creek", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Blueberry Farm", "place_name" : "Blueberry Farm", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Blue Hills", "place_name" : "Blue Hills", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Blueridge", "place_name" : "Blueridge", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Blue River", "place_name" : "Blue River", "community" : "Thompson-Nicola B (Thompson Headwaters)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Blue Springs", "place_name" : "Blue Springs", "community" : "North Okanagan D", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Boat Basin", "place_name" : "Boat Basin", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Boat Harbour", "place_name" : "Boat Harbour", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Bob Quinn Lake", "place_name" : "Bob Quinn Lake", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Bold Point", "place_name" : "Bold Point", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Bonaventure Trailer Park", "place_name" : "Bonaventure Trailer Park", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Bonnet Hill", "place_name" : "Bonnet Hill", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Bonnington Falls", "place_name" : "Bonnington Falls", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Boothroyd", "place_name" : "Boothroyd", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Boothroyd 5A", "place_name" : "Boothroyd 5A", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Boothroyd 8A (Part)", "place_name" : "Boothroyd 8A (Part)", "community" : "Boothroyd 8A", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Boothroyd 8A (Part)", "place_name" : "Boothroyd 8A (Part)", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Boothroyd (Part) 8A", "place_name" : "Boothroyd (Part) 8A", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Boring Ranch", "place_name" : "Boring Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Boston Bar", "place_name" : "Boston Bar", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Boston Flats", "place_name" : "Boston Flats", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Boswell", "place_name" : "Boswell", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Boswell", "place_name" : "Boswell", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Bouchie Lake", "place_name" : "Bouchie Lake", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Boulder City", "place_name" : "Boulder City", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Boundary Bay", "place_name" : "Boundary Bay", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Boundary Falls", "place_name" : "Boundary Falls", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Bowen Bay", "place_name" : "Bowen Bay", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Bowen Island Trust", "place_name" : "Bowen Island Trust", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Bowron Lake", "place_name" : "Bowron Lake", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Bowser", "place_name" : "Bowser", "community" : "Nanaimo H", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Box Lake", "place_name" : "Box Lake", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Brackendale", "place_name" : "Brackendale", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Bradner", "place_name" : "Bradner", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Brady Ranch", "place_name" : "Brady Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Braeloch", "place_name" : "Braeloch", "community" : "Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Braemar Heights", "place_name" : "Braemar Heights", "community" : "Colwood", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Braeside", "place_name" : "Braeside", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bralorne", "place_name" : "Bralorne", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Brandon", "place_name" : "Brandon", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Brauns Island", "place_name" : "Brauns Island", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Brem River", "place_name" : "Brem River", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Brennan Creek", "place_name" : "Brennan Creek", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Brentwood Bay", "place_name" : "Brentwood Bay", "community" : "South Saanich 1", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Brentwood Park", "place_name" : "Brentwood Park", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Brew Bay", "place_name" : "Brew Bay", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Brexton", "place_name" : "Brexton", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Briar Ridge", "place_name" : "Briar Ridge", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Bridal Falls", "place_name" : "Bridal Falls", "community" : "Fraser Valley D", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Bridesville", "place_name" : "Bridesville", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Bridge Lake", "place_name" : "Bridge Lake", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Bridgeview", "place_name" : "Bridgeview", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Brigade Lake", "place_name" : "Brigade Lake", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Brighouse", "place_name" : "Brighouse", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Brighton Beach", "place_name" : "Brighton Beach", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Brilliant", "place_name" : "Brilliant", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Brisco", "place_name" : "Brisco", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Britannia Beach", "place_name" : "Britannia Beach", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "British Properties", "place_name" : "British Properties", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Broadmoor", "place_name" : "Broadmoor", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Broadview", "place_name" : "Broadview", "community" : "Salmon Arm", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Broadview Villa", "place_name" : "Broadview Villa", "community" : "Salmon Arm", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Brocklehurst", "place_name" : "Brocklehurst", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Broman Lake", "place_name" : "Broman Lake", "community" : "Duncan Lake 2", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Brookfield Trailers", "place_name" : "Brookfield Trailers", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Brookmere", "place_name" : "Brookmere", "community" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Brookswood", "place_name" : "Brookswood", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Brouse", "place_name" : "Brouse", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Brown Road Trailer Park", "place_name" : "Brown Road Trailer Park", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Browns Bay", "place_name" : "Browns Bay", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Brunette Creek", "place_name" : "Brunette Creek", "community" : "New Westminster", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Brunswick", "place_name" : "Brunswick", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Brunswick Beach", "place_name" : "Brunswick Beach", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Buccaneer Bay", "place_name" : "Buccaneer Bay", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Buckhorn", "place_name" : "Buckhorn", "community" : "Fraser-Fort George D", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Buckingham Heights", "place_name" : "Buckingham Heights", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Buckinghorse River", "place_name" : "Buckinghorse River", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Buckley Bay", "place_name" : "Buckley Bay", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Buena Vista Estates", "place_name" : "Buena Vista Estates", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Buffalo Creek", "place_name" : "Buffalo Creek", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Buick", "place_name" : "Buick", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Bulkley House", "place_name" : "Bulkley House", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako, Subd. A", "place_name" : "Bulkley-Nechako, Subd. A", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako, Subd. B", "place_name" : "Bulkley-Nechako, Subd. B", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako, Subd. C", "place_name" : "Bulkley-Nechako, Subd. C", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bull Harbour", "place_name" : "Bull Harbour", "community" : "Hope Island 1", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Bull River", "place_name" : "Bull River", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Bummers Flat 6", "place_name" : "Bummers Flat 6", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Buntzen Bay", "place_name" : "Buntzen Bay", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Burkeville", "place_name" : "Burkeville", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Burnaby Heights", "place_name" : "Burnaby Heights", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Burnt Flats", "place_name" : "Burnt Flats", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Burquitlam", "place_name" : "Burquitlam", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Burton", "place_name" : "Burton", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Butedale", "place_name" : "Butedale", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Cache Creek Campground", "place_name" : "Cache Creek Campground", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Cadboro Bay", "place_name" : "Cadboro Bay", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Caesars", "place_name" : "Caesars", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Cahilty", "place_name" : "Cahilty", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Cahoose 10", "place_name" : "Cahoose 10", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cahoose 12", "place_name" : "Cahoose 12", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cahoose 8", "place_name" : "Cahoose 8", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Caithness", "place_name" : "Caithness", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Caithness Trailer Court", "place_name" : "Caithness Trailer Court", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Callison Ranch", "place_name" : "Callison Ranch", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Cambie-Solsqua", "place_name" : "Cambie-Solsqua", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Camborne", "place_name" : "Camborne", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Cameron Bar 13", "place_name" : "Cameron Bar 13", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Cameron Heights", "place_name" : "Cameron Heights", "community" : "Port Alberni", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Camp Artaban", "place_name" : "Camp Artaban", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Campbell Creek", "place_name" : "Campbell Creek", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Campbell Island", "place_name" : "Campbell Island", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Campbellton", "place_name" : "Campbellton", "community" : "Campbell River", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Camp Homewood", "place_name" : "Camp Homewood", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Camp McKinney", "place_name" : "Camp McKinney", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Canford", "place_name" : "Canford", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Canim Lake", "place_name" : "Canim Lake", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Canoe", "place_name" : "Canoe", "community" : "Salmon Arm", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Canyon", "place_name" : "Canyon", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Canyon Alpine", "place_name" : "Canyon Alpine", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Canyon Heights", "place_name" : "Canyon Heights", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Canyon Hot Springs", "place_name" : "Canyon Hot Springs", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Canyon Trailer Park", "place_name" : "Canyon Trailer Park", "community" : "Revelstoke", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Capilano Highlands", "place_name" : "Capilano Highlands", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Capital B", "place_name" : "Capital B", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Capital D", "place_name" : "Capital D", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Capital, Subd. A", "place_name" : "Capital, Subd. A", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Capital, Subd. B", "place_name" : "Capital, Subd. B", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Capital, Subd. C", "place_name" : "Capital, Subd. C", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Capital, Subd. D", "place_name" : "Capital, Subd. D", "community" : "Juan de Fuca (Part 2)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Capitol Hill", "place_name" : "Capitol Hill", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Cariboo", "place_name" : "Cariboo", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo", "place_name" : "Cariboo", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Cariboo Meadows", "place_name" : "Cariboo Meadows", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Cariboo, Subd. A", "place_name" : "Cariboo, Subd. A", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo, Subd. B", "place_name" : "Cariboo, Subd. B", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo, Subd. C", "place_name" : "Cariboo, Subd. C", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Carlin", "place_name" : "Carlin", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Carlson", "place_name" : "Carlson", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Carmi", "place_name" : "Carmi", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Carmi Subdivision", "place_name" : "Carmi Subdivision", "community" : "Okanagan-Similkameen D", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Carnaby", "place_name" : "Carnaby", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Carraholly", "place_name" : "Carraholly", "community" : "Port Moody", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Carrolls Landing", "place_name" : "Carrolls Landing", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Carrs", "place_name" : "Carrs", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Carrs Landing", "place_name" : "Carrs Landing", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Carson", "place_name" : "Carson", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Cascade", "place_name" : "Cascade", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Cascade", "place_name" : "Cascade", "community" : "Kootenay Boundary C / Christina Lake", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Cascade Heights", "place_name" : "Cascade Heights", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Casimiel Meadows 15A", "place_name" : "Casimiel Meadows 15A", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Casino", "place_name" : "Casino", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Cassiar", "place_name" : "Cassiar", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Cassidy", "place_name" : "Cassidy", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cassidy Mobile Home Park", "place_name" : "Cassidy Mobile Home Park", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cassin", "place_name" : "Cassin", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Castledale", "place_name" : "Castledale", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Castle Rock", "place_name" : "Castle Rock", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Caulfeild", "place_name" : "Caulfeild", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Cawston", "place_name" : "Cawston", "community" : "Okanagan-Similkameen B", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Caycuse", "place_name" : "Caycuse", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cecil Lake", "place_name" : "Cecil Lake", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Cedar", "place_name" : "Cedar", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cedar By The Sea", "place_name" : "Cedar By The Sea", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cedar Creek Mobile Home Park", "place_name" : "Cedar Creek Mobile Home Park", "community" : "Cowichan Valley A", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cedardale", "place_name" : "Cedardale", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Cedar Grove", "place_name" : "Cedar Grove", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Cedar Heights Estates", "place_name" : "Cedar Heights Estates", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Cedarside", "place_name" : "Cedarside", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cedarvale", "place_name" : "Cedarvale", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Ceepeecee", "place_name" : "Ceepeecee", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Celista", "place_name" : "Celista", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Central Coast, Subd. A", "place_name" : "Central Coast, Subd. A", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Central Fraser Valley, Subd. A", "place_name" : "Central Fraser Valley, Subd. A", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Central Kootenay, Subd. A", "place_name" : "Central Kootenay, Subd. A", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay, Subd. B", "place_name" : "Central Kootenay, Subd. B", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay, Subd. C", "place_name" : "Central Kootenay, Subd. C", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Okanagan G", "place_name" : "Central Okanagan G", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Central Okanagan H", "place_name" : "Central Okanagan H", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Central Okanagan J", "place_name" : "Central Okanagan J", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Central Okanagan, Subd. A", "place_name" : "Central Okanagan, Subd. A", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Central Okanagan, Subd. B", "place_name" : "Central Okanagan, Subd. B", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Centreville", "place_name" : "Centreville", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Chaatl", "place_name" : "Chaatl", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Cha cha tsi tsi us", "place_name" : "Cha cha tsi tsi us", "community" : "Numukamis 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Chain Lake", "place_name" : "Chain Lake", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Chamiss Bay", "place_name" : "Chamiss Bay", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Channel Ridge", "place_name" : "Channel Ridge", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Chap-is", "place_name" : "Chap-is", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Chapman Camp", "place_name" : "Chapman Camp", "community" : "Kimberley", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Chapmans", "place_name" : "Chapmans", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Chapperon Ranch", "place_name" : "Chapperon Ranch", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Charella Garden", "place_name" : "Charella Garden", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Charlie Lake", "place_name" : "Charlie Lake", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Charlotte Lake", "place_name" : "Charlotte Lake", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Chase River", "place_name" : "Chase River", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Chasm", "place_name" : "Chasm", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Chateau Village Trailer Court", "place_name" : "Chateau Village Trailer Court", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Chaumox", "place_name" : "Chaumox", "community" : "Speyum 3", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Chaumox 11", "place_name" : "Chaumox 11", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Cheakamus", "place_name" : "Cheakamus", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Cheam View", "place_name" : "Cheam View", "community" : "Fraser Valley D", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Cheekye", "place_name" : "Cheekye", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Chekwelp 26A", "place_name" : "Chekwelp 26A", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Chemainus", "place_name" : "Chemainus", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Chenatha", "place_name" : "Chenatha", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Chequis", "place_name" : "Chequis", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Cherry Creek", "place_name" : "Cherry Creek", "community" : "Alberni-Clayoquot F", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cherry Creek", "place_name" : "Cherry Creek", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Cherryville", "place_name" : "Cherryville", "community" : "North Okanagan E", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ches-la-kee 3", "place_name" : "Ches-la-kee 3", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Cheslatta", "place_name" : "Cheslatta", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Chetarpe", "place_name" : "Chetarpe", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Chezacut", "place_name" : "Chezacut", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Chicoltin Estates Trailer Park", "place_name" : "Chicoltin Estates Trailer Park", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Chilanko Forks", "place_name" : "Chilanko Forks", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Chilcotin Forest", "place_name" : "Chilcotin Forest", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Chilton Subdivision", "place_name" : "Chilton Subdivision", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Chimney Valley", "place_name" : "Chimney Valley", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Chineside", "place_name" : "Chineside", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Chinook Cove", "place_name" : "Chinook Cove", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Chinook Mobile Home Park", "place_name" : "Chinook Mobile Home Park", "community" : "Nanaimo H", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Choate", "place_name" : "Choate", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Chopaka", "place_name" : "Chopaka", "community" : "Chopaka 7 & 8", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Christian Valley", "place_name" : "Christian Valley", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Christina Lake", "place_name" : "Christina Lake", "community" : "Kootenay Boundary C / Christina Lake", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Chuchhriaschin 5", "place_name" : "Chuchhriaschin 5", "community" : "Chuchhraischin", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Chuchhriaschin 5A", "place_name" : "Chuchhriaschin 5A", "community" : "Chuchhraischin", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Chu Chua", "place_name" : "Chu Chua", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Chumata", "place_name" : "Chumata", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Church House", "place_name" : "Church House", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Chute Lake", "place_name" : "Chute Lake", "community" : "Okanagan-Similkameen E", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Cinema", "place_name" : "Cinema", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cinnabar Valley", "place_name" : "Cinnabar Valley", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "City of West Kelowna", "place_name" : "City of West Kelowna", "community" : "West Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Clairmont", "place_name" : "Clairmont", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Claoose 4", "place_name" : "Claoose 4", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Clapperton", "place_name" : "Clapperton", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Claremont Subdivision", "place_name" : "Claremont Subdivision", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Clayburn", "place_name" : "Clayburn", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Clayhurst", "place_name" : "Clayhurst", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Clayoquot", "place_name" : "Clayoquot", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Cleagh Creek", "place_name" : "Cleagh Creek", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Clearbrook", "place_name" : "Clearbrook", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Clearwater Trailer Park", "place_name" : "Clearwater Trailer Park", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Clem Clem", "place_name" : "Clem Clem", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Clemretta", "place_name" : "Clemretta", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Cleveland Park", "place_name" : "Cleveland Park", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Clo-oose", "place_name" : "Clo-oose", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Clover Acres Mobile Villa", "place_name" : "Clover Acres Mobile Villa", "community" : "Cowichan Valley H", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cloverdale", "place_name" : "Cloverdale", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Clutus", "place_name" : "Clutus", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Coal Harbour", "place_name" : "Coal Harbour", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Coalmont", "place_name" : "Coalmont", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Coal River", "place_name" : "Coal River", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Cobble Hill", "place_name" : "Cobble Hill", "community" : "Cowichan Valley C", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cody", "place_name" : "Cody", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Coffin Point", "place_name" : "Coffin Point", "community" : "Cowichan Valley H", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cokato", "place_name" : "Cokato", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Coldspring House", "place_name" : "Coldspring House", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Coldstream Ranch", "place_name" : "Coldstream Ranch", "community" : "Coldstream", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Coldwell Beach", "place_name" : "Coldwell Beach", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "College Heights", "place_name" : "College Heights", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Collettville", "place_name" : "Collettville", "community" : "Merritt", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Colleymount", "place_name" : "Colleymount", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Colquitz", "place_name" : "Colquitz", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Columbia Gardens", "place_name" : "Columbia Gardens", "community" : "Kootenay Boundary A", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Columbia Lake Resort Trailer Park", "place_name" : "Columbia Lake Resort Trailer Park", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Columbia-Shuswap, Subd. A", "place_name" : "Columbia-Shuswap, Subd. A", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Columbia-Shuswap, Subd. B", "place_name" : "Columbia-Shuswap, Subd. B", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Columbia-Shuswap, Subd. C", "place_name" : "Columbia-Shuswap, Subd. C", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Columere Park", "place_name" : "Columere Park", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Comer Hill Trailer Park", "place_name" : "Comer Hill Trailer Park", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Comiaken", "place_name" : "Comiaken", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Commodore Heights", "place_name" : "Commodore Heights", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Comox-Strathcona A", "place_name" : "Comox-Strathcona A", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Comox-Strathcona B", "place_name" : "Comox-Strathcona B", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Comox-Strathcona C", "place_name" : "Comox-Strathcona C", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Comox-Strathcona D", "place_name" : "Comox-Strathcona D", "community" : "Strathcona D (Oyster Bay - Buttle Lake)", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Comox-Strathcona G", "place_name" : "Comox-Strathcona G", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Comox-Strathcona H", "place_name" : "Comox-Strathcona H", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Comox-Strathcona I", "place_name" : "Comox-Strathcona I", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Comox-Strathcona J", "place_name" : "Comox-Strathcona J", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Comox-Strathcona K", "place_name" : "Comox-Strathcona K", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Comox-Strathcona, Subd. A", "place_name" : "Comox-Strathcona, Subd. A", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Comox-Strathcona, Subd. B", "place_name" : "Comox-Strathcona, Subd. B", "community" : "Strathcona D (Oyster Bay - Buttle Lake)", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Comox-Strathcona, Subd. C", "place_name" : "Comox-Strathcona, Subd. C", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Comox-Strathcona, Subd. D", "place_name" : "Comox-Strathcona, Subd. D", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Compton Island 6", "place_name" : "Compton Island 6", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Connaught Heights", "place_name" : "Connaught Heights", "community" : "New Westminster", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Coombe", "place_name" : "Coombe", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Coombs", "place_name" : "Coombs", "community" : "Nanaimo F", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Coombs Trailer Park", "place_name" : "Coombs Trailer Park", "community" : "Nanaimo F", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cooper Creek", "place_name" : "Cooper Creek", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Copper City", "place_name" : "Copper City", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Copper Cove", "place_name" : "Copper Cove", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Copper Creek", "place_name" : "Copper Creek", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Copper Mountain", "place_name" : "Copper Mountain", "community" : "Princeton", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Coral Beach", "place_name" : "Coral Beach", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Corbin", "place_name" : "Corbin", "community" : "Sparwood", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Cordova Bay", "place_name" : "Cordova Bay", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Cornwall Lodge Trailer Park", "place_name" : "Cornwall Lodge Trailer Park", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Corra Linn", "place_name" : "Corra Linn", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Cortes Bay", "place_name" : "Cortes Bay", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Coryville", "place_name" : "Coryville", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Cosy Cove", "place_name" : "Cosy Cove", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Cottonwood", "place_name" : "Cottonwood", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cottonwood Trailer Park", "place_name" : "Cottonwood Trailer Park", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Couldwell Subdivision", "place_name" : "Couldwell Subdivision", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Country Lane Park", "place_name" : "Country Lane Park", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Country Side Estates Trailer Court", "place_name" : "Country Side Estates Trailer Court", "community" : "Salmon Arm", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Coutlee", "place_name" : "Coutlee", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Cove Cliff", "place_name" : "Cove Cliff", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Cowans Point", "place_name" : "Cowans Point", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Cowichan 1", "place_name" : "Cowichan 1", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Cowichan 9", "place_name" : "Cowichan 9", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Cowichan Bay", "place_name" : "Cowichan Bay", "community" : "Cowichan Valley D", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Station", "place_name" : "Cowichan Station", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley, Subd. A", "place_name" : "Cowichan Valley, Subd. A", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley, Subd. B", "place_name" : "Cowichan Valley, Subd. B", "community" : "Cowichan Valley G", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley, Subd. C", "place_name" : "Cowichan Valley, Subd. C", "community" : "Cowichan Valley B", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley, Subd. D", "place_name" : "Cowichan Valley, Subd. D", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Coyle", "place_name" : "Coyle", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Cracroft", "place_name" : "Cracroft", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Craigellachie", "place_name" : "Craigellachie", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Craigs Trailer Court", "place_name" : "Craigs Trailer Court", "community" : "East Kootenay E", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Cranberry", "place_name" : "Cranberry", "community" : "Powell River", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Cranberry Junction", "place_name" : "Cranberry Junction", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Cranbrook Trailer Court", "place_name" : "Cranbrook Trailer Court", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Crawford Bay", "place_name" : "Crawford Bay", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Creekside", "place_name" : "Creekside", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Creekside Trailer Park", "place_name" : "Creekside Trailer Park", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Creighton Valley", "place_name" : "Creighton Valley", "community" : "North Okanagan D", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Crescent", "place_name" : "Crescent", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Crescent Bay", "place_name" : "Crescent Bay", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Crescent Bay", "place_name" : "Crescent Bay", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Crescent Beach", "place_name" : "Crescent Beach", "community" : "Okanagan-Similkameen F", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Crescent Beach", "place_name" : "Crescent Beach", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Crescent Spur", "place_name" : "Crescent Spur", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Crescent Valley", "place_name" : "Crescent Valley", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Crest-A-Way", "place_name" : "Crest-A-Way", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Creston Valley Mobile Park", "place_name" : "Creston Valley Mobile Park", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Creston Wyndle Road", "place_name" : "Creston Wyndle Road", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Crestwood Subdivision", "place_name" : "Crestwood Subdivision", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Criss Creek", "place_name" : "Criss Creek", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Crofton", "place_name" : "Crofton", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Crotteau Subdivision", "place_name" : "Crotteau Subdivision", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Crowsnest", "place_name" : "Crowsnest", "community" : "Sparwood", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Croydon", "place_name" : "Croydon", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cultus Lake", "place_name" : "Cultus Lake", "community" : "Fraser Valley H", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Cultus Lake Estates Mobile Home Park", "place_name" : "Cultus Lake Estates Mobile Home Park", "community" : "Fraser Valley H", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Cumshewa", "place_name" : "Cumshewa", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Curzon", "place_name" : "Curzon", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Cypress Park", "place_name" : "Cypress Park", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Dadens", "place_name" : "Dadens", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Dallas", "place_name" : "Dallas", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Danskin", "place_name" : "Danskin", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "D'Arcy", "place_name" : "D'Arcy", "community" : "Nequatque", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Darfield", "place_name" : "Darfield", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Darrell Bay", "place_name" : "Darrell Bay", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Dartmoor", "place_name" : "Dartmoor", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Dashwood", "place_name" : "Dashwood", "community" : "Nanaimo G", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Davis Bay", "place_name" : "Davis Bay", "community" : "Sunshine Coast D", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Dawsons Landing", "place_name" : "Dawsons Landing", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Days Ranch", "place_name" : "Days Ranch", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Day's Subdivision", "place_name" : "Day's Subdivision", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Deadtree Point", "place_name" : "Deadtree Point", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Deadwood", "place_name" : "Deadwood", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Dease Lake", "place_name" : "Dease Lake", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Dease Lake 9", "place_name" : "Dease Lake 9", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Decker Lake", "place_name" : "Decker Lake", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "De Courcy Island", "place_name" : "De Courcy Island", "community" : "Nanaimo B", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Deekyakus", "place_name" : "Deekyakus", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Deep Bay", "place_name" : "Deep Bay", "community" : "Nanaimo H", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Deep Cove", "place_name" : "Deep Cove", "community" : "North Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Deep Cove", "place_name" : "Deep Cove", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Deep Creek", "place_name" : "Deep Creek", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Deerholme", "place_name" : "Deerholme", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Deer Park", "place_name" : "Deer Park", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Defot", "place_name" : "Defot", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Deka Lake", "place_name" : "Deka Lake", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Deka Lake Subdivision", "place_name" : "Deka Lake Subdivision", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Delbrook", "place_name" : "Delbrook", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Delkatla", "place_name" : "Delkatla", "community" : "Masset", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Del Oro Subdivision", "place_name" : "Del Oro Subdivision", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Denman Island", "place_name" : "Denman Island", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Dentville", "place_name" : "Dentville", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Departure Bay", "place_name" : "Departure Bay", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Deroche", "place_name" : "Deroche", "community" : "Fraser Valley G", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Devine", "place_name" : "Devine", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Dewdney", "place_name" : "Dewdney", "community" : "Fraser Valley G", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Dewdney-Alouette, Subd. A", "place_name" : "Dewdney-Alouette, Subd. A", "community" : "Fraser Valley F", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Dibble Subdivision", "place_name" : "Dibble Subdivision", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Digby Island", "place_name" : "Digby Island", "community" : "S1/2 Tsimpsean 2", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Dochsupple", "place_name" : "Dochsupple", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Dodge Cove", "place_name" : "Dodge Cove", "community" : "North Coast A", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Doe River", "place_name" : "Doe River", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Dog Creek", "place_name" : "Dog Creek", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Dog Creek", "place_name" : "Dog Creek", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Dogpatch", "place_name" : "Dogpatch", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Dogwood Valley", "place_name" : "Dogwood Valley", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Doig River", "place_name" : "Doig River", "community" : "Doig River 206", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Dokie Siding", "place_name" : "Dokie Siding", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Dokkie Subdivision", "place_name" : "Dokkie Subdivision", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Dolan Road Subdivision", "place_name" : "Dolan Road Subdivision", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Dollarton", "place_name" : "Dollarton", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Dolphin Beach", "place_name" : "Dolphin Beach", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Dolphin Beach Estates", "place_name" : "Dolphin Beach Estates", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Dome Creek", "place_name" : "Dome Creek", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Donald", "place_name" : "Donald", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Donald Landing", "place_name" : "Donald Landing", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Donnely Landing", "place_name" : "Donnely Landing", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Don's Trailer Court", "place_name" : "Don's Trailer Court", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Dookqua", "place_name" : "Dookqua", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Dorcas Point", "place_name" : "Dorcas Point", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Doriston", "place_name" : "Doriston", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Dorreen", "place_name" : "Dorreen", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Douglas", "place_name" : "Douglas", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Douglas Hill Estates", "place_name" : "Douglas Hill Estates", "community" : "Cowichan Valley C", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Douglas Lake", "place_name" : "Douglas Lake", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Dove Creek", "place_name" : "Dove Creek", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Drew Harbour", "place_name" : "Drew Harbour", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Driftwood Creek", "place_name" : "Driftwood Creek", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Dry Gulch", "place_name" : "Dry Gulch", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Duck Range", "place_name" : "Duck Range", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Dufferin", "place_name" : "Dufferin", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Dugan Lake", "place_name" : "Dugan Lake", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Dunbar-Southlands", "place_name" : "Dunbar-Southlands", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Duncan Bay", "place_name" : "Duncan Bay", "community" : "Campbell River", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Duncanby Landing", "place_name" : "Duncanby Landing", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Dundarave", "place_name" : "Dundarave", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Dunkley", "place_name" : "Dunkley", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Dunsmuir", "place_name" : "Dunsmuir", "community" : "Nanaimo H", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Dunster", "place_name" : "Dunster", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Durieu", "place_name" : "Durieu", "community" : "Fraser Valley F", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Dutch Creek Subdivision", "place_name" : "Dutch Creek Subdivision", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Dutch Lake", "place_name" : "Dutch Lake", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Dutch Lake Resort", "place_name" : "Dutch Lake Resort", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Dutch Lake Subdivision", "place_name" : "Dutch Lake Subdivision", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Dutch Lake Trailer Park", "place_name" : "Dutch Lake Trailer Park", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Eagle Bay", "place_name" : "Eagle Bay", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Eagle Bay Estates Subdivision", "place_name" : "Eagle Bay Estates Subdivision", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Eagle Bluff", "place_name" : "Eagle Bluff", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Eagle Creek", "place_name" : "Eagle Creek", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Eagle Harbour", "place_name" : "Eagle Harbour", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Eagle Heights", "place_name" : "Eagle Heights", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Eagle Ridge", "place_name" : "Eagle Ridge", "community" : "Port Moody", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Eagle Rock Trailer Park", "place_name" : "Eagle Rock Trailer Park", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Eagle Run", "place_name" : "Eagle Run", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Earls Cove", "place_name" : "Earls Cove", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "East Arrow Park", "place_name" : "East Arrow Park", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Eastbourne", "place_name" : "Eastbourne", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Eastburn", "place_name" : "Eastburn", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "East Gate", "place_name" : "East Gate", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "East Gate", "place_name" : "East Gate", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Eastgate", "place_name" : "Eastgate", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "East Kelowna", "place_name" : "East Kelowna", "community" : "Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "East Kootenay, Subd. A", "place_name" : "East Kootenay, Subd. A", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "East Kootenay, Subd. B", "place_name" : "East Kootenay, Subd. B", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "East Kootenay, Subd. C", "place_name" : "East Kootenay, Subd. C", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "East Osoyoos", "place_name" : "East Osoyoos", "community" : "Okanagan-Similkameen A", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "East Pine", "place_name" : "East Pine", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "East Sooke", "place_name" : "East Sooke", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "East Trail", "place_name" : "East Trail", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "East Wellington", "place_name" : "East Wellington", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Echo Bay", "place_name" : "Echo Bay", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ecoole", "place_name" : "Ecoole", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Eddontenajon", "place_name" : "Eddontenajon", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Eddy", "place_name" : "Eddy", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Edelweiss", "place_name" : "Edelweiss", "community" : "Golden", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Edgewater", "place_name" : "Edgewater", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Edgewood", "place_name" : "Edgewood", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Edgewood Trailer Court", "place_name" : "Edgewood Trailer Court", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Ê”Esdilagh", "place_name" : "Ê”Esdilagh", "community" : "Alexandria", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Egmont", "place_name" : "Egmont", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Ehatisaht", "place_name" : "Ehatisaht", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Eholt", "place_name" : "Eholt", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ekins Point", "place_name" : "Ekins Point", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Elephant Crossing", "place_name" : "Elephant Crossing", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Eleven Mile Site", "place_name" : "Eleven Mile Site", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Elgin", "place_name" : "Elgin", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Elk Bay", "place_name" : "Elk Bay", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Elko", "place_name" : "Elko", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Elk Prairie", "place_name" : "Elk Prairie", "community" : "Sparwood", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Elk Valley Trailer Court", "place_name" : "Elk Valley Trailer Court", "community" : "Sparwood", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Ellison", "place_name" : "Ellison", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Ellsworth Trailer Camp", "place_name" : "Ellsworth Trailer Camp", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Elphinstone", "place_name" : "Elphinstone", "community" : "Sunshine Coast E", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Endako", "place_name" : "Endako", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Engen", "place_name" : "Engen", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Engineer", "place_name" : "Engineer", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Enterprise", "place_name" : "Enterprise", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Erickson", "place_name" : "Erickson", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Erie", "place_name" : "Erie", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Errington", "place_name" : "Errington", "community" : "Nanaimo F", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Esler", "place_name" : "Esler", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Esperanza", "place_name" : "Esperanza", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Espinosa Inlet", "place_name" : "Espinosa Inlet", "community" : "Oclucje 7", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Esquimalt", "place_name" : "Esquimalt", "community" : "Esquimalt - District municipality", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Essondale", "place_name" : "Essondale", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Estevan Point", "place_name" : "Estevan Point", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Evergreen Acres", "place_name" : "Evergreen Acres", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Evergreen Acres", "place_name" : "Evergreen Acres", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Evergreen Trailer Park", "place_name" : "Evergreen Trailer Park", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ewing", "place_name" : "Ewing", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Exeter", "place_name" : "Exeter", "community" : "One Hundred Mile House", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Exlou", "place_name" : "Exlou", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Extension", "place_name" : "Extension", "community" : "Nanaimo C", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Fairbridge", "place_name" : "Fairbridge", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Fairfield", "place_name" : "Fairfield", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Fairfield", "place_name" : "Fairfield", "community" : "Victoria", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Fair Harbour", "place_name" : "Fair Harbour", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Fairmont Hot Springs", "place_name" : "Fairmont Hot Springs", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Fairview", "place_name" : "Fairview", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Fairview", "place_name" : "Fairview", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Fairview Subdivision", "place_name" : "Fairview Subdivision", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Fairwinds", "place_name" : "Fairwinds", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Falkland", "place_name" : "Falkland", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Fallsway", "place_name" : "Fallsway", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "False Bay", "place_name" : "False Bay", "community" : "qathet E", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Fanny Bay", "place_name" : "Fanny Bay", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Fanny Bay", "place_name" : "Fanny Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Farmington", "place_name" : "Farmington", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Farrell Creek", "place_name" : "Farrell Creek", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Fauquier", "place_name" : "Fauquier", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Federal Ranch", "place_name" : "Federal Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Fellers Heights", "place_name" : "Fellers Heights", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Ferguson", "place_name" : "Ferguson", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Ferndale", "place_name" : "Ferndale", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Fernlee", "place_name" : "Fernlee", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Fern Ridge", "place_name" : "Fern Ridge", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Fernwood", "place_name" : "Fernwood", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Field", "place_name" : "Field", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Fife", "place_name" : "Fife", "community" : "Kootenay Boundary C / Christina Lake", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Fifth Cabin", "place_name" : "Fifth Cabin", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Fintry", "place_name" : "Fintry", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Fireside", "place_name" : "Fireside", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Firvale", "place_name" : "Firvale", "community" : "Central Coast C", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Five Mile", "place_name" : "Five Mile", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Five Mile Point 3", "place_name" : "Five Mile Point 3", "community" : "Five Mile Point 3", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Flathead", "place_name" : "Flathead", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Flatrock", "place_name" : "Flatrock", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Flats", "place_name" : "Flats", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Fleetwood", "place_name" : "Fleetwood", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Floods", "place_name" : "Floods", "community" : "Hope", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fontas", "place_name" : "Fontas", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Fontas 1", "place_name" : "Fontas 1", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Forde", "place_name" : "Forde", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Foreman", "place_name" : "Foreman", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Forestdale", "place_name" : "Forestdale", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Forestglade Trailer Park", "place_name" : "Forestglade Trailer Park", "community" : "Nanaimo C", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Forest Grove", "place_name" : "Forest Grove", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Forest Grove Trailer Park", "place_name" : "Forest Grove Trailer Park", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Forest Hills", "place_name" : "Forest Hills", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Forest Knolls", "place_name" : "Forest Knolls", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Forest Lawn Trailer Court", "place_name" : "Forest Lawn Trailer Court", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Fort Babine", "place_name" : "Fort Babine", "community" : "Babine 6", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Fort Fraser", "place_name" : "Fort Fraser", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Fort George (Shelley) 2", "place_name" : "Fort George (Shelley) 2", "community" : "Fort George 2", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Fort Langley", "place_name" : "Fort Langley", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Fort Nelson", "place_name" : "Fort Nelson", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Fort Nelson-Liard, Subd. A", "place_name" : "Fort Nelson-Liard, Subd. A", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Fort Rupert", "place_name" : "Fort Rupert", "community" : "Port Hardy", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Fort Steele", "place_name" : "Fort Steele", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Fort Ware", "place_name" : "Fort Ware", "community" : "Fort Ware 1", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Fosthall", "place_name" : "Fosthall", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Fountain", "place_name" : "Fountain", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Fountain 1", "place_name" : "Fountain 1", "community" : "Fountain 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 3", "place_name" : "Fountain 3", "community" : "Fountain 3", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain Valley", "place_name" : "Fountain Valley", "community" : "Fountain 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fourth Cabin", "place_name" : "Fourth Cabin", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Fourways Trailer Park", "place_name" : "Fourways Trailer Park", "community" : "Cowichan Valley D", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Fowler", "place_name" : "Fowler", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Fox Mountain", "place_name" : "Fox Mountain", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Frames", "place_name" : "Frames", "community" : "Anmore", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Francis Peninsula", "place_name" : "Francis Peninsula", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "François Lake", "place_name" : "François Lake", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Franklin Camp", "place_name" : "Franklin Camp", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Franks 10", "place_name" : "Franks 10", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser", "place_name" : "Fraser", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Fraser-Fort George, Subd. A", "place_name" : "Fraser-Fort George, Subd. A", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Fraser-Fort George, Subd. B", "place_name" : "Fraser-Fort George, Subd. B", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Fraser Heights", "place_name" : "Fraser Heights", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Fraser Mills", "place_name" : "Fraser Mills", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Fraser Valley H", "place_name" : "Fraser Valley H", "community" : "Fraser Valley G", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Fraser Valley, Subd. A", "place_name" : "Fraser Valley, Subd. A", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley, Subd. B", "place_name" : "Fraser Valley, Subd. B", "community" : "Fraser Valley E", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley, Subd. C", "place_name" : "Fraser Valley, Subd. C", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley, Subd. D", "place_name" : "Fraser Valley, Subd. D", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Fraser Valley, Subd. E", "place_name" : "Fraser Valley, Subd. E", "community" : "Fraser Valley F", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Freeport Trailer Park", "place_name" : "Freeport Trailer Park", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "French Creek", "place_name" : "French Creek", "community" : "Nanaimo G", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Fry Creek", "place_name" : "Fry Creek", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Fulford Harbour", "place_name" : "Fulford Harbour", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Furry Creek", "place_name" : "Furry Creek", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Gabriola", "place_name" : "Gabriola", "community" : "Nanaimo B", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Gabriola Island", "place_name" : "Gabriola Island", "community" : "Nanaimo B", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Gabriola Island Trust Area part A", "place_name" : "Gabriola Island Trust Area part A", "community" : "Nanaimo C", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Galena", "place_name" : "Galena", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Galena Bay", "place_name" : "Galena Bay", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Gallagher Lake", "place_name" : "Gallagher Lake", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Galloway", "place_name" : "Galloway", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Gambier Harbour", "place_name" : "Gambier Harbour", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Gambier Island", "place_name" : "Gambier Island", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Ganges", "place_name" : "Ganges", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Gang Ranch", "place_name" : "Gang Ranch", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Garden 2", "place_name" : "Garden 2", "community" : "Garden", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Garden 2A", "place_name" : "Garden 2A", "community" : "Garden", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Garden Bay", "place_name" : "Garden Bay", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Garden Village", "place_name" : "Garden Village", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Gardner Lake Mobile Home Park", "place_name" : "Gardner Lake Mobile Home Park", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Garibaldi", "place_name" : "Garibaldi", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Garibaldi Estates", "place_name" : "Garibaldi Estates", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Garnet Rock Trailer Court", "place_name" : "Garnet Rock Trailer Court", "community" : "qathet B", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Garnet Valley", "place_name" : "Garnet Valley", "community" : "Summerland", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Garry Oaks", "place_name" : "Garry Oaks", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Gates", "place_name" : "Gates", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Gateway", "place_name" : "Gateway", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Gellatly", "place_name" : "Gellatly", "community" : "West Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Genelle", "place_name" : "Genelle", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Genoa Bay", "place_name" : "Genoa Bay", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "George River", "place_name" : "George River", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Georgetown Mills", "place_name" : "Georgetown Mills", "community" : "Lax Kw'alaams 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Germansen Landing", "place_name" : "Germansen Landing", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Gerow Island", "place_name" : "Gerow Island", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Gerrard", "place_name" : "Gerrard", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Gibson Creek", "place_name" : "Gibson Creek", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Gifford", "place_name" : "Gifford", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Gillies Bay", "place_name" : "Gillies Bay", "community" : "qathet D", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Gilpin", "place_name" : "Gilpin", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Gingolx", "place_name" : "Gingolx", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Giscome", "place_name" : "Giscome", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Gitanyow", "place_name" : "Gitanyow", "community" : "Gitanyow 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gitlaxksiip", "place_name" : "Gitlaxksiip", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gitwinksihlkw", "place_name" : "Gitwinksihlkw", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gitwinksihlkw 7", "place_name" : "Gitwinksihlkw 7", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gitzault 24", "place_name" : "Gitzault 24", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Glacier Gulch", "place_name" : "Glacier Gulch", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Glade", "place_name" : "Glade", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Gladwin Trailer Court", "place_name" : "Gladwin Trailer Court", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Glenannan", "place_name" : "Glenannan", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Glenbank", "place_name" : "Glenbank", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Glenbrooke North", "place_name" : "Glenbrooke North", "community" : "New Westminster", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Glendale", "place_name" : "Glendale", "community" : "Williams Lake", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 3"}, {"location" : "Gleneagles", "place_name" : "Gleneagles", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Gleneden", "place_name" : "Gleneden", "community" : "Salmon Arm", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Glenemma", "place_name" : "Glenemma", "community" : "Okanagan (Part) 1 - Thompson/Okanagan", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Glen-Gla-Ouch 5", "place_name" : "Glen-Gla-Ouch 5", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Glen Lake", "place_name" : "Glen Lake", "community" : "Langford", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Glenlily", "place_name" : "Glenlily", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Glenmerry", "place_name" : "Glenmerry", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Glenmore", "place_name" : "Glenmore", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Glenora", "place_name" : "Glenora", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Glenora", "place_name" : "Glenora", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Glenrosa", "place_name" : "Glenrosa", "community" : "West Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Glentanna", "place_name" : "Glentanna", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Glen Valley", "place_name" : "Glen Valley", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Glen Vowell", "place_name" : "Glen Vowell", "community" : "Sik-e-dakh 2", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Glimpse Lake", "place_name" : "Glimpse Lake", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Gold Bridge", "place_name" : "Gold Bridge", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Goldstream", "place_name" : "Goldstream", "community" : "Langford", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Good Hope", "place_name" : "Good Hope", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Good Hope Lake", "place_name" : "Good Hope Lake", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Goodlow", "place_name" : "Goodlow", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Goose Bay", "place_name" : "Goose Bay", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Gordon Head", "place_name" : "Gordon Head", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Gordon River", "place_name" : "Gordon River", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Gorge Harbour", "place_name" : "Gorge Harbour", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Gossen Creek", "place_name" : "Gossen Creek", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Gossip Island", "place_name" : "Gossip Island", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Gowlland Harbour", "place_name" : "Gowlland Harbour", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Graffunder Trailer Park", "place_name" : "Graffunder Trailer Park", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Gramsons", "place_name" : "Gramsons", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Grand Haven", "place_name" : "Grand Haven", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Grand Rapids", "place_name" : "Grand Rapids", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Granduc", "place_name" : "Granduc", "community" : "Stewart", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Grandview", "place_name" : "Grandview", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Grandview Bench", "place_name" : "Grandview Bench", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Grandview-Woodlands", "place_name" : "Grandview-Woodlands", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Granite", "place_name" : "Granite", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Granite Bay", "place_name" : "Granite Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Granite Falls", "place_name" : "Granite Falls", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Granite Trailer Park", "place_name" : "Granite Trailer Park", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Grantham", "place_name" : "Grantham", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Granthams Landing", "place_name" : "Granthams Landing", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Grasmere", "place_name" : "Grasmere", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Grassy Plains", "place_name" : "Grassy Plains", "community" : "Cheslatta 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Gravelle Ferry", "place_name" : "Gravelle Ferry", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Gray Creek", "place_name" : "Gray Creek", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Greata", "place_name" : "Greata", "community" : "Okanagan-Similkameen F", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Great Central", "place_name" : "Great Central", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Great Central Lake", "place_name" : "Great Central Lake", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Greater Vancouver A", "place_name" : "Greater Vancouver A", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Greater Vancouver C", "place_name" : "Greater Vancouver C", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Greater Vancouver, Subd. A", "place_name" : "Greater Vancouver, Subd. A", "community" : "North Vancouver - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Green Acres Trailer Park", "place_name" : "Green Acres Trailer Park", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Green Acres Trailer Park", "place_name" : "Green Acres Trailer Park", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Green Bay Resort", "place_name" : "Green Bay Resort", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Green Cove", "place_name" : "Green Cove", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Greendale", "place_name" : "Greendale", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Greenwood Mobile Park", "place_name" : "Greenwood Mobile Park", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Grindrod", "place_name" : "Grindrod", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Groundbirch", "place_name" : "Groundbirch", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Guildford", "place_name" : "Guildford", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Gundy", "place_name" : "Gundy", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Gun Lake", "place_name" : "Gun Lake", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Hagensborg", "place_name" : "Hagensborg", "community" : "Central Coast C", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hagwilget", "place_name" : "Hagwilget", "community" : "Hagwilget 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Haig", "place_name" : "Haig", "community" : "Schkam 2", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Haina", "place_name" : "Haina", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Halfmoon Bay", "place_name" : "Halfmoon Bay", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Halfway Graham Subdivision", "place_name" : "Halfway Graham Subdivision", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Halfway Ranch", "place_name" : "Halfway Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Halhalaeden 14", "place_name" : "Halhalaeden 14", "community" : "Halhalaeden", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Halhalaeden 14A", "place_name" : "Halhalaeden 14A", "community" : "Halhalaeden", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Hall", "place_name" : "Hall", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Halyn Trailer Court", "place_name" : "Halyn Trailer Court", "community" : "Canal Flats", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hamilton Creek 7", "place_name" : "Hamilton Creek 7", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Hanbury", "place_name" : "Hanbury", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hanceville", "place_name" : "Hanceville", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Haney", "place_name" : "Haney", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Happy Valley", "place_name" : "Happy Valley", "community" : "Langford", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Happy Valley Trailer Park", "place_name" : "Happy Valley Trailer Park", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Harbour Chines", "place_name" : "Harbour Chines", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Harbour Village", "place_name" : "Harbour Village", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Hardwicke Island", "place_name" : "Hardwicke Island", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Harmac", "place_name" : "Harmac", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Harmony Heights Trailer Park", "place_name" : "Harmony Heights Trailer Park", "community" : "Fraser-Fort George D", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Harrison Mills", "place_name" : "Harrison Mills", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Harrogate", "place_name" : "Harrogate", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Harrop", "place_name" : "Harrop", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hart Highlands", "place_name" : "Hart Highlands", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Hartley Bay", "place_name" : "Hartley Bay", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Harwood Island 2", "place_name" : "Harwood Island 2", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hasler Flat", "place_name" : "Hasler Flat", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Hasler Flats Subdivision", "place_name" : "Hasler Flats Subdivision", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Hastings-Sunrise", "place_name" : "Hastings-Sunrise", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Hatzic", "place_name" : "Hatzic", "community" : "Mission", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Hawkins Lake Subdivision", "place_name" : "Hawkins Lake Subdivision", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Hayview Mobile Home", "place_name" : "Hayview Mobile Home", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Hayward Subdivision", "place_name" : "Hayward Subdivision", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Hazelmere", "place_name" : "Hazelmere", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Headquarters", "place_name" : "Headquarters", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Headwaters Ranch", "place_name" : "Headwaters Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Health Bay", "place_name" : "Health Bay", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hecate", "place_name" : "Hecate", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hedley", "place_name" : "Hedley", "community" : "Okanagan-Similkameen G", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Heffley Creek", "place_name" : "Heffley Creek", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Hells Gate", "place_name" : "Hells Gate", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Hemlock Valley", "place_name" : "Hemlock Valley", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Hendrix Lake", "place_name" : "Hendrix Lake", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Henry And Ann Trailer Park", "place_name" : "Henry And Ann Trailer Park", "community" : "Cowichan Valley I", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Heriot Bay", "place_name" : "Heriot Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hesquiat", "place_name" : "Hesquiat", "community" : "Hesquiat 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Heydon Bay", "place_name" : "Heydon Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hickethier Ranch", "place_name" : "Hickethier Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Hideway Trailer Court", "place_name" : "Hideway Trailer Court", "community" : "Revelstoke", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Highland Valley Subdivision", "place_name" : "Highland Valley Subdivision", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Hiina'is", "place_name" : "Hiina'is", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Hillcrest", "place_name" : "Hillcrest", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Hilliers", "place_name" : "Hilliers", "community" : "Nanaimo F", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Hills", "place_name" : "Hills", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hillside Mobile Home Park", "place_name" : "Hillside Mobile Home Park", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Hilltop Ranch", "place_name" : "Hilltop Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Hippa", "place_name" : "Hippa", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Hisnit", "place_name" : "Hisnit", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hitacu", "place_name" : "Hitacu", "community" : "Ittatsoo 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Hi'tatis", "place_name" : "Hi'tatis", "community" : "Elhlateese 2", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Hiusta Meadow", "place_name" : "Hiusta Meadow", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Hixon", "place_name" : "Hixon", "community" : "Fraser-Fort George E", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Hkusam", "place_name" : "Hkusam", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Holberg", "place_name" : "Holberg", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Holiday Family Trailer Park", "place_name" : "Holiday Family Trailer Park", "community" : "Priest's Valley 6", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Hollyburn", "place_name" : "Hollyburn", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Holmwood", "place_name" : "Holmwood", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Homalco 9", "place_name" : "Homalco 9", "community" : "Campbell River", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Homestead Trailer Park", "place_name" : "Homestead Trailer Park", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Homfray Creek", "place_name" : "Homfray Creek", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Honeymoon Bay", "place_name" : "Honeymoon Bay", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Honeymoon Creek", "place_name" : "Honeymoon Creek", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Hoodoos", "place_name" : "Hoodoos", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hoo-ii", "place_name" : "Hoo-ii", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Hope Bay", "place_name" : "Hope Bay", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Hopetown", "place_name" : "Hopetown", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hopington", "place_name" : "Hopington", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Hopkins Landing", "place_name" : "Hopkins Landing", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Horlick Point", "place_name" : "Horlick Point", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hornby Island", "place_name" : "Hornby Island", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Horsefly", "place_name" : "Horsefly", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Horseshoe Bay", "place_name" : "Horseshoe Bay", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Hosmatqts'os", "place_name" : "Hosmatqts'os", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Hosmer", "place_name" : "Hosmer", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hosmer Trailer Park", "place_name" : "Hosmer Trailer Park", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hospital Hill", "place_name" : "Hospital Hill", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Hot Springs Cove", "place_name" : "Hot Springs Cove", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Houpsitas", "place_name" : "Houpsitas", "community" : "Houpsitas 6", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Houpsitas 6", "place_name" : "Houpsitas 6", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Houston Trailer Court", "place_name" : "Houston Trailer Court", "community" : "Houston", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Howser", "place_name" : "Howser", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hudson Hope", "place_name" : "Hudson Hope", "community" : "Hudson's Hope", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Hullcar", "place_name" : "Hullcar", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Humpback Bay", "place_name" : "Humpback Bay", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Huntingdon", "place_name" : "Huntingdon", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Hunts Inlet", "place_name" : "Hunts Inlet", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Hupel", "place_name" : "Hupel", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Huscroft", "place_name" : "Huscroft", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Hutchinson", "place_name" : "Hutchinson", "community" : "Cowichan Valley C", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Hu'ul", "place_name" : "Hu'ul", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Hyacinthe Bay", "place_name" : "Hyacinthe Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hyde Creek", "place_name" : "Hyde Creek", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Hydraulic", "place_name" : "Hydraulic", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Hyland Post", "place_name" : "Hyland Post", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Hyland Ranch", "place_name" : "Hyland Ranch", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Idabel Lake", "place_name" : "Idabel Lake", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Indian Rock", "place_name" : "Indian Rock", "community" : "Okanagan-Similkameen E", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ingenika Mine", "place_name" : "Ingenika Mine", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Inkaneep", "place_name" : "Inkaneep", "community" : "Osoyoos 1", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Inkluckcheen 21", "place_name" : "Inkluckcheen 21", "community" : "Inkluckcheen", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Inkluckcheen 21B", "place_name" : "Inkluckcheen 21B", "community" : "Inkluckcheen", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Ioco", "place_name" : "Ioco", "community" : "Port Moody", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Iron Bay", "place_name" : "Iron Bay", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Iron Mask Trailer Park", "place_name" : "Iron Mask Trailer Park", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Irvines Landing", "place_name" : "Irvines Landing", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Isaac (Gale Lake) 8", "place_name" : "Isaac (Gale Lake) 8", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Iskut", "place_name" : "Iskut", "community" : "Iskut 6", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Island Cache", "place_name" : "Island Cache", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Isle Pierre", "place_name" : "Isle Pierre", "community" : "Fraser-Fort George C", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Ivy Green Mobile Home Park", "place_name" : "Ivy Green Mobile Home Park", "community" : "Cowichan Valley H", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Jackfish Lake Subdivision", "place_name" : "Jackfish Lake Subdivision", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Jackman", "place_name" : "Jackman", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Jackpine Flats", "place_name" : "Jackpine Flats", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Jackson Bay", "place_name" : "Jackson Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Jacksons", "place_name" : "Jacksons", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Jade City", "place_name" : "Jade City", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Jaffray", "place_name" : "Jaffray", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Jaffray Estates", "place_name" : "Jaffray Estates", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "James Bay", "place_name" : "James Bay", "community" : "Victoria", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Jedway", "place_name" : "Jedway", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Jellicoe", "place_name" : "Jellicoe", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Jersey", "place_name" : "Jersey", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Jervis Inlet", "place_name" : "Jervis Inlet", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Jesmond", "place_name" : "Jesmond", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Jeune Landing", "place_name" : "Jeune Landing", "community" : "Port Alice", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Jim Smith Lake and Area", "place_name" : "Jim Smith Lake and Area", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Johnson", "place_name" : "Johnson", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Johnson Heights", "place_name" : "Johnson Heights", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Johnsons Landing", "place_name" : "Johnsons Landing", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Jordan River", "place_name" : "Jordan River", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Juan de Fuca", "place_name" : "Juan de Fuca", "community" : "Juan de Fuca (Part 2)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Jumbo Glacier", "place_name" : "Jumbo Glacier", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "June Springs Estates", "place_name" : "June Springs Estates", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Juniper Ridge", "place_name" : "Juniper Ridge", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Jura", "place_name" : "Jura", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Juskatla", "place_name" : "Juskatla", "community" : "Port Clements", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kahntah", "place_name" : "Kahntah", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Kahntah 3", "place_name" : "Kahntah 3", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Kaisun", "place_name" : "Kaisun", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kakawis", "place_name" : "Kakawis", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kaleden", "place_name" : "Kaleden", "community" : "Okanagan-Similkameen I", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Kaleva", "place_name" : "Kaleva", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Kanaka Bar", "place_name" : "Kanaka Bar", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Kanaka Bar 1A", "place_name" : "Kanaka Bar 1A", "community" : "Kanaka Bar", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Kanaka Bar 2", "place_name" : "Kanaka Bar 2", "community" : "Kanaka Bar", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Ka:ook", "place_name" : "Ka:ook", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ka:oop:insh", "place_name" : "Ka:oop:insh", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Karlukwees", "place_name" : "Karlukwees", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Karlukwees 1", "place_name" : "Karlukwees 1", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ka-x-shiitl", "place_name" : "Ka-x-shiitl", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ka:youk", "place_name" : "Ka:youk", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Keating", "place_name" : "Keating", "community" : "Central Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Keats Island", "place_name" : "Keats Island", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Kedleston", "place_name" : "Kedleston", "community" : "North Okanagan C", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Keekwillie Subdivision", "place_name" : "Keekwillie Subdivision", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Keekwillie Trailer Park", "place_name" : "Keekwillie Trailer Park", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Keeshan 9", "place_name" : "Keeshan 9", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Keithley Creek", "place_name" : "Keithley Creek", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Keith-Lynn", "place_name" : "Keith-Lynn", "community" : "North Vancouver - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Kelly Lake", "place_name" : "Kelly Lake", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Kelly Lake", "place_name" : "Kelly Lake", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Kelly Lake Road Estates", "place_name" : "Kelly Lake Road Estates", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Kelvin", "place_name" : "Kelvin", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Kemano", "place_name" : "Kemano", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kemano Beach", "place_name" : "Kemano Beach", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kendrick Camp", "place_name" : "Kendrick Camp", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Kensington-Cedar Cottage", "place_name" : "Kensington-Cedar Cottage", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Kerr Creek", "place_name" : "Kerr Creek", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kerrisdale", "place_name" : "Kerrisdale", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Kershaw Subdivision", "place_name" : "Kershaw Subdivision", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Kersley", "place_name" : "Kersley", "community" : "Cariboo A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Kettle Valley", "place_name" : "Kettle Valley", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Khahanie Trailer Court", "place_name" : "Khahanie Trailer Court", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Khenipsen", "place_name" : "Khenipsen", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Kia Ora Trailer Park", "place_name" : "Kia Ora Trailer Park", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Kicking Horse", "place_name" : "Kicking Horse", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "K'i Deldel", "place_name" : "K'i Deldel", "community" : "Charley Boy's Meadow 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Kiikiixink'ok", "place_name" : "Kiikiixink'ok", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kiix aa", "place_name" : "Kiix aa", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kiix-in", "place_name" : "Kiix-in", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kilbella Bay", "place_name" : "Kilbella Bay", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Kildala Arm", "place_name" : "Kildala Arm", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kildonan", "place_name" : "Kildonan", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kilgard", "place_name" : "Kilgard", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Kilkerran", "place_name" : "Kilkerran", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Killarney", "place_name" : "Killarney", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Killiney Beach", "place_name" : "Killiney Beach", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Kimsquit", "place_name" : "Kimsquit", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Kincolith 14", "place_name" : "Kincolith 14", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kingcome", "place_name" : "Kingcome", "community" : "Quaee 7", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Kingcome Inlet", "place_name" : "Kingcome Inlet", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Kingcome Inlet", "place_name" : "Kingcome Inlet", "community" : "Quaee 7", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Kingfisher", "place_name" : "Kingfisher", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Kingsgate", "place_name" : "Kingsgate", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kinnaird", "place_name" : "Kinnaird", "community" : "Castlegar", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Kispiox", "place_name" : "Kispiox", "community" : "Kispiox 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kispiox Valley", "place_name" : "Kispiox Valley", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitamaat Village", "place_name" : "Kitamaat Village", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitchener", "place_name" : "Kitchener", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine, Subd. A", "place_name" : "Kitimat-Stikine, Subd. A", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine, Subd. B", "place_name" : "Kitimat-Stikine, Subd. B", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine, Subd. C", "place_name" : "Kitimat-Stikine, Subd. C", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine, Subd. D", "place_name" : "Kitimat-Stikine, Subd. D", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitkatla", "place_name" : "Kitkatla", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kitsault", "place_name" : "Kitsault", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitseguecla", "place_name" : "Kitseguecla", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitsilano", "place_name" : "Kitsilano", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Kitsumkalum", "place_name" : "Kitsumkalum", "community" : "Terrace", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 3"}, {"location" : "Kitty Coleman", "place_name" : "Kitty Coleman", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kitwanga", "place_name" : "Kitwanga", "community" : "Gitwangak 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kiusta", "place_name" : "Kiusta", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Klahkowit 5", "place_name" : "Klahkowit 5", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Kleanza Creek Subdivision", "place_name" : "Kleanza Creek Subdivision", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kleecoot", "place_name" : "Kleecoot", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kleena Kleene", "place_name" : "Kleena Kleene", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Kleindale", "place_name" : "Kleindale", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Klemtu", "place_name" : "Klemtu", "community" : "Kitasoo 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kliikliihuwis", "place_name" : "Kliikliihuwis", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Klit-kle-mah-ah", "place_name" : "Klit-kle-mah-ah", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kluachon Lake 1", "place_name" : "Kluachon Lake 1", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Knutsford", "place_name" : "Knutsford", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Kobes", "place_name" : "Kobes", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Kokish", "place_name" : "Kokish", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Koksilah", "place_name" : "Koksilah", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Kookswees", "place_name" : "Kookswees", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kootenay Bay", "place_name" : "Kootenay Bay", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kootenay Boundary B", "place_name" : "Kootenay Boundary B", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kootenay Boundary C", "place_name" : "Kootenay Boundary C", "community" : "Kootenay Boundary C / Christina Lake", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kootenay Boundary D", "place_name" : "Kootenay Boundary D", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kootenay Boundary E", "place_name" : "Kootenay Boundary E", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kootenay Boundary, Subd. A", "place_name" : "Kootenay Boundary, Subd. A", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kootenay Boundary, Subd. B", "place_name" : "Kootenay Boundary, Subd. B", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kootenay Cove Mobile Village", "place_name" : "Kootenay Cove Mobile Village", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kootenay Crossing", "place_name" : "Kootenay Crossing", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kootenay Flats West", "place_name" : "Kootenay Flats West", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "K'oxsinqii", "place_name" : "K'oxsinqii", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kragmont", "place_name" : "Kragmont", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Krestova", "place_name" : "Krestova", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "'Ksan", "place_name" : "'Ksan", "community" : "Gitanmaax 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kuldo", "place_name" : "Kuldo", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Kulkayu 4", "place_name" : "Kulkayu 4", "community" : "Kulkayu (Hartley Bay) 4", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kung", "place_name" : "Kung", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kuper Island 7", "place_name" : "Kuper Island 7", "community" : "Penelakut Island 7", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Kushya Creek 7", "place_name" : "Kushya Creek 7", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Kuskonook", "place_name" : "Kuskonook", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kuthlalth 3", "place_name" : "Kuthlalth 3", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Kuz Che 5", "place_name" : "Kuz Che 5", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Kwinaquth", "place_name" : "Kwinaquth", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kwisitis", "place_name" : "Kwisitis", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Kye Bay", "place_name" : "Kye Bay", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Kyuquot", "place_name" : "Kyuquot", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Lachkaltsap 9", "place_name" : "Lachkaltsap 9", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Lac la Hache", "place_name" : "Lac la Hache", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lac Le Jeune", "place_name" : "Lac Le Jeune", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ladner", "place_name" : "Ladner", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Laidlaw", "place_name" : "Laidlaw", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Lake Buntzen", "place_name" : "Lake Buntzen", "community" : "Anmore", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Lake Errock", "place_name" : "Lake Errock", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Lake Hill", "place_name" : "Lake Hill", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Lake Kathlyn", "place_name" : "Lake Kathlyn", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Lakelse Lake", "place_name" : "Lakelse Lake", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Lakeshore Highlands", "place_name" : "Lakeshore Highlands", "community" : "Okanagan-Similkameen D", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Laketon", "place_name" : "Laketon", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Lakeview Heights", "place_name" : "Lakeview Heights", "community" : "West Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Lambourn Trailer Park", "place_name" : "Lambourn Trailer Park", "community" : "Cowichan Valley D", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Lamming Mills", "place_name" : "Lamming Mills", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lang Bay", "place_name" : "Lang Bay", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Langdale", "place_name" : "Langdale", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Langley", "place_name" : "Langley", "community" : "Langley - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Langley", "place_name" : "Langley", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Langley 5", "place_name" : "Langley 5", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Langner Trailer Park", "place_name" : "Langner Trailer Park", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Larch Hill", "place_name" : "Larch Hill", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lardeau", "place_name" : "Lardeau", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Larsons Landing", "place_name" : "Larsons Landing", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Laurentian Belaire", "place_name" : "Laurentian Belaire", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Lavington", "place_name" : "Lavington", "community" : "Coldstream", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Lawnhill", "place_name" : "Lawnhill", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Laxgalts'ap", "place_name" : "Laxgalts'ap", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Lax Kw'alaams", "place_name" : "Lax Kw'alaams", "community" : "Lax Kw'alaams 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Lazo", "place_name" : "Lazo", "community" : "Comox", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Lebahdo", "place_name" : "Lebahdo", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Leechtown", "place_name" : "Leechtown", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Lee Creek", "place_name" : "Lee Creek", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lees Corner", "place_name" : "Lees Corner", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lejac", "place_name" : "Lejac", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Lemon Creek", "place_name" : "Lemon Creek", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Lemoray", "place_name" : "Lemoray", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Leo Creek", "place_name" : "Leo Creek", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Leon Creek 2", "place_name" : "Leon Creek 2", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Lexau Ranch", "place_name" : "Lexau Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Lexington Subdivision", "place_name" : "Lexington Subdivision", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lezbye 6", "place_name" : "Lezbye 6", "community" : "Lezbye 6", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Liard River", "place_name" : "Liard River", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Lighthouse Point", "place_name" : "Lighthouse Point", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Likely", "place_name" : "Likely", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lily Lake", "place_name" : "Lily Lake", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Lincoln Park", "place_name" : "Lincoln Park", "community" : "Port Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Lindell", "place_name" : "Lindell", "community" : "Fraser Valley H", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Lindell Beach", "place_name" : "Lindell Beach", "community" : "Fraser Valley H", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Lindeman", "place_name" : "Lindeman", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Lismore Trailer Park", "place_name" : "Lismore Trailer Park", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Lister", "place_name" : "Lister", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Little Acres Trailer Court", "place_name" : "Little Acres Trailer Court", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Little Fort", "place_name" : "Little Fort", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Little River", "place_name" : "Little River", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Little Springs 18", "place_name" : "Little Springs 18", "community" : "Little Springs", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Little Springs 8", "place_name" : "Little Springs 8", "community" : "Little Springs", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Liumchen Village Mobile Home Park", "place_name" : "Liumchen Village Mobile Home Park", "community" : "Fraser Valley H", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Living Waters Trailer Park", "place_name" : "Living Waters Trailer Park", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lockeport", "place_name" : "Lockeport", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Lodge Pole Trailer Park", "place_name" : "Lodge Pole Trailer Park", "community" : "Sparwood", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Lone Butte", "place_name" : "Lone Butte", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lone Prairie", "place_name" : "Lone Prairie", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Longbeach", "place_name" : "Longbeach", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Long Harbour", "place_name" : "Long Harbour", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Longworth", "place_name" : "Longworth", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Loon Lake", "place_name" : "Loon Lake", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Loon Lake Subdivision", "place_name" : "Loon Lake Subdivision", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Loos", "place_name" : "Loos", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Louis Creek", "place_name" : "Louis Creek", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Louis Squinas Ranch 14", "place_name" : "Louis Squinas Ranch 14", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lower China Creek", "place_name" : "Lower China Creek", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Lower Lodge Pole Trailer Court", "place_name" : "Lower Lodge Pole Trailer Court", "community" : "Sparwood", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Lower Lonsdale", "place_name" : "Lower Lonsdale", "community" : "North Vancouver - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Lower Nicola", "place_name" : "Lower Nicola", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lower Nicola Trailer Park", "place_name" : "Lower Nicola Trailer Park", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lower Post", "place_name" : "Lower Post", "community" : "Liard River 3", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Lucerne", "place_name" : "Lucerne", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Lumberton", "place_name" : "Lumberton", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Lund", "place_name" : "Lund", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Lust Subdivision", "place_name" : "Lust Subdivision", "community" : "Cariboo A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Luxton", "place_name" : "Luxton", "community" : "Langford", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Lynnmour", "place_name" : "Lynnmour", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Lynn Valley", "place_name" : "Lynn Valley", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Lynx Creek", "place_name" : "Lynx Creek", "community" : "Hudson's Hope", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Lytton 27B", "place_name" : "Lytton 27B", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Maalth-sit", "place_name" : "Maalth-sit", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Mabel Lake", "place_name" : "Mabel Lake", "community" : "North Okanagan D", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Macalister", "place_name" : "Macalister", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Macoah", "place_name" : "Macoah", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Madeira Park", "place_name" : "Madeira Park", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Magic Lake Estates", "place_name" : "Magic Lake Estates", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Magna Bay", "place_name" : "Magna Bay", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Magnum Mine", "place_name" : "Magnum Mine", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Mahatta River", "place_name" : "Mahatta River", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mah:kiit", "place_name" : "Mah:kiit", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mahmalillikullah 1", "place_name" : "Mahmalillikullah 1", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mahood Falls", "place_name" : "Mahood Falls", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Mahope", "place_name" : "Mahope", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Maht'ii'as", "place_name" : "Maht'ii'as", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Maillardville", "place_name" : "Maillardville", "community" : "New Westminster", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Makinson", "place_name" : "Makinson", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Malahat", "place_name" : "Malahat", "community" : "Cowichan Valley A", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Malakwa", "place_name" : "Malakwa", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Malakwa Trailer Park", "place_name" : "Malakwa Trailer Park", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Malibu", "place_name" : "Malibu", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Mammel Subdivision", "place_name" : "Mammel Subdivision", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Manca Subdivision", "place_name" : "Manca Subdivision", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Manning Park", "place_name" : "Manning Park", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Manson Creek", "place_name" : "Manson Creek", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Mansons Landing", "place_name" : "Mansons Landing", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mapes", "place_name" : "Mapes", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Maple Bay", "place_name" : "Maple Bay", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Maplewood", "place_name" : "Maplewood", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Maq:cup", "place_name" : "Maq:cup", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mara", "place_name" : "Mara", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Marblehead", "place_name" : "Marblehead", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Margaret Bay", "place_name" : "Margaret Bay", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Marguerite", "place_name" : "Marguerite", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Marigold", "place_name" : "Marigold", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Marilla", "place_name" : "Marilla", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Marktosis", "place_name" : "Marktosis", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Marne", "place_name" : "Marne", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Marpole", "place_name" : "Marpole", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Marron Valley", "place_name" : "Marron Valley", "community" : "Okanagan-Similkameen I", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Marshall School Junction", "place_name" : "Marshall School Junction", "community" : "qathet D", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Marsh Creek Area", "place_name" : "Marsh Creek Area", "community" : "Kootenay Boundary A", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Marsh Subdivision", "place_name" : "Marsh Subdivision", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Martin Prairie", "place_name" : "Martin Prairie", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Martin Valley", "place_name" : "Martin Valley", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mary Hill", "place_name" : "Mary Hill", "community" : "Port Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Marysville", "place_name" : "Marysville", "community" : "Kimberley", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Mason Creek", "place_name" : "Mason Creek", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Matilpi", "place_name" : "Matilpi", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Matsayno 5", "place_name" : "Matsayno 5", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Matsqui", "place_name" : "Matsqui", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Maurelle Island", "place_name" : "Maurelle Island", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Maxan Lake 4", "place_name" : "Maxan Lake 4", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Mayfair", "place_name" : "Mayfair", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Mayne Island", "place_name" : "Mayne Island", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Mayne Island 6", "place_name" : "Mayne Island 6", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Mayook", "place_name" : "Mayook", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "McCalls Landing", "place_name" : "McCalls Landing", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "McCulloch", "place_name" : "McCulloch", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "McDame", "place_name" : "McDame", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "McDonalds Landing", "place_name" : "McDonalds Landing", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "McGillivray", "place_name" : "McGillivray", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "McGregor", "place_name" : "McGregor", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "McGuire", "place_name" : "McGuire", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "McKearney Ranch", "place_name" : "McKearney Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "McKinley Landing", "place_name" : "McKinley Landing", "community" : "Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "McLean Ranch", "place_name" : "McLean Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "McLeese Lake", "place_name" : "McLeese Lake", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "McLeod Lake", "place_name" : "McLeod Lake", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "McLeod Lake 5", "place_name" : "McLeod Lake 5", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "McLeod Subdivision", "place_name" : "McLeod Subdivision", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "McLure", "place_name" : "McLure", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "McNab Creek", "place_name" : "McNab Creek", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Meachen", "place_name" : "Meachen", "community" : "East Kootenay E", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Meadowbrook", "place_name" : "Meadowbrook", "community" : "Port Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Meadowbrook Estates Trailer Park", "place_name" : "Meadowbrook Estates Trailer Park", "community" : "Duck Lake 7", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Meadow Creek", "place_name" : "Meadow Creek", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Meadow Creek", "place_name" : "Meadow Creek", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Meadow Lake", "place_name" : "Meadow Lake", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Meadows", "place_name" : "Meadows", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Meem Quam Leese", "place_name" : "Meem Quam Leese", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Meldrum Creek", "place_name" : "Meldrum Creek", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Merville", "place_name" : "Merville", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Mesachie Lake", "place_name" : "Mesachie Lake", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Metlakatla", "place_name" : "Metlakatla", "community" : "S1/2 Tsimpsean 2", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Metrotown", "place_name" : "Metrotown", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Meziadin Junction", "place_name" : "Meziadin Junction", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Meziadin Subdivision", "place_name" : "Meziadin Subdivision", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Mica Creek", "place_name" : "Mica Creek", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Middlegate", "place_name" : "Middlegate", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Middle River", "place_name" : "Middle River", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Mile 16 (Hwy 97)", "place_name" : "Mile 16 (Hwy 97)", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Mile 19 Overhead", "place_name" : "Mile 19 Overhead", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Mile 292 Subdivision Alaska Hwy", "place_name" : "Mile 292 Subdivision Alaska Hwy", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Mile 293 Alaska Highway", "place_name" : "Mile 293 Alaska Highway", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Mile 422 Alaska Highway", "place_name" : "Mile 422 Alaska Highway", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Mile 5 Alaska Highway", "place_name" : "Mile 5 Alaska Highway", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Mile 62 1/2", "place_name" : "Mile 62 1/2", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Mill Bay", "place_name" : "Mill Bay", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Mill Bay", "place_name" : "Mill Bay", "community" : "Cowichan Valley A", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Mill Bay", "place_name" : "Mill Bay", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Miller Creek Subdivision", "place_name" : "Miller Creek Subdivision", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Millers Landing", "place_name" : "Millers Landing", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Miller Subdivision", "place_name" : "Miller Subdivision", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Millstream", "place_name" : "Millstream", "community" : "Highlands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 3"}, {"location" : "Milner", "place_name" : "Milner", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Milnes Landing", "place_name" : "Milnes Landing", "community" : "Sooke", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Minaty Bay", "place_name" : "Minaty Bay", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Minstrel Island", "place_name" : "Minstrel Island", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Minto Landing", "place_name" : "Minto Landing", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Miocene", "place_name" : "Miocene", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Miracle Beach", "place_name" : "Miracle Beach", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Miracle Valley", "place_name" : "Miracle Valley", "community" : "Fraser Valley F", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Mirror Lake", "place_name" : "Mirror Lake", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Missezula Lake", "place_name" : "Missezula Lake", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Mission Hill", "place_name" : "Mission Hill", "community" : "Courtenay", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Mission Island 2", "place_name" : "Mission Island 2", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mitchell Bay", "place_name" : "Mitchell Bay", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Miworth", "place_name" : "Miworth", "community" : "Fraser-Fort George A", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Moberly Lake", "place_name" : "Moberly Lake", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Moha", "place_name" : "Moha", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Montague Harbour", "place_name" : "Montague Harbour", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Monte Creek", "place_name" : "Monte Creek", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Monte Lake", "place_name" : "Monte Lake", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Montizambert Wynd", "place_name" : "Montizambert Wynd", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Montney", "place_name" : "Montney", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Moose Heights", "place_name" : "Moose Heights", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Mooyah Bay", "place_name" : "Mooyah Bay", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Moresby Camp", "place_name" : "Moresby Camp", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Morgan Subdivision", "place_name" : "Morgan Subdivision", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Moricetown", "place_name" : "Moricetown", "community" : "Babine 17", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Morrissey", "place_name" : "Morrissey", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Mound Road Subdivision", "place_name" : "Mound Road Subdivision", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Mountain Peak Trailer Court", "place_name" : "Mountain Peak Trailer Court", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Mountain Shadows Trailer Court", "place_name" : "Mountain Shadows Trailer Court", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Mountain Shadow Trailer Court", "place_name" : "Mountain Shadow Trailer Court", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Mountain Station", "place_name" : "Mountain Station", "community" : "Nelson", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Mountain View", "place_name" : "Mountain View", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Mountain View Trailer Court", "place_name" : "Mountain View Trailer Court", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Mountainview Trailer Park", "place_name" : "Mountainview Trailer Park", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Mount Baldy", "place_name" : "Mount Baldy", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Mount Currie", "place_name" : "Mount Currie", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Mount Currie 1", "place_name" : "Mount Currie 1", "community" : "Mount Currie", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mount Currie 10", "place_name" : "Mount Currie 10", "community" : "Mount Currie", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mount Currie 2", "place_name" : "Mount Currie 2", "community" : "Mount Currie", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mount Currie 6", "place_name" : "Mount Currie 6", "community" : "Mount Currie", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mount Currie 8", "place_name" : "Mount Currie 8", "community" : "Mount Currie", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mount Gardner", "place_name" : "Mount Gardner", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Mount Lehman", "place_name" : "Mount Lehman", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Mount Pleasant", "place_name" : "Mount Pleasant", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Mount Robson", "place_name" : "Mount Robson", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Mount View Trailer Court", "place_name" : "Mount View Trailer Court", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Mount Waddington, Subd. A", "place_name" : "Mount Waddington, Subd. A", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mount Waddington, Subd. B", "place_name" : "Mount Waddington, Subd. B", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mount Washington", "place_name" : "Mount Washington", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Moyie", "place_name" : "Moyie", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Moyie Lake", "place_name" : "Moyie Lake", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Moyie River", "place_name" : "Moyie River", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Moyie Shore Estates", "place_name" : "Moyie Shore Estates", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Mud Bay", "place_name" : "Mud Bay", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Mud Bay", "place_name" : "Mud Bay", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Mudge Island", "place_name" : "Mudge Island", "community" : "Nanaimo B", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Mud River", "place_name" : "Mud River", "community" : "Fraser-Fort George C", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Muncho Lake", "place_name" : "Muncho Lake", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Murdale", "place_name" : "Murdale", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Murrayville", "place_name" : "Murrayville", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Musgrave Landing", "place_name" : "Musgrave Landing", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Muskwa", "place_name" : "Muskwa", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Myra", "place_name" : "Myra", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Myrtle Point", "place_name" : "Myrtle Point", "community" : "qathet B", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Nadu", "place_name" : "Nadu", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Nahmint", "place_name" : "Nahmint", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Nahun", "place_name" : "Nahun", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Nak'azdli (Necoslie 1)", "place_name" : "Nak'azdli (Necoslie 1)", "community" : "Nak'azdli", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Nalos Landing", "place_name" : "Nalos Landing", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ná:mint", "place_name" : "Ná:mint", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Namu", "place_name" : "Namu", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Nanaimo D", "place_name" : "Nanaimo D", "community" : "Nanaimo C", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo River 2", "place_name" : "Nanaimo River 2", "community" : "Nanaimo River", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nanaimo River 3", "place_name" : "Nanaimo River 3", "community" : "Nanaimo River", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nanaimo River 4", "place_name" : "Nanaimo River 4", "community" : "Nanaimo River", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nanaimo, Subd. A", "place_name" : "Nanaimo, Subd. A", "community" : "Nanaimo C", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo, Subd. B", "place_name" : "Nanaimo, Subd. B", "community" : "Nanaimo G", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanoose Bay", "place_name" : "Nanoose Bay", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Naramata", "place_name" : "Naramata", "community" : "Okanagan-Similkameen E", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Narcosli Creek", "place_name" : "Narcosli Creek", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Nasookin Road Subdivision", "place_name" : "Nasookin Road Subdivision", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Nass Camp", "place_name" : "Nass Camp", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Nazko", "place_name" : "Nazko", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Nechako", "place_name" : "Nechako", "community" : "Kitimat", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 2"}, {"location" : "Needles", "place_name" : "Needles", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Nekliptum 1", "place_name" : "Nekliptum 1", "community" : "Nekliptum 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nelson Forks", "place_name" : "Nelson Forks", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Nelson Island", "place_name" : "Nelson Island", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Nelway", "place_name" : "Nelway", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Nemaiah Valley", "place_name" : "Nemaiah Valley", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Nemiah Valley", "place_name" : "Nemiah Valley", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Nequatque 1", "place_name" : "Nequatque 1", "community" : "Nequatque", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Nequatque 2", "place_name" : "Nequatque 2", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Nequatque 3A", "place_name" : "Nequatque 3A", "community" : "Nequatque", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Neskonlith 1", "place_name" : "Neskonlith 1", "community" : "Neskonlith", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Neskonlith 1 (Neskainlith 1)", "place_name" : "Neskonlith 1 (Neskainlith 1)", "community" : "Neskonlith", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Neskonlith 2", "place_name" : "Neskonlith 2", "community" : "Neskonlith", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nesters", "place_name" : "Nesters", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "New Aiyansh", "place_name" : "New Aiyansh", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "New Aiyansh 1", "place_name" : "New Aiyansh 1", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "New Barkerville", "place_name" : "New Barkerville", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "New Brighton", "place_name" : "New Brighton", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Newcastle", "place_name" : "Newcastle", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "New Clew", "place_name" : "New Clew", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Newgate", "place_name" : "Newgate", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Newlands", "place_name" : "Newlands", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "New Remo", "place_name" : "New Remo", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "New Settlement", "place_name" : "New Settlement", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Newton", "place_name" : "Newton", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Niagara", "place_name" : "Niagara", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Nichols Mobile Homes", "place_name" : "Nichols Mobile Homes", "community" : "West Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Nicholson", "place_name" : "Nicholson", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Nicks Island", "place_name" : "Nicks Island", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Nicola", "place_name" : "Nicola", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Nimpkish", "place_name" : "Nimpkish", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Nimpkish Heights", "place_name" : "Nimpkish Heights", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Nimpo Lake", "place_name" : "Nimpo Lake", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ninety Five Mile House", "place_name" : "Ninety Five Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ninety Four Mile House", "place_name" : "Ninety Four Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ninety Seven Mile House", "place_name" : "Ninety Seven Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ninety Three Mile House", "place_name" : "Ninety Three Mile House", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ninstints", "place_name" : "Ninstints", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Nootka", "place_name" : "Nootka", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Noralee", "place_name" : "Noralee", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Norgate", "place_name" : "Norgate", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "North Bend", "place_name" : "North Bend", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "North Bonaparte", "place_name" : "North Bonaparte", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "North Bulkley", "place_name" : "North Bulkley", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "North Campbell River", "place_name" : "North Campbell River", "community" : "Campbell River", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "North Delta", "place_name" : "North Delta", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Northern Rockies A", "place_name" : "Northern Rockies A", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Northern Rockies B", "place_name" : "Northern Rockies B", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Northern Rockies Regional Municipality", "place_name" : "Northern Rockies Regional Municipality", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Northfield", "place_name" : "Northfield", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "North Galiano", "place_name" : "North Galiano", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "North Kamloops", "place_name" : "North Kamloops", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "North Lonsdale", "place_name" : "North Lonsdale", "community" : "North Vancouver - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "North Nechako", "place_name" : "North Nechako", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "North Okanagan, Subd. A", "place_name" : "North Okanagan, Subd. A", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "North Okanagan, Subd. B", "place_name" : "North Okanagan, Subd. B", "community" : "North Okanagan E", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "North Pender Island", "place_name" : "North Pender Island", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "North Pine", "place_name" : "North Pine", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "North Poplar", "place_name" : "North Poplar", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Northridge", "place_name" : "Northridge", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "North Star", "place_name" : "North Star", "community" : "Kimberley", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "North Tacla Lake 7", "place_name" : "North Tacla Lake 7", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "North Tacla Lake 7A", "place_name" : "North Tacla Lake 7A", "community" : "North Tacla Lake", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "North Vancouver", "place_name" : "North Vancouver", "community" : "North Vancouver - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "North Vancouver", "place_name" : "North Vancouver", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "North Woodlands", "place_name" : "North Woodlands", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Notch Hill", "place_name" : "Notch Hill", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Nourse Subdivision", "place_name" : "Nourse Subdivision", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Nuchaquis", "place_name" : "Nuchaquis", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Nuchatl 1", "place_name" : "Nuchatl 1", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Nuchatl 2", "place_name" : "Nuchatl 2", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Nuchatlitz", "place_name" : "Nuchatlitz", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Nukko Lake", "place_name" : "Nukko Lake", "community" : "Fraser-Fort George A", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Nulki", "place_name" : "Nulki", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Nursery", "place_name" : "Nursery", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Nuumaqimyis", "place_name" : "Nuumaqimyis", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Oak Hills", "place_name" : "Oak Hills", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Oakridge", "place_name" : "Oakridge", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Oasis", "place_name" : "Oasis", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Oasis Trailer Court", "place_name" : "Oasis Trailer Court", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ocean Falls", "place_name" : "Ocean Falls", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Ocean Grove", "place_name" : "Ocean Grove", "community" : "Strathcona D (Oyster Bay - Buttle Lake)", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Ocean Park", "place_name" : "Ocean Park", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Oetco Flats", "place_name" : "Oetco Flats", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Ogden", "place_name" : "Ogden", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Okanagan Centre", "place_name" : "Okanagan Centre", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Okanagan Falls", "place_name" : "Okanagan Falls", "community" : "Okanagan-Similkameen D", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan Landing", "place_name" : "Okanagan Landing", "community" : "Vernon", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Okanagan Mission", "place_name" : "Okanagan Mission", "community" : "Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Okanagan-Similkameen, Subd. A", "place_name" : "Okanagan-Similkameen, Subd. A", "community" : "Okanagan-Similkameen F", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Okanagan-Similkameen, Subd. B", "place_name" : "Okanagan-Similkameen, Subd. B", "community" : "Okanagan-Similkameen G", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen, Subd. C", "place_name" : "Okanagan-Similkameen, Subd. C", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan Terrace Trailer Park", "place_name" : "Okanagan Terrace Trailer Park", "community" : "Vernon", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Olalla", "place_name" : "Olalla", "community" : "Okanagan-Similkameen G", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Old Bella Bella", "place_name" : "Old Bella Bella", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Old Fort", "place_name" : "Old Fort", "community" : "Nedoats 11", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Old Fort", "place_name" : "Old Fort", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Old Fort Nelson", "place_name" : "Old Fort Nelson", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Old Hogem", "place_name" : "Old Hogem", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Old Massett", "place_name" : "Old Massett", "community" : "Masset 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Old Remo", "place_name" : "Old Remo", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Old Town", "place_name" : "Old Town", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Oliver's Landing", "place_name" : "Oliver's Landing", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "One Forty One Mile House", "place_name" : "One Forty One Mile House", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Oona River", "place_name" : "Oona River", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Ootischenia", "place_name" : "Ootischenia", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ootischenia Flats", "place_name" : "Ootischenia Flats", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ootsa Lake", "place_name" : "Ootsa Lake", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Openit 27", "place_name" : "Openit 27", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Opitsat", "place_name" : "Opitsat", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Orlomah Beach", "place_name" : "Orlomah Beach", "community" : "Anmore", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Osborn", "place_name" : "Osborn", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Osland", "place_name" : "Osland", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Osprey Lake", "place_name" : "Osprey Lake", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Othello", "place_name" : "Othello", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Ots'oo-a", "place_name" : "Ots'oo-a", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Otter Bay", "place_name" : "Otter Bay", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Otway", "place_name" : "Otway", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Ououkinsh", "place_name" : "Ououkinsh", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Oweekeno", "place_name" : "Oweekeno", "community" : "Katit 1", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Owen Bay", "place_name" : "Owen Bay", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Owl Creek", "place_name" : "Owl Creek", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Oxford Heights", "place_name" : "Oxford Heights", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Oyama", "place_name" : "Oyama", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Oyster River", "place_name" : "Oyster River", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Pacheena 1", "place_name" : "Pacheena 1", "community" : "Juan de Fuca (Part 2)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Pahas 3", "place_name" : "Pahas 3", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Paldi", "place_name" : "Paldi", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Palling", "place_name" : "Palling", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Palling 1A", "place_name" : "Palling 1A", "community" : "Palling 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Panorama", "place_name" : "Panorama", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Panorama Ridge", "place_name" : "Panorama Ridge", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Panorama Subdivision", "place_name" : "Panorama Subdivision", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Panorama Trailer Court", "place_name" : "Panorama Trailer Court", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Papyum 27A", "place_name" : "Papyum 27A", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Paradise Point", "place_name" : "Paradise Point", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Paradise Valley", "place_name" : "Paradise Valley", "community" : "qathet B", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Paradise Valley", "place_name" : "Paradise Valley", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Paradise Valley Trailer Court", "place_name" : "Paradise Valley Trailer Court", "community" : "qathet B", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Parkdale Gardens", "place_name" : "Parkdale Gardens", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Parkland", "place_name" : "Parkland", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Park Royal", "place_name" : "Park Royal", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Park Siding", "place_name" : "Park Siding", "community" : "Kootenay Boundary A", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Parkville Trailer Park", "place_name" : "Parkville Trailer Park", "community" : "Parksville", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Parsnip 5", "place_name" : "Parsnip 5", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Parson", "place_name" : "Parson", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Pasley Island", "place_name" : "Pasley Island", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Pass Creek", "place_name" : "Pass Creek", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Passmore", "place_name" : "Passmore", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Paterson", "place_name" : "Paterson", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Paul Lake", "place_name" : "Paul Lake", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Paulson", "place_name" : "Paulson", "community" : "Kootenay Boundary C / Christina Lake", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Pavilion", "place_name" : "Pavilion", "community" : "Pavilion 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Pavillon Lake", "place_name" : "Pavillon Lake", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Paxton Valley", "place_name" : "Paxton Valley", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Peace River, Subd. B", "place_name" : "Peace River, Subd. B", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Peace River, Subd. C", "place_name" : "Peace River, Subd. C", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Pebble Beach", "place_name" : "Pebble Beach", "community" : "qathet B", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Peejay", "place_name" : "Peejay", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Pemberton Heights", "place_name" : "Pemberton Heights", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Pemberton Meadows", "place_name" : "Pemberton Meadows", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Pender Island", "place_name" : "Pender Island", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Pendleton Bay", "place_name" : "Pendleton Bay", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Penny", "place_name" : "Penny", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Perow", "place_name" : "Perow", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Perrys", "place_name" : "Perrys", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Phillips Arm", "place_name" : "Phillips Arm", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Phoenix", "place_name" : "Phoenix", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Piers Island", "place_name" : "Piers Island", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Pilot Bay", "place_name" : "Pilot Bay", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Pinantan Lake", "place_name" : "Pinantan Lake", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Pinchi", "place_name" : "Pinchi", "community" : "Binche 2", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Pinchi Lake", "place_name" : "Pinchi Lake", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Pinecrest Mobile Home Park", "place_name" : "Pinecrest Mobile Home Park", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Pinegrove", "place_name" : "Pinegrove", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Pinegrove Trailer Park", "place_name" : "Pinegrove Trailer Park", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Pine Hills Mobile Home Park", "place_name" : "Pine Hills Mobile Home Park", "community" : "Peachland", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Pineridge Estates", "place_name" : "Pineridge Estates", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Pine Springs", "place_name" : "Pine Springs", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Pine Trailer Court", "place_name" : "Pine Trailer Court", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Pine Valley", "place_name" : "Pine Valley", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Pine Valley", "place_name" : "Pine Valley", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Pineview", "place_name" : "Pineview", "community" : "Fraser-Fort George D", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Pineview", "place_name" : "Pineview", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Pinewood Subdivision", "place_name" : "Pinewood Subdivision", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Pink Mountain", "place_name" : "Pink Mountain", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Pioneer Mine", "place_name" : "Pioneer Mine", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Pioneer Subdivision", "place_name" : "Pioneer Subdivision", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Pixie Beach", "place_name" : "Pixie Beach", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Playmor Junction", "place_name" : "Playmor Junction", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Pleasant Camp", "place_name" : "Pleasant Camp", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Pleasantside", "place_name" : "Pleasantside", "community" : "Port Moody", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Plumper Harbour", "place_name" : "Plumper Harbour", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Point Holmes", "place_name" : "Point Holmes", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Ponderosa Trailer Park", "place_name" : "Ponderosa Trailer Park", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Pope Landing", "place_name" : "Pope Landing", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Popkum", "place_name" : "Popkum", "community" : "Fraser Valley D", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Poplar Creek", "place_name" : "Poplar Creek", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Poplar Grove", "place_name" : "Poplar Grove", "community" : "Penticton", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Porcher Island", "place_name" : "Porcher Island", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Porpoise Bay", "place_name" : "Porpoise Bay", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Port Albion", "place_name" : "Port Albion", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Port Desire", "place_name" : "Port Desire", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Port Douglas", "place_name" : "Port Douglas", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Porteau", "place_name" : "Porteau", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Porter Landing", "place_name" : "Porter Landing", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Port Essington", "place_name" : "Port Essington", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Port Guichon", "place_name" : "Port Guichon", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Port Hammond", "place_name" : "Port Hammond", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Port Hammond - Haney", "place_name" : "Port Hammond - Haney", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Port Kells", "place_name" : "Port Kells", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Port Mann", "place_name" : "Port Mann", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Port Mellon", "place_name" : "Port Mellon", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Port Neville", "place_name" : "Port Neville", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Porto Rico", "place_name" : "Porto Rico", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Port Renfrew", "place_name" : "Port Renfrew", "community" : "Juan de Fuca (Part 2)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Port Simpson 1", "place_name" : "Port Simpson 1", "community" : "Lax Kw'alaams 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Port Washington", "place_name" : "Port Washington", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Powell River A", "place_name" : "Powell River A", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Powell River B", "place_name" : "Powell River B", "community" : "qathet B", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Powell River C", "place_name" : "Powell River C", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Powell River D", "place_name" : "Powell River D", "community" : "qathet D", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Powell River E", "place_name" : "Powell River E", "community" : "qathet E", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Powell River, Subd. A", "place_name" : "Powell River, Subd. A", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Powers Addition", "place_name" : "Powers Addition", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Prairiedale", "place_name" : "Prairiedale", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Prairie Valley", "place_name" : "Prairie Valley", "community" : "Summerland", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Premier", "place_name" : "Premier", "community" : "Stewart", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Premier Lake", "place_name" : "Premier Lake", "community" : "East Kootenay E", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Prespatou", "place_name" : "Prespatou", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Pressy Lake", "place_name" : "Pressy Lake", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Pritchard", "place_name" : "Pritchard", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Pritchard Mobile Subdivision", "place_name" : "Pritchard Mobile Subdivision", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Procter", "place_name" : "Procter", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Progress", "place_name" : "Progress", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Promontory", "place_name" : "Promontory", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Prophet River", "place_name" : "Prophet River", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Prophet River", "place_name" : "Prophet River", "community" : "Prophet River 4", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Prophet River 4", "place_name" : "Prophet River 4", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Prospect Lake", "place_name" : "Prospect Lake", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Punchaw", "place_name" : "Punchaw", "community" : "Fraser-Fort George C", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Puntledge", "place_name" : "Puntledge", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Purden Lake", "place_name" : "Purden Lake", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Quadra Loop", "place_name" : "Quadra Loop", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Qualicum Bay", "place_name" : "Qualicum Bay", "community" : "Nanaimo H", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Quamichan", "place_name" : "Quamichan", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Quathiaski Cove", "place_name" : "Quathiaski Cove", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Quatsino", "place_name" : "Quatsino", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Quattishe 1", "place_name" : "Quattishe 1", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Queens Bay", "place_name" : "Queens Bay", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Queensborough", "place_name" : "Queensborough", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Queens Cove", "place_name" : "Queens Cove", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Queens Park", "place_name" : "Queens Park", "community" : "New Westminster", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Quesnel Canyon", "place_name" : "Quesnel Canyon", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Quesnel Forks", "place_name" : "Quesnel Forks", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Quesnel View", "place_name" : "Quesnel View", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Quick", "place_name" : "Quick", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Quilchena", "place_name" : "Quilchena", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Quin-e-ex", "place_name" : "Quin-e-ex", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Quinsam", "place_name" : "Quinsam", "community" : "Campbell River", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Race Point", "place_name" : "Race Point", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Raft River", "place_name" : "Raft River", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Rail Lake", "place_name" : "Rail Lake", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Rainbow Trailer Court", "place_name" : "Rainbow Trailer Court", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Rainy Hollow", "place_name" : "Rainy Hollow", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Ranchero", "place_name" : "Ranchero", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ranch Park", "place_name" : "Ranch Park", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Ranch Park Trailer Park", "place_name" : "Ranch Park Trailer Park", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Raspberry", "place_name" : "Raspberry", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Rayleigh", "place_name" : "Rayleigh", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Read Island", "place_name" : "Read Island", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Red Bluff", "place_name" : "Red Bluff", "community" : "Cariboo A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Red Mountain", "place_name" : "Red Mountain", "community" : "Rossland", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Red Pass", "place_name" : "Red Pass", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Red Rock", "place_name" : "Red Rock", "community" : "Fraser-Fort George D", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Redroofs", "place_name" : "Redroofs", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Red Rose", "place_name" : "Red Rose", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Redstone", "place_name" : "Redstone", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Refuge Cove", "place_name" : "Refuge Cove", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Reid Lake", "place_name" : "Reid Lake", "community" : "Fraser-Fort George A", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Remac", "place_name" : "Remac", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Remo", "place_name" : "Remo", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Renata", "place_name" : "Renata", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Rendez-Vous Island", "place_name" : "Rendez-Vous Island", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Renfrew-Collingwood", "place_name" : "Renfrew-Collingwood", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Rennie Subdivision", "place_name" : "Rennie Subdivision", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Retallack", "place_name" : "Retallack", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Rhone", "place_name" : "Rhone", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Rich Bar", "place_name" : "Rich Bar", "community" : "Cariboo A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Ridgedale", "place_name" : "Ridgedale", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Riley Park", "place_name" : "Riley Park", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Riondel", "place_name" : "Riondel", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Riske Creek", "place_name" : "Riske Creek", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Riva Ridge Trailer Park", "place_name" : "Riva Ridge Trailer Park", "community" : "Penticton 1", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "River Bend Trailer Court", "place_name" : "River Bend Trailer Court", "community" : "Revelstoke", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "River Jordan", "place_name" : "River Jordan", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Rivershore", "place_name" : "Rivershore", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Riverside Trailer Court", "place_name" : "Riverside Trailer Court", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Rivers Inlet", "place_name" : "Rivers Inlet", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "River Springs", "place_name" : "River Springs", "community" : "Port Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Rivervale", "place_name" : "Rivervale", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Roberts Creek", "place_name" : "Roberts Creek", "community" : "Sunshine Coast D", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Robson", "place_name" : "Robson", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Robson West", "place_name" : "Robson West", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Roche Lake Resort", "place_name" : "Roche Lake Resort", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Rock Bay", "place_name" : "Rock Bay", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Rock Creek", "place_name" : "Rock Creek", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Rockyview", "place_name" : "Rockyview", "community" : "Cranbrook", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Roe Lake", "place_name" : "Roe Lake", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Rogers Pass", "place_name" : "Rogers Pass", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Rolla", "place_name" : "Rolla", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Rolling Hills Park", "place_name" : "Rolling Hills Park", "community" : "Vernon", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Roosville", "place_name" : "Roosville", "community" : "Tobacco Plains 2", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Rosebery", "place_name" : "Rosebery", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Rosedale", "place_name" : "Rosedale", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Rose Harbour", "place_name" : "Rose Harbour", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Rose Lake", "place_name" : "Rose Lake", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Rosen Lake Trailer Court", "place_name" : "Rosen Lake Trailer Court", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Rose Prairie", "place_name" : "Rose Prairie", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Ross Spur", "place_name" : "Ross Spur", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Rosswood", "place_name" : "Rosswood", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Rough Bay", "place_name" : "Rough Bay", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Round Lake", "place_name" : "Round Lake", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Round Prairie", "place_name" : "Round Prairie", "community" : "Elkford", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Roy", "place_name" : "Roy", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Royal Oak", "place_name" : "Royal Oak", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Royston", "place_name" : "Royston", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Ruault Road Subdivision", "place_name" : "Ruault Road Subdivision", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ruby Creek", "place_name" : "Ruby Creek", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Rumble Beach", "place_name" : "Rumble Beach", "community" : "Port Alice", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Rupert", "place_name" : "Rupert", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Ruskin", "place_name" : "Ruskin", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Rutland", "place_name" : "Rutland", "community" : "Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Ryder Lake", "place_name" : "Ryder Lake", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Rykerts", "place_name" : "Rykerts", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ryter's Trailer Court", "place_name" : "Ryter's Trailer Court", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Saaiyouck 6", "place_name" : "Saaiyouck 6", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Saanichton", "place_name" : "Saanichton", "community" : "Central Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Sachawil", "place_name" : "Sachawil", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Sachsa", "place_name" : "Sachsa", "community" : "Sachsa 4", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Sachteen 2", "place_name" : "Sachteen 2", "community" : "Sachteen", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Sachteen 2A", "place_name" : "Sachteen 2A", "community" : "Sachteen", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Sahali", "place_name" : "Sahali", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Sahara Heights", "place_name" : "Sahara Heights", "community" : "Port Alberni", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Sahtlam", "place_name" : "Sahtlam", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Salmon Beach", "place_name" : "Salmon Beach", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Salmon Valley", "place_name" : "Salmon Valley", "community" : "Fraser-Fort George A", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Saloon", "place_name" : "Saloon", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Saltair", "place_name" : "Saltair", "community" : "Cowichan Valley G", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Saltery Bay", "place_name" : "Saltery Bay", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Samahquam 1", "place_name" : "Samahquam 1", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Sanca", "place_name" : "Sanca", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Sanderson Site", "place_name" : "Sanderson Site", "community" : "Quesnel", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Sandon", "place_name" : "Sandon", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Sandspit", "place_name" : "Sandspit", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Sandwick", "place_name" : "Sandwick", "community" : "Courtenay", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Sandy Beach Resort", "place_name" : "Sandy Beach Resort", "community" : "Priest's Valley 6", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Sandy Cove", "place_name" : "Sandy Cove", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sandy Point", "place_name" : "Sandy Point", "community" : "Switsemalph", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Sandyville", "place_name" : "Sandyville", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "San Josef", "place_name" : "San Josef", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Sapperton", "place_name" : "Sapperton", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Saratoga Beach", "place_name" : "Saratoga Beach", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Sardis", "place_name" : "Sardis", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Sarita", "place_name" : "Sarita", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Saseenos", "place_name" : "Saseenos", "community" : "Sooke", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Saturna", "place_name" : "Saturna", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Saturna Island", "place_name" : "Saturna Island", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Savarie Subdivision", "place_name" : "Savarie Subdivision", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Savona", "place_name" : "Savona", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Schaltuuch 27", "place_name" : "Schaltuuch 27", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Schemenauer Subdivision", "place_name" : "Schemenauer Subdivision", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Scotch Creek", "place_name" : "Scotch Creek", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Scotia Bay", "place_name" : "Scotia Bay", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Scott Cove", "place_name" : "Scott Cove", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Scotties Trailer Park", "place_name" : "Scotties Trailer Park", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Scotty Creek", "place_name" : "Scotty Creek", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Seabird Mobile Home Park", "place_name" : "Seabird Mobile Home Park", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Seafair", "place_name" : "Seafair", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Seaford", "place_name" : "Seaford", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Seal Bay Subdivision", "place_name" : "Seal Bay Subdivision", "community" : "Courtenay", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Seaside Park", "place_name" : "Seaside Park", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Secret Cove", "place_name" : "Secret Cove", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Selma Park", "place_name" : "Selma Park", "community" : "Sechelt", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Sentinel Hill", "place_name" : "Sentinel Hill", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Seton Lake 5A", "place_name" : "Seton Lake 5A", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Seton Portage", "place_name" : "Seton Portage", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Seven Mile Corner", "place_name" : "Seven Mile Corner", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Sevenoaks", "place_name" : "Sevenoaks", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Seventy Mile House", "place_name" : "Seventy Mile House", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Sewall", "place_name" : "Sewall", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Sewell Inlet", "place_name" : "Sewell Inlet", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Seymour Arm", "place_name" : "Seymour Arm", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Seymour Heights", "place_name" : "Seymour Heights", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Seymour Inlet", "place_name" : "Seymour Inlet", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Seymour Lake", "place_name" : "Seymour Lake", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Seymour Landing", "place_name" : "Seymour Landing", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Seymour Meadows 19", "place_name" : "Seymour Meadows 19", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Shady Valley", "place_name" : "Shady Valley", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Shaha Estates", "place_name" : "Shaha Estates", "community" : "Okanagan-Similkameen D", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Shalalth", "place_name" : "Shalalth", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Shannon Bay", "place_name" : "Shannon Bay", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Shannon Trailer Park", "place_name" : "Shannon Trailer Park", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Sharpe Lake", "place_name" : "Sharpe Lake", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Shaughnessy", "place_name" : "Shaughnessy", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sha:wiis", "place_name" : "Sha:wiis", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Shawl Bay", "place_name" : "Shawl Bay", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Shawnaire Resort", "place_name" : "Shawnaire Resort", "community" : "Cowichan Valley B", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Shawnigan", "place_name" : "Shawnigan", "community" : "Cowichan Valley B", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Shawnigan Lake", "place_name" : "Shawnigan Lake", "community" : "Cowichan Valley B", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Shawnigan Lake Mobile Home Park", "place_name" : "Shawnigan Lake Mobile Home Park", "community" : "Cowichan Valley B", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Shearer Dale", "place_name" : "Shearer Dale", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Shearwater", "place_name" : "Shearwater", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Shell Beach", "place_name" : "Shell Beach", "community" : "Cowichan Valley H", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Shelley", "place_name" : "Shelley", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Shelter Bay", "place_name" : "Shelter Bay", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Shelter Point", "place_name" : "Shelter Point", "community" : "Strathcona D (Oyster Bay - Buttle Lake)", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Shepherds Inn", "place_name" : "Shepherds Inn", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Sheraton", "place_name" : "Sheraton", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Shere", "place_name" : "Shere", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Sheridan Lake", "place_name" : "Sheridan Lake", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Sheslay", "place_name" : "Sheslay", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Shingle Creek", "place_name" : "Shingle Creek", "community" : "Okanagan-Similkameen F", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Shirley", "place_name" : "Shirley", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Shitlthmaq-is", "place_name" : "Shitlthmaq-is", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Sho-ook 5", "place_name" : "Sho-ook 5", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Shoreacres", "place_name" : "Shoreacres", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Shoreholme", "place_name" : "Shoreholme", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Shorewood San Parreil", "place_name" : "Shorewood San Parreil", "community" : "Parksville", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Shulus", "place_name" : "Shulus", "community" : "Nicola Mameet 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Shushartie", "place_name" : "Shushartie", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Shuswap", "place_name" : "Shuswap", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Shuswap Falls", "place_name" : "Shuswap Falls", "community" : "North Okanagan D", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Shuswap Lake Estates", "place_name" : "Shuswap Lake Estates", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Shutty Bench", "place_name" : "Shutty Bench", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Sidley", "place_name" : "Sidley", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Sikanni Chief", "place_name" : "Sikanni Chief", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Silica", "place_name" : "Silica", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Silver Creek", "place_name" : "Silver Creek", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Silver Creek", "place_name" : "Silver Creek", "community" : "Hope", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Silverhill", "place_name" : "Silverhill", "community" : "Mission", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Silver River", "place_name" : "Silver River", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Silver Star", "place_name" : "Silver Star", "community" : "North Okanagan C", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Silver Star Trailer Park", "place_name" : "Silver Star Trailer Park", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Silver Valley", "place_name" : "Silver Valley", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Simpson Ranch", "place_name" : "Simpson Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Sinclair Mills", "place_name" : "Sinclair Mills", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Sinkut River", "place_name" : "Sinkut River", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Sirdar", "place_name" : "Sirdar", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Siska Flat 3", "place_name" : "Siska Flat 3", "community" : "Siska Flat", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Siska Flat 5A", "place_name" : "Siska Flat 5A", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Siska Flat 5B", "place_name" : "Siska Flat 5B", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Siska Flat 8", "place_name" : "Siska Flat 8", "community" : "Siska Flat", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Six Mile Point", "place_name" : "Six Mile Point", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Six Mile Ranch", "place_name" : "Six Mile Ranch", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Skedans", "place_name" : "Skedans", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Skeena Crossing", "place_name" : "Skeena Crossing", "community" : "Gitsegukla 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Skeena-Queen Charlotte A", "place_name" : "Skeena-Queen Charlotte A", "community" : "North Coast A", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Skeena-Queen Charlotte C", "place_name" : "Skeena-Queen Charlotte C", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Skeena-Queen Charlotte D", "place_name" : "Skeena-Queen Charlotte D", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Skeena-Queen Charlotte E", "place_name" : "Skeena-Queen Charlotte E", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Skeena-Queen Charlotte F", "place_name" : "Skeena-Queen Charlotte F", "community" : "Daajing Giids", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Skeena-Queen Charlotte, Subd. A", "place_name" : "Skeena-Queen Charlotte, Subd. A", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Skeena-Queen Charlotte, Subd. B", "place_name" : "Skeena-Queen Charlotte, Subd. B", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Skidegate", "place_name" : "Skidegate", "community" : "Skidegate 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Skidegate Landing", "place_name" : "Skidegate Landing", "community" : "Daajing Giids", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Skooks Landing", "place_name" : "Skooks Landing", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Skookumchuck", "place_name" : "Skookumchuck", "community" : "East Kootenay E", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Skookumchuck", "place_name" : "Skookumchuck", "community" : "Skookumchuck 4", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skowkale 10", "place_name" : "Skowkale 10", "community" : "Skowkale", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skowkale 11", "place_name" : "Skowkale 11", "community" : "Skowkale", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skwahla 2", "place_name" : "Skwahla 2", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Slaterville", "place_name" : "Slaterville", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Sleepy Hollow Road Trailer Park", "place_name" : "Sleepy Hollow Road Trailer Park", "community" : "Fraser Valley H", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Slesse Park", "place_name" : "Slesse Park", "community" : "Fraser Valley E", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Sliammon", "place_name" : "Sliammon", "community" : "Sliammon 1", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Slocan Park", "place_name" : "Slocan Park", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Slosh 1A", "place_name" : "Slosh 1A", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Smithers", "place_name" : "Smithers", "community" : "Telkwa", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Smithers Landing", "place_name" : "Smithers Landing", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Smith River", "place_name" : "Smith River", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Snake 5", "place_name" : "Snake 5", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Snake River", "place_name" : "Snake River", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Snow Peak Trailer Court", "place_name" : "Snow Peak Trailer Court", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Snug Cove", "place_name" : "Snug Cove", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Soames Point", "place_name" : "Soames Point", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Soda Creek", "place_name" : "Soda Creek", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Sointula", "place_name" : "Sointula", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Solly", "place_name" : "Solly", "community" : "Alberni-Clayoquot E", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Solsqua", "place_name" : "Solsqua", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Somenos", "place_name" : "Somenos", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Sonora Island", "place_name" : "Sonora Island", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Sorrento", "place_name" : "Sorrento", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Southarm", "place_name" : "Southarm", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Southbank", "place_name" : "Southbank", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "South Bentinck", "place_name" : "South Bentinck", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "South Cambie", "place_name" : "South Cambie", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "South Canoe", "place_name" : "South Canoe", "community" : "Salmon Arm", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "South Dawson", "place_name" : "South Dawson", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "South Fort George", "place_name" : "South Fort George", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "South Hazelton", "place_name" : "South Hazelton", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "South Lakeside", "place_name" : "South Lakeside", "community" : "Williams Lake", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 3"}, {"location" : "South Lakeside (Williams Lake)", "place_name" : "South Lakeside (Williams Lake)", "community" : "Williams Lake", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 3"}, {"location" : "South Pender Island", "place_name" : "South Pender Island", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "South Poplar", "place_name" : "South Poplar", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "South Shalalth", "place_name" : "South Shalalth", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "South Slocan", "place_name" : "South Slocan", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "South Slope", "place_name" : "South Slope", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "South Sumas", "place_name" : "South Sumas", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "South Surrey", "place_name" : "South Surrey", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "South Taylor", "place_name" : "South Taylor", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "South Thormanby Island", "place_name" : "South Thormanby Island", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "South Wellington", "place_name" : "South Wellington", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Soyandostar 2", "place_name" : "Soyandostar 2", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Spatsum", "place_name" : "Spatsum", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Spatsum 11", "place_name" : "Spatsum 11", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Spectacle Lake Mobile Home Park", "place_name" : "Spectacle Lake Mobile Home Park", "community" : "Cowichan Valley A", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Spences Bridge", "place_name" : "Spences Bridge", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Spences Bridge 4", "place_name" : "Spences Bridge 4", "community" : "Spences Bridge", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Spences Bridge 4C", "place_name" : "Spences Bridge 4C", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Spillimacheen", "place_name" : "Spillimacheen", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Springhouse", "place_name" : "Springhouse", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Sproat Lake", "place_name" : "Sproat Lake", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Sproatt", "place_name" : "Sproatt", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Sproat Trailer Park", "place_name" : "Sproat Trailer Park", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Sproule Creek", "place_name" : "Sproule Creek", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Spur Valley Subdivision", "place_name" : "Spur Valley Subdivision", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Spuzzum", "place_name" : "Spuzzum", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Squaam Bay", "place_name" : "Squaam Bay", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Squamish-Lillooet, Subd. A", "place_name" : "Squamish-Lillooet, Subd. A", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Squamish-Lillooet, Subd. B", "place_name" : "Squamish-Lillooet, Subd. B", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Squaw-hay-one 11", "place_name" : "Squaw-hay-one 11", "community" : "Squaw-Hay-One 11", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Squeah", "place_name" : "Squeah", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Squiaala 7", "place_name" : "Squiaala 7", "community" : "Squiaala", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Squiaala 8", "place_name" : "Squiaala 8", "community" : "Squiaala", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Squilax", "place_name" : "Squilax", "community" : "Quaaout 1", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Squirrel Cove", "place_name" : "Squirrel Cove", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Staiyahanny 8", "place_name" : "Staiyahanny 8", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "St. Andrews", "place_name" : "St. Andrews", "community" : "Okanagan-Similkameen I", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Stanley", "place_name" : "Stanley", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Star Subdivision", "place_name" : "Star Subdivision", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Stave Falls", "place_name" : "Stave Falls", "community" : "Mission", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Steamboat", "place_name" : "Steamboat", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Steelhead", "place_name" : "Steelhead", "community" : "Mission", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Stellako", "place_name" : "Stellako", "community" : "Stellaquo (Stella) 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Stepping Stones Estates", "place_name" : "Stepping Stones Estates", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "St. Eugene Mission", "place_name" : "St. Eugene Mission", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Steveston", "place_name" : "Steveston", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Stewardson Inlet", "place_name" : "Stewardson Inlet", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Stikine", "place_name" : "Stikine", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Stikine, Subd. A", "place_name" : "Stikine, Subd. A", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Stillwater", "place_name" : "Stillwater", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Stillwater", "place_name" : "Stillwater", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "St. Ives", "place_name" : "St. Ives", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "St. Joseph Mission", "place_name" : "St. Joseph Mission", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "St. Mary Lake", "place_name" : "St. Mary Lake", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Stoner", "place_name" : "Stoner", "community" : "Fraser-Fort George D", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Stones Bay", "place_name" : "Stones Bay", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Stories Beach", "place_name" : "Stories Beach", "community" : "Strathcona D (Oyster Bay - Buttle Lake)", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Strachan Creek", "place_name" : "Strachan Creek", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Straiton", "place_name" : "Straiton", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Strathcona", "place_name" : "Strathcona", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Strathnaver", "place_name" : "Strathnaver", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Strawberry Hill", "place_name" : "Strawberry Hill", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Strawberry Vale", "place_name" : "Strawberry Vale", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Streatham", "place_name" : "Streatham", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Stuart Bay 6", "place_name" : "Stuart Bay 6", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Stuart Island", "place_name" : "Stuart Island", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Stuart River", "place_name" : "Stuart River", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Stuie", "place_name" : "Stuie", "community" : "Central Coast C", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Stump Lake", "place_name" : "Stump Lake", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sturdies Bay", "place_name" : "Sturdies Bay", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "St. Vincent Bay", "place_name" : "St. Vincent Bay", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Sugarcane", "place_name" : "Sugarcane", "community" : "Williams Lake 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Sullivan", "place_name" : "Sullivan", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sullivan Bay", "place_name" : "Sullivan Bay", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Sullivan Heights", "place_name" : "Sullivan Heights", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Summit Lake", "place_name" : "Summit Lake", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Summit Lake", "place_name" : "Summit Lake", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Summit Lake", "place_name" : "Summit Lake", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Sunbury", "place_name" : "Sunbury", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Suncrest", "place_name" : "Suncrest", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sundance Subdivision", "place_name" : "Sundance Subdivision", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sundance Subdivision", "place_name" : "Sundance Subdivision", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Sunningdale", "place_name" : "Sunningdale", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Sunnybrae", "place_name" : "Sunnybrae", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sunny Dale", "place_name" : "Sunny Dale", "community" : "Courtenay", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Sunnyside", "place_name" : "Sunnyside", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sunnyside", "place_name" : "Sunnyside", "community" : "Tache 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Sunnyside Trailer Court", "place_name" : "Sunnyside Trailer Court", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Sunnyview Trailer Court", "place_name" : "Sunnyview Trailer Court", "community" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sun Peaks", "place_name" : "Sun Peaks", "community" : "Sun Peaks Mountain", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sunrise Valley", "place_name" : "Sunrise Valley", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Sunset", "place_name" : "Sunset", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sunset Beach", "place_name" : "Sunset Beach", "community" : "Lantzville", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Sunset Beach", "place_name" : "Sunset Beach", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sunset Prairie", "place_name" : "Sunset Prairie", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Sunset Trailer Park", "place_name" : "Sunset Trailer Park", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Sunshine", "place_name" : "Sunshine", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sunshine Bay", "place_name" : "Sunshine Bay", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Sunshine Coast, Subd. A", "place_name" : "Sunshine Coast, Subd. A", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Sunshine Coast Trailer Court", "place_name" : "Sunshine Coast Trailer Court", "community" : "Sunshine Coast E", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Sunshine Hills", "place_name" : "Sunshine Hills", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Sunshine Valley", "place_name" : "Sunshine Valley", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sunshine Valley", "place_name" : "Sunshine Valley", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Sun Valley", "place_name" : "Sun Valley", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Suquash", "place_name" : "Suquash", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Surge Narrows", "place_name" : "Surge Narrows", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Surprise", "place_name" : "Surprise", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Surrey Centre", "place_name" : "Surrey Centre", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Swahliseah 14", "place_name" : "Swahliseah 14", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Swan Lake 3", "place_name" : "Swan Lake 3", "community" : "Swan Lake 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Swartz Bay", "place_name" : "Swartz Bay", "community" : "North Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Sweetwater", "place_name" : "Sweetwater", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Switsemalph 6", "place_name" : "Switsemalph 6", "community" : "Switsemalph", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Switsemalph 7", "place_name" : "Switsemalph 7", "community" : "Switsemalph", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Tabor Lake", "place_name" : "Tabor Lake", "community" : "Fraser-Fort George D", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Tachie", "place_name" : "Tachie", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tadanac", "place_name" : "Tadanac", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Taghum", "place_name" : "Taghum", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Taghum Hill", "place_name" : "Taghum Hill", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Tahltan", "place_name" : "Tahltan", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Tahltan 1", "place_name" : "Tahltan 1", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Takla Landing", "place_name" : "Takla Landing", "community" : "North Tacla Lake", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Taku", "place_name" : "Taku", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Takysie Lake", "place_name" : "Takysie Lake", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tallheo", "place_name" : "Tallheo", "community" : "Central Coast E", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Tall Timbers Trailer Park", "place_name" : "Tall Timbers Trailer Park", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Tamarisk", "place_name" : "Tamarisk", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Tantalus Acres", "place_name" : "Tantalus Acres", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Tanu", "place_name" : "Tanu", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Tappen", "place_name" : "Tappen", "community" : "North Bay 5", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Tarrys", "place_name" : "Tarrys", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ta:shiis", "place_name" : "Ta:shiis", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Tasu", "place_name" : "Tasu", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Ta Ta Creek", "place_name" : "Ta Ta Creek", "community" : "East Kootenay E", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Tatalrose", "place_name" : "Tatalrose", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tatelkus Lake 28", "place_name" : "Tatelkus Lake 28", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tatla Lake", "place_name" : "Tatla Lake", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tatlayoko Lake", "place_name" : "Tatlayoko Lake", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tatlow", "place_name" : "Tatlow", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tatogga", "place_name" : "Tatogga", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Tatpo-oose 10", "place_name" : "Tatpo-oose 10", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Tatton", "place_name" : "Tatton", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tchesinkut Lake", "place_name" : "Tchesinkut Lake", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Teakerne Arm", "place_name" : "Teakerne Arm", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Telachick", "place_name" : "Telachick", "community" : "Fraser-Fort George C", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Telegraph Cove", "place_name" : "Telegraph Cove", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Telegraph Creek", "place_name" : "Telegraph Creek", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Telegraph Creek 6", "place_name" : "Telegraph Creek 6", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Telegraph Creek 6A", "place_name" : "Telegraph Creek 6A", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Telkwa", "place_name" : "Telkwa", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Telkwa Trailer Park", "place_name" : "Telkwa Trailer Park", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Ten Mile Lake", "place_name" : "Ten Mile Lake", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tetachuk", "place_name" : "Tetachuk", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tête Jaune Cache", "place_name" : "Tête Jaune Cache", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Theodosia Arm", "place_name" : "Theodosia Arm", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Thetis Island", "place_name" : "Thetis Island", "community" : "Cowichan Valley G", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Thompson", "place_name" : "Thompson", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Thompson-Nicola L", "place_name" : "Thompson-Nicola L", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola M", "place_name" : "Thompson-Nicola M", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola N", "place_name" : "Thompson-Nicola N", "community" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola, Subd. A", "place_name" : "Thompson-Nicola, Subd. A", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Thompson-Nicola, Subd. B", "place_name" : "Thompson-Nicola, Subd. B", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola, Subd. C", "place_name" : "Thompson-Nicola, Subd. C", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola, Subd. D", "place_name" : "Thompson-Nicola, Subd. D", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Thompson-Nicola, Subd. E", "place_name" : "Thompson-Nicola, Subd. E", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson River Estates", "place_name" : "Thompson River Estates", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson Sound", "place_name" : "Thompson Sound", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Thornhill", "place_name" : "Thornhill", "community" : "Kitimat-Stikine E", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Three Forks", "place_name" : "Three Forks", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Thrums", "place_name" : "Thrums", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Thunder Bay", "place_name" : "Thunder Bay", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Thurlow", "place_name" : "Thurlow", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Thurston Harbour", "place_name" : "Thurston Harbour", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Thwaytes", "place_name" : "Thwaytes", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Tie Lake", "place_name" : "Tie Lake", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Tiili Landing", "place_name" : "Tiili Landing", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Tillicum", "place_name" : "Tillicum", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Timberland Trailer Park", "place_name" : "Timberland Trailer Park", "community" : "Nanaimo C", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Tintagel", "place_name" : "Tintagel", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tipella", "place_name" : "Tipella", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Tl'aaniiwa'a", "place_name" : "Tl'aaniiwa'a", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Tlakmaqis", "place_name" : "Tlakmaqis", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Tlell", "place_name" : "Tlell", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Tl'esqox", "place_name" : "Tl'esqox", "community" : "Toosey 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Tl'etinqox", "place_name" : "Tl'etinqox", "community" : "Anahim's Flat 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Tl'isnachis", "place_name" : "Tl'isnachis", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Tl'itsnit", "place_name" : "Tl'itsnit", "community" : "Numukamis 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tloohat-a", "place_name" : "Tloohat-a", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Toad River", "place_name" : "Toad River", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Tobiano", "place_name" : "Tobiano", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Toby Creek", "place_name" : "Toby Creek", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Toby's Meadow 4", "place_name" : "Toby's Meadow 4", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tomslake", "place_name" : "Tomslake", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Topley", "place_name" : "Topley", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Topley Landing", "place_name" : "Topley Landing", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Towdystan", "place_name" : "Towdystan", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tower Lake", "place_name" : "Tower Lake", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Tow Hill Road", "place_name" : "Tow Hill Road", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Traders Cove", "place_name" : "Traders Cove", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Tranquille", "place_name" : "Tranquille", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Trépanier", "place_name" : "Trépanier", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Trevor Channel", "place_name" : "Trevor Channel", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Trinity Valley", "place_name" : "Trinity Valley", "community" : "North Okanagan D", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Triple E Trailer Park", "place_name" : "Triple E Trailer Park", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Trout Creek", "place_name" : "Trout Creek", "community" : "Okanagan-Similkameen F", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Trout Lake", "place_name" : "Trout Lake", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Trutch", "place_name" : "Trutch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Tsawwassen", "place_name" : "Tsawwassen", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Tsawwassen Beach", "place_name" : "Tsawwassen Beach", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Ts'axq'oo-is", "place_name" : "Ts'axq'oo-is", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Tsay Cho 4", "place_name" : "Tsay Cho 4", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tsay Keh Dene", "place_name" : "Tsay Keh Dene", "community" : "Finlay River 6", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Tsideldel", "place_name" : "Tsideldel", "community" : "Redstone Flat 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Ts'iispoo-a", "place_name" : "Ts'iispoo-a", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Tsimpsean 2 North Part", "place_name" : "Tsimpsean 2 North Part", "community" : "Lax Kw'alaams 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Tsinstikeptum 9", "place_name" : "Tsinstikeptum 9", "community" : "Tsinstikeptum 9", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Tsolum", "place_name" : "Tsolum", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Tsolum River", "place_name" : "Tsolum River", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "T'Sou-ke 1 (Sooke 1)", "place_name" : "T'Sou-ke 1 (Sooke 1)", "community" : "T'Sou-ke", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "T'Sou-ke 2 (Sooke 2)", "place_name" : "T'Sou-ke 2 (Sooke 2)", "community" : "T'Sou-ke", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tsunnia Lake 5", "place_name" : "Tsunnia Lake 5", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tulameen", "place_name" : "Tulameen", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Tulsequah", "place_name" : "Tulsequah", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tupper", "place_name" : "Tupper", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Turner Subdivision", "place_name" : "Turner Subdivision", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Turtle Valley", "place_name" : "Turtle Valley", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Tuwanek", "place_name" : "Tuwanek", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Twidwell Bend", "place_name" : "Twidwell Bend", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Twin Bays", "place_name" : "Twin Bays", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Twin Creeks", "place_name" : "Twin Creeks", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Twin Firs Trailer Park", "place_name" : "Twin Firs Trailer Park", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Twin Islands", "place_name" : "Twin Islands", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Twin Lakes", "place_name" : "Twin Lakes", "community" : "Okanagan-Similkameen I", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Twin Sevens Trailer Park", "place_name" : "Twin Sevens Trailer Park", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Two Mile", "place_name" : "Two Mile", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Two Mile Hazelton", "place_name" : "Two Mile Hazelton", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Two Rivers", "place_name" : "Two Rivers", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Tyax Lake", "place_name" : "Tyax Lake", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Tyhee Trailer Park", "place_name" : "Tyhee Trailer Park", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Tynehead", "place_name" : "Tynehead", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Tzetzi Lake 11", "place_name" : "Tzetzi Lake 11", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Tzouhalem", "place_name" : "Tzouhalem", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Ulkatcho", "place_name" : "Ulkatcho", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Union Bay", "place_name" : "Union Bay", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "University Endowment Area", "place_name" : "University Endowment Area", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "University Hill", "place_name" : "University Hill", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Upland Trailer Court", "place_name" : "Upland Trailer Court", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Upper Bench", "place_name" : "Upper Bench", "community" : "Okanagan-Similkameen G", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Upper China Creek", "place_name" : "Upper China Creek", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Upper Cutbank", "place_name" : "Upper Cutbank", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Upper Fraser", "place_name" : "Upper Fraser", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Upper Halfway", "place_name" : "Upper Halfway", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Upper Hat Creek", "place_name" : "Upper Hat Creek", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Upper Lynn", "place_name" : "Upper Lynn", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Upper Squamish Valley", "place_name" : "Upper Squamish Valley", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Upsowis", "place_name" : "Upsowis", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Usk", "place_name" : "Usk", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Uuts", "place_name" : "Uuts", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Valhalla", "place_name" : "Valhalla", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Valhalla Subdivision", "place_name" : "Valhalla Subdivision", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Valleycliffe", "place_name" : "Valleycliffe", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Valley Mobile Home", "place_name" : "Valley Mobile Home", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Valley Road Subdivision", "place_name" : "Valley Road Subdivision", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Valley View", "place_name" : "Valley View", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Valleyview", "place_name" : "Valleyview", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Vallican", "place_name" : "Vallican", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Van Anda", "place_name" : "Van Anda", "community" : "qathet D", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Vanway", "place_name" : "Vanway", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Vaseaux Lake", "place_name" : "Vaseaux Lake", "community" : "Okanagan-Similkameen D", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Vaucroft Beach", "place_name" : "Vaucroft Beach", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Vavenby", "place_name" : "Vavenby", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Vedder Crossing", "place_name" : "Vedder Crossing", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Vermilion Crossing", "place_name" : "Vermilion Crossing", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Vesuvius", "place_name" : "Vesuvius", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Victoria-Fraserview", "place_name" : "Victoria-Fraserview", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Victoria Lake", "place_name" : "Victoria Lake", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Vidette", "place_name" : "Vidette", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Village Bay", "place_name" : "Village Bay", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Village of Queen Charlotte", "place_name" : "Village of Queen Charlotte", "community" : "Daajing Giids", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Vinsulla", "place_name" : "Vinsulla", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "W'aayi", "place_name" : "W'aayi", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Wabi Estates", "place_name" : "Wabi Estates", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Wabi Hill Trailer Court", "place_name" : "Wabi Hill Trailer Court", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Wadhams", "place_name" : "Wadhams", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Wagner Ranch", "place_name" : "Wagner Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Walcott", "place_name" : "Walcott", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Walhachin", "place_name" : "Walhachin", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Walkers", "place_name" : "Walkers", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Wall Beach", "place_name" : "Wall Beach", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Walnut Grove", "place_name" : "Walnut Grove", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Waneta", "place_name" : "Waneta", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Waneta Junction", "place_name" : "Waneta Junction", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Wardner", "place_name" : "Wardner", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Warner Bay", "place_name" : "Warner Bay", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Wasa", "place_name" : "Wasa", "community" : "East Kootenay E", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Water's Subdivision", "place_name" : "Water's Subdivision", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Webber Site", "place_name" : "Webber Site", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Websters Corners", "place_name" : "Websters Corners", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Weeping Willow Trailer Court", "place_name" : "Weeping Willow Trailer Court", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Weewanie", "place_name" : "Weewanie", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Welcome Beach", "place_name" : "Welcome Beach", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Weldwood", "place_name" : "Weldwood", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Wellington", "place_name" : "Wellington", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Weneez", "place_name" : "Weneez", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Westbank", "place_name" : "Westbank", "community" : "Tsinstikeptum 9", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Westbank", "place_name" : "Westbank", "community" : "West Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "West Bay", "place_name" : "West Bay", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "West Bench", "place_name" : "West Bench", "community" : "Penticton 1", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Westbridge", "place_name" : "Westbridge", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Westcoast Energy", "place_name" : "Westcoast Energy", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "West Creston", "place_name" : "West Creston", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "West End", "place_name" : "West End", "community" : "New Westminster", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "West End", "place_name" : "West End", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "West End Trailer Park", "place_name" : "West End Trailer Park", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "West Heights", "place_name" : "West Heights", "community" : "Mission", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Westholme", "place_name" : "Westholme", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "West Landing", "place_name" : "West Landing", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "West Lynn", "place_name" : "West Lynn", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "West Mara Lake", "place_name" : "West Mara Lake", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "West Midway", "place_name" : "West Midway", "community" : "Midway", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Westmount", "place_name" : "Westmount", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Westmount Acres Trailer Court", "place_name" : "Westmount Acres Trailer Court", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "West Point Grey", "place_name" : "West Point Grey", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Westridge", "place_name" : "Westridge", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "West Road Subdivision", "place_name" : "West Road Subdivision", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "West Sechelt", "place_name" : "West Sechelt", "community" : "Sechelt", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Westside", "place_name" : "Westside", "community" : "Tsinstikeptum 10", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Westsyde", "place_name" : "Westsyde", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "West Thurlow", "place_name" : "West Thurlow", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "West Trail", "place_name" : "West Trail", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Westview", "place_name" : "Westview", "community" : "Powell River", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Westwold", "place_name" : "Westwold", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Wet'suwet'en Village", "place_name" : "Wet'suwet'en Village", "community" : "Palling 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Weyerhaeuser Subdivision", "place_name" : "Weyerhaeuser Subdivision", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Whaletown", "place_name" : "Whaletown", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Whalley", "place_name" : "Whalley", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Wheel Estates-Saratoga Beach", "place_name" : "Wheel Estates-Saratoga Beach", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Whiplash Ranch", "place_name" : "Whiplash Ranch", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Whisky Creek", "place_name" : "Whisky Creek", "community" : "Nanaimo F", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Whispering Pines Trailer Park", "place_name" : "Whispering Pines Trailer Park", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Whispering Winds Trailer Court", "place_name" : "Whispering Winds Trailer Court", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Whistler Creek", "place_name" : "Whistler Creek", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Whitecroft", "place_name" : "Whitecroft", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "White Lake", "place_name" : "White Lake", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Whiterock Passage", "place_name" : "Whiterock Passage", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "White Spruce Trailer Court", "place_name" : "White Spruce Trailer Court", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Whonnock", "place_name" : "Whonnock", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Whyac", "place_name" : "Whyac", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Whytecliff", "place_name" : "Whytecliff", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Wigwam Inn", "place_name" : "Wigwam Inn", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Wihat'a", "place_name" : "Wihat'a", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Wii Lax K'ap", "place_name" : "Wii Lax K'ap", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Wildwood", "place_name" : "Wildwood", "community" : "Powell River", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Wildwood Subdivision", "place_name" : "Wildwood Subdivision", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Wildwood Trailer Park", "place_name" : "Wildwood Trailer Park", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Wiley", "place_name" : "Wiley", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Williams Beach", "place_name" : "Williams Beach", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Williams Landing", "place_name" : "Williams Landing", "community" : "Fraser Valley F", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Williamsons Landing", "place_name" : "Williamsons Landing", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Willingdon Heights", "place_name" : "Willingdon Heights", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Willow Brook", "place_name" : "Willow Brook", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Willowbrook", "place_name" : "Willowbrook", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Willowbrook", "place_name" : "Willowbrook", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Willow Flats", "place_name" : "Willow Flats", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Willow Point", "place_name" : "Willow Point", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Willow Ranch", "place_name" : "Willow Ranch", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Willow River", "place_name" : "Willow River", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Willowvale", "place_name" : "Willowvale", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Willow Valley", "place_name" : "Willow Valley", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Wilmer", "place_name" : "Wilmer", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Wilson Creek", "place_name" : "Wilson Creek", "community" : "Sechelt", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Wilson Landing", "place_name" : "Wilson Landing", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Windermere", "place_name" : "Windermere", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Windmill Trailer Park", "place_name" : "Windmill Trailer Park", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Windsor Park", "place_name" : "Windsor Park", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Winfield", "place_name" : "Winfield", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Winfield Mobile Home Park", "place_name" : "Winfield Mobile Home Park", "community" : "Duck Lake 7", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Wingdam", "place_name" : "Wingdam", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Winlaw", "place_name" : "Winlaw", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Winter Harbour", "place_name" : "Winter Harbour", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Wistaria", "place_name" : "Wistaria", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Wisteria", "place_name" : "Wisteria", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Wolf", "place_name" : "Wolf", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Wonowon", "place_name" : "Wonowon", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Woodcock", "place_name" : "Woodcock", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Woodcreek", "place_name" : "Woodcreek", "community" : "Sunshine Coast E", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Woodfibre", "place_name" : "Woodfibre", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Woodhaven", "place_name" : "Woodhaven", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Woodland Park Estates", "place_name" : "Woodland Park Estates", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Woodlands", "place_name" : "Woodlands", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Woodmere", "place_name" : "Woodmere", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Woodpecker", "place_name" : "Woodpecker", "community" : "Fraser-Fort George E", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Woodsdale", "place_name" : "Woodsdale", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Woods Landing", "place_name" : "Woods Landing", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Woss", "place_name" : "Woss", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Wright", "place_name" : "Wright", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Wyah 3", "place_name" : "Wyah 3", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Wycliffe", "place_name" : "Wycliffe", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Wycliffe Trailer Park", "place_name" : "Wycliffe Trailer Park", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Wyndhaven Subdivision", "place_name" : "Wyndhaven Subdivision", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Wynndel", "place_name" : "Wynndel", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Xeni", "place_name" : "Xeni", "community" : "Lohbiee 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Yaashitquo-a", "place_name" : "Yaashitquo-a", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Yaculta", "place_name" : "Yaculta", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Yahk", "place_name" : "Yahk", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Ya:kats", "place_name" : "Ya:kats", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Yaku", "place_name" : "Yaku", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Yale", "place_name" : "Yale", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Yankee Flats", "place_name" : "Yankee Flats", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Yarksis", "place_name" : "Yarksis", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Yarrow", "place_name" : "Yarrow", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Y.D. Ranch Subdivision", "place_name" : "Y.D. Ranch Subdivision", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Yekooche", "place_name" : "Yekooche", "community" : "Ye Koo Che 3", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Yellow Point", "place_name" : "Yellow Point", "community" : "Cowichan Valley H", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Yennadon", "place_name" : "Yennadon", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Ymir", "place_name" : "Ymir", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Youbou", "place_name" : "Youbou", "community" : "Cowichan Valley I", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Youbou West", "place_name" : "Youbou West", "community" : "Cowichan Valley I", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Young Lake", "place_name" : "Young Lake", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Yreka", "place_name" : "Yreka", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "YunesÌ‚it'in", "place_name" : "YunesÌ‚it'in", "community" : "Stone 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Yuquot", "place_name" : "Yuquot", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Yuuhluth", "place_name" : "Yuuhluth", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Zamora", "place_name" : "Zamora", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Zincton", "place_name" : "Zincton", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "105 Mile Post 2", "place_name" : "", "community" : "105 Mile Post 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Abbotsford", "place_name" : "", "community" : "Abbotsford", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Agats Meadow 8", "place_name" : "", "community" : "Agats Meadow 8", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Ahahswinis 1", "place_name" : "", "community" : "Ahahswinis 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Ahaminaquus 12", "place_name" : "", "community" : "Ahaminaquus 12", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Aitchelitch 9", "place_name" : "", "community" : "Aitchelitch 9", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Alberni 2", "place_name" : "", "community" : "Alberni 2", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Alberni-Clayoquot A", "place_name" : "", "community" : "Alberni-Clayoquot A", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Alberni-Clayoquot B", "place_name" : "", "community" : "Alberni-Clayoquot B", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Alberni-Clayoquot C", "place_name" : "", "community" : "Alberni-Clayoquot C", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Alberni-Clayoquot D", "place_name" : "", "community" : "Alberni-Clayoquot D", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Alberni-Clayoquot E", "place_name" : "", "community" : "Alberni-Clayoquot E", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Alberni-Clayoquot F", "place_name" : "", "community" : "Alberni-Clayoquot F", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Albert Flat 5", "place_name" : "", "community" : "Albert Flat 5", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Alert Bay - Indian reserve", "place_name" : "", "community" : "Alert Bay - Indian reserve", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Alert Bay - Village", "place_name" : "", "community" : "Alert Bay - Village", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Alexandria", "place_name" : "", "community" : "Alexandria", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexis 9", "place_name" : "", "community" : "Alexis 9", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Alexis Creek 14", "place_name" : "", "community" : "Alexis Creek 14", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexis Creek 16", "place_name" : "", "community" : "Alexis Creek 16", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexis Creek 21", "place_name" : "", "community" : "Alexis Creek 21", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alexis Creek 34", "place_name" : "", "community" : "Alexis Creek 34", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alkali Lake 1", "place_name" : "", "community" : "Alkali Lake 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Alkali Lake 4A", "place_name" : "", "community" : "Alkali Lake 4A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Anacla 12", "place_name" : "", "community" : "Anacla 12", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Anahim's Flat 1", "place_name" : "", "community" : "Anahim's Flat 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Anahim's Meadow", "place_name" : "", "community" : "Anahim's Meadow", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Anlaw 4", "place_name" : "", "community" : "Anlaw 4", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Anmore", "place_name" : "", "community" : "Anmore", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Armstrong", "place_name" : "", "community" : "Armstrong", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Ashcroft", "place_name" : "", "community" : "Ashcroft", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Ashcroft 4", "place_name" : "", "community" : "Ashcroft 4", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Ashnola 10", "place_name" : "", "community" : "Ashnola 10", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Babine 16", "place_name" : "", "community" : "Babine 16", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Babine 17", "place_name" : "", "community" : "Babine 17", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Babine 25", "place_name" : "", "community" : "Babine 25", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Babine 6", "place_name" : "", "community" : "Babine 6", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Babine Lake 21B", "place_name" : "", "community" : "Babine Lake 21B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Baezaeko River 27", "place_name" : "", "community" : "Baezaeko River 27", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Baptiste Meadow 2", "place_name" : "", "community" : "Baptiste Meadow 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Barnston Island 3", "place_name" : "", "community" : "Barnston Island 3", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Barriere", "place_name" : "", "community" : "Barriere", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Basque 18", "place_name" : "", "community" : "Basque 18", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Becher Bay 1", "place_name" : "", "community" : "Becher Bay 1", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Belcarra", "place_name" : "", "community" : "Belcarra", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Bella Bella 1", "place_name" : "", "community" : "Bella Bella 1", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Bella Coola 1", "place_name" : "", "community" : "Bella Coola 1", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Betty Creek 18", "place_name" : "", "community" : "Betty Creek 18", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Binche 2", "place_name" : "", "community" : "Binche 2", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Blind Creek 6", "place_name" : "", "community" : "Blind Creek 6", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Blueberry River 205", "place_name" : "", "community" : "Blueberry River 205", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Bonaparte 3", "place_name" : "", "community" : "Bonaparte 3", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Boothrouyd 5B", "place_name" : "", "community" : "Boothrouyd 5B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Boothroyd 13", "place_name" : "", "community" : "Boothroyd 13", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Boothroyd 8A", "place_name" : "", "community" : "Boothroyd 8A", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Boston Bar 1A", "place_name" : "", "community" : "Boston Bar 1A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Bowen Island", "place_name" : "", "community" : "Bowen Island", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Bridge River 1", "place_name" : "", "community" : "Bridge River 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Bucktum 4", "place_name" : "", "community" : "Bucktum 4", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Bulkley-Nechako A", "place_name" : "", "community" : "Bulkley-Nechako A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako B", "place_name" : "", "community" : "Bulkley-Nechako B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako C", "place_name" : "", "community" : "Bulkley-Nechako C", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako D", "place_name" : "", "community" : "Bulkley-Nechako D", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako E", "place_name" : "", "community" : "Bulkley-Nechako E", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako F", "place_name" : "", "community" : "Bulkley-Nechako F", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley-Nechako G", "place_name" : "", "community" : "Bulkley-Nechako G", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Bulkley River 19", "place_name" : "", "community" : "Bulkley River 19", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Burnaby", "place_name" : "", "community" : "Burnaby", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Burns Lake", "place_name" : "", "community" : "Burns Lake", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Burns Lake 18", "place_name" : "", "community" : "Burns Lake 18", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Burrard Inlet 3", "place_name" : "", "community" : "Burrard Inlet 3", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Cache Creek", "place_name" : "", "community" : "Cache Creek", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Campbell River", "place_name" : "", "community" : "Campbell River", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Campbell River 11", "place_name" : "", "community" : "Campbell River 11", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Canal Flats", "place_name" : "", "community" : "Canal Flats", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Canim Lake 1", "place_name" : "", "community" : "Canim Lake 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Canim Lake 2", "place_name" : "", "community" : "Canim Lake 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Canim Lake 4", "place_name" : "", "community" : "Canim Lake 4", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Canoe Creek 1", "place_name" : "", "community" : "Canoe Creek 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Canoe Creek 2", "place_name" : "", "community" : "Canoe Creek 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Canoe Creek 3", "place_name" : "", "community" : "Canoe Creek 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Cape Mudge 10", "place_name" : "", "community" : "Cape Mudge 10", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Capilano 5", "place_name" : "", "community" : "Capilano 5", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Cariboo A", "place_name" : "", "community" : "Cariboo A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo B", "place_name" : "", "community" : "Cariboo B", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo C", "place_name" : "", "community" : "Cariboo C", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo D", "place_name" : "", "community" : "Cariboo D", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo E", "place_name" : "", "community" : "Cariboo E", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo F", "place_name" : "", "community" : "Cariboo F", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo G", "place_name" : "", "community" : "Cariboo G", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo H", "place_name" : "", "community" : "Cariboo H", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo I", "place_name" : "", "community" : "Cariboo I", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo J", "place_name" : "", "community" : "Cariboo J", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo K", "place_name" : "", "community" : "Cariboo K", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cariboo L", "place_name" : "", "community" : "Cariboo L", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Cassimayooks (Mayook) 5", "place_name" : "", "community" : "Cassimayooks (Mayook) 5", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Castlegar", "place_name" : "", "community" : "Castlegar", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Cayoosh Creek 1", "place_name" : "", "community" : "Cayoosh Creek 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Central Coast A", "place_name" : "", "community" : "Central Coast A", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Central Coast C", "place_name" : "", "community" : "Central Coast C", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Central Coast D", "place_name" : "", "community" : "Central Coast D", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Central Coast E", "place_name" : "", "community" : "Central Coast E", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay A", "place_name" : "", "community" : "Central Kootenay A", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay B", "place_name" : "", "community" : "Central Kootenay B", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay C", "place_name" : "", "community" : "Central Kootenay C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay D", "place_name" : "", "community" : "Central Kootenay D", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay E", "place_name" : "", "community" : "Central Kootenay E", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay F", "place_name" : "", "community" : "Central Kootenay F", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay G", "place_name" : "", "community" : "Central Kootenay G", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay H", "place_name" : "", "community" : "Central Kootenay H", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay I", "place_name" : "", "community" : "Central Kootenay I", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay J", "place_name" : "", "community" : "Central Kootenay J", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Kootenay K", "place_name" : "", "community" : "Central Kootenay K", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Central Okanagan", "place_name" : "", "community" : "Central Okanagan", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Central Okanagan West", "place_name" : "", "community" : "Central Okanagan West", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Central Saanich", "place_name" : "", "community" : "Central Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Charley Boy's Meadow 3", "place_name" : "", "community" : "Charley Boy's Meadow 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Chase", "place_name" : "", "community" : "Chase", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Chawathil 4", "place_name" : "", "community" : "Chawathil 4", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Cheakamus 11", "place_name" : "", "community" : "Cheakamus 11", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Cheam 1", "place_name" : "", "community" : "Cheam 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Chehalis 5", "place_name" : "", "community" : "Chehalis 5", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Chekwelp 26", "place_name" : "", "community" : "Chekwelp 26", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Chemainus 13", "place_name" : "", "community" : "Chemainus 13", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Chenahkint 12", "place_name" : "", "community" : "Chenahkint 12", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Cheslatta 1", "place_name" : "", "community" : "Cheslatta 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Chetwynd", "place_name" : "", "community" : "Chetwynd", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Chilco Lake 1", "place_name" : "", "community" : "Chilco Lake 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Chilco Lake 1A", "place_name" : "", "community" : "Chilco Lake 1A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Chilhil 6", "place_name" : "", "community" : "Chilhil 6", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Chilliwack", "place_name" : "", "community" : "Chilliwack", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Chopaka 7 & 8", "place_name" : "", "community" : "Chopaka 7 & 8", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Chuchhraischin", "place_name" : "", "community" : "Chuchhraischin", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Chuchuwayha 2", "place_name" : "", "community" : "Chuchuwayha 2", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Chum Creek 2", "place_name" : "", "community" : "Chum Creek 2", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Clakamucus 2", "place_name" : "", "community" : "Clakamucus 2", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Clearwater", "place_name" : "", "community" : "Clearwater", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Clinton", "place_name" : "", "community" : "Clinton", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Coglistiko River 29", "place_name" : "", "community" : "Coglistiko River 29", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Coldstream", "place_name" : "", "community" : "Coldstream", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Coldwater 1", "place_name" : "", "community" : "Coldwater 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Cole Bay 3", "place_name" : "", "community" : "Cole Bay 3", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Columbia Lake 3", "place_name" : "", "community" : "Columbia Lake 3", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Columbia Shuswap A", "place_name" : "", "community" : "Columbia Shuswap A", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Columbia Shuswap B", "place_name" : "", "community" : "Columbia Shuswap B", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Columbia Shuswap C", "place_name" : "", "community" : "Columbia Shuswap C", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Columbia Shuswap D", "place_name" : "", "community" : "Columbia Shuswap D", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Columbia Shuswap E", "place_name" : "", "community" : "Columbia Shuswap E", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Columbia Shuswap F", "place_name" : "", "community" : "Columbia Shuswap F", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Columbia Shuswap G", "place_name" : "", "community" : "Columbia Shuswap G", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Colwood", "place_name" : "", "community" : "Colwood", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Comox", "place_name" : "", "community" : "Comox", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Comox 1", "place_name" : "", "community" : "Comox 1", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Comox Valley A", "place_name" : "", "community" : "Comox Valley A", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Comox Valley B (Lazo North)", "place_name" : "", "community" : "Comox Valley B (Lazo North)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Comox Valley C (Puntledge - Black Creek)", "place_name" : "", "community" : "Comox Valley C (Puntledge - Black Creek)", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Coqualeetza", "place_name" : "", "community" : "Coqualeetza", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 2"}, {"location" : "Coquitlam", "place_name" : "", "community" : "Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Coquitlam 1", "place_name" : "", "community" : "Coquitlam 1", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Coquitlam 2", "place_name" : "", "community" : "Coquitlam 2", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Coryatsaqua (Moricetown) 2", "place_name" : "", "community" : "Coryatsaqua (Moricetown) 2", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Courtenay", "place_name" : "", "community" : "Courtenay", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Cowichan", "place_name" : "", "community" : "Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Cowichan Lake", "place_name" : "", "community" : "Cowichan Lake", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Cowichan Valley A", "place_name" : "", "community" : "Cowichan Valley A", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley B", "place_name" : "", "community" : "Cowichan Valley B", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley C", "place_name" : "", "community" : "Cowichan Valley C", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley D", "place_name" : "", "community" : "Cowichan Valley D", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley E", "place_name" : "", "community" : "Cowichan Valley E", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley F", "place_name" : "", "community" : "Cowichan Valley F", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley G", "place_name" : "", "community" : "Cowichan Valley G", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley H", "place_name" : "", "community" : "Cowichan Valley H", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cowichan Valley I", "place_name" : "", "community" : "Cowichan Valley I", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Cranbrook", "place_name" : "", "community" : "Cranbrook", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Creston", "place_name" : "", "community" : "Creston", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Creston 1", "place_name" : "", "community" : "Creston 1", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Cumberland", "place_name" : "", "community" : "Cumberland", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Daajing Giids", "place_name" : "", "community" : "Daajing Giids", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Dawson Creek", "place_name" : "", "community" : "Dawson Creek", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 3"}, {"location" : "Dead Point 5", "place_name" : "", "community" : "Dead Point 5", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Dease Lake 9", "place_name" : "", "community" : "Dease Lake 9", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Dease River 1", "place_name" : "", "community" : "Dease River 1", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Deep Creek 2", "place_name" : "", "community" : "Deep Creek 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Delta", "place_name" : "", "community" : "Delta", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Dog Creek 1", "place_name" : "", "community" : "Dog Creek 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Dog Creek 2", "place_name" : "", "community" : "Dog Creek 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Doig River 206", "place_name" : "", "community" : "Doig River 206", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Dolphin Island 1", "place_name" : "", "community" : "Dolphin Island 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Douglas 8", "place_name" : "", "community" : "Douglas 8", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Douglas Lake 3", "place_name" : "", "community" : "Douglas Lake 3", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Dragon Lake 3", "place_name" : "", "community" : "Dragon Lake 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Duck Lake 7", "place_name" : "", "community" : "Duck Lake 7", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Duncan", "place_name" : "", "community" : "Duncan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Duncan Lake 2", "place_name" : "", "community" : "Duncan Lake 2", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Dzitline Lee 9", "place_name" : "", "community" : "Dzitline Lee 9", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "East Kootenay A", "place_name" : "", "community" : "East Kootenay A", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "East Kootenay B", "place_name" : "", "community" : "East Kootenay B", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "East Kootenay C", "place_name" : "", "community" : "East Kootenay C", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "East Kootenay E", "place_name" : "", "community" : "East Kootenay E", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "East Kootenay F", "place_name" : "", "community" : "East Kootenay F", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "East Kootenay G", "place_name" : "", "community" : "East Kootenay G", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "East Moberly Lake 169", "place_name" : "", "community" : "East Moberly Lake 169", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "East Saanich 2", "place_name" : "", "community" : "East Saanich 2", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Ehatis 11", "place_name" : "", "community" : "Ehatis 11", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Elhlateese 2", "place_name" : "", "community" : "Elhlateese 2", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Elkford", "place_name" : "", "community" : "Elkford", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Enderby", "place_name" : "", "community" : "Enderby", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Enderby 2", "place_name" : "", "community" : "Enderby 2", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Entlqwekkinh 19", "place_name" : "", "community" : "Entlqwekkinh 19", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Esowista 3", "place_name" : "", "community" : "Esowista 3", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Esquimalt - District municipality", "place_name" : "", "community" : "Esquimalt - District municipality", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Esquimalt - Indian reserve", "place_name" : "", "community" : "Esquimalt - Indian reserve", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Est-Patrolas 4", "place_name" : "", "community" : "Est-Patrolas 4", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Euchinico Creek 17", "place_name" : "", "community" : "Euchinico Creek 17", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Fernie", "place_name" : "", "community" : "Fernie", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Finlay River 6", "place_name" : "", "community" : "Finlay River 6", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Fishtrap 19", "place_name" : "", "community" : "Fishtrap 19", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Five Mile Point 3", "place_name" : "", "community" : "Five Mile Point 3", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Fontas 1", "place_name" : "", "community" : "Fontas 1", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Fort George 2", "place_name" : "", "community" : "Fort George 2", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Fort Nelson 2", "place_name" : "", "community" : "Fort Nelson 2", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Fort Rupert 1", "place_name" : "", "community" : "Fort Rupert 1", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Fort St. James", "place_name" : "", "community" : "Fort St. James", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Fort St. John", "place_name" : "", "community" : "Fort St. John", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 3"}, {"location" : "Fort Ware 1", "place_name" : "", "community" : "Fort Ware 1", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Fountain 1", "place_name" : "", "community" : "Fountain 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 10", "place_name" : "", "community" : "Fountain 10", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 11", "place_name" : "", "community" : "Fountain 11", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 12", "place_name" : "", "community" : "Fountain 12", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 1B", "place_name" : "", "community" : "Fountain 1B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 1D", "place_name" : "", "community" : "Fountain 1D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 3", "place_name" : "", "community" : "Fountain 3", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain 3A", "place_name" : "", "community" : "Fountain 3A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Fountain Creek 8", "place_name" : "", "community" : "Fountain Creek 8", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Francois Lake 7", "place_name" : "", "community" : "Francois Lake 7", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Fraser-Fort George A", "place_name" : "", "community" : "Fraser-Fort George A", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Fraser-Fort George C", "place_name" : "", "community" : "Fraser-Fort George C", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Fraser-Fort George D", "place_name" : "", "community" : "Fraser-Fort George D", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Fraser-Fort George E", "place_name" : "", "community" : "Fraser-Fort George E", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Fraser-Fort George F", "place_name" : "", "community" : "Fraser-Fort George F", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Fraser-Fort George G", "place_name" : "", "community" : "Fraser-Fort George G", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Fraser-Fort George H", "place_name" : "", "community" : "Fraser-Fort George H", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Fraser Lake", "place_name" : "", "community" : "Fraser Lake", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Fraser Valley A", "place_name" : "", "community" : "Fraser Valley A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Fraser Valley B", "place_name" : "", "community" : "Fraser Valley B", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley C", "place_name" : "", "community" : "Fraser Valley C", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley D", "place_name" : "", "community" : "Fraser Valley D", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley E", "place_name" : "", "community" : "Fraser Valley E", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley F", "place_name" : "", "community" : "Fraser Valley F", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fraser Valley G", "place_name" : "", "community" : "Fraser Valley G", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Fraser Valley H", "place_name" : "", "community" : "Fraser Valley H", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Fruitvale", "place_name" : "", "community" : "Fruitvale", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Galiano Island 9", "place_name" : "", "community" : "Galiano Island 9", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Garden", "place_name" : "", "community" : "Garden", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Gibsons", "place_name" : "", "community" : "Gibsons", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Gitanmaax 1", "place_name" : "", "community" : "Gitanmaax 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gitanyow 1", "place_name" : "", "community" : "Gitanyow 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gitsegukla 1", "place_name" : "", "community" : "Gitsegukla 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gitwangak 1", "place_name" : "", "community" : "Gitwangak 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Golden", "place_name" : "", "community" : "Golden", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Gold River", "place_name" : "", "community" : "Gold River", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Good Hope Lake", "place_name" : "", "community" : "Good Hope Lake", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Gordon River 2", "place_name" : "", "community" : "Gordon River 2", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Grand Forks", "place_name" : "", "community" : "Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Granisle", "place_name" : "", "community" : "Granisle", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "Greenwood", "place_name" : "", "community" : "Greenwood", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Guhthe Tah 12", "place_name" : "", "community" : "Guhthe Tah 12", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Gwayasdums 1", "place_name" : "", "community" : "Gwayasdums 1", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Hagwilget 1", "place_name" : "", "community" : "Hagwilget 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Halalt 2", "place_name" : "", "community" : "Halalt 2", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Halfway River 168", "place_name" : "", "community" : "Halfway River 168", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Halhalaeden", "place_name" : "", "community" : "Halhalaeden", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Hamilton Creek 2", "place_name" : "", "community" : "Hamilton Creek 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Harris 3", "place_name" : "", "community" : "Harris 3", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Harrison Hot Springs", "place_name" : "", "community" : "Harrison Hot Springs", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Hazelton", "place_name" : "", "community" : "Hazelton", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Hesquiat 1", "place_name" : "", "community" : "Hesquiat 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "High Bar 1", "place_name" : "", "community" : "High Bar 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Highlands", "place_name" : "", "community" : "Highlands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 3"}, {"location" : "Holachten 8", "place_name" : "", "community" : "Holachten 8", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Homalco 9", "place_name" : "", "community" : "Homalco 9", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Hope", "place_name" : "", "community" : "Hope", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Hope Island 1", "place_name" : "", "community" : "Hope Island 1", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Hopetown 10A", "place_name" : "", "community" : "Hopetown 10A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Houpsitas 6", "place_name" : "", "community" : "Houpsitas 6", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Houston", "place_name" : "", "community" : "Houston", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Hudson's Hope", "place_name" : "", "community" : "Hudson's Hope", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Hustalen 1", "place_name" : "", "community" : "Hustalen 1", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Ingenika Point", "place_name" : "", "community" : "Ingenika Point", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Inkahtsaph 6", "place_name" : "", "community" : "Inkahtsaph 6", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Inkluckcheen", "place_name" : "", "community" : "Inkluckcheen", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Inklyuhkinatko 2", "place_name" : "", "community" : "Inklyuhkinatko 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Invermere", "place_name" : "", "community" : "Invermere", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Isidore's Ranch 4", "place_name" : "", "community" : "Isidore's Ranch 4", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Iskut 6", "place_name" : "", "community" : "Iskut 6", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Ittatsoo 1", "place_name" : "", "community" : "Ittatsoo 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Jean Baptiste 28", "place_name" : "", "community" : "Jean Baptiste 28", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Joeyaska 2", "place_name" : "", "community" : "Joeyaska 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Johny Sticks 2", "place_name" : "", "community" : "Johny Sticks 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Juan de Fuca (Part 1)", "place_name" : "", "community" : "Juan de Fuca (Part 1)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Juan de Fuca (Part 2)", "place_name" : "", "community" : "Juan de Fuca (Part 2)", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Kahmoose 4", "place_name" : "", "community" : "Kahmoose 4", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Kahntah 3", "place_name" : "", "community" : "Kahntah 3", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Kamloops", "place_name" : "", "community" : "Kamloops", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Kamloops 1", "place_name" : "", "community" : "Kamloops 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Kanaka Bar", "place_name" : "", "community" : "Kanaka Bar", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Kaslo", "place_name" : "", "community" : "Kaslo", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Katit 1", "place_name" : "", "community" : "Katit 1", "regional_district" : "Central Coast", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Katzie 1", "place_name" : "", "community" : "Katzie 1", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Katzie 2", "place_name" : "", "community" : "Katzie 2", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Kelowna", "place_name" : "", "community" : "Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Kent", "place_name" : "", "community" : "Kent", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Keremeos", "place_name" : "", "community" : "Keremeos", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Kil-pah-las 3", "place_name" : "", "community" : "Kil-pah-las 3", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Kimberley", "place_name" : "", "community" : "Kimberley", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kippase 2", "place_name" : "", "community" : "Kippase 2", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Kispiox 1", "place_name" : "", "community" : "Kispiox 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kitamaat 2", "place_name" : "", "community" : "Kitamaat 2", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kitasoo 1", "place_name" : "", "community" : "Kitasoo 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kitimat", "place_name" : "", "community" : "Kitimat", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 2"}, {"location" : "Kitimat-Stikine A", "place_name" : "", "community" : "Kitimat-Stikine A", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine B", "place_name" : "", "community" : "Kitimat-Stikine B", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine C (Part 1)", "place_name" : "", "community" : "Kitimat-Stikine C (Part 1)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine C (Part 2)", "place_name" : "", "community" : "Kitimat-Stikine C (Part 2)", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine D", "place_name" : "", "community" : "Kitimat-Stikine D", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine E", "place_name" : "", "community" : "Kitimat-Stikine E", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitimat-Stikine F", "place_name" : "", "community" : "Kitimat-Stikine F", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Kitselas 1", "place_name" : "", "community" : "Kitselas 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kitsilano 6", "place_name" : "", "community" : "Kitsilano 6", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Kitsumkaylum 1", "place_name" : "", "community" : "Kitsumkaylum 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kitzowit 20", "place_name" : "", "community" : "Kitzowit 20", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Klahkamich 17", "place_name" : "", "community" : "Klahkamich 17", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Kleetlekut 22", "place_name" : "", "community" : "Kleetlekut 22", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Klehkoot 2", "place_name" : "", "community" : "Klehkoot 2", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Klickkumcheen 18", "place_name" : "", "community" : "Klickkumcheen 18", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Kloklowuck 7", "place_name" : "", "community" : "Kloklowuck 7", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Kluskus 1", "place_name" : "", "community" : "Kluskus 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Kootenay 1", "place_name" : "", "community" : "Kootenay 1", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Kootenay Boundary A", "place_name" : "", "community" : "Kootenay Boundary A", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "place_name" : "", "community" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kootenay Boundary C / Christina Lake", "place_name" : "", "community" : "Kootenay Boundary C / Christina Lake", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kootenay Boundary D / Rural Grand Forks", "place_name" : "", "community" : "Kootenay Boundary D / Rural Grand Forks", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Kootenay Boundary E / West Boundary", "place_name" : "", "community" : "Kootenay Boundary E / West Boundary", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Kopchitchin 2", "place_name" : "", "community" : "Kopchitchin 2", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Kowtain 17", "place_name" : "", "community" : "Kowtain 17", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Kshish 4", "place_name" : "", "community" : "Kshish 4", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kulkayu (Hartley Bay) 4", "place_name" : "", "community" : "Kulkayu (Hartley Bay) 4", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kulkayu (Hartley Bay) 4A", "place_name" : "", "community" : "Kulkayu (Hartley Bay) 4A", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kulspai 6", "place_name" : "", "community" : "Kulspai 6", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Kumcheen 1", "place_name" : "", "community" : "Kumcheen 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Kwawkwawapilt 6", "place_name" : "", "community" : "Kwawkwawapilt 6", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Ladysmith", "place_name" : "", "community" : "Ladysmith", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Lakahahmen 11", "place_name" : "", "community" : "Lakahahmen 11", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Lake Country", "place_name" : "", "community" : "Lake Country", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Lake Cowichan", "place_name" : "", "community" : "Lake Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Laketown 3", "place_name" : "", "community" : "Laketown 3", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Langford", "place_name" : "", "community" : "Langford", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Langley 2", "place_name" : "", "community" : "Langley 2", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Langley - City", "place_name" : "", "community" : "Langley - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Langley - District municipality", "place_name" : "", "community" : "Langley - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Lantzville", "place_name" : "", "community" : "Lantzville", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Lax Kw'alaams 1", "place_name" : "", "community" : "Lax Kw'alaams 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Lezbye 6", "place_name" : "", "community" : "Lezbye 6", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Liard River 3", "place_name" : "", "community" : "Liard River 3", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Lillooet", "place_name" : "", "community" : "Lillooet", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Lillooet 1", "place_name" : "", "community" : "Lillooet 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Lions Bay", "place_name" : "", "community" : "Lions Bay", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Little Springs", "place_name" : "", "community" : "Little Springs", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Logan Lake", "place_name" : "", "community" : "Logan Lake", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lohbiee 3", "place_name" : "", "community" : "Lohbiee 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Louis Creek 4", "place_name" : "", "community" : "Louis Creek 4", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Lower Hat Creek 2", "place_name" : "", "community" : "Lower Hat Creek 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Lower Kootenay 1C", "place_name" : "", "community" : "Lower Kootenay 1C", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Lower Kootenay 5", "place_name" : "", "community" : "Lower Kootenay 5", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Lower Post", "place_name" : "", "community" : "Lower Post", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Lower Similkameen 2", "place_name" : "", "community" : "Lower Similkameen 2", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Lukseetsissum 9", "place_name" : "", "community" : "Lukseetsissum 9", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Lulu 5", "place_name" : "", "community" : "Lulu 5", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Lumby", "place_name" : "", "community" : "Lumby", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lyacksun 3", "place_name" : "", "community" : "Lyacksun 3", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Lytton", "place_name" : "", "community" : "Lytton", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Lytton 4A", "place_name" : "", "community" : "Lytton 4A", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Lytton 4E", "place_name" : "", "community" : "Lytton 4E", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Lytton 9A", "place_name" : "", "community" : "Lytton 9A", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Lytton 9B", "place_name" : "", "community" : "Lytton 9B", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Mackenzie", "place_name" : "", "community" : "Mackenzie", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Macoah 1", "place_name" : "", "community" : "Macoah 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Malachan 11", "place_name" : "", "community" : "Malachan 11", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Malahat 11", "place_name" : "", "community" : "Malahat 11", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Maple Ridge", "place_name" : "", "community" : "Maple Ridge", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Marble Canyon 3", "place_name" : "", "community" : "Marble Canyon 3", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Marktosis 15", "place_name" : "", "community" : "Marktosis 15", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Masset", "place_name" : "", "community" : "Masset", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Masset 1", "place_name" : "", "community" : "Masset 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Matsqui 4", "place_name" : "", "community" : "Matsqui 4", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Matsqui Main 2", "place_name" : "", "community" : "Matsqui Main 2", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "McBride", "place_name" : "", "community" : "McBride", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "McCartney's Flat 4", "place_name" : "", "community" : "McCartney's Flat 4", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "McCleod Lake 5", "place_name" : "", "community" : "McCleod Lake 5", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "McLeod Lake 1", "place_name" : "", "community" : "McLeod Lake 1", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "McMillan Island 6", "place_name" : "", "community" : "McMillan Island 6", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Merritt", "place_name" : "", "community" : "Merritt", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Mesilinka 7", "place_name" : "", "community" : "Mesilinka 7", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Metchosin", "place_name" : "", "community" : "Metchosin", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Metro Vancouver A", "place_name" : "", "community" : "Metro Vancouver A", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 3"}, {"location" : "Michel Gardens 36", "place_name" : "", "community" : "Michel Gardens 36", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Midway", "place_name" : "", "community" : "Midway", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Mission", "place_name" : "", "community" : "Mission", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Mission 1", "place_name" : "", "community" : "Mission 1", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mission 5", "place_name" : "", "community" : "Mission 5", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mission Lands 17", "place_name" : "", "community" : "Mission Lands 17", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Montrose", "place_name" : "", "community" : "Montrose", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Moricetown 1", "place_name" : "", "community" : "Moricetown 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Mount Currie", "place_name" : "", "community" : "Mount Currie", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Mount Waddington A", "place_name" : "", "community" : "Mount Waddington A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mount Waddington B", "place_name" : "", "community" : "Mount Waddington B", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mount Waddington C", "place_name" : "", "community" : "Mount Waddington C", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Mount Waddington D", "place_name" : "", "community" : "Mount Waddington D", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Musqueam 2", "place_name" : "", "community" : "Musqueam 2", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Musqueam 4", "place_name" : "", "community" : "Musqueam 4", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Nak'azdli", "place_name" : "", "community" : "Nak'azdli", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Nakusp", "place_name" : "", "community" : "Nakusp", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Nanaimo", "place_name" : "", "community" : "Nanaimo", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Nanaimo A", "place_name" : "", "community" : "Nanaimo A", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo B", "place_name" : "", "community" : "Nanaimo B", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Nanaimo C", "place_name" : "", "community" : "Nanaimo C", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo E", "place_name" : "", "community" : "Nanaimo E", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo F", "place_name" : "", "community" : "Nanaimo F", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo G", "place_name" : "", "community" : "Nanaimo G", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo H", "place_name" : "", "community" : "Nanaimo H", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Nanaimo River", "place_name" : "", "community" : "Nanaimo River", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nanaimo Town 1", "place_name" : "", "community" : "Nanaimo Town 1", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nanoose", "place_name" : "", "community" : "Nanoose", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nautley (Fort Fraser) 1", "place_name" : "", "community" : "Nautley (Fort Fraser) 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Nazco 20", "place_name" : "", "community" : "Nazco 20", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Necait 6", "place_name" : "", "community" : "Necait 6", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Nedoats 11", "place_name" : "", "community" : "Nedoats 11", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Nekalliston 2", "place_name" : "", "community" : "Nekalliston 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nekliptum 1", "place_name" : "", "community" : "Nekliptum 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nelson", "place_name" : "", "community" : "Nelson", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Nenagwas 12", "place_name" : "", "community" : "Nenagwas 12", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nequatque", "place_name" : "", "community" : "Nequatque", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Nesikep 6", "place_name" : "", "community" : "Nesikep 6", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Neskonlith", "place_name" : "", "community" : "Neskonlith", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nesuch 3", "place_name" : "", "community" : "Nesuch 3", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "New Denver", "place_name" : "", "community" : "New Denver", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "New Hazelton", "place_name" : "", "community" : "New Hazelton", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "New Songhees 1A", "place_name" : "", "community" : "New Songhees 1A", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "New Westminster", "place_name" : "", "community" : "New Westminster", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Nickel Palm 4", "place_name" : "", "community" : "Nickel Palm 4", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nickeyeah 25", "place_name" : "", "community" : "Nickeyeah 25", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nicola Lake 1", "place_name" : "", "community" : "Nicola Lake 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nicola Mameet 1", "place_name" : "", "community" : "Nicola Mameet 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nicomen 1", "place_name" : "", "community" : "Nicomen 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nimpkish 2", "place_name" : "", "community" : "Nimpkish 2", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nisga'a", "place_name" : "", "community" : "Nisga'a", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Nkaih 10", "place_name" : "", "community" : "Nkaih 10", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nohomeen 23", "place_name" : "", "community" : "Nohomeen 23", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Nooaitch 10", "place_name" : "", "community" : "Nooaitch 10", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Noonla 6", "place_name" : "", "community" : "Noonla 6", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "North Bay 5", "place_name" : "", "community" : "North Bay 5", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "North Coast A", "place_name" : "", "community" : "North Coast A", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "North Coast C", "place_name" : "", "community" : "North Coast C", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "North Coast D", "place_name" : "", "community" : "North Coast D", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "North Coast E", "place_name" : "", "community" : "North Coast E", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "North Cowichan", "place_name" : "", "community" : "North Cowichan", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 2"}, {"location" : "Northern Rockies", "place_name" : "", "community" : "Northern Rockies", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "North Okanagan B", "place_name" : "", "community" : "North Okanagan B", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "North Okanagan C", "place_name" : "", "community" : "North Okanagan C", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "North Okanagan D", "place_name" : "", "community" : "North Okanagan D", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "North Okanagan E", "place_name" : "", "community" : "North Okanagan E", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "North Okanagan F", "place_name" : "", "community" : "North Okanagan F", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "North Saanich", "place_name" : "", "community" : "North Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "North Tacla Lake", "place_name" : "", "community" : "North Tacla Lake", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "North Thompson 1", "place_name" : "", "community" : "North Thompson 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "North Vancouver - City", "place_name" : "", "community" : "North Vancouver - City", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "North Vancouver - District municipality", "place_name" : "", "community" : "North Vancouver - District municipality", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Numukamis 1", "place_name" : "", "community" : "Numukamis 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Nuuautin 2", "place_name" : "", "community" : "Nuuautin 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Oak Bay", "place_name" : "", "community" : "Oak Bay", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Oclucje 7", "place_name" : "", "community" : "Oclucje 7", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Ohamil 1", "place_name" : "", "community" : "Ohamil 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Okanagan (Part) 1 - North Okanagan", "place_name" : "", "community" : "Okanagan (Part) 1 - North Okanagan", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Okanagan (Part) 1 - Thompson/Okanagan", "place_name" : "", "community" : "Okanagan (Part) 1 - Thompson/Okanagan", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Okanagan-Similkameen A", "place_name" : "", "community" : "Okanagan-Similkameen A", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen B", "place_name" : "", "community" : "Okanagan-Similkameen B", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen C", "place_name" : "", "community" : "Okanagan-Similkameen C", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen D", "place_name" : "", "community" : "Okanagan-Similkameen D", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen E", "place_name" : "", "community" : "Okanagan-Similkameen E", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen F", "place_name" : "", "community" : "Okanagan-Similkameen F", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Okanagan-Similkameen G", "place_name" : "", "community" : "Okanagan-Similkameen G", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen H", "place_name" : "", "community" : "Okanagan-Similkameen H", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Okanagan-Similkameen I", "place_name" : "", "community" : "Okanagan-Similkameen I", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Oliver", "place_name" : "", "community" : "Oliver", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Omineca 1", "place_name" : "", "community" : "Omineca 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "One Hundred Mile House", "place_name" : "", "community" : "One Hundred Mile House", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Opitsat 1", "place_name" : "", "community" : "Opitsat 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Oregon Jack Creek 5", "place_name" : "", "community" : "Oregon Jack Creek 5", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Osoyoos", "place_name" : "", "community" : "Osoyoos", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Osoyoos 1", "place_name" : "", "community" : "Osoyoos 1", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Oyster Bay 12", "place_name" : "", "community" : "Oyster Bay 12", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Palling 1", "place_name" : "", "community" : "Palling 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Papyum 27", "place_name" : "", "community" : "Papyum 27", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Paqulh", "place_name" : "", "community" : "Paqulh", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Parksville", "place_name" : "", "community" : "Parksville", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Pashilqua 2", "place_name" : "", "community" : "Pashilqua 2", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Paska Island 3", "place_name" : "", "community" : "Paska Island 3", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Paul's Basin 2", "place_name" : "", "community" : "Paul's Basin 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Pavilion 1", "place_name" : "", "community" : "Pavilion 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Peace River B", "place_name" : "", "community" : "Peace River B", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Peace River C", "place_name" : "", "community" : "Peace River C", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Peace River D", "place_name" : "", "community" : "Peace River D", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Peace River E", "place_name" : "", "community" : "Peace River E", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Peachland", "place_name" : "", "community" : "Peachland", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Pemberton", "place_name" : "", "community" : "Pemberton", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Pemynoos 9", "place_name" : "", "community" : "Pemynoos 9", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Penelakut Island 7", "place_name" : "", "community" : "Penelakut Island 7", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Penticton", "place_name" : "", "community" : "Penticton", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Penticton 1", "place_name" : "", "community" : "Penticton 1", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Pentledge 2", "place_name" : "", "community" : "Pentledge 2", "regional_district" : "Comox Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Peq-Paq 22", "place_name" : "", "community" : "Peq-Paq 22", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Peters 1", "place_name" : "", "community" : "Peters 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Pitt Meadows", "place_name" : "", "community" : "Pitt Meadows", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Poison Creek 17A", "place_name" : "", "community" : "Poison Creek 17A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Popkum 1", "place_name" : "", "community" : "Popkum 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Port Alberni", "place_name" : "", "community" : "Port Alberni", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Port Alice", "place_name" : "", "community" : "Port Alice", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Port Clements", "place_name" : "", "community" : "Port Clements", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Port Coquitlam", "place_name" : "", "community" : "Port Coquitlam", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Port Edward", "place_name" : "", "community" : "Port Edward", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Port Hardy", "place_name" : "", "community" : "Port Hardy", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Portier Pass 5", "place_name" : "", "community" : "Portier Pass 5", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Port McNeill", "place_name" : "", "community" : "Port McNeill", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Port Moody", "place_name" : "", "community" : "Port Moody", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Pouce Coupe", "place_name" : "", "community" : "Pouce Coupe", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Powell River", "place_name" : "", "community" : "Powell River", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Priest's Valley 6", "place_name" : "", "community" : "Priest's Valley 6", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Prince George", "place_name" : "", "community" : "Prince George", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Urban 2"}, {"location" : "Prince Rupert", "place_name" : "", "community" : "Prince Rupert", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "Rural 3"}, {"location" : "Princeton", "place_name" : "", "community" : "Princeton", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Prophet River 4", "place_name" : "", "community" : "Prophet River 4", "regional_district" : "Northern Rockies", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "Puckatholetchin 11", "place_name" : "", "community" : "Puckatholetchin 11", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Puntzi Lake 2", "place_name" : "", "community" : "Puntzi Lake 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Q'alatkú7em", "place_name" : "", "community" : "Q'alatkú7em", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "qathet A", "place_name" : "", "community" : "qathet A", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "qathet B", "place_name" : "", "community" : "qathet B", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "qathet C", "place_name" : "", "community" : "qathet C", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "qathet D", "place_name" : "", "community" : "qathet D", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "qathet E", "place_name" : "", "community" : "qathet E", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Quaaout 1", "place_name" : "", "community" : "Quaaout 1", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Quaee 7", "place_name" : "", "community" : "Quaee 7", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Qualicum", "place_name" : "", "community" : "Qualicum", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Qualicum Beach", "place_name" : "", "community" : "Qualicum Beach", "regional_district" : "Nanaimo", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Quatsino Subdivision 18", "place_name" : "", "community" : "Quatsino Subdivision 18", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Quesnel", "place_name" : "", "community" : "Quesnel", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 2"}, {"location" : "Quesnel 1", "place_name" : "", "community" : "Quesnel 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Quinsam 12", "place_name" : "", "community" : "Quinsam 12", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Radium Hot Springs", "place_name" : "", "community" : "Radium Hot Springs", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Redstone Flat 1", "place_name" : "", "community" : "Redstone Flat 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Redstone Flat 1A", "place_name" : "", "community" : "Redstone Flat 1A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Refuge Cove 6", "place_name" : "", "community" : "Refuge Cove 6", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Revelstoke", "place_name" : "", "community" : "Revelstoke", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Richmond", "place_name" : "", "community" : "Richmond", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Rossland", "place_name" : "", "community" : "Rossland", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Ruby Creek 2", "place_name" : "", "community" : "Ruby Creek 2", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "S1/2 Tsimpsean 2", "place_name" : "", "community" : "S1/2 Tsimpsean 2", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Saanich", "place_name" : "", "community" : "Saanich", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Sachsa 4", "place_name" : "", "community" : "Sachsa 4", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Sachteen", "place_name" : "", "community" : "Sachteen", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Saddle Rock 9", "place_name" : "", "community" : "Saddle Rock 9", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Sahhaltkum 4", "place_name" : "", "community" : "Sahhaltkum 4", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Salmo", "place_name" : "", "community" : "Salmo", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Salmon Arm", "place_name" : "", "community" : "Salmon Arm", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Salmon River 1", "place_name" : "", "community" : "Salmon River 1", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Salmon River Meadow 7", "place_name" : "", "community" : "Salmon River Meadow 7", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Saltspring Island", "place_name" : "", "community" : "Saltspring Island", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Sandy Harry 4", "place_name" : "", "community" : "Sandy Harry 4", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Sayward", "place_name" : "", "community" : "Sayward", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Schelowat 1", "place_name" : "", "community" : "Schelowat 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Schkam 2", "place_name" : "", "community" : "Schkam 2", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Scotch Creek 4", "place_name" : "", "community" : "Scotch Creek 4", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Scowlitz 1", "place_name" : "", "community" : "Scowlitz 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Seabird Island", "place_name" : "", "community" : "Seabird Island", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Seah 5", "place_name" : "", "community" : "Seah 5", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Seaichem 16", "place_name" : "", "community" : "Seaichem 16", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Seaspunkut 4", "place_name" : "", "community" : "Seaspunkut 4", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Sechelt", "place_name" : "", "community" : "Sechelt", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Sechelt (Part) - qathet", "place_name" : "", "community" : "Sechelt (Part) - qathet", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Sechelt (Part) - Sunshine Coast", "place_name" : "", "community" : "Sechelt (Part) - Sunshine Coast", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Semiahmoo", "place_name" : "", "community" : "Semiahmoo", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Seton Lake 5", "place_name" : "", "community" : "Seton Lake 5", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Seymour Creek 2", "place_name" : "", "community" : "Seymour Creek 2", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Shackan 11", "place_name" : "", "community" : "Shackan 11", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Shawniken 4B", "place_name" : "", "community" : "Shawniken 4B", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Shingle Point 4", "place_name" : "", "community" : "Shingle Point 4", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Shuswap", "place_name" : "", "community" : "Shuswap", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Sicamous", "place_name" : "", "community" : "Sicamous", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sidney", "place_name" : "", "community" : "Sidney", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Sik-e-dakh 2", "place_name" : "", "community" : "Sik-e-dakh 2", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Silverton", "place_name" : "", "community" : "Silverton", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Siska Flat", "place_name" : "", "community" : "Siska Flat", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Siska Flat 5B", "place_name" : "", "community" : "Siska Flat 5B", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Skawahlook 1", "place_name" : "", "community" : "Skawahlook 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skeetchestn", "place_name" : "", "community" : "Skeetchestn", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Skidegate 1", "place_name" : "", "community" : "Skidegate 1", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Skins Lake 16A", "place_name" : "", "community" : "Skins Lake 16A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Skins Lake 16B", "place_name" : "", "community" : "Skins Lake 16B", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Skookumchuck 4", "place_name" : "", "community" : "Skookumchuck 4", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skookumchuck 4A", "place_name" : "", "community" : "Skookumchuck 4A", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skowkale", "place_name" : "", "community" : "Skowkale", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skuppah 2A", "place_name" : "", "community" : "Skuppah 2A", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Skuppah 4", "place_name" : "", "community" : "Skuppah 4", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Skwah 4", "place_name" : "", "community" : "Skwah 4", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skwali 3", "place_name" : "", "community" : "Skwali 3", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skway 5", "place_name" : "", "community" : "Skway 5", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Skwayaynope 26", "place_name" : "", "community" : "Skwayaynope 26", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Skweahm 10", "place_name" : "", "community" : "Skweahm 10", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Sliammon 1", "place_name" : "", "community" : "Sliammon 1", "regional_district" : "qathet", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Slocan", "place_name" : "", "community" : "Slocan", "regional_district" : "Central Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 1"}, {"location" : "Slosh 1", "place_name" : "", "community" : "Slosh 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Smithers", "place_name" : "", "community" : "Smithers", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Soda Creek 1", "place_name" : "", "community" : "Soda Creek 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Sooke", "place_name" : "", "community" : "Sooke", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "Soowahlie 14", "place_name" : "", "community" : "Soowahlie 14", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Southern Gulf Islands", "place_name" : "", "community" : "Southern Gulf Islands", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 3"}, {"location" : "South Saanich 1", "place_name" : "", "community" : "South Saanich 1", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Sowchea 3", "place_name" : "", "community" : "Sowchea 3", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Spallumcheen", "place_name" : "", "community" : "Spallumcheen", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Sparwood", "place_name" : "", "community" : "Sparwood", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Spences Bridge", "place_name" : "", "community" : "Spences Bridge", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Speyum 3", "place_name" : "", "community" : "Speyum 3", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Spintlum Flat 3", "place_name" : "", "community" : "Spintlum Flat 3", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Spuzzum 1", "place_name" : "", "community" : "Spuzzum 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Squaam 2", "place_name" : "", "community" : "Squaam 2", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Squamish", "place_name" : "", "community" : "Squamish", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Squamish-Lillooet A", "place_name" : "", "community" : "Squamish-Lillooet A", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Squamish-Lillooet B", "place_name" : "", "community" : "Squamish-Lillooet B", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 1"}, {"location" : "Squamish-Lillooet C", "place_name" : "", "community" : "Squamish-Lillooet C", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Squamish-Lillooet D", "place_name" : "", "community" : "Squamish-Lillooet D", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Squaw-Hay-One 11", "place_name" : "", "community" : "Squaw-Hay-One 11", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Squawkum Creek 3", "place_name" : "", "community" : "Squawkum Creek 3", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Squiaala", "place_name" : "", "community" : "Squiaala", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Squinas 2", "place_name" : "", "community" : "Squinas 2", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Squirrel Cove 8", "place_name" : "", "community" : "Squirrel Cove 8", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Stawamus 24", "place_name" : "", "community" : "Stawamus 24", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Stellaquo (Stella) 1", "place_name" : "", "community" : "Stellaquo (Stella) 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Stequmwhulpa 5", "place_name" : "", "community" : "Stequmwhulpa 5", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Stewart", "place_name" : "", "community" : "Stewart", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 1"}, {"location" : "Stikine Region", "place_name" : "", "community" : "Stikine Region", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "Rural 1"}, {"location" : "St. Mary's", "place_name" : "", "community" : "St. Mary's", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Stone 1", "place_name" : "", "community" : "Stone 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Stony Creek 1", "place_name" : "", "community" : "Stony Creek 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Strathcona A", "place_name" : "", "community" : "Strathcona A", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Strathcona B", "place_name" : "", "community" : "Strathcona B", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Strathcona C", "place_name" : "", "community" : "Strathcona C", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Strathcona D (Oyster Bay - Buttle Lake)", "place_name" : "", "community" : "Strathcona D (Oyster Bay - Buttle Lake)", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Stryen 9", "place_name" : "", "community" : "Stryen 9", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Stullawheets 8", "place_name" : "", "community" : "Stullawheets 8", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Summerland", "place_name" : "", "community" : "Summerland", "regional_district" : "Okanagan-Similkameen", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 3"}, {"location" : "Sundayman's Meadow 3", "place_name" : "", "community" : "Sundayman's Meadow 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Sun Peaks Mountain", "place_name" : "", "community" : "Sun Peaks Mountain", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Sunshine Coast A", "place_name" : "", "community" : "Sunshine Coast A", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Sunshine Coast B", "place_name" : "", "community" : "Sunshine Coast B", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 2"}, {"location" : "Sunshine Coast D", "place_name" : "", "community" : "Sunshine Coast D", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Sunshine Coast E", "place_name" : "", "community" : "Sunshine Coast E", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Sunshine Coast F", "place_name" : "", "community" : "Sunshine Coast F", "regional_district" : "Sunshine Coast", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Surrey", "place_name" : "", "community" : "Surrey", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Swan Lake 3", "place_name" : "", "community" : "Swan Lake 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Switsemalph", "place_name" : "", "community" : "Switsemalph", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Switsemalph 3", "place_name" : "", "community" : "Switsemalph 3", "regional_district" : "Columbia Shuswap", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Tache 1", "place_name" : "", "community" : "Tache 1", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Tacla Lake (Ferry Landing) 9", "place_name" : "", "community" : "Tacla Lake (Ferry Landing) 9", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Tadinlay 15", "place_name" : "", "community" : "Tadinlay 15", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Tahltan 1", "place_name" : "", "community" : "Tahltan 1", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Tahsis", "place_name" : "", "community" : "Tahsis", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Tanakut 4", "place_name" : "", "community" : "Tanakut 4", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Tatla't East 2", "place_name" : "", "community" : "Tatla't East 2", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Tatla West 11", "place_name" : "", "community" : "Tatla West 11", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Taylor", "place_name" : "", "community" : "Taylor", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Telegraph Creek", "place_name" : "", "community" : "Telegraph Creek", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Telkwa", "place_name" : "", "community" : "Telkwa", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Terrace", "place_name" : "", "community" : "Terrace", "regional_district" : "Kitimat-Stikine", "economic_region" : "North Coast", "rural_category" : "Rural 3"}, {"location" : "Theik 2", "place_name" : "", "community" : "Theik 2", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Thomas Point 5", "place_name" : "", "community" : "Thomas Point 5", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Thomas Point 5A", "place_name" : "", "community" : "Thomas Point 5A", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Thomas Squinas Ranch 2A", "place_name" : "", "community" : "Thomas Squinas Ranch 2A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Thompson-Nicola A (Wells Gray Country)", "place_name" : "", "community" : "Thompson-Nicola A (Wells Gray Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Thompson-Nicola B (Thompson Headwaters)", "place_name" : "", "community" : "Thompson-Nicola B (Thompson Headwaters)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Thompson-Nicola E (Bonaparte Plateau)", "place_name" : "", "community" : "Thompson-Nicola E (Bonaparte Plateau)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Thompson-Nicola I (Blue Sky Country)", "place_name" : "", "community" : "Thompson-Nicola I (Blue Sky Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola J (Copper Desert Country)", "place_name" : "", "community" : "Thompson-Nicola J (Copper Desert Country)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola L (Grasslands)", "place_name" : "", "community" : "Thompson-Nicola L (Grasslands)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "place_name" : "", "community" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "place_name" : "", "community" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Thompson-Nicola O (Lower North Thompson)", "place_name" : "", "community" : "Thompson-Nicola O (Lower North Thompson)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 1"}, {"location" : "Thompson-Nicola P (Rivers and the Peaks)", "place_name" : "", "community" : "Thompson-Nicola P (Rivers and the Peaks)", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "Rural 2"}, {"location" : "Tin Wis 11", "place_name" : "", "community" : "Tin Wis 11", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tipella 7", "place_name" : "", "community" : "Tipella 7", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Tlaa Gaa Aawtlaas 28", "place_name" : "", "community" : "Tlaa Gaa Aawtlaas 28", "regional_district" : "North Coast", "economic_region" : "North Coast", "rural_category" : "N/A"}, {"location" : "Tobacco Plains 2", "place_name" : "", "community" : "Tobacco Plains 2", "regional_district" : "East Kootenay", "economic_region" : "Kootenay", "rural_category" : "N/A"}, {"location" : "Tofino", "place_name" : "", "community" : "Tofino", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Toops 3", "place_name" : "", "community" : "Toops 3", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Toosey 1", "place_name" : "", "community" : "Toosey 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Tork 7", "place_name" : "", "community" : "Tork 7", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Towdystan Lake 3", "place_name" : "", "community" : "Towdystan Lake 3", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Towinock 2", "place_name" : "", "community" : "Towinock 2", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Trail", "place_name" : "", "community" : "Trail", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 3"}, {"location" : "Trout Lake Alec 16", "place_name" : "", "community" : "Trout Lake Alec 16", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Tsahaheh 1", "place_name" : "", "community" : "Tsahaheh 1", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tsaukan 12", "place_name" : "", "community" : "Tsaukan 12", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Tsawwassen", "place_name" : "", "community" : "Tsawwassen", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Tsa Xana 18", "place_name" : "", "community" : "Tsa Xana 18", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tseatah 2", "place_name" : "", "community" : "Tseatah 2", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Tsinstikeptum 10", "place_name" : "", "community" : "Tsinstikeptum 10", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Tsinstikeptum 9", "place_name" : "", "community" : "Tsinstikeptum 9", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "T'Sou-ke", "place_name" : "", "community" : "T'Sou-ke", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tsulquate 4", "place_name" : "", "community" : "Tsulquate 4", "regional_district" : "Mount Waddington", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tsussie 6", "place_name" : "", "community" : "Tsussie 6", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tuckkwiowhum 1", "place_name" : "", "community" : "Tuckkwiowhum 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Tumbler Ridge", "place_name" : "", "community" : "Tumbler Ridge", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 2"}, {"location" : "Twoyqhalsht 16", "place_name" : "", "community" : "Twoyqhalsht 16", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Tzart-Lam 5", "place_name" : "", "community" : "Tzart-Lam 5", "regional_district" : "Cowichan Valley", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Tzeachten 13", "place_name" : "", "community" : "Tzeachten 13", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Ucluelet", "place_name" : "", "community" : "Ucluelet", "regional_district" : "Alberni-Clayoquot", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 2"}, {"location" : "Ulkatcho 13", "place_name" : "", "community" : "Ulkatcho 13", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Ulkatcho 14A", "place_name" : "", "community" : "Ulkatcho 14A", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Uncha Lake 13A", "place_name" : "", "community" : "Uncha Lake 13A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Union Bay 4", "place_name" : "", "community" : "Union Bay 4", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Unnamed 10", "place_name" : "", "community" : "Unnamed 10", "regional_district" : "Stikine", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Upper Hat Creek 1", "place_name" : "", "community" : "Upper Hat Creek 1", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Upper Nepa 6", "place_name" : "", "community" : "Upper Nepa 6", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Upper Sumas 6", "place_name" : "", "community" : "Upper Sumas 6", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Valemount", "place_name" : "", "community" : "Valemount", "regional_district" : "Fraser-Fort George", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "Vancouver", "place_name" : "", "community" : "Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Vanderhoof", "place_name" : "", "community" : "Vanderhoof", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "Rural 2"}, {"location" : "Vernon", "place_name" : "", "community" : "Vernon", "regional_district" : "North Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "Victoria", "place_name" : "", "community" : "Victoria", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "View Royal", "place_name" : "", "community" : "View Royal", "regional_district" : "Capital", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Urban 1"}, {"location" : "Village Island 1", "place_name" : "", "community" : "Village Island 1", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Waiwakum 14", "place_name" : "", "community" : "Waiwakum 14", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Warfield", "place_name" : "", "community" : "Warfield", "regional_district" : "Kootenay Boundary", "economic_region" : "Kootenay", "rural_category" : "Rural 2"}, {"location" : "Wells", "place_name" : "", "community" : "Wells", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 1"}, {"location" : "West Kelowna", "place_name" : "", "community" : "West Kelowna", "regional_district" : "Central Okanagan", "economic_region" : "Thompson/Okanagan", "rural_category" : "Urban 2"}, {"location" : "West Moberly Lake 168A", "place_name" : "", "community" : "West Moberly Lake 168A", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "N/A"}, {"location" : "West Vancouver", "place_name" : "", "community" : "West Vancouver", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Whispering Pines 4", "place_name" : "", "community" : "Whispering Pines 4", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Whistler", "place_name" : "", "community" : "Whistler", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "Rural 3"}, {"location" : "Whitecap 1", "place_name" : "", "community" : "Whitecap 1", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "White Rock", "place_name" : "", "community" : "White Rock", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "Urban 1"}, {"location" : "Whonnock 1", "place_name" : "", "community" : "Whonnock 1", "regional_district" : "Greater Vancouver", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Williams Lake", "place_name" : "", "community" : "Williams Lake", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "Rural 3"}, {"location" : "Williams Lake 1", "place_name" : "", "community" : "Williams Lake 1", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Williams Prairie Meadow 1A", "place_name" : "", "community" : "Williams Prairie Meadow 1A", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Windy Mouth 7", "place_name" : "", "community" : "Windy Mouth 7", "regional_district" : "Cariboo", "economic_region" : "Cariboo", "rural_category" : "N/A"}, {"location" : "Wochiigii Nané?", "place_name" : "", "community" : "Wochiigii Nané?", "regional_district" : "Peace River", "economic_region" : "Northeast", "rural_category" : "Rural 1"}, {"location" : "Woyenne 27", "place_name" : "", "community" : "Woyenne 27", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Yakweakwioose 12", "place_name" : "", "community" : "Yakweakwioose 12", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Yale Town 1", "place_name" : "", "community" : "Yale Town 1", "regional_district" : "Fraser Valley", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Yawaucht 11", "place_name" : "", "community" : "Yawaucht 11", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Ye Koo Che 3", "place_name" : "", "community" : "Ye Koo Che 3", "regional_district" : "Bulkley-Nechako", "economic_region" : "Nechako", "rural_category" : "N/A"}, {"location" : "Yekwaupsum 18", "place_name" : "", "community" : "Yekwaupsum 18", "regional_district" : "Squamish-Lillooet", "economic_region" : "Mainland/Southwest", "rural_category" : "N/A"}, {"location" : "Yuquot 1", "place_name" : "", "community" : "Yuquot 1", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "N/A"}, {"location" : "Zacht 5", "place_name" : "", "community" : "Zacht 5", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}, {"location" : "Zeballos", "place_name" : "", "community" : "Zeballos", "regional_district" : "Strathcona", "economic_region" : "Vancouver Island/Coast", "rural_category" : "Rural 1"}, {"location" : "Zoht 4", "place_name" : "", "community" : "Zoht 4", "regional_district" : "Thompson-Nicola", "economic_region" : "Thompson/Okanagan", "rural_category" : "N/A"}] \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.NginxData/reference/common/locations-simple.json b/applications/Unity.Tools/Unity.NginxData/reference/common/locations-simple.json index 38e8e6b8bd..69dd435d55 100644 --- a/applications/Unity.Tools/Unity.NginxData/reference/common/locations-simple.json +++ b/applications/Unity.Tools/Unity.NginxData/reference/common/locations-simple.json @@ -1 +1 @@ -{"locations":[{"name":"100 Mile House"},{"name":"105 Mile House"},{"name":"105 Mile Post 2"},{"name":"108 Mile Ranch"},{"name":"111 Mile House"},{"name":"114 Mile House"},{"name":"12 Mile"},{"name":"122 Mile House"},{"name":"127 Mile House"},{"name":"141 Mile House"},{"name":"150 Mile House"},{"name":"40 Mile Flats"},{"name":"70 Mile House"},{"name":"93 Mile"},{"name":"A:mai"},{"name":"Aa-at-sow-is"},{"name":"Abbotsford"},{"name":"Abbott Heights"},{"name":"Aberdeen - Abbotsford"},{"name":"Aberdeen - Kamloops"},{"name":"Acous"},{"name":"Adams Lake"},{"name":"Agassiz"},{"name":"Agate"},{"name":"Agats Meadow 8"},{"name":"Ah:tliish"},{"name":"Ahahswinis 1"},{"name":"Ahaminaquus 12"},{"name":"Ahbau"},{"name":"Ahousat"},{"name":"Ainsworth Hot Springs"},{"name":"Aitchelitch 9"},{"name":"Aiyansh (Kitladamas) 1"},{"name":"Aiyansh 1"},{"name":"Ak:tiis"},{"name":"Akiskinook"},{"name":"Alamo"},{"name":"Albas"},{"name":"Alberni 2"},{"name":"Alberni"},{"name":"Alberni-Clayoquot A"},{"name":"Alberni-Clayoquot B"},{"name":"Alberni-Clayoquot C"},{"name":"Alberni-Clayoquot D"},{"name":"Alberni-Clayoquot E"},{"name":"Alberni-Clayoquot F"},{"name":"Alberni-Clayoquot, Subd. A"},{"name":"Alberni-Clayoquot, Subd. B"},{"name":"Albert Flat 5"},{"name":"Albert Head"},{"name":"Albion"},{"name":"Albreda"},{"name":"Alder Creek"},{"name":"Aldergrove"},{"name":"Alert Bay - Indian reserve"},{"name":"Alert Bay - Village"},{"name":"Alert Bay 1"},{"name":"Alert Bay 1A"},{"name":"Alert Bay"},{"name":"Alexandria 1"},{"name":"Alexandria 1A"},{"name":"Alexandria 3"},{"name":"Alexandria 3A"},{"name":"Alexandria"},{"name":"Alexis 9"},{"name":"Alexis Creek 6"},{"name":"Alexis Creek 14"},{"name":"Alexis Creek 16"},{"name":"Alexis Creek 17"},{"name":"Alexis Creek 21"},{"name":"Alexis Creek 24"},{"name":"Alexis Creek 25"},{"name":"Alexis Creek 34"},{"name":"Alexis Creek"},{"name":"Aleza Lake"},{"name":"Alice Arm"},{"name":"Alice Siding"},{"name":"Alkali Lake 1"},{"name":"Alkali Lake 4A"},{"name":"Alkali Lake"},{"name":"Allenby"},{"name":"Allens Addition"},{"name":"Alliford Bay"},{"name":"Allison Lake"},{"name":"Almond Gardens Trailer Park"},{"name":"Almond Gardens"},{"name":"Alpine Meadows"},{"name":"Alpine Trailer Park"},{"name":"Alta Lake"},{"name":"Altamont"},{"name":"Altona"},{"name":"Alvin"},{"name":"Ambleside"},{"name":"Anacla 12"},{"name":"Anaconda"},{"name":"Anahim Lake"},{"name":"Anahim's Flat 1"},{"name":"Anahim's Meadow 2"},{"name":"Anahim's Meadow 2A"},{"name":"Anahim's Meadow"},{"name":"Anaqtl'a"},{"name":"Anderson"},{"name":"Andy Cahoose Meadow 16"},{"name":"Anglemont"},{"name":"Anmore"},{"name":"Anniedale"},{"name":"Annis Bay"},{"name":"Annis"},{"name":"Anvil Island"},{"name":"Anyox"},{"name":"Anzac"},{"name":"Apex Mountain"},{"name":"Appledale"},{"name":"Applegrove"},{"name":"Apsagayu 1A"},{"name":"Arbutus Ridge"},{"name":"Arbutus"},{"name":"Archibald Subdivision"},{"name":"Ardmore"},{"name":"Argenta"},{"name":"Armitage Trailer Court"},{"name":"Armstrong - Armstrong"},{"name":"Armstrong - Spallumcheen"},{"name":"Armstrong"},{"name":"Arnold"},{"name":"Arras"},{"name":"Arrow Creek"},{"name":"Arrow Creek-Lakeview"},{"name":"Arrow Park"},{"name":"Arrowhead"},{"name":"Arrowview Heights"},{"name":"Artina Trailer Court"},{"name":"Aschcroft Ranch"},{"name":"Ashcroft 4"},{"name":"Ashcroft Manor"},{"name":"Ashcroft"},{"name":"Ashnola 10"},{"name":"Ashton Creek"},{"name":"Aspen Grove"},{"name":"Aspen Mobile Trailer Court"},{"name":"Atchelitz"},{"name":"Athalmer"},{"name":"Atlin"},{"name":"Atluck"},{"name":"Atnarko"},{"name":"Attachie"},{"name":"Aupe 6"},{"name":"Aupe 6A"},{"name":"Austin Heights"},{"name":"Australian"},{"name":"Avola"},{"name":"Aywawwis 15"},{"name":"Azu Ski Village"},{"name":"B and D Trailer Court"},{"name":"Babcock Subdivision"},{"name":"Babine 6"},{"name":"Babine 16"},{"name":"Babine 17"},{"name":"Babine 25"},{"name":"Babine 6"},{"name":"Babine Lake 21B"},{"name":"Baezaeko River 25"},{"name":"Baezaeko River 26"},{"name":"Baezaeko River 27"},{"name":"Baker Creek"},{"name":"Baker"},{"name":"Baldonnel"},{"name":"Baldy Hughes"},{"name":"Balfour"},{"name":"Balmoral Beach"},{"name":"Balmoral"},{"name":"Bamberton"},{"name":"Bamfield"},{"name":"Bankeir"},{"name":"Baptiste Meadow 2"},{"name":"Bargain Harbour"},{"name":"Barkerville"},{"name":"Barlow Creek"},{"name":"Barnet"},{"name":"Barnhartvale"},{"name":"Barnston Island 3"},{"name":"Barnston Island"},{"name":"Barrett Lake"},{"name":"Barriere"},{"name":"Barrowtown"},{"name":"Basque 18"},{"name":"Bastion Bay"},{"name":"Batchelor Hills"},{"name":"Bates Beach"},{"name":"Baynes Lake"},{"name":"Bayview Estates"},{"name":"Beach Grove"},{"name":"Beachcomber Bay"},{"name":"Beachcomber"},{"name":"Bealby Point"},{"name":"Bear Camp"},{"name":"Bear Creek"},{"name":"Bear Flat"},{"name":"Bear Lake - Fraser-Fort George G"},{"name":"Bear Lake - Stikine Region"},{"name":"Bear Mountain"},{"name":"Bear River Trailer Court"},{"name":"Beard's Creek"},{"name":"Beasley"},{"name":"Beaton"},{"name":"Beatton Ranch"},{"name":"Beaver Cove"},{"name":"Beaver Creek"},{"name":"Beaver Falls"},{"name":"Beaver Lake"},{"name":"Beaver Pass House"},{"name":"Beaver Point"},{"name":"Beaverdell"},{"name":"Beaverley"},{"name":"Beban Trailer Park"},{"name":"Becher Bay 1"},{"name":"Becher Bay 2"},{"name":"Becher House"},{"name":"Bedwell Harbour"},{"name":"Belaire Estates Trailer Park"},{"name":"Belcarra"},{"name":"Bell II"},{"name":"Bella Bella 1"},{"name":"Bella Bella"},{"name":"Bella Coola 1"},{"name":"Bella Coola"},{"name":"Belle Vue Trailer Court"},{"name":"Belleview"},{"name":"Belmont Park"},{"name":"Belva's Trailer Park"},{"name":"Belvedere"},{"name":"Ben-My-Chree"},{"name":"Bennett"},{"name":"Benson Lake"},{"name":"Benvoulin"},{"name":"Beresford"},{"name":"Bergs"},{"name":"Beryl Prairie"},{"name":"Bessborough"},{"name":"Bestwick"},{"name":"Betty Creek 18"},{"name":"Bevan"},{"name":"Big Bar Creek"},{"name":"Big Bar"},{"name":"Big Bay"},{"name":"Big Creek"},{"name":"Big Eddy"},{"name":"Big Lake Ranch"},{"name":"Big White Village"},{"name":"Big White"},{"name":"Bihl' k'a 18"},{"name":"Bihlk'a 6"},{"name":"Billings Bay"},{"name":"Billings"},{"name":"Binche 2 (Pinchie 2)"},{"name":"Binche 2"},{"name":"Birch Island"},{"name":"Birchdale"},{"name":"Birchland Manor"},{"name":"Birken"},{"name":"Black Creek - Cariboo F"},{"name":"Black Creek - Comox Valley C (Puntledge - Black Creek)"},{"name":"Black Pines"},{"name":"Blackcomb"},{"name":"Blackloam"},{"name":"Blackpool"},{"name":"Blackstock Subdivision"},{"name":"Blackwater - Cariboo I"},{"name":"Blackwater - Squamish-Lillooet C"},{"name":"Blackwater Meadow 11"},{"name":"Blaeberry"},{"name":"Blakeburn"},{"name":"Blewett"},{"name":"Blind Bay"},{"name":"Blind Channel"},{"name":"Blind Creek 6"},{"name":"Bliss Landing"},{"name":"Bloedel"},{"name":"Blowhole"},{"name":"Blubber Bay"},{"name":"Blucher Hall"},{"name":"Blue Hills"},{"name":"Blue River"},{"name":"Blue Springs"},{"name":"Blueberry Creek"},{"name":"Blueberry Farm"},{"name":"Blueberry River 205"},{"name":"Blueridge"},{"name":"Boat Basin"},{"name":"Boat Harbour"},{"name":"Bob Quinn Lake"},{"name":"Bold Point"},{"name":"Bonaparte 3"},{"name":"Bonaventure Trailer Park"},{"name":"Bonnet Hill"},{"name":"Bonnington Falls"},{"name":"Boothroyd (Part) 8A"},{"name":"Boothroyd 13"},{"name":"Boothroyd 5A"},{"name":"Boothroyd 8A"},{"name":"Boothroyd"},{"name":"Boring Ranch"},{"name":"Boston Bar 1A"},{"name":"Boston Bar"},{"name":"Boston Flats"},{"name":"Boswell - Central Coast A"},{"name":"Boswell - Central Kootenay A"},{"name":"Bouchie Lake"},{"name":"Boulder City"},{"name":"Boundary Bay"},{"name":"Boundary Falls"},{"name":"Bowen Bay"},{"name":"Bowen Island Trust"},{"name":"Bowen Island"},{"name":"Bowron Lake"},{"name":"Bowser"},{"name":"Box Lake"},{"name":"Brackendale"},{"name":"Bradner"},{"name":"Brady Ranch"},{"name":"Braeloch"},{"name":"Braemar Heights"},{"name":"Braeside"},{"name":"Bralorne"},{"name":"Brandon"},{"name":"Brauns Island"},{"name":"Brem River"},{"name":"Brennan Creek"},{"name":"Brentwood Bay"},{"name":"Brentwood Park"},{"name":"Brew Bay"},{"name":"Brexton"},{"name":"Briar Ridge"},{"name":"Bridal Falls"},{"name":"Bridesville"},{"name":"Bridge Lake"},{"name":"Bridge River 1"},{"name":"Bridgeview"},{"name":"Brigade Lake"},{"name":"Brighouse"},{"name":"Brighton Beach"},{"name":"Brilliant"},{"name":"Brisco"},{"name":"Britannia Beach"},{"name":"British Properties"},{"name":"Broadmoor"},{"name":"Broadview Villa"},{"name":"Broadview"},{"name":"Brocklehurst"},{"name":"Broman Lake"},{"name":"Brookfield Trailers"},{"name":"Brookmere"},{"name":"Brookswood"},{"name":"Brouse"},{"name":"Brown Road Trailer Park"},{"name":"Browns Bay"},{"name":"Brunette Creek"},{"name":"Brunswick Beach"},{"name":"Brunswick"},{"name":"Buccaneer Bay"},{"name":"Buckhorn"},{"name":"Buckingham Heights"},{"name":"Buckinghorse River"},{"name":"Buckley Bay"},{"name":"Bucktum 4"},{"name":"Buena Vista Estates"},{"name":"Buffalo Creek"},{"name":"Buick"},{"name":"Bulkley House"},{"name":"Bulkley River 19"},{"name":"Bulkley-Nechako A"},{"name":"Bulkley-Nechako B"},{"name":"Bulkley-Nechako C"},{"name":"Bulkley-Nechako D"},{"name":"Bulkley-Nechako E"},{"name":"Bulkley-Nechako F"},{"name":"Bulkley-Nechako G"},{"name":"Bulkley-Nechako, Subd. A"},{"name":"Bulkley-Nechako, Subd. B"},{"name":"Bulkley-Nechako, Subd. C"},{"name":"Bull Harbour"},{"name":"Bull River"},{"name":"Bummers Flat 6"},{"name":"Buntzen Bay"},{"name":"Burkeville"},{"name":"Burnaby Heights"},{"name":"Burnaby"},{"name":"Burns Lake 18"},{"name":"Burns Lake"},{"name":"Burnt Flats"},{"name":"Burquitlam"},{"name":"Burrard Inlet 3"},{"name":"Burton"},{"name":"Butedale"},{"name":"Cache Creek Campground"},{"name":"Cache Creek"},{"name":"Cadboro Bay"},{"name":"Caesars"},{"name":"Cahilty"},{"name":"Cahoose 8"},{"name":"Cahoose 10"},{"name":"Cahoose 12"},{"name":"Caithness Trailer Court"},{"name":"Caithness"},{"name":"Callison Ranch"},{"name":"Cambie-Solsqua"},{"name":"Camborne"},{"name":"Cameron Bar 13"},{"name":"Cameron Heights"},{"name":"Camp Artaban"},{"name":"Camp Homewood"},{"name":"Camp McKinney"},{"name":"Campbell Creek"},{"name":"Campbell Island"},{"name":"Campbell River 11"},{"name":"Campbell River"},{"name":"Campbellton"},{"name":"Canal Flats"},{"name":"Canford"},{"name":"Canim Lake 1"},{"name":"Canim Lake 2"},{"name":"Canim Lake 4"},{"name":"Canim Lake"},{"name":"Canoe Creek 1"},{"name":"Canoe Creek 2"},{"name":"Canoe Creek 3"},{"name":"Canoe"},{"name":"Canyon Alpine"},{"name":"Canyon Heights"},{"name":"Canyon Hot Springs"},{"name":"Canyon Trailer Park"},{"name":"Canyon"},{"name":"Cape Mudge 10"},{"name":"Capilano 5"},{"name":"Capilano Highlands"},{"name":"Capital B"},{"name":"Capital D"},{"name":"Capital, Subd. A"},{"name":"Capital, Subd. B"},{"name":"Capital, Subd. C"},{"name":"Capital, Subd. D"},{"name":"Capitol Hill"},{"name":"Cariboo - Cariboo C"},{"name":"Cariboo - Coquitlam"},{"name":"Cariboo A"},{"name":"Cariboo B"},{"name":"Cariboo C"},{"name":"Cariboo D"},{"name":"Cariboo E"},{"name":"Cariboo F"},{"name":"Cariboo G"},{"name":"Cariboo H"},{"name":"Cariboo I"},{"name":"Cariboo J"},{"name":"Cariboo K"},{"name":"Cariboo L"},{"name":"Cariboo Meadows"},{"name":"Cariboo, Subd. A"},{"name":"Cariboo, Subd. B"},{"name":"Cariboo, Subd. C"},{"name":"Carlin"},{"name":"Carlson"},{"name":"Carmi Subdivision"},{"name":"Carmi"},{"name":"Carnaby"},{"name":"Carraholly"},{"name":"Carrolls Landing"},{"name":"Carrs Landing"},{"name":"Carrs"},{"name":"Carson"},{"name":"Cascade - Belcarra"},{"name":"Cascade - Kootenay Boundary C / Christina Lake"},{"name":"Cascade Heights"},{"name":"Casimiel Meadows 15A"},{"name":"Casino"},{"name":"Cassiar"},{"name":"Cassidy Mobile Home Park"},{"name":"Cassidy"},{"name":"Cassimayooks (Mayook) 5"},{"name":"Cassin"},{"name":"Castle Rock"},{"name":"Castledale"},{"name":"Castlegar"},{"name":"Caulfeild"},{"name":"Cawston"},{"name":"Caycuse"},{"name":"Cayoosh Creek 1"},{"name":"Cecil Lake"},{"name":"Cedar By The Sea"},{"name":"Cedar Creek Mobile Home Park"},{"name":"Cedar Grove"},{"name":"Cedar Heights Estates"},{"name":"Cedar"},{"name":"Cedardale"},{"name":"Cedarside"},{"name":"Cedarvale"},{"name":"Ceepeecee"},{"name":"Celista"},{"name":"Central Coast A"},{"name":"Central Coast C"},{"name":"Central Coast D"},{"name":"Central Coast E"},{"name":"Central Coast, Subd. A"},{"name":"Central Fraser Valley, Subd. A"},{"name":"Central Kootenay A"},{"name":"Central Kootenay B"},{"name":"Central Kootenay C"},{"name":"Central Kootenay D"},{"name":"Central Kootenay E"},{"name":"Central Kootenay F"},{"name":"Central Kootenay G"},{"name":"Central Kootenay H"},{"name":"Central Kootenay I"},{"name":"Central Kootenay J"},{"name":"Central Kootenay K"},{"name":"Central Kootenay, Subd. A"},{"name":"Central Kootenay, Subd. B"},{"name":"Central Kootenay, Subd. C"},{"name":"Central Okanagan G"},{"name":"Central Okanagan H"},{"name":"Central Okanagan J"},{"name":"Central Okanagan West"},{"name":"Central Okanagan"},{"name":"Central Okanagan, Subd. A"},{"name":"Central Okanagan, Subd. B"},{"name":"Central Saanich"},{"name":"Centreville"},{"name":"Cha cha tsi tsi us"},{"name":"Chaatl"},{"name":"Chain Lake"},{"name":"Chamiss Bay"},{"name":"Channel Ridge"},{"name":"Chap-is"},{"name":"Chapman Camp"},{"name":"Chapmans"},{"name":"Chapperon Ranch"},{"name":"Charella Garden"},{"name":"Charley Boy's Meadow 3"},{"name":"Charlie Lake"},{"name":"Charlotte Lake"},{"name":"Chase River"},{"name":"Chase"},{"name":"Chasm"},{"name":"Chateau Village Trailer Court"},{"name":"Chaumox 11"},{"name":"Chaumox"},{"name":"Chawathil 4"},{"name":"Cheakamus 11"},{"name":"Cheakamus"},{"name":"Cheam 1"},{"name":"Cheam View"},{"name":"Cheekye"},{"name":"Chehalis 5"},{"name":"Chekwelp 26"},{"name":"Chekwelp 26A"},{"name":"Chemainus 13"},{"name":"Chemainus"},{"name":"Chenahkint 12"},{"name":"Chenatha"},{"name":"Chequis"},{"name":"Cherry Creek - Alberni-Clayoquot F"},{"name":"Cherry Creek - Thompson-Nicola J (Copper Desert Country)"},{"name":"Cherryville"},{"name":"Ches-la-kee 3"},{"name":"Cheslatta 1"},{"name":"Cheslatta"},{"name":"Chetarpe"},{"name":"Chetwynd"},{"name":"Chezacut"},{"name":"Chicoltin Estates Trailer Park"},{"name":"Chilanko Forks"},{"name":"Chilco Lake 1"},{"name":"Chilco Lake 1A"},{"name":"Chilcotin Forest"},{"name":"Chilhil 6"},{"name":"Chilliwack"},{"name":"Chilton Subdivision"},{"name":"Chimney Valley"},{"name":"Chineside"},{"name":"Chinook Cove"},{"name":"Chinook Mobile Home Park"},{"name":"Choate"},{"name":"Chopaka 7 & 8"},{"name":"Chopaka"},{"name":"Christian Valley"},{"name":"Christina Lake"},{"name":"Chu Chua"},{"name":"Chuchhraischin"},{"name":"Chuchhriaschin 5"},{"name":"Chuchhriaschin 5A"},{"name":"Chuchuwayha 2"},{"name":"Chum Creek 2"},{"name":"Chumata"},{"name":"Church House"},{"name":"Chute Lake"},{"name":"Cinema"},{"name":"Cinnabar Valley"},{"name":"City of West Kelowna"},{"name":"Clairmont"},{"name":"Clakamucus 2"},{"name":"Claoose 4"},{"name":"Clapperton"},{"name":"Claremont Subdivision"},{"name":"Clayburn"},{"name":"Clayhurst"},{"name":"Clayoquot"},{"name":"Cleagh Creek"},{"name":"Clearbrook"},{"name":"Clearwater Trailer Park"},{"name":"Clearwater"},{"name":"Clem Clem"},{"name":"Clemretta"},{"name":"Cleveland Park"},{"name":"Clinton"},{"name":"Clo-oose"},{"name":"Clover Acres Mobile Villa"},{"name":"Cloverdale"},{"name":"Clutus"},{"name":"Coal Harbour"},{"name":"Coal River"},{"name":"Coalmont"},{"name":"Cobble Hill"},{"name":"Cody"},{"name":"Coffin Point"},{"name":"Coglistiko River 29"},{"name":"Cokato"},{"name":"Coldspring House"},{"name":"Coldstream Ranch"},{"name":"Coldstream"},{"name":"Coldwater 1"},{"name":"Coldwell Beach"},{"name":"Cole Bay 3"},{"name":"College Heights"},{"name":"Collettville"},{"name":"Colleymount"},{"name":"Colquitz"},{"name":"Columbia Gardens"},{"name":"Columbia Lake 3"},{"name":"Columbia Lake Resort Trailer Park"},{"name":"Columbia-Shuswap A"},{"name":"Columbia-Shuswap B"},{"name":"Columbia-Shuswap C"},{"name":"Columbia-Shuswap D"},{"name":"Columbia-Shuswap E"},{"name":"Columbia-Shuswap F"},{"name":"Columbia-Shuswap, Subd. A"},{"name":"Columbia-Shuswap, Subd. B"},{"name":"Columbia-Shuswap, Subd. C"},{"name":"Columere Park"},{"name":"Colwood"},{"name":"Comer Hill Trailer Park"},{"name":"Comiaken"},{"name":"Commodore Heights"},{"name":"Comox 1"},{"name":"Comox Valley A"},{"name":"Comox Valley B (Lazo North)"},{"name":"Comox Valley C (Puntledge - Black Creek)"},{"name":"Comox"},{"name":"Comox-Strathcona A"},{"name":"Comox-Strathcona B"},{"name":"Comox-Strathcona C"},{"name":"Comox-Strathcona D"},{"name":"Comox-Strathcona G"},{"name":"Comox-Strathcona H"},{"name":"Comox-Strathcona I"},{"name":"Comox-Strathcona J"},{"name":"Comox-Strathcona K"},{"name":"Comox-Strathcona, Subd. A"},{"name":"Comox-Strathcona, Subd. B"},{"name":"Comox-Strathcona, Subd. C"},{"name":"Comox-Strathcona, Subd. D"},{"name":"Compton Island 6"},{"name":"Connaught Heights"},{"name":"Coombe"},{"name":"Coombs Trailer Park"},{"name":"Coombs"},{"name":"Cooper Creek"},{"name":"Copper City"},{"name":"Copper Cove"},{"name":"Copper Creek"},{"name":"Copper Mountain"},{"name":"Coquitlam 1"},{"name":"Coquitlam 2"},{"name":"Coquitlam"},{"name":"Coral Beach"},{"name":"Corbin"},{"name":"Cordova Bay"},{"name":"Cornwall Lodge Trailer Park"},{"name":"Corra Linn"},{"name":"Cortes Bay"},{"name":"Coryatsaqua (Moricetown) 2"},{"name":"Coryville"},{"name":"Cosy Cove"},{"name":"Cottonwood Trailer Park"},{"name":"Cottonwood"},{"name":"Couldwell Subdivision"},{"name":"Country Lane Park"},{"name":"Country Side Estates Trailer Court"},{"name":"Courtenay"},{"name":"Coutlee"},{"name":"Cove Cliff"},{"name":"Cowans Point"},{"name":"Cowichan 1"},{"name":"Cowichan 9"},{"name":"Cowichan Bay"},{"name":"Cowichan Lake"},{"name":"Cowichan Station"},{"name":"Cowichan Valley A"},{"name":"Cowichan Valley B"},{"name":"Cowichan Valley C"},{"name":"Cowichan Valley D"},{"name":"Cowichan Valley E"},{"name":"Cowichan Valley F"},{"name":"Cowichan Valley G"},{"name":"Cowichan Valley H"},{"name":"Cowichan Valley I"},{"name":"Cowichan Valley, Subd. A"},{"name":"Cowichan Valley, Subd. B"},{"name":"Cowichan Valley, Subd. C"},{"name":"Cowichan Valley, Subd. D"},{"name":"Cowichan"},{"name":"Coyle"},{"name":"Cracroft"},{"name":"Craigellachie"},{"name":"Craigs Trailer Court"},{"name":"Cranberry Junction"},{"name":"Cranberry"},{"name":"Cranbrook Trailer Court"},{"name":"Cranbrook"},{"name":"Crawford Bay"},{"name":"Creekside Trailer Park"},{"name":"Creekside"},{"name":"Creighton Valley"},{"name":"Crescent Bay - Central Kootenay F"},{"name":"Crescent Bay - Central Kootenay K"},{"name":"Crescent Beach - Okanagan-Similkameen F"},{"name":"Crescent Beach - Surrey"},{"name":"Crescent Spur"},{"name":"Crescent Valley"},{"name":"Crescent"},{"name":"Crest-A-Way"},{"name":"Creston 1"},{"name":"Creston Valley Mobile Park"},{"name":"Creston Wyndle Road"},{"name":"Creston"},{"name":"Crestwood Subdivision"},{"name":"Criss Creek"},{"name":"Crofton"},{"name":"Crotteau Subdivision"},{"name":"Crowsnest"},{"name":"Croydon"},{"name":"Cultus Lake Estates Mobile Home Park"},{"name":"Cultus Lake"},{"name":"Cumberland"},{"name":"Cumshewa"},{"name":"Curzon"},{"name":"Cypress Park"},{"name":"D'Arcy"},{"name":"Dadens"},{"name":"Dallas"},{"name":"Danskin"},{"name":"Darfield"},{"name":"Darrell Bay"},{"name":"Dartmoor"},{"name":"Dashwood"},{"name":"Davis Bay"},{"name":"Dawson Creek"},{"name":"Dawsons Landing"},{"name":"Day's Subdivision"},{"name":"Days Ranch"},{"name":"De Courcy Island"},{"name":"Dead Point 5"},{"name":"Deadtree Point"},{"name":"Deadwood"},{"name":"Dease Lake 9"},{"name":"Dease Lake"},{"name":"Dease River 1"},{"name":"Decker Lake"},{"name":"Deekyakus"},{"name":"Deep Bay"},{"name":"Deep Cove - North Saanich"},{"name":"Deep Cove - North Vancouver - District municipality"},{"name":"Deep Creek 2"},{"name":"Deep Creek"},{"name":"Deer Park"},{"name":"Deerholme"},{"name":"Defot"},{"name":"Deka Lake Subdivision"},{"name":"Deka Lake"},{"name":"Del Oro Subdivision"},{"name":"Delbrook"},{"name":"Delkatla"},{"name":"Delta"},{"name":"Denman Island"},{"name":"Dentville"},{"name":"Departure Bay"},{"name":"Deroche"},{"name":"Devine"},{"name":"Dewdney"},{"name":"Dewdney-Alouette, Subd. A"},{"name":"Dibble Subdivision"},{"name":"Digby Island"},{"name":"Dochsupple"},{"name":"Dodge Cove"},{"name":"Doe River"},{"name":"Dog Creek - Bulkley-Nechako F"},{"name":"Dog Creek - Cariboo E"},{"name":"Dog Creek 1"},{"name":"Dog Creek 2"},{"name":"Dogpatch"},{"name":"Dogwood Valley"},{"name":"Doig River 206"},{"name":"Doig River"},{"name":"Dokie Siding"},{"name":"Dokkie Subdivision"},{"name":"Dolan Road Subdivision"},{"name":"Dollarton"},{"name":"Dolphin Beach Estates"},{"name":"Dolphin Beach"},{"name":"Dolphin Island 1"},{"name":"Dome Creek"},{"name":"Don's Trailer Court"},{"name":"Donald Landing"},{"name":"Donald"},{"name":"Donnely Landing"},{"name":"Dookqua"},{"name":"Dorcas Point"},{"name":"Doriston"},{"name":"Dorreen"},{"name":"Douglas 8"},{"name":"Douglas Hill Estates"},{"name":"Douglas Lake 3"},{"name":"Douglas Lake"},{"name":"Douglas"},{"name":"Dove Creek"},{"name":"Dragon Lake 3"},{"name":"Drew Harbour"},{"name":"Driftwood Creek"},{"name":"Dry Gulch"},{"name":"Duck Lake 7"},{"name":"Duck Range"},{"name":"Dufferin"},{"name":"Dugan Lake"},{"name":"Dunbar-Southlands"},{"name":"Duncan Bay"},{"name":"Duncan Lake 2"},{"name":"Duncan"},{"name":"Duncanby Landing"},{"name":"Dundarave"},{"name":"Dunkley"},{"name":"Dunsmuir"},{"name":"Dunster"},{"name":"Durieu"},{"name":"Dutch Creek Subdivision"},{"name":"Dutch Lake Resort"},{"name":"Dutch Lake Subdivision"},{"name":"Dutch Lake Trailer Park"},{"name":"Dutch Lake"},{"name":"Dzitline Lee 9"},{"name":"Eagle Bay Estates Subdivision"},{"name":"Eagle Bay"},{"name":"Eagle Bluff"},{"name":"Eagle Creek"},{"name":"Eagle Harbour"},{"name":"Eagle Heights"},{"name":"Eagle Ridge"},{"name":"Eagle Rock Trailer Park"},{"name":"Eagle Run"},{"name":"Earls Cove"},{"name":"East Arrow Park"},{"name":"East Gate - Columbia-Shuswap A"},{"name":"East Gate - Okanagan-Similkameen H"},{"name":"East Kelowna"},{"name":"East Kootenay A"},{"name":"East Kootenay B"},{"name":"East Kootenay C"},{"name":"East Kootenay E"},{"name":"East Kootenay F"},{"name":"East Kootenay G"},{"name":"East Kootenay, Subd. A"},{"name":"East Kootenay, Subd. B"},{"name":"East Kootenay, Subd. C"},{"name":"East Moberly Lake 169"},{"name":"East Osoyoos"},{"name":"East Pine"},{"name":"East Saanich 2"},{"name":"East Sooke"},{"name":"East Trail"},{"name":"East Wellington"},{"name":"Eastbourne"},{"name":"Eastburn"},{"name":"Eastgate"},{"name":"Echo Bay"},{"name":"Ecoole"},{"name":"Eddontenajon"},{"name":"Eddy"},{"name":"Edelweiss"},{"name":"Edgewater"},{"name":"Edgewood Trailer Court"},{"name":"Edgewood"},{"name":"Egmont"},{"name":"Ehatis 11"},{"name":"Ehatisaht"},{"name":"Eholt"},{"name":"Ekins Point"},{"name":"Elephant Crossing"},{"name":"Eleven Mile Site"},{"name":"Elgin"},{"name":"Elhlateese 2"},{"name":"Elk Bay"},{"name":"Elk Prairie"},{"name":"Elk Valley Trailer Court"},{"name":"Elkford"},{"name":"Elko"},{"name":"Ellison"},{"name":"Ellsworth Trailer Camp"},{"name":"Elphinstone"},{"name":"Endako"},{"name":"Enderby 2"},{"name":"Enderby"},{"name":"Engen"},{"name":"Engineer"},{"name":"Enterprise"},{"name":"Entlqwekkinh 19"},{"name":"Erickson"},{"name":"Erie"},{"name":"Errington"},{"name":"Esler"},{"name":"Esowista 3"},{"name":"Esperanza"},{"name":"Espinosa Inlet"},{"name":"Esquimalt - District municipality"},{"name":"Esquimalt - Indian reserve"},{"name":"Essondale"},{"name":"Est-Patrolas 4"},{"name":"Estevan Point"},{"name":"Euchinico Creek 17"},{"name":"Evergreen Acres - Clearwater"},{"name":"Evergreen Acres - Peace River B"},{"name":"Evergreen Trailer Park"},{"name":"Ewing"},{"name":"Exeter"},{"name":"Exlou"},{"name":"Extension"},{"name":"Fair Harbour"},{"name":"Fairbridge"},{"name":"Fairfield - Chilliwack"},{"name":"Fairfield - Victoria"},{"name":"Fairmont Hot Springs"},{"name":"Fairview - Okanagan-Similkameen C"},{"name":"Fairview - Vancouver"},{"name":"Fairview Subdivision"},{"name":"Fairwinds"},{"name":"Falkland"},{"name":"Fallsway"},{"name":"False Bay"},{"name":"Fanny Bay - Comox Valley A"},{"name":"Fanny Bay - Strathcona C"},{"name":"Farmington"},{"name":"Farrell Creek"},{"name":"Fauquier"},{"name":"Federal Ranch"},{"name":"Fellers Heights"},{"name":"Ferguson"},{"name":"Fern Ridge"},{"name":"Ferndale"},{"name":"Fernie"},{"name":"Fernlee"},{"name":"Fernwood"},{"name":"Field"},{"name":"Fife"},{"name":"Fifth Cabin"},{"name":"Finlay River 6"},{"name":"Fintry"},{"name":"Fireside"},{"name":"Firvale"},{"name":"Fishtrap 19"},{"name":"Five Mile Point 3"},{"name":"Five Mile Point 3"},{"name":"Five Mile"},{"name":"Flathead"},{"name":"Flatrock"},{"name":"Flats"},{"name":"Fleetwood"},{"name":"Floods"},{"name":"Fontas 1 - Northern Rockies"},{"name":"Fontas 1"},{"name":"Fontas"},{"name":"Forde"},{"name":"Foreman"},{"name":"Forest Grove Trailer Park"},{"name":"Forest Grove"},{"name":"Forest Hills"},{"name":"Forest Knolls"},{"name":"Forest Lawn Trailer Court"},{"name":"Forestdale"},{"name":"Forestglade Trailer Park"},{"name":"Fort Babine"},{"name":"Fort Fraser"},{"name":"Fort George (Shelley) 2"},{"name":"Fort George 2"},{"name":"Fort Langley"},{"name":"Fort Nelson 2"},{"name":"Fort Nelson"},{"name":"Fort Nelson-Liard, Subd. A"},{"name":"Fort Rupert 1"},{"name":"Fort Rupert"},{"name":"Fort St. James"},{"name":"Fort St. John"},{"name":"Fort Steele"},{"name":"Fort Ware 1"},{"name":"Fort Ware"},{"name":"Fosthall"},{"name":"Fountain 1"},{"name":"Fountain 3"},{"name":"Fountain 1"},{"name":"Fountain 10"},{"name":"Fountain 11"},{"name":"Fountain 12"},{"name":"Fountain 1B"},{"name":"Fountain 1D"},{"name":"Fountain 3"},{"name":"Fountain 3A"},{"name":"Fountain Creek 8"},{"name":"Fountain Valley"},{"name":"Fountain"},{"name":"Fourth Cabin"},{"name":"Fourways Trailer Park"},{"name":"Fowler"},{"name":"Fox Mountain"},{"name":"Frames"},{"name":"Francis Peninsula"},{"name":"Francois Lake 7"},{"name":"Franklin Camp"},{"name":"Franks 10"},{"name":"François Lake"},{"name":"Fraser Heights"},{"name":"Fraser Lake"},{"name":"Fraser Mills"},{"name":"Fraser Valley A"},{"name":"Fraser Valley B"},{"name":"Fraser Valley C"},{"name":"Fraser Valley D"},{"name":"Fraser Valley E"},{"name":"Fraser Valley F"},{"name":"Fraser Valley G"},{"name":"Fraser Valley H"},{"name":"Fraser Valley, Subd. A"},{"name":"Fraser Valley, Subd. B"},{"name":"Fraser Valley, Subd. C"},{"name":"Fraser Valley, Subd. D"},{"name":"Fraser Valley, Subd. E"},{"name":"Fraser"},{"name":"Fraser-Fort George A"},{"name":"Fraser-Fort George C"},{"name":"Fraser-Fort George D"},{"name":"Fraser-Fort George E"},{"name":"Fraser-Fort George F"},{"name":"Fraser-Fort George G"},{"name":"Fraser-Fort George H"},{"name":"Fraser-Fort George, Subd. A"},{"name":"Fraser-Fort George, Subd. B"},{"name":"Freeport Trailer Park"},{"name":"French Creek"},{"name":"Fruitvale"},{"name":"Fry Creek"},{"name":"Fulford Harbour"},{"name":"Furry Creek"},{"name":"Gabriola Island Trust Area part A"},{"name":"Gabriola Island"},{"name":"Gabriola"},{"name":"Galena Bay"},{"name":"Galena"},{"name":"Galiano Island 9"},{"name":"Gallagher Lake"},{"name":"Galloway"},{"name":"Gambier Harbour"},{"name":"Gambier Island"},{"name":"Gang Ranch"},{"name":"Ganges"},{"name":"Garden 2"},{"name":"Garden 2A"},{"name":"Garden Bay"},{"name":"Garden Village"},{"name":"Garden"},{"name":"Gardner Lake Mobile Home Park"},{"name":"Garibaldi Estates"},{"name":"Garibaldi"},{"name":"Garnet Rock Trailer Court"},{"name":"Garnet Valley"},{"name":"Garry Oaks"},{"name":"Gates"},{"name":"Gateway"},{"name":"Gellatly"},{"name":"Genelle"},{"name":"Genoa Bay"},{"name":"George River"},{"name":"Georgetown Mills"},{"name":"Germansen Landing"},{"name":"Gerow Island"},{"name":"Gerrard"},{"name":"Gibson Creek"},{"name":"Gibsons"},{"name":"Gifford"},{"name":"Gillies Bay"},{"name":"Gilpin"},{"name":"Gingolx"},{"name":"Giscome"},{"name":"Gitanmaax 1"},{"name":"Gitanyow 1"},{"name":"Gitanyow"},{"name":"Gitlaxksiip"},{"name":"Gitsegukla 1"},{"name":"Gitwangak 1"},{"name":"Gitwinksihlkw 7"},{"name":"Gitwinksihlkw"},{"name":"Gitzault 24"},{"name":"Glacier Gulch"},{"name":"Glade"},{"name":"Gladwin Trailer Court"},{"name":"Glen Lake"},{"name":"Glen Valley"},{"name":"Glen Vowell"},{"name":"Glen-Gla-Ouch 5"},{"name":"Glenannan"},{"name":"Glenbank"},{"name":"Glenbrooke North"},{"name":"Glendale"},{"name":"Gleneagles"},{"name":"Gleneden"},{"name":"Glenemma"},{"name":"Glenlily"},{"name":"Glenmerry"},{"name":"Glenmore"},{"name":"Glenora - Cowichan Valley E"},{"name":"Glenora - Kitimat-Stikine D"},{"name":"Glenrosa"},{"name":"Glentanna"},{"name":"Glimpse Lake"},{"name":"Gold Bridge"},{"name":"Gold River"},{"name":"Golden"},{"name":"Goldstream"},{"name":"Good Hope Lake"},{"name":"Good Hope"},{"name":"Goodlow"},{"name":"Goose Bay"},{"name":"Gordon Head"},{"name":"Gordon River 2"},{"name":"Gordon River"},{"name":"Gorge Harbour"},{"name":"Gossen Creek"},{"name":"Gossip Island"},{"name":"Gowlland Harbour"},{"name":"Graffunder Trailer Park"},{"name":"Gramsons"},{"name":"Grand Forks"},{"name":"Grand Haven"},{"name":"Grand Rapids"},{"name":"Granduc"},{"name":"Grandview Bench"},{"name":"Grandview"},{"name":"Grandview-Woodlands"},{"name":"Granisle"},{"name":"Granite Bay"},{"name":"Granite Falls"},{"name":"Granite Trailer Park"},{"name":"Granite"},{"name":"Grantham"},{"name":"Granthams Landing"},{"name":"Grasmere"},{"name":"Grassy Plains"},{"name":"Gravelle Ferry"},{"name":"Gray Creek"},{"name":"Great Central Lake"},{"name":"Great Central"},{"name":"Greata"},{"name":"Greater Vancouver A"},{"name":"Greater Vancouver C"},{"name":"Greater Vancouver, Subd. A"},{"name":"Green Acres Trailer Park - Central Kootenay J"},{"name":"Green Acres Trailer Park - Columbia-Shuswap E"},{"name":"Green Bay Resort"},{"name":"Green Cove"},{"name":"Greendale"},{"name":"Greenwood Mobile Park"},{"name":"Greenwood"},{"name":"Grindrod"},{"name":"Groundbirch"},{"name":"Guhthe Tah 12"},{"name":"Guildford"},{"name":"Gun Lake"},{"name":"Gundy"},{"name":"Gwayasdums 1"},{"name":"Hagensborg"},{"name":"Hagwilget 1"},{"name":"Hagwilget"},{"name":"Haig"},{"name":"Haina"},{"name":"Halalt 2"},{"name":"Halfmoon Bay"},{"name":"Halfway Graham Subdivision"},{"name":"Halfway Ranch"},{"name":"Halfway River 168"},{"name":"Halhalaeden 14"},{"name":"Halhalaeden 14A"},{"name":"Halhalaeden"},{"name":"Hall"},{"name":"Halyn Trailer Court"},{"name":"Hamilton Creek 2"},{"name":"Hamilton Creek 7"},{"name":"Hanbury"},{"name":"Hanceville"},{"name":"Haney"},{"name":"Happy Valley Trailer Park"},{"name":"Happy Valley"},{"name":"Harbour Chines"},{"name":"Harbour Village"},{"name":"Hardwicke Island"},{"name":"Harmac"},{"name":"Harmony Heights Trailer Park"},{"name":"Harris 3"},{"name":"Harrison Hot Springs"},{"name":"Harrison Mills"},{"name":"Harrogate"},{"name":"Harrop"},{"name":"Hart Highlands"},{"name":"Hartley Bay"},{"name":"Harwood Island 2"},{"name":"Hasler Flat"},{"name":"Hasler Flats Subdivision"},{"name":"Hastings-Sunrise"},{"name":"Hatzic"},{"name":"Hawkins Lake Subdivision"},{"name":"Hayview Mobile Home"},{"name":"Hayward Subdivision"},{"name":"Hazelmere"},{"name":"Hazelton"},{"name":"Headquarters"},{"name":"Headwaters Ranch"},{"name":"Health Bay"},{"name":"Hecate"},{"name":"Hedley"},{"name":"Heffley Creek"},{"name":"Hells Gate"},{"name":"Hemlock Valley"},{"name":"Hendrix Lake"},{"name":"Henry And Ann Trailer Park"},{"name":"Heriot Bay"},{"name":"Hesquiat 1"},{"name":"Hesquiat"},{"name":"Heydon Bay"},{"name":"Hi'tatis"},{"name":"Hickethier Ranch"},{"name":"Hideway Trailer Court"},{"name":"High Bar 1"},{"name":"Highland Valley Subdivision"},{"name":"Highlands"},{"name":"Hiina'is"},{"name":"Hillcrest"},{"name":"Hilliers"},{"name":"Hills"},{"name":"Hillside Mobile Home Park"},{"name":"Hilltop Ranch"},{"name":"Hippa"},{"name":"Hisnit"},{"name":"Hitacu"},{"name":"Hiusta Meadow"},{"name":"Hixon"},{"name":"Hkusam"},{"name":"Holachten 8"},{"name":"Holberg"},{"name":"Holiday Family Trailer Park"},{"name":"Hollyburn"},{"name":"Holmwood"},{"name":"Homalco 9"},{"name":"Homestead Trailer Park"},{"name":"Homfray Creek"},{"name":"Honeymoon Bay"},{"name":"Honeymoon Creek"},{"name":"Hoo-ii"},{"name":"Hoodoos"},{"name":"Hope Bay"},{"name":"Hope Island 1"},{"name":"Hope"},{"name":"Hopetown 10A"},{"name":"Hopetown"},{"name":"Hopington"},{"name":"Hopkins Landing"},{"name":"Horlick Point"},{"name":"Hornby Island"},{"name":"Horsefly"},{"name":"Horseshoe Bay"},{"name":"Hosmatqts'os"},{"name":"Hosmer Trailer Park"},{"name":"Hosmer"},{"name":"Hospital Hill"},{"name":"Hot Springs Cove"},{"name":"Houpsitas 6"},{"name":"Houpsitas"},{"name":"Houston Trailer Court"},{"name":"Houston"},{"name":"Howser"},{"name":"Hu'ul"},{"name":"Hudson Hope"},{"name":"Hudson's Hope"},{"name":"Hullcar"},{"name":"Humpback Bay"},{"name":"Huntingdon"},{"name":"Hunts Inlet"},{"name":"Hupel"},{"name":"Huscroft"},{"name":"Hustalen 1"},{"name":"Hutchinson"},{"name":"Hyacinthe Bay"},{"name":"Hyde Creek"},{"name":"Hydraulic"},{"name":"Hyland Post"},{"name":"Hyland Ranch"},{"name":"Idabel Lake"},{"name":"Indian Rock"},{"name":"Ingenika Mine"},{"name":"Ingenika Point"},{"name":"Inkahtsaph 6"},{"name":"Inkaneep"},{"name":"Inkluckcheen 21"},{"name":"Inkluckcheen 21B"},{"name":"Inkluckcheen"},{"name":"Inklyuhkinatko 2"},{"name":"Invermere"},{"name":"Ioco"},{"name":"Iron Bay"},{"name":"Iron Mask Trailer Park"},{"name":"Irvines Landing"},{"name":"Isaac (Gale Lake) 8"},{"name":"Isidore's Ranch 4"},{"name":"Iskut 6"},{"name":"Iskut"},{"name":"Island Cache"},{"name":"Isle Pierre"},{"name":"Ittatsoo 1"},{"name":"Ivy Green Mobile Home Park"},{"name":"Jackfish Lake Subdivision"},{"name":"Jackman"},{"name":"Jackpine Flats"},{"name":"Jackson Bay"},{"name":"Jacksons"},{"name":"Jade City"},{"name":"Jaffray Estates"},{"name":"Jaffray"},{"name":"James Bay"},{"name":"Jean Baptiste 28"},{"name":"Jedway"},{"name":"Jellicoe"},{"name":"Jersey"},{"name":"Jervis Inlet"},{"name":"Jesmond"},{"name":"Jeune Landing"},{"name":"Jim Smith Lake and Area"},{"name":"Joeyaska 2"},{"name":"Johnson Heights"},{"name":"Johnson"},{"name":"Johnsons Landing"},{"name":"Johny Sticks 2"},{"name":"Jordan River"},{"name":"Juan de Fuca (Part 1)"},{"name":"Juan de Fuca (Part 2)"},{"name":"Juan de Fuca"},{"name":"Jumbo Glacier"},{"name":"June Springs Estates"},{"name":"Juniper Ridge"},{"name":"Jura"},{"name":"Juskatla"},{"name":"K'i Deldel"},{"name":"K'oxsinqii"},{"name":"Ka-x-shiitl"},{"name":"Ka:ook"},{"name":"Ka:oop:insh"},{"name":"Ka:youk"},{"name":"Kahmoose 4"},{"name":"Kahntah 3"},{"name":"Kahntah"},{"name":"Kaisun"},{"name":"Kakawis"},{"name":"Kaleden"},{"name":"Kaleva"},{"name":"Kamloops 1"},{"name":"Kamloops"},{"name":"Kanaka Bar - Thompson-Nicola I (Blue Sky Country)"},{"name":"Kanaka Bar 1A"},{"name":"Kanaka Bar 2"},{"name":"Kanaka Bar"},{"name":"Karlukwees 1"},{"name":"Karlukwees"},{"name":"Kaslo"},{"name":"Katit 1"},{"name":"Katzie 1"},{"name":"Katzie 2"},{"name":"Keating"},{"name":"Keats Island"},{"name":"Kedleston"},{"name":"Keekwillie Subdivision"},{"name":"Keekwillie Trailer Park"},{"name":"Keeshan 9"},{"name":"Keith-Lynn"},{"name":"Keithley Creek"},{"name":"Kelly Lake - Peace River D"},{"name":"Kelly Lake - Thompson-Nicola E (Bonaparte Plateau)"},{"name":"Kelly Lake Road Estates"},{"name":"Kelowna"},{"name":"Kelvin"},{"name":"Kemano Beach"},{"name":"Kemano"},{"name":"Kendrick Camp"},{"name":"Kensington-Cedar Cottage"},{"name":"Kent"},{"name":"Keremeos"},{"name":"Kerr Creek"},{"name":"Kerrisdale"},{"name":"Kershaw Subdivision"},{"name":"Kersley"},{"name":"Kettle Valley"},{"name":"Khahanie Trailer Court"},{"name":"Khenipsen"},{"name":"Kia Ora Trailer Park"},{"name":"Kicking Horse"},{"name":"Kiikiixink'ok"},{"name":"Kiix aa"},{"name":"Kiix-in"},{"name":"Kil-pah-las 3"},{"name":"Kilbella Bay"},{"name":"Kildala Arm"},{"name":"Kildonan"},{"name":"Kilgard"},{"name":"Kilkerran"},{"name":"Killarney"},{"name":"Killiney Beach"},{"name":"Kimberley"},{"name":"Kimsquit"},{"name":"Kincolith 14"},{"name":"Kingcome Inlet - Mount Waddington A"},{"name":"Kingcome Inlet - Quaee 7"},{"name":"Kingcome"},{"name":"Kingfisher"},{"name":"Kingsgate"},{"name":"Kinnaird"},{"name":"Kippase 2"},{"name":"Kispiox 1"},{"name":"Kispiox Valley"},{"name":"Kispiox"},{"name":"Kitamaat 2"},{"name":"Kitamaat Village"},{"name":"Kitasoo 1"},{"name":"Kitchener"},{"name":"Kitimat"},{"name":"Kitimat-Stikine A"},{"name":"Kitimat-Stikine B"},{"name":"Kitimat-Stikine C (Part 1)"},{"name":"Kitimat-Stikine C (Part 2)"},{"name":"Kitimat-Stikine D"},{"name":"Kitimat-Stikine E"},{"name":"Kitimat-Stikine F"},{"name":"Kitimat-Stikine, Subd. A"},{"name":"Kitimat-Stikine, Subd. B"},{"name":"Kitimat-Stikine, Subd. C"},{"name":"Kitimat-Stikine, Subd. D"},{"name":"Kitkatla"},{"name":"Kitsault"},{"name":"Kitseguecla"},{"name":"Kitselas 1"},{"name":"Kitsilano"},{"name":"Kitsumkalum"},{"name":"Kitsumkaylum 1"},{"name":"Kitty Coleman"},{"name":"Kitwanga"},{"name":"Kitzowit 20"},{"name":"Kiusta"},{"name":"Klahkamich 17"},{"name":"Klahkowit 5"},{"name":"Kleanza Creek Subdivision"},{"name":"Kleecoot"},{"name":"Kleena Kleene"},{"name":"Kleetlekut 22"},{"name":"Klehkoot 2"},{"name":"Kleindale"},{"name":"Klemtu"},{"name":"Klickkumcheen 18"},{"name":"Kliikliihuwis"},{"name":"Klit-kle-mah-ah"},{"name":"Kloklowuck 7"},{"name":"Kluachon Lake 1"},{"name":"Kluskus 1"},{"name":"Knutsford"},{"name":"Kobes"},{"name":"Kokish"},{"name":"Koksilah"},{"name":"Kookswees"},{"name":"Kootenay 1"},{"name":"Kootenay Bay"},{"name":"Kootenay Boundary A"},{"name":"Kootenay Boundary B / Lower Columbia-Old-Glory"},{"name":"Kootenay Boundary B"},{"name":"Kootenay Boundary C / Christina Lake"},{"name":"Kootenay Boundary C"},{"name":"Kootenay Boundary D / Rural Grand Forks"},{"name":"Kootenay Boundary D"},{"name":"Kootenay Boundary E / West Boundary"},{"name":"Kootenay Boundary E"},{"name":"Kootenay Boundary, Subd. A"},{"name":"Kootenay Boundary, Subd. B"},{"name":"Kootenay Cove Mobile Village"},{"name":"Kootenay Crossing"},{"name":"Kootenay Flats West"},{"name":"Kopchitchin 2"},{"name":"Kowtain 17"},{"name":"Kragmont"},{"name":"Krestova"},{"name":"Ksan"},{"name":"Kshish 4"},{"name":"Kuldo"},{"name":"Kulkayu (Hartley Bay) 4"},{"name":"Kulkayu (Hartley Bay) 4A"},{"name":"Kulkayu 4"},{"name":"Kulspai 6"},{"name":"Kumcheen 1"},{"name":"Kung"},{"name":"Kuper Island 7"},{"name":"Kushya Creek 7"},{"name":"Kuskonook"},{"name":"Kuthlalth 3"},{"name":"Kuz Che 5"},{"name":"Kwawkwawapilt 6"},{"name":"Kwinaquth"},{"name":"Kwisitis"},{"name":"Kye Bay"},{"name":"Kyuquot"},{"name":"Lac Le Jeune"},{"name":"Lac la Hache"},{"name":"Lachkaltsap 9"},{"name":"Ladner"},{"name":"Ladysmith"},{"name":"Laidlaw"},{"name":"Lakahahmen 11"},{"name":"Lake Buntzen"},{"name":"Lake Country"},{"name":"Lake Cowichan"},{"name":"Lake Errock"},{"name":"Lake Hill"},{"name":"Lake Kathlyn"},{"name":"Lakelse Lake"},{"name":"Lakeshore Highlands"},{"name":"Laketon"},{"name":"Laketown 3"},{"name":"Lakeview Heights"},{"name":"Lambourn Trailer Park"},{"name":"Lamming Mills"},{"name":"Lang Bay"},{"name":"Langdale"},{"name":"Langford"},{"name":"Langley - City"},{"name":"Langley - District municipality"},{"name":"Langley 2"},{"name":"Langley 5"},{"name":"Langner Trailer Park"},{"name":"Lantzville"},{"name":"Larch Hill"},{"name":"Lardeau"},{"name":"Larsons Landing"},{"name":"Laurentian Belaire"},{"name":"Lavington"},{"name":"Lawnhill"},{"name":"Lax Kw'alaams 1"},{"name":"Lax Kw'alaams"},{"name":"Laxgalts'ap"},{"name":"Lazo"},{"name":"Lebahdo"},{"name":"Lee Creek"},{"name":"Leechtown"},{"name":"Lees Corner"},{"name":"Lejac"},{"name":"Lemon Creek"},{"name":"Lemoray"},{"name":"Leo Creek"},{"name":"Leon Creek 2"},{"name":"Lexau Ranch"},{"name":"Lexington Subdivision"},{"name":"Lezbye 6"},{"name":"Lezbye 6"},{"name":"Liard River 3"},{"name":"Liard River"},{"name":"Lighthouse Point"},{"name":"Likely"},{"name":"Lillooet 1"},{"name":"Lillooet"},{"name":"Lily Lake"},{"name":"Lincoln Park"},{"name":"Lindell Beach"},{"name":"Lindell"},{"name":"Lindeman"},{"name":"Lions Bay"},{"name":"Lismore Trailer Park"},{"name":"Lister"},{"name":"Little Acres Trailer Court"},{"name":"Little Fort"},{"name":"Little River"},{"name":"Little Springs 8"},{"name":"Little Springs 18"},{"name":"Little Springs"},{"name":"Liumchen Village Mobile Home Park"},{"name":"Living Waters Trailer Park"},{"name":"Lockeport"},{"name":"Lodge Pole Trailer Park"},{"name":"Logan Lake"},{"name":"Lohbiee 3"},{"name":"Lone Butte"},{"name":"Lone Prairie"},{"name":"Long Harbour"},{"name":"Longbeach"},{"name":"Longworth"},{"name":"Loon Lake Subdivision"},{"name":"Loon Lake"},{"name":"Loos"},{"name":"Louis Creek 4"},{"name":"Louis Creek"},{"name":"Louis Squinas Ranch 14"},{"name":"Lower China Creek"},{"name":"Lower Hat Creek 2"},{"name":"Lower Lodge Pole Trailer Court"},{"name":"Lower Lonsdale"},{"name":"Lower Nicola Trailer Park"},{"name":"Lower Nicola"},{"name":"Lower Post"},{"name":"Lower Similkameen 2"},{"name":"Lucerne"},{"name":"Lukseetsissum 9"},{"name":"Lulu 5"},{"name":"Lumberton"},{"name":"Lumby"},{"name":"Lund"},{"name":"Lust Subdivision"},{"name":"Luxton"},{"name":"Lyacksun 3"},{"name":"Lynn Valley"},{"name":"Lynnmour"},{"name":"Lynx Creek"},{"name":"Lytton 27B"},{"name":"Lytton 4A"},{"name":"Lytton 4E"},{"name":"Lytton 9A"},{"name":"Lytton 9B"},{"name":"Lytton"},{"name":"Maalth-sit"},{"name":"Mabel Lake"},{"name":"Macalister"},{"name":"Mackenzie"},{"name":"Macoah 1"},{"name":"Macoah"},{"name":"Madeira Park"},{"name":"Magic Lake Estates"},{"name":"Magna Bay"},{"name":"Magnum Mine"},{"name":"Mah:kiit"},{"name":"Mahatta River"},{"name":"Mahmalillikullah 1"},{"name":"Mahood Falls"},{"name":"Mahope"},{"name":"Maht'ii'as"},{"name":"Maillardville"},{"name":"Makinson"},{"name":"Malachan 11"},{"name":"Malahat 11"},{"name":"Malahat"},{"name":"Malakwa Trailer Park"},{"name":"Malakwa"},{"name":"Malibu"},{"name":"Mammel Subdivision"},{"name":"Manca Subdivision"},{"name":"Manning Park"},{"name":"Manson Creek"},{"name":"Mansons Landing"},{"name":"Mapes"},{"name":"Maple Bay"},{"name":"Maple Ridge"},{"name":"Maplewood"},{"name":"Maq:cup"},{"name":"Mara"},{"name":"Marble Canyon 3"},{"name":"Marblehead"},{"name":"Margaret Bay"},{"name":"Marguerite"},{"name":"Marigold"},{"name":"Marilla"},{"name":"Marktosis 15"},{"name":"Marktosis"},{"name":"Marne"},{"name":"Marpole"},{"name":"Marron Valley"},{"name":"Marsh Creek Area"},{"name":"Marsh Subdivision"},{"name":"Marshall School Junction"},{"name":"Martin Prairie"},{"name":"Martin Valley"},{"name":"Mary Hill"},{"name":"Marysville"},{"name":"Mason Creek"},{"name":"Masset 1"},{"name":"Masset"},{"name":"Matilpi"},{"name":"Matsayno 5"},{"name":"Matsqui 4"},{"name":"Matsqui Main 2"},{"name":"Matsqui"},{"name":"Maurelle Island"},{"name":"Maxan Lake 4"},{"name":"Mayfair"},{"name":"Mayne Island 6"},{"name":"Mayne Island"},{"name":"Mayook"},{"name":"McBride"},{"name":"McCalls Landing"},{"name":"McCartney's Flat 4"},{"name":"McCulloch"},{"name":"McDame"},{"name":"McDonalds Landing"},{"name":"McGillivray"},{"name":"McGregor"},{"name":"McGuire"},{"name":"McKearney Ranch"},{"name":"McKinley Landing"},{"name":"McLean Ranch"},{"name":"McLeese Lake"},{"name":"McLeod Lake 1"},{"name":"McLeod Lake 5"},{"name":"McLeod Lake"},{"name":"McLeod Subdivision"},{"name":"McLure"},{"name":"McMillan Island 6"},{"name":"McNab Creek"},{"name":"Meachen"},{"name":"Meadow Creek - Central Kootenay D"},{"name":"Meadow Creek - Columbia-Shuswap F"},{"name":"Meadow Lake"},{"name":"Meadowbrook Estates Trailer Park"},{"name":"Meadowbrook"},{"name":"Meadows"},{"name":"Meem Quam Leese"},{"name":"Meldrum Creek"},{"name":"Merritt"},{"name":"Merville"},{"name":"Mesachie Lake"},{"name":"Mesilinka 7"},{"name":"Metchosin"},{"name":"Metlakatla"},{"name":"Metro Vancouver A"},{"name":"Metrotown"},{"name":"Meziadin Junction"},{"name":"Meziadin Subdivision"},{"name":"Mica Creek"},{"name":"Michel Gardens 36"},{"name":"Middle River"},{"name":"Middlegate"},{"name":"Midway"},{"name":"Mile 16 (Hwy 97)"},{"name":"Mile 19 Overhead"},{"name":"Mile 292 Subdivision Alaska Hwy"},{"name":"Mile 293 Alaska Highway"},{"name":"Mile 422 Alaska Highway"},{"name":"Mile 5 Alaska Highway"},{"name":"Mile 62 1/2"},{"name":"Mill Bay - Bulkley-Nechako G"},{"name":"Mill Bay - Cowichan Valley A"},{"name":"Mill Bay - Nisga'a"},{"name":"Miller Creek Subdivision"},{"name":"Miller Subdivision"},{"name":"Millers Landing"},{"name":"Millstream"},{"name":"Milner"},{"name":"Milnes Landing"},{"name":"Minaty Bay"},{"name":"Minstrel Island"},{"name":"Minto Landing"},{"name":"Miocene"},{"name":"Miracle Beach"},{"name":"Miracle Valley"},{"name":"Mirror Lake"},{"name":"Missezula Lake"},{"name":"Mission 1"},{"name":"Mission 5"},{"name":"Mission Hill"},{"name":"Mission Island 2"},{"name":"Mission Lands 17"},{"name":"Mission"},{"name":"Mitchell Bay"},{"name":"Miworth"},{"name":"Moberly Lake"},{"name":"Moha"},{"name":"Montague Harbour"},{"name":"Monte Creek"},{"name":"Monte Lake"},{"name":"Montizambert Wynd"},{"name":"Montney"},{"name":"Montrose"},{"name":"Moose Heights"},{"name":"Mooyah Bay"},{"name":"Moresby Camp"},{"name":"Morgan Subdivision"},{"name":"Moricetown 1"},{"name":"Moricetown"},{"name":"Morrissey"},{"name":"Mound Road Subdivision"},{"name":"Mount Baldy"},{"name":"Mount Currie 1"},{"name":"Mount Currie 2"},{"name":"Mount Currie 6"},{"name":"Mount Currie 8"},{"name":"Mount Currie 10"},{"name":"Mount Currie"},{"name":"Mount Gardner"},{"name":"Mount Lehman"},{"name":"Mount Pleasant"},{"name":"Mount Robson"},{"name":"Mount View Trailer Court"},{"name":"Mount Waddington A"},{"name":"Mount Waddington B"},{"name":"Mount Waddington C"},{"name":"Mount Waddington D"},{"name":"Mount Waddington, Subd. A"},{"name":"Mount Waddington, Subd. B"},{"name":"Mount Washington"},{"name":"Mountain Peak Trailer Court"},{"name":"Mountain Shadow Trailer Court"},{"name":"Mountain Shadows Trailer Court"},{"name":"Mountain Station"},{"name":"Mountain View Trailer Court"},{"name":"Mountain View"},{"name":"Mountainview Trailer Park"},{"name":"Moyie Lake"},{"name":"Moyie River"},{"name":"Moyie Shore Estates"},{"name":"Moyie"},{"name":"Mud Bay - Comox Valley A"},{"name":"Mud Bay - Surrey"},{"name":"Mud River"},{"name":"Mudge Island"},{"name":"Muncho Lake"},{"name":"Murdale"},{"name":"Murrayville"},{"name":"Musgrave Landing"},{"name":"Muskwa"},{"name":"Musqueam 2"},{"name":"Musqueam 4"},{"name":"Myra"},{"name":"Myrtle Point"},{"name":"Nadu"},{"name":"Nahmint"},{"name":"Nahun"},{"name":"Nak'azdli (Necoslie 1)"},{"name":"Nak'azdli"},{"name":"Nakusp"},{"name":"Nalos Landing"},{"name":"Namu"},{"name":"Nanaimo A"},{"name":"Nanaimo B"},{"name":"Nanaimo C"},{"name":"Nanaimo D"},{"name":"Nanaimo E"},{"name":"Nanaimo F"},{"name":"Nanaimo G"},{"name":"Nanaimo H"},{"name":"Nanaimo River 2"},{"name":"Nanaimo River 3"},{"name":"Nanaimo River 4"},{"name":"Nanaimo River"},{"name":"Nanaimo Town 1"},{"name":"Nanaimo"},{"name":"Nanaimo, Subd. A"},{"name":"Nanaimo, Subd. B"},{"name":"Nanoose Bay"},{"name":"Nanoose"},{"name":"Naramata"},{"name":"Narcosli Creek"},{"name":"Nasookin Road Subdivision"},{"name":"Nass Camp"},{"name":"Nautley (Fort Fraser) 1"},{"name":"Nazco 20"},{"name":"Nazko"},{"name":"Necait 6"},{"name":"Nechako"},{"name":"Nedoats 11"},{"name":"Needles"},{"name":"Nekalliston 2"},{"name":"Nekliptum 1"},{"name":"Nekliptum 1"},{"name":"Nelson Forks"},{"name":"Nelson Island"},{"name":"Nelson"},{"name":"Nelway"},{"name":"Nemaiah Valley"},{"name":"Nemiah Valley"},{"name":"Nenagwas 12"},{"name":"Nequatque 1"},{"name":"Nequatque 2"},{"name":"Nequatque 3A"},{"name":"Nequatque"},{"name":"Nesikep 6"},{"name":"Neskonlith 1 (Neskainlith 1)"},{"name":"Neskonlith 1"},{"name":"Neskonlith 2"},{"name":"Neskonlith"},{"name":"Nesters"},{"name":"Nesuch 3"},{"name":"New Aiyansh 1"},{"name":"New Aiyansh"},{"name":"New Barkerville"},{"name":"New Brighton"},{"name":"New Clew"},{"name":"New Denver"},{"name":"New Hazelton"},{"name":"New Remo"},{"name":"New Settlement"},{"name":"New Songhees 1A"},{"name":"New Westminster"},{"name":"Newcastle"},{"name":"Newgate"},{"name":"Newlands"},{"name":"Newton"},{"name":"Niagara"},{"name":"Nichols Mobile Homes"},{"name":"Nicholson"},{"name":"Nickel Palm 4"},{"name":"Nickeyeah 25"},{"name":"Nicks Island"},{"name":"Nicola Lake 1"},{"name":"Nicola Mameet 1"},{"name":"Nicola"},{"name":"Nicomen 1"},{"name":"Nimpkish 2"},{"name":"Nimpkish Heights"},{"name":"Nimpkish"},{"name":"Nimpo Lake"},{"name":"Ninety Five Mile House"},{"name":"Ninety Four Mile House"},{"name":"Ninety Seven Mile House"},{"name":"Ninety Three Mile House"},{"name":"Ninstints"},{"name":"Nisga'a"},{"name":"Nkaih 10"},{"name":"Nohomeen 23"},{"name":"Nooaitch 10"},{"name":"Noonla 6"},{"name":"Nootka"},{"name":"Noralee"},{"name":"Norgate"},{"name":"North Bay 5"},{"name":"North Bend"},{"name":"North Bonaparte"},{"name":"North Bulkley"},{"name":"North Campbell River"},{"name":"North Coast A"},{"name":"North Coast C"},{"name":"North Coast D"},{"name":"North Coast E"},{"name":"North Cowichan"},{"name":"North Delta"},{"name":"North Galiano"},{"name":"North Kamloops"},{"name":"North Lonsdale"},{"name":"North Nechako"},{"name":"North Okanagan B"},{"name":"North Okanagan C"},{"name":"North Okanagan D"},{"name":"North Okanagan E"},{"name":"North Okanagan F"},{"name":"North Okanagan, Subd. A"},{"name":"North Okanagan, Subd. B"},{"name":"North Pender Island"},{"name":"North Pine"},{"name":"North Poplar"},{"name":"North Saanich"},{"name":"North Star"},{"name":"North Tacla Lake 7"},{"name":"North Tacla Lake 7A"},{"name":"North Tacla Lake"},{"name":"North Thompson 1"},{"name":"North Vancouver - City"},{"name":"North Vancouver - District municipality"},{"name":"North Woodlands"},{"name":"Northern Rockies A"},{"name":"Northern Rockies B"},{"name":"Northern Rockies Regional Municipality"},{"name":"Northern Rockies"},{"name":"Northfield"},{"name":"Northridge"},{"name":"Notch Hill"},{"name":"Nourse Subdivision"},{"name":"Nuchaquis"},{"name":"Nuchatl 1"},{"name":"Nuchatl 2"},{"name":"Nuchatlitz"},{"name":"Nukko Lake"},{"name":"Nulki"},{"name":"Numukamis 1"},{"name":"Nursery"},{"name":"Nuuautin 2"},{"name":"Nuumaqimyis"},{"name":"Ná:mint"},{"name":"Oak Bay"},{"name":"Oak Hills"},{"name":"Oakridge"},{"name":"Oasis Trailer Court"},{"name":"Oasis"},{"name":"Ocean Falls"},{"name":"Ocean Grove"},{"name":"Ocean Park"},{"name":"Oclucje 7"},{"name":"Oetco Flats"},{"name":"Ogden"},{"name":"Ohamil 1"},{"name":"Okanagan (Part) 1 - North Okanagan"},{"name":"Okanagan (Part) 1 - Thompson/Okanagan"},{"name":"Okanagan Centre"},{"name":"Okanagan Falls"},{"name":"Okanagan Landing"},{"name":"Okanagan Mission"},{"name":"Okanagan Terrace Trailer Park"},{"name":"Okanagan-Similkameen A"},{"name":"Okanagan-Similkameen B"},{"name":"Okanagan-Similkameen C"},{"name":"Okanagan-Similkameen D"},{"name":"Okanagan-Similkameen E"},{"name":"Okanagan-Similkameen F"},{"name":"Okanagan-Similkameen G"},{"name":"Okanagan-Similkameen H"},{"name":"Okanagan-Similkameen I"},{"name":"Okanagan-Similkameen, Subd. A"},{"name":"Okanagan-Similkameen, Subd. B"},{"name":"Okanagan-Similkameen, Subd. C"},{"name":"Olalla"},{"name":"Old Bella Bella"},{"name":"Old Fort - Nedoats 11"},{"name":"Old Fort - Peace River C"},{"name":"Old Fort Nelson"},{"name":"Old Hogem"},{"name":"Old Massett"},{"name":"Old Remo"},{"name":"Old Town"},{"name":"Oliver"},{"name":"Oliver's Landing"},{"name":"Omineca 1"},{"name":"One Forty One Mile House"},{"name":"One Hundred Mile House"},{"name":"Oona River"},{"name":"Ootischenia Flats"},{"name":"Ootischenia"},{"name":"Ootsa Lake"},{"name":"Openit 27"},{"name":"Opitsat 1"},{"name":"Opitsat"},{"name":"Oregon Jack Creek 5"},{"name":"Orlomah Beach"},{"name":"Osborn"},{"name":"Osland"},{"name":"Osoyoos 1"},{"name":"Osoyoos"},{"name":"Osprey Lake"},{"name":"Othello"},{"name":"Ots'oo-a"},{"name":"Otter Bay"},{"name":"Otway"},{"name":"Ououkinsh"},{"name":"Oweekeno"},{"name":"Owen Bay"},{"name":"Owl Creek"},{"name":"Oxford Heights"},{"name":"Oyama"},{"name":"Oyster Bay 12"},{"name":"Oyster River"},{"name":"Pacheena 1"},{"name":"Pahas 3"},{"name":"Paldi"},{"name":"Palling 1"},{"name":"Palling 1A"},{"name":"Palling"},{"name":"Panorama Ridge"},{"name":"Panorama Subdivision"},{"name":"Panorama Trailer Court"},{"name":"Panorama"},{"name":"Papyum 27"},{"name":"Papyum 27A"},{"name":"Paqulh"},{"name":"Paradise Point"},{"name":"Paradise Valley - Squamish"},{"name":"Paradise Valley - qathet B"},{"name":"Paradise Valley Trailer Court"},{"name":"Park Royal"},{"name":"Park Siding"},{"name":"Parkdale Gardens"},{"name":"Parkland"},{"name":"Parksville"},{"name":"Parkville Trailer Park"},{"name":"Parsnip 5"},{"name":"Parson"},{"name":"Pashilqua 2"},{"name":"Paska Island 3"},{"name":"Pasley Island"},{"name":"Pass Creek"},{"name":"Passmore"},{"name":"Paterson"},{"name":"Paul Lake"},{"name":"Paul's Basin 2"},{"name":"Paulson"},{"name":"Pavilion 1"},{"name":"Pavilion"},{"name":"Pavillon Lake"},{"name":"Paxton Valley"},{"name":"Peace River B"},{"name":"Peace River C"},{"name":"Peace River D"},{"name":"Peace River E"},{"name":"Peace River, Subd. B"},{"name":"Peace River, Subd. C"},{"name":"Peachland"},{"name":"Pebble Beach"},{"name":"Peejay"},{"name":"Pemberton Heights"},{"name":"Pemberton Meadows"},{"name":"Pemberton"},{"name":"Pemynoos 9"},{"name":"Pender Island"},{"name":"Pendleton Bay"},{"name":"Penelakut Island 7"},{"name":"Penny"},{"name":"Penticton 1"},{"name":"Penticton"},{"name":"Pentledge 2"},{"name":"Peq-Paq 22"},{"name":"Perow"},{"name":"Perrys"},{"name":"Peters 1"},{"name":"Phillips Arm"},{"name":"Phoenix"},{"name":"Piers Island"},{"name":"Pilot Bay"},{"name":"Pinantan Lake"},{"name":"Pinchi Lake"},{"name":"Pinchi"},{"name":"Pine Hills Mobile Home Park"},{"name":"Pine Springs"},{"name":"Pine Trailer Court"},{"name":"Pine Valley - Cariboo D"},{"name":"Pine Valley - Peace River E"},{"name":"Pinecrest Mobile Home Park"},{"name":"Pinegrove Trailer Park"},{"name":"Pinegrove"},{"name":"Pineridge Estates"},{"name":"Pineview - Fraser-Fort George D"},{"name":"Pineview - Peace River C"},{"name":"Pinewood Subdivision"},{"name":"Pink Mountain"},{"name":"Pioneer Mine"},{"name":"Pioneer Subdivision"},{"name":"Pitt Meadows"},{"name":"Pixie Beach"},{"name":"Playmor Junction"},{"name":"Pleasant Camp"},{"name":"Pleasantside"},{"name":"Plumper Harbour"},{"name":"Point Holmes"},{"name":"Poison Creek 17A"},{"name":"Ponderosa Trailer Park"},{"name":"Pope Landing"},{"name":"Popkum 1"},{"name":"Popkum"},{"name":"Poplar Creek"},{"name":"Poplar Grove"},{"name":"Porcher Island"},{"name":"Porpoise Bay"},{"name":"Port Alberni"},{"name":"Port Albion"},{"name":"Port Alice"},{"name":"Port Clements"},{"name":"Port Coquitlam"},{"name":"Port Desire"},{"name":"Port Douglas"},{"name":"Port Edward"},{"name":"Port Essington"},{"name":"Port Guichon"},{"name":"Port Hammond - Haney"},{"name":"Port Hammond"},{"name":"Port Hardy"},{"name":"Port Kells"},{"name":"Port Mann"},{"name":"Port McNeill"},{"name":"Port Mellon"},{"name":"Port Moody"},{"name":"Port Neville"},{"name":"Port Renfrew"},{"name":"Port Simpson 1"},{"name":"Port Washington"},{"name":"Porteau"},{"name":"Porter Landing"},{"name":"Portier Pass 5"},{"name":"Porto Rico"},{"name":"Pouce Coupe"},{"name":"Powell River A"},{"name":"Powell River B"},{"name":"Powell River C"},{"name":"Powell River D"},{"name":"Powell River E"},{"name":"Powell River"},{"name":"Powell River, Subd. A"},{"name":"Powers Addition"},{"name":"Prairie Valley"},{"name":"Prairiedale"},{"name":"Premier Lake"},{"name":"Premier"},{"name":"Prespatou"},{"name":"Pressy Lake"},{"name":"Priest's Valley 6"},{"name":"Prince George"},{"name":"Prince Rupert"},{"name":"Princeton"},{"name":"Pritchard Mobile Subdivision"},{"name":"Pritchard"},{"name":"Procter"},{"name":"Progress"},{"name":"Promontory"},{"name":"Prophet River - Northern Rockies"},{"name":"Prophet River - Prophet River 4"},{"name":"Prophet River 4"},{"name":"Prospect Lake"},{"name":"Puckatholetchin 11"},{"name":"Punchaw"},{"name":"Puntledge"},{"name":"Puntzi Lake 2"},{"name":"Purden Lake"},{"name":"Q'alatkú7em"},{"name":"Quaaout 1"},{"name":"Quadra Loop"},{"name":"Quaee 7"},{"name":"Qualicum Bay"},{"name":"Qualicum Beach"},{"name":"Qualicum"},{"name":"Quamichan"},{"name":"Quathiaski Cove"},{"name":"Quatsino Subdivision 18"},{"name":"Quatsino"},{"name":"Quattishe 1"},{"name":"Queen Charlotte"},{"name":"Queens Bay"},{"name":"Queens Cove"},{"name":"Queens Park"},{"name":"Queensborough"},{"name":"Quesnel 1"},{"name":"Quesnel Canyon"},{"name":"Quesnel Forks"},{"name":"Quesnel View"},{"name":"Quesnel"},{"name":"Quick"},{"name":"Quilchena"},{"name":"Quin-e-ex"},{"name":"Quinsam 12"},{"name":"Quinsam"},{"name":"Race Point"},{"name":"Radium Hot Springs"},{"name":"Raft River"},{"name":"Rail Lake"},{"name":"Rainbow Trailer Court"},{"name":"Rainy Hollow"},{"name":"Ranch Park Trailer Park"},{"name":"Ranch Park"},{"name":"Ranchero"},{"name":"Raspberry"},{"name":"Rayleigh"},{"name":"Read Island"},{"name":"Red Bluff"},{"name":"Red Mountain"},{"name":"Red Pass"},{"name":"Red Rock"},{"name":"Red Rose"},{"name":"Redroofs"},{"name":"Redstone Flat 1"},{"name":"Redstone"},{"name":"Refuge Cove 6"},{"name":"Refuge Cove"},{"name":"Reid Lake"},{"name":"Remac"},{"name":"Remo"},{"name":"Renata"},{"name":"Rendez-Vous Island"},{"name":"Renfrew-Collingwood"},{"name":"Rennie Subdivision"},{"name":"Retallack"},{"name":"Revelstoke"},{"name":"Rhone"},{"name":"Rich Bar"},{"name":"Richmond"},{"name":"Ridgedale"},{"name":"Riley Park"},{"name":"Riondel"},{"name":"Riske Creek"},{"name":"Riva Ridge Trailer Park"},{"name":"River Bend Trailer Court"},{"name":"River Jordan"},{"name":"River Springs"},{"name":"Rivers Inlet"},{"name":"Rivershore"},{"name":"Riverside Trailer Court"},{"name":"Rivervale"},{"name":"Roberts Creek"},{"name":"Robson West"},{"name":"Robson"},{"name":"Roche Lake Resort"},{"name":"Rock Bay"},{"name":"Rock Creek"},{"name":"Rockyview"},{"name":"Roe Lake"},{"name":"Rogers Pass"},{"name":"Rolla"},{"name":"Rolling Hills Park"},{"name":"Roosville"},{"name":"Rose Harbour"},{"name":"Rose Lake"},{"name":"Rose Prairie"},{"name":"Rosebery"},{"name":"Rosedale"},{"name":"Rosen Lake Trailer Court"},{"name":"Ross Spur"},{"name":"Rossland"},{"name":"Rosswood"},{"name":"Rough Bay"},{"name":"Round Lake"},{"name":"Round Prairie"},{"name":"Roy"},{"name":"Royal Oak"},{"name":"Royston"},{"name":"Ruault Road Subdivision"},{"name":"Ruby Creek 2"},{"name":"Ruby Creek"},{"name":"Rumble Beach"},{"name":"Rupert"},{"name":"Ruskin"},{"name":"Rutland"},{"name":"Ryder Lake"},{"name":"Rykerts"},{"name":"Ryter's Trailer Court"},{"name":"S1/2 Tsimpsean 2"},{"name":"Saaiyouck 6"},{"name":"Saanich"},{"name":"Saanichton"},{"name":"Sachawil"},{"name":"Sachsa 4"},{"name":"Sachsa"},{"name":"Sachteen 2"},{"name":"Sachteen 2A"},{"name":"Sachteen"},{"name":"Saddle Rock 9"},{"name":"Sahali"},{"name":"Sahara Heights"},{"name":"Sahhaltkum 4"},{"name":"Sahtlam"},{"name":"Salmo"},{"name":"Salmon Arm"},{"name":"Salmon Beach"},{"name":"Salmon River 1"},{"name":"Salmon River Meadow 7"},{"name":"Salmon Valley"},{"name":"Saloon"},{"name":"Saltair"},{"name":"Saltery Bay"},{"name":"Saltspring Island"},{"name":"Samahquam 1"},{"name":"San Josef"},{"name":"Sanca"},{"name":"Sanderson Site"},{"name":"Sandon"},{"name":"Sandspit"},{"name":"Sandwick"},{"name":"Sandy Beach Resort"},{"name":"Sandy Cove"},{"name":"Sandy Harry 4"},{"name":"Sandy Point"},{"name":"Sandyville"},{"name":"Sapperton"},{"name":"Saratoga Beach"},{"name":"Sardis"},{"name":"Sarita"},{"name":"Saseenos"},{"name":"Saturna Island"},{"name":"Saturna"},{"name":"Savarie Subdivision"},{"name":"Savona"},{"name":"Sayward"},{"name":"Schaltuuch 27"},{"name":"Schelowat 1"},{"name":"Schemenauer Subdivision"},{"name":"Schkam 2"},{"name":"Scotch Creek 4"},{"name":"Scotch Creek"},{"name":"Scotia Bay"},{"name":"Scott Cove"},{"name":"Scotties Trailer Park"},{"name":"Scotty Creek"},{"name":"Scowlitz 1"},{"name":"Seabird Island"},{"name":"Seabird Mobile Home Park"},{"name":"Seafair"},{"name":"Seaford"},{"name":"Seah 5"},{"name":"Seaichem 16"},{"name":"Seal Bay Subdivision"},{"name":"Seaside Park"},{"name":"Seaspunkut 4"},{"name":"Sechelt (Part) - Sunshine Coast"},{"name":"Sechelt (Part) - qathet"},{"name":"Sechelt"},{"name":"Secret Cove"},{"name":"Selma Park"},{"name":"Semiahmoo"},{"name":"Sentinel Hill"},{"name":"Seton Lake 5"},{"name":"Seton Lake 5A"},{"name":"Seton Portage"},{"name":"Seven Mile Corner"},{"name":"Sevenoaks"},{"name":"Seventy Mile House"},{"name":"Sewall"},{"name":"Sewell Inlet"},{"name":"Seymour Arm"},{"name":"Seymour Creek 2"},{"name":"Seymour Heights"},{"name":"Seymour Inlet"},{"name":"Seymour Lake"},{"name":"Seymour Landing"},{"name":"Seymour Meadows 19"},{"name":"Sha:wiis"},{"name":"Shackan 11"},{"name":"Shady Valley"},{"name":"Shaha Estates"},{"name":"Shalalth"},{"name":"Shannon Bay"},{"name":"Shannon Trailer Park"},{"name":"Sharpe Lake"},{"name":"Shaughnessy"},{"name":"Shawl Bay"},{"name":"Shawnaire Resort"},{"name":"Shawnigan Lake Mobile Home Park"},{"name":"Shawnigan Lake"},{"name":"Shawnigan"},{"name":"Shawniken 4B"},{"name":"Shearer Dale"},{"name":"Shearwater"},{"name":"Shell Beach"},{"name":"Shelley"},{"name":"Shelter Bay"},{"name":"Shelter Point"},{"name":"Shepherds Inn"},{"name":"Sheraton"},{"name":"Shere"},{"name":"Sheridan Lake"},{"name":"Sheslay"},{"name":"Shingle Creek"},{"name":"Shingle Point 4"},{"name":"Shirley"},{"name":"Shitlthmaq-is"},{"name":"Sho-ook 5"},{"name":"Shoreacres"},{"name":"Shoreholme"},{"name":"Shorewood San Parreil"},{"name":"Shulus"},{"name":"Shushartie"},{"name":"Shuswap - Thompson-Nicola L (Grasslands)"},{"name":"Shuswap Falls"},{"name":"Shuswap Lake Estates"},{"name":"Shuswap"},{"name":"Shutty Bench"},{"name":"Sicamous"},{"name":"Sidley"},{"name":"Sidney"},{"name":"Sik-e-dakh 2"},{"name":"Sikanni Chief"},{"name":"Silica"},{"name":"Silver Creek - Columbia-Shuswap D"},{"name":"Silver Creek - Hope"},{"name":"Silver River"},{"name":"Silver Star Trailer Park"},{"name":"Silver Star"},{"name":"Silver Valley"},{"name":"Silverhill"},{"name":"Silverton"},{"name":"Simpson Ranch"},{"name":"Sinclair Mills"},{"name":"Sinkut River"},{"name":"Sirdar"},{"name":"Siska Flat 3"},{"name":"Siska Flat 5A"},{"name":"Siska Flat 5B"},{"name":"Siska Flat 8"},{"name":"Siska Flat"},{"name":"Six Mile Point"},{"name":"Six Mile Ranch"},{"name":"Skawahlook 1"},{"name":"Skedans"},{"name":"Skeena Crossing"},{"name":"Skeena-Queen Charlotte A"},{"name":"Skeena-Queen Charlotte C"},{"name":"Skeena-Queen Charlotte D"},{"name":"Skeena-Queen Charlotte E"},{"name":"Skeena-Queen Charlotte F"},{"name":"Skeena-Queen Charlotte, Subd. A"},{"name":"Skeena-Queen Charlotte, Subd. B"},{"name":"Skeetchestn"},{"name":"Skidegate 1"},{"name":"Skidegate Landing"},{"name":"Skidegate"},{"name":"Skins Lake 16A"},{"name":"Skins Lake 16B"},{"name":"Skooks Landing"},{"name":"Skookumchuck - East Kootenay E"},{"name":"Skookumchuck - Skookumchuck 4"},{"name":"Skookumchuck 4"},{"name":"Skowkale 10"},{"name":"Skowkale 11"},{"name":"Skowkale"},{"name":"Skuppah 2A"},{"name":"Skuppah 4"},{"name":"Skwah 4"},{"name":"Skwahla 2"},{"name":"Skwali 3"},{"name":"Skway 5"},{"name":"Skwayaynope 26"},{"name":"Skweahm 10"},{"name":"Slaterville"},{"name":"Sleepy Hollow Road Trailer Park"},{"name":"Slesse Park"},{"name":"Sliammon 1"},{"name":"Sliammon"},{"name":"Slocan Park"},{"name":"Slocan"},{"name":"Slosh 1"},{"name":"Slosh 1A"},{"name":"Smith River"},{"name":"Smithers - Telkwa"},{"name":"Smithers Landing"},{"name":"Smithers"},{"name":"Snake 5"},{"name":"Snake River"},{"name":"Snow Peak Trailer Court"},{"name":"Snug Cove"},{"name":"Soames Point"},{"name":"Soda Creek 1"},{"name":"Soda Creek"},{"name":"Sointula"},{"name":"Solly"},{"name":"Solsqua"},{"name":"Somenos"},{"name":"Sonora Island"},{"name":"Sooke"},{"name":"Soowahlie 14"},{"name":"Sorrento"},{"name":"South Bentinck"},{"name":"South Cambie"},{"name":"South Canoe"},{"name":"South Dawson"},{"name":"South Fort George"},{"name":"South Hazelton"},{"name":"South Lakeside (Williams Lake)"},{"name":"South Lakeside"},{"name":"South Pender Island"},{"name":"South Poplar"},{"name":"South Saanich 1"},{"name":"South Shalalth"},{"name":"South Slocan"},{"name":"South Slope"},{"name":"South Sumas"},{"name":"South Surrey"},{"name":"South Taylor"},{"name":"South Thormanby Island"},{"name":"South Wellington"},{"name":"Southarm"},{"name":"Southbank"},{"name":"Southern Gulf Islands"},{"name":"Sowchea 3"},{"name":"Soyandostar 2"},{"name":"Spallumcheen"},{"name":"Sparwood"},{"name":"Spatsum 11"},{"name":"Spatsum"},{"name":"Spectacle Lake Mobile Home Park"},{"name":"Spences Bridge 4"},{"name":"Spences Bridge 4C"},{"name":"Spences Bridge"},{"name":"Speyum 3"},{"name":"Spillimacheen"},{"name":"Spintlum Flat 3"},{"name":"Springhouse"},{"name":"Sproat Lake"},{"name":"Sproat Trailer Park"},{"name":"Sproatt"},{"name":"Sproule Creek"},{"name":"Spur Valley Subdivision"},{"name":"Spuzzum 1"},{"name":"Spuzzum"},{"name":"Squaam 2"},{"name":"Squaam Bay"},{"name":"Squamish"},{"name":"Squamish-Lillooet A"},{"name":"Squamish-Lillooet B"},{"name":"Squamish-Lillooet C"},{"name":"Squamish-Lillooet D"},{"name":"Squamish-Lillooet, Subd. A"},{"name":"Squamish-Lillooet, Subd. B"},{"name":"Squaw-Hay-One 11"},{"name":"Squawkum Creek 3"},{"name":"Squeah"},{"name":"Squiaala 7"},{"name":"Squiaala 8"},{"name":"Squiaala"},{"name":"Squilax"},{"name":"Squinas 2"},{"name":"Squirrel Cove 8"},{"name":"Squirrel Cove"},{"name":"St. Andrews"},{"name":"St. Eugene Mission"},{"name":"St. Ives"},{"name":"St. Joseph Mission"},{"name":"St. Mary Lake"},{"name":"St. Mary's"},{"name":"St. Vincent Bay"},{"name":"Staiyahanny 8"},{"name":"Stanley"},{"name":"Star Subdivision"},{"name":"Stave Falls"},{"name":"Stawamus 24"},{"name":"Steamboat"},{"name":"Steelhead"},{"name":"Stellako"},{"name":"Stellaquo (Stella) 1"},{"name":"Stepping Stones Estates"},{"name":"Stequmwhulpa 5"},{"name":"Steveston"},{"name":"Stewardson Inlet"},{"name":"Stewart"},{"name":"Stikine Region"},{"name":"Stikine"},{"name":"Stikine, Subd. A"},{"name":"Stillwater - Thompson-Nicola A (Wells Gray Country)"},{"name":"Stillwater - qathet C"},{"name":"Stone 1"},{"name":"Stoner"},{"name":"Stones Bay"},{"name":"Stony Creek 1"},{"name":"Stories Beach"},{"name":"Strachan Creek"},{"name":"Straiton"},{"name":"Strathcona A"},{"name":"Strathcona B"},{"name":"Strathcona C"},{"name":"Strathcona D (Oyster Bay - Buttle Lake)"},{"name":"Strathcona"},{"name":"Strathnaver"},{"name":"Strawberry Hill"},{"name":"Strawberry Vale"},{"name":"Streatham"},{"name":"Stryen 9"},{"name":"Stuart Bay 6"},{"name":"Stuart Island"},{"name":"Stuart River"},{"name":"Stuie"},{"name":"Stullawheets 8"},{"name":"Stump Lake"},{"name":"Sturdies Bay"},{"name":"Sugarcane"},{"name":"Sullivan Bay"},{"name":"Sullivan Heights"},{"name":"Sullivan"},{"name":"Summerland"},{"name":"Summit Lake - Central Kootenay H"},{"name":"Summit Lake - Fraser-Fort George G"},{"name":"Summit Lake - Northern Rockies"},{"name":"Sun Peaks Mountain"},{"name":"Sun Peaks"},{"name":"Sun Valley"},{"name":"Sunbury"},{"name":"Suncrest"},{"name":"Sundance Subdivision - Columbia-Shuswap E"},{"name":"Sundance Subdivision - Peace River E"},{"name":"Sundayman's Meadow 3"},{"name":"Sunningdale"},{"name":"Sunny Dale"},{"name":"Sunnybrae"},{"name":"Sunnyside - Surrey"},{"name":"Sunnyside - Tache 1"},{"name":"Sunnyside Trailer Court"},{"name":"Sunnyview Trailer Court"},{"name":"Sunrise Valley"},{"name":"Sunset Beach - Lantzville"},{"name":"Sunset Beach - West Vancouver"},{"name":"Sunset Prairie"},{"name":"Sunset Trailer Park"},{"name":"Sunset"},{"name":"Sunshine Bay"},{"name":"Sunshine Coast A"},{"name":"Sunshine Coast B"},{"name":"Sunshine Coast D"},{"name":"Sunshine Coast E"},{"name":"Sunshine Coast F"},{"name":"Sunshine Coast Trailer Court"},{"name":"Sunshine Coast, Subd. A"},{"name":"Sunshine Hills"},{"name":"Sunshine Valley - Clearwater"},{"name":"Sunshine Valley - Fraser Valley B"},{"name":"Sunshine"},{"name":"Suquash"},{"name":"Surge Narrows"},{"name":"Surprise"},{"name":"Surrey Centre"},{"name":"Surrey"},{"name":"Swahliseah 14"},{"name":"Swan Lake 3"},{"name":"Swan Lake 3"},{"name":"Swartz Bay"},{"name":"Sweetwater"},{"name":"Switsemalph 3"},{"name":"Switsemalph 6"},{"name":"Switsemalph 7"},{"name":"Switsemalph"},{"name":"T'Sou-ke 1 (Sooke 1)"},{"name":"T'Sou-ke 2 (Sooke 2)"},{"name":"T'Sou-ke"},{"name":"Ta Ta Creek"},{"name":"Ta:shiis"},{"name":"Tabor Lake"},{"name":"Tache 1"},{"name":"Tachie"},{"name":"Tacla Lake (Ferry Landing) 9"},{"name":"Tadanac"},{"name":"Tadinlay 15"},{"name":"Taghum Hill"},{"name":"Taghum"},{"name":"Tahltan 1"},{"name":"Tahltan"},{"name":"Tahsis"},{"name":"Takla Landing"},{"name":"Taku"},{"name":"Takysie Lake"},{"name":"Tall Timbers Trailer Park"},{"name":"Tallheo"},{"name":"Tamarisk"},{"name":"Tanakut 4"},{"name":"Tantalus Acres"},{"name":"Tanu"},{"name":"Tappen"},{"name":"Tarrys"},{"name":"Tasu"},{"name":"Tatalrose"},{"name":"Tatelkus Lake 28"},{"name":"Tatla Lake"},{"name":"Tatla West 11"},{"name":"Tatla't East 2"},{"name":"Tatlayoko Lake"},{"name":"Tatlow"},{"name":"Tatogga"},{"name":"Tatpo-oose 10"},{"name":"Tatton"},{"name":"Taylor"},{"name":"Tchesinkut Lake"},{"name":"Teakerne Arm"},{"name":"Telachick"},{"name":"Telegraph Cove"},{"name":"Telegraph Creek 6"},{"name":"Telegraph Creek 6A"},{"name":"Telegraph Creek"},{"name":"Telkwa - Bulkley-Nechako A"},{"name":"Telkwa Trailer Park"},{"name":"Telkwa"},{"name":"Ten Mile Lake"},{"name":"Terrace"},{"name":"Tetachuk"},{"name":"Theik 2"},{"name":"Theodosia Arm"},{"name":"Thetis Island"},{"name":"Thomas Point 5"},{"name":"Thomas Point 5A"},{"name":"Thomas Squinas Ranch 2A"},{"name":"Thompson River Estates"},{"name":"Thompson Sound"},{"name":"Thompson"},{"name":"Thompson-Nicola A (Wells Gray Country)"},{"name":"Thompson-Nicola B (Thompson Headwaters)"},{"name":"Thompson-Nicola E (Bonaparte Plateau)"},{"name":"Thompson-Nicola I (Blue Sky Country)"},{"name":"Thompson-Nicola J (Copper Desert Country)"},{"name":"Thompson-Nicola L (Grasslands)"},{"name":"Thompson-Nicola L"},{"name":"Thompson-Nicola M (Beautiful Nicola Valley - North)"},{"name":"Thompson-Nicola M"},{"name":"Thompson-Nicola N (Beautiful Nicola Valley - South)"},{"name":"Thompson-Nicola N"},{"name":"Thompson-Nicola O (Lower North Thompson)"},{"name":"Thompson-Nicola P (Rivers and the Peaks)"},{"name":"Thompson-Nicola, Subd. A"},{"name":"Thompson-Nicola, Subd. B"},{"name":"Thompson-Nicola, Subd. C"},{"name":"Thompson-Nicola, Subd. D"},{"name":"Thompson-Nicola, Subd. E"},{"name":"Thornhill"},{"name":"Three Forks"},{"name":"Thrums"},{"name":"Thunder Bay"},{"name":"Thurlow"},{"name":"Thurston Harbour"},{"name":"Thwaytes"},{"name":"Tie Lake"},{"name":"Tiili Landing"},{"name":"Tillicum"},{"name":"Timberland Trailer Park"},{"name":"Tin Wis 11"},{"name":"Tintagel"},{"name":"Tipella 7"},{"name":"Tipella"},{"name":"Tl'aaniiwa'a"},{"name":"Tl'esqox"},{"name":"Tl'etinqox"},{"name":"Tl'isnachis"},{"name":"Tl'itsnit"},{"name":"Tlaa Gaa Aawtlaas 28"},{"name":"Tlakmaqis"},{"name":"Tlell"},{"name":"Tloohat-a"},{"name":"Toad River"},{"name":"Tobacco Plains 2"},{"name":"Tobiano"},{"name":"Toby Creek"},{"name":"Toby's Meadow 4"},{"name":"Tofino"},{"name":"Tomslake"},{"name":"Toosey 1"},{"name":"Topley Landing"},{"name":"Topley"},{"name":"Tork 7"},{"name":"Tow Hill Road"},{"name":"Towdystan Lake 3"},{"name":"Towdystan"},{"name":"Tower Lake"},{"name":"Towinock 2"},{"name":"Traders Cove"},{"name":"Trail"},{"name":"Tranquille"},{"name":"Trevor Channel"},{"name":"Trinity Valley"},{"name":"Triple E Trailer Park"},{"name":"Trout Creek"},{"name":"Trout Lake Alec 16"},{"name":"Trout Lake"},{"name":"Trutch"},{"name":"Trépanier"},{"name":"Ts'axq'oo-is"},{"name":"Ts'iispoo-a"},{"name":"Tsa Xana 18"},{"name":"Tsahaheh 1"},{"name":"Tsaukan 12"},{"name":"Tsawwassen - Delta"},{"name":"Tsawwassen Beach"},{"name":"Tsawwassen"},{"name":"Tsay Cho 4"},{"name":"Tsay Keh Dene"},{"name":"Tseatah 2"},{"name":"Tsideldel"},{"name":"Tsimpsean 2 North Part"},{"name":"Tsinstikeptum 9"},{"name":"Tsinstikeptum 10"},{"name":"Tsinstikeptum 9"},{"name":"Tsolum River"},{"name":"Tsolum"},{"name":"Tsulquate 4"},{"name":"Tsunnia Lake 5"},{"name":"Tsussie 6"},{"name":"Tuckkwiowhum 1"},{"name":"Tulameen"},{"name":"Tulsequah"},{"name":"Tumbler Ridge"},{"name":"Tupper"},{"name":"Turner Subdivision"},{"name":"Turtle Valley"},{"name":"Tuwanek"},{"name":"Twidwell Bend"},{"name":"Twin Bays"},{"name":"Twin Creeks"},{"name":"Twin Firs Trailer Park"},{"name":"Twin Islands"},{"name":"Twin Lakes"},{"name":"Twin Sevens Trailer Park"},{"name":"Two Mile Hazelton"},{"name":"Two Mile"},{"name":"Two Rivers"},{"name":"Twoyqhalsht 16"},{"name":"Tyax Lake"},{"name":"Tyhee Trailer Park"},{"name":"Tynehead"},{"name":"Tzart-Lam 5"},{"name":"Tzeachten 13"},{"name":"Tzetzi Lake 11"},{"name":"Tzouhalem"},{"name":"Tête Jaune Cache"},{"name":"Ucluelet"},{"name":"Ulkatcho 13"},{"name":"Ulkatcho 14A"},{"name":"Ulkatcho"},{"name":"Uncha Lake 13A"},{"name":"Union Bay 4"},{"name":"Union Bay"},{"name":"University Endowment Area"},{"name":"University Hill"},{"name":"Unnamed 10"},{"name":"Upland Trailer Court"},{"name":"Upper Bench"},{"name":"Upper China Creek"},{"name":"Upper Cutbank"},{"name":"Upper Fraser"},{"name":"Upper Halfway"},{"name":"Upper Hat Creek 1"},{"name":"Upper Hat Creek"},{"name":"Upper Lynn"},{"name":"Upper Nepa 6"},{"name":"Upper Squamish Valley"},{"name":"Upper Sumas 6"},{"name":"Upsowis"},{"name":"Usk"},{"name":"Uuts"},{"name":"Valemount"},{"name":"Valhalla Subdivision"},{"name":"Valhalla"},{"name":"Valley Mobile Home"},{"name":"Valley Road Subdivision"},{"name":"Valley View"},{"name":"Valleycliffe"},{"name":"Valleyview"},{"name":"Vallican"},{"name":"Van Anda"},{"name":"Vancouver"},{"name":"Vanderhoof"},{"name":"Vanway"},{"name":"Vaseaux Lake"},{"name":"Vaucroft Beach"},{"name":"Vavenby"},{"name":"Vedder Crossing"},{"name":"Vermilion Crossing"},{"name":"Vernon"},{"name":"Vesuvius"},{"name":"Victoria Lake"},{"name":"Victoria"},{"name":"Victoria-Fraserview"},{"name":"Vidette"},{"name":"View Royal"},{"name":"Village Bay"},{"name":"Village Island 1"},{"name":"Village of Queen Charlotte"},{"name":"Vinsulla"},{"name":"W'aayi"},{"name":"Wabi Estates"},{"name":"Wabi Hill Trailer Court"},{"name":"Wadhams"},{"name":"Wagner Ranch"},{"name":"Waiwakum 14"},{"name":"Walcott"},{"name":"Walhachin"},{"name":"Walkers"},{"name":"Wall Beach"},{"name":"Walnut Grove"},{"name":"Waneta Junction"},{"name":"Waneta"},{"name":"Wardner"},{"name":"Warfield"},{"name":"Warner Bay"},{"name":"Wasa"},{"name":"Water's Subdivision"},{"name":"Webber Site"},{"name":"Websters Corners"},{"name":"Weeping Willow Trailer Court"},{"name":"Weewanie"},{"name":"Welcome Beach"},{"name":"Weldwood"},{"name":"Wellington"},{"name":"Wells"},{"name":"Weneez"},{"name":"West Bay"},{"name":"West Bench"},{"name":"West Creston"},{"name":"West End - New Westminster"},{"name":"West End - Vancouver"},{"name":"West End Trailer Park"},{"name":"West Heights"},{"name":"West Kelowna"},{"name":"West Landing"},{"name":"West Lynn"},{"name":"West Mara Lake"},{"name":"West Midway"},{"name":"West Moberly Lake 168A"},{"name":"West Point Grey"},{"name":"West Road Subdivision"},{"name":"West Sechelt"},{"name":"West Thurlow"},{"name":"West Trail"},{"name":"West Vancouver"},{"name":"Westbank - Tsinstikeptum 9"},{"name":"Westbank - West Kelowna"},{"name":"Westbridge"},{"name":"Westcoast Energy"},{"name":"Westholme"},{"name":"Westmount Acres Trailer Court"},{"name":"Westmount"},{"name":"Westridge"},{"name":"Westside"},{"name":"Westsyde"},{"name":"Westview"},{"name":"Westwold"},{"name":"Wet'suwet'en Village"},{"name":"Weyerhaeuser Subdivision"},{"name":"Whaletown"},{"name":"Whalley"},{"name":"Wheel Estates-Saratoga Beach"},{"name":"Whiplash Ranch"},{"name":"Whisky Creek"},{"name":"Whispering Pines 4"},{"name":"Whispering Pines Trailer Park"},{"name":"Whispering Winds Trailer Court"},{"name":"Whistler Creek"},{"name":"Whistler"},{"name":"White Lake"},{"name":"White Rock"},{"name":"White Spruce Trailer Court"},{"name":"Whitecroft"},{"name":"Whiterock Passage"},{"name":"Whonnock 1"},{"name":"Whonnock"},{"name":"Whyac"},{"name":"Whytecliff"},{"name":"Wigwam Inn"},{"name":"Wihat'a"},{"name":"Wii Lax K'ap"},{"name":"Wildwood Subdivision"},{"name":"Wildwood Trailer Park"},{"name":"Wildwood"},{"name":"Wiley"},{"name":"Williams Beach"},{"name":"Williams Lake 1"},{"name":"Williams Lake"},{"name":"Williams Landing"},{"name":"Williams Prairie Meadow 1A"},{"name":"Williamsons Landing"},{"name":"Willingdon Heights"},{"name":"Willow Brook"},{"name":"Willow Flats"},{"name":"Willow Point"},{"name":"Willow Ranch"},{"name":"Willow River"},{"name":"Willow Valley"},{"name":"Willowbrook - Okanagan-Similkameen C"},{"name":"Willowbrook - Peace River D"},{"name":"Willowvale"},{"name":"Wilmer"},{"name":"Wilson Creek"},{"name":"Wilson Landing"},{"name":"Windermere"},{"name":"Windmill Trailer Park"},{"name":"Windsor Park"},{"name":"Windy Mouth 7"},{"name":"Winfield Mobile Home Park"},{"name":"Winfield"},{"name":"Wingdam"},{"name":"Winlaw"},{"name":"Winter Harbour"},{"name":"Wistaria"},{"name":"Wisteria"},{"name":"Wolf"},{"name":"Wonowon"},{"name":"Woodcock"},{"name":"Woodcreek"},{"name":"Woodfibre"},{"name":"Woodhaven"},{"name":"Woodland Park Estates"},{"name":"Woodlands"},{"name":"Woodmere"},{"name":"Woodpecker"},{"name":"Woods Landing"},{"name":"Woodsdale"},{"name":"Woss"},{"name":"Woyenne 27"},{"name":"Wright"},{"name":"Wyah 3"},{"name":"Wycliffe Trailer Park"},{"name":"Wycliffe"},{"name":"Wyndhaven Subdivision"},{"name":"Wynndel"},{"name":"Xeni"},{"name":"Y.D. Ranch Subdivision"},{"name":"Ya:kats"},{"name":"Yaashitquo-a"},{"name":"Yaculta"},{"name":"Yahk"},{"name":"Yaku"},{"name":"Yakweakwioose 12"},{"name":"Yale Town 1"},{"name":"Yale"},{"name":"Yankee Flats"},{"name":"Yarksis"},{"name":"Yarrow"},{"name":"Yawaucht 11"},{"name":"Ye Koo Che 3"},{"name":"Yekooche"},{"name":"Yekwaupsum 18"},{"name":"Yellow Point"},{"name":"Yennadon"},{"name":"Ymir"},{"name":"Youbou West"},{"name":"Youbou"},{"name":"Young Lake"},{"name":"Yreka"},{"name":"YunesÌ‚it'in"},{"name":"Yuquot 1"},{"name":"Yuquot"},{"name":"Yuuhluth"},{"name":"Zacht 5"},{"name":"Zamora"},{"name":"Zeballos"},{"name":"Zincton"},{"name":"Zoht 4"},{"name":"qathet A"},{"name":"qathet B"},{"name":"qathet C"},{"name":"qathet D"},{"name":"qathet E"},{"name":"Ê”Esdilagh"}]} \ No newline at end of file +{"locations" : [{"name" : "100 Mile House"}, {"name" : "105 Mile House"}, {"name" : "108 Mile Ranch"}, {"name" : "111 Mile House"}, {"name" : "114 Mile House"}, {"name" : "122 Mile House"}, {"name" : "127 Mile House"}, {"name" : "12 Mile"}, {"name" : "141 Mile House"}, {"name" : "150 Mile House"}, {"name" : "40 Mile Flats"}, {"name" : "70 Mile House"}, {"name" : "93 Mile"}, {"name" : "Aa-at-sow-is"}, {"name" : "Abbott Heights"}, {"name" : "Aberdeen"}, {"name" : "Acous"}, {"name" : "Adams Lake"}, {"name" : "Agassiz"}, {"name" : "Agate"}, {"name" : "Ahbau"}, {"name" : "Ahousat"}, {"name" : "Ah:tliish"}, {"name" : "Ainsworth Hot Springs"}, {"name" : "Aiyansh 1"}, {"name" : "Aiyansh (Kitladamas) 1"}, {"name" : "Akiskinook"}, {"name" : "Ak:tiis"}, {"name" : "Alamo"}, {"name" : "Albas"}, {"name" : "Alberni"}, {"name" : "Alberni-Clayoquot, Subd. A"}, {"name" : "Alberni-Clayoquot, Subd. B"}, {"name" : "Albert Head"}, {"name" : "Albion"}, {"name" : "Albreda"}, {"name" : "Alder Creek"}, {"name" : "Aldergrove"}, {"name" : "Alert Bay"}, {"name" : "Alert Bay 1"}, {"name" : "Alert Bay 1A"}, {"name" : "Alexandria"}, {"name" : "Alexandria 1"}, {"name" : "Alexandria 1A"}, {"name" : "Alexandria 3"}, {"name" : "Alexandria 3A"}, {"name" : "Alexis Creek"}, {"name" : "Alexis Creek 17"}, {"name" : "Alexis Creek 24"}, {"name" : "Alexis Creek 25"}, {"name" : "Alexis Creek 6"}, {"name" : "Aleza Lake"}, {"name" : "Alice Arm"}, {"name" : "Alice Siding"}, {"name" : "Alkali Lake"}, {"name" : "Allenby"}, {"name" : "Allens Addition"}, {"name" : "Alliford Bay"}, {"name" : "Allison Lake"}, {"name" : "Almond Gardens"}, {"name" : "Almond Gardens Trailer Park"}, {"name" : "Alpine Meadows"}, {"name" : "Alpine Trailer Park"}, {"name" : "Alta Lake"}, {"name" : "Altamont"}, {"name" : "Altona"}, {"name" : "Alvin"}, {"name" : "A:mai"}, {"name" : "Ambleside"}, {"name" : "Anaconda"}, {"name" : "Anahim Lake"}, {"name" : "Anahim's Meadow 2"}, {"name" : "Anahim's Meadow 2A"}, {"name" : "Anaqtl'a"}, {"name" : "Anderson"}, {"name" : "Andy Cahoose Meadow 16"}, {"name" : "Anglemont"}, {"name" : "Anniedale"}, {"name" : "Annis"}, {"name" : "Annis Bay"}, {"name" : "Anvil Island"}, {"name" : "Anyox"}, {"name" : "Anzac"}, {"name" : "Apex Mountain"}, {"name" : "Appledale"}, {"name" : "Applegrove"}, {"name" : "Apsagayu 1A"}, {"name" : "Arbutus"}, {"name" : "Arbutus Ridge"}, {"name" : "Archibald Subdivision"}, {"name" : "Ardmore"}, {"name" : "Argenta"}, {"name" : "Armitage Trailer Court"}, {"name" : "Armstrong"}, {"name" : "Arnold"}, {"name" : "Arras"}, {"name" : "Arrow Creek"}, {"name" : "Arrow Creek-Lakeview"}, {"name" : "Arrowhead"}, {"name" : "Arrow Park"}, {"name" : "Arrowview Heights"}, {"name" : "Artina Trailer Court"}, {"name" : "Aschcroft Ranch"}, {"name" : "Ashcroft Manor"}, {"name" : "Ashton Creek"}, {"name" : "Aspen Grove"}, {"name" : "Aspen Mobile Trailer Court"}, {"name" : "Atchelitz"}, {"name" : "Athalmer"}, {"name" : "Atlin"}, {"name" : "Atluck"}, {"name" : "Atnarko"}, {"name" : "Attachie"}, {"name" : "Aupe 6"}, {"name" : "Aupe 6A"}, {"name" : "Austin Heights"}, {"name" : "Australian"}, {"name" : "Avola"}, {"name" : "Aywawwis 15"}, {"name" : "Azu Ski Village"}, {"name" : "Babcock Subdivision"}, {"name" : "Babine 6"}, {"name" : "Baezaeko River 25"}, {"name" : "Baezaeko River 26"}, {"name" : "Baker"}, {"name" : "Baker Creek"}, {"name" : "Baldonnel"}, {"name" : "Baldy Hughes"}, {"name" : "Balfour"}, {"name" : "Balmoral"}, {"name" : "Balmoral Beach"}, {"name" : "Bamberton"}, {"name" : "Bamfield"}, {"name" : "B and D Trailer Court"}, {"name" : "Bankeir"}, {"name" : "Bargain Harbour"}, {"name" : "Barkerville"}, {"name" : "Barlow Creek"}, {"name" : "Barnet"}, {"name" : "Barnhartvale"}, {"name" : "Barnston Island"}, {"name" : "Barrett Lake"}, {"name" : "Barrowtown"}, {"name" : "Bastion Bay"}, {"name" : "Batchelor Hills"}, {"name" : "Bates Beach"}, {"name" : "Baynes Lake"}, {"name" : "Bayview Estates"}, {"name" : "Beachcomber"}, {"name" : "Beachcomber Bay"}, {"name" : "Beach Grove"}, {"name" : "Bealby Point"}, {"name" : "Bear Camp"}, {"name" : "Bear Creek"}, {"name" : "Beard's Creek"}, {"name" : "Bear Flat"}, {"name" : "Bear Lake"}, {"name" : "Bear Mountain"}, {"name" : "Bear River Trailer Court"}, {"name" : "Beasley"}, {"name" : "Beaton"}, {"name" : "Beatton Ranch"}, {"name" : "Beaver Cove"}, {"name" : "Beaver Creek"}, {"name" : "Beaverdell"}, {"name" : "Beaver Falls"}, {"name" : "Beaver Lake"}, {"name" : "Beaverley"}, {"name" : "Beaver Pass House"}, {"name" : "Beaver Point"}, {"name" : "Beban Trailer Park"}, {"name" : "Becher Bay 2"}, {"name" : "Becher House"}, {"name" : "Bedwell Harbour"}, {"name" : "Belaire Estates Trailer Park"}, {"name" : "Bella Bella"}, {"name" : "Bella Coola"}, {"name" : "Belleview"}, {"name" : "Belle Vue Trailer Court"}, {"name" : "Bell II"}, {"name" : "Belmont Park"}, {"name" : "Belva's Trailer Park"}, {"name" : "Belvedere"}, {"name" : "Ben-My-Chree"}, {"name" : "Bennett"}, {"name" : "Benson Lake"}, {"name" : "Benvoulin"}, {"name" : "Beresford"}, {"name" : "Bergs"}, {"name" : "Beryl Prairie"}, {"name" : "Bessborough"}, {"name" : "Bestwick"}, {"name" : "Bevan"}, {"name" : "Big Bar"}, {"name" : "Big Bar Creek"}, {"name" : "Big Bay"}, {"name" : "Big Creek"}, {"name" : "Big Eddy"}, {"name" : "Big Lake Ranch"}, {"name" : "Big White"}, {"name" : "Big White Village"}, {"name" : "Bihl' k'a 18"}, {"name" : "Bihlk'a 6"}, {"name" : "Billings"}, {"name" : "Billings Bay"}, {"name" : "Binche 2 (Pinchie 2)"}, {"name" : "Birchdale"}, {"name" : "Birch Island"}, {"name" : "Birchland Manor"}, {"name" : "Birken"}, {"name" : "Blackcomb"}, {"name" : "Black Creek"}, {"name" : "Blackloam"}, {"name" : "Black Pines"}, {"name" : "Blackpool"}, {"name" : "Blackstock Subdivision"}, {"name" : "Blackwater"}, {"name" : "Blackwater Meadow 11"}, {"name" : "Blaeberry"}, {"name" : "Blakeburn"}, {"name" : "Blewett"}, {"name" : "Blind Bay"}, {"name" : "Blind Channel"}, {"name" : "Bliss Landing"}, {"name" : "Bloedel"}, {"name" : "Blowhole"}, {"name" : "Blubber Bay"}, {"name" : "Blucher Hall"}, {"name" : "Blueberry Creek"}, {"name" : "Blueberry Farm"}, {"name" : "Blue Hills"}, {"name" : "Blueridge"}, {"name" : "Blue River"}, {"name" : "Blue Springs"}, {"name" : "Boat Basin"}, {"name" : "Boat Harbour"}, {"name" : "Bob Quinn Lake"}, {"name" : "Bold Point"}, {"name" : "Bonaventure Trailer Park"}, {"name" : "Bonnet Hill"}, {"name" : "Bonnington Falls"}, {"name" : "Boothroyd"}, {"name" : "Boothroyd 5A"}, {"name" : "Boothroyd 8A (Part)"}, {"name" : "Boothroyd (Part) 8A"}, {"name" : "Boring Ranch"}, {"name" : "Boston Bar"}, {"name" : "Boston Flats"}, {"name" : "Boswell"}, {"name" : "Bouchie Lake"}, {"name" : "Boulder City"}, {"name" : "Boundary Bay"}, {"name" : "Boundary Falls"}, {"name" : "Bowen Bay"}, {"name" : "Bowen Island Trust"}, {"name" : "Bowron Lake"}, {"name" : "Bowser"}, {"name" : "Box Lake"}, {"name" : "Brackendale"}, {"name" : "Bradner"}, {"name" : "Brady Ranch"}, {"name" : "Braeloch"}, {"name" : "Braemar Heights"}, {"name" : "Braeside"}, {"name" : "Bralorne"}, {"name" : "Brandon"}, {"name" : "Brauns Island"}, {"name" : "Brem River"}, {"name" : "Brennan Creek"}, {"name" : "Brentwood Bay"}, {"name" : "Brentwood Park"}, {"name" : "Brew Bay"}, {"name" : "Brexton"}, {"name" : "Briar Ridge"}, {"name" : "Bridal Falls"}, {"name" : "Bridesville"}, {"name" : "Bridge Lake"}, {"name" : "Bridgeview"}, {"name" : "Brigade Lake"}, {"name" : "Brighouse"}, {"name" : "Brighton Beach"}, {"name" : "Brilliant"}, {"name" : "Brisco"}, {"name" : "Britannia Beach"}, {"name" : "British Properties"}, {"name" : "Broadmoor"}, {"name" : "Broadview"}, {"name" : "Broadview Villa"}, {"name" : "Brocklehurst"}, {"name" : "Broman Lake"}, {"name" : "Brookfield Trailers"}, {"name" : "Brookmere"}, {"name" : "Brookswood"}, {"name" : "Brouse"}, {"name" : "Brown Road Trailer Park"}, {"name" : "Browns Bay"}, {"name" : "Brunette Creek"}, {"name" : "Brunswick"}, {"name" : "Brunswick Beach"}, {"name" : "Buccaneer Bay"}, {"name" : "Buckhorn"}, {"name" : "Buckingham Heights"}, {"name" : "Buckinghorse River"}, {"name" : "Buckley Bay"}, {"name" : "Buena Vista Estates"}, {"name" : "Buffalo Creek"}, {"name" : "Buick"}, {"name" : "Bulkley House"}, {"name" : "Bulkley-Nechako, Subd. A"}, {"name" : "Bulkley-Nechako, Subd. B"}, {"name" : "Bulkley-Nechako, Subd. C"}, {"name" : "Bull Harbour"}, {"name" : "Bull River"}, {"name" : "Bummers Flat 6"}, {"name" : "Buntzen Bay"}, {"name" : "Burkeville"}, {"name" : "Burnaby Heights"}, {"name" : "Burnt Flats"}, {"name" : "Burquitlam"}, {"name" : "Burton"}, {"name" : "Butedale"}, {"name" : "Cache Creek Campground"}, {"name" : "Cadboro Bay"}, {"name" : "Caesars"}, {"name" : "Cahilty"}, {"name" : "Cahoose 10"}, {"name" : "Cahoose 12"}, {"name" : "Cahoose 8"}, {"name" : "Caithness"}, {"name" : "Caithness Trailer Court"}, {"name" : "Callison Ranch"}, {"name" : "Cambie-Solsqua"}, {"name" : "Camborne"}, {"name" : "Cameron Bar 13"}, {"name" : "Cameron Heights"}, {"name" : "Camp Artaban"}, {"name" : "Campbell Creek"}, {"name" : "Campbell Island"}, {"name" : "Campbellton"}, {"name" : "Camp Homewood"}, {"name" : "Camp McKinney"}, {"name" : "Canford"}, {"name" : "Canim Lake"}, {"name" : "Canoe"}, {"name" : "Canyon"}, {"name" : "Canyon Alpine"}, {"name" : "Canyon Heights"}, {"name" : "Canyon Hot Springs"}, {"name" : "Canyon Trailer Park"}, {"name" : "Capilano Highlands"}, {"name" : "Capital B"}, {"name" : "Capital D"}, {"name" : "Capital, Subd. A"}, {"name" : "Capital, Subd. B"}, {"name" : "Capital, Subd. C"}, {"name" : "Capital, Subd. D"}, {"name" : "Capitol Hill"}, {"name" : "Cariboo"}, {"name" : "Cariboo Meadows"}, {"name" : "Cariboo, Subd. A"}, {"name" : "Cariboo, Subd. B"}, {"name" : "Cariboo, Subd. C"}, {"name" : "Carlin"}, {"name" : "Carlson"}, {"name" : "Carmi"}, {"name" : "Carmi Subdivision"}, {"name" : "Carnaby"}, {"name" : "Carraholly"}, {"name" : "Carrolls Landing"}, {"name" : "Carrs"}, {"name" : "Carrs Landing"}, {"name" : "Carson"}, {"name" : "Cascade"}, {"name" : "Cascade Heights"}, {"name" : "Casimiel Meadows 15A"}, {"name" : "Casino"}, {"name" : "Cassiar"}, {"name" : "Cassidy"}, {"name" : "Cassidy Mobile Home Park"}, {"name" : "Cassin"}, {"name" : "Castledale"}, {"name" : "Castle Rock"}, {"name" : "Caulfeild"}, {"name" : "Cawston"}, {"name" : "Caycuse"}, {"name" : "Cecil Lake"}, {"name" : "Cedar"}, {"name" : "Cedar By The Sea"}, {"name" : "Cedar Creek Mobile Home Park"}, {"name" : "Cedardale"}, {"name" : "Cedar Grove"}, {"name" : "Cedar Heights Estates"}, {"name" : "Cedarside"}, {"name" : "Cedarvale"}, {"name" : "Ceepeecee"}, {"name" : "Celista"}, {"name" : "Central Coast, Subd. A"}, {"name" : "Central Fraser Valley, Subd. A"}, {"name" : "Central Kootenay, Subd. A"}, {"name" : "Central Kootenay, Subd. B"}, {"name" : "Central Kootenay, Subd. C"}, {"name" : "Central Okanagan G"}, {"name" : "Central Okanagan H"}, {"name" : "Central Okanagan J"}, {"name" : "Central Okanagan, Subd. A"}, {"name" : "Central Okanagan, Subd. B"}, {"name" : "Centreville"}, {"name" : "Chaatl"}, {"name" : "Cha cha tsi tsi us"}, {"name" : "Chain Lake"}, {"name" : "Chamiss Bay"}, {"name" : "Channel Ridge"}, {"name" : "Chap-is"}, {"name" : "Chapman Camp"}, {"name" : "Chapmans"}, {"name" : "Chapperon Ranch"}, {"name" : "Charella Garden"}, {"name" : "Charlie Lake"}, {"name" : "Charlotte Lake"}, {"name" : "Chase River"}, {"name" : "Chasm"}, {"name" : "Chateau Village Trailer Court"}, {"name" : "Chaumox"}, {"name" : "Chaumox 11"}, {"name" : "Cheakamus"}, {"name" : "Cheam View"}, {"name" : "Cheekye"}, {"name" : "Chekwelp 26A"}, {"name" : "Chemainus"}, {"name" : "Chenatha"}, {"name" : "Chequis"}, {"name" : "Cherry Creek"}, {"name" : "Cherryville"}, {"name" : "Ches-la-kee 3"}, {"name" : "Cheslatta"}, {"name" : "Chetarpe"}, {"name" : "Chezacut"}, {"name" : "Chicoltin Estates Trailer Park"}, {"name" : "Chilanko Forks"}, {"name" : "Chilcotin Forest"}, {"name" : "Chilton Subdivision"}, {"name" : "Chimney Valley"}, {"name" : "Chineside"}, {"name" : "Chinook Cove"}, {"name" : "Chinook Mobile Home Park"}, {"name" : "Choate"}, {"name" : "Chopaka"}, {"name" : "Christian Valley"}, {"name" : "Christina Lake"}, {"name" : "Chuchhriaschin 5"}, {"name" : "Chuchhriaschin 5A"}, {"name" : "Chu Chua"}, {"name" : "Chumata"}, {"name" : "Church House"}, {"name" : "Chute Lake"}, {"name" : "Cinema"}, {"name" : "Cinnabar Valley"}, {"name" : "City of West Kelowna"}, {"name" : "Clairmont"}, {"name" : "Claoose 4"}, {"name" : "Clapperton"}, {"name" : "Claremont Subdivision"}, {"name" : "Clayburn"}, {"name" : "Clayhurst"}, {"name" : "Clayoquot"}, {"name" : "Cleagh Creek"}, {"name" : "Clearbrook"}, {"name" : "Clearwater Trailer Park"}, {"name" : "Clem Clem"}, {"name" : "Clemretta"}, {"name" : "Cleveland Park"}, {"name" : "Clo-oose"}, {"name" : "Clover Acres Mobile Villa"}, {"name" : "Cloverdale"}, {"name" : "Clutus"}, {"name" : "Coal Harbour"}, {"name" : "Coalmont"}, {"name" : "Coal River"}, {"name" : "Cobble Hill"}, {"name" : "Cody"}, {"name" : "Coffin Point"}, {"name" : "Cokato"}, {"name" : "Coldspring House"}, {"name" : "Coldstream Ranch"}, {"name" : "Coldwell Beach"}, {"name" : "College Heights"}, {"name" : "Collettville"}, {"name" : "Colleymount"}, {"name" : "Colquitz"}, {"name" : "Columbia Gardens"}, {"name" : "Columbia Lake Resort Trailer Park"}, {"name" : "Columbia-Shuswap, Subd. A"}, {"name" : "Columbia-Shuswap, Subd. B"}, {"name" : "Columbia-Shuswap, Subd. C"}, {"name" : "Columere Park"}, {"name" : "Comer Hill Trailer Park"}, {"name" : "Comiaken"}, {"name" : "Commodore Heights"}, {"name" : "Comox-Strathcona A"}, {"name" : "Comox-Strathcona B"}, {"name" : "Comox-Strathcona C"}, {"name" : "Comox-Strathcona D"}, {"name" : "Comox-Strathcona G"}, {"name" : "Comox-Strathcona H"}, {"name" : "Comox-Strathcona I"}, {"name" : "Comox-Strathcona J"}, {"name" : "Comox-Strathcona K"}, {"name" : "Comox-Strathcona, Subd. A"}, {"name" : "Comox-Strathcona, Subd. B"}, {"name" : "Comox-Strathcona, Subd. C"}, {"name" : "Comox-Strathcona, Subd. D"}, {"name" : "Compton Island 6"}, {"name" : "Connaught Heights"}, {"name" : "Coombe"}, {"name" : "Coombs"}, {"name" : "Coombs Trailer Park"}, {"name" : "Cooper Creek"}, {"name" : "Copper City"}, {"name" : "Copper Cove"}, {"name" : "Copper Creek"}, {"name" : "Copper Mountain"}, {"name" : "Coral Beach"}, {"name" : "Corbin"}, {"name" : "Cordova Bay"}, {"name" : "Cornwall Lodge Trailer Park"}, {"name" : "Corra Linn"}, {"name" : "Cortes Bay"}, {"name" : "Coryville"}, {"name" : "Cosy Cove"}, {"name" : "Cottonwood"}, {"name" : "Cottonwood Trailer Park"}, {"name" : "Couldwell Subdivision"}, {"name" : "Country Lane Park"}, {"name" : "Country Side Estates Trailer Court"}, {"name" : "Coutlee"}, {"name" : "Cove Cliff"}, {"name" : "Cowans Point"}, {"name" : "Cowichan 1"}, {"name" : "Cowichan 9"}, {"name" : "Cowichan Bay"}, {"name" : "Cowichan Station"}, {"name" : "Cowichan Valley, Subd. A"}, {"name" : "Cowichan Valley, Subd. B"}, {"name" : "Cowichan Valley, Subd. C"}, {"name" : "Cowichan Valley, Subd. D"}, {"name" : "Coyle"}, {"name" : "Cracroft"}, {"name" : "Craigellachie"}, {"name" : "Craigs Trailer Court"}, {"name" : "Cranberry"}, {"name" : "Cranberry Junction"}, {"name" : "Cranbrook Trailer Court"}, {"name" : "Crawford Bay"}, {"name" : "Creekside"}, {"name" : "Creekside Trailer Park"}, {"name" : "Creighton Valley"}, {"name" : "Crescent"}, {"name" : "Crescent Bay"}, {"name" : "Crescent Beach"}, {"name" : "Crescent Spur"}, {"name" : "Crescent Valley"}, {"name" : "Crest-A-Way"}, {"name" : "Creston Valley Mobile Park"}, {"name" : "Creston Wyndle Road"}, {"name" : "Crestwood Subdivision"}, {"name" : "Criss Creek"}, {"name" : "Crofton"}, {"name" : "Crotteau Subdivision"}, {"name" : "Crowsnest"}, {"name" : "Croydon"}, {"name" : "Cultus Lake"}, {"name" : "Cultus Lake Estates Mobile Home Park"}, {"name" : "Cumshewa"}, {"name" : "Curzon"}, {"name" : "Cypress Park"}, {"name" : "Dadens"}, {"name" : "Dallas"}, {"name" : "Danskin"}, {"name" : "D'Arcy"}, {"name" : "Darfield"}, {"name" : "Darrell Bay"}, {"name" : "Dartmoor"}, {"name" : "Dashwood"}, {"name" : "Davis Bay"}, {"name" : "Dawsons Landing"}, {"name" : "Days Ranch"}, {"name" : "Day's Subdivision"}, {"name" : "Deadtree Point"}, {"name" : "Deadwood"}, {"name" : "Dease Lake"}, {"name" : "Dease Lake 9"}, {"name" : "Decker Lake"}, {"name" : "De Courcy Island"}, {"name" : "Deekyakus"}, {"name" : "Deep Bay"}, {"name" : "Deep Cove"}, {"name" : "Deep Creek"}, {"name" : "Deerholme"}, {"name" : "Deer Park"}, {"name" : "Defot"}, {"name" : "Deka Lake"}, {"name" : "Deka Lake Subdivision"}, {"name" : "Delbrook"}, {"name" : "Delkatla"}, {"name" : "Del Oro Subdivision"}, {"name" : "Denman Island"}, {"name" : "Dentville"}, {"name" : "Departure Bay"}, {"name" : "Deroche"}, {"name" : "Devine"}, {"name" : "Dewdney"}, {"name" : "Dewdney-Alouette, Subd. A"}, {"name" : "Dibble Subdivision"}, {"name" : "Digby Island"}, {"name" : "Dochsupple"}, {"name" : "Dodge Cove"}, {"name" : "Doe River"}, {"name" : "Dog Creek"}, {"name" : "Dogpatch"}, {"name" : "Dogwood Valley"}, {"name" : "Doig River"}, {"name" : "Dokie Siding"}, {"name" : "Dokkie Subdivision"}, {"name" : "Dolan Road Subdivision"}, {"name" : "Dollarton"}, {"name" : "Dolphin Beach"}, {"name" : "Dolphin Beach Estates"}, {"name" : "Dome Creek"}, {"name" : "Donald"}, {"name" : "Donald Landing"}, {"name" : "Donnely Landing"}, {"name" : "Don's Trailer Court"}, {"name" : "Dookqua"}, {"name" : "Dorcas Point"}, {"name" : "Doriston"}, {"name" : "Dorreen"}, {"name" : "Douglas"}, {"name" : "Douglas Hill Estates"}, {"name" : "Douglas Lake"}, {"name" : "Dove Creek"}, {"name" : "Drew Harbour"}, {"name" : "Driftwood Creek"}, {"name" : "Dry Gulch"}, {"name" : "Duck Range"}, {"name" : "Dufferin"}, {"name" : "Dugan Lake"}, {"name" : "Dunbar-Southlands"}, {"name" : "Duncan Bay"}, {"name" : "Duncanby Landing"}, {"name" : "Dundarave"}, {"name" : "Dunkley"}, {"name" : "Dunsmuir"}, {"name" : "Dunster"}, {"name" : "Durieu"}, {"name" : "Dutch Creek Subdivision"}, {"name" : "Dutch Lake"}, {"name" : "Dutch Lake Resort"}, {"name" : "Dutch Lake Subdivision"}, {"name" : "Dutch Lake Trailer Park"}, {"name" : "Eagle Bay"}, {"name" : "Eagle Bay Estates Subdivision"}, {"name" : "Eagle Bluff"}, {"name" : "Eagle Creek"}, {"name" : "Eagle Harbour"}, {"name" : "Eagle Heights"}, {"name" : "Eagle Ridge"}, {"name" : "Eagle Rock Trailer Park"}, {"name" : "Eagle Run"}, {"name" : "Earls Cove"}, {"name" : "East Arrow Park"}, {"name" : "Eastbourne"}, {"name" : "Eastburn"}, {"name" : "East Gate"}, {"name" : "Eastgate"}, {"name" : "East Kelowna"}, {"name" : "East Kootenay, Subd. A"}, {"name" : "East Kootenay, Subd. B"}, {"name" : "East Kootenay, Subd. C"}, {"name" : "East Osoyoos"}, {"name" : "East Pine"}, {"name" : "East Sooke"}, {"name" : "East Trail"}, {"name" : "East Wellington"}, {"name" : "Echo Bay"}, {"name" : "Ecoole"}, {"name" : "Eddontenajon"}, {"name" : "Eddy"}, {"name" : "Edelweiss"}, {"name" : "Edgewater"}, {"name" : "Edgewood"}, {"name" : "Edgewood Trailer Court"}, {"name" : "Ê”Esdilagh"}, {"name" : "Egmont"}, {"name" : "Ehatisaht"}, {"name" : "Eholt"}, {"name" : "Ekins Point"}, {"name" : "Elephant Crossing"}, {"name" : "Eleven Mile Site"}, {"name" : "Elgin"}, {"name" : "Elk Bay"}, {"name" : "Elko"}, {"name" : "Elk Prairie"}, {"name" : "Elk Valley Trailer Court"}, {"name" : "Ellison"}, {"name" : "Ellsworth Trailer Camp"}, {"name" : "Elphinstone"}, {"name" : "Endako"}, {"name" : "Engen"}, {"name" : "Engineer"}, {"name" : "Enterprise"}, {"name" : "Erickson"}, {"name" : "Erie"}, {"name" : "Errington"}, {"name" : "Esler"}, {"name" : "Esperanza"}, {"name" : "Espinosa Inlet"}, {"name" : "Esquimalt"}, {"name" : "Essondale"}, {"name" : "Estevan Point"}, {"name" : "Evergreen Acres"}, {"name" : "Evergreen Trailer Park"}, {"name" : "Ewing"}, {"name" : "Exeter"}, {"name" : "Exlou"}, {"name" : "Extension"}, {"name" : "Fairbridge"}, {"name" : "Fairfield"}, {"name" : "Fair Harbour"}, {"name" : "Fairmont Hot Springs"}, {"name" : "Fairview"}, {"name" : "Fairview Subdivision"}, {"name" : "Fairwinds"}, {"name" : "Falkland"}, {"name" : "Fallsway"}, {"name" : "False Bay"}, {"name" : "Fanny Bay"}, {"name" : "Farmington"}, {"name" : "Farrell Creek"}, {"name" : "Fauquier"}, {"name" : "Federal Ranch"}, {"name" : "Fellers Heights"}, {"name" : "Ferguson"}, {"name" : "Ferndale"}, {"name" : "Fernlee"}, {"name" : "Fern Ridge"}, {"name" : "Fernwood"}, {"name" : "Field"}, {"name" : "Fife"}, {"name" : "Fifth Cabin"}, {"name" : "Fintry"}, {"name" : "Fireside"}, {"name" : "Firvale"}, {"name" : "Five Mile"}, {"name" : "Five Mile Point 3"}, {"name" : "Flathead"}, {"name" : "Flatrock"}, {"name" : "Flats"}, {"name" : "Fleetwood"}, {"name" : "Floods"}, {"name" : "Fontas"}, {"name" : "Fontas 1"}, {"name" : "Forde"}, {"name" : "Foreman"}, {"name" : "Forestdale"}, {"name" : "Forestglade Trailer Park"}, {"name" : "Forest Grove"}, {"name" : "Forest Grove Trailer Park"}, {"name" : "Forest Hills"}, {"name" : "Forest Knolls"}, {"name" : "Forest Lawn Trailer Court"}, {"name" : "Fort Babine"}, {"name" : "Fort Fraser"}, {"name" : "Fort George (Shelley) 2"}, {"name" : "Fort Langley"}, {"name" : "Fort Nelson"}, {"name" : "Fort Nelson-Liard, Subd. A"}, {"name" : "Fort Rupert"}, {"name" : "Fort Steele"}, {"name" : "Fort Ware"}, {"name" : "Fosthall"}, {"name" : "Fountain"}, {"name" : "Fountain 1"}, {"name" : "Fountain 3"}, {"name" : "Fountain Valley"}, {"name" : "Fourth Cabin"}, {"name" : "Fourways Trailer Park"}, {"name" : "Fowler"}, {"name" : "Fox Mountain"}, {"name" : "Frames"}, {"name" : "Francis Peninsula"}, {"name" : "François Lake"}, {"name" : "Franklin Camp"}, {"name" : "Franks 10"}, {"name" : "Fraser"}, {"name" : "Fraser-Fort George, Subd. A"}, {"name" : "Fraser-Fort George, Subd. B"}, {"name" : "Fraser Heights"}, {"name" : "Fraser Mills"}, {"name" : "Fraser Valley H"}, {"name" : "Fraser Valley, Subd. A"}, {"name" : "Fraser Valley, Subd. B"}, {"name" : "Fraser Valley, Subd. C"}, {"name" : "Fraser Valley, Subd. D"}, {"name" : "Fraser Valley, Subd. E"}, {"name" : "Freeport Trailer Park"}, {"name" : "French Creek"}, {"name" : "Fry Creek"}, {"name" : "Fulford Harbour"}, {"name" : "Furry Creek"}, {"name" : "Gabriola"}, {"name" : "Gabriola Island"}, {"name" : "Gabriola Island Trust Area part A"}, {"name" : "Galena"}, {"name" : "Galena Bay"}, {"name" : "Gallagher Lake"}, {"name" : "Galloway"}, {"name" : "Gambier Harbour"}, {"name" : "Gambier Island"}, {"name" : "Ganges"}, {"name" : "Gang Ranch"}, {"name" : "Garden 2"}, {"name" : "Garden 2A"}, {"name" : "Garden Bay"}, {"name" : "Garden Village"}, {"name" : "Gardner Lake Mobile Home Park"}, {"name" : "Garibaldi"}, {"name" : "Garibaldi Estates"}, {"name" : "Garnet Rock Trailer Court"}, {"name" : "Garnet Valley"}, {"name" : "Garry Oaks"}, {"name" : "Gates"}, {"name" : "Gateway"}, {"name" : "Gellatly"}, {"name" : "Genelle"}, {"name" : "Genoa Bay"}, {"name" : "George River"}, {"name" : "Georgetown Mills"}, {"name" : "Germansen Landing"}, {"name" : "Gerow Island"}, {"name" : "Gerrard"}, {"name" : "Gibson Creek"}, {"name" : "Gifford"}, {"name" : "Gillies Bay"}, {"name" : "Gilpin"}, {"name" : "Gingolx"}, {"name" : "Giscome"}, {"name" : "Gitanyow"}, {"name" : "Gitlaxksiip"}, {"name" : "Gitwinksihlkw"}, {"name" : "Gitwinksihlkw 7"}, {"name" : "Gitzault 24"}, {"name" : "Glacier Gulch"}, {"name" : "Glade"}, {"name" : "Gladwin Trailer Court"}, {"name" : "Glenannan"}, {"name" : "Glenbank"}, {"name" : "Glenbrooke North"}, {"name" : "Glendale"}, {"name" : "Gleneagles"}, {"name" : "Gleneden"}, {"name" : "Glenemma"}, {"name" : "Glen-Gla-Ouch 5"}, {"name" : "Glen Lake"}, {"name" : "Glenlily"}, {"name" : "Glenmerry"}, {"name" : "Glenmore"}, {"name" : "Glenora"}, {"name" : "Glenrosa"}, {"name" : "Glentanna"}, {"name" : "Glen Valley"}, {"name" : "Glen Vowell"}, {"name" : "Glimpse Lake"}, {"name" : "Gold Bridge"}, {"name" : "Goldstream"}, {"name" : "Good Hope"}, {"name" : "Good Hope Lake"}, {"name" : "Goodlow"}, {"name" : "Goose Bay"}, {"name" : "Gordon Head"}, {"name" : "Gordon River"}, {"name" : "Gorge Harbour"}, {"name" : "Gossen Creek"}, {"name" : "Gossip Island"}, {"name" : "Gowlland Harbour"}, {"name" : "Graffunder Trailer Park"}, {"name" : "Gramsons"}, {"name" : "Grand Haven"}, {"name" : "Grand Rapids"}, {"name" : "Granduc"}, {"name" : "Grandview"}, {"name" : "Grandview Bench"}, {"name" : "Grandview-Woodlands"}, {"name" : "Granite"}, {"name" : "Granite Bay"}, {"name" : "Granite Falls"}, {"name" : "Granite Trailer Park"}, {"name" : "Grantham"}, {"name" : "Granthams Landing"}, {"name" : "Grasmere"}, {"name" : "Grassy Plains"}, {"name" : "Gravelle Ferry"}, {"name" : "Gray Creek"}, {"name" : "Greata"}, {"name" : "Great Central"}, {"name" : "Great Central Lake"}, {"name" : "Greater Vancouver A"}, {"name" : "Greater Vancouver C"}, {"name" : "Greater Vancouver, Subd. A"}, {"name" : "Green Acres Trailer Park"}, {"name" : "Green Bay Resort"}, {"name" : "Green Cove"}, {"name" : "Greendale"}, {"name" : "Greenwood Mobile Park"}, {"name" : "Grindrod"}, {"name" : "Groundbirch"}, {"name" : "Guildford"}, {"name" : "Gundy"}, {"name" : "Gun Lake"}, {"name" : "Hagensborg"}, {"name" : "Hagwilget"}, {"name" : "Haig"}, {"name" : "Haina"}, {"name" : "Halfmoon Bay"}, {"name" : "Halfway Graham Subdivision"}, {"name" : "Halfway Ranch"}, {"name" : "Halhalaeden 14"}, {"name" : "Halhalaeden 14A"}, {"name" : "Hall"}, {"name" : "Halyn Trailer Court"}, {"name" : "Hamilton Creek 7"}, {"name" : "Hanbury"}, {"name" : "Hanceville"}, {"name" : "Haney"}, {"name" : "Happy Valley"}, {"name" : "Happy Valley Trailer Park"}, {"name" : "Harbour Chines"}, {"name" : "Harbour Village"}, {"name" : "Hardwicke Island"}, {"name" : "Harmac"}, {"name" : "Harmony Heights Trailer Park"}, {"name" : "Harrison Mills"}, {"name" : "Harrogate"}, {"name" : "Harrop"}, {"name" : "Hart Highlands"}, {"name" : "Hartley Bay"}, {"name" : "Harwood Island 2"}, {"name" : "Hasler Flat"}, {"name" : "Hasler Flats Subdivision"}, {"name" : "Hastings-Sunrise"}, {"name" : "Hatzic"}, {"name" : "Hawkins Lake Subdivision"}, {"name" : "Hayview Mobile Home"}, {"name" : "Hayward Subdivision"}, {"name" : "Hazelmere"}, {"name" : "Headquarters"}, {"name" : "Headwaters Ranch"}, {"name" : "Health Bay"}, {"name" : "Hecate"}, {"name" : "Hedley"}, {"name" : "Heffley Creek"}, {"name" : "Hells Gate"}, {"name" : "Hemlock Valley"}, {"name" : "Hendrix Lake"}, {"name" : "Henry And Ann Trailer Park"}, {"name" : "Heriot Bay"}, {"name" : "Hesquiat"}, {"name" : "Heydon Bay"}, {"name" : "Hickethier Ranch"}, {"name" : "Hideway Trailer Court"}, {"name" : "Highland Valley Subdivision"}, {"name" : "Hiina'is"}, {"name" : "Hillcrest"}, {"name" : "Hilliers"}, {"name" : "Hills"}, {"name" : "Hillside Mobile Home Park"}, {"name" : "Hilltop Ranch"}, {"name" : "Hippa"}, {"name" : "Hisnit"}, {"name" : "Hitacu"}, {"name" : "Hi'tatis"}, {"name" : "Hiusta Meadow"}, {"name" : "Hixon"}, {"name" : "Hkusam"}, {"name" : "Holberg"}, {"name" : "Holiday Family Trailer Park"}, {"name" : "Hollyburn"}, {"name" : "Holmwood"}, {"name" : "Homalco 9"}, {"name" : "Homestead Trailer Park"}, {"name" : "Homfray Creek"}, {"name" : "Honeymoon Bay"}, {"name" : "Honeymoon Creek"}, {"name" : "Hoodoos"}, {"name" : "Hoo-ii"}, {"name" : "Hope Bay"}, {"name" : "Hopetown"}, {"name" : "Hopington"}, {"name" : "Hopkins Landing"}, {"name" : "Horlick Point"}, {"name" : "Hornby Island"}, {"name" : "Horsefly"}, {"name" : "Horseshoe Bay"}, {"name" : "Hosmatqts'os"}, {"name" : "Hosmer"}, {"name" : "Hosmer Trailer Park"}, {"name" : "Hospital Hill"}, {"name" : "Hot Springs Cove"}, {"name" : "Houpsitas"}, {"name" : "Houpsitas 6"}, {"name" : "Houston Trailer Court"}, {"name" : "Howser"}, {"name" : "Hudson Hope"}, {"name" : "Hullcar"}, {"name" : "Humpback Bay"}, {"name" : "Huntingdon"}, {"name" : "Hunts Inlet"}, {"name" : "Hupel"}, {"name" : "Huscroft"}, {"name" : "Hutchinson"}, {"name" : "Hu'ul"}, {"name" : "Hyacinthe Bay"}, {"name" : "Hyde Creek"}, {"name" : "Hydraulic"}, {"name" : "Hyland Post"}, {"name" : "Hyland Ranch"}, {"name" : "Idabel Lake"}, {"name" : "Indian Rock"}, {"name" : "Ingenika Mine"}, {"name" : "Inkaneep"}, {"name" : "Inkluckcheen 21"}, {"name" : "Inkluckcheen 21B"}, {"name" : "Ioco"}, {"name" : "Iron Bay"}, {"name" : "Iron Mask Trailer Park"}, {"name" : "Irvines Landing"}, {"name" : "Isaac (Gale Lake) 8"}, {"name" : "Iskut"}, {"name" : "Island Cache"}, {"name" : "Isle Pierre"}, {"name" : "Ivy Green Mobile Home Park"}, {"name" : "Jackfish Lake Subdivision"}, {"name" : "Jackman"}, {"name" : "Jackpine Flats"}, {"name" : "Jackson Bay"}, {"name" : "Jacksons"}, {"name" : "Jade City"}, {"name" : "Jaffray"}, {"name" : "Jaffray Estates"}, {"name" : "James Bay"}, {"name" : "Jedway"}, {"name" : "Jellicoe"}, {"name" : "Jersey"}, {"name" : "Jervis Inlet"}, {"name" : "Jesmond"}, {"name" : "Jeune Landing"}, {"name" : "Jim Smith Lake and Area"}, {"name" : "Johnson"}, {"name" : "Johnson Heights"}, {"name" : "Johnsons Landing"}, {"name" : "Jordan River"}, {"name" : "Juan de Fuca"}, {"name" : "Jumbo Glacier"}, {"name" : "June Springs Estates"}, {"name" : "Juniper Ridge"}, {"name" : "Jura"}, {"name" : "Juskatla"}, {"name" : "Kahntah"}, {"name" : "Kahntah 3"}, {"name" : "Kaisun"}, {"name" : "Kakawis"}, {"name" : "Kaleden"}, {"name" : "Kaleva"}, {"name" : "Kanaka Bar"}, {"name" : "Kanaka Bar 1A"}, {"name" : "Kanaka Bar 2"}, {"name" : "Ka:ook"}, {"name" : "Ka:oop:insh"}, {"name" : "Karlukwees"}, {"name" : "Karlukwees 1"}, {"name" : "Ka-x-shiitl"}, {"name" : "Ka:youk"}, {"name" : "Keating"}, {"name" : "Keats Island"}, {"name" : "Kedleston"}, {"name" : "Keekwillie Subdivision"}, {"name" : "Keekwillie Trailer Park"}, {"name" : "Keeshan 9"}, {"name" : "Keithley Creek"}, {"name" : "Keith-Lynn"}, {"name" : "Kelly Lake"}, {"name" : "Kelly Lake Road Estates"}, {"name" : "Kelvin"}, {"name" : "Kemano"}, {"name" : "Kemano Beach"}, {"name" : "Kendrick Camp"}, {"name" : "Kensington-Cedar Cottage"}, {"name" : "Kerr Creek"}, {"name" : "Kerrisdale"}, {"name" : "Kershaw Subdivision"}, {"name" : "Kersley"}, {"name" : "Kettle Valley"}, {"name" : "Khahanie Trailer Court"}, {"name" : "Khenipsen"}, {"name" : "Kia Ora Trailer Park"}, {"name" : "Kicking Horse"}, {"name" : "K'i Deldel"}, {"name" : "Kiikiixink'ok"}, {"name" : "Kiix aa"}, {"name" : "Kiix-in"}, {"name" : "Kilbella Bay"}, {"name" : "Kildala Arm"}, {"name" : "Kildonan"}, {"name" : "Kilgard"}, {"name" : "Kilkerran"}, {"name" : "Killarney"}, {"name" : "Killiney Beach"}, {"name" : "Kimsquit"}, {"name" : "Kincolith 14"}, {"name" : "Kingcome"}, {"name" : "Kingcome Inlet"}, {"name" : "Kingfisher"}, {"name" : "Kingsgate"}, {"name" : "Kinnaird"}, {"name" : "Kispiox"}, {"name" : "Kispiox Valley"}, {"name" : "Kitamaat Village"}, {"name" : "Kitchener"}, {"name" : "Kitimat-Stikine, Subd. A"}, {"name" : "Kitimat-Stikine, Subd. B"}, {"name" : "Kitimat-Stikine, Subd. C"}, {"name" : "Kitimat-Stikine, Subd. D"}, {"name" : "Kitkatla"}, {"name" : "Kitsault"}, {"name" : "Kitseguecla"}, {"name" : "Kitsilano"}, {"name" : "Kitsumkalum"}, {"name" : "Kitty Coleman"}, {"name" : "Kitwanga"}, {"name" : "Kiusta"}, {"name" : "Klahkowit 5"}, {"name" : "Kleanza Creek Subdivision"}, {"name" : "Kleecoot"}, {"name" : "Kleena Kleene"}, {"name" : "Kleindale"}, {"name" : "Klemtu"}, {"name" : "Kliikliihuwis"}, {"name" : "Klit-kle-mah-ah"}, {"name" : "Kluachon Lake 1"}, {"name" : "Knutsford"}, {"name" : "Kobes"}, {"name" : "Kokish"}, {"name" : "Koksilah"}, {"name" : "Kookswees"}, {"name" : "Kootenay Bay"}, {"name" : "Kootenay Boundary B"}, {"name" : "Kootenay Boundary C"}, {"name" : "Kootenay Boundary D"}, {"name" : "Kootenay Boundary E"}, {"name" : "Kootenay Boundary, Subd. A"}, {"name" : "Kootenay Boundary, Subd. B"}, {"name" : "Kootenay Cove Mobile Village"}, {"name" : "Kootenay Crossing"}, {"name" : "Kootenay Flats West"}, {"name" : "K'oxsinqii"}, {"name" : "Kragmont"}, {"name" : "Krestova"}, {"name" : "'Ksan"}, {"name" : "Kuldo"}, {"name" : "Kulkayu 4"}, {"name" : "Kung"}, {"name" : "Kuper Island 7"}, {"name" : "Kushya Creek 7"}, {"name" : "Kuskonook"}, {"name" : "Kuthlalth 3"}, {"name" : "Kuz Che 5"}, {"name" : "Kwinaquth"}, {"name" : "Kwisitis"}, {"name" : "Kye Bay"}, {"name" : "Kyuquot"}, {"name" : "Lachkaltsap 9"}, {"name" : "Lac la Hache"}, {"name" : "Lac Le Jeune"}, {"name" : "Ladner"}, {"name" : "Laidlaw"}, {"name" : "Lake Buntzen"}, {"name" : "Lake Errock"}, {"name" : "Lake Hill"}, {"name" : "Lake Kathlyn"}, {"name" : "Lakelse Lake"}, {"name" : "Lakeshore Highlands"}, {"name" : "Laketon"}, {"name" : "Lakeview Heights"}, {"name" : "Lambourn Trailer Park"}, {"name" : "Lamming Mills"}, {"name" : "Lang Bay"}, {"name" : "Langdale"}, {"name" : "Langley"}, {"name" : "Langley 5"}, {"name" : "Langner Trailer Park"}, {"name" : "Larch Hill"}, {"name" : "Lardeau"}, {"name" : "Larsons Landing"}, {"name" : "Laurentian Belaire"}, {"name" : "Lavington"}, {"name" : "Lawnhill"}, {"name" : "Laxgalts'ap"}, {"name" : "Lax Kw'alaams"}, {"name" : "Lazo"}, {"name" : "Lebahdo"}, {"name" : "Leechtown"}, {"name" : "Lee Creek"}, {"name" : "Lees Corner"}, {"name" : "Lejac"}, {"name" : "Lemon Creek"}, {"name" : "Lemoray"}, {"name" : "Leo Creek"}, {"name" : "Leon Creek 2"}, {"name" : "Lexau Ranch"}, {"name" : "Lexington Subdivision"}, {"name" : "Lezbye 6"}, {"name" : "Liard River"}, {"name" : "Lighthouse Point"}, {"name" : "Likely"}, {"name" : "Lily Lake"}, {"name" : "Lincoln Park"}, {"name" : "Lindell"}, {"name" : "Lindell Beach"}, {"name" : "Lindeman"}, {"name" : "Lismore Trailer Park"}, {"name" : "Lister"}, {"name" : "Little Acres Trailer Court"}, {"name" : "Little Fort"}, {"name" : "Little River"}, {"name" : "Little Springs 18"}, {"name" : "Little Springs 8"}, {"name" : "Liumchen Village Mobile Home Park"}, {"name" : "Living Waters Trailer Park"}, {"name" : "Lockeport"}, {"name" : "Lodge Pole Trailer Park"}, {"name" : "Lone Butte"}, {"name" : "Lone Prairie"}, {"name" : "Longbeach"}, {"name" : "Long Harbour"}, {"name" : "Longworth"}, {"name" : "Loon Lake"}, {"name" : "Loon Lake Subdivision"}, {"name" : "Loos"}, {"name" : "Louis Creek"}, {"name" : "Louis Squinas Ranch 14"}, {"name" : "Lower China Creek"}, {"name" : "Lower Lodge Pole Trailer Court"}, {"name" : "Lower Lonsdale"}, {"name" : "Lower Nicola"}, {"name" : "Lower Nicola Trailer Park"}, {"name" : "Lower Post"}, {"name" : "Lucerne"}, {"name" : "Lumberton"}, {"name" : "Lund"}, {"name" : "Lust Subdivision"}, {"name" : "Luxton"}, {"name" : "Lynnmour"}, {"name" : "Lynn Valley"}, {"name" : "Lynx Creek"}, {"name" : "Lytton 27B"}, {"name" : "Maalth-sit"}, {"name" : "Mabel Lake"}, {"name" : "Macalister"}, {"name" : "Macoah"}, {"name" : "Madeira Park"}, {"name" : "Magic Lake Estates"}, {"name" : "Magna Bay"}, {"name" : "Magnum Mine"}, {"name" : "Mahatta River"}, {"name" : "Mah:kiit"}, {"name" : "Mahmalillikullah 1"}, {"name" : "Mahood Falls"}, {"name" : "Mahope"}, {"name" : "Maht'ii'as"}, {"name" : "Maillardville"}, {"name" : "Makinson"}, {"name" : "Malahat"}, {"name" : "Malakwa"}, {"name" : "Malakwa Trailer Park"}, {"name" : "Malibu"}, {"name" : "Mammel Subdivision"}, {"name" : "Manca Subdivision"}, {"name" : "Manning Park"}, {"name" : "Manson Creek"}, {"name" : "Mansons Landing"}, {"name" : "Mapes"}, {"name" : "Maple Bay"}, {"name" : "Maplewood"}, {"name" : "Maq:cup"}, {"name" : "Mara"}, {"name" : "Marblehead"}, {"name" : "Margaret Bay"}, {"name" : "Marguerite"}, {"name" : "Marigold"}, {"name" : "Marilla"}, {"name" : "Marktosis"}, {"name" : "Marne"}, {"name" : "Marpole"}, {"name" : "Marron Valley"}, {"name" : "Marshall School Junction"}, {"name" : "Marsh Creek Area"}, {"name" : "Marsh Subdivision"}, {"name" : "Martin Prairie"}, {"name" : "Martin Valley"}, {"name" : "Mary Hill"}, {"name" : "Marysville"}, {"name" : "Mason Creek"}, {"name" : "Matilpi"}, {"name" : "Matsayno 5"}, {"name" : "Matsqui"}, {"name" : "Maurelle Island"}, {"name" : "Maxan Lake 4"}, {"name" : "Mayfair"}, {"name" : "Mayne Island"}, {"name" : "Mayne Island 6"}, {"name" : "Mayook"}, {"name" : "McCalls Landing"}, {"name" : "McCulloch"}, {"name" : "McDame"}, {"name" : "McDonalds Landing"}, {"name" : "McGillivray"}, {"name" : "McGregor"}, {"name" : "McGuire"}, {"name" : "McKearney Ranch"}, {"name" : "McKinley Landing"}, {"name" : "McLean Ranch"}, {"name" : "McLeese Lake"}, {"name" : "McLeod Lake"}, {"name" : "McLeod Lake 5"}, {"name" : "McLeod Subdivision"}, {"name" : "McLure"}, {"name" : "McNab Creek"}, {"name" : "Meachen"}, {"name" : "Meadowbrook"}, {"name" : "Meadowbrook Estates Trailer Park"}, {"name" : "Meadow Creek"}, {"name" : "Meadow Lake"}, {"name" : "Meadows"}, {"name" : "Meem Quam Leese"}, {"name" : "Meldrum Creek"}, {"name" : "Merville"}, {"name" : "Mesachie Lake"}, {"name" : "Metlakatla"}, {"name" : "Metrotown"}, {"name" : "Meziadin Junction"}, {"name" : "Meziadin Subdivision"}, {"name" : "Mica Creek"}, {"name" : "Middlegate"}, {"name" : "Middle River"}, {"name" : "Mile 16 (Hwy 97)"}, {"name" : "Mile 19 Overhead"}, {"name" : "Mile 292 Subdivision Alaska Hwy"}, {"name" : "Mile 293 Alaska Highway"}, {"name" : "Mile 422 Alaska Highway"}, {"name" : "Mile 5 Alaska Highway"}, {"name" : "Mile 62 1/2"}, {"name" : "Mill Bay"}, {"name" : "Miller Creek Subdivision"}, {"name" : "Millers Landing"}, {"name" : "Miller Subdivision"}, {"name" : "Millstream"}, {"name" : "Milner"}, {"name" : "Milnes Landing"}, {"name" : "Minaty Bay"}, {"name" : "Minstrel Island"}, {"name" : "Minto Landing"}, {"name" : "Miocene"}, {"name" : "Miracle Beach"}, {"name" : "Miracle Valley"}, {"name" : "Mirror Lake"}, {"name" : "Missezula Lake"}, {"name" : "Mission Hill"}, {"name" : "Mission Island 2"}, {"name" : "Mitchell Bay"}, {"name" : "Miworth"}, {"name" : "Moberly Lake"}, {"name" : "Moha"}, {"name" : "Montague Harbour"}, {"name" : "Monte Creek"}, {"name" : "Monte Lake"}, {"name" : "Montizambert Wynd"}, {"name" : "Montney"}, {"name" : "Moose Heights"}, {"name" : "Mooyah Bay"}, {"name" : "Moresby Camp"}, {"name" : "Morgan Subdivision"}, {"name" : "Moricetown"}, {"name" : "Morrissey"}, {"name" : "Mound Road Subdivision"}, {"name" : "Mountain Peak Trailer Court"}, {"name" : "Mountain Shadows Trailer Court"}, {"name" : "Mountain Shadow Trailer Court"}, {"name" : "Mountain Station"}, {"name" : "Mountain View"}, {"name" : "Mountain View Trailer Court"}, {"name" : "Mountainview Trailer Park"}, {"name" : "Mount Baldy"}, {"name" : "Mount Currie"}, {"name" : "Mount Currie 1"}, {"name" : "Mount Currie 10"}, {"name" : "Mount Currie 2"}, {"name" : "Mount Currie 6"}, {"name" : "Mount Currie 8"}, {"name" : "Mount Gardner"}, {"name" : "Mount Lehman"}, {"name" : "Mount Pleasant"}, {"name" : "Mount Robson"}, {"name" : "Mount View Trailer Court"}, {"name" : "Mount Waddington, Subd. A"}, {"name" : "Mount Waddington, Subd. B"}, {"name" : "Mount Washington"}, {"name" : "Moyie"}, {"name" : "Moyie Lake"}, {"name" : "Moyie River"}, {"name" : "Moyie Shore Estates"}, {"name" : "Mud Bay"}, {"name" : "Mudge Island"}, {"name" : "Mud River"}, {"name" : "Muncho Lake"}, {"name" : "Murdale"}, {"name" : "Murrayville"}, {"name" : "Musgrave Landing"}, {"name" : "Muskwa"}, {"name" : "Myra"}, {"name" : "Myrtle Point"}, {"name" : "Nadu"}, {"name" : "Nahmint"}, {"name" : "Nahun"}, {"name" : "Nak'azdli (Necoslie 1)"}, {"name" : "Nalos Landing"}, {"name" : "Ná:mint"}, {"name" : "Namu"}, {"name" : "Nanaimo D"}, {"name" : "Nanaimo River 2"}, {"name" : "Nanaimo River 3"}, {"name" : "Nanaimo River 4"}, {"name" : "Nanaimo, Subd. A"}, {"name" : "Nanaimo, Subd. B"}, {"name" : "Nanoose Bay"}, {"name" : "Naramata"}, {"name" : "Narcosli Creek"}, {"name" : "Nasookin Road Subdivision"}, {"name" : "Nass Camp"}, {"name" : "Nazko"}, {"name" : "Nechako"}, {"name" : "Needles"}, {"name" : "Nekliptum 1"}, {"name" : "Nelson Forks"}, {"name" : "Nelson Island"}, {"name" : "Nelway"}, {"name" : "Nemaiah Valley"}, {"name" : "Nemiah Valley"}, {"name" : "Nequatque 1"}, {"name" : "Nequatque 2"}, {"name" : "Nequatque 3A"}, {"name" : "Neskonlith 1"}, {"name" : "Neskonlith 1 (Neskainlith 1)"}, {"name" : "Neskonlith 2"}, {"name" : "Nesters"}, {"name" : "New Aiyansh"}, {"name" : "New Aiyansh 1"}, {"name" : "New Barkerville"}, {"name" : "New Brighton"}, {"name" : "Newcastle"}, {"name" : "New Clew"}, {"name" : "Newgate"}, {"name" : "Newlands"}, {"name" : "New Remo"}, {"name" : "New Settlement"}, {"name" : "Newton"}, {"name" : "Niagara"}, {"name" : "Nichols Mobile Homes"}, {"name" : "Nicholson"}, {"name" : "Nicks Island"}, {"name" : "Nicola"}, {"name" : "Nimpkish"}, {"name" : "Nimpkish Heights"}, {"name" : "Nimpo Lake"}, {"name" : "Ninety Five Mile House"}, {"name" : "Ninety Four Mile House"}, {"name" : "Ninety Seven Mile House"}, {"name" : "Ninety Three Mile House"}, {"name" : "Ninstints"}, {"name" : "Nootka"}, {"name" : "Noralee"}, {"name" : "Norgate"}, {"name" : "North Bend"}, {"name" : "North Bonaparte"}, {"name" : "North Bulkley"}, {"name" : "North Campbell River"}, {"name" : "North Delta"}, {"name" : "Northern Rockies A"}, {"name" : "Northern Rockies B"}, {"name" : "Northern Rockies Regional Municipality"}, {"name" : "Northfield"}, {"name" : "North Galiano"}, {"name" : "North Kamloops"}, {"name" : "North Lonsdale"}, {"name" : "North Nechako"}, {"name" : "North Okanagan, Subd. A"}, {"name" : "North Okanagan, Subd. B"}, {"name" : "North Pender Island"}, {"name" : "North Pine"}, {"name" : "North Poplar"}, {"name" : "Northridge"}, {"name" : "North Star"}, {"name" : "North Tacla Lake 7"}, {"name" : "North Tacla Lake 7A"}, {"name" : "North Vancouver"}, {"name" : "North Woodlands"}, {"name" : "Notch Hill"}, {"name" : "Nourse Subdivision"}, {"name" : "Nuchaquis"}, {"name" : "Nuchatl 1"}, {"name" : "Nuchatl 2"}, {"name" : "Nuchatlitz"}, {"name" : "Nukko Lake"}, {"name" : "Nulki"}, {"name" : "Nursery"}, {"name" : "Nuumaqimyis"}, {"name" : "Oak Hills"}, {"name" : "Oakridge"}, {"name" : "Oasis"}, {"name" : "Oasis Trailer Court"}, {"name" : "Ocean Falls"}, {"name" : "Ocean Grove"}, {"name" : "Ocean Park"}, {"name" : "Oetco Flats"}, {"name" : "Ogden"}, {"name" : "Okanagan Centre"}, {"name" : "Okanagan Falls"}, {"name" : "Okanagan Landing"}, {"name" : "Okanagan Mission"}, {"name" : "Okanagan-Similkameen, Subd. A"}, {"name" : "Okanagan-Similkameen, Subd. B"}, {"name" : "Okanagan-Similkameen, Subd. C"}, {"name" : "Okanagan Terrace Trailer Park"}, {"name" : "Olalla"}, {"name" : "Old Bella Bella"}, {"name" : "Old Fort"}, {"name" : "Old Fort Nelson"}, {"name" : "Old Hogem"}, {"name" : "Old Massett"}, {"name" : "Old Remo"}, {"name" : "Old Town"}, {"name" : "Oliver's Landing"}, {"name" : "One Forty One Mile House"}, {"name" : "Oona River"}, {"name" : "Ootischenia"}, {"name" : "Ootischenia Flats"}, {"name" : "Ootsa Lake"}, {"name" : "Openit 27"}, {"name" : "Opitsat"}, {"name" : "Orlomah Beach"}, {"name" : "Osborn"}, {"name" : "Osland"}, {"name" : "Osprey Lake"}, {"name" : "Othello"}, {"name" : "Ots'oo-a"}, {"name" : "Otter Bay"}, {"name" : "Otway"}, {"name" : "Ououkinsh"}, {"name" : "Oweekeno"}, {"name" : "Owen Bay"}, {"name" : "Owl Creek"}, {"name" : "Oxford Heights"}, {"name" : "Oyama"}, {"name" : "Oyster River"}, {"name" : "Pacheena 1"}, {"name" : "Pahas 3"}, {"name" : "Paldi"}, {"name" : "Palling"}, {"name" : "Palling 1A"}, {"name" : "Panorama"}, {"name" : "Panorama Ridge"}, {"name" : "Panorama Subdivision"}, {"name" : "Panorama Trailer Court"}, {"name" : "Papyum 27A"}, {"name" : "Paradise Point"}, {"name" : "Paradise Valley"}, {"name" : "Paradise Valley Trailer Court"}, {"name" : "Parkdale Gardens"}, {"name" : "Parkland"}, {"name" : "Park Royal"}, {"name" : "Park Siding"}, {"name" : "Parkville Trailer Park"}, {"name" : "Parsnip 5"}, {"name" : "Parson"}, {"name" : "Pasley Island"}, {"name" : "Pass Creek"}, {"name" : "Passmore"}, {"name" : "Paterson"}, {"name" : "Paul Lake"}, {"name" : "Paulson"}, {"name" : "Pavilion"}, {"name" : "Pavillon Lake"}, {"name" : "Paxton Valley"}, {"name" : "Peace River, Subd. B"}, {"name" : "Peace River, Subd. C"}, {"name" : "Pebble Beach"}, {"name" : "Peejay"}, {"name" : "Pemberton Heights"}, {"name" : "Pemberton Meadows"}, {"name" : "Pender Island"}, {"name" : "Pendleton Bay"}, {"name" : "Penny"}, {"name" : "Perow"}, {"name" : "Perrys"}, {"name" : "Phillips Arm"}, {"name" : "Phoenix"}, {"name" : "Piers Island"}, {"name" : "Pilot Bay"}, {"name" : "Pinantan Lake"}, {"name" : "Pinchi"}, {"name" : "Pinchi Lake"}, {"name" : "Pinecrest Mobile Home Park"}, {"name" : "Pinegrove"}, {"name" : "Pinegrove Trailer Park"}, {"name" : "Pine Hills Mobile Home Park"}, {"name" : "Pineridge Estates"}, {"name" : "Pine Springs"}, {"name" : "Pine Trailer Court"}, {"name" : "Pine Valley"}, {"name" : "Pineview"}, {"name" : "Pinewood Subdivision"}, {"name" : "Pink Mountain"}, {"name" : "Pioneer Mine"}, {"name" : "Pioneer Subdivision"}, {"name" : "Pixie Beach"}, {"name" : "Playmor Junction"}, {"name" : "Pleasant Camp"}, {"name" : "Pleasantside"}, {"name" : "Plumper Harbour"}, {"name" : "Point Holmes"}, {"name" : "Ponderosa Trailer Park"}, {"name" : "Pope Landing"}, {"name" : "Popkum"}, {"name" : "Poplar Creek"}, {"name" : "Poplar Grove"}, {"name" : "Porcher Island"}, {"name" : "Porpoise Bay"}, {"name" : "Port Albion"}, {"name" : "Port Desire"}, {"name" : "Port Douglas"}, {"name" : "Porteau"}, {"name" : "Porter Landing"}, {"name" : "Port Essington"}, {"name" : "Port Guichon"}, {"name" : "Port Hammond"}, {"name" : "Port Hammond - Haney"}, {"name" : "Port Kells"}, {"name" : "Port Mann"}, {"name" : "Port Mellon"}, {"name" : "Port Neville"}, {"name" : "Porto Rico"}, {"name" : "Port Renfrew"}, {"name" : "Port Simpson 1"}, {"name" : "Port Washington"}, {"name" : "Powell River A"}, {"name" : "Powell River B"}, {"name" : "Powell River C"}, {"name" : "Powell River D"}, {"name" : "Powell River E"}, {"name" : "Powell River, Subd. A"}, {"name" : "Powers Addition"}, {"name" : "Prairiedale"}, {"name" : "Prairie Valley"}, {"name" : "Premier"}, {"name" : "Premier Lake"}, {"name" : "Prespatou"}, {"name" : "Pressy Lake"}, {"name" : "Pritchard"}, {"name" : "Pritchard Mobile Subdivision"}, {"name" : "Procter"}, {"name" : "Progress"}, {"name" : "Promontory"}, {"name" : "Prophet River"}, {"name" : "Prophet River 4"}, {"name" : "Prospect Lake"}, {"name" : "Punchaw"}, {"name" : "Puntledge"}, {"name" : "Purden Lake"}, {"name" : "Quadra Loop"}, {"name" : "Qualicum Bay"}, {"name" : "Quamichan"}, {"name" : "Quathiaski Cove"}, {"name" : "Quatsino"}, {"name" : "Quattishe 1"}, {"name" : "Queens Bay"}, {"name" : "Queensborough"}, {"name" : "Queens Cove"}, {"name" : "Queens Park"}, {"name" : "Quesnel Canyon"}, {"name" : "Quesnel Forks"}, {"name" : "Quesnel View"}, {"name" : "Quick"}, {"name" : "Quilchena"}, {"name" : "Quin-e-ex"}, {"name" : "Quinsam"}, {"name" : "Race Point"}, {"name" : "Raft River"}, {"name" : "Rail Lake"}, {"name" : "Rainbow Trailer Court"}, {"name" : "Rainy Hollow"}, {"name" : "Ranchero"}, {"name" : "Ranch Park"}, {"name" : "Ranch Park Trailer Park"}, {"name" : "Raspberry"}, {"name" : "Rayleigh"}, {"name" : "Read Island"}, {"name" : "Red Bluff"}, {"name" : "Red Mountain"}, {"name" : "Red Pass"}, {"name" : "Red Rock"}, {"name" : "Redroofs"}, {"name" : "Red Rose"}, {"name" : "Redstone"}, {"name" : "Refuge Cove"}, {"name" : "Reid Lake"}, {"name" : "Remac"}, {"name" : "Remo"}, {"name" : "Renata"}, {"name" : "Rendez-Vous Island"}, {"name" : "Renfrew-Collingwood"}, {"name" : "Rennie Subdivision"}, {"name" : "Retallack"}, {"name" : "Rhone"}, {"name" : "Rich Bar"}, {"name" : "Ridgedale"}, {"name" : "Riley Park"}, {"name" : "Riondel"}, {"name" : "Riske Creek"}, {"name" : "Riva Ridge Trailer Park"}, {"name" : "River Bend Trailer Court"}, {"name" : "River Jordan"}, {"name" : "Rivershore"}, {"name" : "Riverside Trailer Court"}, {"name" : "Rivers Inlet"}, {"name" : "River Springs"}, {"name" : "Rivervale"}, {"name" : "Roberts Creek"}, {"name" : "Robson"}, {"name" : "Robson West"}, {"name" : "Roche Lake Resort"}, {"name" : "Rock Bay"}, {"name" : "Rock Creek"}, {"name" : "Rockyview"}, {"name" : "Roe Lake"}, {"name" : "Rogers Pass"}, {"name" : "Rolla"}, {"name" : "Rolling Hills Park"}, {"name" : "Roosville"}, {"name" : "Rosebery"}, {"name" : "Rosedale"}, {"name" : "Rose Harbour"}, {"name" : "Rose Lake"}, {"name" : "Rosen Lake Trailer Court"}, {"name" : "Rose Prairie"}, {"name" : "Ross Spur"}, {"name" : "Rosswood"}, {"name" : "Rough Bay"}, {"name" : "Round Lake"}, {"name" : "Round Prairie"}, {"name" : "Roy"}, {"name" : "Royal Oak"}, {"name" : "Royston"}, {"name" : "Ruault Road Subdivision"}, {"name" : "Ruby Creek"}, {"name" : "Rumble Beach"}, {"name" : "Rupert"}, {"name" : "Ruskin"}, {"name" : "Rutland"}, {"name" : "Ryder Lake"}, {"name" : "Rykerts"}, {"name" : "Ryter's Trailer Court"}, {"name" : "Saaiyouck 6"}, {"name" : "Saanichton"}, {"name" : "Sachawil"}, {"name" : "Sachsa"}, {"name" : "Sachteen 2"}, {"name" : "Sachteen 2A"}, {"name" : "Sahali"}, {"name" : "Sahara Heights"}, {"name" : "Sahtlam"}, {"name" : "Salmon Beach"}, {"name" : "Salmon Valley"}, {"name" : "Saloon"}, {"name" : "Saltair"}, {"name" : "Saltery Bay"}, {"name" : "Samahquam 1"}, {"name" : "Sanca"}, {"name" : "Sanderson Site"}, {"name" : "Sandon"}, {"name" : "Sandspit"}, {"name" : "Sandwick"}, {"name" : "Sandy Beach Resort"}, {"name" : "Sandy Cove"}, {"name" : "Sandy Point"}, {"name" : "Sandyville"}, {"name" : "San Josef"}, {"name" : "Sapperton"}, {"name" : "Saratoga Beach"}, {"name" : "Sardis"}, {"name" : "Sarita"}, {"name" : "Saseenos"}, {"name" : "Saturna"}, {"name" : "Saturna Island"}, {"name" : "Savarie Subdivision"}, {"name" : "Savona"}, {"name" : "Schaltuuch 27"}, {"name" : "Schemenauer Subdivision"}, {"name" : "Scotch Creek"}, {"name" : "Scotia Bay"}, {"name" : "Scott Cove"}, {"name" : "Scotties Trailer Park"}, {"name" : "Scotty Creek"}, {"name" : "Seabird Mobile Home Park"}, {"name" : "Seafair"}, {"name" : "Seaford"}, {"name" : "Seal Bay Subdivision"}, {"name" : "Seaside Park"}, {"name" : "Secret Cove"}, {"name" : "Selma Park"}, {"name" : "Sentinel Hill"}, {"name" : "Seton Lake 5A"}, {"name" : "Seton Portage"}, {"name" : "Seven Mile Corner"}, {"name" : "Sevenoaks"}, {"name" : "Seventy Mile House"}, {"name" : "Sewall"}, {"name" : "Sewell Inlet"}, {"name" : "Seymour Arm"}, {"name" : "Seymour Heights"}, {"name" : "Seymour Inlet"}, {"name" : "Seymour Lake"}, {"name" : "Seymour Landing"}, {"name" : "Seymour Meadows 19"}, {"name" : "Shady Valley"}, {"name" : "Shaha Estates"}, {"name" : "Shalalth"}, {"name" : "Shannon Bay"}, {"name" : "Shannon Trailer Park"}, {"name" : "Sharpe Lake"}, {"name" : "Shaughnessy"}, {"name" : "Sha:wiis"}, {"name" : "Shawl Bay"}, {"name" : "Shawnaire Resort"}, {"name" : "Shawnigan"}, {"name" : "Shawnigan Lake"}, {"name" : "Shawnigan Lake Mobile Home Park"}, {"name" : "Shearer Dale"}, {"name" : "Shearwater"}, {"name" : "Shell Beach"}, {"name" : "Shelley"}, {"name" : "Shelter Bay"}, {"name" : "Shelter Point"}, {"name" : "Shepherds Inn"}, {"name" : "Sheraton"}, {"name" : "Shere"}, {"name" : "Sheridan Lake"}, {"name" : "Sheslay"}, {"name" : "Shingle Creek"}, {"name" : "Shirley"}, {"name" : "Shitlthmaq-is"}, {"name" : "Sho-ook 5"}, {"name" : "Shoreacres"}, {"name" : "Shoreholme"}, {"name" : "Shorewood San Parreil"}, {"name" : "Shulus"}, {"name" : "Shushartie"}, {"name" : "Shuswap"}, {"name" : "Shuswap Falls"}, {"name" : "Shuswap Lake Estates"}, {"name" : "Shutty Bench"}, {"name" : "Sidley"}, {"name" : "Sikanni Chief"}, {"name" : "Silica"}, {"name" : "Silver Creek"}, {"name" : "Silverhill"}, {"name" : "Silver River"}, {"name" : "Silver Star"}, {"name" : "Silver Star Trailer Park"}, {"name" : "Silver Valley"}, {"name" : "Simpson Ranch"}, {"name" : "Sinclair Mills"}, {"name" : "Sinkut River"}, {"name" : "Sirdar"}, {"name" : "Siska Flat 3"}, {"name" : "Siska Flat 5A"}, {"name" : "Siska Flat 5B"}, {"name" : "Siska Flat 8"}, {"name" : "Six Mile Point"}, {"name" : "Six Mile Ranch"}, {"name" : "Skedans"}, {"name" : "Skeena Crossing"}, {"name" : "Skeena-Queen Charlotte A"}, {"name" : "Skeena-Queen Charlotte C"}, {"name" : "Skeena-Queen Charlotte D"}, {"name" : "Skeena-Queen Charlotte E"}, {"name" : "Skeena-Queen Charlotte F"}, {"name" : "Skeena-Queen Charlotte, Subd. A"}, {"name" : "Skeena-Queen Charlotte, Subd. B"}, {"name" : "Skidegate"}, {"name" : "Skidegate Landing"}, {"name" : "Skooks Landing"}, {"name" : "Skookumchuck"}, {"name" : "Skowkale 10"}, {"name" : "Skowkale 11"}, {"name" : "Skwahla 2"}, {"name" : "Slaterville"}, {"name" : "Sleepy Hollow Road Trailer Park"}, {"name" : "Slesse Park"}, {"name" : "Sliammon"}, {"name" : "Slocan Park"}, {"name" : "Slosh 1A"}, {"name" : "Smithers"}, {"name" : "Smithers Landing"}, {"name" : "Smith River"}, {"name" : "Snake 5"}, {"name" : "Snake River"}, {"name" : "Snow Peak Trailer Court"}, {"name" : "Snug Cove"}, {"name" : "Soames Point"}, {"name" : "Soda Creek"}, {"name" : "Sointula"}, {"name" : "Solly"}, {"name" : "Solsqua"}, {"name" : "Somenos"}, {"name" : "Sonora Island"}, {"name" : "Sorrento"}, {"name" : "Southarm"}, {"name" : "Southbank"}, {"name" : "South Bentinck"}, {"name" : "South Cambie"}, {"name" : "South Canoe"}, {"name" : "South Dawson"}, {"name" : "South Fort George"}, {"name" : "South Hazelton"}, {"name" : "South Lakeside"}, {"name" : "South Lakeside (Williams Lake)"}, {"name" : "South Pender Island"}, {"name" : "South Poplar"}, {"name" : "South Shalalth"}, {"name" : "South Slocan"}, {"name" : "South Slope"}, {"name" : "South Sumas"}, {"name" : "South Surrey"}, {"name" : "South Taylor"}, {"name" : "South Thormanby Island"}, {"name" : "South Wellington"}, {"name" : "Soyandostar 2"}, {"name" : "Spatsum"}, {"name" : "Spatsum 11"}, {"name" : "Spectacle Lake Mobile Home Park"}, {"name" : "Spences Bridge"}, {"name" : "Spences Bridge 4"}, {"name" : "Spences Bridge 4C"}, {"name" : "Spillimacheen"}, {"name" : "Springhouse"}, {"name" : "Sproat Lake"}, {"name" : "Sproatt"}, {"name" : "Sproat Trailer Park"}, {"name" : "Sproule Creek"}, {"name" : "Spur Valley Subdivision"}, {"name" : "Spuzzum"}, {"name" : "Squaam Bay"}, {"name" : "Squamish-Lillooet, Subd. A"}, {"name" : "Squamish-Lillooet, Subd. B"}, {"name" : "Squaw-hay-one 11"}, {"name" : "Squeah"}, {"name" : "Squiaala 7"}, {"name" : "Squiaala 8"}, {"name" : "Squilax"}, {"name" : "Squirrel Cove"}, {"name" : "Staiyahanny 8"}, {"name" : "St. Andrews"}, {"name" : "Stanley"}, {"name" : "Star Subdivision"}, {"name" : "Stave Falls"}, {"name" : "Steamboat"}, {"name" : "Steelhead"}, {"name" : "Stellako"}, {"name" : "Stepping Stones Estates"}, {"name" : "St. Eugene Mission"}, {"name" : "Steveston"}, {"name" : "Stewardson Inlet"}, {"name" : "Stikine"}, {"name" : "Stikine, Subd. A"}, {"name" : "Stillwater"}, {"name" : "St. Ives"}, {"name" : "St. Joseph Mission"}, {"name" : "St. Mary Lake"}, {"name" : "Stoner"}, {"name" : "Stones Bay"}, {"name" : "Stories Beach"}, {"name" : "Strachan Creek"}, {"name" : "Straiton"}, {"name" : "Strathcona"}, {"name" : "Strathnaver"}, {"name" : "Strawberry Hill"}, {"name" : "Strawberry Vale"}, {"name" : "Streatham"}, {"name" : "Stuart Bay 6"}, {"name" : "Stuart Island"}, {"name" : "Stuart River"}, {"name" : "Stuie"}, {"name" : "Stump Lake"}, {"name" : "Sturdies Bay"}, {"name" : "St. Vincent Bay"}, {"name" : "Sugarcane"}, {"name" : "Sullivan"}, {"name" : "Sullivan Bay"}, {"name" : "Sullivan Heights"}, {"name" : "Summit Lake"}, {"name" : "Sunbury"}, {"name" : "Suncrest"}, {"name" : "Sundance Subdivision"}, {"name" : "Sunningdale"}, {"name" : "Sunnybrae"}, {"name" : "Sunny Dale"}, {"name" : "Sunnyside"}, {"name" : "Sunnyside Trailer Court"}, {"name" : "Sunnyview Trailer Court"}, {"name" : "Sun Peaks"}, {"name" : "Sunrise Valley"}, {"name" : "Sunset"}, {"name" : "Sunset Beach"}, {"name" : "Sunset Prairie"}, {"name" : "Sunset Trailer Park"}, {"name" : "Sunshine"}, {"name" : "Sunshine Bay"}, {"name" : "Sunshine Coast, Subd. A"}, {"name" : "Sunshine Coast Trailer Court"}, {"name" : "Sunshine Hills"}, {"name" : "Sunshine Valley"}, {"name" : "Sun Valley"}, {"name" : "Suquash"}, {"name" : "Surge Narrows"}, {"name" : "Surprise"}, {"name" : "Surrey Centre"}, {"name" : "Swahliseah 14"}, {"name" : "Swan Lake 3"}, {"name" : "Swartz Bay"}, {"name" : "Sweetwater"}, {"name" : "Switsemalph 6"}, {"name" : "Switsemalph 7"}, {"name" : "Tabor Lake"}, {"name" : "Tachie"}, {"name" : "Tadanac"}, {"name" : "Taghum"}, {"name" : "Taghum Hill"}, {"name" : "Tahltan"}, {"name" : "Tahltan 1"}, {"name" : "Takla Landing"}, {"name" : "Taku"}, {"name" : "Takysie Lake"}, {"name" : "Tallheo"}, {"name" : "Tall Timbers Trailer Park"}, {"name" : "Tamarisk"}, {"name" : "Tantalus Acres"}, {"name" : "Tanu"}, {"name" : "Tappen"}, {"name" : "Tarrys"}, {"name" : "Ta:shiis"}, {"name" : "Tasu"}, {"name" : "Ta Ta Creek"}, {"name" : "Tatalrose"}, {"name" : "Tatelkus Lake 28"}, {"name" : "Tatla Lake"}, {"name" : "Tatlayoko Lake"}, {"name" : "Tatlow"}, {"name" : "Tatogga"}, {"name" : "Tatpo-oose 10"}, {"name" : "Tatton"}, {"name" : "Tchesinkut Lake"}, {"name" : "Teakerne Arm"}, {"name" : "Telachick"}, {"name" : "Telegraph Cove"}, {"name" : "Telegraph Creek"}, {"name" : "Telegraph Creek 6"}, {"name" : "Telegraph Creek 6A"}, {"name" : "Telkwa"}, {"name" : "Telkwa Trailer Park"}, {"name" : "Ten Mile Lake"}, {"name" : "Tetachuk"}, {"name" : "Tête Jaune Cache"}, {"name" : "Theodosia Arm"}, {"name" : "Thetis Island"}, {"name" : "Thompson"}, {"name" : "Thompson-Nicola L"}, {"name" : "Thompson-Nicola M"}, {"name" : "Thompson-Nicola N"}, {"name" : "Thompson-Nicola, Subd. A"}, {"name" : "Thompson-Nicola, Subd. B"}, {"name" : "Thompson-Nicola, Subd. C"}, {"name" : "Thompson-Nicola, Subd. D"}, {"name" : "Thompson-Nicola, Subd. E"}, {"name" : "Thompson River Estates"}, {"name" : "Thompson Sound"}, {"name" : "Thornhill"}, {"name" : "Three Forks"}, {"name" : "Thrums"}, {"name" : "Thunder Bay"}, {"name" : "Thurlow"}, {"name" : "Thurston Harbour"}, {"name" : "Thwaytes"}, {"name" : "Tie Lake"}, {"name" : "Tiili Landing"}, {"name" : "Tillicum"}, {"name" : "Timberland Trailer Park"}, {"name" : "Tintagel"}, {"name" : "Tipella"}, {"name" : "Tl'aaniiwa'a"}, {"name" : "Tlakmaqis"}, {"name" : "Tlell"}, {"name" : "Tl'esqox"}, {"name" : "Tl'etinqox"}, {"name" : "Tl'isnachis"}, {"name" : "Tl'itsnit"}, {"name" : "Tloohat-a"}, {"name" : "Toad River"}, {"name" : "Tobiano"}, {"name" : "Toby Creek"}, {"name" : "Toby's Meadow 4"}, {"name" : "Tomslake"}, {"name" : "Topley"}, {"name" : "Topley Landing"}, {"name" : "Towdystan"}, {"name" : "Tower Lake"}, {"name" : "Tow Hill Road"}, {"name" : "Traders Cove"}, {"name" : "Tranquille"}, {"name" : "Trépanier"}, {"name" : "Trevor Channel"}, {"name" : "Trinity Valley"}, {"name" : "Triple E Trailer Park"}, {"name" : "Trout Creek"}, {"name" : "Trout Lake"}, {"name" : "Trutch"}, {"name" : "Tsawwassen"}, {"name" : "Tsawwassen Beach"}, {"name" : "Ts'axq'oo-is"}, {"name" : "Tsay Cho 4"}, {"name" : "Tsay Keh Dene"}, {"name" : "Tsideldel"}, {"name" : "Ts'iispoo-a"}, {"name" : "Tsimpsean 2 North Part"}, {"name" : "Tsinstikeptum 9"}, {"name" : "Tsolum"}, {"name" : "Tsolum River"}, {"name" : "T'Sou-ke 1 (Sooke 1)"}, {"name" : "T'Sou-ke 2 (Sooke 2)"}, {"name" : "Tsunnia Lake 5"}, {"name" : "Tulameen"}, {"name" : "Tulsequah"}, {"name" : "Tupper"}, {"name" : "Turner Subdivision"}, {"name" : "Turtle Valley"}, {"name" : "Tuwanek"}, {"name" : "Twidwell Bend"}, {"name" : "Twin Bays"}, {"name" : "Twin Creeks"}, {"name" : "Twin Firs Trailer Park"}, {"name" : "Twin Islands"}, {"name" : "Twin Lakes"}, {"name" : "Twin Sevens Trailer Park"}, {"name" : "Two Mile"}, {"name" : "Two Mile Hazelton"}, {"name" : "Two Rivers"}, {"name" : "Tyax Lake"}, {"name" : "Tyhee Trailer Park"}, {"name" : "Tynehead"}, {"name" : "Tzetzi Lake 11"}, {"name" : "Tzouhalem"}, {"name" : "Ulkatcho"}, {"name" : "Union Bay"}, {"name" : "University Endowment Area"}, {"name" : "University Hill"}, {"name" : "Upland Trailer Court"}, {"name" : "Upper Bench"}, {"name" : "Upper China Creek"}, {"name" : "Upper Cutbank"}, {"name" : "Upper Fraser"}, {"name" : "Upper Halfway"}, {"name" : "Upper Hat Creek"}, {"name" : "Upper Lynn"}, {"name" : "Upper Squamish Valley"}, {"name" : "Upsowis"}, {"name" : "Usk"}, {"name" : "Uuts"}, {"name" : "Valhalla"}, {"name" : "Valhalla Subdivision"}, {"name" : "Valleycliffe"}, {"name" : "Valley Mobile Home"}, {"name" : "Valley Road Subdivision"}, {"name" : "Valley View"}, {"name" : "Valleyview"}, {"name" : "Vallican"}, {"name" : "Van Anda"}, {"name" : "Vanway"}, {"name" : "Vaseaux Lake"}, {"name" : "Vaucroft Beach"}, {"name" : "Vavenby"}, {"name" : "Vedder Crossing"}, {"name" : "Vermilion Crossing"}, {"name" : "Vesuvius"}, {"name" : "Victoria-Fraserview"}, {"name" : "Victoria Lake"}, {"name" : "Vidette"}, {"name" : "Village Bay"}, {"name" : "Village of Queen Charlotte"}, {"name" : "Vinsulla"}, {"name" : "W'aayi"}, {"name" : "Wabi Estates"}, {"name" : "Wabi Hill Trailer Court"}, {"name" : "Wadhams"}, {"name" : "Wagner Ranch"}, {"name" : "Walcott"}, {"name" : "Walhachin"}, {"name" : "Walkers"}, {"name" : "Wall Beach"}, {"name" : "Walnut Grove"}, {"name" : "Waneta"}, {"name" : "Waneta Junction"}, {"name" : "Wardner"}, {"name" : "Warner Bay"}, {"name" : "Wasa"}, {"name" : "Water's Subdivision"}, {"name" : "Webber Site"}, {"name" : "Websters Corners"}, {"name" : "Weeping Willow Trailer Court"}, {"name" : "Weewanie"}, {"name" : "Welcome Beach"}, {"name" : "Weldwood"}, {"name" : "Wellington"}, {"name" : "Weneez"}, {"name" : "Westbank"}, {"name" : "West Bay"}, {"name" : "West Bench"}, {"name" : "Westbridge"}, {"name" : "Westcoast Energy"}, {"name" : "West Creston"}, {"name" : "West End"}, {"name" : "West End Trailer Park"}, {"name" : "West Heights"}, {"name" : "Westholme"}, {"name" : "West Landing"}, {"name" : "West Lynn"}, {"name" : "West Mara Lake"}, {"name" : "West Midway"}, {"name" : "Westmount"}, {"name" : "Westmount Acres Trailer Court"}, {"name" : "West Point Grey"}, {"name" : "Westridge"}, {"name" : "West Road Subdivision"}, {"name" : "West Sechelt"}, {"name" : "Westside"}, {"name" : "Westsyde"}, {"name" : "West Thurlow"}, {"name" : "West Trail"}, {"name" : "Westview"}, {"name" : "Westwold"}, {"name" : "Wet'suwet'en Village"}, {"name" : "Weyerhaeuser Subdivision"}, {"name" : "Whaletown"}, {"name" : "Whalley"}, {"name" : "Wheel Estates-Saratoga Beach"}, {"name" : "Whiplash Ranch"}, {"name" : "Whisky Creek"}, {"name" : "Whispering Pines Trailer Park"}, {"name" : "Whispering Winds Trailer Court"}, {"name" : "Whistler Creek"}, {"name" : "Whitecroft"}, {"name" : "White Lake"}, {"name" : "Whiterock Passage"}, {"name" : "White Spruce Trailer Court"}, {"name" : "Whonnock"}, {"name" : "Whyac"}, {"name" : "Whytecliff"}, {"name" : "Wigwam Inn"}, {"name" : "Wihat'a"}, {"name" : "Wii Lax K'ap"}, {"name" : "Wildwood"}, {"name" : "Wildwood Subdivision"}, {"name" : "Wildwood Trailer Park"}, {"name" : "Wiley"}, {"name" : "Williams Beach"}, {"name" : "Williams Landing"}, {"name" : "Williamsons Landing"}, {"name" : "Willingdon Heights"}, {"name" : "Willow Brook"}, {"name" : "Willowbrook"}, {"name" : "Willow Flats"}, {"name" : "Willow Point"}, {"name" : "Willow Ranch"}, {"name" : "Willow River"}, {"name" : "Willowvale"}, {"name" : "Willow Valley"}, {"name" : "Wilmer"}, {"name" : "Wilson Creek"}, {"name" : "Wilson Landing"}, {"name" : "Windermere"}, {"name" : "Windmill Trailer Park"}, {"name" : "Windsor Park"}, {"name" : "Winfield"}, {"name" : "Winfield Mobile Home Park"}, {"name" : "Wingdam"}, {"name" : "Winlaw"}, {"name" : "Winter Harbour"}, {"name" : "Wistaria"}, {"name" : "Wisteria"}, {"name" : "Wolf"}, {"name" : "Wonowon"}, {"name" : "Woodcock"}, {"name" : "Woodcreek"}, {"name" : "Woodfibre"}, {"name" : "Woodhaven"}, {"name" : "Woodland Park Estates"}, {"name" : "Woodlands"}, {"name" : "Woodmere"}, {"name" : "Woodpecker"}, {"name" : "Woodsdale"}, {"name" : "Woods Landing"}, {"name" : "Woss"}, {"name" : "Wright"}, {"name" : "Wyah 3"}, {"name" : "Wycliffe"}, {"name" : "Wycliffe Trailer Park"}, {"name" : "Wyndhaven Subdivision"}, {"name" : "Wynndel"}, {"name" : "Xeni"}, {"name" : "Yaashitquo-a"}, {"name" : "Yaculta"}, {"name" : "Yahk"}, {"name" : "Ya:kats"}, {"name" : "Yaku"}, {"name" : "Yale"}, {"name" : "Yankee Flats"}, {"name" : "Yarksis"}, {"name" : "Yarrow"}, {"name" : "Y.D. Ranch Subdivision"}, {"name" : "Yekooche"}, {"name" : "Yellow Point"}, {"name" : "Yennadon"}, {"name" : "Ymir"}, {"name" : "Youbou"}, {"name" : "Youbou West"}, {"name" : "Young Lake"}, {"name" : "Yreka"}, {"name" : "YunesÌ‚it'in"}, {"name" : "Yuquot"}, {"name" : "Yuuhluth"}, {"name" : "Zamora"}, {"name" : "Zincton"}, {"name" : "105 Mile Post 2"}, {"name" : "Abbotsford"}, {"name" : "Agats Meadow 8"}, {"name" : "Ahahswinis 1"}, {"name" : "Ahaminaquus 12"}, {"name" : "Aitchelitch 9"}, {"name" : "Alberni 2"}, {"name" : "Alberni-Clayoquot A"}, {"name" : "Alberni-Clayoquot B"}, {"name" : "Alberni-Clayoquot C"}, {"name" : "Alberni-Clayoquot D"}, {"name" : "Alberni-Clayoquot E"}, {"name" : "Alberni-Clayoquot F"}, {"name" : "Albert Flat 5"}, {"name" : "Alert Bay - Indian reserve"}, {"name" : "Alert Bay - Village"}, {"name" : "Alexis 9"}, {"name" : "Alexis Creek 14"}, {"name" : "Alexis Creek 16"}, {"name" : "Alexis Creek 21"}, {"name" : "Alexis Creek 34"}, {"name" : "Alkali Lake 1"}, {"name" : "Alkali Lake 4A"}, {"name" : "Anacla 12"}, {"name" : "Anahim's Flat 1"}, {"name" : "Anahim's Meadow"}, {"name" : "Anlaw 4"}, {"name" : "Anmore"}, {"name" : "Ashcroft"}, {"name" : "Ashcroft 4"}, {"name" : "Ashnola 10"}, {"name" : "Babine 16"}, {"name" : "Babine 17"}, {"name" : "Babine 25"}, {"name" : "Babine 6"}, {"name" : "Babine Lake 21B"}, {"name" : "Baezaeko River 27"}, {"name" : "Baptiste Meadow 2"}, {"name" : "Barnston Island 3"}, {"name" : "Barriere"}, {"name" : "Basque 18"}, {"name" : "Becher Bay 1"}, {"name" : "Belcarra"}, {"name" : "Bella Bella 1"}, {"name" : "Bella Coola 1"}, {"name" : "Betty Creek 18"}, {"name" : "Binche 2"}, {"name" : "Blind Creek 6"}, {"name" : "Blueberry River 205"}, {"name" : "Bonaparte 3"}, {"name" : "Boothrouyd 5B"}, {"name" : "Boothroyd 13"}, {"name" : "Boothroyd 8A"}, {"name" : "Boston Bar 1A"}, {"name" : "Bowen Island"}, {"name" : "Bridge River 1"}, {"name" : "Bucktum 4"}, {"name" : "Bulkley-Nechako A"}, {"name" : "Bulkley-Nechako B"}, {"name" : "Bulkley-Nechako C"}, {"name" : "Bulkley-Nechako D"}, {"name" : "Bulkley-Nechako E"}, {"name" : "Bulkley-Nechako F"}, {"name" : "Bulkley-Nechako G"}, {"name" : "Bulkley River 19"}, {"name" : "Burnaby"}, {"name" : "Burns Lake"}, {"name" : "Burns Lake 18"}, {"name" : "Burrard Inlet 3"}, {"name" : "Cache Creek"}, {"name" : "Campbell River"}, {"name" : "Campbell River 11"}, {"name" : "Canal Flats"}, {"name" : "Canim Lake 1"}, {"name" : "Canim Lake 2"}, {"name" : "Canim Lake 4"}, {"name" : "Canoe Creek 1"}, {"name" : "Canoe Creek 2"}, {"name" : "Canoe Creek 3"}, {"name" : "Cape Mudge 10"}, {"name" : "Capilano 5"}, {"name" : "Cariboo A"}, {"name" : "Cariboo B"}, {"name" : "Cariboo C"}, {"name" : "Cariboo D"}, {"name" : "Cariboo E"}, {"name" : "Cariboo F"}, {"name" : "Cariboo G"}, {"name" : "Cariboo H"}, {"name" : "Cariboo I"}, {"name" : "Cariboo J"}, {"name" : "Cariboo K"}, {"name" : "Cariboo L"}, {"name" : "Cassimayooks (Mayook) 5"}, {"name" : "Castlegar"}, {"name" : "Cayoosh Creek 1"}, {"name" : "Central Coast A"}, {"name" : "Central Coast C"}, {"name" : "Central Coast D"}, {"name" : "Central Coast E"}, {"name" : "Central Kootenay A"}, {"name" : "Central Kootenay B"}, {"name" : "Central Kootenay C"}, {"name" : "Central Kootenay D"}, {"name" : "Central Kootenay E"}, {"name" : "Central Kootenay F"}, {"name" : "Central Kootenay G"}, {"name" : "Central Kootenay H"}, {"name" : "Central Kootenay I"}, {"name" : "Central Kootenay J"}, {"name" : "Central Kootenay K"}, {"name" : "Central Okanagan"}, {"name" : "Central Okanagan West"}, {"name" : "Central Saanich"}, {"name" : "Charley Boy's Meadow 3"}, {"name" : "Chase"}, {"name" : "Chawathil 4"}, {"name" : "Cheakamus 11"}, {"name" : "Cheam 1"}, {"name" : "Chehalis 5"}, {"name" : "Chekwelp 26"}, {"name" : "Chemainus 13"}, {"name" : "Chenahkint 12"}, {"name" : "Cheslatta 1"}, {"name" : "Chetwynd"}, {"name" : "Chilco Lake 1"}, {"name" : "Chilco Lake 1A"}, {"name" : "Chilhil 6"}, {"name" : "Chilliwack"}, {"name" : "Chopaka 7 & 8"}, {"name" : "Chuchhraischin"}, {"name" : "Chuchuwayha 2"}, {"name" : "Chum Creek 2"}, {"name" : "Clakamucus 2"}, {"name" : "Clearwater"}, {"name" : "Clinton"}, {"name" : "Coglistiko River 29"}, {"name" : "Coldstream"}, {"name" : "Coldwater 1"}, {"name" : "Cole Bay 3"}, {"name" : "Columbia Lake 3"}, {"name" : "Columbia Shuswap A"}, {"name" : "Columbia Shuswap B"}, {"name" : "Columbia Shuswap C"}, {"name" : "Columbia Shuswap D"}, {"name" : "Columbia Shuswap E"}, {"name" : "Columbia Shuswap F"}, {"name" : "Columbia Shuswap G"}, {"name" : "Colwood"}, {"name" : "Comox"}, {"name" : "Comox 1"}, {"name" : "Comox Valley A"}, {"name" : "Comox Valley B (Lazo North)"}, {"name" : "Comox Valley C (Puntledge - Black Creek)"}, {"name" : "Coqualeetza"}, {"name" : "Coquitlam"}, {"name" : "Coquitlam 1"}, {"name" : "Coquitlam 2"}, {"name" : "Coryatsaqua (Moricetown) 2"}, {"name" : "Courtenay"}, {"name" : "Cowichan"}, {"name" : "Cowichan Lake"}, {"name" : "Cowichan Valley A"}, {"name" : "Cowichan Valley B"}, {"name" : "Cowichan Valley C"}, {"name" : "Cowichan Valley D"}, {"name" : "Cowichan Valley E"}, {"name" : "Cowichan Valley F"}, {"name" : "Cowichan Valley G"}, {"name" : "Cowichan Valley H"}, {"name" : "Cowichan Valley I"}, {"name" : "Cranbrook"}, {"name" : "Creston"}, {"name" : "Creston 1"}, {"name" : "Cumberland"}, {"name" : "Daajing Giids"}, {"name" : "Dawson Creek"}, {"name" : "Dead Point 5"}, {"name" : "Dease River 1"}, {"name" : "Deep Creek 2"}, {"name" : "Delta"}, {"name" : "Dog Creek 1"}, {"name" : "Dog Creek 2"}, {"name" : "Doig River 206"}, {"name" : "Dolphin Island 1"}, {"name" : "Douglas 8"}, {"name" : "Douglas Lake 3"}, {"name" : "Dragon Lake 3"}, {"name" : "Duck Lake 7"}, {"name" : "Duncan"}, {"name" : "Duncan Lake 2"}, {"name" : "Dzitline Lee 9"}, {"name" : "East Kootenay A"}, {"name" : "East Kootenay B"}, {"name" : "East Kootenay C"}, {"name" : "East Kootenay E"}, {"name" : "East Kootenay F"}, {"name" : "East Kootenay G"}, {"name" : "East Moberly Lake 169"}, {"name" : "East Saanich 2"}, {"name" : "Ehatis 11"}, {"name" : "Elhlateese 2"}, {"name" : "Elkford"}, {"name" : "Enderby"}, {"name" : "Enderby 2"}, {"name" : "Entlqwekkinh 19"}, {"name" : "Esowista 3"}, {"name" : "Esquimalt - District municipality"}, {"name" : "Esquimalt - Indian reserve"}, {"name" : "Est-Patrolas 4"}, {"name" : "Euchinico Creek 17"}, {"name" : "Fernie"}, {"name" : "Finlay River 6"}, {"name" : "Fishtrap 19"}, {"name" : "Five Mile Point 3"}, {"name" : "Fort George 2"}, {"name" : "Fort Nelson 2"}, {"name" : "Fort Rupert 1"}, {"name" : "Fort St. James"}, {"name" : "Fort St. John"}, {"name" : "Fort Ware 1"}, {"name" : "Fountain 1"}, {"name" : "Fountain 10"}, {"name" : "Fountain 11"}, {"name" : "Fountain 12"}, {"name" : "Fountain 1B"}, {"name" : "Fountain 1D"}, {"name" : "Fountain 3"}, {"name" : "Fountain 3A"}, {"name" : "Fountain Creek 8"}, {"name" : "Francois Lake 7"}, {"name" : "Fraser-Fort George A"}, {"name" : "Fraser-Fort George C"}, {"name" : "Fraser-Fort George D"}, {"name" : "Fraser-Fort George E"}, {"name" : "Fraser-Fort George F"}, {"name" : "Fraser-Fort George G"}, {"name" : "Fraser-Fort George H"}, {"name" : "Fraser Lake"}, {"name" : "Fraser Valley A"}, {"name" : "Fraser Valley B"}, {"name" : "Fraser Valley C"}, {"name" : "Fraser Valley D"}, {"name" : "Fraser Valley E"}, {"name" : "Fraser Valley F"}, {"name" : "Fraser Valley G"}, {"name" : "Fruitvale"}, {"name" : "Galiano Island 9"}, {"name" : "Garden"}, {"name" : "Gibsons"}, {"name" : "Gitanmaax 1"}, {"name" : "Gitanyow 1"}, {"name" : "Gitsegukla 1"}, {"name" : "Gitwangak 1"}, {"name" : "Golden"}, {"name" : "Gold River"}, {"name" : "Gordon River 2"}, {"name" : "Grand Forks"}, {"name" : "Granisle"}, {"name" : "Greenwood"}, {"name" : "Guhthe Tah 12"}, {"name" : "Gwayasdums 1"}, {"name" : "Hagwilget 1"}, {"name" : "Halalt 2"}, {"name" : "Halfway River 168"}, {"name" : "Halhalaeden"}, {"name" : "Hamilton Creek 2"}, {"name" : "Harris 3"}, {"name" : "Harrison Hot Springs"}, {"name" : "Hazelton"}, {"name" : "Hesquiat 1"}, {"name" : "High Bar 1"}, {"name" : "Highlands"}, {"name" : "Holachten 8"}, {"name" : "Hope"}, {"name" : "Hope Island 1"}, {"name" : "Hopetown 10A"}, {"name" : "Houston"}, {"name" : "Hudson's Hope"}, {"name" : "Hustalen 1"}, {"name" : "Ingenika Point"}, {"name" : "Inkahtsaph 6"}, {"name" : "Inkluckcheen"}, {"name" : "Inklyuhkinatko 2"}, {"name" : "Invermere"}, {"name" : "Isidore's Ranch 4"}, {"name" : "Iskut 6"}, {"name" : "Ittatsoo 1"}, {"name" : "Jean Baptiste 28"}, {"name" : "Joeyaska 2"}, {"name" : "Johny Sticks 2"}, {"name" : "Juan de Fuca (Part 1)"}, {"name" : "Juan de Fuca (Part 2)"}, {"name" : "Kahmoose 4"}, {"name" : "Kamloops"}, {"name" : "Kamloops 1"}, {"name" : "Kaslo"}, {"name" : "Katit 1"}, {"name" : "Katzie 1"}, {"name" : "Katzie 2"}, {"name" : "Kelowna"}, {"name" : "Kent"}, {"name" : "Keremeos"}, {"name" : "Kil-pah-las 3"}, {"name" : "Kimberley"}, {"name" : "Kippase 2"}, {"name" : "Kispiox 1"}, {"name" : "Kitamaat 2"}, {"name" : "Kitasoo 1"}, {"name" : "Kitimat"}, {"name" : "Kitimat-Stikine A"}, {"name" : "Kitimat-Stikine B"}, {"name" : "Kitimat-Stikine C (Part 1)"}, {"name" : "Kitimat-Stikine C (Part 2)"}, {"name" : "Kitimat-Stikine D"}, {"name" : "Kitimat-Stikine E"}, {"name" : "Kitimat-Stikine F"}, {"name" : "Kitselas 1"}, {"name" : "Kitsilano 6"}, {"name" : "Kitsumkaylum 1"}, {"name" : "Kitzowit 20"}, {"name" : "Klahkamich 17"}, {"name" : "Kleetlekut 22"}, {"name" : "Klehkoot 2"}, {"name" : "Klickkumcheen 18"}, {"name" : "Kloklowuck 7"}, {"name" : "Kluskus 1"}, {"name" : "Kootenay 1"}, {"name" : "Kootenay Boundary A"}, {"name" : "Kootenay Boundary B / Lower Columbia-Old-Glory"}, {"name" : "Kootenay Boundary C / Christina Lake"}, {"name" : "Kootenay Boundary D / Rural Grand Forks"}, {"name" : "Kootenay Boundary E / West Boundary"}, {"name" : "Kopchitchin 2"}, {"name" : "Kowtain 17"}, {"name" : "Kshish 4"}, {"name" : "Kulkayu (Hartley Bay) 4"}, {"name" : "Kulkayu (Hartley Bay) 4A"}, {"name" : "Kulspai 6"}, {"name" : "Kumcheen 1"}, {"name" : "Kwawkwawapilt 6"}, {"name" : "Ladysmith"}, {"name" : "Lakahahmen 11"}, {"name" : "Lake Country"}, {"name" : "Lake Cowichan"}, {"name" : "Laketown 3"}, {"name" : "Langford"}, {"name" : "Langley 2"}, {"name" : "Langley - City"}, {"name" : "Langley - District municipality"}, {"name" : "Lantzville"}, {"name" : "Lax Kw'alaams 1"}, {"name" : "Lezbye 6"}, {"name" : "Liard River 3"}, {"name" : "Lillooet"}, {"name" : "Lillooet 1"}, {"name" : "Lions Bay"}, {"name" : "Little Springs"}, {"name" : "Logan Lake"}, {"name" : "Lohbiee 3"}, {"name" : "Louis Creek 4"}, {"name" : "Lower Hat Creek 2"}, {"name" : "Lower Kootenay 1C"}, {"name" : "Lower Kootenay 5"}, {"name" : "Lower Similkameen 2"}, {"name" : "Lukseetsissum 9"}, {"name" : "Lulu 5"}, {"name" : "Lumby"}, {"name" : "Lyacksun 3"}, {"name" : "Lytton"}, {"name" : "Lytton 4A"}, {"name" : "Lytton 4E"}, {"name" : "Lytton 9A"}, {"name" : "Lytton 9B"}, {"name" : "Mackenzie"}, {"name" : "Macoah 1"}, {"name" : "Malachan 11"}, {"name" : "Malahat 11"}, {"name" : "Maple Ridge"}, {"name" : "Marble Canyon 3"}, {"name" : "Marktosis 15"}, {"name" : "Masset"}, {"name" : "Masset 1"}, {"name" : "Matsqui 4"}, {"name" : "Matsqui Main 2"}, {"name" : "McBride"}, {"name" : "McCartney's Flat 4"}, {"name" : "McCleod Lake 5"}, {"name" : "McLeod Lake 1"}, {"name" : "McMillan Island 6"}, {"name" : "Merritt"}, {"name" : "Mesilinka 7"}, {"name" : "Metchosin"}, {"name" : "Metro Vancouver A"}, {"name" : "Michel Gardens 36"}, {"name" : "Midway"}, {"name" : "Mission"}, {"name" : "Mission 1"}, {"name" : "Mission 5"}, {"name" : "Mission Lands 17"}, {"name" : "Montrose"}, {"name" : "Moricetown 1"}, {"name" : "Mount Waddington A"}, {"name" : "Mount Waddington B"}, {"name" : "Mount Waddington C"}, {"name" : "Mount Waddington D"}, {"name" : "Musqueam 2"}, {"name" : "Musqueam 4"}, {"name" : "Nak'azdli"}, {"name" : "Nakusp"}, {"name" : "Nanaimo"}, {"name" : "Nanaimo A"}, {"name" : "Nanaimo B"}, {"name" : "Nanaimo C"}, {"name" : "Nanaimo E"}, {"name" : "Nanaimo F"}, {"name" : "Nanaimo G"}, {"name" : "Nanaimo H"}, {"name" : "Nanaimo River"}, {"name" : "Nanaimo Town 1"}, {"name" : "Nanoose"}, {"name" : "Nautley (Fort Fraser) 1"}, {"name" : "Nazco 20"}, {"name" : "Necait 6"}, {"name" : "Nedoats 11"}, {"name" : "Nekalliston 2"}, {"name" : "Nekliptum 1"}, {"name" : "Nelson"}, {"name" : "Nenagwas 12"}, {"name" : "Nequatque"}, {"name" : "Nesikep 6"}, {"name" : "Neskonlith"}, {"name" : "Nesuch 3"}, {"name" : "New Denver"}, {"name" : "New Hazelton"}, {"name" : "New Songhees 1A"}, {"name" : "New Westminster"}, {"name" : "Nickel Palm 4"}, {"name" : "Nickeyeah 25"}, {"name" : "Nicola Lake 1"}, {"name" : "Nicola Mameet 1"}, {"name" : "Nicomen 1"}, {"name" : "Nimpkish 2"}, {"name" : "Nisga'a"}, {"name" : "Nkaih 10"}, {"name" : "Nohomeen 23"}, {"name" : "Nooaitch 10"}, {"name" : "Noonla 6"}, {"name" : "North Bay 5"}, {"name" : "North Coast A"}, {"name" : "North Coast C"}, {"name" : "North Coast D"}, {"name" : "North Coast E"}, {"name" : "North Cowichan"}, {"name" : "Northern Rockies"}, {"name" : "North Okanagan B"}, {"name" : "North Okanagan C"}, {"name" : "North Okanagan D"}, {"name" : "North Okanagan E"}, {"name" : "North Okanagan F"}, {"name" : "North Saanich"}, {"name" : "North Tacla Lake"}, {"name" : "North Thompson 1"}, {"name" : "North Vancouver - City"}, {"name" : "North Vancouver - District municipality"}, {"name" : "Numukamis 1"}, {"name" : "Nuuautin 2"}, {"name" : "Oak Bay"}, {"name" : "Oclucje 7"}, {"name" : "Ohamil 1"}, {"name" : "Okanagan (Part) 1 - North Okanagan"}, {"name" : "Okanagan (Part) 1 - Thompson/Okanagan"}, {"name" : "Okanagan-Similkameen A"}, {"name" : "Okanagan-Similkameen B"}, {"name" : "Okanagan-Similkameen C"}, {"name" : "Okanagan-Similkameen D"}, {"name" : "Okanagan-Similkameen E"}, {"name" : "Okanagan-Similkameen F"}, {"name" : "Okanagan-Similkameen G"}, {"name" : "Okanagan-Similkameen H"}, {"name" : "Okanagan-Similkameen I"}, {"name" : "Oliver"}, {"name" : "Omineca 1"}, {"name" : "One Hundred Mile House"}, {"name" : "Opitsat 1"}, {"name" : "Oregon Jack Creek 5"}, {"name" : "Osoyoos"}, {"name" : "Osoyoos 1"}, {"name" : "Oyster Bay 12"}, {"name" : "Palling 1"}, {"name" : "Papyum 27"}, {"name" : "Paqulh"}, {"name" : "Parksville"}, {"name" : "Pashilqua 2"}, {"name" : "Paska Island 3"}, {"name" : "Paul's Basin 2"}, {"name" : "Pavilion 1"}, {"name" : "Peace River B"}, {"name" : "Peace River C"}, {"name" : "Peace River D"}, {"name" : "Peace River E"}, {"name" : "Peachland"}, {"name" : "Pemberton"}, {"name" : "Pemynoos 9"}, {"name" : "Penelakut Island 7"}, {"name" : "Penticton"}, {"name" : "Penticton 1"}, {"name" : "Pentledge 2"}, {"name" : "Peq-Paq 22"}, {"name" : "Peters 1"}, {"name" : "Pitt Meadows"}, {"name" : "Poison Creek 17A"}, {"name" : "Popkum 1"}, {"name" : "Port Alberni"}, {"name" : "Port Alice"}, {"name" : "Port Clements"}, {"name" : "Port Coquitlam"}, {"name" : "Port Edward"}, {"name" : "Port Hardy"}, {"name" : "Portier Pass 5"}, {"name" : "Port McNeill"}, {"name" : "Port Moody"}, {"name" : "Pouce Coupe"}, {"name" : "Powell River"}, {"name" : "Priest's Valley 6"}, {"name" : "Prince George"}, {"name" : "Prince Rupert"}, {"name" : "Princeton"}, {"name" : "Puckatholetchin 11"}, {"name" : "Puntzi Lake 2"}, {"name" : "Q'alatkú7em"}, {"name" : "qathet A"}, {"name" : "qathet B"}, {"name" : "qathet C"}, {"name" : "qathet D"}, {"name" : "qathet E"}, {"name" : "Quaaout 1"}, {"name" : "Quaee 7"}, {"name" : "Qualicum"}, {"name" : "Qualicum Beach"}, {"name" : "Quatsino Subdivision 18"}, {"name" : "Quesnel"}, {"name" : "Quesnel 1"}, {"name" : "Quinsam 12"}, {"name" : "Radium Hot Springs"}, {"name" : "Redstone Flat 1"}, {"name" : "Redstone Flat 1A"}, {"name" : "Refuge Cove 6"}, {"name" : "Revelstoke"}, {"name" : "Richmond"}, {"name" : "Rossland"}, {"name" : "Ruby Creek 2"}, {"name" : "S1/2 Tsimpsean 2"}, {"name" : "Saanich"}, {"name" : "Sachsa 4"}, {"name" : "Sachteen"}, {"name" : "Saddle Rock 9"}, {"name" : "Sahhaltkum 4"}, {"name" : "Salmo"}, {"name" : "Salmon Arm"}, {"name" : "Salmon River 1"}, {"name" : "Salmon River Meadow 7"}, {"name" : "Saltspring Island"}, {"name" : "Sandy Harry 4"}, {"name" : "Sayward"}, {"name" : "Schelowat 1"}, {"name" : "Schkam 2"}, {"name" : "Scotch Creek 4"}, {"name" : "Scowlitz 1"}, {"name" : "Seabird Island"}, {"name" : "Seah 5"}, {"name" : "Seaichem 16"}, {"name" : "Seaspunkut 4"}, {"name" : "Sechelt"}, {"name" : "Sechelt (Part) - qathet"}, {"name" : "Sechelt (Part) - Sunshine Coast"}, {"name" : "Semiahmoo"}, {"name" : "Seton Lake 5"}, {"name" : "Seymour Creek 2"}, {"name" : "Shackan 11"}, {"name" : "Shawniken 4B"}, {"name" : "Shingle Point 4"}, {"name" : "Sicamous"}, {"name" : "Sidney"}, {"name" : "Sik-e-dakh 2"}, {"name" : "Silverton"}, {"name" : "Siska Flat"}, {"name" : "Skawahlook 1"}, {"name" : "Skeetchestn"}, {"name" : "Skidegate 1"}, {"name" : "Skins Lake 16A"}, {"name" : "Skins Lake 16B"}, {"name" : "Skookumchuck 4"}, {"name" : "Skookumchuck 4A"}, {"name" : "Skowkale"}, {"name" : "Skuppah 2A"}, {"name" : "Skuppah 4"}, {"name" : "Skwah 4"}, {"name" : "Skwali 3"}, {"name" : "Skway 5"}, {"name" : "Skwayaynope 26"}, {"name" : "Skweahm 10"}, {"name" : "Sliammon 1"}, {"name" : "Slocan"}, {"name" : "Slosh 1"}, {"name" : "Soda Creek 1"}, {"name" : "Sooke"}, {"name" : "Soowahlie 14"}, {"name" : "Southern Gulf Islands"}, {"name" : "South Saanich 1"}, {"name" : "Sowchea 3"}, {"name" : "Spallumcheen"}, {"name" : "Sparwood"}, {"name" : "Speyum 3"}, {"name" : "Spintlum Flat 3"}, {"name" : "Spuzzum 1"}, {"name" : "Squaam 2"}, {"name" : "Squamish"}, {"name" : "Squamish-Lillooet A"}, {"name" : "Squamish-Lillooet B"}, {"name" : "Squamish-Lillooet C"}, {"name" : "Squamish-Lillooet D"}, {"name" : "Squaw-Hay-One 11"}, {"name" : "Squawkum Creek 3"}, {"name" : "Squiaala"}, {"name" : "Squinas 2"}, {"name" : "Squirrel Cove 8"}, {"name" : "Stawamus 24"}, {"name" : "Stellaquo (Stella) 1"}, {"name" : "Stequmwhulpa 5"}, {"name" : "Stewart"}, {"name" : "Stikine Region"}, {"name" : "St. Mary's"}, {"name" : "Stone 1"}, {"name" : "Stony Creek 1"}, {"name" : "Strathcona A"}, {"name" : "Strathcona B"}, {"name" : "Strathcona C"}, {"name" : "Strathcona D (Oyster Bay - Buttle Lake)"}, {"name" : "Stryen 9"}, {"name" : "Stullawheets 8"}, {"name" : "Summerland"}, {"name" : "Sundayman's Meadow 3"}, {"name" : "Sun Peaks Mountain"}, {"name" : "Sunshine Coast A"}, {"name" : "Sunshine Coast B"}, {"name" : "Sunshine Coast D"}, {"name" : "Sunshine Coast E"}, {"name" : "Sunshine Coast F"}, {"name" : "Surrey"}, {"name" : "Swan Lake 3"}, {"name" : "Switsemalph"}, {"name" : "Switsemalph 3"}, {"name" : "Tache 1"}, {"name" : "Tacla Lake (Ferry Landing) 9"}, {"name" : "Tadinlay 15"}, {"name" : "Tahsis"}, {"name" : "Tanakut 4"}, {"name" : "Tatla't East 2"}, {"name" : "Tatla West 11"}, {"name" : "Taylor"}, {"name" : "Terrace"}, {"name" : "Theik 2"}, {"name" : "Thomas Point 5"}, {"name" : "Thomas Point 5A"}, {"name" : "Thomas Squinas Ranch 2A"}, {"name" : "Thompson-Nicola A (Wells Gray Country)"}, {"name" : "Thompson-Nicola B (Thompson Headwaters)"}, {"name" : "Thompson-Nicola E (Bonaparte Plateau)"}, {"name" : "Thompson-Nicola I (Blue Sky Country)"}, {"name" : "Thompson-Nicola J (Copper Desert Country)"}, {"name" : "Thompson-Nicola L (Grasslands)"}, {"name" : "Thompson-Nicola M (Beautiful Nicola Valley - North)"}, {"name" : "Thompson-Nicola N (Beautiful Nicola Valley - South)"}, {"name" : "Thompson-Nicola O (Lower North Thompson)"}, {"name" : "Thompson-Nicola P (Rivers and the Peaks)"}, {"name" : "Tin Wis 11"}, {"name" : "Tipella 7"}, {"name" : "Tlaa Gaa Aawtlaas 28"}, {"name" : "Tobacco Plains 2"}, {"name" : "Tofino"}, {"name" : "Toops 3"}, {"name" : "Toosey 1"}, {"name" : "Tork 7"}, {"name" : "Towdystan Lake 3"}, {"name" : "Towinock 2"}, {"name" : "Trail"}, {"name" : "Trout Lake Alec 16"}, {"name" : "Tsahaheh 1"}, {"name" : "Tsaukan 12"}, {"name" : "Tsa Xana 18"}, {"name" : "Tseatah 2"}, {"name" : "Tsinstikeptum 10"}, {"name" : "Tsinstikeptum 9"}, {"name" : "T'Sou-ke"}, {"name" : "Tsulquate 4"}, {"name" : "Tsussie 6"}, {"name" : "Tuckkwiowhum 1"}, {"name" : "Tumbler Ridge"}, {"name" : "Twoyqhalsht 16"}, {"name" : "Tzart-Lam 5"}, {"name" : "Tzeachten 13"}, {"name" : "Ucluelet"}, {"name" : "Ulkatcho 13"}, {"name" : "Ulkatcho 14A"}, {"name" : "Uncha Lake 13A"}, {"name" : "Union Bay 4"}, {"name" : "Unnamed 10"}, {"name" : "Upper Hat Creek 1"}, {"name" : "Upper Nepa 6"}, {"name" : "Upper Sumas 6"}, {"name" : "Valemount"}, {"name" : "Vancouver"}, {"name" : "Vanderhoof"}, {"name" : "Vernon"}, {"name" : "Victoria"}, {"name" : "View Royal"}, {"name" : "Village Island 1"}, {"name" : "Waiwakum 14"}, {"name" : "Warfield"}, {"name" : "Wells"}, {"name" : "West Kelowna"}, {"name" : "West Moberly Lake 168A"}, {"name" : "West Vancouver"}, {"name" : "Whispering Pines 4"}, {"name" : "Whistler"}, {"name" : "Whitecap 1"}, {"name" : "White Rock"}, {"name" : "Whonnock 1"}, {"name" : "Williams Lake"}, {"name" : "Williams Lake 1"}, {"name" : "Williams Prairie Meadow 1A"}, {"name" : "Windy Mouth 7"}, {"name" : "Wochiigii Nané?"}, {"name" : "Woyenne 27"}, {"name" : "Yakweakwioose 12"}, {"name" : "Yale Town 1"}, {"name" : "Yawaucht 11"}, {"name" : "Ye Koo Che 3"}, {"name" : "Yekwaupsum 18"}, {"name" : "Yuquot 1"}, {"name" : "Zacht 5"}, {"name" : "Zeballos"}, {"name" : "Zoht 4"}]} \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.NginxData/reference/maps/CENSUS_SUBDIVISIONS.geojson b/applications/Unity.Tools/Unity.NginxData/reference/maps/CENSUS_SUBDIVISIONS.geojson index c5450eb577..ebcf3e92c4 100644 --- a/applications/Unity.Tools/Unity.NginxData/reference/maps/CENSUS_SUBDIVISIONS.geojson +++ b/applications/Unity.Tools/Unity.NginxData/reference/maps/CENSUS_SUBDIVISIONS.geojson @@ -1 +1 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"coordinates":[[[-125.12726255586642,48.79856008726426],[-125.11708715426559,48.7931188640752],[-125.11707233820235,48.80696211440591],[-125.12844310470487,48.807264967307056],[-125.12726255586642,48.79856008726426]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Anacla 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923803","name":"Anacla 12"}},{"type":"Feature","geometry":{"coordinates":[[[-125.10770736416734,48.837772946908224],[-125.10825856704331,48.835610155703684],[-125.10284586612633,48.83626448791618],[-125.10318176655686,48.83795279358225],[-125.10770736416734,48.837772946908224]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Sachsa 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923814","name":"Sachsa 4"}},{"type":"Feature","geometry":{"coordinates":[[[-124.80081458298474,49.14637802249415],[-124.99540139533033,49.150274245353906],[-125.04140771816193,49.142648323854296],[-125.12122943539076,49.183039005300174],[-125.22727625959126,49.19296498535826],[-125.21262066428709,49.14631393949125],[-125.1284763162866,49.09725664087406],[-125.1057637493421,49.0541055039019],[-125.11457899747201,49.01669427861998],[-125.10520427920969,48.95397333431562],[-125.37476050317815,48.74765396873713],[-125.3373415732718,48.729588957366424],[-125.18471959830569,48.63762470945203],[-125.09712150281194,48.596941280629544],[-124.98259141483189,48.553103464477466],[-124.84293516308573,48.521572020879965],[-124.84509427754593,48.54770528534689],[-124.85496419529295,48.683246392744486],[-124.80196849392527,48.69657550196973],[-124.77344368993202,48.73168520517821],[-124.74160758786815,48.744844909012826],[-124.69364540105849,48.79608789325973],[-124.65496659859214,48.854903509778126],[-124.55016979546959,48.90073171395149],[-124.53934333159702,48.93439426045525],[-124.63825076700962,49.01432138261212],[-124.62917338446098,49.09534488370449],[-124.68201437981044,49.13343734802478],[-124.76150865149076,49.1145841852225],[-124.80081458298474,49.14637802249415]],[[-125.10770736416734,48.837772946908224],[-125.10318176655686,48.83795279358225],[-125.10284586612633,48.83626448791618],[-125.10825856704331,48.835610155703684],[-125.10770736416734,48.837772946908224]],[[-125.12726255586642,48.79856008726426],[-125.12844310470487,48.807264967307056],[-125.11707233820235,48.80696211440591],[-125.11708715426559,48.7931188640752],[-125.12726255586642,48.79856008726426]],[[-125.04717050118965,49.01826402580774],[-125.0570428997317,49.031134264872996],[-125.02943995391554,49.03015303193614],[-125.04717050118965,49.01826402580774]],[[-125.00381933540022,48.913847267808045],[-124.96958504774503,48.90889078423109],[-124.96914540579475,48.88764378357032],[-125.00112515699787,48.8876644466796],[-125.00381933540022,48.913847267808045]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Alberni-Clayoquot A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923047","name":"Alberni-Clayoquot A"}},{"type":"Feature","geometry":{"coordinates":[[[-125.00381933540022,48.913847267808045],[-125.00112515699787,48.8876644466796],[-124.96914540579475,48.88764378357032],[-124.96958504774503,48.90889078423109],[-125.00381933540022,48.913847267808045]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Numukamis 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923809","name":"Numukamis 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.52997843812386,48.937309777176985],[-125.52159254377534,48.93491081314449],[-125.52165207891426,48.9442604696049],[-125.53477214284918,48.94419280333014],[-125.52997843812386,48.937309777176985]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Ittatsoo 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923807","name":"Ittatsoo 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.55231313046346,48.92885020662669],[-125.5654843921048,48.958532812761185],[-125.58629119184165,48.945366736334734],[-125.55231313046346,48.92885020662669]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Ucluelet","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923019","name":"Ucluelet"}},{"type":"Feature","geometry":{"coordinates":[[[-125.5741208675747,48.97638716829603],[-125.57357466554535,48.98068240238069],[-125.57741136443428,48.978754949712],[-125.5741208675747,48.97638716829603]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Clakamucus 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923804","name":"Clakamucus 2"}},{"type":"Feature","geometry":{"coordinates":[[[-125.38490573118152,48.989310443422895],[-125.38159745641015,48.99287665440891],[-125.36970010924838,48.997606400892316],[-125.38521101082944,48.99764205860549],[-125.38490573118152,48.989310443422895]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Macoah 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923810","name":"Macoah 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.04717050118965,49.01826402580774],[-125.02943995391554,49.03015303193614],[-125.0570428997317,49.031134264872996],[-125.04717050118965,49.01826402580774]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Elhlateese 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923805","name":"Elhlateese 2"}},{"type":"Feature","geometry":{"coordinates":[[[-125.78389028996062,49.07183900283953],[-125.78254904521671,49.07049465426369],[-125.77775649765337,49.0719649179888],[-125.78137491079153,49.0726689177576],[-125.78389028996062,49.07183900283953]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Esowista 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923823","name":"Esowista 3"}},{"type":"Feature","geometry":{"coordinates":[[[-125.89642199722996,49.12878799608914],[-125.8945741256882,49.13204099319603],[-125.90294906600087,49.132033655007106],[-125.89904303116967,49.128793033536],[-125.89642199722996,49.12878799608914]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Tin Wis 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923825","name":"Tin Wis 11"}},{"type":"Feature","geometry":{"coordinates":[[[-125.85010809386905,49.09375787537889],[-125.88187387031108,49.12408081169844],[-125.89595140119842,49.16673005426764],[-125.924346912935,49.15543235755333],[-125.90530665892894,49.12149882521164],[-125.85010809386905,49.09375787537889]],[[-125.89642199722996,49.12878799608914],[-125.89904303116967,49.128793033536],[-125.90294906600087,49.132033655007106],[-125.8945741256882,49.13204099319603],[-125.89642199722996,49.12878799608914]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Tofino","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923025","name":"Tofino"}},{"type":"Feature","geometry":{"coordinates":[[[-125.916637252618,49.17348205370327],[-125.90633273935413,49.17281557614058],[-125.90199168759858,49.17910981999094],[-125.91864129963025,49.17938104826073],[-125.916637252618,49.17348205370327]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Opitsat 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923813","name":"Opitsat 1"}},{"type":"Feature","geometry":{"coordinates":[[[-124.77428372799505,49.298687046862504],[-124.80249952700807,49.28351983962553],[-124.79995027476124,49.27445513877091],[-124.78290057999286,49.27068144886955],[-124.78346490066085,49.215434844594554],[-124.8051247336859,49.21093276763819],[-124.81286410135068,49.21105167856578],[-124.811355984366,49.21836313029666],[-124.81645666500961,49.2311876415613],[-124.82057731865761,49.17521019853467],[-124.80081458298474,49.14637802249415],[-124.76150865149076,49.1145841852225],[-124.68201437981044,49.13343734802478],[-124.62917338446098,49.09534488370449],[-124.58216592159866,49.103733800122896],[-124.58255508490153,49.14005755432641],[-124.59046684505257,49.15966509337611],[-124.6882921800145,49.171556278590316],[-124.69731781603397,49.191286968728214],[-124.67423772814229,49.23389255021996],[-124.68771813337932,49.2678069242181],[-124.74749300797109,49.275513405302725],[-124.77428372799505,49.298687046862504]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Alberni-Clayoquot F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923039","name":"Alberni-Clayoquot F"}},{"type":"Feature","geometry":{"coordinates":[[[-124.811355984366,49.21836313029666],[-124.81286410135068,49.21105167856578],[-124.8051247336859,49.21093276763819],[-124.811355984366,49.21836313029666]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Alberni 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923802","name":"Alberni 2"}},{"type":"Feature","geometry":{"coordinates":[[[-125.74113128368451,49.52248126499058],[-125.78460620813631,49.539842068734735],[-125.8886072115523,49.546963114330225],[-125.9696933407371,49.58488365171527],[-126.02564849762909,49.57673110942258],[-126.06414842047928,49.551227044415825],[-126.09428426557584,49.56913028529872],[-126.17886221955088,49.56796251317819],[-126.2068254679475,49.55122724209362],[-126.24906143520599,49.5549962881483],[-126.31821749481865,49.6042348068256],[-126.3466283182865,49.59876929818044],[-126.38318690132174,49.56072532217726],[-126.43442922041345,49.57806364903819],[-126.47418448951039,49.5703161984031],[-126.5065359722319,49.54037662639184],[-126.61445839254172,49.54044589057454],[-126.60723789506814,49.52799462645745],[-126.62861990612717,49.39960369808423],[-126.61300316706894,49.36658653132719],[-126.5726768436176,49.33765226075463],[-126.3735489015212,49.290041847414365],[-126.2514774890789,49.251020348360264],[-126.17479010174749,49.18495330374],[-126.08930059516452,49.122702159620175],[-125.96759890524592,49.04456841024046],[-125.92352370694452,49.00640675679802],[-125.79977521124393,48.92564213823813],[-125.62783889463756,48.84915374563694],[-125.50029762479022,48.80805018938237],[-125.37476050317815,48.74765396873713],[-125.10520427920969,48.95397333431562],[-125.11457899747201,49.01669427861998],[-125.1057637493421,49.0541055039019],[-125.1284763162866,49.09725664087406],[-125.21262066428709,49.14631393949125],[-125.22727625959126,49.19296498535826],[-125.27608443730642,49.1979489593495],[-125.29558042771676,49.2407028553236],[-125.38660848541089,49.30064063183578],[-125.46209447838496,49.30364518699333],[-125.55756519720484,49.33348489801653],[-125.54149797647439,49.36065341945953],[-125.58056191636948,49.41046413149975],[-125.5560878883222,49.439324860438795],[-125.58932974999342,49.46301104059943],[-125.56703415860397,49.498249741140064],[-125.74113128368451,49.52248126499058]],[[-125.78389028996062,49.07183900283953],[-125.78137491079153,49.0726689177576],[-125.77775649765337,49.0719649179888],[-125.78254904521671,49.07049465426369],[-125.78389028996062,49.07183900283953]],[[-125.5741208675747,48.97638716829603],[-125.57741136443428,48.978754949712],[-125.57357466554535,48.98068240238069],[-125.5741208675747,48.97638716829603]],[[-126.27317106756134,49.36288720438151],[-126.27359233850568,49.368962544524514],[-126.27185912671474,49.36963136269162],[-126.26966494829291,49.36425347425819],[-126.27317106756134,49.36288720438151]],[[-125.38490573118152,48.989310443422895],[-125.38521101082944,48.99764205860549],[-125.36970010924838,48.997606400892316],[-125.38159745641015,48.99287665440891],[-125.38490573118152,48.989310443422895]],[[-125.52997843812386,48.937309777176985],[-125.53477214284918,48.94419280333014],[-125.52165207891426,48.9442604696049],[-125.52159254377534,48.93491081314449],[-125.52997843812386,48.937309777176985]],[[-125.916637252618,49.17348205370327],[-125.91864129963025,49.17938104826073],[-125.90199168759858,49.17910981999094],[-125.90633273935413,49.17281557614058],[-125.916637252618,49.17348205370327]],[[-126.47167980570416,49.387269974868495],[-126.47889623786396,49.38715897696489],[-126.47930545135983,49.40273374180896],[-126.46365057180833,49.39218366931349],[-126.47167980570416,49.387269974868495]],[[-126.06482565851559,49.278342670952],[-126.05782553456383,49.2821378554438],[-126.04702614497303,49.27048075742579],[-126.05770546577473,49.26654730442531],[-126.06482565851559,49.278342670952]],[[-125.55231313046346,48.92885020662669],[-125.58629119184165,48.945366736334734],[-125.5654843921048,48.958532812761185],[-125.55231313046346,48.92885020662669]],[[-125.85010809386905,49.09375787537889],[-125.90530665892894,49.12149882521164],[-125.924346912935,49.15543235755333],[-125.89595140119842,49.16673005426764],[-125.88187387031108,49.12408081169844],[-125.85010809386905,49.09375787537889]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Alberni-Clayoquot C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923049","name":"Alberni-Clayoquot C"}},{"type":"Feature","geometry":{"coordinates":[[[-124.82692797220713,49.26949389167436],[-124.85311892213697,49.26924810699944],[-124.84111060230398,49.26437677682655],[-124.81645666500961,49.2311876415613],[-124.811355984366,49.21836313029666],[-124.8051247336859,49.21093276763819],[-124.78346490066085,49.215434844594554],[-124.78290057999286,49.27068144886955],[-124.79995027476124,49.27445513877091],[-124.8256012069239,49.26946492123957],[-124.82261385029587,49.260175391790966],[-124.82845012126927,49.26120130286202],[-124.82692797220713,49.26949389167436]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Port Alberni","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923008","name":"Port Alberni"}},{"type":"Feature","geometry":{"coordinates":[[[-124.82692797220713,49.26949389167436],[-124.82845012126927,49.26120130286202],[-124.82261385029587,49.260175391790966],[-124.8256012069239,49.26946492123957],[-124.82692797220713,49.26949389167436]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Ahahswinis 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923801","name":"Ahahswinis 1"}},{"type":"Feature","geometry":{"coordinates":[[[-124.85538347235473,49.278910621510285],[-124.88724463784094,49.27809811935857],[-124.88730917903953,49.26471166253091],[-124.84111060230398,49.26437677682655],[-124.85311892213697,49.26924810699944],[-124.85538347235473,49.278910621510285]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Tsahaheh 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923816","name":"Tsahaheh 1"}},{"type":"Feature","geometry":{"coordinates":[[[-126.06482565851559,49.278342670952],[-126.05770546577473,49.26654730442531],[-126.04702614497303,49.27048075742579],[-126.05782553456383,49.2821378554438],[-126.06482565851559,49.278342670952]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Marktosis 15","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923808","name":"Marktosis 15"}},{"type":"Feature","geometry":{"coordinates":[[[-124.88213320670494,49.293710905881014],[-124.88912895672688,49.29753172854176],[-124.90562697657786,49.297335725455554],[-124.90521011650604,49.29011945951057],[-124.88213320670494,49.293710905881014]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Klehkoot 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923822","name":"Klehkoot 2"}},{"type":"Feature","geometry":{"coordinates":[[[-124.80249952700807,49.28351983962553],[-124.88339173811329,49.33233685807275],[-124.91342645661075,49.32886301599094],[-124.88912895672688,49.29753172854176],[-124.88213320670494,49.293710905881014],[-124.85538347235473,49.278910621510285],[-124.85311892213697,49.26924810699944],[-124.82692797220713,49.26949389167436],[-124.8256012069239,49.26946492123957],[-124.79995027476124,49.27445513877091],[-124.80249952700807,49.28351983962553]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Alberni-Clayoquot E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923037","name":"Alberni-Clayoquot E"}},{"type":"Feature","geometry":{"coordinates":[[[-125.11470643827988,49.51481257547578],[-125.16661514908425,49.49171520086578],[-125.23395370755803,49.49103256410621],[-125.42652104146819,49.642665618237686],[-125.3795739891982,49.547902580267326],[-125.46881735577001,49.52821696644871],[-125.4998118660986,49.47816908018078],[-125.56703415860397,49.498249741140064],[-125.58932974999342,49.46301104059943],[-125.5560878883222,49.439324860438795],[-125.58056191636948,49.41046413149975],[-125.54149797647439,49.36065341945953],[-125.55756519720484,49.33348489801653],[-125.46209447838496,49.30364518699333],[-125.38660848541089,49.30064063183578],[-125.29558042771676,49.2407028553236],[-125.27608443730642,49.1979489593495],[-125.22727625959126,49.19296498535826],[-125.12122943539076,49.183039005300174],[-125.04140771816193,49.142648323854296],[-124.99540139533033,49.150274245353906],[-124.80081458298474,49.14637802249415],[-124.82057731865761,49.17521019853467],[-124.81645666500961,49.2311876415613],[-124.84111060230398,49.26437677682655],[-124.88730917903953,49.26471166253091],[-124.88724463784094,49.27809811935857],[-124.85538347235473,49.278910621510285],[-124.88213320670494,49.293710905881014],[-124.90521011650604,49.29011945951057],[-124.90562697657786,49.297335725455554],[-124.88912895672688,49.29753172854176],[-124.91342645661075,49.32886301599094],[-125.00542014807773,49.385196933027565],[-125.00013904303744,49.423993819590805],[-124.9708356080144,49.43351325823819],[-125.00985553557436,49.459135330329445],[-125.02250708089814,49.49237605486553],[-125.06905560525256,49.477583457359714],[-125.11470643827988,49.51481257547578]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Alberni-Clayoquot D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923035","name":"Alberni-Clayoquot D"}},{"type":"Feature","geometry":{"coordinates":[[[-124.77428372799505,49.298687046862504],[-124.80932973176417,49.32794850058181],[-124.89991918445234,49.379537756242414],[-124.96813235767269,49.43338667776203],[-124.9708356080144,49.43351325823819],[-125.00013904303744,49.423993819590805],[-125.00542014807773,49.385196933027565],[-124.91342645661075,49.32886301599094],[-124.88339173811329,49.33233685807275],[-124.80249952700807,49.28351983962553],[-124.77428372799505,49.298687046862504]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Alberni-Clayoquot B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923033","name":"Alberni-Clayoquot B"}},{"type":"Feature","geometry":{"coordinates":[[[-126.27317106756134,49.36288720438151],[-126.26966494829291,49.36425347425819],[-126.27185912671474,49.36963136269162],[-126.27359233850568,49.368962544524514],[-126.27317106756134,49.36288720438151]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Refuge Cove 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923824","name":"Refuge Cove 6"}},{"type":"Feature","geometry":{"coordinates":[[[-126.47167980570416,49.387269974868495],[-126.46365057180833,49.39218366931349],[-126.47930545135983,49.40273374180896],[-126.47889623786396,49.38715897696489],[-126.47167980570416,49.387269974868495]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Alberni-Clayoquot","census_subdivision":"Hesquiat 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5923","census_subdivision_code":"5923806","name":"Hesquiat 1"}},{"type":"Feature","geometry":{"coordinates":[[[-126.23374299788635,54.1831952344875],[-126.17208823325167,54.11489943698137],[-126.31601635480752,54.10128919501137],[-126.33960091060956,54.14182888489736],[-126.41749736932516,54.16317889087531],[-126.52872916051929,54.16848962927183],[-126.63789583793509,54.196598497529],[-126.63564073006553,54.05761102997982],[-126.800047141052,54.055175509864064],[-126.86596695778259,54.09583853852615],[-126.92209796250344,54.108371432472346],[-126.94972564060365,54.057003116312664],[-127.07953423117202,54.0780391161898],[-127.11082210737933,54.05204399235467],[-127.09711964678094,54.02323579847686],[-127.13113329753502,53.98675004806923],[-127.15944386928146,54.01862421230739],[-127.2386920256091,53.98961316582135],[-127.27300007385224,53.9580471386912],[-127.26592973480844,53.91579678457197],[-127.2819621757737,53.891257845636105],[-127.26735105237732,53.86192434538551],[-127.29892888662366,53.8205613575706],[-127.27672285885727,53.79657504051304],[-127.29563507338294,53.75554057743134],[-127.35826599182717,53.74070284635038],[-127.42785385170811,53.770252078445466],[-127.5112442056186,53.75933515462196],[-127.53723896026005,53.7351568120929],[-127.64965503540003,53.71060465397137],[-127.69414817590302,53.68288716472332],[-127.78589339029277,53.66185539443982],[-127.7492779642449,53.608070019398944],[-127.75911688741063,53.55286412864124],[-127.6774671315582,53.54945463802687],[-127.64928676027735,53.5335870813747],[-127.60347529152062,53.54836057221184],[-127.55430689958109,53.52510576561299],[-127.5653722883113,53.49293830350916],[-127.51870233833537,53.46114364801694],[-127.47917734812559,53.48802148073213],[-127.43497529589493,53.49089429577031],[-127.39275452399438,53.426596769899255],[-127.37049130755459,53.427830219516146],[-127.35501390781556,53.37292149683163],[-127.3147958999546,53.328432675966894],[-127.258691076824,53.302151534347594],[-127.26686157658617,53.27752625644057],[-127.22487279598889,53.25028273544213],[-127.15091733679175,53.281229948924306],[-127.12100500741838,53.23967660151724],[-127.07448726928365,53.25080518864074],[-127.06978360955473,53.28423677482433],[-127.0155319723282,53.3090326703481],[-126.98208791877303,53.27845997648652],[-127.05072039782307,53.20661967337186],[-127.01330807499006,53.18920887788087],[-127.00373637355645,53.158776272263324],[-127.03280920880397,53.11418341520478],[-126.98568207343952,53.07223713013635],[-126.94810750507412,53.09353939579648],[-126.88274659753698,53.08391881657795],[-126.84116168436563,53.11039547320625],[-126.80027384376064,53.0743421048183],[-126.78989978341596,53.000455560595306],[-126.72393869539901,52.99256359971914],[-126.65552020999263,53.031200998182044],[-126.60910991847187,53.00027962116089],[-126.249703418515,53.000086831037976],[-125.7508057492116,53.00039502033532],[-125.00033476542127,53.000282401289816],[-125.00061963835155,53.190369954166776],[-124.99631284524315,53.241811027497775],[-125.00172120503012,53.44683820246297],[-125.10213137425707,53.43143001590728],[-125.23776184972675,53.44885207263155],[-125.23699529571834,53.827265055762744],[-125.24721396801104,53.89397800465779],[-125.23533281542271,53.99899064211382],[-125.24054219124552,54.10777591899768],[-125.39579206726388,54.113442666584795],[-125.48936994095726,54.12455389021873],[-125.5745289798538,54.14608899390231],[-125.61300421840829,54.125869841590344],[-125.74924427867784,54.17169736573364],[-125.83646169355062,54.181946810741856],[-125.9568799631952,54.16562977459084],[-126.00260641542832,54.12168581873852],[-126.07929978807567,54.12687571223433],[-126.13047027233885,54.14745580691377],[-126.13284700045392,54.168714317937365],[-126.17975940970803,54.213450924373205],[-126.23374299788635,54.1831952344875]],[[-125.84894300752217,53.99476673870073],[-125.84878813501803,53.987535552259416],[-125.8607797178859,53.98755149274367],[-125.85862653182573,53.99213076057244],[-125.84894300752217,53.99476673870073]],[[-125.66188331411479,53.93139072324192],[-125.67572062787161,53.934304288903576],[-125.6751274315458,53.93659418555304],[-125.66183079476005,53.93580443292689],[-125.66188331411479,53.93139072324192]],[[-125.87164413108576,53.994780464711305],[-125.88680564490636,53.99407413713676],[-125.886864173415,54.00037535341208],[-125.8715945507454,54.00043154622787],[-125.87164413108576,53.994780464711305]],[[-126.4905149806687,53.98229645684213],[-126.49819727937148,53.98501568011475],[-126.49132239666972,53.99051961475531],[-126.48104475431691,53.99083617812749],[-126.47759884099935,53.98305566047787],[-126.4905149806687,53.98229645684213]],[[-125.96171604988686,54.015977672154264],[-125.94823665028493,54.00888765634847],[-125.9604535586225,54.002292801838095],[-125.96171604988686,54.015977672154264]],[[-125.6474269264197,53.952115476642525],[-125.6490712907348,53.9449404007872],[-125.66166200273202,53.94495130020485],[-125.65989905281567,53.95185746679927],[-125.6474269264197,53.952115476642525]],[[-125.71851501711623,54.014643402680974],[-125.69988080820657,54.01481334492244],[-125.69899520102025,54.00077759638658],[-125.71806281499198,53.999794652947145],[-125.71851501711623,54.014643402680974]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Bulkley-Nechako E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951031","name":"Bulkley-Nechako E"}},{"type":"Feature","geometry":{"coordinates":[[[-123.52035758347793,54.15440078952457],[-123.74311979036692,54.18026728842362],[-123.82196017272207,54.20438009622164],[-123.8429552782792,54.19800969600612],[-123.96446209951941,54.209569006645744],[-124.19872998514364,54.29363549537199],[-124.27261528448236,54.292721430183505],[-124.3487030668,54.26490320384495],[-124.40030043424393,54.26944534540823],[-124.42359287498952,54.2326711712284],[-124.46597948614188,54.23261280625556],[-124.46668057511906,54.128141628869535],[-124.36725417525605,54.128119450112116],[-124.35328531845526,54.07057379886834],[-124.36745935733417,54.01987085461664],[-124.36670901606122,54.01312127268535],[-124.43645941991537,53.99843339037088],[-124.4362686033298,53.896511763909984],[-124.50020066399063,53.894729667708496],[-124.502872994535,53.70689289684088],[-124.50060357952508,53.52746667628115],[-124.386156206955,53.485260767850924],[-124.38097716667673,53.45482000071691],[-124.30564964847838,53.455444805327936],[-124.25384935313012,53.46652498367698],[-124.21565559640283,53.443692571585196],[-124.21538185983137,53.420650431888895],[-124.13661937253381,53.408157105443166],[-124.08589239710503,53.434949219072074],[-123.99756090044838,53.443995851592],[-123.99762864049903,53.48430753129915],[-123.4198809660935,53.4835105357097],[-123.41896027520703,53.47018300737702],[-123.3017093718526,53.47023147557176],[-123.30471803888295,53.627589100109944],[-123.40540985925159,53.67660922374088],[-123.4473355074291,53.70883415843107],[-123.49936754297894,53.72850352676251],[-123.51812708734441,53.758977768987926],[-123.50071045132664,53.78746239825386],[-123.42524967130463,53.79263383845533],[-123.42239773151019,53.97459311270343],[-123.49136377998302,54.002860695564415],[-123.53480880288673,53.98726559681779],[-123.58452161710868,54.02379420780426],[-123.58678008964203,54.058139287637225],[-123.48453319044529,54.07137620942547],[-123.48394379544048,54.08394269966436],[-123.56601958765143,54.1055695980644],[-123.52035758347793,54.15440078952457]],[[-124.19293215442221,53.93045867672612],[-124.17280450843958,53.930158681528745],[-124.17299904436729,53.916178588832395],[-124.19260141996816,53.9187355726737],[-124.19293215442221,53.93045867672612]],[[-124.07017051682742,53.947618390463106],[-124.06986811213913,53.91819238849393],[-124.14290963068893,53.9322622668393],[-124.12116253689076,53.96374108964557],[-124.07017051682742,53.947618390463106]],[[-123.99705627776932,54.04671456101131],[-123.93512823481953,54.03285875291429],[-123.93345646493124,53.98342800128547],[-124.0457801878206,53.99130526368018],[-124.09355193959145,54.00546190679804],[-124.09456065383846,54.03549139095247],[-124.03232359891184,54.03405501433023],[-123.99705627776932,54.04671456101131]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Bulkley-Nechako F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951019","name":"Bulkley-Nechako F"}},{"type":"Feature","geometry":{"coordinates":[[[-124.46597948614188,54.23261280625556],[-124.46623661605666,54.24997275507977],[-124.99989839438487,54.24994595422292],[-125.2411995982563,54.24885874534512],[-125.24054219124552,54.10777591899768],[-125.23533281542271,53.99899064211382],[-125.24721396801104,53.89397800465779],[-125.23699529571834,53.827265055762744],[-125.23776184972675,53.44885207263155],[-125.10213137425707,53.43143001590728],[-125.00172120503012,53.44683820246297],[-124.98383183470563,53.4315277915133],[-124.89881610268753,53.435306161823576],[-124.80588500868829,53.369095259296316],[-124.73662227434276,53.35462321195247],[-124.64734162537935,53.40755032534189],[-124.62884796188185,53.386032329347074],[-124.52328845923435,53.40236854719238],[-124.55209992863293,53.46234849611397],[-124.51848465501806,53.476971983150975],[-124.50060357952508,53.52746667628115],[-124.502872994535,53.70689289684088],[-124.50020066399063,53.894729667708496],[-124.4362686033298,53.896511763909984],[-124.43645941991537,53.99843339037088],[-124.36670901606122,54.01312127268535],[-124.36745935733417,54.01987085461664],[-124.35328531845526,54.07057379886834],[-124.36725417525605,54.128119450112116],[-124.46668057511906,54.128141628869535],[-124.46597948614188,54.23261280625556]],[[-124.75605683926553,54.05934527538762],[-124.77136423550091,54.05078108315185],[-124.78518022274142,54.05915258516212],[-124.75599606382906,54.06782980827501],[-124.75605683926553,54.05934527538762]],[[-124.84090735472819,54.066435854397085],[-124.84031860605862,54.05172809752807],[-124.86686376187073,54.05126672077279],[-124.86224073453765,54.0610933322252],[-124.84090735472819,54.066435854397085]],[[-124.60194088983064,54.085348784056784],[-124.60227364161592,54.09361010673782],[-124.57735770361175,54.09379250888422],[-124.60500242493413,54.06439157595958],[-124.6125440716739,54.081672824284745],[-124.60194088983064,54.085348784056784]],[[-124.9191987435562,54.03431690179199],[-124.9260528553488,54.069948133780315],[-124.88980858149439,54.04937134559445],[-124.9191987435562,54.03431690179199]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Bulkley-Nechako D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951017","name":"Bulkley-Nechako D"}},{"type":"Feature","geometry":{"coordinates":[[[-124.19293215442221,53.93045867672612],[-124.19260141996816,53.9187355726737],[-124.17299904436729,53.916178588832395],[-124.17280450843958,53.930158681528745],[-124.19293215442221,53.93045867672612]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Laketown 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951813","name":"Laketown 3"}},{"type":"Feature","geometry":{"coordinates":[[[-125.66188331411479,53.93139072324192],[-125.66183079476005,53.93580443292689],[-125.6751274315458,53.93659418555304],[-125.67572062787161,53.934304288903576],[-125.66188331411479,53.93139072324192]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Uncha Lake 13A","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951826","name":"Uncha Lake 13A"}},{"type":"Feature","geometry":{"coordinates":[[[-124.07017051682742,53.947618390463106],[-124.12116253689076,53.96374108964557],[-124.14290963068893,53.9322622668393],[-124.06986811213913,53.91819238849393],[-124.07017051682742,53.947618390463106]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Stony Creek 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951809","name":"Stony Creek 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.6474269264197,53.952115476642525],[-125.65989905281567,53.95185746679927],[-125.66166200273202,53.94495130020485],[-125.6490712907348,53.9449404007872],[-125.6474269264197,53.952115476642525]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Skins Lake 16B","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951824","name":"Skins Lake 16B"}},{"type":"Feature","geometry":{"coordinates":[[[-126.49132239666972,53.99051961475531],[-126.49819727937148,53.98501568011475],[-126.4905149806687,53.98229645684213],[-126.49132239666972,53.99051961475531]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Tatla West 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951825","name":"Tatla West 11"}},{"type":"Feature","geometry":{"coordinates":[[[-126.4905149806687,53.98229645684213],[-126.47759884099935,53.98305566047787],[-126.48104475431691,53.99083617812749],[-126.49132239666972,53.99051961475531],[-126.4905149806687,53.98229645684213]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Tatla't East 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951833","name":"Tatla't East 2"}},{"type":"Feature","geometry":{"coordinates":[[[-125.84894300752217,53.99476673870073],[-125.85862653182573,53.99213076057244],[-125.8607797178859,53.98755149274367],[-125.84878813501803,53.987535552259416],[-125.84894300752217,53.99476673870073]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Omineca 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951819","name":"Omineca 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.87164413108576,53.994780464711305],[-125.8715945507454,54.00043154622787],[-125.886864173415,54.00037535341208],[-125.88680564490636,53.99407413713676],[-125.87164413108576,53.994780464711305]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Skins Lake 16A","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951823","name":"Skins Lake 16A"}},{"type":"Feature","geometry":{"coordinates":[[[-125.71851501711623,54.014643402680974],[-125.71806281499198,53.999794652947145],[-125.69899520102025,54.00077759638658],[-125.69988080820657,54.01481334492244],[-125.71851501711623,54.014643402680974]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Cheslatta 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951818","name":"Cheslatta 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.96171604988686,54.015977672154264],[-125.9604535586225,54.002292801838095],[-125.94823665028493,54.00888765634847],[-125.96171604988686,54.015977672154264]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Francois Lake 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951822","name":"Francois Lake 7"}},{"type":"Feature","geometry":{"coordinates":[[[-123.99705627776932,54.04671456101131],[-124.03232359891184,54.03405501433023],[-124.09456065383846,54.03549139095247],[-124.09355193959145,54.00546190679804],[-124.0457801878206,53.99130526368018],[-123.93345646493124,53.98342800128547],[-123.93512823481953,54.03285875291429],[-123.99705627776932,54.04671456101131]],[[-124.06782954176659,54.02113756384266],[-124.08031486301215,54.016679374198084],[-124.08059454255914,54.027090295223985],[-124.06782954176659,54.02113756384266]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Vanderhoof","type":"District municipality","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951007","name":"Vanderhoof"}},{"type":"Feature","geometry":{"coordinates":[[[-124.06782954176659,54.02113756384266],[-124.08059454255914,54.027090295223985],[-124.08031486301215,54.016679374198084],[-124.06782954176659,54.02113756384266]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Noonla 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951832","name":"Noonla 6"}},{"type":"Feature","geometry":{"coordinates":[[[-124.9191987435562,54.03431690179199],[-124.88980858149439,54.04937134559445],[-124.9260528553488,54.069948133780315],[-124.9191987435562,54.03431690179199]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Stellaquo (Stella) 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951807","name":"Stellaquo (Stella) 1"}},{"type":"Feature","geometry":{"coordinates":[[[-124.84090735472819,54.066435854397085],[-124.86224073453765,54.0610933322252],[-124.86686376187073,54.05126672077279],[-124.84031860605862,54.05172809752807],[-124.84090735472819,54.066435854397085]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Fraser Lake","type":"Village","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951009","name":"Fraser Lake"}},{"type":"Feature","geometry":{"coordinates":[[[-124.75599606382906,54.06782980827501],[-124.78518022274142,54.05915258516212],[-124.77136423550091,54.05078108315185],[-124.75605683926553,54.05934527538762],[-124.75599606382906,54.06782980827501]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Seaspunkut 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951806","name":"Seaspunkut 4"}},{"type":"Feature","geometry":{"coordinates":[[[-124.60194088983064,54.085348784056784],[-124.6125440716739,54.081672824284745],[-124.60500242493413,54.06439157595958],[-124.57735770361175,54.09379250888422],[-124.60227364161592,54.09361010673782],[-124.60194088983064,54.085348784056784]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Nautley (Fort Fraser) 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951802","name":"Nautley (Fort Fraser) 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.77204653291507,54.241228816133564],[-125.77272913359529,54.23570618954407],[-125.7691808213812,54.23163910356303],[-125.77293306977005,54.23053028129362],[-125.74687277612509,54.21268755806942],[-125.72975773563712,54.225677766722704],[-125.76003787478062,54.241702281093026],[-125.76494516377265,54.236200165969215],[-125.77204653291507,54.241228816133564]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Burns Lake","type":"Village","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951022","name":"Burns Lake"}},{"type":"Feature","geometry":{"coordinates":[[[-125.78378938794678,54.23033475939419],[-125.78763000645131,54.23103905534482],[-125.78993691049956,54.223519884205025],[-125.78650262278703,54.225453264295226],[-125.78378938794678,54.23033475939419]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Poison Creek 17A","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951844","name":"Poison Creek 17A"}},{"type":"Feature","geometry":{"coordinates":[[[[-125.77293306977005,54.23053028129362],[-125.7691808213812,54.23163910356303],[-125.77272913359529,54.23570618954407],[-125.77293306977005,54.23053028129362]]],[[[-125.76494516377265,54.236200165969215],[-125.76319082645503,54.241685275381485],[-125.77204653291507,54.241228816133564],[-125.76494516377265,54.236200165969215]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Burns Lake 18","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951815","name":"Burns Lake 18"}},{"type":"Feature","geometry":{"coordinates":[[[-125.76494516377265,54.236200165969215],[-125.76003787478062,54.241702281093026],[-125.76319082645503,54.241685275381485],[-125.76494516377265,54.236200165969215]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Woyenne 27","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951827","name":"Woyenne 27"}},{"type":"Feature","geometry":{"coordinates":[[[-125.89450142977407,54.33390287894922],[-125.8773927007541,54.32711293035613],[-125.87853221818355,54.33427465526336],[-125.89450142977407,54.33390287894922]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Palling 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951820","name":"Palling 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.95622940079953,54.751299300640625],[-126.04317522312385,54.757208763789876],[-126.10723761765244,54.74871917397266],[-126.2498916219776,54.74901523682382],[-126.24397059889941,54.53525581208275],[-126.2519047322203,54.409873642359265],[-126.45618760188306,54.404917031829406],[-126.50212749308425,54.352279909621835],[-126.47735944358352,54.33218048406835],[-126.41315716738139,54.342728462194366],[-126.34066307571898,54.31412044082223],[-126.28459909381037,54.272448602771455],[-126.26201710981742,54.23917826944497],[-126.33736658071513,54.23816829808841],[-126.36372395133391,54.2175989344345],[-126.23374299788635,54.1831952344875],[-126.17975940970803,54.213450924373205],[-126.13284700045392,54.168714317937365],[-126.13047027233885,54.14745580691377],[-126.07929978807567,54.12687571223433],[-126.00260641542832,54.12168581873852],[-125.9568799631952,54.16562977459084],[-125.83646169355062,54.181946810741856],[-125.74924427867784,54.17169736573364],[-125.61300421840829,54.125869841590344],[-125.5745289798538,54.14608899390231],[-125.48936994095726,54.12455389021873],[-125.39579206726388,54.113442666584795],[-125.24054219124552,54.10777591899768],[-125.2411995982563,54.24885874534512],[-124.99989839438487,54.24994595422292],[-124.99871319441759,54.420218478092686],[-125.0514870189265,54.4350188789783],[-125.06249027787372,54.46513021044364],[-125.18926739062638,54.49694801147443],[-125.3146834865632,54.472350411216],[-125.48446643196405,54.45108216323979],[-125.60350029762891,54.49133935833892],[-125.7073428777039,54.53916831688668],[-125.75497798814142,54.57944580582771],[-125.90453369575933,54.67224408669616],[-125.948308515564,54.718635868920266],[-125.95622940079953,54.751299300640625]],[[-125.64586556375912,54.490950254085924],[-125.64600699157512,54.490427480133825],[-125.64910339305143,54.490301405048704],[-125.64775725678717,54.491481916035134],[-125.64586556375912,54.490950254085924]],[[-125.78378938794678,54.23033475939419],[-125.78650262278703,54.225453264295226],[-125.78993691049956,54.223519884205025],[-125.78763000645131,54.23103905534482],[-125.78378938794678,54.23033475939419]],[[-126.13270335534364,54.42152986751377],[-126.1274939079707,54.41634769284503],[-126.1411434762654,54.41648212150484],[-126.14138516928087,54.424908338582675],[-126.13270335534364,54.42152986751377]],[[-125.89450142977407,54.33390287894922],[-125.87853221818355,54.33427465526336],[-125.8773927007541,54.32711293035613],[-125.89450142977407,54.33390287894922]],[[-125.77272913359529,54.23570618954407],[-125.77204653291507,54.241228816133564],[-125.76319082645503,54.241685275381485],[-125.76003787478062,54.241702281093026],[-125.72975773563712,54.225677766722704],[-125.74687277612509,54.21268755806942],[-125.77293306977005,54.23053028129362],[-125.77272913359529,54.23570618954407]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Bulkley-Nechako B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951028","name":"Bulkley-Nechako B"}},{"type":"Feature","geometry":{"coordinates":[[[-126.72701704095535,54.423827614307726],[-126.73811745346164,54.355756905260286],[-126.70409980306228,54.367180569766326],[-126.59390395144787,54.36782770856442],[-126.57929629282461,54.38932367388674],[-126.59325638702124,54.43218348505791],[-126.65632808558418,54.41785004561217],[-126.72701704095535,54.423827614307726]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Houston","type":"District municipality","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951034","name":"Houston"}},{"type":"Feature","geometry":{"coordinates":[[[-126.13270335534364,54.42152986751377],[-126.14138516928087,54.424908338582675],[-126.1411434762654,54.41648212150484],[-126.1274939079707,54.41634769284503],[-126.13270335534364,54.42152986751377]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Duncan Lake 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951821","name":"Duncan Lake 2"}},{"type":"Feature","geometry":{"coordinates":[[[-124.40508365208976,54.427649672338866],[-124.40584996972109,54.41626796817605],[-124.38599167543447,54.416231817559726],[-124.40508365208976,54.427649672338866]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Sowchea 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951804","name":"Sowchea 3"}},{"type":"Feature","geometry":{"coordinates":[[[-124.2310438592373,54.438815640584835],[-124.25714436354922,54.43942314011843],[-124.26743108522568,54.424892437516206],[-124.2310301113643,54.42451703858563],[-124.2310438592373,54.438815640584835]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Nak'azdli","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951803","name":"Nak'azdli"}},{"type":"Feature","geometry":{"coordinates":[[[-124.26294240518891,54.45699461451006],[-124.2742886496557,54.45753591908348],[-124.27414348831839,54.45256674947758],[-124.26419392008206,54.44978920316563],[-124.26294240518891,54.45699461451006]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Mission Lands 17","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951849","name":"Mission Lands 17"}},{"type":"Feature","geometry":{"coordinates":[[[[-124.26294240518891,54.45699461451006],[-124.2742886496557,54.45753591908348],[-124.27414348831839,54.45256674947758],[-124.26419392008206,54.44978920316563],[-124.26294240518891,54.45699461451006]]],[[[-124.19339822520547,54.47519426861736],[-124.23483291102411,54.5003772743148],[-124.25714436354922,54.43942314011843],[-124.2310438592373,54.438815640584835],[-124.20201216865895,54.46770317534567],[-124.19339822520547,54.47519426861736]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Fort St. James","type":"District municipality","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951013","name":"Fort St. James"}},{"type":"Feature","geometry":{"coordinates":[[[-124.19292295075212,54.467750663756476],[-124.19169372288668,54.47514632907096],[-124.19339822520547,54.47519426861736],[-124.20201216865895,54.46770317534567],[-124.19292295075212,54.467750663756476]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Williams Prairie Meadow 1A","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951840","name":"Williams Prairie Meadow 1A"}},{"type":"Feature","geometry":{"coordinates":[[[-125.64586556375912,54.490950254085924],[-125.64775725678717,54.491481916035134],[-125.64910339305143,54.490301405048704],[-125.64600699157512,54.490427480133825],[-125.64586556375912,54.490950254085924]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Babine Lake 21B","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951847","name":"Babine Lake 21B"}},{"type":"Feature","geometry":{"coordinates":[[[-124.54048034711428,54.56649296723186],[-124.51529963708408,54.56981286060989],[-124.47284344058235,54.557871256762525],[-124.47212998689673,54.576229048280354],[-124.52331768324835,54.575897317967836],[-124.54048034711428,54.56649296723186]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Binche 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951805","name":"Binche 2"}},{"type":"Feature","geometry":{"coordinates":[[[-125.07937850109144,54.60806486698505],[-125.07939691391921,54.59864443365068],[-125.053167530959,54.596581398980845],[-125.05982809311804,54.6087079025207],[-125.07937850109144,54.60806486698505]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Ye Koo Che 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951801","name":"Ye Koo Che 3"}},{"type":"Feature","geometry":{"coordinates":[[[-124.75372604404905,54.649344723411616],[-124.73404956804421,54.676501034393034],[-124.78178153805686,54.676638118604195],[-124.75372604404905,54.649344723411616]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Tache 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951810","name":"Tache 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.0571379047066,54.71006965718955],[-127.07195243264827,54.66169380116279],[-127.04723934038502,54.66085913848426],[-127.0571379047066,54.71006965718955]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Telkwa","type":"Village","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951038","name":"Telkwa"}},{"type":"Feature","geometry":{"coordinates":[[[-127.3421411380029,55.00002635140056],[-127.80104571145112,54.99946669052339],[-127.79954951334159,54.67392607349991],[-127.80398479721953,54.599238980918564],[-127.7776576092304,54.60443932402331],[-127.68734830676924,54.57840265218463],[-127.70025986706301,54.5472340600119],[-127.7572229592943,54.537778317031545],[-127.77165969891382,54.49494822909996],[-127.50039587347995,54.496170930300295],[-126.7944485987094,54.49394758817368],[-126.72696739355338,54.50632893949135],[-126.62298644639655,54.5074707975692],[-126.62733332533453,54.62550427143705],[-126.68496601376322,54.67870079454512],[-126.74911475155471,54.69270805392856],[-126.74338275797201,54.71941057814558],[-126.7717023991386,54.74964473004209],[-126.70732407611145,54.76118095750643],[-126.70059028787131,54.79394616313002],[-126.7610404145832,54.7947243549787],[-126.85744004223427,54.84812227412951],[-126.86185380955392,54.937519678941094],[-126.93720119287997,55.000035093924524],[-127.30272567883476,55.00032701537637],[-127.3421411380029,55.00002635140056]],[[-127.0002756255788,54.744259889916044],[-127.02877424997897,54.743359664104354],[-127.02847674031472,54.751274049063944],[-127.0024880642239,54.74996234058875],[-127.0002756255788,54.744259889916044]],[[-127.0571379047066,54.71006965718955],[-127.04723934038502,54.66085913848426],[-127.07195243264827,54.66169380116279],[-127.0571379047066,54.71006965718955]],[[-127.17387169221331,54.834176465196734],[-127.16005816477683,54.78811707540446],[-127.13445094360715,54.78212278480407],[-127.13271468069813,54.75506978847742],[-127.1759032110339,54.76747786196218],[-127.19044290735908,54.81117116240044],[-127.17387169221331,54.834176465196734]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Bulkley-Nechako A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951051","name":"Bulkley-Nechako A"}},{"type":"Feature","geometry":{"coordinates":[[[-127.0002756255788,54.744259889916044],[-127.0024880642239,54.74996234058875],[-127.02847674031472,54.751274049063944],[-127.02877424997897,54.743359664104354],[-127.0002756255788,54.744259889916044]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Jean Baptiste 28","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951830","name":"Jean Baptiste 28"}},{"type":"Feature","geometry":{"coordinates":[[[-127.17387169221331,54.834176465196734],[-127.19044290735908,54.81117116240044],[-127.1759032110339,54.76747786196218],[-127.13271468069813,54.75506978847742],[-127.13445094360715,54.78212278480407],[-127.16005816477683,54.78811707540446],[-127.17387169221331,54.834176465196734]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Smithers","type":"Town","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951043","name":"Smithers"}},{"type":"Feature","geometry":{"coordinates":[[[-126.14350612141926,54.81850827945384],[-126.15308943083993,54.818607989354206],[-126.15683044200173,54.814252593349565],[-126.13944812950484,54.81514148083557],[-126.14350612141926,54.81850827945384]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Babine 25","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951829","name":"Babine 25"}},{"type":"Feature","geometry":{"coordinates":[[[-125.16183344568076,54.88280847666902],[-125.11504492915672,54.86853938471585],[-125.10465250868124,54.88830416956224],[-125.16183344568076,54.88280847666902]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Dzitline Lee 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951814","name":"Dzitline Lee 9"}},{"type":"Feature","geometry":{"coordinates":[[[-127.02431387805869,56.00010236242619],[-127.50040355544016,56.00150256662776],[-127.9182200361711,56.002813462108804],[-127.94153266919186,55.99993573269343],[-128.36462689175144,56.003179122828925],[-128.43928065806898,56.002952485859005],[-128.48555037529127,55.94483758201198],[-128.3868993849822,55.91429943284907],[-128.33093567848374,55.914164086867096],[-128.27537305101296,55.93605314190621],[-128.22425607744788,55.93245087843408],[-128.18904392059844,55.910786906311],[-128.1884814984335,55.87091596087101],[-128.1428732815799,55.846492971945594],[-128.18948998288693,55.82238761599868],[-128.24061020300002,55.76796881642975],[-128.18016760647595,55.72773855475192],[-128.11512092174814,55.72140931008801],[-128.0717489355329,55.75957070168236],[-127.99615573203724,55.72669226724694],[-127.96294849492263,55.688450112697204],[-127.91507216336522,55.71703100942672],[-127.78538821788503,55.70499926008578],[-127.7133211709979,55.710818488588515],[-127.66409697460512,55.685445324576534],[-127.65279419972197,55.63849409688438],[-127.59086937085408,55.60156791745648],[-127.53336958885576,55.55002523393444],[-127.45770087191902,55.53756378943419],[-127.45840545527402,55.50929369933903],[-127.30016885471811,55.512119680556836],[-127.25723306221472,55.47392275583963],[-127.17260377947356,55.462592916324866],[-127.08975493934761,55.40532900984714],[-127.03184190065757,55.385866832502735],[-126.93740319369361,55.38614509048595],[-126.8711698300261,55.35200795871318],[-126.88102963447864,55.3039949444156],[-126.95364617307388,55.2885447184137],[-126.92834010067821,55.26826031152519],[-126.87996966886584,55.26897869922446],[-126.83807556399668,55.22192840257943],[-126.78546461181013,55.227035009202694],[-126.7420025916376,55.207145853630024],[-126.7349436333795,55.16030465665065],[-126.64762450062271,55.10078028515838],[-126.71615488423905,55.06410348572881],[-126.84345387664304,55.07502182768306],[-126.88000136442413,55.059850003971775],[-126.8734736014032,55.03496788785369],[-126.93720119287997,55.000035093924524],[-126.86185380955392,54.937519678941094],[-126.85744004223427,54.84812227412951],[-126.7610404145832,54.7947243549787],[-126.70059028787131,54.79394616313002],[-126.70732407611145,54.76118095750643],[-126.7717023991386,54.74964473004209],[-126.74338275797201,54.71941057814558],[-126.74911475155471,54.69270805392856],[-126.68496601376322,54.67870079454512],[-126.62733332533453,54.62550427143705],[-126.62298644639655,54.5074707975692],[-126.72696739355338,54.50632893949135],[-126.7944485987094,54.49394758817368],[-127.50039587347995,54.496170930300295],[-127.77165969891382,54.49494822909996],[-127.75770678971328,54.44306953626476],[-127.69391079606503,54.463614287815744],[-127.62140107579874,54.444588874958534],[-127.58042733404568,54.45146113662801],[-127.53775517020573,54.43518983541926],[-127.5938075857218,54.313000815244216],[-127.64115847428812,54.304482981338445],[-127.6748732488293,54.2612412793203],[-127.6551661915025,54.24587766731502],[-127.70558956381055,54.206452550134465],[-127.75000035943259,54.20412194725183],[-127.7579041843696,54.172959678410535],[-127.72167945988691,54.12402058851162],[-127.80475527461782,54.110979797025024],[-127.85366846219539,54.07305093439242],[-127.89253995346891,54.02209098425716],[-128.0002351496968,53.99500268077671],[-128.00166316687523,53.89128508408135],[-127.99813798471442,53.85635658534642],[-127.93667659572066,53.82620685790876],[-127.89922716466891,53.77789662718514],[-127.90107107312471,53.745078509079995],[-127.82011949224528,53.72765837352145],[-127.81412861250152,53.662338415126186],[-127.78589339029277,53.66185539443982],[-127.69414817590302,53.68288716472332],[-127.64965503540003,53.71060465397137],[-127.53723896026005,53.7351568120929],[-127.5112442056186,53.75933515462196],[-127.42785385170811,53.770252078445466],[-127.35826599182717,53.74070284635038],[-127.29563507338294,53.75554057743134],[-127.27672285885727,53.79657504051304],[-127.29892888662366,53.8205613575706],[-127.26735105237732,53.86192434538551],[-127.2819621757737,53.891257845636105],[-127.26592973480844,53.91579678457197],[-127.27300007385224,53.9580471386912],[-127.2386920256091,53.98961316582135],[-127.15944386928146,54.01862421230739],[-127.13113329753502,53.98675004806923],[-127.09711964678094,54.02323579847686],[-127.11082210737933,54.05204399235467],[-127.07953423117202,54.0780391161898],[-126.94972564060365,54.057003116312664],[-126.92209796250344,54.108371432472346],[-126.86596695778259,54.09583853852615],[-126.800047141052,54.055175509864064],[-126.63564073006553,54.05761102997982],[-126.63789583793509,54.196598497529],[-126.52872916051929,54.16848962927183],[-126.41749736932516,54.16317889087531],[-126.33960091060956,54.14182888489736],[-126.31601635480752,54.10128919501137],[-126.17208823325167,54.11489943698137],[-126.23374299788635,54.1831952344875],[-126.36372395133391,54.2175989344345],[-126.33736658071513,54.23816829808841],[-126.26201710981742,54.23917826944497],[-126.28459909381037,54.272448602771455],[-126.34066307571898,54.31412044082223],[-126.41315716738139,54.342728462194366],[-126.47735944358352,54.33218048406835],[-126.50212749308425,54.352279909621835],[-126.45618760188306,54.404917031829406],[-126.2519047322203,54.409873642359265],[-126.24397059889941,54.53525581208275],[-126.2498916219776,54.74901523682382],[-126.10723761765244,54.74871917397266],[-126.04317522312385,54.757208763789876],[-125.95622940079953,54.751299300640625],[-125.97544027349878,54.8054437774437],[-126.00295885870194,54.81712155895],[-125.99408340745101,54.97067427049521],[-126.00365418628164,55.095606014149574],[-125.99922510815709,55.16703685774035],[-126.05725118762093,55.177564298629704],[-126.129759363606,55.233644993158286],[-126.16791191644609,55.28984137175302],[-126.26015133550928,55.34649868300232],[-126.23588817965417,55.36756558532746],[-126.27183264840835,55.394459562847175],[-126.32000419344898,55.395761383956525],[-126.36572344616687,55.476908898638555],[-126.4072379166402,55.49837820459066],[-126.38580053921727,55.53203851472792],[-126.40230292593192,55.58200242913446],[-126.4670306855868,55.59953490635232],[-126.48090812388402,55.637883102148876],[-126.60920142070113,55.67495040909597],[-126.6568188069016,55.70926796717536],[-126.74926322523189,55.74250299875942],[-126.74389156276975,55.78315212223472],[-126.8365617107997,55.82903684514044],[-126.88494534999035,55.89651970516495],[-126.88101233397124,55.93276140491157],[-126.90105480899035,55.96408743890538],[-126.96903075527736,55.99355541402573],[-127.02431387805869,56.00010236242619]],[[-126.14350612141926,54.81850827945384],[-126.13944812950484,54.81514148083557],[-126.15683044200173,54.814252593349565],[-126.15308943083993,54.818607989354206],[-126.14350612141926,54.81850827945384]],[[-126.50135216661019,55.06198672948468],[-126.51526525170654,55.06262778507711],[-126.51961994786551,55.077360319517496],[-126.49575802554205,55.07139706298261],[-126.50135216661019,55.06198672948468]],[[-126.34267458449258,55.049582680829914],[-126.30433292762206,55.05422708823488],[-126.31229385640046,55.0383563817691],[-126.34267458449258,55.049582680829914]],[[-126.63283053328584,55.3306449099475],[-126.61190177316095,55.33064051740942],[-126.60960122577903,55.316065768624064],[-126.63023604165956,55.316861856256416],[-126.65904160265774,55.31760017376107],[-126.6583945791662,55.33131342307664],[-126.63283053328584,55.3306449099475]],[[-126.72701704095535,54.423827614307726],[-126.65632808558418,54.41785004561217],[-126.59325638702124,54.43218348505791],[-126.57929629282461,54.38932367388674],[-126.59390395144787,54.36782770856442],[-126.70409980306228,54.367180569766326],[-126.73811745346164,54.355756905260286],[-126.72701704095535,54.423827614307726]],[[-126.1402970832403,54.92887701639828],[-126.20167938071802,54.9068195706424],[-126.2638026297332,54.95082451600803],[-126.2772262297025,55.01546573428812],[-126.21583407953366,55.02262739027977],[-126.1402970832403,54.92887701639828]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Bulkley-Nechako G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951053","name":"Bulkley-Nechako G"}},{"type":"Feature","geometry":{"coordinates":[[[-126.1402970832403,54.92887701639828],[-126.21583407953366,55.02262739027977],[-126.2772262297025,55.01546573428812],[-126.2638026297332,54.95082451600803],[-126.20167938071802,54.9068195706424],[-126.1402970832403,54.92887701639828]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Granisle","type":"Village","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951032","name":"Granisle"}},{"type":"Feature","geometry":{"coordinates":[[[-126.34267458449258,55.049582680829914],[-126.31229385640046,55.0383563817691],[-126.30433292762206,55.05422708823488],[-126.34267458449258,55.049582680829914]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Nedoats 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951846","name":"Nedoats 11"}},{"type":"Feature","geometry":{"coordinates":[[[-126.50135216661019,55.06198672948468],[-126.49575802554205,55.07139706298261],[-126.51961994786551,55.077360319517496],[-126.51526525170654,55.06262778507711],[-126.50135216661019,55.06198672948468]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Tadinlay 15","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951845","name":"Tadinlay 15"}},{"type":"Feature","geometry":{"coordinates":[[[-124.44068574746872,55.998926234495066],[-125.24993180652605,56.00005465786452],[-126.00105088280027,55.999537762459504],[-126.50020204960522,55.99996801792858],[-127.02431387805869,56.00010236242619],[-126.96903075527736,55.99355541402573],[-126.90105480899035,55.96408743890538],[-126.88101233397124,55.93276140491157],[-126.88494534999035,55.89651970516495],[-126.8365617107997,55.82903684514044],[-126.74389156276975,55.78315212223472],[-126.74926322523189,55.74250299875942],[-126.6568188069016,55.70926796717536],[-126.60920142070113,55.67495040909597],[-126.48090812388402,55.637883102148876],[-126.4670306855868,55.59953490635232],[-126.40230292593192,55.58200242913446],[-126.38580053921727,55.53203851472792],[-126.4072379166402,55.49837820459066],[-126.36572344616687,55.476908898638555],[-126.32000419344898,55.395761383956525],[-126.27183264840835,55.394459562847175],[-126.23588817965417,55.36756558532746],[-126.26015133550928,55.34649868300232],[-126.16791191644609,55.28984137175302],[-126.129759363606,55.233644993158286],[-126.05725118762093,55.177564298629704],[-125.99922510815709,55.16703685774035],[-126.00365418628164,55.095606014149574],[-125.99408340745101,54.97067427049521],[-126.00295885870194,54.81712155895],[-125.97544027349878,54.8054437774437],[-125.95622940079953,54.751299300640625],[-125.948308515564,54.718635868920266],[-125.90453369575933,54.67224408669616],[-125.75497798814142,54.57944580582771],[-125.7073428777039,54.53916831688668],[-125.60350029762891,54.49133935833892],[-125.48446643196405,54.45108216323979],[-125.3146834865632,54.472350411216],[-125.18926739062638,54.49694801147443],[-125.06249027787372,54.46513021044364],[-125.0514870189265,54.4350188789783],[-124.99871319441759,54.420218478092686],[-124.99989839438487,54.24994595422292],[-124.46623661605666,54.24997275507977],[-124.46597948614188,54.23261280625556],[-124.42359287498952,54.2326711712284],[-124.40030043424393,54.26944534540823],[-124.3487030668,54.26490320384495],[-124.27261528448236,54.292721430183505],[-124.19872998514364,54.29363549537199],[-123.96446209951941,54.209569006645744],[-123.8429552782792,54.19800969600612],[-123.82196017272207,54.20438009622164],[-123.74311979036692,54.18026728842362],[-123.52035758347793,54.15440078952457],[-123.5202037103741,54.17336249993221],[-123.52049399862699,54.252469343244336],[-123.55268907958853,54.27019902432937],[-123.5543916874774,54.3062449870855],[-123.644256455301,54.33012263037237],[-123.7411713387648,54.3217889438871],[-123.81941191928024,54.336532343325835],[-123.85305395526048,54.37564211651522],[-123.93342439717998,54.37982660026641],[-123.98647868544455,54.42951075580459],[-123.95244509198497,54.458758258873246],[-123.84804436236217,54.512486674075795],[-123.82171506308931,54.54419897604088],[-123.81967778450726,54.58081031829422],[-123.78005612426702,54.59261603267],[-123.77849891793468,54.65912592491066],[-123.79595130128328,54.6926591375145],[-123.84223715844092,54.69615259000771],[-123.88051867799435,54.73819645411327],[-123.94815587851816,54.76749767331634],[-123.91955737456462,54.83174271154387],[-123.92672559545032,54.86212037219982],[-124.0231156467696,54.86793856258289],[-124.05127173017844,54.95077719109827],[-123.9800822274395,55.01221021216477],[-123.90445785583921,55.01963302655549],[-123.8629821633274,55.04704962628667],[-123.81055474931047,55.03760636669538],[-123.79421195120428,54.99541572310432],[-123.69061074450404,54.92312797723365],[-123.65834127019689,54.920308230392436],[-123.61983574259433,54.95503939182061],[-123.55047147292413,54.95823794865357],[-123.51537617509376,55.01714432202903],[-123.45418932789812,55.014411624041564],[-123.41556590998316,55.032890628837436],[-123.4134534341778,55.085941585895846],[-123.39627290761216,55.10297727610549],[-123.41866114508055,55.14803339343754],[-123.39225944186192,55.17108644612918],[-123.41332591528595,55.23493057709162],[-123.49420887630228,55.313965422676524],[-123.53456457196849,55.32746199135545],[-123.56850672923761,55.31275974960865],[-123.64589303958847,55.30652898284802],[-123.74207794544618,55.287507088298575],[-123.79717176360279,55.3244556076937],[-123.85178867655003,55.339533476428215],[-123.8749721326606,55.40024087021315],[-123.90675806713601,55.4290752040411],[-123.8845121849574,55.503715095565454],[-123.92837814181846,55.55437952745788],[-124.05035329167046,55.5413167596998],[-124.09262898216477,55.5688139599082],[-124.12301102811315,55.63971952572078],[-124.19229073060059,55.68315440054483],[-124.26715092775511,55.68661339761396],[-124.30833268413646,55.705863720104055],[-124.35726747652389,55.78670896239254],[-124.33361620127224,55.83215662572685],[-124.37402457896972,55.8789788510207],[-124.39912690529853,55.950548524241846],[-124.4315819392136,55.95481746297988],[-124.44068574746872,55.998926234495066]],[[-126.0340838724929,55.31637352410345],[-126.03583674032286,55.323579006174754],[-126.02201547993252,55.32458618608785],[-126.02111671806445,55.31723453188389],[-126.0340838724929,55.31637352410345]],[[-125.95697514457771,55.48155740606382],[-125.95778820186854,55.4768824448515],[-125.97566577716765,55.485158079175726],[-125.95646508057717,55.484489817822784],[-125.95697514457771,55.48155740606382]],[[-124.40508365208976,54.427649672338866],[-124.38599167543447,54.416231817559726],[-124.40584996972109,54.41626796817605],[-124.40508365208976,54.427649672338866]],[[-125.07937850109144,54.60806486698505],[-125.05982809311804,54.6087079025207],[-125.053167530959,54.596581398980845],[-125.07939691391921,54.59864443365068],[-125.07937850109144,54.60806486698505]],[[-124.54048034711428,54.56649296723186],[-124.52331768324835,54.575897317967836],[-124.47212998689673,54.576229048280354],[-124.47284344058235,54.557871256762525],[-124.51529963708408,54.56981286060989],[-124.54048034711428,54.56649296723186]],[[-125.16183344568076,54.88280847666902],[-125.10465250868124,54.88830416956224],[-125.11504492915672,54.86853938471585],[-125.16183344568076,54.88280847666902]],[[-124.75372604404905,54.649344723411616],[-124.78178153805686,54.676638118604195],[-124.73404956804421,54.676501034393034],[-124.75372604404905,54.649344723411616]],[[-124.25714436354922,54.43942314011843],[-124.23483291102411,54.5003772743148],[-124.19339822520547,54.47519426861736],[-124.19169372288668,54.47514632907096],[-124.19292295075212,54.467750663756476],[-124.20201216865895,54.46770317534567],[-124.2310438592373,54.438815640584835],[-124.2310301113643,54.42451703858563],[-124.26743108522568,54.424892437516206],[-124.25714436354922,54.43942314011843]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Bulkley-Nechako C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951015","name":"Bulkley-Nechako C"}},{"type":"Feature","geometry":{"coordinates":[[[-126.0340838724929,55.31637352410345],[-126.02111671806445,55.31723453188389],[-126.02201547993252,55.32458618608785],[-126.03583674032286,55.323579006174754],[-126.0340838724929,55.31637352410345]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Tacla Lake (Ferry Landing) 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951811","name":"Tacla Lake (Ferry Landing) 9"}},{"type":"Feature","geometry":{"coordinates":[[[-126.63023604165956,55.316861856256416],[-126.60960122577903,55.316065768624064],[-126.61190177316095,55.33064051740942],[-126.63283053328584,55.3306449099475],[-126.63023604165956,55.316861856256416]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Babine 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951828","name":"Babine 6"}},{"type":"Feature","geometry":{"coordinates":[[[-126.63023604165956,55.316861856256416],[-126.63283053328584,55.3306449099475],[-126.6583945791662,55.33131342307664],[-126.65904160265774,55.31760017376107],[-126.63023604165956,55.316861856256416]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"Babine 16","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951831","name":"Babine 16"}},{"type":"Feature","geometry":{"coordinates":[[[-125.95697514457771,55.48155740606382],[-125.95646508057717,55.484489817822784],[-125.97566577716765,55.485158079175726],[-125.95778820186854,55.4768824448515],[-125.95697514457771,55.48155740606382]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Bulkley-Nechako","census_subdivision":"North Tacla Lake","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5951","census_subdivision_code":"5951848","name":"North Tacla Lake"}},{"type":"Feature","geometry":{"coordinates":[[[-123.58870541560039,48.342426797182576],[-123.61328471480094,48.345972404135395],[-123.60781755907801,48.333994662864015],[-123.58870541560039,48.342426797182576]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Becher Bay 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917809","name":"Becher Bay 1"}},{"type":"Feature","geometry":{"coordinates":[[[[-123.61683217910503,48.529124972516215],[-123.63622650320553,48.50090714672689],[-123.75065812481378,48.50080607684039],[-123.74618139101601,48.47401685001813],[-123.70671731967732,48.42810529904497],[-123.64559248170444,48.42435512747537],[-123.57483070104205,48.42590420092464],[-123.54449841627597,48.5092877825621],[-123.542328746184,48.54640161620406],[-123.50501706257214,48.55857649180564],[-123.47778643559627,48.54414406839562],[-123.45837630158229,48.55890774121735],[-123.47502051520149,48.57985236196633],[-123.50001643807104,48.575594647598145],[-123.57926329854592,48.53567663896666],[-123.61683217910503,48.529124972516215]]],[[[-123.74160828086606,48.44253244532063],[-123.74494370497614,48.41893861462423],[-123.83737541112443,48.387933859679364],[-123.86562097943855,48.40293689739657],[-123.97134071732562,48.40397532367104],[-124.0148373064394,48.43001488785127],[-124.05513381238336,48.42085158650136],[-124.13203663109952,48.3437907937099],[-123.9999999909917,48.306316676583585],[-123.99999999637296,48.29501443704716],[-123.75567936261302,48.252835790053176],[-123.50000000645352,48.2499999969407],[-123.24999999142804,48.2500000099431],[-123.2472333140235,48.28410825821093],[-123.11380916149477,48.4231177454782],[-123.15852219269507,48.45363495112075],[-123.18901178379173,48.50283690064466],[-123.3432487394353,48.503602028859646],[-123.30910781721103,48.49898096642889],[-123.28693368105534,48.449628542292096],[-123.32667491486781,48.41124637800071],[-123.39421423061935,48.41434845890026],[-123.44202315582241,48.43081612527051],[-123.4814309831388,48.39934642494329],[-123.5318709030749,48.35935622033608],[-123.54509827173904,48.307043861433925],[-123.59148984798821,48.308588165988596],[-123.58870541560039,48.342426797182576],[-123.60781755907801,48.333994662864015],[-123.61328471480094,48.345972404135395],[-123.60307392319721,48.359478847314186],[-123.62784110770205,48.37237358561108],[-123.70504862940075,48.376760464000306],[-123.70522654629704,48.341580559062976],[-123.75364514089625,48.35919602531823],[-123.75484679372732,48.36340408518526],[-123.76357453069805,48.39284177298446],[-123.727995307901,48.40271067307053],[-123.74160828086606,48.44253244532063]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Juan de Fuca (Part 1)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917054","name":"Juan de Fuca (Part 1)"}},{"type":"Feature","geometry":{"coordinates":[[[-123.75364514089625,48.35919602531823],[-123.73997880906606,48.362781076036306],[-123.74120583534645,48.36624961711818],[-123.75484679372732,48.36340408518526],[-123.75364514089625,48.35919602531823]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"T'Sou-ke","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917819","name":"T'Sou-ke"}},{"type":"Feature","geometry":{"coordinates":[[[-123.57483070104205,48.42590420092464],[-123.64559248170444,48.42435512747537],[-123.59682977711695,48.3872501702347],[-123.6098238127704,48.37082239228125],[-123.60198638519643,48.36090415301579],[-123.60307392319721,48.359478847314186],[-123.61328471480094,48.345972404135395],[-123.58870541560039,48.342426797182576],[-123.59148984798821,48.308588165988596],[-123.54509827173904,48.307043861433925],[-123.5318709030749,48.35935622033608],[-123.4814309831388,48.39934642494329],[-123.51802790584944,48.40275550056502],[-123.57483070104205,48.42590420092464]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Metchosin","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917042","name":"Metchosin"}},{"type":"Feature","geometry":{"coordinates":[[[-123.64559248170444,48.42435512747537],[-123.70671731967732,48.42810529904497],[-123.74618139101601,48.47401685001813],[-123.74160828086606,48.44253244532063],[-123.727995307901,48.40271067307053],[-123.76357453069805,48.39284177298446],[-123.75484679372732,48.36340408518526],[-123.74120583534645,48.36624961711818],[-123.73997880906606,48.362781076036306],[-123.75364514089625,48.35919602531823],[-123.70522654629704,48.341580559062976],[-123.70504862940075,48.376760464000306],[-123.62784110770205,48.37237358561108],[-123.60307392319721,48.359478847314186],[-123.60198638519643,48.36090415301579],[-123.6098238127704,48.37082239228125],[-123.59682977711695,48.3872501702347],[-123.64559248170444,48.42435512747537]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Sooke","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917052","name":"Sooke"}},{"type":"Feature","geometry":{"coordinates":[[[-123.46808607923005,48.44915086518174],[-123.51382752976018,48.436474878204514],[-123.51802790584944,48.40275550056502],[-123.4814309831388,48.39934642494329],[-123.44202315582241,48.43081612527051],[-123.46808607923005,48.44915086518174]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Colwood","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917041","name":"Colwood"}},{"type":"Feature","geometry":{"coordinates":[[[-123.32667491486781,48.41124637800071],[-123.32235531477309,48.433541951661674],[-123.34809267795754,48.45047751942535],[-123.39193939027643,48.44259012014102],[-123.39421423061935,48.41434845890026],[-123.32667491486781,48.41124637800071]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Victoria","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917034","name":"Victoria"}},{"type":"Feature","geometry":{"coordinates":[[[-123.32667491486781,48.41124637800071],[-123.28693368105534,48.449628542292096],[-123.32235531477309,48.433541951661674],[-123.32667491486781,48.41124637800071]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Oak Bay","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917030","name":"Oak Bay"}},{"type":"Feature","geometry":{"coordinates":[[[-123.39193939027643,48.44259012014102],[-123.42315598892016,48.452050907624084],[-123.42475053446003,48.45103194617263],[-123.41235505389315,48.44659132030083],[-123.43189462149228,48.43942387437356],[-123.44202315582241,48.43081612527051],[-123.39421423061935,48.41434845890026],[-123.39193939027643,48.44259012014102]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Esquimalt - District municipality","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917040","name":"Esquimalt - District municipality"}},{"type":"Feature","geometry":{"coordinates":[[[-123.42660349818937,48.44655279950042],[-123.43158692312355,48.44195401202079],[-123.42660940364554,48.441676158141],[-123.42660349818937,48.44655279950042]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Esquimalt - Indian reserve","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917811","name":"Esquimalt - Indian reserve"}},{"type":"Feature","geometry":{"coordinates":[[[-123.43189462149228,48.43942387437356],[-123.41235505389315,48.44659132030083],[-123.42475053446003,48.45103194617263],[-123.42660349818937,48.44655279950042],[-123.42660940364554,48.441676158141],[-123.43158692312355,48.44195401202079],[-123.43189462149228,48.43942387437356]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"New Songhees 1A","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917812","name":"New Songhees 1A"}},{"type":"Feature","geometry":{"coordinates":[[[-123.54449841627597,48.5092877825621],[-123.57483070104205,48.42590420092464],[-123.51802790584944,48.40275550056502],[-123.51382752976018,48.436474878204514],[-123.46808607923005,48.44915086518174],[-123.49751250468182,48.47549969825094],[-123.53432919894193,48.47872413335358],[-123.54449841627597,48.5092877825621]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Langford","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917044","name":"Langford"}},{"type":"Feature","geometry":{"coordinates":[[[-123.45650320654617,48.49350598381984],[-123.49751250468182,48.47549969825094],[-123.46808607923005,48.44915086518174],[-123.44202315582241,48.43081612527051],[-123.43189462149228,48.43942387437356],[-123.43158692312355,48.44195401202079],[-123.42660349818937,48.44655279950042],[-123.42475053446003,48.45103194617263],[-123.42315598892016,48.452050907624084],[-123.45650320654617,48.49350598381984]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"View Royal","type":"Town","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917047","name":"View Royal"}},{"type":"Feature","geometry":{"coordinates":[[[-123.45837630158229,48.55890774121735],[-123.47778643559627,48.54414406839562],[-123.45650320654617,48.49350598381984],[-123.42315598892016,48.452050907624084],[-123.39193939027643,48.44259012014102],[-123.34809267795754,48.45047751942535],[-123.32235531477309,48.433541951661674],[-123.28693368105534,48.449628542292096],[-123.30910781721103,48.49898096642889],[-123.3432487394353,48.503602028859646],[-123.35984048394104,48.55052542123466],[-123.45837630158229,48.55890774121735]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Saanich","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917021","name":"Saanich"}},{"type":"Feature","geometry":{"coordinates":[[[-123.47778643559627,48.54414406839562],[-123.50501706257214,48.55857649180564],[-123.542328746184,48.54640161620406],[-123.54449841627597,48.5092877825621],[-123.53432919894193,48.47872413335358],[-123.49751250468182,48.47549969825094],[-123.45650320654617,48.49350598381984],[-123.47778643559627,48.54414406839562]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Highlands","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917049","name":"Highlands"}},{"type":"Feature","geometry":{"coordinates":[[[-123.87606533365859,48.639016789816154],[-123.90603272531985,48.64532717783776],[-124.02264589097673,48.64424255647428],[-124.11365974415955,48.64981610513683],[-124.14217261925623,48.63572586855545],[-124.20030293438552,48.65608942864361],[-124.28005455408457,48.72120522510569],[-124.28083156972525,48.680744763990894],[-124.35685530281941,48.68074967125541],[-124.41369576251462,48.66568575333687],[-124.41268437465112,48.636857335227056],[-124.49018407105999,48.63414158742663],[-124.49858288926463,48.592120307490596],[-124.49948608764566,48.500000668282446],[-124.3795967383732,48.441117958757836],[-124.27629547623133,48.38457929094298],[-124.13203663109952,48.3437907937099],[-124.05513381238336,48.42085158650136],[-124.0148373064394,48.43001488785127],[-123.97134071732562,48.40397532367104],[-123.86562097943855,48.40293689739657],[-123.83737541112443,48.387933859679364],[-123.74494370497614,48.41893861462423],[-123.74160828086606,48.44253244532063],[-123.74618139101601,48.47401685001813],[-123.75065812481378,48.50080607684039],[-123.63622650320553,48.50090714672689],[-123.61683217910503,48.529124972516215],[-123.64568074056436,48.56196971640757],[-123.64757391132602,48.59665326679949],[-123.69289178981678,48.61645395965707],[-123.79028655014964,48.59364964546957],[-123.82103809604432,48.57498020968992],[-123.85320326028277,48.63956733649904],[-123.87606533365859,48.639016789816154]],[[-124.40101956492188,48.567612873268466],[-124.41358724118403,48.57643215866424],[-124.40159906448211,48.58498437002002],[-124.40101956492188,48.567612873268466]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Juan de Fuca (Part 2)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917056","name":"Juan de Fuca (Part 2)"}},{"type":"Feature","geometry":{"coordinates":[[[-124.40101956492188,48.567612873268466],[-124.40159906448211,48.58498437002002],[-124.41358724118403,48.57643215866424],[-124.40101956492188,48.567612873268466]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Gordon River 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917815","name":"Gordon River 2"}},{"type":"Feature","geometry":{"coordinates":[[[-123.3951587146359,48.614009777366846],[-123.4813759517707,48.61333030755881],[-123.47502051520149,48.57985236196633],[-123.45837630158229,48.55890774121735],[-123.35984048394104,48.55052542123466],[-123.36921429387615,48.600321172174276],[-123.3951587146359,48.614009777366846]],[[-123.46464135135186,48.59019995597074],[-123.44370748975427,48.59071272402538],[-123.4443599838314,48.58142818203462],[-123.4658377630096,48.583041865646614],[-123.46464135135186,48.59019995597074]],[[-123.40350029915344,48.59332664106199],[-123.3908890218282,48.5940475413716],[-123.3712535130214,48.582833227279345],[-123.40344455402007,48.58327789805774],[-123.40350029915344,48.59332664106199]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Central Saanich","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917015","name":"Central Saanich"}},{"type":"Feature","geometry":{"coordinates":[[[-123.46464135135186,48.59019995597074],[-123.4658377630096,48.583041865646614],[-123.4443599838314,48.58142818203462],[-123.44370748975427,48.59071272402538],[-123.46464135135186,48.59019995597074]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"South Saanich 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917804","name":"South Saanich 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.40350029915344,48.59332664106199],[-123.40344455402007,48.58327789805774],[-123.3712535130214,48.582833227279345],[-123.3908890218282,48.5940475413716],[-123.40350029915344,48.59332664106199]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"East Saanich 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917803","name":"East Saanich 2"}},{"type":"Feature","geometry":{"coordinates":[[[-123.46562414463041,48.62626096020762],[-123.47141791576202,48.61587395887392],[-123.44371652670567,48.615799911664695],[-123.44414481980206,48.63001390480051],[-123.46562414463041,48.62626096020762]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Cole Bay 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917801","name":"Cole Bay 3"}},{"type":"Feature","geometry":{"coordinates":[[[-123.40737399503259,48.6721733317843],[-123.44597512171177,48.7003052540017],[-123.48986086764293,48.67119208284542],[-123.44725363087669,48.654494735947594],[-123.4813759517707,48.61333030755881],[-123.3951587146359,48.614009777366846],[-123.40204372196015,48.63397544674875],[-123.40737399503259,48.6721733317843]],[[-123.45567815040327,48.665515067571164],[-123.44404820550521,48.66618181284864],[-123.4441258892104,48.66266809340844],[-123.4507303157126,48.66270668316101],[-123.45567815040327,48.665515067571164]],[[-123.46562414463041,48.62626096020762],[-123.44414481980206,48.63001390480051],[-123.44371652670567,48.615799911664695],[-123.47141791576202,48.61587395887392],[-123.46562414463041,48.62626096020762]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"North Saanich","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917005","name":"North Saanich"}},{"type":"Feature","geometry":{"coordinates":[[[-123.40204372196015,48.63397544674875],[-123.38836940068074,48.66211127836187],[-123.40737399503259,48.6721733317843],[-123.40204372196015,48.63397544674875]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Sidney","type":"Town","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917010","name":"Sidney"}},{"type":"Feature","geometry":{"coordinates":[[[-123.45567815040327,48.665515067571164],[-123.4507303157126,48.66270668316101],[-123.4441258892104,48.66266809340844],[-123.44404820550521,48.66618181284864],[-123.45567815040327,48.665515067571164]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Union Bay 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917802","name":"Union Bay 4"}},{"type":"Feature","geometry":{"coordinates":[[[-123.35712180300476,49.00278449644885],[-123.59172665998904,49.013635710291254],[-123.63003378730417,48.981903980812],[-123.61925496548236,48.9578302826583],[-123.55221128784156,48.92884982027869],[-123.50156264454132,48.922640551909495],[-123.4085969085317,48.872461859565185],[-123.40803577245734,48.82137516632216],[-123.35637021517705,48.778030128391414],[-123.36921786338215,48.75009037503046],[-123.4180614509129,48.71475128905803],[-123.45446057189801,48.71471531979792],[-123.51105033008491,48.69537662515629],[-123.50843039311322,48.67935189349578],[-123.50001643807104,48.575594647598145],[-123.47502051520149,48.57985236196633],[-123.4813759517707,48.61333030755881],[-123.44725363087669,48.654494735947594],[-123.48986086764293,48.67119208284542],[-123.44597512171177,48.7003052540017],[-123.40737399503259,48.6721733317843],[-123.38836940068074,48.66211127836187],[-123.40204372196015,48.63397544674875],[-123.3951587146359,48.614009777366846],[-123.36921429387615,48.600321172174276],[-123.35984048394104,48.55052542123466],[-123.3432487394353,48.503602028859646],[-123.18901178379173,48.50283690064466],[-123.21797258720562,48.54745121092448],[-123.26836475914345,48.69356941963672],[-123.00849174495572,48.767100410623684],[-123.0084889621308,48.83121441992023],[-123.3185514123976,49.00006582379275],[-123.35712180300476,49.00278449644885]],[[-123.58416000865597,49.01123089291857],[-123.58242268177834,49.002578089589385],[-123.58503524862185,49.00459076175047],[-123.5876342419296,49.009200957397304],[-123.58416000865597,49.01123089291857]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Southern Gulf Islands","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917029","name":"Southern Gulf Islands"}},{"type":"Feature","geometry":{"coordinates":[[[-123.51105033008491,48.69537662515629],[-123.45446057189801,48.71471531979792],[-123.4180614509129,48.71475128905803],[-123.36921786338215,48.75009037503046],[-123.35637021517705,48.778030128391414],[-123.40803577245734,48.82137516632216],[-123.4085969085317,48.872461859565185],[-123.50156264454132,48.922640551909495],[-123.55221128784156,48.92884982027869],[-123.61925496548236,48.9578302826583],[-123.61240348090064,48.91913285431101],[-123.6251055833822,48.889467091941704],[-123.5773960840505,48.84602324813181],[-123.57515756454994,48.82030494465153],[-123.55915681024767,48.80459648761545],[-123.55289269818824,48.77824848748899],[-123.57084339136854,48.76624146072083],[-123.53390610373343,48.725787805713814],[-123.51105033008491,48.69537662515629]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Saltspring Island","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917027","name":"Saltspring Island"}},{"type":"Feature","geometry":{"coordinates":[[[-123.58416000865597,49.01123089291857],[-123.5876342419296,49.009200957397304],[-123.58503524862185,49.00459076175047],[-123.58242268177834,49.002578089589385],[-123.58416000865597,49.01123089291857]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Capital","census_subdivision":"Galiano Island 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5917","census_subdivision_code":"5917805","name":"Galiano Island 9"}},{"type":"Feature","geometry":{"coordinates":[[[-124.10490414124165,51.41110442379957],[-124.12491332822026,51.41623983885483],[-124.11975842383063,51.40857065794117],[-124.10490414124165,51.41110442379957]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Chilco Lake 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941828","name":"Chilco Lake 1"}},{"type":"Feature","geometry":{"coordinates":[[[-124.07891410663923,51.420265186448596],[-124.07868888873084,51.41295458365458],[-124.06207113387902,51.4139306053969],[-124.06306894878868,51.42077223193804],[-124.07891410663923,51.420265186448596]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Lezbye 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941876","name":"Lezbye 6"}},{"type":"Feature","geometry":{"coordinates":[[[-124.05644720208167,51.42880696609407],[-124.12491332822026,51.41623983885483],[-124.10490414124165,51.41110442379957],[-124.07891410663923,51.420265186448596],[-124.06306894878868,51.42077223193804],[-124.05630301975539,51.42481687982414],[-124.05644720208167,51.42880696609407]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Chilco Lake 1A","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941829","name":"Chilco Lake 1A"}},{"type":"Feature","geometry":{"coordinates":[[[-124.05630301975539,51.42481687982414],[-124.04489339637568,51.42496869823858],[-124.04441242070253,51.44648688556643],[-124.05622347513639,51.44644543978883],[-124.05644720208167,51.42880696609407],[-124.05630301975539,51.42481687982414]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Garden","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941884","name":"Garden"}},{"type":"Feature","geometry":{"coordinates":[[[-123.9457219552726,51.46329782779071],[-123.92545589520537,51.46112418861021],[-123.92563165182807,51.47633745105001],[-123.94666240208072,51.47689440410865],[-123.9457219552726,51.46329782779071]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Lohbiee 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941808","name":"Lohbiee 3"}},{"type":"Feature","geometry":{"coordinates":[[[-123.83360664758588,51.48599721599271],[-123.84570443203481,51.48223947134164],[-123.84559853766022,51.47341969310267],[-123.83090641149894,51.47389987933871],[-123.83360664758588,51.48599721599271]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Tanakut 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941831","name":"Tanakut 4"}},{"type":"Feature","geometry":{"coordinates":[[[-122.17903912864374,51.516110266458504],[-122.17911171845053,51.5444462328211],[-122.29164348130861,51.55293902365157],[-122.28191759619304,51.51887000435118],[-122.17903912864374,51.516110266458504]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Canoe Creek 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941804","name":"Canoe Creek 3"}},{"type":"Feature","geometry":{"coordinates":[[[-120.55841504442225,51.66454835674849],[-120.65733537951952,51.664628830127384],[-120.66083523552447,51.71720744791095],[-120.68013805388824,51.73407858366705],[-120.7792218336186,51.732931458452896],[-120.78092602603698,51.692237813653854],[-121.04530058413512,51.68904893436567],[-121.07453281077423,51.66173848066534],[-121.21403483050146,51.66099028303769],[-121.23475823720597,51.64806748475239],[-121.23514741228747,51.62878295799735],[-121.29008678977576,51.59944418859024],[-121.27807216630532,51.568224185916336],[-121.27661851536045,51.379857793924074],[-121.17179210642696,51.430894255888425],[-121.13384203317229,51.439629720604636],[-121.0017202573667,51.429060077880074],[-120.9483287205719,51.445102190586596],[-120.8334670298005,51.435158628884835],[-120.56072881186645,51.43461791161262],[-120.55841504442225,51.66454835674849]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo L","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941017","name":"Cariboo L"}},{"type":"Feature","geometry":{"coordinates":[[[-122.21621841901478,51.59123906851491],[-122.21156821647673,51.58280294130104],[-122.1936833086951,51.58296518455785],[-122.19406189243495,51.59125795323401],[-122.21621841901478,51.59123906851491]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Dog Creek 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941806","name":"Dog Creek 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.07924740417685,51.59872366678021],[-122.1054125356918,51.60108039516673],[-122.10566689687364,51.59016313429177],[-122.0797277362976,51.589704887056435],[-122.07924740417685,51.59872366678021]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Dog Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941807","name":"Dog Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.28043263075182,51.675895522111496],[-121.30378055718421,51.665646293864995],[-121.39632850696192,51.66498763158896],[-121.35907094225982,51.63909175841056],[-121.36016711068868,51.611413576079016],[-121.29008678977576,51.59944418859024],[-121.23514741228747,51.62878295799735],[-121.23475823720597,51.64806748475239],[-121.28043263075182,51.675895522111496]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"One Hundred Mile House","type":"District municipality","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941005","name":"One Hundred Mile House"}},{"type":"Feature","geometry":{"coordinates":[[[-121.12570046180036,51.74025615058453],[-121.12705193449288,51.74663354818311],[-121.13763621161934,51.746592128266556],[-121.1363123079254,51.73985033966079],[-121.12570046180036,51.74025615058453]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Canim Lake 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941813","name":"Canim Lake 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.20399219545946,51.99232377661521],[-121.21035459979069,52.07086901285966],[-121.55551877890844,52.080391601270605],[-121.5549312283226,51.99194381307584],[-121.8294739972315,51.99224779662682],[-121.83896407541125,51.98555110700279],[-121.83577249147686,51.8758187346776],[-121.9781360244479,51.87556377612523],[-121.97877671563596,51.73217845153904],[-121.95504477690719,51.73186089745185],[-121.94103842675153,51.63976940878309],[-121.94636410065043,51.5170016062985],[-121.88572777364531,51.51784655288858],[-121.88589267595658,51.56613312607204],[-121.63108047730725,51.564048309204416],[-121.63049759542757,51.54738354247066],[-121.52662721583955,51.547723999183354],[-121.52514210501123,51.451053301569914],[-121.42616168787305,51.43670319887458],[-121.42064190445292,51.37755958808855],[-121.27661851536045,51.379857793924074],[-121.27807216630532,51.568224185916336],[-121.29008678977576,51.59944418859024],[-121.36016711068868,51.611413576079016],[-121.35907094225982,51.63909175841056],[-121.39632850696192,51.66498763158896],[-121.30378055718421,51.665646293864995],[-121.28043263075182,51.675895522111496],[-121.23278296180382,51.700674710654496],[-121.23508343346666,51.76299958017008],[-121.20935911197624,51.762990438387185],[-121.21010807198299,51.98858335397444],[-121.20399219545946,51.99232377661521]],[[-121.57925044294282,51.848846563482816],[-121.58130811466462,51.84805326065172],[-121.58212798451987,51.849817432300256],[-121.57919701441065,51.84999026077819],[-121.57925044294282,51.848846563482816]],[[-121.4762150495983,51.79713096373178],[-121.47158221064426,51.79645846404491],[-121.46972601997972,51.79462952203592],[-121.47624847783607,51.79432883397342],[-121.4762150495983,51.79713096373178]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941015","name":"Cariboo G"}},{"type":"Feature","geometry":{"coordinates":[[[-120.9207238227141,51.76827248327568],[-120.92263552742199,51.78651984260811],[-121.03749738471633,51.78851497533358],[-121.037759517965,51.76738352460728],[-120.9207238227141,51.76827248327568]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Canim Lake 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941802","name":"Canim Lake 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.23518654533142,51.794299916406175],[-122.24771962239986,51.784277957201056],[-122.20553764033063,51.78509469622604],[-122.20447070892828,51.79378226196976],[-122.23518654533142,51.794299916406175]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Alkali Lake 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941801","name":"Alkali Lake 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.4762150495983,51.79713096373178],[-121.47624847783607,51.79432883397342],[-121.46972601997972,51.79462952203592],[-121.47158221064426,51.79645846404491],[-121.4762150495983,51.79713096373178]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Canim Lake 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941803","name":"Canim Lake 4"}},{"type":"Feature","geometry":{"coordinates":[[[-122.11033831283618,51.81957619400072],[-122.08328562850588,51.81489994183645],[-122.08424694739351,51.82613657925125],[-122.10968374152307,51.82520064363679],[-122.11033831283618,51.81957619400072]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Sandy Harry 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941868","name":"Sandy Harry 4"}},{"type":"Feature","geometry":{"coordinates":[[[-122.10968374152307,51.82520064363679],[-122.13561135424257,51.82572582332784],[-122.13601069893481,51.82194973397264],[-122.11033831283618,51.81957619400072],[-122.10968374152307,51.82520064363679]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Alkali Lake 4A","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941873","name":"Alkali Lake 4A"}},{"type":"Feature","geometry":{"coordinates":[[[-122.06482148851077,52.11537150225631],[-122.11764925999806,52.099764880576416],[-122.17049575661602,52.11451357087217],[-122.19196052644276,52.15160425777931],[-122.27238504659175,52.157696219633046],[-122.28439620262874,52.10635209996623],[-122.26509955052721,52.01427528260669],[-122.27881159472307,51.92178461451198],[-122.3288950053287,51.88503708540029],[-122.39600469084148,51.88019910210223],[-122.4057961108391,51.79297620489097],[-122.39353059958326,51.72880559198499],[-122.35988110228242,51.6916053012777],[-122.29373720151288,51.58406751029568],[-122.29164348130861,51.55293902365157],[-122.17911171845053,51.5444462328211],[-122.17903912864374,51.516110266458504],[-121.94636410065043,51.5170016062985],[-121.94103842675153,51.63976940878309],[-121.95504477690719,51.73186089745185],[-121.97877671563596,51.73217845153904],[-121.9781360244479,51.87556377612523],[-121.83577249147686,51.8758187346776],[-121.83896407541125,51.98555110700279],[-121.98840120296323,52.0877822680049],[-122.02908101559964,52.10836902000352],[-122.06482148851077,52.11537150225631]],[[-122.10496885115822,51.84119455638649],[-122.12304424155843,51.837428040922894],[-122.12407555274108,51.84530723690877],[-122.10496885115822,51.84119455638649]],[[-122.21621841901478,51.59123906851491],[-122.19406189243495,51.59125795323401],[-122.1936833086951,51.58296518455785],[-122.21156821647673,51.58280294130104],[-122.21621841901478,51.59123906851491]],[[-122.07924740417685,51.59872366678021],[-122.0797277362976,51.589704887056435],[-122.10566689687364,51.59016313429177],[-122.1054125356918,51.60108039516673],[-122.07924740417685,51.59872366678021]],[[-122.23518654533142,51.794299916406175],[-122.20447070892828,51.79378226196976],[-122.20553764033063,51.78509469622604],[-122.24771962239986,51.784277957201056],[-122.23518654533142,51.794299916406175]],[[-122.1813716322155,51.842319583474236],[-122.15465897604962,51.84310840837163],[-122.15692153965702,51.828242309284526],[-122.18462497519344,51.82804495373016],[-122.1813716322155,51.842319583474236]],[[-122.11033831283618,51.81957619400072],[-122.13601069893481,51.82194973397264],[-122.13561135424257,51.82572582332784],[-122.10968374152307,51.82520064363679],[-122.08424694739351,51.82613657925125],[-122.08328562850588,51.81489994183645],[-122.11033831283618,51.81957619400072]],[[-122.07364685567427,51.85400962205094],[-122.10139282499102,51.84169496978689],[-122.10810197471325,51.86142642328158],[-122.07364685567427,51.85400962205094]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941012","name":"Cariboo E"}},{"type":"Feature","geometry":{"coordinates":[[[-122.1813716322155,51.842319583474236],[-122.18462497519344,51.82804495373016],[-122.15692153965702,51.828242309284526],[-122.15465897604962,51.84310840837163],[-122.1813716322155,51.842319583474236]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Johny Sticks 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941811","name":"Johny Sticks 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.10496885115822,51.84119455638649],[-122.12407555274108,51.84530723690877],[-122.12304424155843,51.837428040922894],[-122.10496885115822,51.84119455638649]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Swan Lake 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941872","name":"Swan Lake 3"}},{"type":"Feature","geometry":{"coordinates":[[[-121.57925044294282,51.848846563482816],[-121.57919701441065,51.84999026077819],[-121.58212798451987,51.849817432300256],[-121.58130811466462,51.84805326065172],[-121.57925044294282,51.848846563482816]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Windy Mouth 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941855","name":"Windy Mouth 7"}},{"type":"Feature","geometry":{"coordinates":[[[-122.07364685567427,51.85400962205094],[-122.10810197471325,51.86142642328158],[-122.10139282499102,51.84169496978689],[-122.07364685567427,51.85400962205094]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Little Springs","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941885","name":"Little Springs"}},{"type":"Feature","geometry":{"coordinates":[[[-122.43578840493426,52.503099829535884],[-122.6827421804453,52.5073863460868],[-123.30627708494309,52.50102409791379],[-123.99743106715047,52.501379369766624],[-123.99640258246576,52.315600405563494],[-123.9397367818153,52.301065792386694],[-123.88553148490844,52.24297369757448],[-123.86172909632879,52.23184730485345],[-123.82645030918133,52.18149910131333],[-123.79014420421582,52.18517498387761],[-123.69359450878878,52.1406798062548],[-123.67593928488466,52.10406059027928],[-123.61638115375797,52.07699356464181],[-123.55051545907395,52.06814646712864],[-123.60966841068468,52.02852050430073],[-123.6922955081011,51.99328505754491],[-123.6627130111207,51.953626989457675],[-123.69733009657634,51.89358661320096],[-123.68926250679466,51.85281288214932],[-123.65790230554883,51.804654607751445],[-123.65334348990356,51.74594600303726],[-123.69687961566054,51.72257179758121],[-123.72134878795333,51.681312492373785],[-123.74959211116315,51.6690779013375],[-123.72798370367062,51.59387460357663],[-123.67434227727985,51.52105189541682],[-123.7081769845125,51.46979739223875],[-123.67143411784109,51.44040610250432],[-123.63392547362275,51.38683009384811],[-123.60994930154678,51.309627686879004],[-123.58644890183719,51.277780395376986],[-123.58661272363831,51.2022609984444],[-123.54800800106068,51.160390088008455],[-123.38821907063631,51.109564943207296],[-123.27034002701131,51.08076768837137],[-123.24928221089621,51.04395478479966],[-123.18232472971822,51.07226538199047],[-123.14672119896261,51.122734879266034],[-123.0503195907154,51.14979490641802],[-123.05912350276417,51.1809807344938],[-123.0331586060811,51.200650940824076],[-122.90525868681141,51.183901831452424],[-122.82251969193076,51.14478608660905],[-122.776047973392,51.13761980002479],[-122.74303417989832,51.15911070513172],[-122.67518651543212,51.09865077284866],[-122.61844850494086,51.081196655137816],[-122.57939323298861,51.10340704122752],[-122.60249606993426,51.14257250420993],[-122.58977054870192,51.176625687598296],[-122.53027091901271,51.20918626290719],[-122.5713395706734,51.24758789948112],[-122.63085889893698,51.24876105560507],[-122.67488330730598,51.274371491466155],[-122.61341879613394,51.37255389773207],[-122.62411995115298,51.41721146621181],[-122.55938225957765,51.43544439106777],[-122.55971132420387,51.485122839964276],[-122.46919384629817,51.48211836084817],[-122.42758823563683,51.509859060856556],[-122.33078893409925,51.524138252773355],[-122.28191759619304,51.51887000435118],[-122.29164348130861,51.55293902365157],[-122.29373720151288,51.58406751029568],[-122.35988110228242,51.6916053012777],[-122.39353059958326,51.72880559198499],[-122.4057961108391,51.79297620489097],[-122.39600469084148,51.88019910210223],[-122.3288950053287,51.88503708540029],[-122.27881159472307,51.92178461451198],[-122.26509955052721,52.01427528260669],[-122.28439620262874,52.10635209996623],[-122.27238504659175,52.157696219633046],[-122.27976788934903,52.2194970052904],[-122.26396322064474,52.253921599695104],[-122.28883398287647,52.29693699003503],[-122.28944602228339,52.34111449794853],[-122.37449641945739,52.36232809474892],[-122.43578840493426,52.503099829535884]],[[-122.5441741248743,51.99088981791431],[-122.56638078153269,51.99123537706313],[-122.56556446441891,52.0032787372102],[-122.5432350576747,52.00284229375648],[-122.5441741248743,51.99088981791431]],[[-123.23505261436267,52.11671072268046],[-123.22448281278882,52.09555808064425],[-123.24946619606604,52.10271011360915],[-123.23505261436267,52.11671072268046]],[[-123.17194558744433,51.96063324088859],[-123.14504909888836,51.95683071142714],[-123.11255728266872,51.911257721781936],[-123.171133635597,51.91121496517285],[-123.17194558744433,51.96063324088859]],[[-122.4921685630362,51.90005706321359],[-122.5193248236661,51.94212411208136],[-122.44869431081115,51.94163690652454],[-122.45000868476227,51.89939918178311],[-122.4921685630362,51.90005706321359]],[[-123.23151621115767,52.053939683365506],[-123.13002208157612,52.05432329751586],[-123.12894106437099,51.98740090482107],[-123.16892021347132,51.99653287831352],[-123.23204810770152,52.03530192546069],[-123.23151621115767,52.053939683365506]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo K","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941041","name":"Cariboo K"}},{"type":"Feature","geometry":{"coordinates":[[[-120.38754754617437,52.13744511708389],[-120.8861902929239,52.135930057539994],[-120.88371530878416,51.99160843277153],[-121.20399219545946,51.99232377661521],[-121.21010807198299,51.98858335397444],[-121.20935911197624,51.762990438387185],[-121.23508343346666,51.76299958017008],[-121.23278296180382,51.700674710654496],[-121.28043263075182,51.675895522111496],[-121.23475823720597,51.64806748475239],[-121.21403483050146,51.66099028303769],[-121.07453281077423,51.66173848066534],[-121.04530058413512,51.68904893436567],[-120.78092602603698,51.692237813653854],[-120.7792218336186,51.732931458452896],[-120.68013805388824,51.73407858366705],[-120.66083523552447,51.71720744791095],[-120.65733537951952,51.664628830127384],[-120.55841504442225,51.66454835674849],[-120.5442337906107,51.66958069676481],[-120.45935552901456,51.70988075512815],[-120.39127080532734,51.70400897362374],[-120.33852336049962,51.732974919447656],[-120.34992458604668,51.752667313278074],[-120.32155884665531,51.78372446482908],[-120.31952507458452,51.819912552724425],[-120.27578179540981,51.83219694151357],[-120.22664968764181,51.82542980589349],[-120.22396288941343,51.86659424705926],[-120.27316147090343,51.89260567680543],[-120.2502757088437,51.94025309367445],[-120.3300115266359,51.99507467684202],[-120.30579458203157,52.012912507185],[-120.31678271330632,52.064339160068236],[-120.29367224148528,52.08261658717435],[-120.34744252903576,52.155816629126235],[-120.38754754617437,52.13744511708389]],[[-121.12570046180036,51.74025615058453],[-121.1363123079254,51.73985033966079],[-121.13763621161934,51.746592128266556],[-121.12705193449288,51.74663354818311],[-121.12570046180036,51.74025615058453]],[[-120.9207238227141,51.76827248327568],[-121.037759517965,51.76738352460728],[-121.03749738471633,51.78851497533358],[-120.92263552742199,51.78651984260811],[-120.9207238227141,51.76827248327568]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo H","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941016","name":"Cariboo H"}},{"type":"Feature","geometry":{"coordinates":[[[-122.4921685630362,51.90005706321359],[-122.45000868476227,51.89939918178311],[-122.44869431081115,51.94163690652454],[-122.5193248236661,51.94212411208136],[-122.4921685630362,51.90005706321359]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Toosey 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941850","name":"Toosey 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.17194558744433,51.96063324088859],[-123.171133635597,51.91121496517285],[-123.11255728266872,51.911257721781936],[-123.14504909888836,51.95683071142714],[-123.17194558744433,51.96063324088859]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Stone 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941841","name":"Stone 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.5441741248743,51.99088981791431],[-122.5432350576747,52.00284229375648],[-122.56556446441891,52.0032787372102],[-122.56638078153269,51.99123537706313],[-122.5441741248743,51.99088981791431]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Baptiste Meadow 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941849","name":"Baptiste Meadow 2"}},{"type":"Feature","geometry":{"coordinates":[[[-123.23151621115767,52.053939683365506],[-123.23204810770152,52.03530192546069],[-123.16892021347132,51.99653287831352],[-123.12894106437099,51.98740090482107],[-123.13002208157612,52.05432329751586],[-123.23151621115767,52.053939683365506]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Anahim's Flat 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941821","name":"Anahim's Flat 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.23505261436267,52.11671072268046],[-123.24946619606604,52.10271011360915],[-123.22448281278882,52.09555808064425],[-123.23505261436267,52.11671072268046]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Anahim's Meadow","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941883","name":"Anahim's Meadow"}},{"type":"Feature","geometry":{"coordinates":[[[-121.98840120296323,52.0877822680049],[-121.95402939071636,52.11804048515545],[-122.02934507242107,52.124268394313965],[-122.02908101559964,52.10836902000352],[-121.98840120296323,52.0877822680049]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Williams Lake 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941812","name":"Williams Lake 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.00033476542127,53.000282401289816],[-125.7508057492116,53.00039502033532],[-126.249703418515,53.000086831037976],[-126.60910991847187,53.00027962116089],[-126.6460628730723,52.9419256960442],[-126.5977598826983,52.91348365187543],[-126.58734841708925,52.87938137640959],[-126.63919710165801,52.846008621547206],[-126.60111948731556,52.81297915973887],[-126.55351406805534,52.81525261858884],[-126.5302796867322,52.775151521139136],[-126.41615760962871,52.79422956804581],[-126.33565614945125,52.829532509575856],[-126.33353332240911,52.75160063357048],[-126.36112167277784,52.706934242475285],[-126.41138912897408,52.688856521165285],[-126.44567406918718,52.65416824778073],[-126.41048459245917,52.59322791035469],[-126.35884190165248,52.53504940125863],[-126.31798781165791,52.518335917733],[-126.27040579190992,52.541211112972576],[-126.22007345273839,52.49629532264844],[-126.19778243735541,52.49996820553183],[-126.13602534040112,52.57691345691149],[-126.08418432977926,52.59170520962176],[-126.04678464313517,52.581572726770595],[-125.98799414203098,52.6193019655404],[-125.88492910903965,52.628168921176766],[-125.85056860904163,52.576747020876915],[-125.79935912825837,52.52523375669548],[-125.75409549418777,52.50795023384664],[-125.73517764311802,52.47983875126089],[-125.62045876803441,52.51115192801753],[-125.53013695937129,52.49701324396757],[-125.45601831964863,52.47154138247754],[-125.48938222094937,52.43196509971716],[-125.46641476310292,52.398774617864234],[-125.42969316276698,52.404512638651276],[-125.35864715049296,52.38069414606079],[-125.34371562113631,52.34494182439657],[-125.3828098102662,52.32956318244654],[-125.43940268730785,52.276159461942996],[-125.47746974876188,52.28009560524301],[-125.50266766064097,52.22926205387739],[-125.45135843865236,52.20455320444736],[-125.48272764980854,52.17755367674965],[-125.5992242699103,52.15846994266355],[-125.66884336766145,52.122034349207574],[-125.65909722623113,52.06056285341237],[-125.57960170978929,52.05557332008385],[-125.61632122050058,51.98786005530697],[-125.58584579617718,51.95166764150104],[-125.5752915616659,51.913363220227716],[-125.48747494152117,51.915820482757795],[-125.50132089856974,51.87841562338193],[-125.42781247497696,51.841795533290146],[-125.37945561966197,51.7893275378019],[-125.2547145578096,51.765080665151245],[-125.25654760214688,51.72323051253667],[-125.23288209994813,51.640487318108406],[-125.2920231577417,51.6093305128626],[-125.29603158045298,51.589394858995284],[-125.23789230389853,51.572068734946896],[-125.26323318995395,51.552143976943746],[-125.25229175902633,51.52687237254429],[-125.28899033051033,51.504829285405435],[-125.28956318517386,51.475600352361205],[-125.32693638093639,51.45364512085922],[-125.33856416051238,51.4090546806275],[-125.26666799255864,51.37685835117752],[-125.2510043459237,51.393740654261244],[-125.1771115835742,51.39857993897598],[-125.13118588449427,51.364069327746215],[-125.00900702949681,51.34971769623187],[-124.96529312931656,51.328250530363235],[-124.88787485614019,51.33039189594755],[-124.79976342171618,51.30542415964032],[-124.76203153469957,51.238223843384816],[-124.5808260539096,51.181084987398926],[-124.54480489931305,51.17954292167599],[-124.43378308315984,51.14839911071161],[-124.40248995359144,51.188115045080984],[-124.35088365988182,51.14692466809792],[-124.29731995627125,51.13743392124945],[-124.24527098416738,51.14852771734544],[-124.18532611043514,51.13529324129548],[-124.1552040243606,51.036632669892114],[-124.08714760676375,51.00969932361545],[-124.05994498581431,50.958892056702105],[-124.0276964735825,50.94437187795774],[-123.99579815672352,50.96271144263831],[-123.9366551480512,50.93618494589851],[-123.88187565262668,50.94860085447902],[-123.75821747490323,50.88346399214995],[-123.66218832374228,50.880379108329834],[-123.6070904871157,50.901569832553115],[-123.4517481928313,50.98080406115071],[-123.24344186612224,51.00039390213633],[-123.24928221089621,51.04395478479966],[-123.27034002701131,51.08076768837137],[-123.38821907063631,51.109564943207296],[-123.54800800106068,51.160390088008455],[-123.58661272363831,51.2022609984444],[-123.58644890183719,51.277780395376986],[-123.60994930154678,51.309627686879004],[-123.63392547362275,51.38683009384811],[-123.67143411784109,51.44040610250432],[-123.7081769845125,51.46979739223875],[-123.67434227727985,51.52105189541682],[-123.72798370367062,51.59387460357663],[-123.74959211116315,51.6690779013375],[-123.72134878795333,51.681312492373785],[-123.69687961566054,51.72257179758121],[-123.65334348990356,51.74594600303726],[-123.65790230554883,51.804654607751445],[-123.68926250679466,51.85281288214932],[-123.69733009657634,51.89358661320096],[-123.6627130111207,51.953626989457675],[-123.6922955081011,51.99328505754491],[-123.60966841068468,52.02852050430073],[-123.55051545907395,52.06814646712864],[-123.61638115375797,52.07699356464181],[-123.67593928488466,52.10406059027928],[-123.69359450878878,52.1406798062548],[-123.79014420421582,52.18517498387761],[-123.82645030918133,52.18149910131333],[-123.86172909632879,52.23184730485345],[-123.88553148490844,52.24297369757448],[-123.9397367818153,52.301065792386694],[-123.99640258246576,52.315600405563494],[-123.99743106715047,52.501379369766624],[-123.99676546085888,52.66625410057702],[-124.00279900121478,52.71280063992337],[-124.00316957687416,52.86400407916076],[-123.99524707109418,52.877607626722614],[-124.00071231110805,53.00064787367661],[-124.50000954453623,52.99992545364157],[-125.00033476542127,53.000282401289816]],[[-123.91507615451997,52.151209207370755],[-123.91285063054764,52.1502183439158],[-123.91486085607619,52.14919527476454],[-123.91686437420566,52.15029557172605],[-123.91507615451997,52.151209207370755]],[[-124.06170131395878,52.201885263781],[-124.06330168246524,52.202099115549],[-124.05695527717502,52.21137759338737],[-124.0564135285759,52.2059870722269],[-124.06170131395878,52.201885263781]],[[-125.15872964943783,52.361591867798225],[-125.15478711047318,52.359936355243214],[-125.1532294006088,52.35685326166338],[-125.1617140178469,52.35839876271999],[-125.15872964943783,52.361591867798225]],[[-124.30853978281671,52.17644983390821],[-124.30854430698275,52.17322257345659],[-124.32138428761206,52.17305712980847],[-124.32134902822945,52.17716651746337],[-124.30853978281671,52.17644983390821]],[[-125.15337939744084,52.97360423642607],[-125.15336865390343,52.96673905625429],[-125.1656423106537,52.966544434992315],[-125.16573771912627,52.97376473283631],[-125.15337939744084,52.97360423642607]],[[-124.16828995897424,52.27945781776803],[-124.16803211757197,52.29747671216837],[-124.16182885685608,52.29747381932383],[-124.16142365852096,52.28649371743732],[-124.16828995897424,52.27945781776803]],[[-125.41150407916275,52.91579440379916],[-125.4112797726369,52.9275882045433],[-125.39962262136692,52.927821533889094],[-125.39982601114995,52.91299367212445],[-125.41150407916275,52.91579440379916]],[[-124.28403288624409,52.4828316403575],[-124.28924545662487,52.497375961588766],[-124.2773946145096,52.497504194881806],[-124.28403288624409,52.4828316403575]],[[-124.29606939520339,52.20801127398951],[-124.29580724385802,52.20029177358561],[-124.32549460230878,52.20013513606979],[-124.32597983148727,52.2079566897338],[-124.29606939520339,52.20801127398951]],[[-125.05299725311139,52.371624181354306],[-125.053144363967,52.38608122127545],[-125.02915340988359,52.37954577623825],[-125.05299725311139,52.371624181354306]],[[-123.83360664758588,51.48599721599271],[-123.83090641149894,51.47389987933871],[-123.84559853766022,51.47341969310267],[-123.84570443203481,51.48223947134164],[-123.83360664758588,51.48599721599271]],[[-125.26159664694259,52.44385837504546],[-125.28671528785023,52.44263650102946],[-125.28621764426099,52.456373853437675],[-125.26144518359536,52.45567058719251],[-125.26159664694259,52.44385837504546]],[[-123.9457219552726,51.46329782779071],[-123.94666240208072,51.47689440410865],[-123.92563165182807,51.47633745105001],[-123.92545589520537,51.46112418861021],[-123.9457219552726,51.46329782779071]],[[-125.10692982280437,52.281151891721244],[-125.13081507083557,52.2829645564962],[-125.13144156017165,52.29739241932738],[-125.10787504933103,52.29746996347798],[-125.10692982280437,52.281151891721244]],[[-123.97003289303089,52.13221896252316],[-123.95324302089398,52.146166511910856],[-123.93540795041088,52.135210579666484],[-123.97003289303089,52.13221896252316]],[[-124.28248856048116,52.31324100203864],[-124.28668523137785,52.32771989415237],[-124.26282443326197,52.3279930326995],[-124.26322469429101,52.31327855758128],[-124.28248856048116,52.31324100203864]],[[-124.19742356224522,52.29980238734552],[-124.24509467469676,52.29832074703846],[-124.24512600058684,52.31315761429759],[-124.20913056840946,52.3134632932478],[-124.19742356224522,52.29980238734552]],[[-125.30513371579546,52.479849214526],[-125.34314303751866,52.48874386880205],[-125.30540723553841,52.49323874447201],[-125.30545410337892,52.486038085322434],[-125.28135284857994,52.486260597851526],[-125.28059024349882,52.472572202739016],[-125.30513371579546,52.479849214526]],[[-124.10490414124165,51.41110442379957],[-124.11975842383063,51.40857065794117],[-124.12491332822026,51.41623983885483],[-124.05644720208167,51.42880696609407],[-124.05622347513639,51.44644543978883],[-124.04441242070253,51.44648688556643],[-124.04489339637568,51.42496869823858],[-124.05630301975539,51.42481687982414],[-124.06306894878868,51.42077223193804],[-124.06207113387902,51.4139306053969],[-124.07868888873084,51.41295458365458],[-124.07891410663923,51.420265186448596],[-124.10490414124165,51.41110442379957]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo J","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941039","name":"Cariboo J"}},{"type":"Feature","geometry":{"coordinates":[[[-122.09089669450361,52.127830951727724],[-122.1442445335598,52.149799835968814],[-122.19196052644276,52.15160425777931],[-122.17049575661602,52.11451357087217],[-122.11764925999806,52.099764880576416],[-122.06482148851077,52.11537150225631],[-122.09089669450361,52.127830951727724]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Williams Lake","type":"City","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941009","name":"Williams Lake"}},{"type":"Feature","geometry":{"coordinates":[[[-123.97003289303089,52.13221896252316],[-123.93540795041088,52.135210579666484],[-123.95324302089398,52.146166511910856],[-123.97003289303089,52.13221896252316]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Redstone Flat 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941839","name":"Redstone Flat 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.91507615451997,52.151209207370755],[-123.91686437420566,52.15029557172605],[-123.91486085607619,52.14919527476454],[-123.91285063054764,52.1502183439158],[-123.91507615451997,52.151209207370755]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Michel Gardens 36","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941879","name":"Michel Gardens 36"}},{"type":"Feature","geometry":{"coordinates":[[[-124.30853978281671,52.17644983390821],[-124.32134902822945,52.17716651746337],[-124.32138428761206,52.17305712980847],[-124.30854430698275,52.17322257345659],[-124.30853978281671,52.17644983390821]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Alexis Creek 16","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941818","name":"Alexis Creek 16"}},{"type":"Feature","geometry":{"coordinates":[[[-124.29606939520339,52.20801127398951],[-124.32597983148727,52.2079566897338],[-124.32549460230878,52.20013513606979],[-124.29580724385802,52.20029177358561],[-124.29606939520339,52.20801127398951]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Alexis Creek 14","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941817","name":"Alexis Creek 14"}},{"type":"Feature","geometry":{"coordinates":[[[-124.06170131395878,52.201885263781],[-124.0564135285759,52.2059870722269],[-124.05695527717502,52.21137759338737],[-124.06330168246524,52.202099115549],[-124.06170131395878,52.201885263781]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Puntzi Lake 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941838","name":"Puntzi Lake 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.04405962925554,52.24219160764571],[-122.04202707904209,52.263458786426526],[-122.07501706812313,52.27102224090487],[-122.09457820872606,52.24303664029911],[-122.04405962925554,52.24219160764571]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Deep Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941805","name":"Deep Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-125.10692982280437,52.281151891721244],[-125.10787504933103,52.29746996347798],[-125.13144156017165,52.29739241932738],[-125.13081507083557,52.2829645564962],[-125.10692982280437,52.281151891721244]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Towdystan Lake 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941851","name":"Towdystan Lake 3"}},{"type":"Feature","geometry":{"coordinates":[[[-124.16828995897424,52.27945781776803],[-124.16142365852096,52.28649371743732],[-124.16182885685608,52.29747381932383],[-124.16803211757197,52.29747671216837],[-124.16828995897424,52.27945781776803]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Agats Meadow 8","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941844","name":"Agats Meadow 8"}},{"type":"Feature","geometry":{"coordinates":[[[-124.19742356224522,52.29980238734552],[-124.20913056840946,52.3134632932478],[-124.24512600058684,52.31315761429759],[-124.24509467469676,52.29832074703846],[-124.19742356224522,52.29980238734552]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Charley Boy's Meadow 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941827","name":"Charley Boy's Meadow 3"}},{"type":"Feature","geometry":{"coordinates":[[[-124.28248856048116,52.31324100203864],[-124.26322469429101,52.31327855758128],[-124.26282443326197,52.3279930326995],[-124.28668523137785,52.32771989415237],[-124.28248856048116,52.31324100203864]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Alexis Creek 21","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941848","name":"Alexis Creek 21"}},{"type":"Feature","geometry":{"coordinates":[[[-122.2754018544233,52.33411263510815],[-122.27791611516295,52.3105835848445],[-122.25556924272098,52.31075612201873],[-122.25534399075981,52.33278812144956],[-122.2754018544233,52.33411263510815]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Soda Creek 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941810","name":"Soda Creek 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.15872964943783,52.361591867798225],[-125.1617140178469,52.35839876271999],[-125.1532294006088,52.35685326166338],[-125.15478711047318,52.359936355243214],[-125.15872964943783,52.361591867798225]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Fishtrap 19","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941871","name":"Fishtrap 19"}},{"type":"Feature","geometry":{"coordinates":[[[-122.23378514637466,52.541685134929224],[-122.45271572113008,52.53936721827462],[-122.43578840493426,52.503099829535884],[-122.37449641945739,52.36232809474892],[-122.28944602228339,52.34111449794853],[-122.28883398287647,52.29693699003503],[-122.26396322064474,52.253921599695104],[-122.27976788934903,52.2194970052904],[-122.27238504659175,52.157696219633046],[-122.19196052644276,52.15160425777931],[-122.1442445335598,52.149799835968814],[-122.09089669450361,52.127830951727724],[-122.04460515256821,52.14149377308118],[-122.04347604438189,52.173411285046654],[-122.06835528060257,52.1963562573541],[-122.04405962925554,52.24219160764571],[-122.09457820872606,52.24303664029911],[-122.07501706812313,52.27102224090487],[-122.04202707904209,52.263458786426526],[-122.01581569204781,52.2627922476567],[-122.0115939099951,52.38981991821469],[-122.03925328328673,52.426807438035006],[-122.03992061315044,52.50047889170836],[-122.08542569092639,52.5034492418353],[-122.08607025146772,52.54038860018856],[-122.23378514637466,52.541685134929224]],[[-122.2754018544233,52.33411263510815],[-122.25534399075981,52.33278812144956],[-122.25556924272098,52.31075612201873],[-122.27791611516295,52.3105835848445],[-122.2754018544233,52.33411263510815]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941010","name":"Cariboo D"}},{"type":"Feature","geometry":{"coordinates":[[[-125.05299725311139,52.371624181354306],[-125.02915340988359,52.37954577623825],[-125.053144363967,52.38608122127545],[-125.05299725311139,52.371624181354306]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Ulkatcho 13","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941854","name":"Ulkatcho 13"}},{"type":"Feature","geometry":{"coordinates":[[[-125.26159664694259,52.44385837504546],[-125.26144518359536,52.45567058719251],[-125.28621764426099,52.456373853437675],[-125.28671528785023,52.44263650102946],[-125.26159664694259,52.44385837504546]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Ulkatcho 14A","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941880","name":"Ulkatcho 14A"}},{"type":"Feature","geometry":{"coordinates":[[[-122.11923112580823,52.71483714412872],[-122.18802339289132,52.71413394708736],[-122.24811324731213,52.688294901748925],[-122.20564451485707,52.568192165920834],[-122.23378514637466,52.541685134929224],[-122.08607025146772,52.54038860018856],[-122.08542569092639,52.5034492418353],[-122.03992061315044,52.50047889170836],[-122.03925328328673,52.426807438035006],[-122.0115939099951,52.38981991821469],[-122.01581569204781,52.2627922476567],[-122.04202707904209,52.263458786426526],[-122.04405962925554,52.24219160764571],[-122.06835528060257,52.1963562573541],[-122.04347604438189,52.173411285046654],[-122.04460515256821,52.14149377308118],[-122.09089669450361,52.127830951727724],[-122.06482148851077,52.11537150225631],[-122.02908101559964,52.10836902000352],[-122.02934507242107,52.124268394313965],[-121.95402939071636,52.11804048515545],[-121.98840120296323,52.0877822680049],[-121.83896407541125,51.98555110700279],[-121.8294739972315,51.99224779662682],[-121.5549312283226,51.99194381307584],[-121.55551877890844,52.080391601270605],[-121.21035459979069,52.07086901285966],[-121.20399219545946,51.99232377661521],[-120.88371530878416,51.99160843277153],[-120.8861902929239,52.135930057539994],[-120.38754754617437,52.13744511708389],[-120.38695603520722,52.17854878831645],[-120.49150006778994,52.288514461977265],[-120.4664727559977,52.30441953406306],[-120.5348509734951,52.32940096234168],[-120.52109016274525,52.37975308524671],[-120.4592203884972,52.42124218329561],[-120.5421505490952,52.466116494843575],[-120.50940186011252,52.49474459262114],[-120.40767781794666,52.534483467497324],[-120.36301267232386,52.52814209569241],[-120.33321015323257,52.56675289378218],[-120.29158060281952,52.58735904296742],[-120.29367798390496,52.60762654381557],[-120.23527869557962,52.6347139318352],[-120.2897276618271,52.65775472848972],[-120.254383523472,52.6773509943649],[-120.2936941492979,52.72560440485187],[-120.27378052742317,52.74592322282795],[-120.30827383875823,52.78011251195091],[-120.30243816152856,52.815110168492055],[-120.33422840079746,52.83313909803514],[-120.3129225740879,52.85871318516134],[-120.25953702305515,52.85961601987577],[-120.21214278647919,52.87633176809711],[-120.17725338382988,52.86003454741283],[-120.14254549439083,52.87674077578408],[-120.17036973019488,52.92495357843085],[-120.22712962425173,52.91831506852374],[-120.26935085495714,52.928866624436004],[-120.33843793729068,52.92738895883019],[-120.37676277498711,52.96476640988252],[-120.43420133345742,52.97262576378822],[-120.45312671157451,52.99325703672585],[-120.54490116561881,52.97613015580482],[-120.53518073199697,52.955869830152665],[-120.59257164746856,52.94630611593247],[-120.6111650103247,52.9136745834095],[-120.66339577886231,52.932186411013824],[-120.70178473183749,52.905519986996445],[-120.78959141786095,52.90846339269999],[-120.88723686914305,52.88674715262575],[-120.9345761194129,52.857649145417476],[-120.99526925749173,52.88042876465408],[-121.05719552973085,52.88307533362542],[-121.12041158459462,52.869753085648995],[-121.14276654218978,52.93947180129857],[-121.24198724727253,52.92615420693428],[-121.34381520814138,52.87114517353704],[-121.42273993990356,52.875637872792225],[-121.46781688057352,52.848844071180245],[-121.529645172193,52.8694085946876],[-121.6045400089244,52.86052157096306],[-121.62041125973296,52.82402534230068],[-121.61648326074169,52.785173913763785],[-121.58201725068102,52.739402924012836],[-121.65545049210196,52.73837834866777],[-121.69396349183067,52.71982518305458],[-121.75890678539827,52.74203746565539],[-121.93817449537933,52.743137332311534],[-121.94070448315593,52.714497849456656],[-122.11923112580823,52.71483714412872]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941014","name":"Cariboo F"}},{"type":"Feature","geometry":{"coordinates":[[[-125.30513371579546,52.479849214526],[-125.28059024349882,52.472572202739016],[-125.28135284857994,52.486260597851526],[-125.30545410337892,52.486038085322434],[-125.30513371579546,52.479849214526]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Squinas 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941840","name":"Squinas 2"}},{"type":"Feature","geometry":{"coordinates":[[[-125.30545410337892,52.486038085322434],[-125.30540723553841,52.49323874447201],[-125.34314303751866,52.48874386880205],[-125.30513371579546,52.479849214526],[-125.30545410337892,52.486038085322434]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Thomas Squinas Ranch 2A","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941845","name":"Thomas Squinas Ranch 2A"}},{"type":"Feature","geometry":{"coordinates":[[[-124.28403288624409,52.4828316403575],[-124.2773946145096,52.497504194881806],[-124.28924545662487,52.497375961588766],[-124.28403288624409,52.4828316403575]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Alexis Creek 34","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941856","name":"Alexis Creek 34"}},{"type":"Feature","geometry":{"coordinates":[[[-122.48470183806651,52.58872106806098],[-122.5039123920667,52.59414637506765],[-122.50639532462566,52.55803911125881],[-122.47599354029799,52.567861068157505],[-122.48470183806651,52.58872106806098]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Alexandria","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941882","name":"Alexandria"}},{"type":"Feature","geometry":{"coordinates":[[[-122.40117426601839,52.995747149030464],[-122.41317709598353,52.96146356681901],[-122.49985506658929,52.968764505452924],[-122.51119501039939,52.957791936768075],[-122.45054319170309,52.95661310653197],[-122.45223881918217,52.93850796669969],[-122.48265371346294,52.9394466739604],[-122.49065296194354,52.93980793006685],[-122.44726911263703,52.87103719191659],[-122.45927269635604,52.77931380118801],[-122.48084770144105,52.76267669981582],[-122.48566639100902,52.70726309442933],[-122.46386420139193,52.668988885277],[-122.49374217764843,52.64663730050416],[-122.4671032958982,52.62011710057451],[-122.48470183806651,52.58872106806098],[-122.47599354029799,52.567861068157505],[-122.45271572113008,52.53936721827462],[-122.23378514637466,52.541685134929224],[-122.20564451485707,52.568192165920834],[-122.24811324731213,52.688294901748925],[-122.18802339289132,52.71413394708736],[-122.11923112580823,52.71483714412872],[-122.15118398751113,52.753346204382424],[-122.17210309291889,52.810917004115126],[-122.253139606135,52.857953000533726],[-122.32157238594436,52.97490250925771],[-122.36783991353944,53.00071160430499],[-122.40117426601839,52.995747149030464]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941019","name":"Cariboo A"}},{"type":"Feature","geometry":{"coordinates":[[[-125.41150407916275,52.91579440379916],[-125.39982601114995,52.91299367212445],[-125.39962262136692,52.927821533889094],[-125.4112797726369,52.9275882045433],[-125.41150407916275,52.91579440379916]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Betty Creek 18","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941861","name":"Betty Creek 18"}},{"type":"Feature","geometry":{"coordinates":[[[-122.48265371346294,52.9394466739604],[-122.45223881918217,52.93850796669969],[-122.45054319170309,52.95661310653197],[-122.51119501039939,52.957791936768075],[-122.48265371346294,52.9394466739604]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Quesnel 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941809","name":"Quesnel 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.5856265174651,52.94083877855122],[-123.57362207186625,52.96389279915681],[-123.59220008823348,52.96377683238213],[-123.5856265174651,52.94083877855122]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Nazco 20","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941837","name":"Nazco 20"}},{"type":"Feature","geometry":{"coordinates":[[[-125.15337939744084,52.97360423642607],[-125.16573771912627,52.97376473283631],[-125.1656423106537,52.966544434992315],[-125.15336865390343,52.96673905625429],[-125.15337939744084,52.97360423642607]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Salmon River Meadow 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941862","name":"Salmon River Meadow 7"}},{"type":"Feature","geometry":{"coordinates":[[[-122.42691042463609,52.97028786041832],[-122.42623285279498,52.97291499487597],[-122.4322847361879,52.97315797083881],[-122.43206878740148,52.969508007508054],[-122.42691042463609,52.97028786041832]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Dragon Lake 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941886","name":"Dragon Lake 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.48161069707155,53.00668085615942],[-122.53944503357556,52.97833747857385],[-122.49065296194354,52.93980793006685],[-122.48265371346294,52.9394466739604],[-122.51119501039939,52.957791936768075],[-122.49985506658929,52.968764505452924],[-122.41317709598353,52.96146356681901],[-122.40117426601839,52.995747149030464],[-122.48161069707155,53.00668085615942]],[[-122.42691042463609,52.97028786041832],[-122.43206878740148,52.969508007508054],[-122.4322847361879,52.97315797083881],[-122.42623285279498,52.97291499487597],[-122.42691042463609,52.97028786041832]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Quesnel","type":"City","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941013","name":"Quesnel"}},{"type":"Feature","geometry":{"coordinates":[[[-123.80841206892393,52.98676226887778],[-123.80846684704903,52.9904262442924],[-123.8146701035525,52.990368799323626],[-123.81478339131864,52.98583059051779],[-123.80841206892393,52.98676226887778]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Baezaeko River 27","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941881","name":"Baezaeko River 27"}},{"type":"Feature","geometry":{"coordinates":[[[-123.83681183546163,52.98746463004954],[-123.83699746952367,52.99288775450729],[-123.84893734476513,52.99289416086735],[-123.84926472586992,52.98550815235403],[-123.83681183546163,52.98746463004954]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Coglistiko River 29","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941835","name":"Coglistiko River 29"}},{"type":"Feature","geometry":{"coordinates":[[[-124.50060357952508,53.52746667628115],[-124.51848465501806,53.476971983150975],[-124.55209992863293,53.46234849611397],[-124.52328845923435,53.40236854719238],[-124.62884796188185,53.386032329347074],[-124.64734162537935,53.40755032534189],[-124.73662227434276,53.35462321195247],[-124.80588500868829,53.369095259296316],[-124.89881610268753,53.435306161823576],[-124.98383183470563,53.4315277915133],[-125.00172120503012,53.44683820246297],[-124.99631284524315,53.241811027497775],[-125.00061963835155,53.190369954166776],[-125.00033476542127,53.000282401289816],[-124.50000954453623,52.99992545364157],[-124.00071231110805,53.00064787367661],[-123.99524707109418,52.877607626722614],[-124.00316957687416,52.86400407916076],[-124.00279900121478,52.71280063992337],[-123.99676546085888,52.66625410057702],[-123.99743106715047,52.501379369766624],[-123.30627708494309,52.50102409791379],[-122.6827421804453,52.5073863460868],[-122.43578840493426,52.503099829535884],[-122.45271572113008,52.53936721827462],[-122.47599354029799,52.567861068157505],[-122.50639532462566,52.55803911125881],[-122.5039123920667,52.59414637506765],[-122.48470183806651,52.58872106806098],[-122.4671032958982,52.62011710057451],[-122.49374217764843,52.64663730050416],[-122.46386420139193,52.668988885277],[-122.48566639100902,52.70726309442933],[-122.48084770144105,52.76267669981582],[-122.45927269635604,52.77931380118801],[-122.44726911263703,52.87103719191659],[-122.49065296194354,52.93980793006685],[-122.53944503357556,52.97833747857385],[-122.54238794058155,52.956688561017785],[-122.68837391986337,52.953722825454605],[-122.78250259624295,52.95861425263852],[-122.91037612817237,52.95613498801805],[-122.9096763033055,53.01067822693933],[-122.87207374086397,53.08862053302613],[-122.8807471054298,53.13858773020663],[-122.88487811401735,53.3046381687554],[-123.14267490545915,53.28733358502716],[-123.20846350128012,53.30121821165795],[-123.30512038570299,53.28364008527624],[-123.3017093718526,53.47023147557176],[-123.41896027520703,53.47018300737702],[-123.4198809660935,53.4835105357097],[-123.99762864049903,53.48430753129915],[-123.99756090044838,53.443995851592],[-124.08589239710503,53.434949219072074],[-124.13661937253381,53.408157105443166],[-124.21538185983137,53.420650431888895],[-124.21565559640283,53.443692571585196],[-124.25384935313012,53.46652498367698],[-124.30564964847838,53.455444805327936],[-124.38097716667673,53.45482000071691],[-124.386156206955,53.485260767850924],[-124.50060357952508,53.52746667628115]],[[-123.80841206892393,52.98676226887778],[-123.81478339131864,52.98583059051779],[-123.8146701035525,52.990368799323626],[-123.80846684704903,52.9904262442924],[-123.80841206892393,52.98676226887778]],[[-124.32784588211743,53.118143959203536],[-124.3416509145296,53.118613409333435],[-124.34096743049136,53.12347310036079],[-124.32773350103236,53.12295094462737],[-124.32784588211743,53.118143959203536]],[[-123.83681183546163,52.98746463004954],[-123.84926472586992,52.98550815235403],[-123.84893734476513,52.99289416086735],[-123.83699746952367,52.99288775450729],[-123.83681183546163,52.98746463004954]],[[-123.52687012515311,53.18097328950526],[-123.5376285758368,53.1806253197644],[-123.53818744788434,53.18785238021502],[-123.5157972885576,53.18719108162776],[-123.52687012515311,53.18097328950526]],[[-123.49826883900556,53.224792416300694],[-123.49391650902804,53.20276674108563],[-123.51755658449626,53.20081904880947],[-123.51734443097872,53.22551499438081],[-123.49826883900556,53.224792416300694]],[[-124.4886788499525,53.08204938290248],[-124.51118099646291,53.09774889076807],[-124.46291372639271,53.09735829795298],[-124.4886788499525,53.08204938290248]],[[-123.5856265174651,52.94083877855122],[-123.59220008823348,52.96377683238213],[-123.57362207186625,52.96389279915681],[-123.5856265174651,52.94083877855122]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo I","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941027","name":"Cariboo I"}},{"type":"Feature","geometry":{"coordinates":[[[-124.4886788499525,53.08204938290248],[-124.46291372639271,53.09735829795298],[-124.51118099646291,53.09774889076807],[-124.4886788499525,53.08204938290248]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Kluskus 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941833","name":"Kluskus 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.52784973853977,53.166716648879984],[-121.70888520443242,53.156008616184586],[-121.7534736508607,53.092883934449105],[-121.71004730208645,53.067084824608045],[-121.62796926515493,53.049147616411354],[-121.61365652156668,53.03308500482008],[-121.54365631981487,53.08118943737277],[-121.5094359862627,53.0930881020607],[-121.52784973853977,53.166716648879984]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Wells","type":"District municipality","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941025","name":"Wells"}},{"type":"Feature","geometry":{"coordinates":[[[-124.32784588211743,53.118143959203536],[-124.32773350103236,53.12295094462737],[-124.34096743049136,53.12347310036079],[-124.3416509145296,53.118613409333435],[-124.32784588211743,53.118143959203536]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Sundayman's Meadow 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941864","name":"Sundayman's Meadow 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.16290278269919,53.45678892625051],[-122.33626530101523,53.450127016204505],[-122.32642196788049,53.41165603673921],[-122.34861691261764,53.37349116241964],[-122.48963261024173,53.37259441704802],[-122.44712096480009,53.29302530138966],[-122.44596267040444,53.260830341768546],[-122.41115860532457,53.212105227353895],[-122.32798006097119,53.2113528919849],[-122.33182307984688,53.08159757998911],[-122.41388977469018,53.06936108026148],[-122.44487721488312,53.026630318142956],[-122.48161069707155,53.00668085615942],[-122.40117426601839,52.995747149030464],[-122.36783991353944,53.00071160430499],[-122.32157238594436,52.97490250925771],[-122.253139606135,52.857953000533726],[-122.17210309291889,52.810917004115126],[-122.15118398751113,52.753346204382424],[-122.11923112580823,52.71483714412872],[-121.94070448315593,52.714497849456656],[-121.93817449537933,52.743137332311534],[-121.75890678539827,52.74203746565539],[-121.69396349183067,52.71982518305458],[-121.65545049210196,52.73837834866777],[-121.58201725068102,52.739402924012836],[-121.61648326074169,52.785173913763785],[-121.62041125973296,52.82402534230068],[-121.6045400089244,52.86052157096306],[-121.529645172193,52.8694085946876],[-121.46781688057352,52.848844071180245],[-121.42273993990356,52.875637872792225],[-121.34381520814138,52.87114517353704],[-121.24198724727253,52.92615420693428],[-121.14276654218978,52.93947180129857],[-121.12041158459462,52.869753085648995],[-121.05719552973085,52.88307533362542],[-120.99526925749173,52.88042876465408],[-120.9345761194129,52.857649145417476],[-120.88723686914305,52.88674715262575],[-120.78959141786095,52.90846339269999],[-120.70178473183749,52.905519986996445],[-120.66339577886231,52.932186411013824],[-120.6111650103247,52.9136745834095],[-120.59257164746856,52.94630611593247],[-120.53518073199697,52.955869830152665],[-120.54490116561881,52.97613015580482],[-120.45312671157451,52.99325703672585],[-120.48841889814629,53.054554000012224],[-120.42528755745771,53.06784119844121],[-120.4170661948413,53.100242101099525],[-120.46259716623011,53.12471265191372],[-120.46671840361881,53.14909640728693],[-120.62716310041482,53.213961403192755],[-120.7150090961226,53.264522812431146],[-120.78748103717776,53.256644325035595],[-120.81116310330661,53.28784507662867],[-120.85298043481227,53.28163907566804],[-120.92281197991002,53.307069781572345],[-121.01819301224124,53.3297661909194],[-120.99827799501573,53.38303612854952],[-121.00828606866168,53.43040327155395],[-121.07347708479367,53.39316147374082],[-121.1350022099719,53.394584591084076],[-121.1599810786083,53.381282819604074],[-121.22816378435293,53.384730096343375],[-121.26405345424196,53.40321596771028],[-121.28829575838661,53.44571377236641],[-121.55542567849943,53.43938651210761],[-121.57134351828725,53.452549621481],[-121.81402908543944,53.45691053152458],[-122.16290278269919,53.45678892625051]],[[-121.52784973853977,53.166716648879984],[-121.5094359862627,53.0930881020607],[-121.54365631981487,53.08118943737277],[-121.61365652156668,53.03308500482008],[-121.62796926515493,53.049147616411354],[-121.71004730208645,53.067084824608045],[-121.7534736508607,53.092883934449105],[-121.70888520443242,53.156008616184586],[-121.52784973853977,53.166716648879984]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941026","name":"Cariboo C"}},{"type":"Feature","geometry":{"coordinates":[[[-122.64604816854393,53.386900331404796],[-122.69820997677276,53.39168589262476],[-122.83684706942381,53.373557705793026],[-122.88483141132312,53.32524459986773],[-122.88487811401735,53.3046381687554],[-122.8807471054298,53.13858773020663],[-122.87207374086397,53.08862053302613],[-122.9096763033055,53.01067822693933],[-122.91037612817237,52.95613498801805],[-122.78250259624295,52.95861425263852],[-122.68837391986337,52.953722825454605],[-122.54238794058155,52.956688561017785],[-122.53944503357556,52.97833747857385],[-122.48161069707155,53.00668085615942],[-122.44487721488312,53.026630318142956],[-122.41388977469018,53.06936108026148],[-122.33182307984688,53.08159757998911],[-122.32798006097119,53.2113528919849],[-122.41115860532457,53.212105227353895],[-122.44596267040444,53.260830341768546],[-122.44712096480009,53.29302530138966],[-122.48963261024173,53.37259441704802],[-122.61246142167573,53.37243435513882],[-122.64604816854393,53.386900331404796]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Cariboo B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941021","name":"Cariboo B"}},{"type":"Feature","geometry":{"coordinates":[[[-123.52687012515311,53.18097328950526],[-123.5157972885576,53.18719108162776],[-123.53818744788434,53.18785238021502],[-123.5376285758368,53.1806253197644],[-123.52687012515311,53.18097328950526]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Trout Lake Alec 16","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941852","name":"Trout Lake Alec 16"}},{"type":"Feature","geometry":{"coordinates":[[[-123.49826883900556,53.224792416300694],[-123.51734443097872,53.22551499438081],[-123.51755658449626,53.20081904880947],[-123.49391650902804,53.20276674108563],[-123.49826883900556,53.224792416300694]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Cariboo","census_subdivision":"Euchinico Creek 17","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5941","census_subdivision_code":"5941866","name":"Euchinico Creek 17"}},{"type":"Feature","geometry":{"coordinates":[[[-127.24984419463222,51.67980500091712],[-127.17242510759093,51.67420329311056],[-127.17568837776737,51.691366838157236],[-127.24984419463222,51.67980500091712]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Central Coast","census_subdivision":"Katit 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5945","census_subdivision_code":"5945803","name":"Katit 1"}},{"type":"Feature","geometry":{"coordinates":[[[-126.60910991847187,53.00027962116089],[-126.65552020999263,53.031200998182044],[-126.72393869539901,52.99256359971914],[-126.78989978341596,53.000455560595306],[-126.80027384376064,53.0743421048183],[-126.84116168436563,53.11039547320625],[-126.88274659753698,53.08391881657795],[-126.94810750507412,53.09353939579648],[-126.98568207343952,53.07223713013635],[-127.03280920880397,53.11418341520478],[-127.00373637355645,53.158776272263324],[-127.01330807499006,53.18920887788087],[-127.05072039782307,53.20661967337186],[-126.98208791877303,53.27845997648652],[-127.0155319723282,53.3090326703481],[-127.06978360955473,53.28423677482433],[-127.07448726928365,53.25080518864074],[-127.12100500741838,53.23967660151724],[-127.15091733679175,53.281229948924306],[-127.22487279598889,53.25028273544213],[-127.26686157658617,53.27752625644057],[-127.30678914771792,53.215480939723385],[-127.36420606550877,53.2211668357022],[-127.35321239686489,53.18671054858706],[-127.40582686675022,53.184324640369326],[-127.47278931822854,53.1243258261258],[-127.43471386049728,53.11792768375245],[-127.43413309058546,53.08852280864822],[-127.37580691991454,53.08641405267767],[-127.32219778109402,53.06756488383462],[-127.24354631083158,53.016420779745324],[-127.25640099273262,52.97886145997351],[-127.23688512457832,52.96177605123545],[-127.28606413750823,52.937010424566154],[-127.29766218729368,52.90766041607361],[-127.22296730920685,52.85077725574865],[-127.22224620968221,52.822356428526646],[-127.3528266116664,52.808249808986226],[-127.37972742439932,52.78371617048399],[-127.3688334495651,52.75565768690613],[-127.49045319126694,52.692569164883004],[-127.56269966218763,52.69096870132484],[-127.61638260632704,52.73274802107759],[-127.59720796634532,52.7793204337079],[-127.67921955890235,52.7913392689582],[-127.7187929564572,52.7709489549696],[-127.71996091256692,52.71875435807895],[-127.78217312797898,52.69655331041662],[-127.80976601907923,52.66449780263194],[-127.89022885335451,52.67958859641397],[-127.92850575468992,52.71707749668364],[-127.96793505977247,52.7082265729109],[-128.0116816433006,52.719483107683814],[-128.10934018174342,52.67920586008661],[-128.14618727350896,52.625141790876356],[-128.189602725794,52.60736151615733],[-128.1748177671912,52.57547913188291],[-128.19443917662232,52.513766879781784],[-128.17694306421694,52.484158523813015],[-128.28266259597564,52.48242893530374],[-128.37474819759046,52.471036360055216],[-128.4589623112546,52.437511462764206],[-128.52793762978715,52.37104337726248],[-128.59485815575644,52.2642257251376],[-128.63497446903384,52.22941114560416],[-128.7492816674542,52.193254729236706],[-128.81956529651313,52.128229447842166],[-128.82220705464874,52.0000635094484],[-129.0681221265656,52.00005939782289],[-129.05789074875568,51.935297330815175],[-129.00000000292866,51.82109561605406],[-129.00000001369105,51.200521602608084],[-129.0168061711504,51.11414185154003],[-129.05976993065897,51.00432318957761],[-129.0843837688484,50.96557513086937],[-128.53947521962792,51.024663305900205],[-127.99283971911848,51.080989454540855],[-127.91785931337839,51.07633020523256],[-127.86239527986427,51.09670258530435],[-127.79288496981363,51.15617976779495],[-127.73530464054902,51.15951325146394],[-127.73823953080027,51.188722903043086],[-127.61079573063897,51.19154359204555],[-127.45682630701485,51.20433363265802],[-127.45290022622922,51.224481343899605],[-127.39100198581531,51.22850780979143],[-127.3234003870892,51.20924591616467],[-127.23498036668013,51.219406053027896],[-127.19454755690288,51.20402431418169],[-126.997268399497,51.24074127562028],[-126.92251483320818,51.242014230269724],[-126.92377080188382,51.277885475542],[-126.8921119425129,51.30674415110503],[-126.8406446865487,51.323011043552015],[-126.81018602844334,51.299058246836765],[-126.76405352233381,51.301295851624054],[-126.72545645916489,51.34517327970446],[-126.69907057472359,51.40972759380616],[-126.72356746845765,51.43485654381505],[-126.70735579295561,51.46025048748113],[-126.61992640014614,51.443444912429975],[-126.58542317620751,51.40630026389568],[-126.52839524081666,51.41821054882066],[-126.48175777992813,51.44247486964171],[-126.45115164318906,51.4764410486329],[-126.3889862770458,51.48166409204649],[-126.34562801995276,51.46205361120064],[-126.21711654089233,51.453971746643276],[-126.17240350370261,51.435854806082396],[-126.14966459794802,51.46061625158526],[-126.0990316364203,51.475106350701495],[-126.11798197184117,51.51832003631812],[-126.05301754589118,51.565557651672975],[-126.02812905514824,51.5999422339915],[-125.98179837797277,51.58068623543117],[-125.91032136192064,51.614332319219024],[-125.950678136005,51.648435521081616],[-125.95518426309745,51.692210883926194],[-125.99117837729854,51.68829616960127],[-125.99730286292635,51.728354020139776],[-125.96216424299891,51.747364178983865],[-125.97164675207266,51.78881610178768],[-125.92705651667855,51.8177789169623],[-125.91437244050444,51.890152281516244],[-125.87062318854554,51.910876617369276],[-125.88081254096393,51.963397733385506],[-125.81464678908094,51.975418499110255],[-125.77758605017944,52.00053340744154],[-126.21059980773451,52.003903415611965],[-126.22447752140651,52.03895668791184],[-126.27266457575757,52.06567078197678],[-126.19588908748746,52.12725675237664],[-126.20191916300057,52.14726378962938],[-126.28682043523379,52.194235925387495],[-126.33904784166934,52.183511188117016],[-126.38534639242943,52.21835849942588],[-126.40903672301496,52.205670089671365],[-126.47715490847466,52.21437602954036],[-126.5081814080675,52.25491040578934],[-126.51473928479267,52.29018277517327],[-126.65031057229993,52.24491222333233],[-126.769210600815,52.268456347029996],[-126.77770243723212,52.22315441021751],[-126.81206060166805,52.223698929637294],[-126.87153193274673,52.249932795467544],[-126.90299490276266,52.29285597468953],[-126.8775118471354,52.3258881026616],[-126.87922798113314,52.380265205326225],[-126.8682800955877,52.49365395353628],[-126.82723152752256,52.48473396854788],[-126.75355485727445,52.56431265525701],[-126.68761624156303,52.59491217808546],[-126.64431122308983,52.57917611177711],[-126.55279928653542,52.61969878061118],[-126.50977464132433,52.64302440796983],[-126.44567406918718,52.65416824778073],[-126.41138912897408,52.688856521165285],[-126.36112167277784,52.706934242475285],[-126.33353332240911,52.75160063357048],[-126.33565614945125,52.829532509575856],[-126.41615760962871,52.79422956804581],[-126.5302796867322,52.775151521139136],[-126.55351406805534,52.81525261858884],[-126.60111948731556,52.81297915973887],[-126.63919710165801,52.846008621547206],[-126.58734841708925,52.87938137640959],[-126.5977598826983,52.91348365187543],[-126.6460628730723,52.9419256960442],[-126.60910991847187,53.00027962116089]],[[-128.1574554619214,52.178063380856294],[-128.14465761092174,52.13948626476986],[-128.16787795466647,52.1425625539615],[-128.1574554619214,52.178063380856294]],[[-127.24984419463222,51.67980500091712],[-127.17568837776737,51.691366838157236],[-127.17242510759093,51.67420329311056],[-127.24984419463222,51.67980500091712]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Central Coast","census_subdivision":"Central Coast A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5945","census_subdivision_code":"5945006","name":"Central Coast A"}},{"type":"Feature","geometry":{"coordinates":[[[-128.1574554619214,52.178063380856294],[-128.16787795466647,52.1425625539615],[-128.14465761092174,52.13948626476986],[-128.1574554619214,52.178063380856294]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Central Coast","census_subdivision":"Bella Bella 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5945","census_subdivision_code":"5945801","name":"Bella Bella 1"}},{"type":"Feature","geometry":{"coordinates":[[[-126.44567406918718,52.65416824778073],[-126.50977464132433,52.64302440796983],[-126.55279928653542,52.61969878061118],[-126.52226621787248,52.601686132265925],[-126.54212297205387,52.551845537491026],[-126.61451807836305,52.52786565510991],[-126.64360555446987,52.47739101262294],[-126.62625502038038,52.398959573414075],[-126.560617978273,52.39920654669271],[-126.55909565635287,52.36304257688365],[-126.51473928479267,52.29018277517327],[-126.5081814080675,52.25491040578934],[-126.47715490847466,52.21437602954036],[-126.40903672301496,52.205670089671365],[-126.38534639242943,52.21835849942588],[-126.33904784166934,52.183511188117016],[-126.28682043523379,52.194235925387495],[-126.20191916300057,52.14726378962938],[-126.19588908748746,52.12725675237664],[-126.27266457575757,52.06567078197678],[-126.22447752140651,52.03895668791184],[-126.21059980773451,52.003903415611965],[-125.77758605017944,52.00053340744154],[-125.72082804693659,52.00849998587794],[-125.67857356867958,51.94317143567366],[-125.61162566020715,51.90325500320885],[-125.5752915616659,51.913363220227716],[-125.58584579617718,51.95166764150104],[-125.61632122050058,51.98786005530697],[-125.57960170978929,52.05557332008385],[-125.65909722623113,52.06056285341237],[-125.66884336766145,52.122034349207574],[-125.5992242699103,52.15846994266355],[-125.48272764980854,52.17755367674965],[-125.45135843865236,52.20455320444736],[-125.50266766064097,52.22926205387739],[-125.47746974876188,52.28009560524301],[-125.43940268730785,52.276159461942996],[-125.3828098102662,52.32956318244654],[-125.34371562113631,52.34494182439657],[-125.35864715049296,52.38069414606079],[-125.42969316276698,52.404512638651276],[-125.46641476310292,52.398774617864234],[-125.48938222094937,52.43196509971716],[-125.45601831964863,52.47154138247754],[-125.53013695937129,52.49701324396757],[-125.62045876803441,52.51115192801753],[-125.73517764311802,52.47983875126089],[-125.75409549418777,52.50795023384664],[-125.79935912825837,52.52523375669548],[-125.85056860904163,52.576747020876915],[-125.88492910903965,52.628168921176766],[-125.98799414203098,52.6193019655404],[-126.04678464313517,52.581572726770595],[-126.08418432977926,52.59170520962176],[-126.13602534040112,52.57691345691149],[-126.19778243735541,52.49996820553183],[-126.22007345273839,52.49629532264844],[-126.27040579190992,52.541211112972576],[-126.31798781165791,52.518335917733],[-126.35884190165248,52.53504940125863],[-126.41048459245917,52.59322791035469],[-126.44567406918718,52.65416824778073]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Central Coast","census_subdivision":"Central Coast C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5945","census_subdivision_code":"5945010","name":"Central Coast C"}},{"type":"Feature","geometry":{"coordinates":[[[-126.51473928479267,52.29018277517327],[-126.55909565635287,52.36304257688365],[-126.560617978273,52.39920654669271],[-126.62625502038038,52.398959573414075],[-126.64360555446987,52.47739101262294],[-126.61451807836305,52.52786565510991],[-126.54212297205387,52.551845537491026],[-126.52226621787248,52.601686132265925],[-126.55279928653542,52.61969878061118],[-126.55563205258352,52.59027594183804],[-126.65895789977327,52.548616112806116],[-126.66021261641372,52.49822049393236],[-126.68285570097775,52.458341185481295],[-126.7482774862344,52.39357420710412],[-126.69404663585526,52.39261695041334],[-126.69275691918057,52.36025077723137],[-126.75256532836234,52.369364233969456],[-126.77300121636141,52.30233476693757],[-126.769210600815,52.268456347029996],[-126.65031057229993,52.24491222333233],[-126.51473928479267,52.29018277517327]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Central Coast","census_subdivision":"Central Coast D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5945","census_subdivision_code":"5945012","name":"Central Coast D"}},{"type":"Feature","geometry":{"coordinates":[[[-126.75256532836234,52.369364233969456],[-126.69275691918057,52.36025077723137],[-126.69404663585526,52.39261695041334],[-126.7482774862344,52.39357420710412],[-126.75256532836234,52.369364233969456]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Central Coast","census_subdivision":"Bella Coola 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5945","census_subdivision_code":"5945802","name":"Bella Coola 1"}},{"type":"Feature","geometry":{"coordinates":[[[-126.55279928653542,52.61969878061118],[-126.64431122308983,52.57917611177711],[-126.68761624156303,52.59491217808546],[-126.75355485727445,52.56431265525701],[-126.82723152752256,52.48473396854788],[-126.8682800955877,52.49365395353628],[-126.87922798113314,52.380265205326225],[-126.8775118471354,52.3258881026616],[-126.90299490276266,52.29285597468953],[-126.87153193274673,52.249932795467544],[-126.81206060166805,52.223698929637294],[-126.77770243723212,52.22315441021751],[-126.769210600815,52.268456347029996],[-126.77300121636141,52.30233476693757],[-126.75256532836234,52.369364233969456],[-126.7482774862344,52.39357420710412],[-126.68285570097775,52.458341185481295],[-126.66021261641372,52.49822049393236],[-126.65895789977327,52.548616112806116],[-126.55563205258352,52.59027594183804],[-126.55279928653542,52.61969878061118]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Central Coast","census_subdivision":"Central Coast E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5945","census_subdivision_code":"5945014","name":"Central Coast E"}},{"type":"Feature","geometry":{"coordinates":[[[-116.51715446650577,49.03615948942998],[-116.52449935416635,49.06949108487828],[-116.54806692806721,49.04743244646491],[-116.51715446650577,49.03615948942998]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Creston 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903807","name":"Creston 1"}},{"type":"Feature","geometry":{"coordinates":[[[-116.49154874991099,49.16284699391711],[-116.5407625792812,49.168777206134806],[-116.5820094823867,49.19601929735957],[-116.66436088427133,49.2843353925405],[-116.68804910558987,49.27749180101012],[-116.694607523927,49.21385281365378],[-116.8385249674453,49.17904829837829],[-116.87117813026515,49.20462928576366],[-116.93762626039474,49.18602095229384],[-116.95893541101856,49.1600339736091],[-117.03882676381255,49.156073794696105],[-117.05441428917045,49.06947948016994],[-117.03035940921359,49.05094104827086],[-116.92451254571353,49.06423869839881],[-116.88535519849468,49.02845858492575],[-116.91355060811951,49.00007813374363],[-116.50344205409462,49.000005605983205],[-116.51715446650577,49.03615948942998],[-116.54806692806721,49.04743244646491],[-116.52449935416635,49.06949108487828],[-116.51242853641975,49.088242750415816],[-116.53365961845088,49.11978159338205],[-116.5072747485542,49.13102742683858],[-116.49154874991099,49.16284699391711]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903017","name":"Central Kootenay C"}},{"type":"Feature","geometry":{"coordinates":[[[-116.5072747485542,49.13102742683858],[-116.53365961845088,49.11978159338205],[-116.51242853641975,49.088242750415816],[-116.5072747485542,49.13102742683858]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Creston","type":"Town","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903004","name":"Creston"}},{"type":"Feature","geometry":{"coordinates":[[[-117.2937753461158,49.198352498629085],[-117.27096602050024,49.181903832168736],[-117.2717447765509,49.198471150203034],[-117.2937753461158,49.198352498629085]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Salmo","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903011","name":"Salmo"}},{"type":"Feature","geometry":{"coordinates":[[[-117.11966147647651,49.43779470371825],[-117.22963811888293,49.43629400477017],[-117.41692343393164,49.39353178994888],[-117.461001215864,49.33872286501865],[-117.49121921591279,49.33745224202128],[-117.49396124076006,49.17548721728699],[-117.52108378315998,49.08806024919708],[-117.46543061310206,49.08816612066588],[-117.46965213885188,49.000666577083685],[-116.91355060811951,49.00007813374363],[-116.88535519849468,49.02845858492575],[-116.92451254571353,49.06423869839881],[-117.03035940921359,49.05094104827086],[-117.05441428917045,49.06947948016994],[-117.03882676381255,49.156073794696105],[-117.04734945904582,49.20233327062729],[-117.00975730188878,49.254143236013846],[-117.07157575242282,49.321597701656515],[-117.05399684249672,49.36451554122612],[-117.10587670048874,49.38697290655956],[-117.11966147647651,49.43779470371825]],[[-117.2937753461158,49.198352498629085],[-117.2717447765509,49.198471150203034],[-117.27096602050024,49.181903832168736],[-117.2937753461158,49.198352498629085]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903047","name":"Central Kootenay G"}},{"type":"Feature","geometry":{"coordinates":[[[-116.21050892323741,49.41345508420873],[-116.28485128474536,49.47239782926558],[-116.2891020500988,49.50855369931729],[-116.31244729124815,49.52459907200855],[-116.36239332330555,49.513090415362555],[-116.42351199082972,49.53366079989407],[-116.46391818638445,49.49703315091826],[-116.54393810532264,49.46511129608134],[-116.53054033303664,49.39541534506937],[-116.58501298880712,49.360527092587546],[-116.59085955599507,49.338773008115],[-116.54956613118048,49.30018432998741],[-116.4997464877151,49.313465483104196],[-116.49226210649564,49.257917751718445],[-116.44277430239399,49.24555565195719],[-116.45153463961458,49.166336483102654],[-116.49154874991099,49.16284699391711],[-116.5072747485542,49.13102742683858],[-116.51242853641975,49.088242750415816],[-116.52449935416635,49.06949108487828],[-116.51715446650577,49.03615948942998],[-116.50344205409462,49.000005605983205],[-116.02704893324879,49.00091738604106],[-116.03246021518413,49.0587590953783],[-116.02847157461986,49.19754956964821],[-116.10076538905082,49.19845023496886],[-116.07007242429422,49.232015061833835],[-116.07262303399371,49.25864367306403],[-116.11549685593904,49.28828234025468],[-116.15847066786962,49.28335279143658],[-116.18895621938188,49.321934539683035],[-116.16533406787818,49.35228215272923],[-116.21050892323741,49.41345508420873]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903013","name":"Central Kootenay B"}},{"type":"Feature","geometry":{"coordinates":[[[-117.65403557194206,49.32857462440096],[-117.6828088414857,49.317432917805405],[-117.66514485170971,49.29941365416645],[-117.62763302342688,49.28906289862153],[-117.6306259463088,49.316248964458374],[-117.61336975839818,49.33101979400994],[-117.63105170131642,49.31675726341209],[-117.65330030729733,49.31599970151745],[-117.65403557194206,49.32857462440096]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Castlegar","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903045","name":"Castlegar"}},{"type":"Feature","geometry":{"coordinates":[[[-117.51695940987396,49.43592331791632],[-117.56282579155112,49.43984084142668],[-117.60150503767525,49.418427103051904],[-117.69158626887439,49.41814185486104],[-117.69232469876039,49.35308427768045],[-117.65403557194206,49.32857462440096],[-117.65330030729733,49.31599970151745],[-117.63105170131642,49.31675726341209],[-117.61336975839818,49.33101979400994],[-117.55493492584093,49.348707889736],[-117.52571815989377,49.39172492074081],[-117.51695940987396,49.43592331791632]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay I","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903056","name":"Central Kootenay I"}},{"type":"Feature","geometry":{"coordinates":[[[-118.00349871842442,49.69211659518365],[-118.09971752474675,49.70269891202326],[-118.15539166076753,49.72640552911838],[-118.2305956430644,49.718298864682566],[-118.26463130133733,49.80447183725977],[-118.312086272718,49.82352320655097],[-118.31219441177743,49.81230454222221],[-118.28725402163207,49.77884661003244],[-118.30130342500864,49.750188297211956],[-118.27545912555199,49.714179564305844],[-118.27544370341305,49.65838497682784],[-118.25337987782703,49.6206786123662],[-118.24487746701435,49.56156683089336],[-118.28736234122542,49.49490499328187],[-118.25283319489233,49.444493544825264],[-118.26419453154001,49.388950588946805],[-118.21929048010502,49.32836755057835],[-118.20766397487344,49.29580218388982],[-118.1358124841489,49.26400335243987],[-117.70309203458704,49.26534223293577],[-117.68361481742973,49.20853420748529],[-117.67427467372686,49.17504158960612],[-117.49396124076006,49.17548721728699],[-117.49121921591279,49.33745224202128],[-117.55493492584093,49.348707889736],[-117.61336975839818,49.33101979400994],[-117.6306259463088,49.316248964458374],[-117.62763302342688,49.28906289862153],[-117.66514485170971,49.29941365416645],[-117.6828088414857,49.317432917805405],[-117.65403557194206,49.32857462440096],[-117.69232469876039,49.35308427768045],[-117.69158626887439,49.41814185486104],[-117.75186015468556,49.497899711305635],[-117.82329031718122,49.508740207608255],[-117.8470676137352,49.53923190552523],[-117.93513598947932,49.53299720411202],[-118.01538290262592,49.570565341737506],[-118.00171942683221,49.612019652193744],[-118.00349871842442,49.69211659518365]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay J","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903058","name":"Central Kootenay J"}},{"type":"Feature","geometry":{"coordinates":[[[-116.69325430100396,49.87005989100147],[-116.88530688223713,49.869327196176755],[-116.88098027687887,49.810071323260914],[-116.89093827622351,49.69053127025523],[-116.90820942944767,49.63721105140775],[-116.83637739666736,49.58795440279195],[-116.813385991178,49.54421759112933],[-116.80563814049847,49.47495746414408],[-117.06866817331789,49.47276283353118],[-117.11966147647651,49.43779470371825],[-117.10587670048874,49.38697290655956],[-117.05399684249672,49.36451554122612],[-117.07157575242282,49.321597701656515],[-117.00975730188878,49.254143236013846],[-117.04734945904582,49.20233327062729],[-117.03882676381255,49.156073794696105],[-116.95893541101856,49.1600339736091],[-116.93762626039474,49.18602095229384],[-116.87117813026515,49.20462928576366],[-116.8385249674453,49.17904829837829],[-116.694607523927,49.21385281365378],[-116.68804910558987,49.27749180101012],[-116.66436088427133,49.2843353925405],[-116.5820094823867,49.19601929735957],[-116.5407625792812,49.168777206134806],[-116.49154874991099,49.16284699391711],[-116.45153463961458,49.166336483102654],[-116.44277430239399,49.24555565195719],[-116.49226210649564,49.257917751718445],[-116.4997464877151,49.313465483104196],[-116.54956613118048,49.30018432998741],[-116.59085955599507,49.338773008115],[-116.58501298880712,49.360527092587546],[-116.53054033303664,49.39541534506937],[-116.54393810532264,49.46511129608134],[-116.5795779336231,49.455198838148064],[-116.66735240062278,49.47221586665233],[-116.62516823619849,49.53884149748263],[-116.68921230925486,49.572742862304835],[-116.64829416925247,49.630752940213554],[-116.65732762046035,49.66781464576136],[-116.59057617494958,49.699372406393636],[-116.59092207198077,49.72489085373929],[-116.6394619032986,49.78513904314498],[-116.68504049161197,49.81180840305185],[-116.69325430100396,49.87005989100147]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903010","name":"Central Kootenay A"}},{"type":"Feature","geometry":{"coordinates":[[[[-117.48175094518051,49.451347456271364],[-117.46254982838587,49.4761346526735],[-117.50589511342443,49.4620061427179],[-117.48175094518051,49.451347456271364]]],[[[-117.27105593088197,49.51806570459452],[-117.33437078923878,49.494244686129825],[-117.28287536416275,49.472864392948125],[-117.27105593088197,49.51806570459452]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Nelson","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903015","name":"Nelson"}},{"type":"Feature","geometry":{"coordinates":[[[-116.89093827622351,49.69053127025523],[-117.06230905521294,49.690198046414864],[-117.11270088264743,49.70402692462447],[-117.1282011096644,49.73655157451753],[-117.18425925254964,49.756453348985346],[-117.15281039662146,49.72009075858139],[-117.14127750959995,49.67523105062704],[-117.16499280584526,49.599138192126084],[-117.24588007713461,49.55332859672333],[-117.27105593088197,49.51806570459452],[-117.28287536416275,49.472864392948125],[-117.33437078923878,49.494244686129825],[-117.44430198559166,49.48580970707451],[-117.46254982838587,49.4761346526735],[-117.48175094518051,49.451347456271364],[-117.51695940987396,49.43592331791632],[-117.52571815989377,49.39172492074081],[-117.55493492584093,49.348707889736],[-117.49121921591279,49.33745224202128],[-117.461001215864,49.33872286501865],[-117.41692343393164,49.39353178994888],[-117.22963811888293,49.43629400477017],[-117.11966147647651,49.43779470371825],[-117.06866817331789,49.47276283353118],[-116.80563814049847,49.47495746414408],[-116.813385991178,49.54421759112933],[-116.83637739666736,49.58795440279195],[-116.90820942944767,49.63721105140775],[-116.89093827622351,49.69053127025523]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903041","name":"Central Kootenay E"}},{"type":"Feature","geometry":{"coordinates":[[[-117.27105593088197,49.51806570459452],[-117.24588007713461,49.55332859672333],[-117.16499280584526,49.599138192126084],[-117.14127750959995,49.67523105062704],[-117.15281039662146,49.72009075858139],[-117.18425925254964,49.756453348985346],[-117.19272754226853,49.74374364008259],[-117.19066128243792,49.69801436251737],[-117.23150764351256,49.69917104528132],[-117.31680234986028,49.67846125673364],[-117.32262497858976,49.62396320561771],[-117.40298783547266,49.62150529598948],[-117.41741664825057,49.59833483209967],[-117.47437538716822,49.57338397962368],[-117.50308197275824,49.5749284124576],[-117.55516500558045,49.540688685700694],[-117.545433394722,49.48091464562069],[-117.50589511342443,49.4620061427179],[-117.46254982838587,49.4761346526735],[-117.44430198559166,49.48580970707451],[-117.33437078923878,49.494244686129825],[-117.27105593088197,49.51806570459452]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903043","name":"Central Kootenay F"}},{"type":"Feature","geometry":{"coordinates":[[[-117.46357228748316,49.76290579636515],[-117.46452197391102,49.77220856756741],[-117.47482891582952,49.76839430323266],[-117.46357228748316,49.76290579636515]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Slocan","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903019","name":"Slocan"}},{"type":"Feature","geometry":{"coordinates":[[[-117.19272754226853,49.74374364008259],[-117.22535338194363,49.75974291519745],[-117.19649825529717,49.783154677023965],[-117.22874248855457,49.84348380338546],[-117.18053959955357,49.87090045026895],[-117.17486143852462,49.92175545813138],[-117.130935608686,49.931656018680656],[-117.14396694830718,49.98245422494681],[-117.183243326069,49.993075554956164],[-117.21347082922225,50.05884699584052],[-117.17358961524779,50.0942449862864],[-117.16680541255731,50.12844417056574],[-117.23241349478688,50.135518171113716],[-117.20114612778016,50.18646446595702],[-117.27511412526032,50.208872608379515],[-117.25987925403936,50.237673577802425],[-117.22124049529035,50.25335340585529],[-117.23581152790715,50.294535387411244],[-117.27938110261347,50.29039917075391],[-117.33913912350921,50.25933874293023],[-117.36827302164575,50.27820672459088],[-117.36097787030738,50.325663725705674],[-117.39988987090234,50.35382535695924],[-117.44871368775601,50.34183444853963],[-117.46670045626,50.27693007486639],[-117.55582235314661,50.28125613322967],[-117.58209547017803,50.2570227137449],[-117.63836217161753,50.25860302280819],[-117.6714176891931,50.235825525216235],[-117.64334004166504,50.18431168143256],[-117.67771572797429,50.16870116221153],[-117.67863133136717,50.140963123782136],[-117.5995169784397,50.113964675418266],[-117.61204457469114,50.055642674456436],[-117.57267330777093,50.02709653430836],[-117.58884540499344,49.959393896392385],[-117.62522004868458,49.9523366619118],[-117.6315181861268,49.920042412611245],[-117.69507064499109,49.91962773862002],[-117.71280489780756,49.865984240088544],[-117.74249652906245,49.86435750370308],[-117.7456945055858,49.82713587822432],[-117.80881173457165,49.82416154360989],[-117.87275195558384,49.83608636135553],[-117.92955359886402,49.79889668480604],[-118.00349871842442,49.69211659518365],[-118.00171942683221,49.612019652193744],[-118.01538290262592,49.570565341737506],[-117.93513598947932,49.53299720411202],[-117.8470676137352,49.53923190552523],[-117.82329031718122,49.508740207608255],[-117.75186015468556,49.497899711305635],[-117.69158626887439,49.41814185486104],[-117.60150503767525,49.418427103051904],[-117.56282579155112,49.43984084142668],[-117.51695940987396,49.43592331791632],[-117.48175094518051,49.451347456271364],[-117.50589511342443,49.4620061427179],[-117.545433394722,49.48091464562069],[-117.55516500558045,49.540688685700694],[-117.50308197275824,49.5749284124576],[-117.47437538716822,49.57338397962368],[-117.41741664825057,49.59833483209967],[-117.40298783547266,49.62150529598948],[-117.32262497858976,49.62396320561771],[-117.31680234986028,49.67846125673364],[-117.23150764351256,49.69917104528132],[-117.19066128243792,49.69801436251737],[-117.19272754226853,49.74374364008259]],[[-117.35300401335412,49.95477320207441],[-117.36334870425908,49.9468297820381],[-117.36647160094554,49.9539470924299],[-117.35300401335412,49.95477320207441]],[[-117.46357228748316,49.76290579636515],[-117.47482891582952,49.76839430323266],[-117.46452197391102,49.77220856756741],[-117.46357228748316,49.76290579636515]],[[-117.37371095834767,49.996411441293375],[-117.37074274802423,49.98038043757016],[-117.38204186364372,49.980901789706195],[-117.38683474927512,49.99042689900655],[-117.37371095834767,49.996411441293375]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay H","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903052","name":"Central Kootenay H"}},{"type":"Feature","geometry":{"coordinates":[[[-116.92036611278074,49.91256028383226],[-116.90795446902126,49.90010058653197],[-116.89758696052617,49.90552069228449],[-116.9050014848287,49.919002696270084],[-116.92036611278074,49.91256028383226]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Kaslo","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903023","name":"Kaslo"}},{"type":"Feature","geometry":{"coordinates":[[[-117.35300401335412,49.95477320207441],[-117.36647160094554,49.9539470924299],[-117.36334870425908,49.9468297820381],[-117.35300401335412,49.95477320207441]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Silverton","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903027","name":"Silverton"}},{"type":"Feature","geometry":{"coordinates":[[[-117.37371095834767,49.996411441293375],[-117.38683474927512,49.99042689900655],[-117.38204186364372,49.980901789706195],[-117.37074274802423,49.98038043757016],[-117.37371095834767,49.996411441293375]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"New Denver","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903032","name":"New Denver"}},{"type":"Feature","geometry":{"coordinates":[[[-117.49973912642582,50.45714486830634],[-117.5820068596675,50.50299184361609],[-117.61585940162759,50.543700002691295],[-117.67110778781732,50.532434216444706],[-117.74067128082996,50.554376071143565],[-117.84988818030077,50.54238753057397],[-117.85697940448885,50.52785843494135],[-117.97792310440295,50.53284598226542],[-117.99433934043796,50.54810117898141],[-118.0138154431542,50.65312027348734],[-118.12326152850065,50.681227620171356],[-118.2072802831721,50.69028161896898],[-118.19598122657227,50.63420354080822],[-118.1626941566705,50.61146592926147],[-118.17966392685928,50.55358263454597],[-118.21530428510019,50.53806764185943],[-118.17606924447392,50.49311678020399],[-118.21205016044867,50.43941555570674],[-118.26758563206768,50.436218543711654],[-118.28208467420059,50.392415230310576],[-118.32689403391227,50.351999961747836],[-118.27545786572308,50.33980316057006],[-118.27606247819301,50.27865560871076],[-118.23912308610514,50.196296637692164],[-118.26372091216102,50.18142124416824],[-118.29139485668364,50.131286614007344],[-118.29352351152869,50.097815289410676],[-118.3381718594383,50.10072266560427],[-118.3982961742248,50.078761239011094],[-118.39976004321466,50.033423319855984],[-118.44811088553605,50.022615701905465],[-118.47351338277564,49.99952528095995],[-118.4158898028227,49.97304486669975],[-118.41870262594338,49.913602830563384],[-118.35388731562549,49.89178275812373],[-118.37859547434635,49.85911617477006],[-118.37440871389306,49.82458066663775],[-118.312086272718,49.82352320655097],[-118.26463130133733,49.80447183725977],[-118.2305956430644,49.718298864682566],[-118.15539166076753,49.72640552911838],[-118.09971752474675,49.70269891202326],[-118.00349871842442,49.69211659518365],[-117.92955359886402,49.79889668480604],[-117.87275195558384,49.83608636135553],[-117.80881173457165,49.82416154360989],[-117.7456945055858,49.82713587822432],[-117.74249652906245,49.86435750370308],[-117.71280489780756,49.865984240088544],[-117.69507064499109,49.91962773862002],[-117.6315181861268,49.920042412611245],[-117.62522004868458,49.9523366619118],[-117.58884540499344,49.959393896392385],[-117.57267330777093,50.02709653430836],[-117.61204457469114,50.055642674456436],[-117.5995169784397,50.113964675418266],[-117.67863133136717,50.140963123782136],[-117.67771572797429,50.16870116221153],[-117.64334004166504,50.18431168143256],[-117.6714176891931,50.235825525216235],[-117.63836217161753,50.25860302280819],[-117.58209547017803,50.2570227137449],[-117.55582235314661,50.28125613322967],[-117.46670045626,50.27693007486639],[-117.44871368775601,50.34183444853963],[-117.39988987090234,50.35382535695924],[-117.3589501122073,50.39632140869264],[-117.41260217582148,50.42483292633263],[-117.45413926088878,50.42542437282026],[-117.49973912642582,50.45714486830634]],[[-117.81735027635415,50.27460953584023],[-117.80230938629238,50.24899668651341],[-117.82647971286832,50.249664371719554],[-117.81735027635415,50.27460953584023]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay K","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903060","name":"Central Kootenay K"}},{"type":"Feature","geometry":{"coordinates":[[[-117.81735027635415,50.27460953584023],[-117.82647971286832,50.249664371719554],[-117.80230938629238,50.24899668651341],[-117.81735027635415,50.27460953584023]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Nakusp","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903050","name":"Nakusp"}},{"type":"Feature","geometry":{"coordinates":[[[-116.79654643996021,50.729302739875216],[-116.83701073886964,50.76145302431884],[-116.92144757779455,50.7735849152994],[-116.96425748118241,50.810290576881826],[-117.0381128605259,50.815003634393015],[-117.08360744551776,50.86556471864124],[-117.06896026836749,50.920149224688295],[-117.03310904908659,50.95809191738724],[-117.07030021209921,50.97027262652572],[-117.15522956539338,50.97584782625118],[-117.13788284412286,51.0280132335727],[-117.22434662963552,51.05925718683958],[-117.34750007263523,51.03888147326959],[-117.39019579859172,50.999796201161566],[-117.39780181533717,50.96119556530647],[-117.4382447922697,50.936669502194654],[-117.42611341638651,50.90396618170237],[-117.46728691805805,50.902411801208714],[-117.49018442547515,50.881186459407964],[-117.45362107536951,50.82908431348343],[-117.46679317660104,50.81119153689901],[-117.40565575984738,50.77931779240595],[-117.3819986431098,50.74615228035522],[-117.39288267739667,50.70914395718464],[-117.2758524568269,50.74418703090271],[-117.26342436116177,50.69254623903545],[-117.27369102075023,50.67083190175403],[-117.2297881699594,50.64827688566516],[-117.30679805179334,50.57744720001711],[-117.24503559820454,50.5350808001961],[-117.24384554388037,50.51947093453329],[-117.32119840019867,50.487318231775134],[-117.43589674571713,50.484368438524754],[-117.49435268679066,50.488988892955675],[-117.49973912642582,50.45714486830634],[-117.45413926088878,50.42542437282026],[-117.41260217582148,50.42483292633263],[-117.3589501122073,50.39632140869264],[-117.39988987090234,50.35382535695924],[-117.36097787030738,50.325663725705674],[-117.36827302164575,50.27820672459088],[-117.33913912350921,50.25933874293023],[-117.27938110261347,50.29039917075391],[-117.23581152790715,50.294535387411244],[-117.22124049529035,50.25335340585529],[-117.25987925403936,50.237673577802425],[-117.27511412526032,50.208872608379515],[-117.20114612778016,50.18646446595702],[-117.23241349478688,50.135518171113716],[-117.16680541255731,50.12844417056574],[-117.17358961524779,50.0942449862864],[-117.21347082922225,50.05884699584052],[-117.183243326069,49.993075554956164],[-117.14396694830718,49.98245422494681],[-117.130935608686,49.931656018680656],[-117.17486143852462,49.92175545813138],[-117.18053959955357,49.87090045026895],[-117.22874248855457,49.84348380338546],[-117.19649825529717,49.783154677023965],[-117.22535338194363,49.75974291519745],[-117.19272754226853,49.74374364008259],[-117.18425925254964,49.756453348985346],[-117.1282011096644,49.73655157451753],[-117.11270088264743,49.70402692462447],[-117.06230905521294,49.690198046414864],[-116.89093827622351,49.69053127025523],[-116.88098027687887,49.810071323260914],[-116.88530688223713,49.869327196176755],[-116.69325430100396,49.87005989100147],[-116.64563442305617,49.88259355752413],[-116.58480896741794,49.92968239280463],[-116.58389815177969,49.94883950177589],[-116.51013997437266,49.98499480977802],[-116.47188007906274,49.96623778311026],[-116.44311443784704,49.9792870222145],[-116.47143576804989,50.03791064354516],[-116.4982586314414,50.05618010999066],[-116.49516791198086,50.09379070020163],[-116.449918751439,50.13345714887188],[-116.5003323008954,50.19790702102963],[-116.55680954103985,50.21287620255935],[-116.55495536196722,50.283487679262784],[-116.61818524508013,50.31751283184777],[-116.61380064042663,50.35017829146398],[-116.65232234103344,50.420224498114685],[-116.72243351369123,50.46150912211554],[-116.68919403140751,50.49236998616407],[-116.6541312007466,50.59860330875128],[-116.5796138326163,50.64727593675566],[-116.60761921218696,50.66855061599877],[-116.74435872474545,50.678093906603664],[-116.78039618589942,50.69901011566727],[-116.79654643996021,50.729302739875216]],[[-116.92036611278074,49.91256028383226],[-116.9050014848287,49.919002696270084],[-116.89758696052617,49.90552069228449],[-116.90795446902126,49.90010058653197],[-116.92036611278074,49.91256028383226]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Central Kootenay","census_subdivision":"Central Kootenay D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5903","census_subdivision_code":"5903039","name":"Central Kootenay D"}},{"type":"Feature","geometry":{"coordinates":[[[-119.70672400956134,49.80255376660225],[-119.7205550933899,49.80239280556667],[-119.74849938576098,49.77380668492344],[-119.6622994605338,49.79944081410732],[-119.70672400956134,49.80255376660225]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Peachland","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935018","name":"Peachland"}},{"type":"Feature","geometry":{"coordinates":[[[-119.59633863430096,49.85665697727252],[-119.62519415799193,49.84792860286144],[-119.62539429219773,49.83138719084698],[-119.58876549118048,49.831095787251485],[-119.59633863430096,49.85665697727252]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Tsinstikeptum 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935802","name":"Tsinstikeptum 9"}},{"type":"Feature","geometry":{"coordinates":[[[-119.50698170862607,49.917952283726805],[-119.53344709866349,49.93981111989952],[-119.61800309773511,49.938230812380894],[-119.6198425284443,49.884972616160304],[-119.72492715690447,49.859091413137655],[-119.72589870426052,49.805690996221024],[-119.70672400956134,49.80255376660225],[-119.6622994605338,49.79944081410732],[-119.64828082492271,49.787830701730144],[-119.5897711296186,49.801470753516],[-119.52218399602232,49.8368662100169],[-119.50698170862607,49.917952283726805]],[[-119.54651250050385,49.87713759750405],[-119.5463522630643,49.89474266606645],[-119.52621521650897,49.88819445689608],[-119.54651250050385,49.87713759750405]],[[-119.59633863430096,49.85665697727252],[-119.58876549118048,49.831095787251485],[-119.62539429219773,49.83138719084698],[-119.62519415799193,49.84792860286144],[-119.59633863430096,49.85665697727252]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"West Kelowna","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935029","name":"West Kelowna"}},{"type":"Feature","geometry":{"coordinates":[[[-119.37552530261513,50.0050541288123],[-119.3991406314323,50.02011463317419],[-119.39163022844302,50.007586035936356],[-119.40288223707964,50.00540458063751],[-119.46289518659296,50.00436034184074],[-119.48451281072282,49.94093750762611],[-119.50698170862607,49.917952283726805],[-119.52218399602232,49.8368662100169],[-119.5897711296186,49.801470753516],[-119.5888443634451,49.773402742691296],[-119.5128448228136,49.788994533434426],[-119.4554958199196,49.78833529582757],[-119.4096129344747,49.82303017565718],[-119.35411739098754,49.8245081828291],[-119.33075318838235,49.87471082219233],[-119.33126149345584,49.91808342916018],[-119.37076198188831,49.92357286201457],[-119.37552530261513,50.0050541288123]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Kelowna","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935010","name":"Kelowna"}},{"type":"Feature","geometry":{"coordinates":[[[-119.54651250050385,49.87713759750405],[-119.52621521650897,49.88819445689608],[-119.5463522630643,49.89474266606645],[-119.54651250050385,49.87713759750405]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Tsinstikeptum 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935803","name":"Tsinstikeptum 10"}},{"type":"Feature","geometry":{"coordinates":[[[-119.05568075157318,49.81232225443617],[-118.97683788324505,49.892868610661715],[-118.85232835802493,49.95790191718066],[-118.80803768947813,49.955614480703076],[-118.82274210795471,49.99996711386366],[-118.80988513040057,50.02183867849786],[-118.86889732155115,50.05279009643828],[-118.94687217704995,50.057035492685365],[-119.06430607466596,50.03705022617848],[-119.17338962863226,50.04974320184619],[-119.16528887283373,50.0932897677502],[-119.14099606048138,50.11926973479365],[-119.146108022664,50.151247564669504],[-119.32903588684951,50.15110066039968],[-119.34750089791531,50.151305159135454],[-119.31718050398186,50.066484134774505],[-119.32959652454956,50.01609469152173],[-119.37552530261513,50.0050541288123],[-119.37076198188831,49.92357286201457],[-119.33126149345584,49.91808342916018],[-119.33075318838235,49.87471082219233],[-119.35411739098754,49.8245081828291],[-119.4096129344747,49.82303017565718],[-119.4554958199196,49.78833529582757],[-119.5128448228136,49.788994533434426],[-119.5888443634451,49.773402742691296],[-119.5897711296186,49.801470753516],[-119.64828082492271,49.787830701730144],[-119.69745585995102,49.77516161850759],[-119.69708950553331,49.76073836522758],[-119.55662402031756,49.760186025195004],[-119.48589747745856,49.74639297461415],[-119.45876379597655,49.72547007854944],[-119.42703348079017,49.675387991723134],[-119.37590573758658,49.67903282660881],[-119.27182000723032,49.7302139819892],[-119.22855429089353,49.735152846391],[-119.15273066272161,49.76400540362948],[-119.11572153000213,49.79094718905135],[-119.05568075157318,49.81232225443617]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Central Okanagan","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935012","name":"Central Okanagan"}},{"type":"Feature","geometry":{"coordinates":[[[-119.45948306650239,50.23123764330253],[-119.4716809871789,50.23489268031333],[-119.76180443064712,50.232820985095046],[-119.81312346926045,50.1768523618613],[-119.77720625831446,50.11997287916019],[-119.74113075242803,50.116046887640756],[-119.76910767278152,50.04315125525346],[-119.83228512994357,49.98051641304784],[-119.89308444723197,49.963881767181135],[-119.9509386811893,49.92023997849444],[-119.9774861257252,49.93140631411227],[-120.0295267914982,49.911890116821105],[-120.05479757827862,49.85570622338706],[-119.99164524938509,49.83388413910292],[-119.96700729744315,49.8122089599406],[-119.97953153291452,49.76625090091305],[-119.83699338047178,49.76565883206087],[-119.83590596512109,49.712625812231764],[-119.79408026479975,49.712410910990656],[-119.77174190336883,49.712442908234564],[-119.72866460602638,49.712062957493075],[-119.74157461057845,49.72482060868914],[-119.69745585995102,49.77516161850759],[-119.64828082492271,49.787830701730144],[-119.6622994605338,49.79944081410732],[-119.74849938576098,49.77380668492344],[-119.7205550933899,49.80239280556667],[-119.70672400956134,49.80255376660225],[-119.72589870426052,49.805690996221024],[-119.72492715690447,49.859091413137655],[-119.6198425284443,49.884972616160304],[-119.61800309773511,49.938230812380894],[-119.53344709866349,49.93981111989952],[-119.50698170862607,49.917952283726805],[-119.48451281072282,49.94093750762611],[-119.46289518659296,50.00436034184074],[-119.47431653510567,50.149953005047855],[-119.46075721894688,50.21119038524712],[-119.45948306650239,50.23123764330253]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Central Okanagan West","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935020","name":"Central Okanagan West"}},{"type":"Feature","geometry":{"coordinates":[[[-119.40288223707964,50.00540458063751],[-119.39163022844302,50.007586035936356],[-119.3991406314323,50.02011463317419],[-119.40288223707964,50.00540458063751]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Duck Lake 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935801","name":"Duck Lake 7"}},{"type":"Feature","geometry":{"coordinates":[[[-119.37552530261513,50.0050541288123],[-119.32959652454956,50.01609469152173],[-119.31718050398186,50.066484134774505],[-119.34750089791531,50.151305159135454],[-119.4196278662286,50.151364341754636],[-119.45316062829207,50.150748904886704],[-119.47431653510567,50.149953005047855],[-119.46289518659296,50.00436034184074],[-119.40288223707964,50.00540458063751],[-119.3991406314323,50.02011463317419],[-119.37552530261513,50.0050541288123]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Central Okanagan","census_subdivision":"Lake Country","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5935","census_subdivision_code":"5935016","name":"Lake Country"}},{"type":"Feature","geometry":{"coordinates":[[[-119.32892854352538,50.469983349042366],[-119.34374882519111,50.4850992028289],[-119.36022873986713,50.46037636037068],[-119.35239100234091,50.41617074052406],[-119.31786342611008,50.416146245596984],[-119.32892854352538,50.469983349042366]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Okanagan (Part) 1 - North Okanagan","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939804","name":"Okanagan (Part) 1 - North Okanagan"}},{"type":"Feature","geometry":{"coordinates":[[[-119.30811639755586,50.5145723787715],[-119.34374882519111,50.4850992028289],[-119.32892854352538,50.469983349042366],[-119.29738276493796,50.47135010814293],[-119.30811639755586,50.5145723787715]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Salmon River 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939806","name":"Salmon River 1"}},{"type":"Feature","geometry":{"coordinates":[[[-119.38724767163588,50.725990626055136],[-119.41480931648968,50.74259352260209],[-119.48260913637743,50.71810417933524],[-119.52473385603027,50.74459590282901],[-119.52549805361696,50.57656516083],[-119.62882624392778,50.57611119197024],[-119.65150924325592,50.56897795219864],[-119.65139328119909,50.40205146558443],[-119.64448665191006,50.40210758142982],[-119.58186485203649,50.445701550771126],[-119.52493477467372,50.431032276972125],[-119.44636506457506,50.430853694181536],[-119.4457064548474,50.415957521012714],[-119.35239100234091,50.41617074052406],[-119.36022873986713,50.46037636037068],[-119.34374882519111,50.4850992028289],[-119.30811639755586,50.5145723787715],[-119.30846641971793,50.52860320799074],[-119.18337170821098,50.52781476928139],[-119.18353745063396,50.543866499966434],[-119.18082643341994,50.66403054358253],[-119.2492301997631,50.663697871505526],[-119.24939498792912,50.633988433052274],[-119.38788734405118,50.63429768815059],[-119.38724767163588,50.725990626055136]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Columbia-Shuswap D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939039","name":"Columbia-Shuswap D"}},{"type":"Feature","geometry":{"coordinates":[[[-119.20396338203803,50.76817212312795],[-119.32370132978475,50.75114781907399],[-119.38738532184871,50.75132807591049],[-119.38724767163588,50.725990626055136],[-119.38788734405118,50.63429768815059],[-119.24939498792912,50.633988433052274],[-119.2492301997631,50.663697871505526],[-119.18082643341994,50.66403054358253],[-119.17800854869746,50.75009593852145],[-119.20396338203803,50.76817212312795]],[[-119.3304931412827,50.72037313340667],[-119.33148435412977,50.73821404846184],[-119.30939322020835,50.73552216898598],[-119.31475910019637,50.720681187666614],[-119.31092541243392,50.70302315076333],[-119.31279540530797,50.69901113260372],[-119.3304931412827,50.72037313340667]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Salmon Arm","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939032","name":"Salmon Arm"}},{"type":"Feature","geometry":{"coordinates":[[[-119.31092541243392,50.70302315076333],[-119.31475910019637,50.720681187666614],[-119.3304931412827,50.72037313340667],[-119.31279540530797,50.69901113260372],[-119.31092541243392,50.70302315076333]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Switsemalph 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939808","name":"Switsemalph 3"}},{"type":"Feature","geometry":{"coordinates":[[[-119.31475910019637,50.720681187666614],[-119.30939322020835,50.73552216898598],[-119.33148435412977,50.73821404846184],[-119.3304931412827,50.72037313340667],[-119.31475910019637,50.720681187666614]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Switsemalph","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939811","name":"Switsemalph"}},{"type":"Feature","geometry":{"coordinates":[[[-119.3292114071863,50.79341382519463],[-119.34125797567407,50.785957081828855],[-119.30425303726457,50.77824448883099],[-119.30505040765686,50.79312346699727],[-119.3292114071863,50.79341382519463]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"North Bay 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939803","name":"North Bay 5"}},{"type":"Feature","geometry":{"coordinates":[[[-119.01175253751313,50.84825212639767],[-118.98659199683546,50.82211549041614],[-118.943654152286,50.85327271733547],[-119.01175253751313,50.84825212639767]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Sicamous","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939045","name":"Sicamous"}},{"type":"Feature","geometry":{"coordinates":[[[-118.99281558139243,50.99999662071179],[-119.04259624465804,50.99987956322083],[-119.09401626442418,50.97273699419848],[-119.15318184904542,50.9560785081428],[-119.29057155184606,50.94444132470796],[-119.38249066257514,50.927702036174765],[-119.40178183843378,50.905807303936825],[-119.45651523854359,50.892632732977916],[-119.50403723010965,50.897081939828475],[-119.56219538408563,50.88086270708062],[-119.60538801587671,50.86634146063707],[-119.60410284063958,50.864697968284055],[-119.57436667603086,50.8669406547723],[-119.51681660932893,50.86734923056418],[-119.51647721056837,50.83861348937051],[-119.46079738660987,50.83838732789521],[-119.46209787253659,50.7505814943547],[-119.52473385603027,50.74459590282901],[-119.48260913637743,50.71810417933524],[-119.41480931648968,50.74259352260209],[-119.38724767163588,50.725990626055136],[-119.38738532184871,50.75132807591049],[-119.32370132978475,50.75114781907399],[-119.20396338203803,50.76817212312795],[-119.17064896613309,50.78713822397158],[-119.04811720342241,50.82526063033588],[-119.05845828201556,50.92149518178939],[-119.02105766070632,50.94882135426681],[-118.99281558139243,50.99999662071179]],[[-119.3292114071863,50.79341382519463],[-119.30505040765686,50.79312346699727],[-119.30425303726457,50.77824448883099],[-119.34125797567407,50.785957081828855],[-119.3292114071863,50.79341382519463]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Columbia-Shuswap C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939037","name":"Columbia-Shuswap C"}},{"type":"Feature","geometry":{"coordinates":[[[-119.57436667603086,50.8669406547723],[-119.60410284063958,50.864697968284055],[-119.60513459153961,50.85393492096201],[-119.60226573806622,50.853883460148836],[-119.57436667603086,50.8669406547723]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Chum Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939801","name":"Chum Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-119.56219538408563,50.88086270708062],[-119.60906621024864,50.90191272330083],[-119.66419384683739,50.86772658977897],[-119.60996142557744,50.87006325025438],[-119.60538801587671,50.86634146063707],[-119.56219538408563,50.88086270708062]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Quaaout 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939805","name":"Quaaout 1"}},{"type":"Feature","geometry":{"coordinates":[[[-119.48715114370509,50.93474609801887],[-119.49608731885488,50.92001987239197],[-119.46004147601963,50.91636640976583],[-119.46071627703512,50.934713844450286],[-119.48715114370509,50.93474609801887]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Scotch Creek 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939807","name":"Scotch Creek 4"}},{"type":"Feature","geometry":{"coordinates":[[[-119.65601652641274,50.939064470829955],[-119.62402762317645,50.94862946978891],[-119.61589620731793,50.97237219033707],[-119.66906782293843,50.9582727000753],[-119.65601652641274,50.939064470829955]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Hustalen 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939802","name":"Hustalen 1"}},{"type":"Feature","geometry":{"coordinates":[[[-118.6000035892796,51.31009100421561],[-118.62834576253185,51.301023223823066],[-118.7069418069625,51.30542410672873],[-118.72939220037296,51.28755998166383],[-118.69971320661344,51.258709629872826],[-118.73693290567691,51.21618527746516],[-118.71767625605247,51.16952890203032],[-118.73953139709418,51.12660130658587],[-118.7725878479959,51.11176998930351],[-118.75813372913123,51.07061186058235],[-118.82710186260131,51.04681085128411],[-118.96783742471786,51.03077271171156],[-118.99281558139243,50.99999662071179],[-119.02105766070632,50.94882135426681],[-119.05845828201556,50.92149518178939],[-119.04811720342241,50.82526063033588],[-119.17064896613309,50.78713822397158],[-119.20396338203803,50.76817212312795],[-119.17800854869746,50.75009593852145],[-118.88303733623769,50.75042413047028],[-118.8126549032231,50.78667698397021],[-118.7781270218073,50.82604449954068],[-118.69937430803343,50.81120373171168],[-118.66444885990435,50.823020170810125],[-118.65161028650394,50.85323037689627],[-118.60960390903884,50.89411388219153],[-118.61277894389913,50.92461999331034],[-118.533769090753,50.93457264904485],[-118.4706348793324,50.89455705771244],[-118.4115930713829,50.882671647569765],[-118.31442671730173,50.88836758013088],[-118.33287901662843,50.94770916279646],[-118.35335005985733,50.963357147786056],[-118.36092688749385,51.00872086179404],[-118.40355033552237,50.99815049373207],[-118.42570053991774,51.01624733983301],[-118.43222163000955,51.07246733743527],[-118.48129900243153,51.10181746013434],[-118.49157562668142,51.14691690139585],[-118.46943179946392,51.17051308444874],[-118.53508540986728,51.17761607643799],[-118.54423852640848,51.21415026483755],[-118.57683658321817,51.25189919736325],[-118.54971100209248,51.279164968281414],[-118.6000035892796,51.31009100421561]],[[-119.01175253751313,50.84825212639767],[-118.943654152286,50.85327271733547],[-118.98659199683546,50.82211549041614],[-119.01175253751313,50.84825212639767]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Columbia-Shuswap E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939043","name":"Columbia-Shuswap E"}},{"type":"Feature","geometry":{"coordinates":[[[-118.20175079808142,51.063073143056684],[-118.24477805275063,51.03272023584967],[-118.24150418873161,50.99873750843613],[-118.19571485174968,50.95189950872822],[-118.14568770394177,50.96113009556371],[-118.14197321605074,50.997108916475554],[-118.21295394699747,51.02036833437132],[-118.17745400651452,51.0491509790718],[-118.20175079808142,51.063073143056684]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Revelstoke","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939019","name":"Revelstoke"}},{"type":"Feature","geometry":{"coordinates":[[[-118.92386926889019,51.68956225211715],[-118.93782763499192,51.70272153474947],[-119.00994132172315,51.687260331795045],[-118.97798879549991,51.64407000227665],[-118.96055967831114,51.60952164797827],[-118.98368790541764,51.54235816003254],[-118.95019426570818,51.507398369566864],[-118.9534538741414,51.46131035394043],[-119.02902696490762,51.42290157536584],[-119.05878826370471,51.39501142599631],[-119.18704895813184,51.35449509980522],[-119.19242495283454,51.31760557657068],[-119.22098710116555,51.311124603392926],[-119.23722320792575,51.268109228029275],[-119.29399449073557,51.24634292622944],[-119.3708816411726,51.25549364424913],[-119.44069469321866,51.221772775535975],[-119.43965648890668,51.18228344660909],[-119.48393414795052,51.17372818304496],[-119.52569883935175,51.10664693173659],[-119.50713150984751,51.06665214955037],[-119.54807206314442,51.01103044779492],[-119.536918404455,50.98359434586235],[-119.70453126624193,50.98370475601514],[-119.66906782293843,50.9582727000753],[-119.61589620731793,50.97237219033707],[-119.62402762317645,50.94862946978891],[-119.65601652641274,50.939064470829955],[-119.66419384683739,50.86772658977897],[-119.60906621024864,50.90191272330083],[-119.56219538408563,50.88086270708062],[-119.50403723010965,50.897081939828475],[-119.45651523854359,50.892632732977916],[-119.40178183843378,50.905807303936825],[-119.38249066257514,50.927702036174765],[-119.29057155184606,50.94444132470796],[-119.15318184904542,50.9560785081428],[-119.09401626442418,50.97273699419848],[-119.04259624465804,50.99987956322083],[-118.99281558139243,50.99999662071179],[-118.96783742471786,51.03077271171156],[-118.82710186260131,51.04681085128411],[-118.75813372913123,51.07061186058235],[-118.7725878479959,51.11176998930351],[-118.73953139709418,51.12660130658587],[-118.71767625605247,51.16952890203032],[-118.73693290567691,51.21618527746516],[-118.69971320661344,51.258709629872826],[-118.72939220037296,51.28755998166383],[-118.7069418069625,51.30542410672873],[-118.62834576253185,51.301023223823066],[-118.6000035892796,51.31009100421561],[-118.6165552686062,51.36297442832778],[-118.58153785141016,51.39008736770087],[-118.6168379370873,51.409338327001905],[-118.63253735056647,51.46376294181544],[-118.67521940851866,51.46089749435367],[-118.71487464462496,51.490174640476084],[-118.74208204352477,51.528673540154436],[-118.83232494835455,51.53105003118391],[-118.8177043004677,51.62664166789373],[-118.90369779020921,51.65674025187318],[-118.92386926889019,51.68956225211715]],[[-119.48715114370509,50.93474609801887],[-119.46071627703512,50.934713844450286],[-119.46004147601963,50.91636640976583],[-119.49608731885488,50.92001987239197],[-119.48715114370509,50.93474609801887]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Columbia-Shuswap F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939044","name":"Columbia-Shuswap F"}},{"type":"Feature","geometry":{"coordinates":[[[-116.97061451254538,51.31447465862342],[-116.98910288107129,51.30243719040775],[-116.96887337788304,51.280205295825795],[-116.9410254455321,51.306760666137635],[-116.97061451254538,51.31447465862342]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Golden","type":"Town","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939007","name":"Golden"}},{"type":"Feature","geometry":{"coordinates":[[[-117.34750007263523,51.03888147326959],[-117.38377516876098,51.074726660105206],[-117.38020130394315,51.10376999401569],[-117.45743834516422,51.10464498998474],[-117.45271176130838,51.074401934828884],[-117.47806424104962,51.057267902023725],[-117.54546576484077,51.09029623674657],[-117.64821698566031,51.06890196524722],[-117.71517955653424,51.08517043188039],[-117.67930467997074,51.10916357407171],[-117.67106064907983,51.167155019093485],[-117.7077176951842,51.18133380828237],[-117.72841481802347,51.24156741652155],[-117.72211237283302,51.274525065632794],[-117.76854380417296,51.34184086509545],[-117.83969550413121,51.37159378774063],[-117.89208597278399,51.42605824163287],[-117.97092459831106,51.47717332870423],[-117.98858038800034,51.499876269539975],[-117.93944431281051,51.530941643038105],[-117.98139829223348,51.57457541886958],[-117.97371141676516,51.639326388870884],[-117.94112578825519,51.648199888544646],[-117.92681298808273,51.72367066176858],[-118.01368407577134,51.74467829131538],[-118.02449547369453,51.72534791983611],[-118.12554634726746,51.72390210199941],[-118.13035379235853,51.778971483115285],[-118.1898428349104,51.79146531850443],[-118.15124484590514,51.827446120596996],[-118.1487285168109,51.863474270191155],[-118.12404190319471,51.88908177089663],[-118.17504180119107,51.907282792944464],[-118.17436360763372,51.9372055550288],[-118.21864778524909,51.975185121544165],[-118.27529694515184,51.964659225707166],[-118.33067716722233,51.99252772610598],[-118.39232923922866,51.97992214672753],[-118.39724626156811,52.02936225856538],[-118.45589420511169,52.06323014606937],[-118.44034518482613,52.075015097941815],[-118.45349806269013,52.1864814099681],[-118.4644054509403,52.22401868987265],[-118.54052473561096,52.27299510773035],[-118.58241469667689,52.193001603147486],[-118.64008122226434,52.16955216580092],[-118.71606235300881,52.161344260022496],[-118.75197844802769,52.18515182751224],[-118.80320419853614,52.17722257400103],[-118.83366979070992,52.164311897583474],[-118.87280812185531,52.07601766827151],[-118.85593896296875,52.04563434865206],[-118.94425761882322,52.02619783672693],[-118.97185248201436,51.977219586851376],[-118.89102988450458,51.954074183777315],[-118.9085192825515,51.928060240006324],[-118.98775403623618,51.93130247601258],[-118.96595103459693,51.88711097535229],[-118.99013456256455,51.86455306858364],[-118.95028877691648,51.84948141682526],[-118.9613926496334,51.81057019801279],[-118.88681284570195,51.7750449336348],[-118.88550715385679,51.73310306642999],[-118.92386926889019,51.68956225211715],[-118.90369779020921,51.65674025187318],[-118.8177043004677,51.62664166789373],[-118.83232494835455,51.53105003118391],[-118.74208204352477,51.528673540154436],[-118.71487464462496,51.490174640476084],[-118.67521940851866,51.46089749435367],[-118.63253735056647,51.46376294181544],[-118.6168379370873,51.409338327001905],[-118.58153785141016,51.39008736770087],[-118.6165552686062,51.36297442832778],[-118.6000035892796,51.31009100421561],[-118.54971100209248,51.279164968281414],[-118.57683658321817,51.25189919736325],[-118.54423852640848,51.21415026483755],[-118.53508540986728,51.17761607643799],[-118.46943179946392,51.17051308444874],[-118.49157562668142,51.14691690139585],[-118.48129900243153,51.10181746013434],[-118.43222163000955,51.07246733743527],[-118.42570053991774,51.01624733983301],[-118.40355033552237,50.99815049373207],[-118.36092688749385,51.00872086179404],[-118.35335005985733,50.963357147786056],[-118.33287901662843,50.94770916279646],[-118.31442671730173,50.88836758013088],[-118.29428161423951,50.86440291034162],[-118.24189769910171,50.75519283945533],[-118.205853691659,50.738925062599016],[-118.2072802831721,50.69028161896898],[-118.12326152850065,50.681227620171356],[-118.0138154431542,50.65312027348734],[-117.99433934043796,50.54810117898141],[-117.97792310440295,50.53284598226542],[-117.85697940448885,50.52785843494135],[-117.84988818030077,50.54238753057397],[-117.74067128082996,50.554376071143565],[-117.67110778781732,50.532434216444706],[-117.61585940162759,50.543700002691295],[-117.5820068596675,50.50299184361609],[-117.49973912642582,50.45714486830634],[-117.49435268679066,50.488988892955675],[-117.43589674571713,50.484368438524754],[-117.32119840019867,50.487318231775134],[-117.24384554388037,50.51947093453329],[-117.24503559820454,50.5350808001961],[-117.30679805179334,50.57744720001711],[-117.2297881699594,50.64827688566516],[-117.27369102075023,50.67083190175403],[-117.26342436116177,50.69254623903545],[-117.2758524568269,50.74418703090271],[-117.39288267739667,50.70914395718464],[-117.3819986431098,50.74615228035522],[-117.40565575984738,50.77931779240595],[-117.46679317660104,50.81119153689901],[-117.45362107536951,50.82908431348343],[-117.49018442547515,50.881186459407964],[-117.46728691805805,50.902411801208714],[-117.42611341638651,50.90396618170237],[-117.4382447922697,50.936669502194654],[-117.39780181533717,50.96119556530647],[-117.39019579859172,50.999796201161566],[-117.34750007263523,51.03888147326959]],[[-118.20175079808142,51.063073143056684],[-118.17745400651452,51.0491509790718],[-118.21295394699747,51.02036833437132],[-118.14197321605074,50.997108916475554],[-118.14568770394177,50.96113009556371],[-118.19571485174968,50.95189950872822],[-118.24150418873161,50.99873750843613],[-118.24477805275063,51.03272023584967],[-118.20175079808142,51.063073143056684]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Columbia-Shuswap B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939023","name":"Columbia-Shuswap B"}},{"type":"Feature","geometry":{"coordinates":[[[-117.31730287210712,52.19404201548251],[-117.33403622995279,52.14864145776575],[-117.38125574043181,52.13772407759406],[-117.50017801526667,52.1442736720973],[-117.52311532294216,52.15824608991329],[-117.61126381283381,52.14425889856054],[-117.66352952334486,52.19789299233723],[-117.74134637875814,52.20299738708301],[-117.81831749566786,52.226354813822496],[-117.83957806474518,52.274127445903936],[-117.75287839938595,52.316423609757386],[-117.70579503120742,52.3653448745019],[-117.76649799083394,52.417692152543154],[-117.88693304606988,52.426091585568685],[-117.96679241620095,52.469708726981956],[-117.9879849034058,52.50023848971107],[-118.052899059003,52.44956354099687],[-118.03036292672128,52.438077475881386],[-118.04416878304134,52.3984593604873],[-118.13804609686925,52.407497505511124],[-118.21277316802475,52.3703414530341],[-118.22601544486646,52.38028948983244],[-118.25420275558695,52.347971552243564],[-118.28975577098262,52.33895049731478],[-118.31710963352782,52.36777840841181],[-118.35364733518178,52.36605482322305],[-118.39524391856708,52.334845826716084],[-118.49312467464128,52.312498632154536],[-118.50156617668566,52.281673122784596],[-118.54052473561096,52.27299510773035],[-118.4644054509403,52.22401868987265],[-118.45349806269013,52.1864814099681],[-118.44034518482613,52.075015097941815],[-118.45589420511169,52.06323014606937],[-118.39724626156811,52.02936225856538],[-118.39232923922866,51.97992214672753],[-118.33067716722233,51.99252772610598],[-118.27529694515184,51.964659225707166],[-118.21864778524909,51.975185121544165],[-118.17436360763372,51.9372055550288],[-118.17504180119107,51.907282792944464],[-118.12404190319471,51.88908177089663],[-118.1487285168109,51.863474270191155],[-118.15124484590514,51.827446120596996],[-118.1898428349104,51.79146531850443],[-118.13035379235853,51.778971483115285],[-118.12554634726746,51.72390210199941],[-118.02449547369453,51.72534791983611],[-118.01368407577134,51.74467829131538],[-117.92681298808273,51.72367066176858],[-117.94112578825519,51.648199888544646],[-117.97371141676516,51.639326388870884],[-117.98139829223348,51.57457541886958],[-117.93944431281051,51.530941643038105],[-117.98858038800034,51.499876269539975],[-117.97092459831106,51.47717332870423],[-117.89208597278399,51.42605824163287],[-117.83969550413121,51.37159378774063],[-117.76854380417296,51.34184086509545],[-117.72211237283302,51.274525065632794],[-117.72841481802347,51.24156741652155],[-117.7077176951842,51.18133380828237],[-117.67106064907983,51.167155019093485],[-117.67930467997074,51.10916357407171],[-117.71517955653424,51.08517043188039],[-117.64821698566031,51.06890196524722],[-117.54546576484077,51.09029623674657],[-117.47806424104962,51.057267902023725],[-117.45271176130838,51.074401934828884],[-117.45743834516422,51.10464498998474],[-117.38020130394315,51.10376999401569],[-117.38377516876098,51.074726660105206],[-117.34750007263523,51.03888147326959],[-117.22434662963552,51.05925718683958],[-117.13788284412286,51.0280132335727],[-117.15522956539338,50.97584782625118],[-117.07030021209921,50.97027262652572],[-117.03310904908659,50.95809191738724],[-117.06896026836749,50.920149224688295],[-117.08360744551776,50.86556471864124],[-117.0381128605259,50.815003634393015],[-116.96425748118241,50.810290576881826],[-116.92144757779455,50.7735849152994],[-116.83701073886964,50.76145302431884],[-116.79654643996021,50.729302739875216],[-116.77195356746861,50.766737958770676],[-116.74535170313752,50.77129568884785],[-116.74588396532083,50.81621239659339],[-116.76398757191296,50.847311383156544],[-116.73346219408349,50.87637915496985],[-116.67215888172261,50.88978323196004],[-116.62872660508808,50.920674279073076],[-116.53571241534496,50.92097309188314],[-116.53538045949412,50.935136723132025],[-116.44436274062882,50.94982226762956],[-116.3183234808001,50.94907748264877],[-116.41847237086908,51.03658640396449],[-116.33978378657682,51.06435332563616],[-116.31847068437476,51.09546201337449],[-116.26216188010682,51.126552238542345],[-116.29754153332244,51.179967730135],[-116.34646836511426,51.207781315441416],[-116.26336505937677,51.22179893467541],[-116.29657160518892,51.2616938801774],[-116.28260412393536,51.331501844362656],[-116.27725511090055,51.35469463990046],[-116.31143488790585,51.384962212570066],[-116.28247020553944,51.40683673284997],[-116.2924303037759,51.461802684977286],[-116.36059709565997,51.47086614517857],[-116.39382922260067,51.505662937667694],[-116.39088604957452,51.54558824834865],[-116.45292502639066,51.560548148161544],[-116.47141114012922,51.6046775992465],[-116.59501567269915,51.66183009426284],[-116.5811763650072,51.69728153922741],[-116.59853466348534,51.72387366577272],[-116.65034888460362,51.75370643522557],[-116.64314652953036,51.786708616762674],[-116.68207610185401,51.81214658027921],[-116.74423247110073,51.80660801720602],[-116.81859819337684,51.735564473761016],[-116.80974116725413,51.70534635005769],[-116.92056790791625,51.70980326840904],[-116.97636058180547,51.76018497849208],[-116.96400220933998,51.79495126276432],[-117.03432087448209,51.85980742590019],[-117.0194649484734,51.89135999979194],[-117.09765211795951,51.93969519778996],[-117.10317598352606,51.95651679690676],[-117.19722361297165,51.98013484051766],[-117.2985929645211,52.0942816590616],[-117.31730287210712,52.19404201548251]],[[-116.97061451254538,51.31447465862342],[-116.9410254455321,51.306760666137635],[-116.96887337788304,51.280205295825795],[-116.98910288107129,51.30243719040775],[-116.97061451254538,51.31447465862342]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Columbia-Shuswap","census_subdivision":"Columbia-Shuswap A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5939","census_subdivision_code":"5939011","name":"Columbia-Shuswap A"}},{"type":"Feature","geometry":{"coordinates":[[[-124.95188228808195,49.670378569229044],[-124.97589584977952,49.679423067328635],[-125.00847004010618,49.664897070837014],[-125.01001700159252,49.653364802333535],[-124.99419098895426,49.61208968490339],[-125.08729116168507,49.60708028309489],[-125.1149423144749,49.573142084393645],[-125.11470643827988,49.51481257547578],[-125.06905560525256,49.477583457359714],[-125.02250708089814,49.49237605486553],[-125.00985553557436,49.459135330329445],[-124.9708356080144,49.43351325823819],[-124.96813235767269,49.43338667776203],[-124.85934462145121,49.43308701309076],[-124.82314066031182,49.40489815367689],[-124.73357320238365,49.40474425028296],[-124.73345424565458,49.439579451485024],[-124.75630832167967,49.470249737922124],[-124.51744554513553,49.46982078518735],[-124.46536673440677,49.46977996591827],[-124.50035088132333,49.499874428996854],[-124.50063090643563,49.54868770645227],[-124.53037124621943,49.57496983534866],[-124.65287531999276,49.63758412061784],[-124.69466622933031,49.66599558793341],[-124.82724061928288,49.65306468882255],[-124.89371049969944,49.65271128704519],[-124.91428443507655,49.665455104106954],[-124.95188228808195,49.670378569229044]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Comox Valley A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926021","name":"Comox Valley A"}},{"type":"Feature","geometry":{"coordinates":[[[-125.01001700159252,49.653364802333535],[-125.08032890648732,49.646629644391474],[-125.08729116168507,49.60708028309489],[-124.99419098895426,49.61208968490339],[-125.01001700159252,49.653364802333535]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Cumberland","type":"Village","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926014","name":"Cumberland"}},{"type":"Feature","geometry":{"coordinates":[[[-124.91428443507655,49.665455104106954],[-124.94538184776411,49.69370193055559],[-124.95269746642863,49.688736781926],[-124.95640173135921,49.68438726714982],[-124.94978792021985,49.68246095762456],[-124.95022564414518,49.67402016744152],[-124.95188228808195,49.670378569229044],[-124.91428443507655,49.665455104106954]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Comox","type":"Town","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926005","name":"Comox"}},{"type":"Feature","geometry":{"coordinates":[[[-124.95022564414518,49.67402016744152],[-124.94978792021985,49.68246095762456],[-124.95640173135921,49.68438726714982],[-124.95022564414518,49.67402016744152]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Comox 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926801","name":"Comox 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.01054938742013,49.690770187050965],[-124.99929025101387,49.70254597507675],[-125.0151456977281,49.69462213965035],[-125.01054938742013,49.690770187050965]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Pentledge 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926802","name":"Pentledge 2"}},{"type":"Feature","geometry":{"coordinates":[[[-124.94538184776411,49.69370193055559],[-124.93313970805437,49.73377174267191],[-125.01304248399205,49.707626851159745],[-124.99929025101387,49.70254597507675],[-125.01054938742013,49.690770187050965],[-125.00847004010618,49.664897070837014],[-124.97589584977952,49.679423067328635],[-124.95269746642863,49.688736781926],[-124.94538184776411,49.69370193055559]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Courtenay","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926010","name":"Courtenay"}},{"type":"Feature","geometry":{"coordinates":[[[[-124.95269746642863,49.688736781926],[-124.97589584977952,49.679423067328635],[-124.95188228808195,49.670378569229044],[-124.95022564414518,49.67402016744152],[-124.95640173135921,49.68438726714982],[-124.95269746642863,49.688736781926]]],[[[-124.82821487149307,49.80289142309788],[-125.00682357618693,49.79403860713552],[-125.04783759468289,49.771462690405876],[-125.01079424688143,49.73043055885673],[-125.01304248399205,49.707626851159745],[-124.93313970805437,49.73377174267191],[-124.94538184776411,49.69370193055559],[-124.91428443507655,49.665455104106954],[-124.89371049969944,49.65271128704519],[-124.82724061928288,49.65306468882255],[-124.69466622933031,49.66599558793341],[-124.74904382304956,49.71026205213603],[-124.79951431295218,49.76753048169058],[-124.82821487149307,49.80289142309788]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Comox Valley B (Lazo North)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926022","name":"Comox Valley B (Lazo North)"}},{"type":"Feature","geometry":{"coordinates":[[[-124.88418210667116,49.873205504901605],[-125.00030469675731,49.870986644356975],[-125.11250732465854,49.87473289849452],[-125.15389069936462,49.86552539561365],[-125.19838648838395,49.886941093337384],[-125.25663560264043,49.896940496821365],[-125.28106423530942,49.885018396800156],[-125.32372802838138,49.919740317040315],[-125.35188710728463,49.91052413659281],[-125.35599680588923,49.87450628685312],[-125.40343322746598,49.87447880022029],[-125.42315120300469,49.82885550489648],[-125.48570589810844,49.82747354591419],[-125.5530721994635,49.7851896182284],[-125.54589139494922,49.75534839900808],[-125.49128780694659,49.74080975117659],[-125.5137441950936,49.71021116032123],[-125.42652104146819,49.642665618237686],[-125.23395370755803,49.49103256410621],[-125.16661514908425,49.49171520086578],[-125.11470643827988,49.51481257547578],[-125.1149423144749,49.573142084393645],[-125.08729116168507,49.60708028309489],[-125.08032890648732,49.646629644391474],[-125.01001700159252,49.653364802333535],[-125.00847004010618,49.664897070837014],[-125.01054938742013,49.690770187050965],[-125.0151456977281,49.69462213965035],[-124.99929025101387,49.70254597507675],[-125.01304248399205,49.707626851159745],[-125.01079424688143,49.73043055885673],[-125.04783759468289,49.771462690405876],[-125.00682357618693,49.79403860713552],[-124.82821487149307,49.80289142309788],[-124.88418210667116,49.873205504901605]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Comox Valley","census_subdivision":"Comox Valley C (Puntledge - Black Creek)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5926","census_subdivision_code":"5926024","name":"Comox Valley C (Puntledge - Black Creek)"}},{"type":"Feature","geometry":{"coordinates":[[[-123.50843039311322,48.67935189349578],[-123.57499670044588,48.679640791068664],[-123.58921461443941,48.61887900317683],[-123.5593289778271,48.618886847975716],[-123.57926329854592,48.53567663896666],[-123.50001643807104,48.575594647598145],[-123.50843039311322,48.67935189349578]],[[-123.52392052654052,48.610608845732536],[-123.5371665123636,48.610768433162036],[-123.5293982273844,48.63198627191987],[-123.5185425259867,48.61489715083092],[-123.52392052654052,48.610608845732536]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919043","name":"Cowichan Valley A"}},{"type":"Feature","geometry":{"coordinates":[[[-123.52392052654052,48.610608845732536],[-123.5185425259867,48.61489715083092],[-123.5293982273844,48.63198627191987],[-123.5371665123636,48.610768433162036],[-123.52392052654052,48.610608845732536]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Malahat 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919815","name":"Malahat 11"}},{"type":"Feature","geometry":{"coordinates":[[[-123.63371501920513,48.72190896843192],[-123.89300489141047,48.71985271767503],[-123.87606533365859,48.639016789816154],[-123.85320326028277,48.63956733649904],[-123.82103809604432,48.57498020968992],[-123.79028655014964,48.59364964546957],[-123.69289178981678,48.61645395965707],[-123.64757391132602,48.59665326679949],[-123.64568074056436,48.56196971640757],[-123.61683217910503,48.529124972516215],[-123.57926329854592,48.53567663896666],[-123.5593289778271,48.618886847975716],[-123.58921461443941,48.61887900317683],[-123.57499670044588,48.679640791068664],[-123.61631088379498,48.67895592081646],[-123.61621751380875,48.712234356199744],[-123.61615005464628,48.71345951333783],[-123.61619951268656,48.71835680335558],[-123.63371501920513,48.72190896843192]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919046","name":"Cowichan Valley B"}},{"type":"Feature","geometry":{"coordinates":[[[-123.53390610373343,48.725787805713814],[-123.61619951268656,48.71835680335558],[-123.61615005464628,48.71345951333783],[-123.61148477827403,48.7157185599889],[-123.60223036727659,48.715481357861854],[-123.60206548341209,48.71209015069913],[-123.61621751380875,48.712234356199744],[-123.61631088379498,48.67895592081646],[-123.57499670044588,48.679640791068664],[-123.50843039311322,48.67935189349578],[-123.51105033008491,48.69537662515629],[-123.53390610373343,48.725787805713814]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919049","name":"Cowichan Valley C"}},{"type":"Feature","geometry":{"coordinates":[[[-123.61621751380875,48.712234356199744],[-123.60206548341209,48.71209015069913],[-123.60223036727659,48.715481357861854],[-123.61148477827403,48.7157185599889],[-123.61615005464628,48.71345951333783],[-123.61621751380875,48.712234356199744]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Est-Patrolas 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919820","name":"Est-Patrolas 4"}},{"type":"Feature","geometry":{"coordinates":[[[-124.53934333159702,48.93439426045525],[-124.55016979546959,48.90073171395149],[-124.65496659859214,48.854903509778126],[-124.69364540105849,48.79608789325973],[-124.74160758786815,48.744844909012826],[-124.77344368993202,48.73168520517821],[-124.80196849392527,48.69657550196973],[-124.85496419529295,48.683246392744486],[-124.84509427754593,48.54770528534689],[-124.49948608764566,48.500000668282446],[-124.49858288926463,48.592120307490596],[-124.49018407105999,48.63414158742663],[-124.41268437465112,48.636857335227056],[-124.41369576251462,48.66568575333687],[-124.35685530281941,48.68074967125541],[-124.28083156972525,48.680744763990894],[-124.28005455408457,48.72120522510569],[-124.20030293438552,48.65608942864361],[-124.14217261925623,48.63572586855545],[-124.11365974415955,48.64981610513683],[-124.02264589097673,48.64424255647428],[-123.90603272531985,48.64532717783776],[-123.87606533365859,48.639016789816154],[-123.89300489141047,48.71985271767503],[-123.89297539148514,48.76681622718562],[-123.82411980257369,48.791652462087555],[-123.82121571535598,48.9095528844299],[-123.96815479961276,48.920186452893994],[-124.02082428502295,48.93672956341396],[-124.05935548146716,48.91404925848607],[-124.01528934112469,48.89098119062501],[-124.05390526391564,48.8758968610673],[-124.05478777349688,48.84168166639011],[-124.03760601655787,48.818167152793286],[-124.11180874122927,48.825858327744726],[-124.17495674143285,48.825907616261034],[-124.22582861722472,48.86756665659749],[-124.33215307171572,48.899815813154675],[-124.51745625967308,48.91584351612882],[-124.53934333159702,48.93439426045525]],[[-124.6663524261816,48.813672664944654],[-124.66326330057746,48.80411482865258],[-124.67629860615746,48.80846007357096],[-124.6663524261816,48.813672664944654]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919033","name":"Cowichan Valley F"}},{"type":"Feature","geometry":{"coordinates":[[[-123.61239153894364,48.740455464239645],[-123.61575070784357,48.73741284470343],[-123.60905274227565,48.73717578671376],[-123.61239153894364,48.740455464239645]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Kil-pah-las 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919808","name":"Kil-pah-las 3"}},{"type":"Feature","geometry":{"coordinates":[[[-123.63022333665205,48.74381377368656],[-123.643856939128,48.744210744472284],[-123.6437828945289,48.74077151583355],[-123.63001435970457,48.740956732383445],[-123.63022333665205,48.74381377368656]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Theik 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919818","name":"Theik 2"}},{"type":"Feature","geometry":{"coordinates":[[[-123.82705087046615,48.76070241625874],[-123.83098382002842,48.76080270337698],[-123.8310323035733,48.75770843831267],[-123.8269123696115,48.75897528977352],[-123.82705087046615,48.76070241625874]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Tzart-Lam 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919821","name":"Tzart-Lam 5"}},{"type":"Feature","geometry":{"coordinates":[[[[-123.71899449598348,48.78025662603096],[-123.76765052692043,48.76317526714915],[-123.6987305172405,48.769610728684846],[-123.69874301909284,48.77196325859435],[-123.71899449598348,48.78025662603096]]],[[[-123.56952974439812,48.773627889513534],[-123.68494038366289,48.78051660521423],[-123.68470505558255,48.772483030555286],[-123.6984585647969,48.769609858289364],[-123.6971399665995,48.76600182291488],[-123.68302849376745,48.75897994050338],[-123.67131034874116,48.75050954121109],[-123.64400692017828,48.75938140998369],[-123.61024201369787,48.75525948406163],[-123.56952974439812,48.773627889513534]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919822","name":"Cowichan"}},{"type":"Feature","geometry":{"coordinates":[[[-123.78310326347771,48.90008516261788],[-123.82121571535598,48.9095528844299],[-123.82411980257369,48.791652462087555],[-123.89297539148514,48.76681622718562],[-123.89300489141047,48.71985271767503],[-123.63371501920513,48.72190896843192],[-123.67131034874116,48.75050954121109],[-123.68302849376745,48.75897994050338],[-123.6971399665995,48.76600182291488],[-123.6984585647969,48.769609858289364],[-123.6987305172405,48.769610728684846],[-123.76765052692043,48.76317526714915],[-123.78292344067428,48.76239043359932],[-123.78310326347771,48.90008516261788]],[[-123.82705087046615,48.76070241625874],[-123.8269123696115,48.75897528977352],[-123.8310323035733,48.75770843831267],[-123.83098382002842,48.76080270337698],[-123.82705087046615,48.76070241625874]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919051","name":"Cowichan Valley E"}},{"type":"Feature","geometry":{"coordinates":[[[-123.68494038366289,48.78051660521423],[-123.71899449598348,48.78025662603096],[-123.69874301909284,48.77196325859435],[-123.68470505558255,48.772483030555286],[-123.68494038366289,48.78051660521423]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Duncan","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919012","name":"Duncan"}},{"type":"Feature","geometry":{"coordinates":[[[-123.6251055833822,48.889467091941704],[-123.68766108380571,48.93559611461764],[-123.72345170270279,48.936153040003624],[-123.63554194320096,48.865549353116215],[-123.58920593322803,48.84965258043052],[-123.58236757562085,48.82090806888337],[-123.5605575394217,48.80017812830478],[-123.56952974439812,48.773627889513534],[-123.61024201369787,48.75525948406163],[-123.64400692017828,48.75938140998369],[-123.67131034874116,48.75050954121109],[-123.63371501920513,48.72190896843192],[-123.61619951268656,48.71835680335558],[-123.53390610373343,48.725787805713814],[-123.57084339136854,48.76624146072083],[-123.55289269818824,48.77824848748899],[-123.55915681024767,48.80459648761545],[-123.57515756454994,48.82030494465153],[-123.5773960840505,48.84602324813181],[-123.6251055833822,48.889467091941704]],[[-123.61239153894364,48.740455464239645],[-123.60905274227565,48.73717578671376],[-123.61575070784357,48.73741284470343],[-123.61239153894364,48.740455464239645]],[[-123.63022333665205,48.74381377368656],[-123.63001435970457,48.740956732383445],[-123.6437828945289,48.74077151583355],[-123.643856939128,48.744210744472284],[-123.63022333665205,48.74381377368656]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919013","name":"Cowichan Valley D"}},{"type":"Feature","geometry":{"coordinates":[[[-124.6663524261816,48.813672664944654],[-124.67629860615746,48.80846007357096],[-124.66326330057746,48.80411482865258],[-124.6663524261816,48.813672664944654]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Malachan 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919814","name":"Malachan 11"}},{"type":"Feature","geometry":{"coordinates":[[[-124.06959017352564,48.823751538545466],[-124.11180874122927,48.825858327744726],[-124.03760601655787,48.818167152793286],[-124.05478777349688,48.84168166639011],[-124.06936968969,48.826611695392046],[-124.06959017352564,48.823751538545466]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Lake Cowichan","type":"Town","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919016","name":"Lake Cowichan"}},{"type":"Feature","geometry":{"coordinates":[[[-124.06936968969,48.826611695392046],[-124.06977492149964,48.83184391857126],[-124.07640410088008,48.83202582927576],[-124.07575372060991,48.8243784592455],[-124.06959017352564,48.823751538545466],[-124.06936968969,48.826611695392046]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Lake","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919812","name":"Cowichan Lake"}},{"type":"Feature","geometry":{"coordinates":[[[[-123.68470505558255,48.772483030555286],[-123.69874301909284,48.77196325859435],[-123.6987305172405,48.769610728684846],[-123.6984585647969,48.769609858289364],[-123.68470505558255,48.772483030555286]]],[[[-123.72345170270279,48.936153040003624],[-123.77290075709351,48.93622972078964],[-123.78332593221295,48.93627997759746],[-123.78310326347771,48.90008516261788],[-123.78292344067428,48.76239043359932],[-123.76765052692043,48.76317526714915],[-123.71899449598348,48.78025662603096],[-123.68494038366289,48.78051660521423],[-123.56952974439812,48.773627889513534],[-123.5605575394217,48.80017812830478],[-123.58236757562085,48.82090806888337],[-123.58920593322803,48.84965258043052],[-123.63554194320096,48.865549353116215],[-123.72345170270279,48.936153040003624]],[[-123.67441356395452,48.88189627983835],[-123.67820724113732,48.88252442571804],[-123.67849380772505,48.88498512391715],[-123.67326213637726,48.88505995691309],[-123.67441356395452,48.88189627983835]],[[-123.69533034610045,48.89958854368629],[-123.7008199385647,48.903299262696635],[-123.69193156138346,48.903475759586826],[-123.69533034610045,48.89958854368629]],[[-123.69398800241748,48.870840384765586],[-123.69963188401933,48.88184828445694],[-123.68731462089941,48.881465352399935],[-123.69398800241748,48.870840384765586]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"North Cowichan","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919008","name":"North Cowichan"}},{"type":"Feature","geometry":{"coordinates":[[[-123.69398800241748,48.870840384765586],[-123.68731462089941,48.881465352399935],[-123.69963188401933,48.88184828445694],[-123.69398800241748,48.870840384765586]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Halalt 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919801","name":"Halalt 2"}},{"type":"Feature","geometry":{"coordinates":[[[-123.67441356395452,48.88189627983835],[-123.67326213637726,48.88505995691309],[-123.67849380772505,48.88498512391715],[-123.67820724113732,48.88252442571804],[-123.67441356395452,48.88189627983835]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Tsussie 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919803","name":"Tsussie 6"}},{"type":"Feature","geometry":{"coordinates":[[[-123.69533034610045,48.89958854368629],[-123.69193156138346,48.903475759586826],[-123.7008199385647,48.903299262696635],[-123.69533034610045,48.89958854368629]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Squaw-Hay-One 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919802","name":"Squaw-Hay-One 11"}},{"type":"Feature","geometry":{"coordinates":[[[-124.36457092716505,48.982185822756755],[-124.41543148502679,49.02436330612795],[-124.47922931295604,49.021481805434455],[-124.49045916893249,49.056328204957644],[-124.52723887942528,49.08013248893326],[-124.5282151892442,49.124178776459196],[-124.58255508490153,49.14005755432641],[-124.58216592159866,49.103733800122896],[-124.62917338446098,49.09534488370449],[-124.63825076700962,49.01432138261212],[-124.53934333159702,48.93439426045525],[-124.51745625967308,48.91584351612882],[-124.33215307171572,48.899815813154675],[-124.22582861722472,48.86756665659749],[-124.17495674143285,48.825907616261034],[-124.11180874122927,48.825858327744726],[-124.06959017352564,48.823751538545466],[-124.07575372060991,48.8243784592455],[-124.07640410088008,48.83202582927576],[-124.06977492149964,48.83184391857126],[-124.06936968969,48.826611695392046],[-124.05478777349688,48.84168166639011],[-124.05390526391564,48.8758968610673],[-124.01528934112469,48.89098119062501],[-124.05935548146716,48.91404925848607],[-124.02082428502295,48.93672956341396],[-124.05527959737957,48.953084423647276],[-124.14966458902278,48.93954550628777],[-124.1959927206006,48.95835352357815],[-124.23880805931782,48.95769095486458],[-124.29486572316661,48.97381297131662],[-124.3326204773548,48.96529299948356],[-124.36457092716505,48.982185822756755]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley I","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919035","name":"Cowichan Valley I"}},{"type":"Feature","geometry":{"coordinates":[[[-123.78804199069072,48.971910983824245],[-123.83588589226328,48.979267229236356],[-123.80002278069179,48.96831606599137],[-123.78332593221295,48.93627997759746],[-123.77290075709351,48.93622972078964],[-123.78804199069072,48.971910983824245]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Ladysmith","type":"Town","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919021","name":"Ladysmith"}},{"type":"Feature","geometry":{"coordinates":[[[-123.66646283525733,48.977036653005776],[-123.66194254346225,48.95767595981948],[-123.62781815300703,48.94235855341851],[-123.63929934246352,48.97949337247505],[-123.66646283525733,48.977036653005776]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Penelakut Island 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919809","name":"Penelakut Island 7"}},{"type":"Feature","geometry":{"coordinates":[[[[-124.0103618209193,48.99958973699312],[-124.10254772389924,48.99816314439575],[-124.23815929576597,49.003926014548455],[-124.36457092716505,48.982185822756755],[-124.3326204773548,48.96529299948356],[-124.29486572316661,48.97381297131662],[-124.23880805931782,48.95769095486458],[-124.1959927206006,48.95835352357815],[-124.14966458902278,48.93954550628777],[-124.05527959737957,48.953084423647276],[-124.02082428502295,48.93672956341396],[-123.96815479961276,48.920186452893994],[-123.82121571535598,48.9095528844299],[-123.78310326347771,48.90008516261788],[-123.78332593221295,48.93627997759746],[-123.80002278069179,48.96831606599137],[-123.83588589226328,48.979267229236356],[-123.9024869730408,48.99767008274172],[-123.92775373597243,48.98814827041984],[-124.0103618209193,48.99958973699312]]],[[[-123.4348002950749,49.129358854319236],[-123.73064256783528,49.12153179825782],[-123.71573947091504,49.09328443329738],[-123.74042660229857,49.05705366529003],[-123.73462403554308,48.9859861593775],[-123.78804199069072,48.971910983824245],[-123.77290075709351,48.93622972078964],[-123.72345170270279,48.936153040003624],[-123.68766108380571,48.93559611461764],[-123.6251055833822,48.889467091941704],[-123.61240348090064,48.91913285431101],[-123.61925496548236,48.9578302826583],[-123.63003378730417,48.981903980812],[-123.59172665998904,49.013635710291254],[-123.35712180300476,49.00278449644885],[-123.4348002950749,49.129358854319236]],[[-123.59722518594862,49.01757161496708],[-123.59621284313808,49.01538205716077],[-123.598057306663,49.015526509816766],[-123.59722518594862,49.01757161496708]],[[-123.63021841524292,49.03867065561331],[-123.6355506282264,49.03830035474557],[-123.64390278231411,49.04474206866027],[-123.63752586206917,49.044745515343706],[-123.63021841524292,49.03867065561331]],[[-123.69894561955229,49.101001255452225],[-123.67357096440146,49.11063358741464],[-123.66455450476701,49.07469546849351],[-123.69894561955229,49.101001255452225]],[[-123.66646283525733,48.977036653005776],[-123.63929934246352,48.97949337247505],[-123.62781815300703,48.94235855341851],[-123.66194254346225,48.95767595981948],[-123.66646283525733,48.977036653005776]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919015","name":"Cowichan Valley G"}},{"type":"Feature","geometry":{"coordinates":[[[-123.80106998775338,49.035780167158215],[-123.7882007556538,48.992802661600216],[-123.76403604736701,49.009158270419995],[-123.80106998775338,49.035780167158215]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Chemainus 13","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919804","name":"Chemainus 13"}},{"type":"Feature","geometry":{"coordinates":[[[-123.86398494769968,49.02141965380497],[-123.86385971928081,49.012547739483075],[-123.84654799125052,49.01302355164561],[-123.86398494769968,49.02141965380497]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Oyster Bay 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919816","name":"Oyster Bay 12"}},{"type":"Feature","geometry":{"coordinates":[[[-123.59722518594862,49.01757161496708],[-123.598057306663,49.015526509816766],[-123.59621284313808,49.01538205716077],[-123.59722518594862,49.01757161496708]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Portier Pass 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919817","name":"Portier Pass 5"}},{"type":"Feature","geometry":{"coordinates":[[[-123.87772533722769,49.03703268405996],[-124.03594849234996,49.02574451581664],[-124.0103618209193,48.99958973699312],[-123.92775373597243,48.98814827041984],[-123.9024869730408,48.99767008274172],[-123.83588589226328,48.979267229236356],[-123.78804199069072,48.971910983824245],[-123.73462403554308,48.9859861593775],[-123.74042660229857,49.05705366529003],[-123.86445159670302,49.05733387050843],[-123.87772533722769,49.03703268405996]],[[-123.86398494769968,49.02141965380497],[-123.84654799125052,49.01302355164561],[-123.86385971928081,49.012547739483075],[-123.86398494769968,49.02141965380497]],[[-123.80106998775338,49.035780167158215],[-123.76403604736701,49.009158270419995],[-123.7882007556538,48.992802661600216],[-123.80106998775338,49.035780167158215]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Cowichan Valley H","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919017","name":"Cowichan Valley H"}},{"type":"Feature","geometry":{"coordinates":[[[-123.63021841524292,49.03867065561331],[-123.63752586206917,49.044745515343706],[-123.64390278231411,49.04474206866027],[-123.6355506282264,49.03830035474557],[-123.63021841524292,49.03867065561331]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Shingle Point 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919811","name":"Shingle Point 4"}},{"type":"Feature","geometry":{"coordinates":[[[-123.69894561955229,49.101001255452225],[-123.66455450476701,49.07469546849351],[-123.67357096440146,49.11063358741464],[-123.69894561955229,49.101001255452225]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Cowichan Valley","census_subdivision":"Lyacksun 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5919","census_subdivision_code":"5919813","name":"Lyacksun 3"}},{"type":"Feature","geometry":{"coordinates":[[[-115.04804308482846,49.000055854734114],[-115.0756760756322,49.00270854620905],[-115.07457498413523,49.09415073177817],[-115.12975214039203,49.096254716608996],[-115.12814977350591,49.00008072536148],[-115.04804308482846,49.000055854734114]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Tobacco Plains 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901801","name":"Tobacco Plains 2"}},{"type":"Feature","geometry":{"coordinates":[[[-115.20043782246195,49.51923695118715],[-115.24219190713556,49.50779645328525],[-115.25067978396591,49.466879473817066],[-115.20733996000119,49.42703836962795],[-115.37544440110504,49.42718222648278],[-115.37585273252256,49.39033086268282],[-115.62364381962577,49.393542428052456],[-115.630703805988,49.3685217661722],[-115.58208268126764,49.3414277570273],[-115.64959702375016,49.298464598994364],[-115.72197317130825,49.28246054304112],[-115.7663394725664,49.2614488301712],[-115.7567396653969,49.21839264777709],[-115.7275005686778,49.20337396308395],[-115.62052481470681,49.211247979922604],[-115.58791309395102,49.133340681944226],[-115.55680410771373,49.11976158015934],[-115.55484422481861,49.079998698945815],[-115.51999444489864,49.0007132332062],[-115.12814977350591,49.00008072536148],[-115.12975214039203,49.096254716608996],[-115.07457498413523,49.09415073177817],[-115.0756760756322,49.00270854620905],[-115.04804308482846,49.000055854734114],[-114.72624940652116,49.000128458032904],[-114.75725821408419,49.03569662365479],[-114.70077478734638,49.07000091560634],[-114.75378329596352,49.12425257895313],[-114.72280093350884,49.13689300660695],[-114.70673773814174,49.17080889921929],[-114.75104867486233,49.20371052924472],[-114.74094786001116,49.24981010635634],[-114.69902422824057,49.28846803524677],[-114.81155687551052,49.332645533174436],[-114.84887959918177,49.327765485798956],[-114.88937755036162,49.345738793960145],[-114.85706336269375,49.412233308883856],[-114.89191366194399,49.42895736284418],[-114.93243970148728,49.385526966172485],[-115.0060390097085,49.349710795286335],[-115.0405471939985,49.365262022924426],[-115.04124216624835,49.40475497046746],[-115.20178254551307,49.488633648341086],[-115.20043782246195,49.51923695118715]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"East Kootenay B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901019","name":"East Kootenay B"}},{"type":"Feature","geometry":{"coordinates":[[[-115.55969841884347,49.48794308773478],[-115.55996032074907,49.49496912375362],[-115.57088088866087,49.49504046299017],[-115.57089750146832,49.488468292858435],[-115.55969841884347,49.48794308773478]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Cassimayooks (Mayook) 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901805","name":"Cassimayooks (Mayook) 5"}},{"type":"Feature","geometry":{"coordinates":[[[-115.04991141461683,50.12922375011705],[-115.10425025763966,50.10567538637488],[-115.2064067496232,50.10521387221084],[-115.21568646952322,50.05895315039281],[-115.27130373994684,50.036571297024885],[-115.2382453457653,49.99572630186885],[-115.35530270351057,49.953229769414314],[-115.34319061626749,49.90984343705861],[-115.36258183777433,49.8406430308298],[-115.44279174420495,49.8187276544216],[-115.47136730038352,49.84023318133411],[-115.55492450321526,49.79805621392003],[-115.60270235265273,49.71959646127782],[-115.58525677633037,49.683894467805366],[-115.66789912435151,49.68315861781393],[-115.68320616615351,49.66172767765786],[-115.65852111220224,49.63010926056118],[-115.75456971268255,49.58997645042555],[-115.77483751309076,49.57747602790392],[-115.72869493662989,49.53757275892131],[-115.75738618320571,49.4904385720477],[-115.78973112441682,49.55120349090147],[-115.79037433807194,49.58813530414713],[-115.79047420732398,49.6036499487673],[-115.79027313967421,49.61969001300412],[-115.79015091737105,49.66129535019673],[-115.81354974562171,49.67648660602818],[-115.86191744734953,49.67657495680631],[-115.88009752036844,49.60317100003423],[-115.9060027514747,49.59396966583986],[-116.07150543761875,49.590064621641496],[-116.09492381433978,49.53761663617556],[-116.13372703773507,49.490795821321186],[-116.1637238316914,49.479390179798614],[-116.18227080289664,49.42664721487602],[-116.21050892323741,49.41345508420873],[-116.16533406787818,49.35228215272923],[-116.18895621938188,49.321934539683035],[-116.15847066786962,49.28335279143658],[-116.11549685593904,49.28828234025468],[-116.07262303399371,49.25864367306403],[-116.07007242429422,49.232015061833835],[-116.10076538905082,49.19845023496886],[-116.02847157461986,49.19754956964821],[-116.03246021518413,49.0587590953783],[-116.02704893324879,49.00091738604106],[-115.51999444489864,49.0007132332062],[-115.55484422481861,49.079998698945815],[-115.55680410771373,49.11976158015934],[-115.58791309395102,49.133340681944226],[-115.62052481470681,49.211247979922604],[-115.7275005686778,49.20337396308395],[-115.7567396653969,49.21839264777709],[-115.7663394725664,49.2614488301712],[-115.72197317130825,49.28246054304112],[-115.64959702375016,49.298464598994364],[-115.58208268126764,49.3414277570273],[-115.630703805988,49.3685217661722],[-115.62364381962577,49.393542428052456],[-115.37585273252256,49.39033086268282],[-115.37544440110504,49.42718222648278],[-115.20733996000119,49.42703836962795],[-115.25067978396591,49.466879473817066],[-115.24219190713556,49.50779645328525],[-115.20043782246195,49.51923695118715],[-115.13718585062848,49.52869007675961],[-115.12729629451209,49.57600308186833],[-115.0790633336354,49.57673381471378],[-115.0552851819869,49.61269149050523],[-115.00819547175003,49.60494290090569],[-115.01653335586127,49.66645219942811],[-114.98362702338946,49.68786834686387],[-114.98710378898413,49.763191561889755],[-115.01894935203354,49.75965157859256],[-115.08940416595368,49.78048176915987],[-115.10249440828953,49.851005785254756],[-115.06837873209375,49.865694197505015],[-115.07229234368423,49.89046974256152],[-115.11337475552116,49.91280507674939],[-115.09009408245255,49.96520910967148],[-115.05554432102619,49.97930369483467],[-115.07696455972648,50.02178293026597],[-115.03858425813426,50.03767738815664],[-115.00928187170243,50.11298989165998],[-115.04991141461683,50.12922375011705]],[[-115.55969841884347,49.48794308773478],[-115.57089750146832,49.488468292858435],[-115.57088088866087,49.49504046299017],[-115.55996032074907,49.49496912375362],[-115.55969841884347,49.48794308773478]],[[-115.58956551884403,49.536329181955104],[-115.61153081326702,49.54317910819066],[-115.61129551923258,49.55429731936105],[-115.58915152821554,49.55371210503129],[-115.58956551884403,49.536329181955104]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"East Kootenay C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901035","name":"East Kootenay C"}},{"type":"Feature","geometry":{"coordinates":[[[-115.03947947246127,49.5287935162618],[-115.08497552534185,49.53170724634261],[-115.08110476630867,49.49172002652898],[-115.03290112666922,49.51275732384154],[-115.03947947246127,49.5287935162618]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Fernie","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901012","name":"Fernie"}},{"type":"Feature","geometry":{"coordinates":[[[-115.79037433807194,49.58813530414713],[-115.78973112441682,49.55120349090147],[-115.75738618320571,49.4904385720477],[-115.72869493662989,49.53757275892131],[-115.77483751309076,49.57747602790392],[-115.78095636831831,49.58042603583714],[-115.79037433807194,49.58813530414713]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Cranbrook","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901022","name":"Cranbrook"}},{"type":"Feature","geometry":{"coordinates":[[[-115.58956551884403,49.536329181955104],[-115.58915152821554,49.55371210503129],[-115.61129551923258,49.55429731936105],[-115.61153081326702,49.54317910819066],[-115.58956551884403,49.536329181955104]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Isidore's Ranch 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901802","name":"Isidore's Ranch 4"}},{"type":"Feature","geometry":{"coordinates":[[[-115.75456971268255,49.58997645042555],[-115.78095636831831,49.58042603583714],[-115.77483751309076,49.57747602790392],[-115.75456971268255,49.58997645042555]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"St. Mary's","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901808","name":"St. Mary's"}},{"type":"Feature","geometry":{"coordinates":[[[-115.68320616615351,49.66172767765786],[-115.70025483027518,49.67608001519532],[-115.81354974562171,49.67648660602818],[-115.79015091737105,49.66129535019673],[-115.79027313967421,49.61969001300412],[-115.79047420732398,49.6036499487673],[-115.79037433807194,49.58813530414713],[-115.78095636831831,49.58042603583714],[-115.75456971268255,49.58997645042555],[-115.65852111220224,49.63010926056118],[-115.68320616615351,49.66172767765786]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Kootenay 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901803","name":"Kootenay 1"}},{"type":"Feature","geometry":{"coordinates":[[[-115.99459357174032,49.728794423326626],[-116.02869807637506,49.675714566146695],[-116.02782233409025,49.63921638345381],[-115.96073229265744,49.63042538999791],[-115.91196396849018,49.641161758204994],[-115.92849344782124,49.66642301261578],[-115.99258233540674,49.708036892615944],[-115.99459357174032,49.728794423326626]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Kimberley","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901028","name":"Kimberley"}},{"type":"Feature","geometry":{"coordinates":[[[-114.72631622852407,50.160738465424394],[-114.72467038891772,50.190177189509356],[-114.77022537721736,50.249994997999416],[-114.75166705991876,50.27528703311904],[-114.7976059645555,50.326122019450956],[-114.76621722955242,50.350742251210306],[-114.85689168089063,50.39252401330108],[-114.8730115189773,50.43019068958922],[-114.91216702399157,50.451372321867915],[-115.01369673096396,50.57085909943497],[-115.08527384255353,50.58974905852454],[-115.11752465045205,50.569751299071676],[-115.17355277079285,50.567588659327896],[-115.20594986274489,50.528255618463646],[-115.16419854829724,50.5100026903666],[-115.16360059671241,50.47915183507232],[-115.12040326989782,50.43770846377975],[-115.12346067927929,50.354970325824254],[-115.09949664417685,50.320100822304326],[-115.12716463557678,50.299173321187965],[-115.13522234455694,50.23491487507068],[-115.1030858717729,50.2062227396065],[-115.06819090725006,50.138031992292426],[-115.04991141461683,50.12922375011705],[-115.00928187170243,50.11298989165998],[-115.03858425813426,50.03767738815664],[-115.07696455972648,50.02178293026597],[-115.05554432102619,49.97930369483467],[-115.09009408245255,49.96520910967148],[-115.11337475552116,49.91280507674939],[-115.07229234368423,49.89046974256152],[-115.06837873209375,49.865694197505015],[-115.10249440828953,49.851005785254756],[-115.08940416595368,49.78048176915987],[-115.01894935203354,49.75965157859256],[-114.98710378898413,49.763191561889755],[-114.98362702338946,49.68786834686387],[-115.01653335586127,49.66645219942811],[-115.00819547175003,49.60494290090569],[-115.0552851819869,49.61269149050523],[-115.0790633336354,49.57673381471378],[-115.12729629451209,49.57600308186833],[-115.13718585062848,49.52869007675961],[-115.20043782246195,49.51923695118715],[-115.20178254551307,49.488633648341086],[-115.04124216624835,49.40475497046746],[-115.0405471939985,49.365262022924426],[-115.0060390097085,49.349710795286335],[-114.93243970148728,49.385526966172485],[-114.89191366194399,49.42895736284418],[-114.85706336269375,49.412233308883856],[-114.88937755036162,49.345738793960145],[-114.84887959918177,49.327765485798956],[-114.81155687551052,49.332645533174436],[-114.69902422824057,49.28846803524677],[-114.74094786001116,49.24981010635634],[-114.75104867486233,49.20371052924472],[-114.70673773814174,49.17080889921929],[-114.72280093350884,49.13689300660695],[-114.75378329596352,49.12425257895313],[-114.70077478734638,49.07000091560634],[-114.75725821408419,49.03569662365479],[-114.72624940652116,49.000128458032904],[-114.4106243231144,49.00122079842024],[-114.06833210989359,48.99885049564231],[-114.05375826448122,49.02654472781428],[-114.08097635842365,49.059688458783576],[-114.15314913867716,49.09951039474029],[-114.1612497849932,49.15483135720038],[-114.21265268612602,49.173441099304355],[-114.34559060629957,49.19357076733958],[-114.40212197420347,49.213273603286424],[-114.39348599518776,49.257187403860975],[-114.4479424758522,49.264369225677775],[-114.44679535245491,49.288417619958],[-114.47764600802286,49.31235183933118],[-114.48762451516,49.34732061290144],[-114.56692967370448,49.37688356515373],[-114.59843280764423,49.41256158062362],[-114.59471741310753,49.502843021468955],[-114.57360388010154,49.55746290546993],[-114.62013320018278,49.54680866129206],[-114.6909834671212,49.55402643411554],[-114.73258666928295,49.57637952571608],[-114.74647644614151,49.618509704808574],[-114.70341866572937,49.63675436689739],[-114.74886264602642,49.64000293274789],[-114.85537878260392,49.72928185912095],[-114.91365272227269,49.70798579687055],[-114.90441511431919,49.77043993349008],[-114.85816912490188,49.82023593253486],[-114.7881877595386,49.820449737931824],[-114.76343465613482,49.67935423521904],[-114.71717026554445,49.65383848421205],[-114.65981280016526,49.65525047965321],[-114.66734841332809,49.669821692163765],[-114.66838503820792,49.70387516512307],[-114.63311912237111,49.73407963466125],[-114.65913532717275,49.76507938030089],[-114.63605150522969,49.7848115861821],[-114.63993243584716,49.82772088319305],[-114.69178590695964,49.89628610420888],[-114.69367620540046,49.942583955612854],[-114.65743624890818,49.96839673911026],[-114.66637119771778,50.05094437397303],[-114.73325919665572,50.11861061798698],[-114.72631622852407,50.160738465424394]],[[-115.03947947246127,49.5287935162618],[-115.03290112666922,49.51275732384154],[-115.08110476630867,49.49172002652898],[-115.08497552534185,49.53170724634261],[-115.03947947246127,49.5287935162618]],[[-114.7852077736082,49.94270252747403],[-114.78545241502546,49.96650160037093],[-114.71679045754775,49.96648835884906],[-114.71703999640769,49.936493410929444],[-114.78467775937978,49.87757587159654],[-114.86624856100809,49.87078016291015],[-114.86954650184637,49.89382009679478],[-114.78451142448841,49.90423826404701],[-114.7852077736082,49.94270252747403]],[[-114.89315092585363,50.096674653939964],[-114.82418232643269,50.094477663085996],[-114.79850827046258,50.069447100241554],[-114.793237150614,50.01564427622957],[-114.89674654827502,50.016935987043276],[-114.90157661067126,49.9612072805916],[-114.92392572954168,49.96074085885932],[-114.95174306883071,50.01206600049434],[-114.9366065928691,50.07375052681796],[-114.89315092585363,50.096674653939964]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"East Kootenay A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901017","name":"East Kootenay A"}},{"type":"Feature","geometry":{"coordinates":[[[[-114.7852077736082,49.94270252747403],[-114.78451142448841,49.90423826404701],[-114.86954650184637,49.89382009679478],[-114.86624856100809,49.87078016291015],[-114.78467775937978,49.87757587159654],[-114.71703999640769,49.936493410929444],[-114.71679045754775,49.96648835884906],[-114.78545241502546,49.96650160037093],[-114.7852077736082,49.94270252747403]]],[[[-114.65981280016526,49.65525047965321],[-114.71717026554445,49.65383848421205],[-114.76343465613482,49.67935423521904],[-114.7881877595386,49.820449737931824],[-114.85816912490188,49.82023593253486],[-114.90441511431919,49.77043993349008],[-114.91365272227269,49.70798579687055],[-114.85537878260392,49.72928185912095],[-114.74886264602642,49.64000293274789],[-114.70341866572937,49.63675436689739],[-114.65981280016526,49.65525047965321]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Sparwood","type":"District municipality","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901006","name":"Sparwood"}},{"type":"Feature","geometry":{"coordinates":[[[-115.35530270351057,49.953229769414314],[-115.36148914587953,50.00973808724753],[-115.38607973553216,50.017941234544914],[-115.46183252047348,50.1099846864888],[-115.50842421948066,50.096742278578326],[-115.5516085728288,50.115766685457196],[-115.5304736607842,50.14949468277635],[-115.55993977854554,50.1795303026484],[-115.59673654025377,50.172976076494024],[-115.61814389344218,50.20652470089441],[-115.66819588905551,50.19691258301119],[-115.71145354759487,50.111291909342825],[-115.70219017126163,50.001366304809636],[-115.8461379357668,49.999147455465724],[-115.8762310230252,50.03296454294024],[-115.85577975271563,50.073738665067594],[-115.92266706590335,50.087121453087626],[-115.92890610527395,50.05562689176276],[-116.0230690542469,50.00705463990582],[-116.08074000586097,50.02823512865416],[-116.13688038658849,50.02159420608874],[-116.15777162986666,50.00465643249938],[-116.24012228784828,49.99989614463602],[-116.24359333726036,49.96918692451733],[-116.30243740261783,49.925557923698804],[-116.39853856262499,49.936610427128606],[-116.44311443784704,49.9792870222145],[-116.47188007906274,49.96623778311026],[-116.51013997437266,49.98499480977802],[-116.58389815177969,49.94883950177589],[-116.58480896741794,49.92968239280463],[-116.64563442305617,49.88259355752413],[-116.69325430100396,49.87005989100147],[-116.68504049161197,49.81180840305185],[-116.6394619032986,49.78513904314498],[-116.59092207198077,49.72489085373929],[-116.59057617494958,49.699372406393636],[-116.65732762046035,49.66781464576136],[-116.64829416925247,49.630752940213554],[-116.68921230925486,49.572742862304835],[-116.62516823619849,49.53884149748263],[-116.66735240062278,49.47221586665233],[-116.5795779336231,49.455198838148064],[-116.54393810532264,49.46511129608134],[-116.46391818638445,49.49703315091826],[-116.42351199082972,49.53366079989407],[-116.36239332330555,49.513090415362555],[-116.31244729124815,49.52459907200855],[-116.2891020500988,49.50855369931729],[-116.28485128474536,49.47239782926558],[-116.21050892323741,49.41345508420873],[-116.18227080289664,49.42664721487602],[-116.1637238316914,49.479390179798614],[-116.13372703773507,49.490795821321186],[-116.09492381433978,49.53761663617556],[-116.07150543761875,49.590064621641496],[-115.9060027514747,49.59396966583986],[-115.88009752036844,49.60317100003423],[-115.86191744734953,49.67657495680631],[-115.81354974562171,49.67648660602818],[-115.70025483027518,49.67608001519532],[-115.68320616615351,49.66172767765786],[-115.66789912435151,49.68315861781393],[-115.58525677633037,49.683894467805366],[-115.60270235265273,49.71959646127782],[-115.55492450321526,49.79805621392003],[-115.47136730038352,49.84023318133411],[-115.44279174420495,49.8187276544216],[-115.36258183777433,49.8406430308298],[-115.34319061626749,49.90984343705861],[-115.35530270351057,49.953229769414314]],[[-115.99459357174032,49.728794423326626],[-115.99258233540674,49.708036892615944],[-115.92849344782124,49.66642301261578],[-115.91196396849018,49.641161758204994],[-115.96073229265744,49.63042538999791],[-116.02782233409025,49.63921638345381],[-116.02869807637506,49.675714566146695],[-115.99459357174032,49.728794423326626]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"East Kootenay E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901037","name":"East Kootenay E"}},{"type":"Feature","geometry":{"coordinates":[[[-114.89315092585363,50.096674653939964],[-114.9366065928691,50.07375052681796],[-114.95174306883071,50.01206600049434],[-114.92392572954168,49.96074085885932],[-114.90157661067126,49.9612072805916],[-114.89674654827502,50.016935987043276],[-114.793237150614,50.01564427622957],[-114.79850827046258,50.069447100241554],[-114.82418232643269,50.094477663085996],[-114.89315092585363,50.096674653939964]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Elkford","type":"District municipality","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901003","name":"Elkford"}},{"type":"Feature","geometry":{"coordinates":[[[-115.8073254115454,50.18134506416248],[-115.8502121190804,50.170354821619924],[-115.81969653045086,50.136146311951606],[-115.78333605582256,50.15366404090728],[-115.8073254115454,50.18134506416248]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Canal Flats","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901043","name":"Canal Flats"}},{"type":"Feature","geometry":{"coordinates":[[[-115.4949259752154,50.7800164558387],[-115.51854370965648,50.74576505698785],[-115.57402880542868,50.720610595748205],[-115.62125968623518,50.71225625226519],[-115.66968392166314,50.73582120676768],[-115.79063110918422,50.67442778954771],[-115.79834205813003,50.61635506032338],[-115.84289673494982,50.61078326013142],[-115.98894201740076,50.547757800447165],[-116.0120544122412,50.54799862560091],[-116.01964098303014,50.516154853681414],[-116.02810555381052,50.47516658112394],[-116.0565115987674,50.50000175494972],[-116.03341391613846,50.53154405633745],[-116.03884358889833,50.53784386852605],[-116.12155283462774,50.5378772074402],[-116.12066333977187,50.51293936490024],[-116.22153263307935,50.51233171595936],[-116.26571414228312,50.49933867207239],[-116.36335513526514,50.45097385769762],[-116.43720729397488,50.46674910517311],[-116.46406500043443,50.43903337708601],[-116.45320625973677,50.41622818819684],[-116.56259934628467,50.405117473119546],[-116.61684646141848,50.43065276193812],[-116.65232234103344,50.420224498114685],[-116.61380064042663,50.35017829146398],[-116.61818524508013,50.31751283184777],[-116.55495536196722,50.283487679262784],[-116.55680954103985,50.21287620255935],[-116.5003323008954,50.19790702102963],[-116.449918751439,50.13345714887188],[-116.49516791198086,50.09379070020163],[-116.4982586314414,50.05618010999066],[-116.47143576804989,50.03791064354516],[-116.44311443784704,49.9792870222145],[-116.39853856262499,49.936610427128606],[-116.30243740261783,49.925557923698804],[-116.24359333726036,49.96918692451733],[-116.24012228784828,49.99989614463602],[-116.15777162986666,50.00465643249938],[-116.13688038658849,50.02159420608874],[-116.08074000586097,50.02823512865416],[-116.0230690542469,50.00705463990582],[-115.92890610527395,50.05562689176276],[-115.92266706590335,50.087121453087626],[-115.85577975271563,50.073738665067594],[-115.8762310230252,50.03296454294024],[-115.8461379357668,49.999147455465724],[-115.70219017126163,50.001366304809636],[-115.71145354759487,50.111291909342825],[-115.66819588905551,50.19691258301119],[-115.61814389344218,50.20652470089441],[-115.59673654025377,50.172976076494024],[-115.55993977854554,50.1795303026484],[-115.5304736607842,50.14949468277635],[-115.5516085728288,50.115766685457196],[-115.50842421948066,50.096742278578326],[-115.46183252047348,50.1099846864888],[-115.38607973553216,50.017941234544914],[-115.36148914587953,50.00973808724753],[-115.35530270351057,49.953229769414314],[-115.2382453457653,49.99572630186885],[-115.27130373994684,50.036571297024885],[-115.21568646952322,50.05895315039281],[-115.2064067496232,50.10521387221084],[-115.10425025763966,50.10567538637488],[-115.04991141461683,50.12922375011705],[-115.06819090725006,50.138031992292426],[-115.1030858717729,50.2062227396065],[-115.13522234455694,50.23491487507068],[-115.12716463557678,50.299173321187965],[-115.09949664417685,50.320100822304326],[-115.12346067927929,50.354970325824254],[-115.12040326989782,50.43770846377975],[-115.16360059671241,50.47915183507232],[-115.16419854829724,50.5100026903666],[-115.20594986274489,50.528255618463646],[-115.23098413968027,50.544878636022844],[-115.2396506122672,50.589196791294434],[-115.29362560549144,50.61110757932827],[-115.2822540813287,50.663192893178085],[-115.3151244963227,50.72582574662967],[-115.33595071889658,50.72344082803378],[-115.39122236791687,50.706452446117744],[-115.43628198058063,50.755730692667434],[-115.48110693562272,50.75518175887376],[-115.4949259752154,50.7800164558387]],[[-115.8073254115454,50.18134506416248],[-115.78333605582256,50.15366404090728],[-115.81969653045086,50.136146311951606],[-115.8502121190804,50.170354821619924],[-115.8073254115454,50.18134506416248]],[[-115.97139538727431,50.461130384993425],[-115.8968444742821,50.45249241526745],[-115.89177099393129,50.396172826548195],[-115.8584784767389,50.39563237448827],[-115.8574069056094,50.35575437398626],[-115.9301938121828,50.40379535507995],[-115.97139538727431,50.461130384993425]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"East Kootenay F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901046","name":"East Kootenay F"}},{"type":"Feature","geometry":{"coordinates":[[[-115.97139538727431,50.461130384993425],[-115.9301938121828,50.40379535507995],[-115.8574069056094,50.35575437398626],[-115.8584784767389,50.39563237448827],[-115.89177099393129,50.396172826548195],[-115.8968444742821,50.45249241526745],[-115.97139538727431,50.461130384993425]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Columbia Lake 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901804","name":"Columbia Lake 3"}},{"type":"Feature","geometry":{"coordinates":[[[-116.01964098303014,50.516154853681414],[-116.03341391613846,50.53154405633745],[-116.0565115987674,50.50000175494972],[-116.02810555381052,50.47516658112394],[-116.01964098303014,50.516154853681414]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Invermere","type":"District municipality","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901039","name":"Invermere"}},{"type":"Feature","geometry":{"coordinates":[[[-116.01964098303014,50.516154853681414],[-116.0120544122412,50.54799862560091],[-116.03884358889833,50.53784386852605],[-116.03341391613846,50.53154405633745],[-116.01964098303014,50.516154853681414]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Shuswap","type":"Indian reserve","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901806","name":"Shuswap"}},{"type":"Feature","geometry":{"coordinates":[[[-116.08181594498305,50.64644940274097],[-116.09597550248287,50.62020815010327],[-116.06949085584903,50.60924944807548],[-116.06509221413572,50.63386614106669],[-116.08181594498305,50.64644940274097]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"Radium Hot Springs","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901040","name":"Radium Hot Springs"}},{"type":"Feature","geometry":{"coordinates":[[[-115.4949259752154,50.7800164558387],[-115.55086991513846,50.79706590243994],[-115.57813602188203,50.84050376173514],[-115.6429827765386,50.84220648940808],[-115.64892946164211,50.874147601306895],[-115.5926461810912,50.89264113792538],[-115.61459585404106,50.95118767908765],[-115.64883405703623,50.99752045740849],[-115.76703563342805,51.03938827476743],[-115.78923190003925,51.072417684626444],[-115.86793338086918,51.08929039744406],[-115.92360697933792,51.083109564727984],[-115.95726326494118,51.115181610785754],[-116.00446487359835,51.1246812898061],[-116.03684494216769,51.170045526298175],[-116.000022592268,51.19394746719994],[-116.007603752432,51.22201215367823],[-116.06517334826947,51.24793008944195],[-116.11167621797136,51.25335291584386],[-116.1591331552323,51.27581199551717],[-116.16413114324516,51.29779006660924],[-116.21908456179578,51.29450376047018],[-116.28260412393536,51.331501844362656],[-116.29657160518892,51.2616938801774],[-116.26336505937677,51.22179893467541],[-116.34646836511426,51.207781315441416],[-116.29754153332244,51.179967730135],[-116.26216188010682,51.126552238542345],[-116.31847068437476,51.09546201337449],[-116.33978378657682,51.06435332563616],[-116.41847237086908,51.03658640396449],[-116.3183234808001,50.94907748264877],[-116.44436274062882,50.94982226762956],[-116.53538045949412,50.935136723132025],[-116.53571241534496,50.92097309188314],[-116.62872660508808,50.920674279073076],[-116.67215888172261,50.88978323196004],[-116.73346219408349,50.87637915496985],[-116.76398757191296,50.847311383156544],[-116.74588396532083,50.81621239659339],[-116.74535170313752,50.77129568884785],[-116.77195356746861,50.766737958770676],[-116.79654643996021,50.729302739875216],[-116.78039618589942,50.69901011566727],[-116.74435872474545,50.678093906603664],[-116.60761921218696,50.66855061599877],[-116.5796138326163,50.64727593675566],[-116.6541312007466,50.59860330875128],[-116.68919403140751,50.49236998616407],[-116.72243351369123,50.46150912211554],[-116.65232234103344,50.420224498114685],[-116.61684646141848,50.43065276193812],[-116.56259934628467,50.405117473119546],[-116.45320625973677,50.41622818819684],[-116.46406500043443,50.43903337708601],[-116.43720729397488,50.46674910517311],[-116.36335513526514,50.45097385769762],[-116.26571414228312,50.49933867207239],[-116.22153263307935,50.51233171595936],[-116.12066333977187,50.51293936490024],[-116.12155283462774,50.5378772074402],[-116.03884358889833,50.53784386852605],[-116.0120544122412,50.54799862560091],[-115.98894201740076,50.547757800447165],[-115.84289673494982,50.61078326013142],[-115.79834205813003,50.61635506032338],[-115.79063110918422,50.67442778954771],[-115.66968392166314,50.73582120676768],[-115.62125968623518,50.71225625226519],[-115.57402880542868,50.720610595748205],[-115.51854370965648,50.74576505698785],[-115.4949259752154,50.7800164558387]],[[-116.08181594498305,50.64644940274097],[-116.06509221413572,50.63386614106669],[-116.06949085584903,50.60924944807548],[-116.09597550248287,50.62020815010327],[-116.08181594498305,50.64644940274097]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"East Kootenay","census_subdivision":"East Kootenay G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5901","census_subdivision_code":"5901048","name":"East Kootenay G"}},{"type":"Feature","geometry":{"coordinates":[[[-121.97242669899039,49.08918568705084],[-122.02895791000864,49.089317997595764],[-122.02865142661823,49.045662966926436],[-122.07256046378015,49.04551762949499],[-122.11677438352744,49.00223376893847],[-121.85462725355333,49.00007867683254],[-121.89774109474699,49.05966479106132],[-121.94124650616335,49.074348313688176],[-121.97242669899039,49.08918568705084]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley H","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909035","name":"Fraser Valley H"}},{"type":"Feature","geometry":{"coordinates":[[[-122.20131038408222,49.06072562247722],[-122.20624166814835,49.053397340092744],[-122.19437704411692,49.04076136038091],[-122.18289554379167,49.057547695871556],[-122.20131038408222,49.06072562247722]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Upper Sumas 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909877","name":"Upper Sumas 6"}},{"type":"Feature","geometry":{"coordinates":[[[-122.3384169476604,49.109050987249475],[-122.35995373038246,49.1039613342722],[-122.3598822994415,49.11918548581165],[-122.42580430075782,49.168830604910696],[-122.46147846461116,49.17132706297204],[-122.45915453446993,49.002256446015046],[-122.11677438352744,49.00223376893847],[-122.07256046378015,49.04551762949499],[-122.08012302770219,49.10602546342895],[-122.09552475168059,49.132931253427856],[-122.13201710021374,49.0970764798326],[-122.18481093509004,49.096550895224645],[-122.18150359407919,49.138232793168726],[-122.24969641265483,49.143189687659536],[-122.3384169476604,49.109050987249475]],[[-122.20131038408222,49.06072562247722],[-122.18289554379167,49.057547695871556],[-122.19437704411692,49.04076136038091],[-122.20624166814835,49.053397340092744],[-122.20131038408222,49.06072562247722]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Abbotsford","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909052","name":"Abbotsford"}},{"type":"Feature","geometry":{"coordinates":[[[-121.5015531479938,49.172099546870164],[-121.55066187681464,49.20341320953763],[-121.59002341903452,49.15759343229788],[-121.68336364994354,49.18576226535985],[-121.73518607433931,49.16028150383326],[-121.79030699968553,49.11043882650238],[-121.79117119792325,49.091617508248056],[-121.94084681447264,49.089846286441],[-121.94124650616335,49.074348313688176],[-121.89774109474699,49.05966479106132],[-121.85462725355333,49.00007867683254],[-121.27292340115989,49.00002692037695],[-121.29731467816474,49.01815951398485],[-121.30432080128085,49.05838417351794],[-121.3456118875235,49.09760969886702],[-121.39300893757931,49.079477836619475],[-121.40414612222004,49.12654021390305],[-121.43143562290196,49.15668746647913],[-121.47959064736382,49.13979247682551],[-121.5015531479938,49.172099546870164]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909036","name":"Fraser Valley E"}},{"type":"Feature","geometry":{"coordinates":[[[-121.94124650616335,49.074348313688176],[-121.94084681447264,49.089846286441],[-121.97242669899039,49.08918568705084],[-121.94124650616335,49.074348313688176]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Soowahlie 14","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909827","name":"Soowahlie 14"}},{"type":"Feature","geometry":{"coordinates":[[[-122.3598822994415,49.11918548581165],[-122.35995373038246,49.1039613342722],[-122.3384169476604,49.109050987249475],[-122.3598822994415,49.11918548581165]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Matsqui Main 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909878","name":"Matsqui Main 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.96209760943259,49.112626368852354],[-121.92956844022446,49.108883839453206],[-121.92945861882095,49.11848960652091],[-121.96209760943259,49.112626368852354]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Tzeachten 13","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909830","name":"Tzeachten 13"}},{"type":"Feature","geometry":{"coordinates":[[[-121.94060227747427,49.13238666907408],[-121.9349762907031,49.131889814854226],[-121.93522824981306,49.1353406715518],[-121.94060227747427,49.13238666907408]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Yakweakwioose 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909831","name":"Yakweakwioose 12"}},{"type":"Feature","geometry":{"coordinates":[[[-121.93522824981306,49.1353406715518],[-121.93726404426964,49.14205656789822],[-121.95310997571295,49.138101000182445],[-121.94060227747427,49.13238666907408],[-121.93522824981306,49.1353406715518]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Skowkale","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909884","name":"Skowkale"}},{"type":"Feature","geometry":{"coordinates":[[[-121.78829624046332,49.20691396385541],[-121.85416878094534,49.222486200120436],[-121.94490492307652,49.21558967532734],[-121.96938986763243,49.20771060752301],[-122.09552475168059,49.132931253427856],[-122.08012302770219,49.10602546342895],[-122.07256046378015,49.04551762949499],[-122.02865142661823,49.045662966926436],[-122.02895791000864,49.089317997595764],[-121.97242669899039,49.08918568705084],[-121.94084681447264,49.089846286441],[-121.79117119792325,49.091617508248056],[-121.79030699968553,49.11043882650238],[-121.78238830857335,49.18760850777122],[-121.78834967354628,49.20031362752063],[-121.78829624046332,49.20691396385541]],[[-121.99115055039807,49.15135420290432],[-121.9870678841057,49.14816815004339],[-121.99375229429326,49.14785048806881],[-121.99115055039807,49.15135420290432]],[[-121.94060227747427,49.13238666907408],[-121.95310997571295,49.138101000182445],[-121.93726404426964,49.14205656789822],[-121.93522824981306,49.1353406715518],[-121.9349762907031,49.131889814854226],[-121.94060227747427,49.13238666907408]],[[-121.83885336369805,49.183922614948855],[-121.82722513168395,49.18388811691316],[-121.83022615960807,49.170587670479215],[-121.83865568988452,49.17587645911497],[-121.83885336369805,49.183922614948855]],[[-121.96209760943259,49.112626368852354],[-121.92945861882095,49.11848960652091],[-121.92956844022446,49.108883839453206],[-121.96209760943259,49.112626368852354]],[[-121.9729965873177,49.18064909722311],[-121.97326320094919,49.18718393717878],[-121.96038534470962,49.19316895890587],[-121.96407067176277,49.17974824027919],[-121.98841057414796,49.1716637238796],[-121.98709761982506,49.167633739638475],[-121.97916588632232,49.15900819679242],[-121.97446942384032,49.15517246833917],[-121.9813125835805,49.149814506111724],[-121.98482738260826,49.15916572673516],[-121.98505837490622,49.15962373979455],[-121.99226068042341,49.1617079991928],[-122.00626155497773,49.16514714578866],[-121.98727848697263,49.17906273664581],[-121.9729965873177,49.18064909722311]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Chilliwack","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909020","name":"Chilliwack"}},{"type":"Feature","geometry":{"coordinates":[[[-121.99115055039807,49.15135420290432],[-121.99375229429326,49.14785048806881],[-121.9870678841057,49.14816815004339],[-121.99115055039807,49.15135420290432]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Aitchelitch 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909835","name":"Aitchelitch 9"}},{"type":"Feature","geometry":{"coordinates":[[[-121.98482738260826,49.15916572673516],[-121.9813125835805,49.149814506111724],[-121.97446942384032,49.15517246833917],[-121.97916588632232,49.15900819679242],[-121.98482738260826,49.15916572673516]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Squiaala","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909885","name":"Squiaala"}},{"type":"Feature","geometry":{"coordinates":[[[-122.12767482427905,49.19817258186605],[-122.20242933961565,49.198574828007175],[-122.24890540659692,49.176358522613356],[-122.24969641265483,49.143189687659536],[-122.18150359407919,49.138232793168726],[-122.18481093509004,49.096550895224645],[-122.13201710021374,49.0970764798326],[-122.09552475168059,49.132931253427856],[-121.96938986763243,49.20771060752301],[-122.0115925873314,49.20968970887386],[-122.0373554779325,49.19982522815407],[-122.12767482427905,49.19817258186605]],[[-122.07430968193869,49.1887197739207],[-122.06980090327642,49.18660010254769],[-122.07752720198799,49.18052133844642],[-122.08258708422723,49.182641463447894],[-122.07430968193869,49.1887197739207]],[[-122.07345111587554,49.17665949889337],[-122.08127400786512,49.17267515511536],[-122.08372149500433,49.16914631316659],[-122.08940421980009,49.16881927930149],[-122.09242363365445,49.172409398288565],[-122.08380719807123,49.173101962247706],[-122.07345111587554,49.17665949889337]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909062","name":"Fraser Valley G"}},{"type":"Feature","geometry":{"coordinates":[[[-121.97916588632232,49.15900819679242],[-121.98709761982506,49.167633739638475],[-121.98505837490622,49.15962373979455],[-121.98482738260826,49.15916572673516],[-121.97916588632232,49.15900819679242]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Kwawkwawapilt 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909821","name":"Kwawkwawapilt 6"}},{"type":"Feature","geometry":{"coordinates":[[[-121.98505837490622,49.15962373979455],[-121.98709761982506,49.167633739638475],[-121.98841057414796,49.1716637238796],[-121.98727848697263,49.17906273664581],[-122.00626155497773,49.16514714578866],[-121.99226068042341,49.1617079991928],[-121.98505837490622,49.15962373979455]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Skway 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909826","name":"Skway 5"}},{"type":"Feature","geometry":{"coordinates":[[[-122.07345111587554,49.17665949889337],[-122.08380719807123,49.173101962247706],[-122.09242363365445,49.172409398288565],[-122.08940421980009,49.16881927930149],[-122.08372149500433,49.16914631316659],[-122.08127400786512,49.17267515511536],[-122.07345111587554,49.17665949889337]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Skweahm 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909881","name":"Skweahm 10"}},{"type":"Feature","geometry":{"coordinates":[[[-121.9729965873177,49.18064909722311],[-121.98727848697263,49.17906273664581],[-121.98841057414796,49.1716637238796],[-121.96407067176277,49.17974824027919],[-121.9729965873177,49.18064909722311]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Skwah 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909824","name":"Skwah 4"}},{"type":"Feature","geometry":{"coordinates":[[[-121.83885336369805,49.183922614948855],[-121.83865568988452,49.17587645911497],[-121.83022615960807,49.170587670479215],[-121.82722513168395,49.18388811691316],[-121.83885336369805,49.183922614948855]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Schelowat 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909838","name":"Schelowat 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.07430968193869,49.1887197739207],[-122.08258708422723,49.182641463447894],[-122.07752720198799,49.18052133844642],[-122.06980090327642,49.18660010254769],[-122.07430968193869,49.1887197739207]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Lakahahmen 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909880","name":"Lakahahmen 11"}},{"type":"Feature","geometry":{"coordinates":[[[-121.9729965873177,49.18064909722311],[-121.96407067176277,49.17974824027919],[-121.96038534470962,49.19316895890587],[-121.97326320094919,49.18718393717878],[-121.9729965873177,49.18064909722311]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Skwali 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909825","name":"Skwali 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.42458299238417,49.18450265287301],[-122.41902861215097,49.18211688381191],[-122.41069870669266,49.18737380957053],[-122.42378878619432,49.19110275930646],[-122.42458299238417,49.18450265287301]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Langley 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909856","name":"Langley 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.78238830857335,49.18760850777122],[-121.75963937503722,49.191544366629714],[-121.75541634207524,49.20649805285435],[-121.78834967354628,49.20031362752063],[-121.78238830857335,49.18760850777122]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Cheam 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909837","name":"Cheam 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.72998728538737,49.20741323610873],[-121.72076110213277,49.2004024925583],[-121.70542174248789,49.20745902404613],[-121.71272436857994,49.213319702213724],[-121.72998728538737,49.20741323610873]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Popkum 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909844","name":"Popkum 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.0115925873314,49.20968970887386],[-122.02728868211572,49.21165634370242],[-122.0373554779325,49.19982522815407],[-122.0115925873314,49.20968970887386]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Holachten 8","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909879","name":"Holachten 8"}},{"type":"Feature","geometry":{"coordinates":[[[-121.76605247591148,49.212216382079184],[-121.75249063402552,49.21422875160935],[-121.7527951540475,49.22237375570858],[-121.76557506590288,49.222330021773125],[-121.76605247591148,49.212216382079184]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Tseatah 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909834","name":"Tseatah 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.65679749730616,49.29588497677709],[-121.65929876842958,49.296537128000566],[-121.66863924511006,49.29641594108945],[-121.67921424685973,49.27219241254063],[-121.73208468546383,49.21444145771178],[-121.78829624046332,49.20691396385541],[-121.78834967354628,49.20031362752063],[-121.75541634207524,49.20649805285435],[-121.75963937503722,49.191544366629714],[-121.78238830857335,49.18760850777122],[-121.79030699968553,49.11043882650238],[-121.73518607433931,49.16028150383326],[-121.68336364994354,49.18576226535985],[-121.59002341903452,49.15759343229788],[-121.55066187681464,49.20341320953763],[-121.5015531479938,49.172099546870164],[-121.50194626363792,49.296017741845894],[-121.65679749730616,49.29588497677709]],[[-121.72998728538737,49.20741323610873],[-121.71272436857994,49.213319702213724],[-121.70542174248789,49.20745902404613],[-121.72076110213277,49.2004024925583],[-121.72998728538737,49.20741323610873]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909034","name":"Fraser Valley D"}},{"type":"Feature","geometry":{"coordinates":[[[-122.24890540659692,49.176358522613356],[-122.2699681046833,49.17664162087146],[-122.27313729136561,49.28311249107908],[-122.29835243356797,49.312710668878076],[-122.30099146610084,49.35582288292446],[-122.40996471191187,49.35295039719845],[-122.40914346739002,49.26426971657111],[-122.42378878619432,49.19110275930646],[-122.41069870669266,49.18737380957053],[-122.41902861215097,49.18211688381191],[-122.42458299238417,49.18450265287301],[-122.42580430075782,49.168830604910696],[-122.3598822994415,49.11918548581165],[-122.3384169476604,49.109050987249475],[-122.24969641265483,49.143189687659536],[-122.24890540659692,49.176358522613356]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Mission","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909056","name":"Mission"}},{"type":"Feature","geometry":{"coordinates":[[[-121.9337667142806,49.23366690268475],[-121.95266130747804,49.236211141597046],[-121.94167924626954,49.22930258289156],[-121.9337667142806,49.23366690268475]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Scowlitz 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909833","name":"Scowlitz 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.98777790685826,49.24628062158404],[-122.00785460555288,49.24626971056172],[-122.00852236240576,49.23356538474395],[-121.98777790685826,49.24628062158404]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Squawkum Creek 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909882","name":"Squawkum Creek 3"}},{"type":"Feature","geometry":{"coordinates":[[[-121.61459081933172,49.35685832525256],[-121.68960910611902,49.36063790754411],[-121.7652376084027,49.359368300538065],[-121.7638736272492,49.33399358405036],[-121.79917509804413,49.31389292554743],[-121.77140793832262,49.30936496247825],[-121.78862469440377,49.28068934856984],[-121.81393020211615,49.304120907199966],[-121.89259297306808,49.29043504494676],[-121.91585741274763,49.27717476799758],[-121.94170361109387,49.24961309396596],[-121.96244258108136,49.2421097970057],[-121.94896101012934,49.232880107254395],[-121.94490492307652,49.21558967532734],[-121.85416878094534,49.222486200120436],[-121.78829624046332,49.20691396385541],[-121.73208468546383,49.21444145771178],[-121.67921424685973,49.27219241254063],[-121.66863924511006,49.29641594108945],[-121.66677349142593,49.312306814248636],[-121.62947041554388,49.31975830436024],[-121.60717430840307,49.35130049522718],[-121.61345230866242,49.35652144161298],[-121.61459081933172,49.35685832525256]],[[-121.9337667142806,49.23366690268475],[-121.94167924626954,49.22930258289156],[-121.95266130747804,49.236211141597046],[-121.9337667142806,49.23366690268475]],[[-121.76605247591148,49.212216382079184],[-121.76557506590288,49.222330021773125],[-121.7527951540475,49.22237375570858],[-121.75249063402552,49.21422875160935],[-121.76605247591148,49.212216382079184]],[[-121.67595738623424,49.31285821926184],[-121.69494304829462,49.261099454385565],[-121.74327342604494,49.25816276839763],[-121.71654703908891,49.297718771110176],[-121.67595738623424,49.31285821926184]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Kent","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909032","name":"Kent"}},{"type":"Feature","geometry":{"coordinates":[[[-121.67595738623424,49.31285821926184],[-121.71654703908891,49.297718771110176],[-121.74327342604494,49.25816276839763],[-121.69494304829462,49.261099454385565],[-121.67595738623424,49.31285821926184]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Seabird Island","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909832","name":"Seabird Island"}},{"type":"Feature","geometry":{"coordinates":[[[-121.89259297306808,49.29043504494676],[-121.88966086977668,49.30844881416271],[-121.92787840290733,49.30950829079152],[-121.91585741274763,49.27717476799758],[-121.89259297306808,49.29043504494676]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Chehalis 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909839","name":"Chehalis 5"}},{"type":"Feature","geometry":{"coordinates":[[[-121.81393020211615,49.304120907199966],[-121.78862469440377,49.28068934856984],[-121.77140793832262,49.30936496247825],[-121.79917509804413,49.31389292554743],[-121.81393020211615,49.304120907199966]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Harrison Hot Springs","type":"Village","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909027","name":"Harrison Hot Springs"}},{"type":"Feature","geometry":{"coordinates":[[[-121.65929876842958,49.296537128000566],[-121.65679749730616,49.29588497677709],[-121.64603356064131,49.30224370651941],[-121.66055473967286,49.305728462768556],[-121.65929876842958,49.296537128000566]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Peters 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909843","name":"Peters 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.60545025109984,49.346986243100105],[-121.61873075095502,49.33213880116846],[-121.59859439787057,49.33334919761228],[-121.60545025109984,49.346986243100105]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Ohamil 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909807","name":"Ohamil 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.61345230866242,49.35652144161298],[-121.60717430840307,49.35130049522718],[-121.6066620588561,49.352442430544826],[-121.61345230866242,49.35652144161298]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Lukseetsissum 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909810","name":"Lukseetsissum 9"}},{"type":"Feature","geometry":{"coordinates":[[[-121.6066620588561,49.352442430544826],[-121.60400870421103,49.35702568988928],[-121.61459081933172,49.35685832525256],[-121.61345230866242,49.35652144161298],[-121.6066620588561,49.352442430544826]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Ruby Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909851","name":"Ruby Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.14440262704315,49.70015953813995],[-121.51058770879669,49.703101165296815],[-121.70143846138986,49.701587999035766],[-121.7025099819352,49.66799300433288],[-121.67140074404642,49.616049533034435],[-121.61829481074648,49.62322372097172],[-121.55049270120783,49.60203845136623],[-121.57219096185187,49.48649746913649],[-121.61873993872462,49.5017476881511],[-121.64580956645868,49.45230784164619],[-121.7183263431592,49.39148597901746],[-121.68960910611902,49.36063790754411],[-121.61459081933172,49.35685832525256],[-121.60400870421103,49.35702568988928],[-121.6066620588561,49.352442430544826],[-121.60717430840307,49.35130049522718],[-121.62947041554388,49.31975830436024],[-121.66677349142593,49.312306814248636],[-121.66863924511006,49.29641594108945],[-121.65929876842958,49.296537128000566],[-121.66055473967286,49.305728462768556],[-121.64603356064131,49.30224370651941],[-121.65679749730616,49.29588497677709],[-121.50194626363792,49.296017741845894],[-121.5015531479938,49.172099546870164],[-121.47959064736382,49.13979247682551],[-121.43143562290196,49.15668746647913],[-121.40414612222004,49.12654021390305],[-121.39300893757931,49.079477836619475],[-121.3456118875235,49.09760969886702],[-121.30432080128085,49.05838417351794],[-121.29731467816474,49.01815951398485],[-121.27292340115989,49.00002692037695],[-120.84840827446449,49.000077145903774],[-120.82569932186053,49.02546256743129],[-120.89507815678598,49.07816044404138],[-120.96311148240413,49.09483565753421],[-120.85798331803531,49.133953624014005],[-120.90318383254578,49.17513873580312],[-120.89127772996144,49.20617473969421],[-120.84738436692352,49.21970600805052],[-120.82076573616285,49.247323188344076],[-120.82397134237581,49.29497116390638],[-120.90578885427527,49.30567529731264],[-120.93612029124154,49.27597719959101],[-121.0014173551285,49.278242388862104],[-121.04524265512967,49.33073445419786],[-121.09804393142029,49.35390947218675],[-121.09926682834454,49.44108774085686],[-121.05377626403921,49.471228500840404],[-121.08187464222203,49.51416761960043],[-121.04771034450359,49.53187218572555],[-121.03788250372105,49.58691195321396],[-121.00205632480316,49.59704497533077],[-120.95950302271704,49.642209131120424],[-120.96240832746012,49.67347949598367],[-121.00714552978144,49.65851548163549],[-121.01882394278387,49.63699736005438],[-121.15583339068336,49.61715655036909],[-121.17078915662884,49.648364579616135],[-121.1322883745683,49.66746716571656],[-121.14440262704315,49.70015953813995]],[[-121.42488833987753,49.56096105707849],[-121.42618980051505,49.56284190922195],[-121.42128408375804,49.563206560467016],[-121.42147283175291,49.56142677508444],[-121.42488833987753,49.56096105707849]],[[-121.39264820980115,49.62642459114038],[-121.39861735193685,49.629934957717495],[-121.39305614262457,49.63331375038662],[-121.39041843915845,49.628941359152456],[-121.39264820980115,49.62642459114038]],[[-121.58882619999483,49.365083950218995],[-121.58295609405859,49.359618887236856],[-121.59541411237441,49.359962359618265],[-121.58882619999483,49.365083950218995]],[[-121.4202219689383,49.468482757268475],[-121.43202722438281,49.46820740791229],[-121.43153259640548,49.473658781318385],[-121.41882110798728,49.47340856310263],[-121.4202219689383,49.468482757268475]],[[-121.41506835954581,49.51540412808387],[-121.42512434357559,49.51650037723046],[-121.42175688814885,49.52959508533148],[-121.41506835954581,49.51540412808387]],[[-121.4175179343185,49.66611327375616],[-121.40307570793306,49.655129739979465],[-121.42418596269887,49.65579442682524],[-121.4175179343185,49.66611327375616]],[[-121.60545025109984,49.346986243100105],[-121.59859439787057,49.33334919761228],[-121.61873075095502,49.33213880116846],[-121.60545025109984,49.346986243100105]],[[-121.4383516895015,49.45762333626941],[-121.42742289428135,49.457559930372746],[-121.42725969420344,49.44301900561059],[-121.44180514897594,49.432364168587576],[-121.4383516895015,49.45762333626941]],[[-121.53227105466988,49.36826266452171],[-121.56606593571647,49.36564636961807],[-121.56056996483136,49.38021772178508],[-121.53227105466988,49.36826266452171]],[[-121.43636580887353,49.42943666432638],[-121.37980460812581,49.369302910309635],[-121.44742458718748,49.36673567878044],[-121.47338201846954,49.35042272233872],[-121.57478542411705,49.352753154885555],[-121.46982489177314,49.38840226033121],[-121.4698861595264,49.40308068110849],[-121.45889418941755,49.403413181385794],[-121.43636580887353,49.42943666432638]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909016","name":"Fraser Valley B"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58882619999483,49.365083950218995],[-121.59541411237441,49.359962359618265],[-121.58295609405859,49.359618887236856],[-121.58882619999483,49.365083950218995]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Skawahlook 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909814","name":"Skawahlook 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.53227105466988,49.36826266452171],[-121.56056996483136,49.38021772178508],[-121.56606593571647,49.36564636961807],[-121.53227105466988,49.36826266452171]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Chawathil 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909804","name":"Chawathil 4"}},{"type":"Feature","geometry":{"coordinates":[[[-121.43636580887353,49.42943666432638],[-121.45889418941755,49.403413181385794],[-121.4698861595264,49.40308068110849],[-121.46982489177314,49.38840226033121],[-121.57478542411705,49.352753154885555],[-121.47338201846954,49.35042272233872],[-121.44742458718748,49.36673567878044],[-121.37980460812581,49.369302910309635],[-121.43636580887353,49.42943666432638]],[[-121.46093530381147,49.39186135924167],[-121.4611841446142,49.40052775212277],[-121.44900662867651,49.40040360655863],[-121.45129941418956,49.39250125302641],[-121.46093530381147,49.39186135924167]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Hope","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909009","name":"Hope"}},{"type":"Feature","geometry":{"coordinates":[[[-121.46093530381147,49.39186135924167],[-121.45129941418956,49.39250125302641],[-121.44900662867651,49.40040360655863],[-121.4611841446142,49.40052775212277],[-121.46093530381147,49.39186135924167]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Schkam 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909812","name":"Schkam 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.4383516895015,49.45762333626941],[-121.44180514897594,49.432364168587576],[-121.42725969420344,49.44301900561059],[-121.42742289428135,49.457559930372746],[-121.4383516895015,49.45762333626941]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Puckatholetchin 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909808","name":"Puckatholetchin 11"}},{"type":"Feature","geometry":{"coordinates":[[[-121.4202219689383,49.468482757268475],[-121.41882110798728,49.47340856310263],[-121.43153259640548,49.473658781318385],[-121.43202722438281,49.46820740791229],[-121.4202219689383,49.468482757268475]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Stullawheets 8","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909841","name":"Stullawheets 8"}},{"type":"Feature","geometry":{"coordinates":[[[-121.41506835954581,49.51540412808387],[-121.42175688814885,49.52959508533148],[-121.42512434357559,49.51650037723046],[-121.41506835954581,49.51540412808387]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Albert Flat 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909876","name":"Albert Flat 5"}},{"type":"Feature","geometry":{"coordinates":[[[-121.42488833987753,49.56096105707849],[-121.42147283175291,49.56142677508444],[-121.42128408375804,49.563206560467016],[-121.42618980051505,49.56284190922195],[-121.42488833987753,49.56096105707849]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Yale Town 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909818","name":"Yale Town 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.76779367231723,49.932710253335756],[-122.85061799626564,49.91861036165716],[-122.89656566974934,49.89481837256128],[-122.93648257666872,49.917408009381404],[-122.96201255239237,49.90257664633004],[-122.98524343300961,49.85747455511842],[-122.964654188915,49.83499511243596],[-122.87367107385128,49.81847795159122],[-122.88991258343998,49.80195424031206],[-122.8553108326616,49.74346152404376],[-122.81420399155287,49.711243938650796],[-122.8524273292758,49.67150864495653],[-122.81136175933952,49.61923292675175],[-122.8355773434717,49.599656416699524],[-122.81608574841671,49.57235386256782],[-122.70008679969519,49.57355454365085],[-122.65542317466361,49.53964890002054],[-122.60814378576447,49.54170208141296],[-122.581689210493,49.4905779894993],[-122.52811139362846,49.45786851475804],[-122.56314504830006,49.39143457146155],[-122.60329515787801,49.35312529496375],[-122.57539780212866,49.352431714833266],[-122.40996471191187,49.35295039719845],[-122.30099146610084,49.35582288292446],[-122.29835243356797,49.312710668878076],[-122.27313729136561,49.28311249107908],[-122.2699681046833,49.17664162087146],[-122.24890540659692,49.176358522613356],[-122.20242933961565,49.198574828007175],[-122.12767482427905,49.19817258186605],[-122.01636488300613,49.28324605920883],[-122.08439651021658,49.32282606404291],[-122.17108451663287,49.34703203721808],[-122.15282467483226,49.36586147045434],[-122.18381498074604,49.3972741648274],[-122.13990006194267,49.444978535853735],[-122.13102984070221,49.512641042782455],[-122.08048220483529,49.54222177989148],[-122.07173901372757,49.58120280872792],[-122.10297460489203,49.60896144212403],[-122.16482706445471,49.60660019893865],[-122.23680658810618,49.5865089787872],[-122.2927400483735,49.610817065997715],[-122.29679954639276,49.663292688676705],[-122.3486657369632,49.65926912193448],[-122.34504012497042,49.62132649170494],[-122.40289815219305,49.64016040895638],[-122.44575898662416,49.63599261686095],[-122.47508162763326,49.694502592013976],[-122.43186680018378,49.73370049431969],[-122.48490052307959,49.77778564269465],[-122.5846066453968,49.78285995084661],[-122.63877177958594,49.775286126730144],[-122.6373460170279,49.80572940382125],[-122.60846878005002,49.86101968134388],[-122.74656861137153,49.89142215427116],[-122.76779367231723,49.932710253335756]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909060","name":"Fraser Valley F"}},{"type":"Feature","geometry":{"coordinates":[[[-121.39264820980115,49.62642459114038],[-121.39041843915845,49.628941359152456],[-121.39305614262457,49.63331375038662],[-121.39861735193685,49.629934957717495],[-121.39264820980115,49.62642459114038]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Saddle Rock 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909809","name":"Saddle Rock 9"}},{"type":"Feature","geometry":{"coordinates":[[[-121.4175179343185,49.66611327375616],[-121.42418596269887,49.65579442682524],[-121.40307570793306,49.655129739979465],[-121.4175179343185,49.66611327375616]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Spuzzum 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909816","name":"Spuzzum 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.53207277363953,50.12380251760332],[-122.63822520979983,50.123262985967365],[-122.65991648438145,50.1431475622135],[-122.73396217426436,50.151296077343595],[-122.78828729791068,50.13113766468127],[-122.80579703700225,50.08710218243847],[-122.79184177806052,50.0411029817133],[-122.74060613605056,50.016782374686514],[-122.67945282743293,50.02264473476505],[-122.6803038352416,49.98123414949182],[-122.76779367231723,49.932710253335756],[-122.74656861137153,49.89142215427116],[-122.60846878005002,49.86101968134388],[-122.6373460170279,49.80572940382125],[-122.63877177958594,49.775286126730144],[-122.5846066453968,49.78285995084661],[-122.48490052307959,49.77778564269465],[-122.43186680018378,49.73370049431969],[-122.47508162763326,49.694502592013976],[-122.44575898662416,49.63599261686095],[-122.40289815219305,49.64016040895638],[-122.34504012497042,49.62132649170494],[-122.3486657369632,49.65926912193448],[-122.29679954639276,49.663292688676705],[-122.2927400483735,49.610817065997715],[-122.23680658810618,49.5865089787872],[-122.16482706445471,49.60660019893865],[-122.10297460489203,49.60896144212403],[-122.07173901372757,49.58120280872792],[-122.08048220483529,49.54222177989148],[-122.13102984070221,49.512641042782455],[-122.13990006194267,49.444978535853735],[-122.18381498074604,49.3972741648274],[-122.15282467483226,49.36586147045434],[-122.17108451663287,49.34703203721808],[-122.08439651021658,49.32282606404291],[-122.01636488300613,49.28324605920883],[-122.12767482427905,49.19817258186605],[-122.0373554779325,49.19982522815407],[-122.02728868211572,49.21165634370242],[-122.0115925873314,49.20968970887386],[-121.96938986763243,49.20771060752301],[-121.94490492307652,49.21558967532734],[-121.94896101012934,49.232880107254395],[-121.96244258108136,49.2421097970057],[-121.94170361109387,49.24961309396596],[-121.91585741274763,49.27717476799758],[-121.92787840290733,49.30950829079152],[-121.88966086977668,49.30844881416271],[-121.89259297306808,49.29043504494676],[-121.81393020211615,49.304120907199966],[-121.79917509804413,49.31389292554743],[-121.7638736272492,49.33399358405036],[-121.7652376084027,49.359368300538065],[-121.68960910611902,49.36063790754411],[-121.7183263431592,49.39148597901746],[-121.64580956645868,49.45230784164619],[-121.61873993872462,49.5017476881511],[-121.57219096185187,49.48649746913649],[-121.55049270120783,49.60203845136623],[-121.61829481074648,49.62322372097172],[-121.67140074404642,49.616049533034435],[-121.7025099819352,49.66799300433288],[-121.70143846138986,49.701587999035766],[-121.71268605267092,49.82363384214905],[-121.73153456495432,49.85018571917993],[-121.79332897266502,49.84092617205509],[-121.85806001725814,49.88038748086423],[-121.90581019089986,49.87372903621733],[-121.97259681070742,49.84979788033316],[-121.99200675184645,49.820200445983566],[-122.03925626179921,49.81705534039776],[-122.10469559550428,49.84843215868419],[-122.1636463462239,49.90939290599292],[-122.20791517266318,49.91223982621253],[-122.27129206828607,49.96310098253728],[-122.2493874651411,49.97969351205908],[-122.25533078935193,50.03529088825321],[-122.28883609699916,50.05152526268958],[-122.2746918415539,50.08405548489599],[-122.22991522865198,50.11051206971429],[-122.25844006319265,50.12344431007174],[-122.52216834031671,50.12383959572101],[-122.52678273296814,50.11926965906843],[-122.53207277363953,50.12380251760332]],[[-122.45626185009996,49.98798008413365],[-122.44585485649014,49.9883468888239],[-122.44581620028231,49.984401645628665],[-122.45336759019399,49.98418140722036],[-122.45626185009996,49.98798008413365]],[[-122.22130873343403,49.77389776543295],[-122.22191665342002,49.77383259005269],[-122.22202347744665,49.77452592342726],[-122.22135938012909,49.77453618032418],[-122.22130873343403,49.77389776543295]],[[-122.53366263160102,50.04887525959815],[-122.54221234771134,50.0490574454763],[-122.53779913645847,50.05454924857768],[-122.53366263160102,50.04887525959815]],[[-121.98777790685826,49.24628062158404],[-122.00852236240576,49.23356538474395],[-122.00785460555288,49.24626971056172],[-121.98777790685826,49.24628062158404]],[[-122.40301186595926,49.93610532303982],[-122.41817865134692,49.93465908023362],[-122.41949022891997,49.949388463932166],[-122.40345391178532,49.95206643411524],[-122.40301186595926,49.93610532303982]],[[-122.19423618605421,49.75906281859552],[-122.15256204570514,49.7582605773167],[-122.1506714374177,49.75155908559772],[-122.18013184569027,49.750190069868474],[-122.19423618605421,49.75906281859552]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909048","name":"Fraser Valley C"}},{"type":"Feature","geometry":{"coordinates":[[[-122.19423618605421,49.75906281859552],[-122.18013184569027,49.750190069868474],[-122.1506714374177,49.75155908559772],[-122.15256204570514,49.7582605773167],[-122.19423618605421,49.75906281859552]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Douglas 8","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909842","name":"Douglas 8"}},{"type":"Feature","geometry":{"coordinates":[[[-122.22130873343403,49.77389776543295],[-122.22135938012909,49.77453618032418],[-122.22202347744665,49.77452592342726],[-122.22191665342002,49.77383259005269],[-122.22130873343403,49.77389776543295]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Tipella 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909848","name":"Tipella 7"}},{"type":"Feature","geometry":{"coordinates":[[[-121.43278591604229,49.83081502671446],[-121.43069578939156,49.82268823930717],[-121.42674617606579,49.82259470435211],[-121.4267886376521,49.83430440531709],[-121.43154139717035,49.83426159808182],[-121.43278591604229,49.83081502671446]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Boston Bar 1A","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909836","name":"Boston Bar 1A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.43154139717035,49.83426159808182],[-121.42969478258803,49.839111801484236],[-121.4369971306262,49.838614953990444],[-121.43278591604229,49.83081502671446],[-121.43154139717035,49.83426159808182]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Tuckkwiowhum 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909817","name":"Tuckkwiowhum 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.45207956473766,49.85993464358292],[-121.44424155584463,49.878795694996555],[-121.45848264729972,49.87973732373504],[-121.45207956473766,49.85993464358292]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Kopchitchin 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909806","name":"Kopchitchin 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.44821121705176,49.90842967000072],[-121.43945301602119,49.90940806648434],[-121.44529154422575,49.912526464651684],[-121.44821121705176,49.90842967000072]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Bucktum 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909847","name":"Bucktum 4"}},{"type":"Feature","geometry":{"coordinates":[[[-121.54268209552515,50.05240793208374],[-121.60975134458276,50.04188198106048],[-121.71457896512857,50.08620817117932],[-121.75876280349085,50.09196251262882],[-121.84939080300482,50.075296355730394],[-121.89580230551168,50.04964998716786],[-121.9593924193798,50.08469144706474],[-122.0236312700526,50.085840471547336],[-122.07006993723608,50.1263701322907],[-122.11636732115254,50.107311729794226],[-122.22991522865198,50.11051206971429],[-122.2746918415539,50.08405548489599],[-122.28883609699916,50.05152526268958],[-122.25533078935193,50.03529088825321],[-122.2493874651411,49.97969351205908],[-122.27129206828607,49.96310098253728],[-122.20791517266318,49.91223982621253],[-122.1636463462239,49.90939290599292],[-122.10469559550428,49.84843215868419],[-122.03925626179921,49.81705534039776],[-121.99200675184645,49.820200445983566],[-121.97259681070742,49.84979788033316],[-121.90581019089986,49.87372903621733],[-121.85806001725814,49.88038748086423],[-121.79332897266502,49.84092617205509],[-121.73153456495432,49.85018571917993],[-121.71268605267092,49.82363384214905],[-121.70143846138986,49.701587999035766],[-121.51058770879669,49.703101165296815],[-121.14440262704315,49.70015953813995],[-121.18570331991754,49.726605804720975],[-121.21182554628788,49.77926963595587],[-121.1802266803239,49.82187052738434],[-121.12435089450446,49.82564067234034],[-121.16426153998125,49.88125809491546],[-121.22015741929802,49.89448188496823],[-121.2860351109753,49.87226310313267],[-121.32425906778234,49.89942365700732],[-121.286554996184,49.926950354306975],[-121.2691639139884,49.962255647616104],[-121.31532813930744,50.05246633438642],[-121.54210692180143,50.05238788010108],[-121.54268209552515,50.05240793208374]],[[-121.48762345788006,49.96453365722716],[-121.48246681010146,49.96486229966923],[-121.48248263102575,49.95967036547653],[-121.48774943797558,49.95972751297834],[-121.48762345788006,49.96453365722716]],[[-121.44821121705176,49.90842967000072],[-121.44529154422575,49.912526464651684],[-121.43945301602119,49.90940806648434],[-121.44821121705176,49.90842967000072]],[[-121.43278591604229,49.83081502671446],[-121.4369971306262,49.838614953990444],[-121.42969478258803,49.839111801484236],[-121.43154139717035,49.83426159808182],[-121.4267886376521,49.83430440531709],[-121.42674617606579,49.82259470435211],[-121.43069578939156,49.82268823930717],[-121.43278591604229,49.83081502671446]],[[-121.49561768188036,49.99429894225522],[-121.4846812326856,49.99408297423273],[-121.48425638103568,49.98455552077275],[-121.49516404539352,49.98655904371696],[-121.49561768188036,49.99429894225522]],[[-121.45207956473766,49.85993464358292],[-121.45848264729972,49.87973732373504],[-121.44424155584463,49.878795694996555],[-121.45207956473766,49.85993464358292]],[[-121.46245355856317,49.92922812499372],[-121.4834247471644,49.93211493583589],[-121.48385970036114,49.95174807809728],[-121.46245355856317,49.92922812499372]],[[-121.50499699976889,50.01463478812049],[-121.50187412741633,50.00084106689894],[-121.51524623702652,49.99904647379498],[-121.51983831884121,50.00953311279616],[-121.50499699976889,50.01463478812049]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Fraser Valley A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909014","name":"Fraser Valley A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.46245355856317,49.92922812499372],[-121.48385970036114,49.95174807809728],[-121.4834247471644,49.93211493583589],[-121.46245355856317,49.92922812499372]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Speyum 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909815","name":"Speyum 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.40301186595926,49.93610532303982],[-122.40345391178532,49.95206643411524],[-122.41949022891997,49.949388463932166],[-122.41817865134692,49.93465908023362],[-122.40301186595926,49.93610532303982]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Skookumchuck 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909845","name":"Skookumchuck 4"}},{"type":"Feature","geometry":{"coordinates":[[[-121.48762345788006,49.96453365722716],[-121.48774943797558,49.95972751297834],[-121.48248263102575,49.95967036547653],[-121.48246681010146,49.96486229966923],[-121.48762345788006,49.96453365722716]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Kahmoose 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909819","name":"Kahmoose 4"}},{"type":"Feature","geometry":{"coordinates":[[[-122.45626185009996,49.98798008413365],[-122.45336759019399,49.98418140722036],[-122.44581620028231,49.984401645628665],[-122.44585485649014,49.9883468888239],[-122.45626185009996,49.98798008413365]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Sachteen","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909883","name":"Sachteen"}},{"type":"Feature","geometry":{"coordinates":[[[-121.49561768188036,49.99429894225522],[-121.49516404539352,49.98655904371696],[-121.48425638103568,49.98455552077275],[-121.4846812326856,49.99408297423273],[-121.49561768188036,49.99429894225522]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Boothroyd 13","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909850","name":"Boothroyd 13"}},{"type":"Feature","geometry":{"coordinates":[[[-121.50499699976889,50.01463478812049],[-121.51983831884121,50.00953311279616],[-121.51524623702652,49.99904647379498],[-121.50187412741633,50.00084106689894],[-121.50499699976889,50.01463478812049]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Inkahtsaph 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909805","name":"Inkahtsaph 6"}},{"type":"Feature","geometry":{"coordinates":[[[-122.53366263160102,50.04887525959815],[-122.53779913645847,50.05454924857768],[-122.54221234771134,50.0490574454763],[-122.53366263160102,50.04887525959815]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Q'alatkú7em","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909875","name":"Q'alatkú7em"}},{"type":"Feature","geometry":{"coordinates":[[[-122.53207277363953,50.12380251760332],[-122.52678273296814,50.11926965906843],[-122.52216834031671,50.12383959572101],[-122.53207277363953,50.12380251760332]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Fraser Valley","census_subdivision":"Paqulh","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5909","census_subdivision_code":"5909852","name":"Paqulh"}},{"type":"Feature","geometry":{"coordinates":[[[-119.25593608836277,52.840055390756085],[-119.28205213496106,52.830364318492215],[-119.25829928893734,52.8227980451323],[-119.25593608836277,52.840055390756085]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Valemount","type":"Village","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953007","name":"Valemount"}},{"type":"Feature","geometry":{"coordinates":[[[-120.03708743688581,53.80465020285502],[-120.15051183560888,53.77302184956204],[-120.23173786563326,53.7571037941942],[-120.29499868652887,53.78188278168137],[-120.38705368771564,53.77747964983246],[-120.56739232873618,53.81820783353864],[-120.58300451832123,53.8628532962318],[-120.62551263097654,53.8697911252255],[-120.67968911416605,53.90093106717803],[-120.7589592767069,53.903654551218644],[-120.7903589036525,53.88157353677616],[-120.8562675391007,53.92829105431812],[-120.93310469630791,53.89422069784152],[-121.01167684823534,53.91029510981981],[-120.9926097696748,53.94511386350711],[-121.02868684980423,53.97768817154362],[-121.11256873828124,54.000755874258076],[-121.0960303257247,53.78845248620791],[-121.13233756110094,53.76695279273683],[-121.13008236030184,53.72566074026824],[-121.144804746272,53.652369025594275],[-121.17002024385958,53.636491084886316],[-121.21217707928875,53.56771449114794],[-121.11999970552722,53.53524025641598],[-121.10733408680579,53.51576796582823],[-121.04394595252033,53.53350916646301],[-121.00982585274386,53.519200801531994],[-121.02642901070173,53.452336853834964],[-121.00828606866168,53.43040327155395],[-120.99827799501573,53.38303612854952],[-121.01819301224124,53.3297661909194],[-120.92281197991002,53.307069781572345],[-120.85298043481227,53.28163907566804],[-120.81116310330661,53.28784507662867],[-120.78748103717776,53.256644325035595],[-120.7150090961226,53.264522812431146],[-120.62716310041482,53.213961403192755],[-120.46671840361881,53.14909640728693],[-120.46259716623011,53.12471265191372],[-120.4170661948413,53.100242101099525],[-120.42528755745771,53.06784119844121],[-120.48841889814629,53.054554000012224],[-120.45312671157451,52.99325703672585],[-120.43420133345742,52.97262576378822],[-120.37676277498711,52.96476640988252],[-120.33843793729068,52.92738895883019],[-120.26935085495714,52.928866624436004],[-120.22712962425173,52.91831506852374],[-120.17036973019488,52.92495357843085],[-120.14254549439083,52.87674077578408],[-120.1114813386262,52.84314212418255],[-120.06142917336307,52.82429429489569],[-120.0247460353654,52.75757772816632],[-119.768405977507,52.66031932069511],[-119.6774833929841,52.69561343264292],[-119.61606006916409,52.68913509532651],[-119.57795469385309,52.64799119057398],[-119.53111838977571,52.63154157548282],[-119.46491103194981,52.649211970572736],[-119.44258646208658,52.6387638018246],[-119.3694796150536,52.65611080530539],[-119.36440142129895,52.63250937836778],[-119.19256750031987,52.63689036762571],[-119.05608806683742,52.63329783055958],[-119.03363497457812,52.59450823729773],[-118.92755699142704,52.56878594085348],[-118.88632215435284,52.47415478210626],[-118.92426376533554,52.4631567164777],[-118.92162942231695,52.422119587653036],[-118.94793457668874,52.391212690583444],[-118.9263772037914,52.353597998267475],[-118.86844898706418,52.34430522496931],[-118.78802059778064,52.30529402627462],[-118.8821237481863,52.26408955766972],[-118.839832425669,52.23281109263444],[-118.84719132366848,52.206799127936094],[-118.80320419853614,52.17722257400103],[-118.75197844802769,52.18515182751224],[-118.71606235300881,52.161344260022496],[-118.64008122226434,52.16955216580092],[-118.58241469667689,52.193001603147486],[-118.54052473561096,52.27299510773035],[-118.50156617668566,52.281673122784596],[-118.49312467464128,52.312498632154536],[-118.39524391856708,52.334845826716084],[-118.35364733518178,52.36605482322305],[-118.31710963352782,52.36777840841181],[-118.28975577098262,52.33895049731478],[-118.25420275558695,52.347971552243564],[-118.22601544486646,52.38028948983244],[-118.25533801784519,52.449536947527974],[-118.1933509328222,52.477820115697085],[-118.23552910270092,52.49017789295844],[-118.28914629729884,52.53849400402096],[-118.272783383034,52.56595580745586],[-118.33256828987776,52.58017159751485],[-118.3544911182317,52.633683980660535],[-118.30103784508414,52.65408122898692],[-118.29014118574572,52.677693441574],[-118.34329466527976,52.70888888153544],[-118.34282282867157,52.73855633325497],[-118.42241012943758,52.775786511962735],[-118.40108856689174,52.840507813370714],[-118.44446262459722,52.852225129781786],[-118.44827945001762,52.88528679187128],[-118.5001423710584,52.90638195122561],[-118.54378774498998,52.908454633134205],[-118.59651368820198,52.88104410860748],[-118.61342207156233,52.93601196344632],[-118.66020489429746,52.96393768062808],[-118.64077215980564,52.99933106894774],[-118.65534778600306,53.03479723339301],[-118.75905843996392,53.06577606003673],[-118.73234093348077,53.1192494101021],[-118.7724880811906,53.13303927086822],[-118.78652165888747,53.159224179625255],[-118.91596082726338,53.211844915434206],[-118.94744409721655,53.238935158012985],[-119.02383383346701,53.23194970726286],[-118.99941805270834,53.19276477009838],[-119.04688152684797,53.144909624071516],[-119.11952400620235,53.16176576397],[-119.14601293054683,53.19118076861356],[-119.23271506781946,53.181768314020346],[-119.34049629263714,53.287080297804756],[-119.35587852064732,53.340102179676585],[-119.40608481035825,53.368089294537796],[-119.45924030972694,53.357219363011986],[-119.51753424652837,53.37006846251101],[-119.66890020525767,53.367828191709606],[-119.72542263011707,53.388754319312454],[-119.79063326841163,53.479265906944356],[-119.89947701022167,53.51912780614278],[-119.86225650779885,53.54850858696944],[-119.91071278358194,53.60125461596505],[-119.85406621146876,53.60770663019238],[-119.74872565869954,53.59336587551843],[-119.71340854121951,53.6145799246129],[-119.7973807609446,53.707772196404356],[-119.90798088649748,53.71060103523053],[-119.88823655626443,53.77948461703774],[-119.94234051951926,53.775861900530046],[-119.99999997842916,53.80621976296581],[-120.03708743688581,53.80465020285502]],[[-120.17790284341794,53.322953170006194],[-120.15733971317034,53.3146314574577],[-120.15097447149839,53.298651452581424],[-120.17475372288824,53.29502840154114],[-120.17790284341794,53.322953170006194]],[[-119.25593608836277,52.840055390756085],[-119.25829928893734,52.8227980451323],[-119.28205213496106,52.830364318492215],[-119.25593608836277,52.840055390756085]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fraser-Fort George H","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953019","name":"Fraser-Fort George H"}},{"type":"Feature","geometry":{"coordinates":[[[-120.17790284341794,53.322953170006194],[-120.17475372288824,53.29502840154114],[-120.15097447149839,53.298651452581424],[-120.15733971317034,53.3146314574577],[-120.17790284341794,53.322953170006194]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"McBride","type":"Village","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953012","name":"McBride"}},{"type":"Feature","geometry":{"coordinates":[[[-122.39714160562602,53.5914237257774],[-122.68157602096127,53.5957285174497],[-122.72476903229295,53.55279067240007],[-122.66984427603435,53.4925108945556],[-122.68302418539675,53.457173408260104],[-122.63539731270427,53.39683390379925],[-122.64604816854393,53.386900331404796],[-122.61246142167573,53.37243435513882],[-122.48963261024173,53.37259441704802],[-122.34861691261764,53.37349116241964],[-122.32642196788049,53.41165603673921],[-122.33626530101523,53.450127016204505],[-122.16290278269919,53.45678892625051],[-122.19230112995382,53.49135650713364],[-122.18252180646027,53.52526334478131],[-122.27349170873372,53.52735390890959],[-122.3186952927066,53.54540597969499],[-122.35740187959966,53.52446273023075],[-122.39519799379184,53.56160062846312],[-122.39714160562602,53.5914237257774]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fraser-Fort George E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953046","name":"Fraser-Fort George E"}},{"type":"Feature","geometry":{"coordinates":[[[-122.90050876605787,53.97808582169872],[-122.93377471535796,53.96742350496652],[-122.96315268872273,53.900308997946986],[-123.00197470115936,53.876134494109074],[-123.08646260998144,53.85945560019021],[-123.12486221634003,53.90288119261183],[-123.20475018727016,53.915511103579135],[-123.25862740900506,53.94104428531374],[-123.23660311015267,53.9571320909529],[-123.27346891507251,53.98727409308015],[-123.37095849587917,53.967389300233414],[-123.42239773151019,53.97459311270343],[-123.42524967130463,53.79263383845533],[-123.50071045132664,53.78746239825386],[-123.51812708734441,53.758977768987926],[-123.49936754297894,53.72850352676251],[-123.4473355074291,53.70883415843107],[-123.40540985925159,53.67660922374088],[-123.30471803888295,53.627589100109944],[-123.3017093718526,53.47023147557176],[-123.30512038570299,53.28364008527624],[-123.20846350128012,53.30121821165795],[-123.14267490545915,53.28733358502716],[-122.88487811401735,53.3046381687554],[-122.88483141132312,53.32524459986773],[-122.83684706942381,53.373557705793026],[-122.69820997677276,53.39168589262476],[-122.64604816854393,53.386900331404796],[-122.63539731270427,53.39683390379925],[-122.68302418539675,53.457173408260104],[-122.66984427603435,53.4925108945556],[-122.72476903229295,53.55279067240007],[-122.68157602096127,53.5957285174497],[-122.67138953434336,53.64498688187713],[-122.7266574076723,53.67436396231499],[-122.70840531468815,53.77508970643766],[-122.73352433007915,53.81294071238148],[-122.88149539362684,53.81588353584694],[-122.90050876605787,53.97808582169872]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fraser-Fort George C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953042","name":"Fraser-Fort George C"}},{"type":"Feature","geometry":{"coordinates":[[[-122.39714160562602,53.5914237257774],[-122.38810077117945,53.62753982859552],[-122.32209659853066,53.65796460419328],[-122.32507965906989,53.68316441334355],[-122.40473216501744,53.71839500322484],[-122.41391496877267,53.77856069271975],[-122.44829416839147,53.83392213782852],[-122.48801584812836,53.86626601659588],[-122.4623174191388,53.89202188756995],[-122.54315228614347,53.92746367112867],[-122.64194046577117,53.92786949284658],[-122.60403464970042,53.9132028622079],[-122.6276583073737,53.87657189261858],[-122.70600872524197,53.880045944931375],[-122.70579794032997,53.842048143291706],[-122.73352433007915,53.81294071238148],[-122.70840531468815,53.77508970643766],[-122.7266574076723,53.67436396231499],[-122.67138953434336,53.64498688187713],[-122.68157602096127,53.5957285174497],[-122.39714160562602,53.5914237257774]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fraser-Fort George D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953044","name":"Fraser-Fort George D"}},{"type":"Feature","geometry":{"coordinates":[[[-122.64367928902651,54.01213565251264],[-122.72715327668715,54.01230630294782],[-122.72720366046669,54.03939731074058],[-122.8512307868268,54.03967207632185],[-122.85021645022121,53.9811837152213],[-122.90050876605787,53.97808582169872],[-122.88149539362684,53.81588353584694],[-122.73352433007915,53.81294071238148],[-122.70579794032997,53.842048143291706],[-122.70600872524197,53.880045944931375],[-122.6276583073737,53.87657189261858],[-122.60403464970042,53.9132028622079],[-122.64194046577117,53.92786949284658],[-122.67955529733376,53.996177689008185],[-122.62456422809102,54.00626519799753],[-122.64367928902651,54.01213565251264]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Prince George","type":"City","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953023","name":"Prince George"}},{"type":"Feature","geometry":{"coordinates":[[[-121.3962628500456,54.536261340179095],[-121.43998168573329,54.523502035189786],[-121.41257999365456,54.49102851156856],[-121.41832077773829,54.45601930699671],[-121.46329157236922,54.43489793882004],[-121.46663275692218,54.413018904617466],[-121.56855579584455,54.43947683856627],[-121.58081655430681,54.41876606377927],[-121.6331722094706,54.422828834434526],[-121.68115787164102,54.409727050269936],[-121.76882786149163,54.418817962798045],[-121.86656104607978,54.45429247288701],[-121.88485664200597,54.398249893453645],[-121.95283442408555,54.43869275558607],[-121.99323776368313,54.44826149986502],[-122.0666120441153,54.44455971588362],[-122.06927467265308,54.47733245524475],[-122.11556192931027,54.471318082244494],[-122.1554841746017,54.48993370857232],[-122.22809751567588,54.45153414852394],[-122.22873064458321,54.20484074762654],[-122.2707998122939,54.20569088924608],[-122.37397729461645,54.25938250577098],[-122.5381985887143,54.20638930752604],[-122.54092750278413,54.166130291974355],[-122.57556246739512,54.161426134376846],[-122.57262389538153,54.12933409158277],[-122.51027078828005,54.086073891433195],[-122.53827529891159,54.078367296459845],[-122.60715581393481,54.01591132004634],[-122.62456422809102,54.00626519799753],[-122.67955529733376,53.996177689008185],[-122.64194046577117,53.92786949284658],[-122.54315228614347,53.92746367112867],[-122.4623174191388,53.89202188756995],[-122.48801584812836,53.86626601659588],[-122.44829416839147,53.83392213782852],[-122.41391496877267,53.77856069271975],[-122.40473216501744,53.71839500322484],[-122.32507965906989,53.68316441334355],[-122.32209659853066,53.65796460419328],[-122.38810077117945,53.62753982859552],[-122.39714160562602,53.5914237257774],[-122.39519799379184,53.56160062846312],[-122.35740187959966,53.52446273023075],[-122.3186952927066,53.54540597969499],[-122.27349170873372,53.52735390890959],[-122.18252180646027,53.52526334478131],[-122.19230112995382,53.49135650713364],[-122.16290278269919,53.45678892625051],[-121.81402908543944,53.45691053152458],[-121.57134351828725,53.452549621481],[-121.55542567849943,53.43938651210761],[-121.28829575838661,53.44571377236641],[-121.26405345424196,53.40321596771028],[-121.22816378435293,53.384730096343375],[-121.1599810786083,53.381282819604074],[-121.1350022099719,53.394584591084076],[-121.07347708479367,53.39316147374082],[-121.00828606866168,53.43040327155395],[-121.02642901070173,53.452336853834964],[-121.00982585274386,53.519200801531994],[-121.04394595252033,53.53350916646301],[-121.10733408680579,53.51576796582823],[-121.11999970552722,53.53524025641598],[-121.21217707928875,53.56771449114794],[-121.17002024385958,53.636491084886316],[-121.144804746272,53.652369025594275],[-121.13008236030184,53.72566074026824],[-121.13233756110094,53.76695279273683],[-121.0960303257247,53.78845248620791],[-121.11256873828124,54.000755874258076],[-121.02868684980423,53.97768817154362],[-120.9926097696748,53.94511386350711],[-121.01167684823534,53.91029510981981],[-120.93310469630791,53.89422069784152],[-120.8562675391007,53.92829105431812],[-120.7903589036525,53.88157353677616],[-120.7589592767069,53.903654551218644],[-120.67968911416605,53.90093106717803],[-120.62551263097654,53.8697911252255],[-120.58300451832123,53.8628532962318],[-120.56739232873618,53.81820783353864],[-120.38705368771564,53.77747964983246],[-120.29499868652887,53.78188278168137],[-120.23173786563326,53.7571037941942],[-120.15051183560888,53.77302184956204],[-120.03708743688581,53.80465020285502],[-120.04979003740533,53.82900733332956],[-120.01742562559552,53.86419604213508],[-120.05282219380109,53.883247050947624],[-120.0639123921856,53.96431109745162],[-120.09681674025302,53.98457154295584],[-120.15551482060394,53.9381634709043],[-120.19181837243788,53.94000282229551],[-120.2095826300535,53.97282096202608],[-120.26000412146344,53.97662783203441],[-120.26290373239243,53.99962947065557],[-120.22962825077327,54.04154911476793],[-120.19654626641233,54.02980975934424],[-120.14357943179088,54.064601060483334],[-120.16729661590642,54.12152147795512],[-120.3289981199751,54.10436139573187],[-120.3932197831698,54.121754974538526],[-120.44024543775105,54.1184191978145],[-120.47922711460116,54.13508028197595],[-120.53180825719683,54.136016892849014],[-120.58146975282438,54.17383642705222],[-120.5662528206723,54.218821283799144],[-120.60631240465877,54.289686629328],[-120.67664059821597,54.28229651024055],[-120.71338279311838,54.30516431815179],[-120.65962667730243,54.35502369422085],[-120.68897163703238,54.39181388435751],[-120.73219988544552,54.40861133167901],[-120.7759607921544,54.39713739916346],[-120.80207054665858,54.42798952011748],[-120.78989519697313,54.46874414915716],[-120.82507867380457,54.49371230846317],[-120.87517834579693,54.48894328095812],[-120.87684579298963,54.46516756688129],[-120.93417836601908,54.45197083625612],[-121.00468414786356,54.46369689376641],[-121.0741632486178,54.45119249742323],[-121.11945721543646,54.47496100199051],[-121.14502215056723,54.55275945486304],[-121.24816519574712,54.54656786917655],[-121.27207452238889,54.51723735180407],[-121.3102198447924,54.51480391084444],[-121.3554547834239,54.535740044172435],[-121.3962628500456,54.536261340179095]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fraser-Fort George F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953048","name":"Fraser-Fort George F"}},{"type":"Feature","geometry":{"coordinates":[[[-122.64367928902651,54.01213565251264],[-122.62456422809102,54.00626519799753],[-122.60715581393481,54.01591132004634],[-122.64367928902651,54.01213565251264]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fort George 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953801","name":"Fort George 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.57556246739512,54.161426134376846],[-122.63923752323332,54.16697881594824],[-122.8128702578141,54.163865154161506],[-122.94608645351896,54.15686674753844],[-123.02097902341487,54.17991278502399],[-123.21611000797671,54.179752249997215],[-123.21624311429699,54.17071994156096],[-123.5202037103741,54.17336249993221],[-123.52035758347793,54.15440078952457],[-123.56601958765143,54.1055695980644],[-123.48394379544048,54.08394269966436],[-123.48453319044529,54.07137620942547],[-123.58678008964203,54.058139287637225],[-123.58452161710868,54.02379420780426],[-123.53480880288673,53.98726559681779],[-123.49136377998302,54.002860695564415],[-123.42239773151019,53.97459311270343],[-123.37095849587917,53.967389300233414],[-123.27346891507251,53.98727409308015],[-123.23660311015267,53.9571320909529],[-123.25862740900506,53.94104428531374],[-123.20475018727016,53.915511103579135],[-123.12486221634003,53.90288119261183],[-123.08646260998144,53.85945560019021],[-123.00197470115936,53.876134494109074],[-122.96315268872273,53.900308997946986],[-122.93377471535796,53.96742350496652],[-122.90050876605787,53.97808582169872],[-122.85021645022121,53.9811837152213],[-122.8512307868268,54.03967207632185],[-122.72720366046669,54.03939731074058],[-122.72715327668715,54.01230630294782],[-122.64367928902651,54.01213565251264],[-122.60715581393481,54.01591132004634],[-122.53827529891159,54.078367296459845],[-122.51027078828005,54.086073891433195],[-122.57262389538153,54.12933409158277],[-122.57556246739512,54.161426134376846]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fraser-Fort George A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953038","name":"Fraser-Fort George A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.3962628500456,54.536261340179095],[-121.39737344796744,54.568963189416756],[-121.48187698847333,54.60881433447648],[-121.52350697424134,54.6519852483602],[-121.51868699028823,54.684965167233166],[-121.47392948093112,54.723613445185364],[-121.52711742485971,54.77145322524562],[-121.52205716987463,54.79819275902016],[-121.55381898827518,54.82037567032097],[-121.64309348872787,54.84527115314374],[-121.69522376296707,54.878820321838674],[-121.80258588174814,54.85882910356635],[-121.86509650366983,54.86913854925939],[-121.86824636885827,54.904594987358436],[-121.84484607304952,54.933324908181746],[-121.90430512089176,54.96622430034797],[-121.93489368172264,55.00360760335786],[-122.0087849239772,55.033753152901696],[-122.03513790550274,55.065298012659014],[-122.10020972807517,55.10515379197715],[-122.15940129365197,55.10546587373374],[-122.16113841026609,55.134145292372395],[-122.25124409711493,55.161686328397444],[-122.27388341594587,55.18111090183248],[-122.23851224905847,55.22281366103058],[-122.29662802898419,55.25108941265627],[-122.38596669844812,55.335308702370746],[-122.42922552724794,55.33076624679159],[-122.48475707462269,55.34875542924677],[-122.57854906132533,55.41258048628325],[-122.63008141600362,55.393950994468014],[-122.65494477986329,55.342431514740184],[-122.71989745171761,55.34397838746855],[-122.74270805923813,55.36554163440642],[-122.84604239626857,55.39891552184022],[-122.87440953942853,55.419017120315814],[-122.97453482100039,55.398084754909135],[-123.00571977081938,55.44607808650139],[-122.93291946991692,55.521784503989785],[-122.94804104369952,55.580918733928065],[-123.01362927671134,55.55974558182379],[-123.07180901272807,55.58266663953451],[-123.07816130498128,55.62549765374608],[-123.14293553304297,55.64044097117749],[-123.1203790289018,55.688791318828955],[-123.14376974812787,55.731686314825744],[-123.26082907132547,55.697108144679476],[-123.34139884802693,55.7312602193071],[-123.30740774624954,55.77609636870732],[-123.33925837176163,55.81989651879967],[-123.38287116200729,55.839487113485724],[-123.36772601825399,55.86107783271913],[-123.44235086096059,55.88247427640616],[-123.52366038326973,55.86316735259821],[-123.57619760527014,55.87053534853938],[-123.68428631753243,55.91367631896618],[-123.68294008252386,55.9392121943001],[-123.75153069671488,55.933894798966556],[-123.81528805427031,55.98018934143764],[-123.85712056973794,55.97203722127153],[-123.87467401129176,55.92697663631826],[-123.93272521090086,55.909708396265444],[-123.88025256774428,55.8254546791637],[-123.81913013449623,55.79044402061452],[-123.80589264305762,55.75797342844576],[-123.76177856959715,55.74558427086553],[-123.81798465252032,55.71695681196091],[-123.84614106389664,55.68240240423588],[-123.91643917693695,55.65676960313874],[-123.97505617096249,55.60945447558561],[-123.92837814181846,55.55437952745788],[-123.8845121849574,55.503715095565454],[-123.90675806713601,55.4290752040411],[-123.8749721326606,55.40024087021315],[-123.85178867655003,55.339533476428215],[-123.79717176360279,55.3244556076937],[-123.74207794544618,55.287507088298575],[-123.64589303958847,55.30652898284802],[-123.56850672923761,55.31275974960865],[-123.53456457196849,55.32746199135545],[-123.49420887630228,55.313965422676524],[-123.41332591528595,55.23493057709162],[-123.39225944186192,55.17108644612918],[-123.41866114508055,55.14803339343754],[-123.39627290761216,55.10297727610549],[-123.4134534341778,55.085941585895846],[-123.41556590998316,55.032890628837436],[-123.45418932789812,55.014411624041564],[-123.51537617509376,55.01714432202903],[-123.55047147292413,54.95823794865357],[-123.61983574259433,54.95503939182061],[-123.65834127019689,54.920308230392436],[-123.69061074450404,54.92312797723365],[-123.79421195120428,54.99541572310432],[-123.81055474931047,55.03760636669538],[-123.8629821633274,55.04704962628667],[-123.90445785583921,55.01963302655549],[-123.9800822274395,55.01221021216477],[-124.05127173017844,54.95077719109827],[-124.0231156467696,54.86793856258289],[-123.92672559545032,54.86212037219982],[-123.91955737456462,54.83174271154387],[-123.94815587851816,54.76749767331634],[-123.88051867799435,54.73819645411327],[-123.84223715844092,54.69615259000771],[-123.79595130128328,54.6926591375145],[-123.77849891793468,54.65912592491066],[-123.78005612426702,54.59261603267],[-123.81967778450726,54.58081031829422],[-123.82171506308931,54.54419897604088],[-123.84804436236217,54.512486674075795],[-123.95244509198497,54.458758258873246],[-123.98647868544455,54.42951075580459],[-123.93342439717998,54.37982660026641],[-123.85305395526048,54.37564211651522],[-123.81941191928024,54.336532343325835],[-123.7411713387648,54.3217889438871],[-123.644256455301,54.33012263037237],[-123.5543916874774,54.3062449870855],[-123.55268907958853,54.27019902432937],[-123.52049399862699,54.252469343244336],[-123.5202037103741,54.17336249993221],[-123.21624311429699,54.17071994156096],[-123.21611000797671,54.179752249997215],[-123.02097902341487,54.17991278502399],[-122.94608645351896,54.15686674753844],[-122.8128702578141,54.163865154161506],[-122.63923752323332,54.16697881594824],[-122.57556246739512,54.161426134376846],[-122.54092750278413,54.166130291974355],[-122.5381985887143,54.20638930752604],[-122.37397729461645,54.25938250577098],[-122.2707998122939,54.20569088924608],[-122.22873064458321,54.20484074762654],[-122.22809751567588,54.45153414852394],[-122.1554841746017,54.48993370857232],[-122.11556192931027,54.471318082244494],[-122.06927467265308,54.47733245524475],[-122.0666120441153,54.44455971588362],[-121.99323776368313,54.44826149986502],[-121.95283442408555,54.43869275558607],[-121.88485664200597,54.398249893453645],[-121.86656104607978,54.45429247288701],[-121.76882786149163,54.418817962798045],[-121.68115787164102,54.409727050269936],[-121.6331722094706,54.422828834434526],[-121.58081655430681,54.41876606377927],[-121.56855579584455,54.43947683856627],[-121.46663275692218,54.413018904617466],[-121.46329157236922,54.43489793882004],[-121.41832077773829,54.45601930699671],[-121.41257999365456,54.49102851156856],[-121.43998168573329,54.523502035189786],[-121.3962628500456,54.536261340179095]],[[-123.03699721524816,54.99288277642774],[-123.05713502232184,54.94263957549497],[-123.08844003049067,54.95067889895225],[-123.03699721524816,54.99288277642774]],[[-123.0119460462669,55.32616360673831],[-123.01147801339758,55.29240011750616],[-123.08580629632623,55.29334767011633],[-123.08420668583508,55.21890380516115],[-123.20176523536234,55.21534534241712],[-123.22635491714459,55.25170755140838],[-123.24176712761611,55.327339255685835],[-123.25739107751785,55.34140319327411],[-123.25786616099494,55.395605963090986],[-123.09332411646986,55.396734953220225],[-123.0918506944276,55.36786589341762],[-123.04202021556057,55.368082257819076],[-123.04218521373339,55.33231149008496],[-123.0119460462669,55.32616360673831]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Fraser-Fort George G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953050","name":"Fraser-Fort George G"}},{"type":"Feature","geometry":{"coordinates":[[[-123.03699721524816,54.99288277642774],[-123.08844003049067,54.95067889895225],[-123.05713502232184,54.94263957549497],[-123.03699721524816,54.99288277642774]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"McLeod Lake 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953802","name":"McLeod Lake 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.0119460462669,55.32616360673831],[-123.04218521373339,55.33231149008496],[-123.04202021556057,55.368082257819076],[-123.0918506944276,55.36786589341762],[-123.09332411646986,55.396734953220225],[-123.25786616099494,55.395605963090986],[-123.25739107751785,55.34140319327411],[-123.24176712761611,55.327339255685835],[-123.22635491714459,55.25170755140838],[-123.20176523536234,55.21534534241712],[-123.08420668583508,55.21890380516115],[-123.08580629632623,55.29334767011633],[-123.01147801339758,55.29240011750616],[-123.0119460462669,55.32616360673831]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Cariboo","regional_district_aka_census_division":"Fraser-Fort George","census_subdivision":"Mackenzie","type":"District municipality","census_year":"2021","economic_region_id":"5950","census_division_code":"5953","census_subdivision_code":"5953033","name":"Mackenzie"}},{"type":"Feature","geometry":{"coordinates":[[[-122.47336119314815,49.002302203316006],[-122.47336345961226,49.00822103748541],[-122.47905694795581,49.00816874962099],[-122.47943735323136,49.00229785633211],[-122.47336119314815,49.002302203316006]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Matsqui 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915825","name":"Matsqui 4"}},{"type":"Feature","geometry":{"coordinates":[[[-122.78876133775493,49.015989614180995],[-122.77195884413409,49.0111461717692],[-122.76001939670643,49.00540827992682],[-122.75772828046328,49.01238076651007],[-122.76257130050881,49.01658280659555],[-122.77926811413637,49.016562589499806],[-122.78876133775493,49.015989614180995]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Semiahmoo","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915801","name":"Semiahmoo"}},{"type":"Feature","geometry":{"coordinates":[[[-122.77926811413637,49.016562589499806],[-122.84541310845937,49.03122780295145],[-122.84558783054312,49.00233577249359],[-122.78908379658381,49.002462694041334],[-122.78876133775493,49.015989614180995],[-122.77926811413637,49.016562589499806]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"White Rock","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915007","name":"White Rock"}},{"type":"Feature","geometry":{"coordinates":[[[-123.09927203186972,49.033999263288166],[-123.07970240249364,49.05388139923305],[-123.12473317332773,49.05662317007044],[-123.09927203186972,49.033999263288166]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Tsawwassen","type":"Tsawwassen Lands","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915802","name":"Tsawwassen"}},{"type":"Feature","geometry":{"coordinates":[[[-123.13055820508157,49.06397231074443],[-123.11958424028101,49.063646561341805],[-123.11939999861482,49.06956662628422],[-123.13047119006848,49.0699841792025],[-123.13055820508157,49.06397231074443]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Musqueam 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915810","name":"Musqueam 4"}},{"type":"Feature","geometry":{"coordinates":[[[-122.95690884107356,49.175171880178624],[-123.03439229389056,49.14668419524561],[-123.08583662661383,49.11811065430469],[-123.0966464286051,49.09013644268286],[-123.22920643484518,49.13060038403162],[-123.29990187388017,49.10371895637877],[-123.35208880838084,49.08215317697845],[-123.19915104654626,49.00216083535419],[-122.95891751027295,49.00242343666602],[-122.89036223277952,49.06220802116698],[-122.89011005913078,49.177143052926674],[-122.91219619899155,49.19406260704101],[-122.95690884107356,49.175171880178624]],[[-123.13055820508157,49.06397231074443],[-123.13047119006848,49.0699841792025],[-123.11939999861482,49.06956662628422],[-123.11958424028101,49.063646561341805],[-123.13055820508157,49.06397231074443]],[[-123.09927203186972,49.033999263288166],[-123.12473317332773,49.05662317007044],[-123.07970240249364,49.05388139923305],[-123.09927203186972,49.033999263288166]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Delta","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915011","name":"Delta"}},{"type":"Feature","geometry":{"coordinates":[[[-122.46147846461116,49.17132706297204],[-122.51724278406628,49.16722400526996],[-122.57502711305364,49.184107993832576],[-122.6023904877368,49.20890919798299],[-122.66792100493227,49.19622640516579],[-122.67883718360788,49.187549867767956],[-122.67968071649724,49.11393040405331],[-122.64715955080626,49.1149263587993],[-122.63750798659983,49.0895142533731],[-122.6800258057965,49.083880304260035],[-122.6816286361218,49.00220808774093],[-122.47943735323136,49.00229785633211],[-122.47905694795581,49.00816874962099],[-122.47336345961226,49.00822103748541],[-122.47336119314815,49.002302203316006],[-122.45915453446993,49.002256446015046],[-122.46147846461116,49.17132706297204]],[[-122.65024660893046,49.198112753153666],[-122.6482973238464,49.19332622408643],[-122.654785435407,49.191051866102335],[-122.65832075735014,49.19443194393064],[-122.65024660893046,49.198112753153666]],[[-122.56951882529145,49.179738678582666],[-122.55468844457025,49.17626495866048],[-122.54859823684724,49.16873805503805],[-122.57554041404782,49.17241189491334],[-122.56951882529145,49.179738678582666]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Langley - District municipality","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915001","name":"Langley - District municipality"}},{"type":"Feature","geometry":{"coordinates":[[[-122.6800258057965,49.083880304260035],[-122.63750798659983,49.0895142533731],[-122.64715955080626,49.1149263587993],[-122.67968071649724,49.11393040405331],[-122.6800258057965,49.083880304260035]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Langley - City","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915002","name":"Langley - City"}},{"type":"Feature","geometry":{"coordinates":[[[-122.67883718360788,49.187549867767956],[-122.69308721667436,49.18405250680342],[-122.71581301678465,49.184669193324055],[-122.73066970958745,49.21109798939875],[-122.75139305338132,49.21577173678069],[-122.80472516951849,49.21933914902369],[-122.87594385263728,49.22020822568058],[-122.91219619899155,49.19406260704101],[-122.89011005913078,49.177143052926674],[-122.89036223277952,49.06220802116698],[-122.95891751027295,49.00242343666602],[-122.84558783054312,49.00233577249359],[-122.84541310845937,49.03122780295145],[-122.77926811413637,49.016562589499806],[-122.76257130050881,49.01658280659555],[-122.75772828046328,49.01238076651007],[-122.76001939670643,49.00540827992682],[-122.77195884413409,49.0111461717692],[-122.78876133775493,49.015989614180995],[-122.78908379658381,49.002462694041334],[-122.6816286361218,49.00220808774093],[-122.6800258057965,49.083880304260035],[-122.67968071649724,49.11393040405331],[-122.67883718360788,49.187549867767956]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Surrey","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915004","name":"Surrey"}},{"type":"Feature","geometry":{"coordinates":[[[-123.22157442344542,49.23699892626281],[-123.25635695408525,49.25636297803527],[-123.29942268192691,49.259175471198134],[-123.29990187388017,49.10371895637877],[-123.22920643484518,49.13060038403162],[-123.0966464286051,49.09013644268286],[-123.08583662661383,49.11811065430469],[-123.03439229389056,49.14668419524561],[-122.95690884107356,49.175171880178624],[-122.95742637302172,49.19012082749938],[-123.02313950746276,49.19974447006916],[-123.07625867769187,49.20828221321665],[-123.13242289107654,49.198534897007974],[-123.19129597659891,49.21943970492989],[-123.22157442344542,49.23699892626281]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Richmond","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915015","name":"Richmond"}},{"type":"Feature","geometry":{"coordinates":[[[-122.56951882529145,49.179738678582666],[-122.57554041404782,49.17241189491334],[-122.54859823684724,49.16873805503805],[-122.55468844457025,49.17626495866048],[-122.56951882529145,49.179738678582666]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"McMillan Island 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915816","name":"McMillan Island 6"}},{"type":"Feature","geometry":{"coordinates":[[[-122.46547601479712,49.17668749736611],[-122.46625920714233,49.172766431939365],[-122.45506754744927,49.17358030576376],[-122.45522962405205,49.17778249739678],[-122.46547601479712,49.17668749736611]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Whonnock 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915840","name":"Whonnock 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.68935475756453,49.186644683180475],[-122.68926474119289,49.19145392462432],[-122.70080144371359,49.191494749887156],[-122.70109558208318,49.18473862322372],[-122.68935475756453,49.186644683180475]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Barnston Island 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915809","name":"Barnston Island 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.65024660893046,49.198112753153666],[-122.65832075735014,49.19443194393064],[-122.654785435407,49.191051866102335],[-122.6482973238464,49.19332622408643],[-122.65024660893046,49.198112753153666]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Katzie 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915813","name":"Katzie 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.66946905993818,49.19974165343588],[-122.67175284926643,49.205785855936966],[-122.67832116479634,49.205583137611576],[-122.67825972340445,49.200314795264234],[-122.66946905993818,49.19974165343588]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Katzie 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915830","name":"Katzie 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.89250590102765,49.23805414990794],[-122.95995134102186,49.201367586101334],[-122.95742637302172,49.19012082749938],[-122.95690884107356,49.175171880178624],[-122.91219619899155,49.19406260704101],[-122.87594385263728,49.22020822568058],[-122.89250590102765,49.23805414990794]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"New Westminster","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915029","name":"New Westminster"}},{"type":"Feature","geometry":{"coordinates":[[[-122.80600325568027,49.229298267999596],[-122.8045741248323,49.22982535269731],[-122.8042530817668,49.23156656948581],[-122.80700504636648,49.229795112426245],[-122.80600325568027,49.229298267999596]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Coquitlam 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915805","name":"Coquitlam 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.19708119759427,49.23505231043313],[-123.22157442344542,49.23699892626281],[-123.19129597659891,49.21943970492989],[-123.19708119759427,49.23505231043313]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Musqueam 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915803","name":"Musqueam 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.8017938998879,49.243725481846745],[-122.78627644550434,49.24373354376057],[-122.78680769249522,49.251829702085544],[-122.79680490590405,49.25112690587253],[-122.8017938998879,49.243725481846745]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Coquitlam 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915804","name":"Coquitlam 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.89342431686468,49.27029337852302],[-122.9456651350786,49.29716873626146],[-123.02309527485424,49.29443491288091],[-123.02313950746276,49.19974447006916],[-122.95742637302172,49.19012082749938],[-122.95995134102186,49.201367586101334],[-122.89250590102765,49.23805414990794],[-122.89342431686468,49.27029337852302]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Burnaby","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915025","name":"Burnaby"}},{"type":"Feature","geometry":{"coordinates":[[[-122.70449089525718,49.27638940584619],[-122.76162619330812,49.285840042817796],[-122.79680490590405,49.25112690587253],[-122.78680769249522,49.251829702085544],[-122.78627644550434,49.24373354376057],[-122.8017938998879,49.243725481846745],[-122.80472516951849,49.21933914902369],[-122.75139305338132,49.21577173678069],[-122.70449089525718,49.27638940584619]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Port Coquitlam","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915039","name":"Port Coquitlam"}},{"type":"Feature","geometry":{"coordinates":[[[-123.10247183809373,49.297782379962534],[-123.12879337924558,49.310116225829226],[-123.13491576389383,49.31366557181324],[-123.13838718386044,49.31571756046734],[-123.16424854650259,49.282302966773905],[-123.22149815168298,49.28290432932489],[-123.19708119759427,49.23505231043313],[-123.19129597659891,49.21943970492989],[-123.13242289107654,49.198534897007974],[-123.07625867769187,49.20828221321665],[-123.02313950746276,49.19974447006916],[-123.02309527485424,49.29443491288091],[-123.0387348477209,49.29545425120079],[-123.10247183809373,49.297782379962534]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Vancouver","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915022","name":"Vancouver"}},{"type":"Feature","geometry":{"coordinates":[[[-122.40996471191187,49.35295039719845],[-122.57539780212866,49.352431714833266],[-122.60054689435292,49.324753598524644],[-122.6005900618284,49.25711101910433],[-122.64474272440474,49.24937835377441],[-122.67175284926643,49.205785855936966],[-122.66946905993818,49.19974165343588],[-122.66792100493227,49.19622640516579],[-122.6023904877368,49.20890919798299],[-122.57502711305364,49.184107993832576],[-122.51724278406628,49.16722400526996],[-122.46147846461116,49.17132706297204],[-122.42580430075782,49.168830604910696],[-122.42458299238417,49.18450265287301],[-122.42378878619432,49.19110275930646],[-122.40914346739002,49.26426971657111],[-122.40996471191187,49.35295039719845]],[[-122.46547601479712,49.17668749736611],[-122.45522962405205,49.17778249739678],[-122.45506754744927,49.17358030576376],[-122.46625920714233,49.172766431939365],[-122.46547601479712,49.17668749736611]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Maple Ridge","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915075","name":"Maple Ridge"}},{"type":"Feature","geometry":{"coordinates":[[[-122.60329515787801,49.35312529496375],[-122.61818028273343,49.3512732693741],[-122.67522880470861,49.3170263108059],[-122.66342569515092,49.291405115107494],[-122.70449089525718,49.27638940584619],[-122.75139305338132,49.21577173678069],[-122.73066970958745,49.21109798939875],[-122.66792100493227,49.19622640516579],[-122.66946905993818,49.19974165343588],[-122.67825972340445,49.200314795264234],[-122.67832116479634,49.205583137611576],[-122.67175284926643,49.205785855936966],[-122.64474272440474,49.24937835377441],[-122.6005900618284,49.25711101910433],[-122.60054689435292,49.324753598524644],[-122.57539780212866,49.352431714833266],[-122.60329515787801,49.35312529496375]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Pitt Meadows","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915070","name":"Pitt Meadows"}},{"type":"Feature","geometry":{"coordinates":[[[-122.61818028273343,49.3512732693741],[-122.82232139192114,49.35162572558135],[-122.82207409842368,49.321449429666046],[-122.82373784918164,49.27334558392914],[-122.89342431686468,49.27029337852302],[-122.89250590102765,49.23805414990794],[-122.87594385263728,49.22020822568058],[-122.80472516951849,49.21933914902369],[-122.8017938998879,49.243725481846745],[-122.79680490590405,49.25112690587253],[-122.76162619330812,49.285840042817796],[-122.70449089525718,49.27638940584619],[-122.66342569515092,49.291405115107494],[-122.67522880470861,49.3170263108059],[-122.61818028273343,49.3512732693741]],[[-122.80600325568027,49.229298267999596],[-122.80700504636648,49.229795112426245],[-122.8042530817668,49.23156656948581],[-122.8045741248323,49.22982535269731],[-122.80600325568027,49.229298267999596]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Coquitlam","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915034","name":"Coquitlam"}},{"type":"Feature","geometry":{"coordinates":[[[-122.82207409842368,49.321449429666046],[-122.87756983834271,49.33015955900248],[-122.93264774200699,49.310394889332315],[-122.93901926626808,49.310799955125965],[-122.9456651350786,49.29716873626146],[-122.89342431686468,49.27029337852302],[-122.82373784918164,49.27334558392914],[-122.82207409842368,49.321449429666046]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Port Moody","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915043","name":"Port Moody"}},{"type":"Feature","geometry":{"coordinates":[[[-123.0294564773834,49.30700171950072],[-123.02113477534978,49.30679587409611],[-123.0198211050654,49.312325892408445],[-123.02441711283721,49.312526674553894],[-123.0236467498337,49.308782157324835],[-123.0294564773834,49.30700171950072]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Seymour Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915811","name":"Seymour Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.99126420747416,49.308750639733326],[-122.97800365013661,49.306877158787316],[-122.96893925296257,49.31258298064393],[-122.99119620326414,49.31286931593245],[-122.99126420747416,49.308750639733326]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Burrard Inlet 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915806","name":"Burrard Inlet 3"}},{"type":"Feature","geometry":{"coordinates":[[[-123.0387348477209,49.29545425120079],[-123.05302900253311,49.335569506167474],[-123.10204454465945,49.33103598202146],[-123.10247183809373,49.297782379962534],[-123.0387348477209,49.29545425120079]],[[-123.08880730154667,49.31907419736977],[-123.08615863811217,49.31340748161317],[-123.09188230327048,49.31118306136386],[-123.09157750407117,49.319051493456875],[-123.08880730154667,49.31907419736977]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"North Vancouver - City","type":"City","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915051","name":"North Vancouver - City"}},{"type":"Feature","geometry":{"coordinates":[[[-123.08880730154667,49.31907419736977],[-123.09157750407117,49.319051493456875],[-123.09188230327048,49.31118306136386],[-123.08615863811217,49.31340748161317],[-123.08880730154667,49.31907419736977]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Mission 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915807","name":"Mission 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.12436529199597,49.32491870497123],[-123.13491576389383,49.31366557181324],[-123.12879337924558,49.310116225829226],[-123.12436529199597,49.32491870497123]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Capilano 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915808","name":"Capilano 5"}},{"type":"Feature","geometry":{"coordinates":[[[-122.87756983834271,49.33015955900248],[-122.89440438882329,49.3560432145028],[-122.93742916330343,49.314192862517025],[-122.93264774200699,49.310394889332315],[-122.87756983834271,49.33015955900248]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Belcarra","type":"Village","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915036","name":"Belcarra"}},{"type":"Feature","geometry":{"coordinates":[[[-122.82207409842368,49.321449429666046],[-122.82232139192114,49.35162572558135],[-122.83362676074316,49.382046452998104],[-122.87840431340298,49.381880185972236],[-122.89440438882329,49.3560432145028],[-122.87756983834271,49.33015955900248],[-122.82207409842368,49.321449429666046]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Anmore","type":"Village","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915038","name":"Anmore"}},{"type":"Feature","geometry":{"coordinates":[[[-122.87840431340298,49.381880185972236],[-122.86933767464983,49.413808529661075],[-123.12380625642449,49.40619926833434],[-123.12436529199597,49.32491870497123],[-123.12879337924558,49.310116225829226],[-123.10247183809373,49.297782379962534],[-123.10204454465945,49.33103598202146],[-123.05302900253311,49.335569506167474],[-123.0387348477209,49.29545425120079],[-123.02309527485424,49.29443491288091],[-122.9456651350786,49.29716873626146],[-122.93901926626808,49.310799955125965],[-122.93742916330343,49.314192862517025],[-122.89440438882329,49.3560432145028],[-122.87840431340298,49.381880185972236]],[[-123.0294564773834,49.30700171950072],[-123.0236467498337,49.308782157324835],[-123.02441711283721,49.312526674553894],[-123.0198211050654,49.312325892408445],[-123.02113477534978,49.30679587409611],[-123.0294564773834,49.30700171950072]],[[-122.99126420747416,49.308750639733326],[-122.99119620326414,49.31286931593245],[-122.96893925296257,49.31258298064393],[-122.97800365013661,49.306877158787316],[-122.99126420747416,49.308750639733326]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"North Vancouver - District municipality","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915046","name":"North Vancouver - District municipality"}},{"type":"Feature","geometry":{"coordinates":[[[[-122.93264774200699,49.310394889332315],[-122.93742916330343,49.314192862517025],[-122.93901926626808,49.310799955125965],[-122.93264774200699,49.310394889332315]]],[[[-122.66792100493227,49.19622640516579],[-122.73066970958745,49.21109798939875],[-122.71581301678465,49.184669193324055],[-122.69308721667436,49.18405250680342],[-122.67883718360788,49.187549867767956],[-122.66792100493227,49.19622640516579]],[[-122.68935475756453,49.186644683180475],[-122.70109558208318,49.18473862322372],[-122.70080144371359,49.191494749887156],[-122.68926474119289,49.19145392462432],[-122.68935475756453,49.186644683180475]]],[[[-122.81608574841671,49.57235386256782],[-122.94504470848462,49.5705427449884],[-122.92421431524488,49.54842971557776],[-123.10230746179492,49.547783572406665],[-123.10280206154651,49.4821966935482],[-123.27486868816247,49.48110287112881],[-123.30295103267717,49.41910523497682],[-123.31333147622382,49.37598848953955],[-123.36634761881601,49.32946428886369],[-123.4394525439831,49.33772297145804],[-123.47454509349575,49.30717770573677],[-123.51151896368,49.30909011902223],[-123.57130823319761,49.3108814591227],[-123.73837752680708,49.31233839977494],[-123.61505892074632,49.273302204083194],[-123.50000187401457,49.21473496754862],[-123.46822061147883,49.183581613955646],[-123.4348002950749,49.129358854319236],[-123.35712180300476,49.00278449644885],[-123.3185514123976,49.00006582379275],[-123.19915104654626,49.00216083535419],[-123.35208880838084,49.08215317697845],[-123.29990187388017,49.10371895637877],[-123.29942268192691,49.259175471198134],[-123.25635695408525,49.25636297803527],[-123.22157442344542,49.23699892626281],[-123.19708119759427,49.23505231043313],[-123.22149815168298,49.28290432932489],[-123.16424854650259,49.282302966773905],[-123.13838718386044,49.31571756046734],[-123.20975603417182,49.33748796627691],[-123.2637411518321,49.327564365046875],[-123.29162310532742,49.378118503603595],[-123.24147728597471,49.40811015926802],[-123.12380625642449,49.40619926833434],[-122.86933767464983,49.413808529661075],[-122.87840431340298,49.381880185972236],[-122.83362676074316,49.382046452998104],[-122.82232139192114,49.35162572558135],[-122.61818028273343,49.3512732693741],[-122.60329515787801,49.35312529496375],[-122.56314504830006,49.39143457146155],[-122.52811139362846,49.45786851475804],[-122.581689210493,49.4905779894993],[-122.60814378576447,49.54170208141296],[-122.65542317466361,49.53964890002054],[-122.70008679969519,49.57355454365085],[-122.81608574841671,49.57235386256782]],[[-123.2436064139266,49.47653034966727],[-123.2304239873683,49.470311624365245],[-123.2289861215735,49.44864653271991],[-123.24408009870523,49.44880669908534],[-123.2436064139266,49.47653034966727]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Metro Vancouver A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915020","name":"Metro Vancouver A"}},{"type":"Feature","geometry":{"coordinates":[[[-123.12380625642449,49.40619926833434],[-123.24147728597471,49.40811015926802],[-123.29162310532742,49.378118503603595],[-123.2637411518321,49.327564365046875],[-123.20975603417182,49.33748796627691],[-123.13838718386044,49.31571756046734],[-123.13491576389383,49.31366557181324],[-123.12436529199597,49.32491870497123],[-123.12380625642449,49.40619926833434]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"West Vancouver","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915055","name":"West Vancouver"}},{"type":"Feature","geometry":{"coordinates":[[[-123.30295103267717,49.41910523497682],[-123.39307287903758,49.408377252296454],[-123.42853158795553,49.37604053441536],[-123.4394525439831,49.33772297145804],[-123.36634761881601,49.32946428886369],[-123.31333147622382,49.37598848953955],[-123.30295103267717,49.41910523497682]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Bowen Island","type":"Island municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915062","name":"Bowen Island"}},{"type":"Feature","geometry":{"coordinates":[[[-123.2436064139266,49.47653034966727],[-123.24408009870523,49.44880669908534],[-123.2289861215735,49.44864653271991],[-123.2304239873683,49.470311624365245],[-123.2436064139266,49.47653034966727]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Metro Vancouver","census_subdivision":"Lions Bay","type":"Village","census_year":"2021","economic_region_id":"5920","census_division_code":"5915","census_subdivision_code":"5915065","name":"Lions Bay"}},{"type":"Feature","geometry":{"coordinates":[[[-128.51913483427063,52.60053147165611],[-128.53879503499215,52.60043772319497],[-128.5399812772355,52.57855643731594],[-128.51599572718163,52.57862712975279],[-128.51913483427063,52.60053147165611]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitasoo 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949802","name":"Kitasoo 1"}},{"type":"Feature","geometry":{"coordinates":[[[-128.00166316687523,53.89128508408135],[-128.07366964419523,53.901773416775846],[-128.0410709334435,53.94842610393556],[-128.05376109761127,53.9896530119563],[-128.0447760282387,54.03605489821121],[-127.98296563451413,54.100146255442446],[-128.01945861420197,54.1368773096502],[-127.98854464267264,54.15470219372566],[-127.99890823505879,54.18070778432155],[-127.97654567797824,54.212050873854714],[-128.02113075872913,54.232978316691245],[-128.0595070814328,54.22878126775733],[-128.07183605031184,54.26511051069501],[-128.1312236593832,54.297961447484994],[-128.1203188742365,54.31854302330835],[-128.1837473175444,54.3323645291794],[-128.2398310802791,54.33057634316581],[-128.3233675010715,54.35501642835179],[-128.45272801791486,54.32242885003047],[-128.49341663116394,54.29949857605721],[-128.60542792797222,54.29816586952461],[-128.66636298159756,54.31163580142546],[-128.71912101715273,54.280754524005005],[-128.79510877478737,54.300423227505526],[-128.87999031903868,54.2892577266324],[-128.99167738338608,54.25836481290175],[-129.01451697564303,54.21928130886643],[-129.04712836337117,54.209577875174126],[-128.95023480470132,54.10819395621456],[-129.03869539643824,54.059553543344904],[-129.12062050755472,54.03511429417515],[-129.2872005324639,54.030981440741265],[-129.3109165561136,54.0035486880577],[-129.24017025702008,53.93686542158522],[-129.30172914506906,53.865794067082376],[-129.3030047107658,53.81863453609496],[-129.3625038498042,53.784530293282074],[-129.29428548964322,53.70924003609558],[-129.29474543556472,53.698053116727415],[-129.21388966529682,53.60687802875291],[-129.197931951526,53.478212901628375],[-129.20183794072943,53.41208837235941],[-129.1827148549867,53.36008675405281],[-129.20218749696122,53.327301285087636],[-129.2805293890132,53.348125293732984],[-129.30716277603966,53.33682234267039],[-129.30342533600287,53.302254161058606],[-129.38868968782867,53.28811076746952],[-129.43224401391694,53.26233634315265],[-129.43168963106078,53.222319866025444],[-129.46044747524667,53.20411247461079],[-129.56082364056684,53.193223454002656],[-129.6732346511087,53.154252888201725],[-129.81717813348925,53.12614750798199],[-129.9494107016608,53.072996610239706],[-130.10246231830635,53.02859585729672],[-129.94536115121082,52.98352451554222],[-129.84613629537762,52.90332313948873],[-129.72181854321533,52.79337000860478],[-129.65956630790646,52.727726489179396],[-129.54003067279186,52.537349504341115],[-129.48758932355554,52.492712427904664],[-129.39539225044288,52.443240573301274],[-129.32537739082656,52.43059345981061],[-128.94587743572927,52.40050952989729],[-128.84924462050182,52.38555513473464],[-128.80436870025937,52.363514007484866],[-128.7492816674542,52.193254729236706],[-128.63497446903384,52.22941114560416],[-128.59485815575644,52.2642257251376],[-128.52793762978715,52.37104337726248],[-128.4589623112546,52.437511462764206],[-128.37474819759046,52.471036360055216],[-128.28266259597564,52.48242893530374],[-128.17694306421694,52.484158523813015],[-128.19443917662232,52.513766879781784],[-128.1748177671912,52.57547913188291],[-128.189602725794,52.60736151615733],[-128.14618727350896,52.625141790876356],[-128.10934018174342,52.67920586008661],[-128.0116816433006,52.719483107683814],[-127.96793505977247,52.7082265729109],[-127.92850575468992,52.71707749668364],[-127.89022885335451,52.67958859641397],[-127.80976601907923,52.66449780263194],[-127.78217312797898,52.69655331041662],[-127.71996091256692,52.71875435807895],[-127.7187929564572,52.7709489549696],[-127.67921955890235,52.7913392689582],[-127.59720796634532,52.7793204337079],[-127.61638260632704,52.73274802107759],[-127.56269966218763,52.69096870132484],[-127.49045319126694,52.692569164883004],[-127.3688334495651,52.75565768690613],[-127.37972742439932,52.78371617048399],[-127.3528266116664,52.808249808986226],[-127.22224620968221,52.822356428526646],[-127.22296730920685,52.85077725574865],[-127.29766218729368,52.90766041607361],[-127.28606413750823,52.937010424566154],[-127.23688512457832,52.96177605123545],[-127.25640099273262,52.97886145997351],[-127.24354631083158,53.016420779745324],[-127.32219778109402,53.06756488383462],[-127.37580691991454,53.08641405267767],[-127.43413309058546,53.08852280864822],[-127.43471386049728,53.11792768375245],[-127.47278931822854,53.1243258261258],[-127.40582686675022,53.184324640369326],[-127.35321239686489,53.18671054858706],[-127.36420606550877,53.2211668357022],[-127.30678914771792,53.215480939723385],[-127.26686157658617,53.27752625644057],[-127.258691076824,53.302151534347594],[-127.3147958999546,53.328432675966894],[-127.35501390781556,53.37292149683163],[-127.37049130755459,53.427830219516146],[-127.39275452399438,53.426596769899255],[-127.43497529589493,53.49089429577031],[-127.47917734812559,53.48802148073213],[-127.51870233833537,53.46114364801694],[-127.5653722883113,53.49293830350916],[-127.55430689958109,53.52510576561299],[-127.60347529152062,53.54836057221184],[-127.64928676027735,53.5335870813747],[-127.6774671315582,53.54945463802687],[-127.75911688741063,53.55286412864124],[-127.7492779642449,53.608070019398944],[-127.78589339029277,53.66185539443982],[-127.81412861250152,53.662338415126186],[-127.82011949224528,53.72765837352145],[-127.90107107312471,53.745078509079995],[-127.89922716466891,53.77789662718514],[-127.93667659572066,53.82620685790876],[-127.99813798471442,53.85635658534642],[-128.00166316687523,53.89128508408135]],[[-128.63811294678433,53.97359073665335],[-128.64895974252894,53.96993868719644],[-128.65142806092072,53.97928436503573],[-128.63824320731604,53.98002049641027],[-128.63811294678433,53.97359073665335]],[[-128.51913483427063,52.60053147165611],[-128.51599572718163,52.57862712975279],[-128.5399812772355,52.57855643731594],[-128.53879503499215,52.60043772319497],[-128.51913483427063,52.60053147165611]],[[-128.53834757747853,54.042123877566794],[-128.53876134352603,53.99439506647725],[-128.65471529480882,53.99469426308343],[-128.83688573301802,53.79863976711315],[-128.9080777139227,53.79872669407851],[-128.90796761558244,53.93342254503646],[-128.78525993541462,53.93335672851597],[-128.78492390468446,53.96292485574018],[-128.72626557167325,53.96301657051076],[-128.7252854752487,54.107966747084475],[-128.5379366690945,54.107489335872366],[-128.53834757747853,54.042123877566794]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat-Stikine C (Part 2)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949020","name":"Kitimat-Stikine C (Part 2)"}},{"type":"Feature","geometry":{"coordinates":[[[-128.53834757747853,54.042123877566794],[-128.5379366690945,54.107489335872366],[-128.7252854752487,54.107966747084475],[-128.72626557167325,53.96301657051076],[-128.78492390468446,53.96292485574018],[-128.78525993541462,53.93335672851597],[-128.90796761558244,53.93342254503646],[-128.9080777139227,53.79872669407851],[-128.83688573301802,53.79863976711315],[-128.65471529480882,53.99469426308343],[-128.53876134352603,53.99439506647725],[-128.53834757747853,54.042123877566794]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat","type":"District municipality","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949005","name":"Kitimat"}},{"type":"Feature","geometry":{"coordinates":[[[-128.63811294678433,53.97359073665335],[-128.63824320731604,53.98002049641027],[-128.65142806092072,53.97928436503573],[-128.64895974252894,53.96993868719644],[-128.63811294678433,53.97359073665335]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitamaat 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949803","name":"Kitamaat 2"}},{"type":"Feature","geometry":{"coordinates":[[[[-128.56227644639705,54.516393649016166],[-128.58575967692386,54.54233675758803],[-128.65800576418292,54.52281574413575],[-128.66125765220497,54.52116339375381],[-128.62193130942333,54.496994400083224],[-128.58353570526765,54.49561927155023],[-128.56227644639705,54.516393649016166]]],[[[-128.55800933009348,54.49243931707728],[-128.59580622865116,54.488577011256936],[-128.59887828308993,54.458788950308495],[-128.65009668432234,54.45768433963793],[-128.66419762356887,54.434849928026146],[-128.55062900298606,54.42563122989328],[-128.5140752825162,54.4663394919106],[-128.55800933009348,54.49243931707728]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Terrace","type":"City","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949011","name":"Terrace"}},{"type":"Feature","geometry":{"coordinates":[[[-128.58586313718573,54.49388335317655],[-128.5858692898554,54.491553335898104],[-128.58299606238538,54.491506289103974],[-128.58357419597468,54.49492111724564],[-128.58586313718573,54.49388335317655]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kulspai 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949807","name":"Kulspai 6"}},{"type":"Feature","geometry":{"coordinates":[[[-128.55800933009348,54.49243931707728],[-128.5099998011584,54.49223412651198],[-128.50823761996153,54.52548818935572],[-128.56227644639705,54.516393649016166],[-128.58353570526765,54.49561927155023],[-128.58357419597468,54.49492111724564],[-128.58299606238538,54.491506289103974],[-128.5858692898554,54.491553335898104],[-128.58586313718573,54.49388335317655],[-128.59580622865116,54.488577011256936],[-128.55800933009348,54.49243931707728]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat-Stikine E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949018","name":"Kitimat-Stikine E"}},{"type":"Feature","geometry":{"coordinates":[[[-128.65800576418292,54.52281574413575],[-128.64987296414495,54.53704113974405],[-128.68881884778347,54.53884469632106],[-128.68049892563792,54.51807520564765],[-128.66125765220497,54.52116339375381],[-128.65800576418292,54.52281574413575]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitsumkaylum 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949804","name":"Kitsumkaylum 1"}},{"type":"Feature","geometry":{"coordinates":[[[-129.3599764941474,54.902289394242004],[-129.4413615230181,54.8837765830072],[-129.42999204603547,54.853959497796815],[-129.47782919490365,54.819978291737684],[-129.40752268830542,54.810052415573],[-129.38429455025675,54.779142264191556],[-129.45275540349724,54.710002833790305],[-129.46393839229336,54.66028769312486],[-129.47458588763655,54.61867419089316],[-129.54601423909125,54.60256766822113],[-129.56844848907582,54.635604856635226],[-129.64604773184865,54.629127961847594],[-129.68717345002975,54.59476258291972],[-129.6586192291793,54.556878102413535],[-129.6922874449738,54.527262808187544],[-129.65369622407948,54.487211643949834],[-129.5651482958037,54.46069963773194],[-129.52504985613007,54.43854707495964],[-129.47565954304014,54.36822736445455],[-129.37111700501424,54.356503542231465],[-129.37210092997404,54.29197543382849],[-129.37485003521854,53.940722091083366],[-129.37348442749396,53.79654099031067],[-129.3625038498042,53.784530293282074],[-129.3030047107658,53.81863453609496],[-129.30172914506906,53.865794067082376],[-129.24017025702008,53.93686542158522],[-129.3109165561136,54.0035486880577],[-129.2872005324639,54.030981440741265],[-129.12062050755472,54.03511429417515],[-129.03869539643824,54.059553543344904],[-128.95023480470132,54.10819395621456],[-129.04712836337117,54.209577875174126],[-129.01451697564303,54.21928130886643],[-128.99167738338608,54.25836481290175],[-128.87999031903868,54.2892577266324],[-128.79510877478737,54.300423227505526],[-128.71912101715273,54.280754524005005],[-128.66636298159756,54.31163580142546],[-128.60542792797222,54.29816586952461],[-128.49341663116394,54.29949857605721],[-128.45272801791486,54.32242885003047],[-128.3233675010715,54.35501642835179],[-128.2398310802791,54.33057634316581],[-128.1837473175444,54.3323645291794],[-128.1203188742365,54.31854302330835],[-128.1312236593832,54.297961447484994],[-128.07183605031184,54.26511051069501],[-128.0595070814328,54.22878126775733],[-128.02113075872913,54.232978316691245],[-127.97654567797824,54.212050873854714],[-127.99890823505879,54.18070778432155],[-127.98854464267264,54.15470219372566],[-128.01945861420197,54.1368773096502],[-127.98296563451413,54.100146255442446],[-128.0447760282387,54.03605489821121],[-128.05376109761127,53.9896530119563],[-128.0410709334435,53.94842610393556],[-128.07366964419523,53.901773416775846],[-128.00166316687523,53.89128508408135],[-128.0002351496968,53.99500268077671],[-127.89253995346891,54.02209098425716],[-127.85366846219539,54.07305093439242],[-127.80475527461782,54.110979797025024],[-127.72167945988691,54.12402058851162],[-127.7579041843696,54.172959678410535],[-127.75000035943259,54.20412194725183],[-127.70558956381055,54.206452550134465],[-127.6551661915025,54.24587766731502],[-127.6748732488293,54.2612412793203],[-127.64115847428812,54.304482981338445],[-127.5938075857218,54.313000815244216],[-127.53775517020573,54.43518983541926],[-127.58042733404568,54.45146113662801],[-127.62140107579874,54.444588874958534],[-127.69391079606503,54.463614287815744],[-127.75770678971328,54.44306953626476],[-127.77165969891382,54.49494822909996],[-127.7572229592943,54.537778317031545],[-127.70025986706301,54.5472340600119],[-127.68734830676924,54.57840265218463],[-127.7776576092304,54.60443932402331],[-127.80398479721953,54.599238980918564],[-127.79954951334159,54.67392607349991],[-127.80104571145112,54.99946669052339],[-128.24825034346173,54.9999483527861],[-128.92728445809604,55.00022023106826],[-128.90885859293735,54.97682273643313],[-128.9871134749891,54.93679271802992],[-129.13663785786832,54.912086069261576],[-129.17431440456926,54.88687975355004],[-129.29748791652372,54.88279610698573],[-129.3599764941474,54.902289394242004]],[[-128.48663429666442,54.56449826576199],[-128.46357784269628,54.5614073745983],[-128.4835822973695,54.551743796278565],[-128.48663429666442,54.56449826576199]],[[-128.42862965978972,54.62228705598386],[-128.40746480581117,54.597519779404585],[-128.43930116064024,54.596168614066706],[-128.42862965978972,54.62228705598386]],[[-128.66125765220497,54.52116339375381],[-128.68049892563792,54.51807520564765],[-128.68881884778347,54.53884469632106],[-128.64987296414495,54.53704113974405],[-128.65800576418292,54.52281574413575],[-128.58575967692386,54.54233675758803],[-128.56227644639705,54.516393649016166],[-128.50823761996153,54.52548818935572],[-128.5099998011584,54.49223412651198],[-128.55800933009348,54.49243931707728],[-128.5140752825162,54.4663394919106],[-128.55062900298606,54.42563122989328],[-128.66419762356887,54.434849928026146],[-128.65009668432234,54.45768433963793],[-128.59887828308993,54.458788950308495],[-128.59580622865116,54.488577011256936],[-128.58586313718573,54.49388335317655],[-128.58357419597468,54.49492111724564],[-128.58353570526765,54.49561927155023],[-128.62193130942333,54.496994400083224],[-128.66125765220497,54.52116339375381]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat-Stikine C (Part 1)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949013","name":"Kitimat-Stikine C (Part 1)"}},{"type":"Feature","geometry":{"coordinates":[[[-128.48663429666442,54.56449826576199],[-128.4835822973695,54.551743796278565],[-128.46357784269628,54.5614073745983],[-128.48663429666442,54.56449826576199]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kshish 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949805","name":"Kshish 4"}},{"type":"Feature","geometry":{"coordinates":[[[-128.42862965978972,54.62228705598386],[-128.43930116064024,54.596168614066706],[-128.40746480581117,54.597519779404585],[-128.42862965978972,54.62228705598386]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitselas 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949844","name":"Kitselas 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.30272567883476,55.00032701537637],[-127.31370566084134,55.02271979231829],[-127.33066585710594,55.0232836240993],[-127.34231365955432,55.02366931372289],[-127.3421411380029,55.00002635140056],[-127.30272567883476,55.00032701537637]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Moricetown 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949817","name":"Moricetown 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.31370566084134,55.02271979231829],[-127.3306262393016,55.035114477331696],[-127.33073336934146,55.033901011566094],[-127.33066585710594,55.0232836240993],[-127.31370566084134,55.02271979231829]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Bulkley River 19","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949820","name":"Bulkley River 19"}},{"type":"Feature","geometry":{"coordinates":[[[-127.33066585710594,55.0232836240993],[-127.33073336934146,55.033901011566094],[-127.34777259359777,55.03324079191961],[-127.34231365955432,55.02366931372289],[-127.33066585710594,55.0232836240993]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Babine 17","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949819","name":"Babine 17"}},{"type":"Feature","geometry":{"coordinates":[[[-127.3306262393016,55.035114477331696],[-127.34777259359777,55.03324079191961],[-127.33073336934146,55.033901011566094],[-127.3306262393016,55.035114477331696]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Coryatsaqua (Moricetown) 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949810","name":"Coryatsaqua (Moricetown) 2"}},{"type":"Feature","geometry":{"coordinates":[[[-128.0198361484412,55.087002908903905],[-128.0121365823526,55.109393680568076],[-128.11352402269355,55.10577180963933],[-128.1157067001287,55.075937325718506],[-128.0198361484412,55.087002908903905]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Gitwangak 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949816","name":"Gitwangak 1"}},{"type":"Feature","geometry":{"coordinates":[[[-129.3599764941474,54.902289394242004],[-129.3370596817352,54.92105681170378],[-129.4086782746105,54.95055430877806],[-129.42299049796137,54.99500763410334],[-129.29025349742716,55.048769519935355],[-129.30274656219947,55.06734131629699],[-129.20250064490295,55.10918948439832],[-129.08395999964375,55.0918645672192],[-129.01936294904363,55.150016786715796],[-129.1197570320984,55.19377898326497],[-129.1980223200991,55.1607203123638],[-129.22767797045287,55.18293445285601],[-129.10876855455007,55.21864152725437],[-129.0711554575258,55.18456196457712],[-129.00334676018423,55.15960979803347],[-128.95895399248775,55.17722796386036],[-128.97631415436783,55.20631095033493],[-128.88695134278822,55.230304384161826],[-128.86985030869408,55.26617114038565],[-128.88561780178034,55.30862043117439],[-128.86642117424248,55.33460867310244],[-128.9351180784247,55.3528595425124],[-128.89548713312837,55.394436538485394],[-128.9245937535398,55.45524060410738],[-128.91682875904135,55.50588485261561],[-128.95559940405084,55.51864695913059],[-129.00931519530263,55.5105532470812],[-128.99799373995953,55.42898842293816],[-129.07362423643343,55.383083300295596],[-129.21568228187212,55.323294952617395],[-129.24681163489026,55.28763216802542],[-129.437221200948,55.21626735091001],[-129.57067649067685,55.22466389209094],[-129.6625794058781,55.19553708457511],[-129.70524432507844,55.2009381406385],[-129.7408593890422,55.179637853746556],[-129.93008341404246,55.0327324908098],[-129.961377356546,55.057716105457864],[-130.01080961885881,55.01133951944289],[-129.92618282687033,54.97810313344713],[-129.84023435654413,54.924478616536845],[-129.81538277998717,54.87549895773435],[-129.8267791387318,54.84107098434148],[-129.80614866056322,54.810032063657765],[-129.60001369772124,54.824997041758195],[-129.47782919490365,54.819978291737684],[-129.42999204603547,54.853959497796815],[-129.4413615230181,54.8837765830072],[-129.3599764941474,54.902289394242004]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Nisga'a","type":"Nisga’a land","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949035","name":"Nisga'a"}},{"type":"Feature","geometry":{"coordinates":[[[-127.78162922617994,55.12445184123676],[-127.80800269710011,55.1170874200063],[-127.81138322195534,55.09251359309346],[-127.77341318369015,55.1066108774082],[-127.78162922617994,55.12445184123676]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Gitsegukla 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949814","name":"Gitsegukla 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.62826405118886,55.2526138030455],[-127.64608398205509,55.24884363423715],[-127.61382204657201,55.222954679954995],[-127.54330758937726,55.22314251222505],[-127.559466103794,55.25901330295823],[-127.58816789860609,55.26562589161103],[-127.60386683220909,55.26343352665291],[-127.59091347378784,55.26327545449499],[-127.59060393153705,55.25216489526014],[-127.61519990259696,55.2569269001848],[-127.62826405118886,55.2526138030455]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"New Hazelton","type":"District municipality","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949024","name":"New Hazelton"}},{"type":"Feature","geometry":{"coordinates":[[[-127.64608398205509,55.24884363423715],[-127.62826405118886,55.2526138030455],[-127.6533642975157,55.272362488696416],[-127.65369189873287,55.24824200965361],[-127.64608398205509,55.24884363423715]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Hazelton","type":"Village","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949022","name":"Hazelton"}},{"type":"Feature","geometry":{"coordinates":[[[-127.6533642975157,55.272362488696416],[-127.67571815358747,55.25868209455093],[-127.68361940240449,55.2536983713205],[-127.65369189873287,55.24824200965361],[-127.6533642975157,55.272362488696416]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Gitanmaax 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949812","name":"Gitanmaax 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.61519990259696,55.2569269001848],[-127.59060393153705,55.25216489526014],[-127.59091347378784,55.26327545449499],[-127.60386683220909,55.26343352665291],[-127.61519990259696,55.2569269001848]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Hagwilget 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949811","name":"Hagwilget 1"}},{"type":"Feature","geometry":{"coordinates":[[[-128.0593998022958,55.25311185011139],[-128.06204340110915,55.27798821007206],[-128.094682517132,55.27606476098986],[-128.08943636185373,55.256752555207214],[-128.0593998022958,55.25311185011139]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Gitanyow 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949815","name":"Gitanyow 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.69654378808164,55.32209133736092],[-127.6963895345774,55.29360379754897],[-127.66777973455835,55.30820986466718],[-127.69654378808164,55.32209133736092]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Sik-e-dakh 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949818","name":"Sik-e-dakh 2"}},{"type":"Feature","geometry":{"coordinates":[[[-127.70972102034975,55.369556192869084],[-127.70919021112654,55.33354043065153],[-127.65724116407507,55.33418060480448],[-127.65717819602443,55.37150124306274],[-127.70972102034975,55.369556192869084]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kispiox 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949813","name":"Kispiox 1"}},{"type":"Feature","geometry":{"coordinates":[[[-128.52256496503102,56.08372512528083],[-128.61816839324172,56.01289573358624],[-128.62776467292656,55.993971435134476],[-128.73041129873462,55.906872334855855],[-128.71111329000885,55.88459501257358],[-128.77975746140143,55.87480822969965],[-128.79378039051053,55.85543909143621],[-128.75527082596662,55.8153340123011],[-128.61679461960802,55.72693729656302],[-128.55744084649135,55.72518172296979],[-128.4030176539941,55.686163641873755],[-128.3916699995774,55.65117501325198],[-128.26628465082507,55.58163174256277],[-128.1742076439365,55.54499444745466],[-128.17773228890954,55.494899752150744],[-128.12131758744584,55.43128040719646],[-128.1626814632176,55.415059921609185],[-128.16355642692355,55.378873631265996],[-128.34624848800314,55.3852461522622],[-128.37674783368394,55.36138846448328],[-128.35445796954673,55.335474471326954],[-128.38756800358004,55.27646356062736],[-128.35492357451147,55.2668671992661],[-128.3884291681937,55.221906831598034],[-128.3947459011958,55.18564165128615],[-128.3770703843654,55.14146641017169],[-128.4525650173532,55.14136988419506],[-128.50811719205345,55.112195639651624],[-128.5886863059224,55.10882879939016],[-128.63225955683342,55.14143674932875],[-128.71515682838643,55.1453955655159],[-128.71227584103167,55.162188639386194],[-128.78015516378574,55.1917728081289],[-128.7907340994553,55.12424431110577],[-128.83954854950028,55.07532858116424],[-128.89244818212148,55.06666811013258],[-128.94221422866732,55.01284927187626],[-128.92728445809604,55.00022023106826],[-128.24825034346173,54.9999483527861],[-127.80104571145112,54.99946669052339],[-127.3421411380029,55.00002635140056],[-127.34231365955432,55.02366931372289],[-127.34777259359777,55.03324079191961],[-127.3306262393016,55.035114477331696],[-127.31370566084134,55.02271979231829],[-127.30272567883476,55.00032701537637],[-126.93720119287997,55.000035093924524],[-126.8734736014032,55.03496788785369],[-126.88000136442413,55.059850003971775],[-126.84345387664304,55.07502182768306],[-126.71615488423905,55.06410348572881],[-126.64762450062271,55.10078028515838],[-126.7349436333795,55.16030465665065],[-126.7420025916376,55.207145853630024],[-126.78546461181013,55.227035009202694],[-126.83807556399668,55.22192840257943],[-126.87996966886584,55.26897869922446],[-126.92834010067821,55.26826031152519],[-126.95364617307388,55.2885447184137],[-126.88102963447864,55.3039949444156],[-126.8711698300261,55.35200795871318],[-126.93740319369361,55.38614509048595],[-127.03184190065757,55.385866832502735],[-127.08975493934761,55.40532900984714],[-127.17260377947356,55.462592916324866],[-127.25723306221472,55.47392275583963],[-127.30016885471811,55.512119680556836],[-127.45840545527402,55.50929369933903],[-127.45770087191902,55.53756378943419],[-127.53336958885576,55.55002523393444],[-127.59086937085408,55.60156791745648],[-127.65279419972197,55.63849409688438],[-127.66409697460512,55.685445324576534],[-127.7133211709979,55.710818488588515],[-127.78538821788503,55.70499926008578],[-127.91507216336522,55.71703100942672],[-127.96294849492263,55.688450112697204],[-127.99615573203724,55.72669226724694],[-128.0717489355329,55.75957070168236],[-128.11512092174814,55.72140931008801],[-128.18016760647595,55.72773855475192],[-128.24061020300002,55.76796881642975],[-128.18948998288693,55.82238761599868],[-128.1428732815799,55.846492971945594],[-128.1884814984335,55.87091596087101],[-128.18904392059844,55.910786906311],[-128.22425607744788,55.93245087843408],[-128.27537305101296,55.93605314190621],[-128.33093567848374,55.914164086867096],[-128.3868993849822,55.91429943284907],[-128.48555037529127,55.94483758201198],[-128.43928065806898,56.002952485859005],[-128.36462689175144,56.003179122828925],[-128.39152662238655,56.02775354613333],[-128.52256496503102,56.08372512528083]],[[-127.69654378808164,55.32209133736092],[-127.66777973455835,55.30820986466718],[-127.6963895345774,55.29360379754897],[-127.69654378808164,55.32209133736092]],[[-128.0593998022958,55.25311185011139],[-128.08943636185373,55.256752555207214],[-128.094682517132,55.27606476098986],[-128.06204340110915,55.27798821007206],[-128.0593998022958,55.25311185011139]],[[-127.78162922617994,55.12445184123676],[-127.77341318369015,55.1066108774082],[-127.81138322195534,55.09251359309346],[-127.80800269710011,55.1170874200063],[-127.78162922617994,55.12445184123676]],[[-127.70972102034975,55.369556192869084],[-127.65717819602443,55.37150124306274],[-127.65724116407507,55.33418060480448],[-127.70919021112654,55.33354043065153],[-127.70972102034975,55.369556192869084]],[[-128.0198361484412,55.087002908903905],[-128.1157067001287,55.075937325718506],[-128.11352402269355,55.10577180963933],[-128.0121365823526,55.109393680568076],[-128.0198361484412,55.087002908903905]],[[-127.67571815358747,55.25868209455093],[-127.6533642975157,55.272362488696416],[-127.62826405118886,55.2526138030455],[-127.61519990259696,55.2569269001848],[-127.60386683220909,55.26343352665291],[-127.58816789860609,55.26562589161103],[-127.559466103794,55.25901330295823],[-127.54330758937726,55.22314251222505],[-127.61382204657201,55.222954679954995],[-127.64608398205509,55.24884363423715],[-127.65369189873287,55.24824200965361],[-127.68361940240449,55.2536983713205],[-127.67571815358747,55.25868209455093]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat-Stikine B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949028","name":"Kitimat-Stikine B"}},{"type":"Feature","geometry":{"coordinates":[[[-129.00205422043302,57.164389392052094],[-129.04905327777743,57.17654928153725],[-129.12187487782884,57.1751422200283],[-129.16927057054033,57.120987578495644],[-129.24231490215658,57.10410621481067],[-129.29464477555348,57.078853170336835],[-129.42709889787264,57.067748144792965],[-129.49202468552636,57.09174939873054],[-129.480824973933,57.160411644472546],[-129.54173071287732,57.16717370569383],[-129.59777685834524,57.14997272125986],[-129.68169152311526,57.15969328210947],[-129.71814861292793,57.10910669021704],[-129.77599784648862,57.10894185554368],[-129.81156689413743,57.089268024522276],[-129.85530345239405,57.014326602825825],[-129.900998173213,56.99897502865607],[-129.9057437195721,56.94233459950423],[-129.88154302087807,56.88685433015414],[-129.89513041313649,56.86356089364967],[-129.86943956182787,56.80386115345859],[-129.94930675244268,56.81685889428324],[-129.97758887307717,56.79678755588163],[-130.0649503551758,56.77596140694004],[-130.1678530513657,56.76622016129949],[-130.22205811674655,56.76918887852698],[-130.2207750677466,56.72789738292286],[-130.37513092853416,56.69704633385235],[-130.42952369556073,56.724021705850035],[-130.4804873320158,56.72613551367301],[-130.46044495026212,56.66010317942202],[-130.63863254637175,56.63224732081316],[-130.65274974909775,56.60575188169896],[-130.63896563400874,56.5610451320913],[-130.69225863459494,56.51830656710776],[-130.76730814604645,56.512033503272264],[-130.80569508064573,56.49360514758696],[-130.91999072387725,56.486291947311784],[-130.95990861066602,56.44730506117855],[-131.01595293916404,56.43592523930902],[-131.04331970943878,56.40093143169934],[-130.78139029881885,56.36806129004221],[-130.65623639614782,56.283394880164344],[-130.58551316431422,56.25544584989241],[-130.46511226962397,56.24147417194906],[-130.0622818764777,56.271621475090335],[-129.94851515049464,56.03960425322579],[-129.90543379673042,56.03696421246646],[-129.8782208351177,56.00955097467641],[-129.9801511715162,55.869364104301795],[-130.03166069666182,55.868772282791525],[-130.08476044757865,55.81167138403741],[-130.12212424003044,55.801621773197816],[-130.15130794445736,55.76731812257805],[-130.1716786306428,55.70478529341181],[-130.12481680693568,55.67858992605325],[-130.12444899387376,55.628689288760775],[-130.14764173605192,55.5907285222439],[-130.11174849683155,55.50006893168986],[-130.08915460646048,55.500063977017454],[-130.0384713605145,55.44978576175574],[-130.02578334689585,55.3385241265049],[-129.9740105457068,55.28492147090503],[-130.10515682838744,55.19072148534479],[-130.14763525866192,55.138468673063215],[-130.20044214807086,55.04639955221875],[-130.27159020684854,54.976014620497764],[-130.34671716198557,54.918666529473064],[-130.48325468626177,54.835855586129526],[-130.56793840502604,54.79227890860608],[-130.65906328713803,54.763950201703125],[-130.61678154224182,54.70849898924426],[-130.58096597356908,54.69111105738969],[-130.38843226980612,54.69186369954737],[-130.31477675638016,54.70169599870243],[-130.20391076478145,54.731763449332675],[-130.1398853837921,54.730724402932665],[-130.058825469752,54.703200426968614],[-129.96559928318155,54.69892546555059],[-129.79535370576488,54.74578763388343],[-129.75385832185736,54.72357650878826],[-129.70113971008837,54.736432906469666],[-129.6843400138743,54.69541212660561],[-129.56697348644823,54.68030249172125],[-129.51300488920404,54.65844128078659],[-129.46393839229336,54.66028769312486],[-129.45275540349724,54.710002833790305],[-129.38429455025675,54.779142264191556],[-129.40752268830542,54.810052415573],[-129.47782919490365,54.819978291737684],[-129.60001369772124,54.824997041758195],[-129.80614866056322,54.810032063657765],[-129.8267791387318,54.84107098434148],[-129.81538277998717,54.87549895773435],[-129.84023435654413,54.924478616536845],[-129.92618282687033,54.97810313344713],[-130.01080961885881,55.01133951944289],[-129.961377356546,55.057716105457864],[-129.93008341404246,55.0327324908098],[-129.7408593890422,55.179637853746556],[-129.70524432507844,55.2009381406385],[-129.6625794058781,55.19553708457511],[-129.57067649067685,55.22466389209094],[-129.437221200948,55.21626735091001],[-129.24681163489026,55.28763216802542],[-129.21568228187212,55.323294952617395],[-129.07362423643343,55.383083300295596],[-128.99799373995953,55.42898842293816],[-129.00931519530263,55.5105532470812],[-128.95559940405084,55.51864695913059],[-128.91682875904135,55.50588485261561],[-128.9245937535398,55.45524060410738],[-128.89548713312837,55.394436538485394],[-128.9351180784247,55.3528595425124],[-128.86642117424248,55.33460867310244],[-128.88561780178034,55.30862043117439],[-128.86985030869408,55.26617114038565],[-128.88695134278822,55.230304384161826],[-128.97631415436783,55.20631095033493],[-128.95895399248775,55.17722796386036],[-129.00334676018423,55.15960979803347],[-129.0711554575258,55.18456196457712],[-129.10876855455007,55.21864152725437],[-129.22767797045287,55.18293445285601],[-129.1980223200991,55.1607203123638],[-129.1197570320984,55.19377898326497],[-129.01936294904363,55.150016786715796],[-129.08395999964375,55.0918645672192],[-129.20250064490295,55.10918948439832],[-129.30274656219947,55.06734131629699],[-129.29025349742716,55.048769519935355],[-129.42299049796137,54.99500763410334],[-129.4086782746105,54.95055430877806],[-129.3370596817352,54.92105681170378],[-129.3599764941474,54.902289394242004],[-129.29748791652372,54.88279610698573],[-129.17431440456926,54.88687975355004],[-129.13663785786832,54.912086069261576],[-128.9871134749891,54.93679271802992],[-128.90885859293735,54.97682273643313],[-128.92728445809604,55.00022023106826],[-128.94221422866732,55.01284927187626],[-128.89244818212148,55.06666811013258],[-128.83954854950028,55.07532858116424],[-128.7907340994553,55.12424431110577],[-128.78015516378574,55.1917728081289],[-128.71227584103167,55.162188639386194],[-128.71515682838643,55.1453955655159],[-128.63225955683342,55.14143674932875],[-128.5886863059224,55.10882879939016],[-128.50811719205345,55.112195639651624],[-128.4525650173532,55.14136988419506],[-128.3770703843654,55.14146641017169],[-128.3947459011958,55.18564165128615],[-128.3884291681937,55.221906831598034],[-128.35492357451147,55.2668671992661],[-128.38756800358004,55.27646356062736],[-128.35445796954673,55.335474471326954],[-128.37674783368394,55.36138846448328],[-128.34624848800314,55.3852461522622],[-128.16355642692355,55.378873631265996],[-128.1626814632176,55.415059921609185],[-128.12131758744584,55.43128040719646],[-128.17773228890954,55.494899752150744],[-128.1742076439365,55.54499444745466],[-128.26628465082507,55.58163174256277],[-128.3916699995774,55.65117501325198],[-128.4030176539941,55.686163641873755],[-128.55744084649135,55.72518172296979],[-128.61679461960802,55.72693729656302],[-128.75527082596662,55.8153340123011],[-128.79378039051053,55.85543909143621],[-128.77975746140143,55.87480822969965],[-128.71111329000885,55.88459501257358],[-128.73041129873462,55.906872334855855],[-128.62776467292656,55.993971435134476],[-128.61816839324172,56.01289573358624],[-128.52256496503102,56.08372512528083],[-128.49209066353603,56.10217272508459],[-128.4093034636311,56.10914748670717],[-128.32162047997872,56.09208688302273],[-128.27871168131236,56.11028458614809],[-128.29557149116846,56.19050643440799],[-128.27549173557816,56.2142032361815],[-128.28409004523553,56.246574770599764],[-128.20206004410062,56.30091777287178],[-128.10580942540267,56.30942579908445],[-128.109344085347,56.34818375148173],[-128.27317577973764,56.38341559654514],[-128.26523345008627,56.41902867937995],[-128.16351761250104,56.453477548676936],[-128.1365055243514,56.42760780746872],[-128.0801032388903,56.41412423453311],[-127.9786224067913,56.43542587409932],[-127.96379459931059,56.451151260913086],[-127.98874221646149,56.510441959970784],[-127.96677690766941,56.52860925393715],[-127.85449311170456,56.542909840562444],[-127.91621840587973,56.61507143406745],[-127.98947867069485,56.61131676168713],[-128.0711191287651,56.66664086766819],[-128.11058845682584,56.639382398132476],[-128.17651951689112,56.64344766670786],[-128.1610036817986,56.69400004032719],[-128.17024622374518,56.71971600882844],[-128.25926713244735,56.74822551886103],[-128.35851848773495,56.752981376949215],[-128.5626913577537,56.84342506805097],[-128.6344699384192,56.883641176894585],[-128.69334114916217,56.878426468104934],[-128.66407441786336,56.926321281020165],[-128.66151631430748,56.972271038352275],[-128.68656797375746,56.985422881646834],[-128.72627203026263,57.042146044549895],[-128.78065648546854,57.05289427424618],[-128.7861158966738,57.07566827170367],[-128.8500446370254,57.11665819777148],[-128.93061529663225,57.147634313285614],[-129.00205422043302,57.164389392052094]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat-Stikine A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949039","name":"Kitimat-Stikine A"}},{"type":"Feature","geometry":{"coordinates":[[[-130.03166069666182,55.868772282791525],[-129.9801511715162,55.869364104301795],[-129.8782208351177,56.00955097467641],[-129.90543379673042,56.03696421246646],[-129.94851515049464,56.03960425322579],[-130.0622818764777,56.271621475090335],[-130.46511226962397,56.24147417194906],[-130.4197242402205,56.13887662565706],[-130.3315454427955,56.12259133021507],[-130.24124059138538,56.09580747899774],[-130.10370110643154,56.122023728742896],[-130.0021390942187,56.00661074827548],[-130.03166069666182,55.868772282791525]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Stewart","type":"District municipality","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949032","name":"Stewart"}},{"type":"Feature","geometry":{"coordinates":[[[-131.00167476791418,58.000551352823365],[-131.31898966465423,57.99992755125583],[-132.00078064155474,57.99989679682487],[-132.50059206084646,57.99991395925476],[-133.06954316545807,58.000052424647734],[-132.98899322173418,57.94297332989325],[-132.86806838482218,57.844587313406485],[-132.7594430907023,57.707526445943394],[-132.68674278078447,57.642966485606124],[-132.56357904462465,57.50682642126778],[-132.36958172869132,57.3514241256816],[-132.2446207516297,57.21201275376944],[-132.36930758793565,57.09142205035181],[-132.04592656010234,57.044043651789345],[-132.12114693725238,56.86690115408483],[-131.87075825999008,56.80624978547811],[-131.90183823643403,56.75436067949037],[-131.8574570486033,56.70177345391357],[-131.8336316797368,56.59877516140941],[-131.58175481622743,56.61237151040829],[-131.46738488812204,56.55107303797624],[-131.1641573371427,56.447285410345415],[-131.08720274545198,56.40635317509138],[-131.04331970943878,56.40093143169934],[-131.01595293916404,56.43592523930902],[-130.95990861066602,56.44730506117855],[-130.91999072387725,56.486291947311784],[-130.80569508064573,56.49360514758696],[-130.76730814604645,56.512033503272264],[-130.69225863459494,56.51830656710776],[-130.63896563400874,56.5610451320913],[-130.65274974909775,56.60575188169896],[-130.63863254637175,56.63224732081316],[-130.46044495026212,56.66010317942202],[-130.4804873320158,56.72613551367301],[-130.42952369556073,56.724021705850035],[-130.37513092853416,56.69704633385235],[-130.2207750677466,56.72789738292286],[-130.22205811674655,56.76918887852698],[-130.1678530513657,56.76622016129949],[-130.0649503551758,56.77596140694004],[-129.97758887307717,56.79678755588163],[-129.94930675244268,56.81685889428324],[-129.86943956182787,56.80386115345859],[-129.89513041313649,56.86356089364967],[-129.88154302087807,56.88685433015414],[-129.9057437195721,56.94233459950423],[-129.900998173213,56.99897502865607],[-129.85530345239405,57.014326602825825],[-129.81156689413743,57.089268024522276],[-129.77599784648862,57.10894185554368],[-129.71814861292793,57.10910669021704],[-129.68169152311526,57.15969328210947],[-129.59777685834524,57.14997272125986],[-129.54173071287732,57.16717370569383],[-129.480824973933,57.160411644472546],[-129.49202468552636,57.09174939873054],[-129.42709889787264,57.067748144792965],[-129.29464477555348,57.078853170336835],[-129.24231490215658,57.10410621481067],[-129.16927057054033,57.120987578495644],[-129.12187487782884,57.1751422200283],[-129.04905327777743,57.17654928153725],[-129.00205422043302,57.164389392052094],[-129.00273603813312,57.86942992540003],[-129.00224609914082,57.99875932475676],[-129.74523598140664,57.99989628292651],[-130.4968331442444,58.0004796299407],[-131.00167476791418,58.000551352823365]],[[-131.16650807354648,57.90608243550128],[-131.17798084119244,57.90151175966243],[-131.18433945706673,57.90236298388717],[-131.16982418918852,57.90684014936233],[-131.16650807354648,57.90608243550128]],[[-131.15665423280797,57.90991031631311],[-131.16343222429563,57.90559203078867],[-131.1639056422807,57.91616842099153],[-131.15713251115093,57.916301095515124],[-131.15665423280797,57.90991031631311]],[[-129.97507952293478,57.83192218503342],[-129.9906005995129,57.83768823201156],[-129.9852889114926,57.840271614339066],[-129.97507952293478,57.83192218503342]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat-Stikine D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949041","name":"Kitimat-Stikine D"}},{"type":"Feature","geometry":{"coordinates":[[[-129.97507952293478,57.83192218503342],[-129.9852889114926,57.840271614339066],[-129.9906005995129,57.83768823201156],[-129.97507952293478,57.83192218503342]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Iskut 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949832","name":"Iskut 6"}},{"type":"Feature","geometry":{"coordinates":[[[-131.16650807354648,57.90608243550128],[-131.16982418918852,57.90684014936233],[-131.18433945706673,57.90236298388717],[-131.17798084119244,57.90151175966243],[-131.16650807354648,57.90608243550128]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Guhthe Tah 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949843","name":"Guhthe Tah 12"}},{"type":"Feature","geometry":{"coordinates":[[[-131.15665423280797,57.90991031631311],[-131.15713251115093,57.916301095515124],[-131.1639056422807,57.91616842099153],[-131.16343222429563,57.90559203078867],[-131.15665423280797,57.90991031631311]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Telegraph Creek","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949847","name":"Telegraph Creek"}},{"type":"Feature","geometry":{"coordinates":[[[-131.00137318148535,58.0052562121639],[-130.98971688279448,58.00555138256992],[-130.97038778018,58.01200728555454],[-130.9874564041608,58.01532950737318],[-131.0007599002577,58.012370962005754],[-131.00137318148535,58.0052562121639]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Tahltan 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949846","name":"Tahltan 1"}},{"type":"Feature","geometry":{"coordinates":[[[-130.01967129761334,58.4718983022862],[-130.02445641434875,58.48039379026446],[-130.03177621264425,58.480113354021604],[-130.03343384324913,58.47025948867489],[-130.01967129761334,58.4718983022862]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Dease Lake 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949845","name":"Dease Lake 9"}},{"type":"Feature","geometry":{"coordinates":[[[-129.00224609914082,57.99875932475676],[-128.95873555254627,58.74781277541639],[-128.94319054554407,59.00225460244679],[-129.79776144849632,59.00058811705333],[-130.23992880938792,59.00117449537923],[-131.00978700692485,59.002096855950285],[-131.0045837474398,58.6098380869848],[-131.00421573453767,58.06751692047355],[-131.0007599002577,58.012370962005754],[-130.9874564041608,58.01532950737318],[-130.97038778018,58.01200728555454],[-130.98971688279448,58.00555138256992],[-131.00137318148535,58.0052562121639],[-131.00167476791418,58.000551352823365],[-130.4968331442444,58.0004796299407],[-129.74523598140664,57.99989628292651],[-129.00224609914082,57.99875932475676]],[[-130.01967129761334,58.4718983022862],[-130.03343384324913,58.47025948867489],[-130.03177621264425,58.480113354021604],[-130.02445641434875,58.48039379026446],[-130.01967129761334,58.4718983022862]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Kitimat-Stikine","census_subdivision":"Kitimat-Stikine F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5949","census_subdivision_code":"5949038","name":"Kitimat-Stikine F"}},{"type":"Feature","geometry":{"coordinates":[[[-118.74992589673268,49.000190826713656],[-118.75639235910086,49.01524696541385],[-118.84423276712292,49.01844413232249],[-118.85032752485475,49.00018766837641],[-118.74992589673268,49.000190826713656]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Midway","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905037","name":"Midway"}},{"type":"Feature","geometry":{"coordinates":[[[-118.45168445155049,49.05194203544861],[-118.47480124603021,49.01943216815132],[-118.4195054744819,49.029274841470276],[-118.45168445155049,49.05194203544861]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Grand Forks","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905032","name":"Grand Forks"}},{"type":"Feature","geometry":{"coordinates":[[[-117.59419820466624,49.08460825692823],[-117.60210067124598,49.072514860535875],[-117.58219215590904,49.07484615602683],[-117.59419820466624,49.08460825692823]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Montrose","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905009","name":"Montrose"}},{"type":"Feature","geometry":{"coordinates":[[[-118.67848499586297,49.10823597174694],[-118.68341219366103,49.07961591951199],[-118.67325047364926,49.079838996816534],[-118.67848499586297,49.10823597174694]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Greenwood","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905042","name":"Greenwood"}},{"type":"Feature","geometry":{"coordinates":[[[-117.74783051213454,49.08806048369978],[-117.74770576235204,49.10225447576478],[-117.76210529319198,49.095171380346166],[-117.74783051213454,49.08806048369978]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Warfield","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905018","name":"Warfield"}},{"type":"Feature","geometry":{"coordinates":[[[-117.46965213885188,49.000666577083685],[-117.46543061310206,49.08816612066588],[-117.52108378315998,49.08806024919708],[-117.49396124076006,49.17548721728699],[-117.67427467372686,49.17504158960612],[-117.68361481742973,49.20853420748529],[-117.70838190439613,49.19769950420095],[-117.73447346330822,49.146556760965446],[-117.71079967543244,49.11080876622759],[-117.67153278293382,49.1108710820568],[-117.61296952982977,49.088258653121464],[-117.61290321889275,49.07357630540613],[-117.60719732468876,49.01525766962112],[-117.63199023549492,49.000816704431955],[-117.46965213885188,49.000666577083685]],[[-117.59419820466624,49.08460825692823],[-117.58219215590904,49.07484615602683],[-117.60210067124598,49.072514860535875],[-117.59419820466624,49.08460825692823]],[[-117.54611023404583,49.12383258281872],[-117.5369890491872,49.11528307831118],[-117.54528341067333,49.1042638930536],[-117.56704100737652,49.099798758177016],[-117.54611023404583,49.12383258281872]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Kootenay Boundary A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905026","name":"Kootenay Boundary A"}},{"type":"Feature","geometry":{"coordinates":[[[-117.61290321889275,49.07357630540613],[-117.61296952982977,49.088258653121464],[-117.67153278293382,49.1108710820568],[-117.71079967543244,49.11080876622759],[-117.73447346330822,49.146556760965446],[-117.74770576235204,49.10225447576478],[-117.74783051213454,49.08806048369978],[-117.65503140364636,49.09576160950838],[-117.61290321889275,49.07357630540613]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Trail","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905014","name":"Trail"}},{"type":"Feature","geometry":{"coordinates":[[[-117.54611023404583,49.12383258281872],[-117.56704100737652,49.099798758177016],[-117.54528341067333,49.1042638930536],[-117.5369890491872,49.11528307831118],[-117.54611023404583,49.12383258281872]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Fruitvale","type":"Village","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905005","name":"Fruitvale"}},{"type":"Feature","geometry":{"coordinates":[[[-117.80679339436755,49.12324026764188],[-117.86692150215931,49.18609426321044],[-117.8954860716137,49.18616391766962],[-117.8820416411125,49.09651595820935],[-117.82567868569373,49.06637751647445],[-117.80357033254874,49.087936740964146],[-117.80679339436755,49.12324026764188]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Rossland","type":"City","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905023","name":"Rossland"}},{"type":"Feature","geometry":{"coordinates":[[[-117.68361481742973,49.20853420748529],[-117.70309203458704,49.26534223293577],[-118.1358124841489,49.26400335243987],[-118.13151126246535,49.2231767464284],[-118.0890968757789,49.15238610200958],[-118.05153569981691,49.11766321520729],[-118.06216223545283,49.000294563882456],[-117.63199023549492,49.000816704431955],[-117.60719732468876,49.01525766962112],[-117.61290321889275,49.07357630540613],[-117.65503140364636,49.09576160950838],[-117.74783051213454,49.08806048369978],[-117.76210529319198,49.095171380346166],[-117.74770576235204,49.10225447576478],[-117.73447346330822,49.146556760965446],[-117.70838190439613,49.19769950420095],[-117.68361481742973,49.20853420748529]],[[-117.80679339436755,49.12324026764188],[-117.80357033254874,49.087936740964146],[-117.82567868569373,49.06637751647445],[-117.8820416411125,49.09651595820935],[-117.8954860716137,49.18616391766962],[-117.86692150215931,49.18609426321044],[-117.80679339436755,49.12324026764188]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Kootenay Boundary B / Lower Columbia-Old-Glory","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905030","name":"Kootenay Boundary B / Lower Columbia-Old-Glory"}},{"type":"Feature","geometry":{"coordinates":[[[-118.1358124841489,49.26400335243987],[-118.20766397487344,49.29580218388982],[-118.21929048010502,49.32836755057835],[-118.30351844405376,49.265278843864735],[-118.31337412754482,49.21724705264746],[-118.33585909502519,49.217443064209554],[-118.34968199293472,49.143732269802264],[-118.33544295171491,49.12743530099932],[-118.32846776643616,49.05568630277257],[-118.29739116729591,49.03786503936304],[-118.29781012041632,49.00016294263241],[-118.06216223545283,49.000294563882456],[-118.05153569981691,49.11766321520729],[-118.0890968757789,49.15238610200958],[-118.13151126246535,49.2231767464284],[-118.1358124841489,49.26400335243987]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Kootenay Boundary C / Christina Lake","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905050","name":"Kootenay Boundary C / Christina Lake"}},{"type":"Feature","geometry":{"coordinates":[[[-118.21929048010502,49.32836755057835],[-118.26419453154001,49.388950588946805],[-118.25283319489233,49.444493544825264],[-118.28736234122542,49.49490499328187],[-118.24487746701435,49.56156683089336],[-118.25337987782703,49.6206786123662],[-118.27544370341305,49.65838497682784],[-118.27545912555199,49.714179564305844],[-118.30130342500864,49.750188297211956],[-118.28725402163207,49.77884661003244],[-118.31219441177743,49.81230454222221],[-118.51021317089777,49.81255700557587],[-118.505415554056,49.73923210601952],[-118.53168036262367,49.73812011540592],[-118.56869155103995,49.70422083608328],[-118.55725193181853,49.68587235306302],[-118.58575350111995,49.65636149301011],[-118.5788711562754,49.633174584681456],[-118.6200969814752,49.56267137988967],[-118.70176053720434,49.49089660069829],[-118.71239730447377,49.44890014570994],[-118.70597155505874,49.37458685801863],[-118.64133466795862,49.3670196658185],[-118.58636111893912,49.29383806033329],[-118.59965379196453,49.236329341372034],[-118.62242298102434,49.21829538688829],[-118.56463612412213,49.175544238861974],[-118.56328454884856,49.14388375761699],[-118.63134438424672,49.12574948403128],[-118.62110292921865,49.02005086311709],[-118.59107831308806,49.00007486624967],[-118.29781012041632,49.00016294263241],[-118.29739116729591,49.03786503936304],[-118.32846776643616,49.05568630277257],[-118.33544295171491,49.12743530099932],[-118.34968199293472,49.143732269802264],[-118.33585909502519,49.217443064209554],[-118.31337412754482,49.21724705264746],[-118.30351844405376,49.265278843864735],[-118.21929048010502,49.32836755057835]],[[-118.45168445155049,49.05194203544861],[-118.4195054744819,49.029274841470276],[-118.47480124603021,49.01943216815132],[-118.45168445155049,49.05194203544861]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Kootenay Boundary D / Rural Grand Forks","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905052","name":"Kootenay Boundary D / Rural Grand Forks"}},{"type":"Feature","geometry":{"coordinates":[[[-119.05568075157318,49.81232225443617],[-119.11572153000213,49.79094718905135],[-119.15273066272161,49.76400540362948],[-119.22855429089353,49.735152846391],[-119.27182000723032,49.7302139819892],[-119.37590573758658,49.67903282660881],[-119.35035563852355,49.63608688055201],[-119.35813095249276,49.61622047855691],[-119.30989495005215,49.505040201414225],[-119.30079731603458,49.50364479639543],[-119.30035751782964,49.385707472235936],[-119.2620687059423,49.38227487174039],[-119.2604370431979,49.3503144724461],[-119.20689783650644,49.34403266493369],[-119.17737997365644,49.312289168199825],[-119.21335095279103,49.28569992371506],[-119.23738440016001,49.23894486266366],[-119.19593948484435,49.21598963657711],[-119.25597402888108,49.16188682125208],[-119.30182071645683,49.07325407022651],[-119.29492322384736,49.00004765634961],[-118.85032752485475,49.00018766837641],[-118.84423276712292,49.01844413232249],[-118.75639235910086,49.01524696541385],[-118.74992589673268,49.000190826713656],[-118.59107831308806,49.00007486624967],[-118.62110292921865,49.02005086311709],[-118.63134438424672,49.12574948403128],[-118.56328454884856,49.14388375761699],[-118.56463612412213,49.175544238861974],[-118.62242298102434,49.21829538688829],[-118.59965379196453,49.236329341372034],[-118.58636111893912,49.29383806033329],[-118.64133466795862,49.3670196658185],[-118.70597155505874,49.37458685801863],[-118.71239730447377,49.44890014570994],[-118.70176053720434,49.49089660069829],[-118.6200969814752,49.56267137988967],[-118.5788711562754,49.633174584681456],[-118.58575350111995,49.65636149301011],[-118.55725193181853,49.68587235306302],[-118.56869155103995,49.70422083608328],[-118.53168036262367,49.73812011540592],[-118.505415554056,49.73923210601952],[-118.51021317089777,49.81255700557587],[-118.67187910827923,49.81271018610097],[-119.05568075157318,49.81232225443617]],[[-118.67848499586297,49.10823597174694],[-118.67325047364926,49.079838996816534],[-118.68341219366103,49.07961591951199],[-118.67848499586297,49.10823597174694]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Kootenay","regional_district_aka_census_division":"Kootenay Boundary","census_subdivision":"Kootenay Boundary E / West Boundary","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5940","census_division_code":"5905","census_subdivision_code":"5905054","name":"Kootenay Boundary E / West Boundary"}},{"type":"Feature","geometry":{"coordinates":[[[-126.31954430903508,50.49895620619622],[-126.56666629701223,50.50220454073632],[-126.62017884786329,50.51055770180846],[-126.67448150005545,50.533237349376165],[-126.790385263456,50.557724440682705],[-126.88268578311643,50.56646877851037],[-126.90778056479662,50.59980528579283],[-126.94400120816692,50.604957165222146],[-126.9607290836858,50.595596944996274],[-126.95604905254903,50.58124535531578],[-126.99736192711002,50.56568822357967],[-127.02002938529448,50.52361096108052],[-127.07722201785114,50.50108037511698],[-127.08619025284325,50.45839739623427],[-127.11754207247316,50.444281672689705],[-127.17075997282456,50.389203476740924],[-127.09477100459817,50.340295157468525],[-127.04682367539517,50.32315369692789],[-126.99842100921816,50.2779481543137],[-126.99052376203886,50.1816431324169],[-126.90366665968402,50.190153980536145],[-126.83962438778723,50.138759269032725],[-126.82193470443154,50.16974318595024],[-126.78134759735174,50.15673855927349],[-126.79100593542039,50.12479455859454],[-126.74711314716124,50.103447513102175],[-126.714143605494,50.1148062960752],[-126.64701800057863,50.09109493194123],[-126.69542462204372,50.061822377587696],[-126.69320557504236,50.03255048029404],[-126.65903491437938,50.01834551585322],[-126.5587448115338,50.02947015230202],[-126.5715692205315,49.99024488415343],[-126.49398552107954,49.96388654216434],[-126.46951983858217,49.9290411043566],[-126.3888294765869,49.90675499454566],[-126.3487575555831,49.92006381257222],[-126.32602606691239,49.95378312241784],[-126.22629216037333,50.01623011618611],[-126.25422616675796,50.06899605656227],[-126.22572837844602,50.12317255499274],[-126.16034493062355,50.12143450022005],[-126.10080977561974,50.159507397412966],[-126.04457971356734,50.180559709620816],[-126.02770807336807,50.259223158789155],[-125.99540286431905,50.28218961107071],[-126.04232363439338,50.31267295633929],[-126.05484599890832,50.33958637442145],[-125.99486138895372,50.34038787807927],[-126.05601051921617,50.40462226366634],[-126.11107797834849,50.397592790493604],[-126.10896461989047,50.471170318636425],[-126.19238296006039,50.478550725368926],[-126.31954430903508,50.49895620619622]],[[-126.93015354256231,50.587419438121735],[-126.9513586347897,50.587586671390675],[-126.94736524704197,50.602392763480466],[-126.92091911149033,50.593787262516074],[-126.91514707262009,50.58317616793822],[-126.92169037838677,50.57396811237285],[-126.93364253356376,50.581565941861996],[-126.93015354256231,50.587419438121735]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Mount Waddington D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943033","name":"Mount Waddington D"}},{"type":"Feature","geometry":{"coordinates":[[[-127.447546775656,50.3747709667512],[-127.47086690260701,50.43434106295595],[-127.51984334373434,50.44469533274242],[-127.49473041993836,50.404053171459886],[-127.447546775656,50.3747709667512]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Port Alice","type":"Village","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943017","name":"Port Alice"}},{"type":"Feature","geometry":{"coordinates":[[[-127.42622838103168,50.82797983445299],[-127.45950663472468,50.801814846680834],[-127.60342173273236,50.80864622822347],[-127.6027206229937,50.77122304289391],[-127.76521477644832,50.76819775496999],[-127.75912055678364,50.59712747900911],[-127.62311491728117,50.58708769712241],[-127.6256933494531,50.525635129011015],[-127.51984334373434,50.44469533274242],[-127.47086690260701,50.43434106295595],[-127.447546775656,50.3747709667512],[-127.42904835836886,50.33697459831713],[-127.36025957526014,50.298184470463895],[-127.37776527404323,50.25757587717643],[-127.33392501516441,50.23200417411109],[-127.29109781811653,50.24011000156111],[-127.29692306413267,50.27680550093482],[-127.2655790970297,50.284328308016626],[-127.2254551070469,50.264463653546315],[-127.16147741894353,50.2874814113816],[-127.09477100459817,50.340295157468525],[-127.17075997282456,50.389203476740924],[-127.11754207247316,50.444281672689705],[-127.08619025284325,50.45839739623427],[-127.07722201785114,50.50108037511698],[-127.02002938529448,50.52361096108052],[-126.99736192711002,50.56568822357967],[-126.95604905254903,50.58124535531578],[-127.00576665904208,50.6108188555237],[-127.14980440943202,50.62179470220449],[-127.18121707435282,50.65056914236069],[-127.18472459551553,50.75896264134456],[-127.42622838103168,50.82797983445299]],[[-127.5739488100278,50.61253713085195],[-127.57794342926911,50.61359258184447],[-127.56868645170509,50.617068756839515],[-127.56542155770869,50.61919007076667],[-127.56323585226649,50.61778005917304],[-127.5739488100278,50.61253713085195]],[[-127.11151208832088,50.59394836915042],[-127.04186515702152,50.591478870300136],[-127.04727888760851,50.57851773109149],[-127.12442415730246,50.57306133080518],[-127.11151208832088,50.59394836915042]],[[-127.49425005795068,50.73066847758243],[-127.42883921563717,50.72646278489178],[-127.38372527495353,50.676118282157546],[-127.46616980676822,50.68375053138868],[-127.52076569527732,50.70570380634946],[-127.50262019606113,50.73441470309164],[-127.5053657584514,50.737024937378024],[-127.49504924079159,50.74278407098304],[-127.49425005795068,50.73066847758243]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Mount Waddington C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943031","name":"Mount Waddington C"}},{"type":"Feature","geometry":{"coordinates":[[[-126.92827912187137,50.582825694159986],[-126.9280468131915,50.58148513193034],[-126.9251173752797,50.582389611254094],[-126.92520740314026,50.58319462372647],[-126.92827912187137,50.582825694159986]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Nimpkish 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943835","name":"Nimpkish 2"}},{"type":"Feature","geometry":{"coordinates":[[[-126.93015354256231,50.587419438121735],[-126.93364253356376,50.581565941861996],[-126.92169037838677,50.57396811237285],[-126.91514707262009,50.58317616793822],[-126.92091911149033,50.593787262516074],[-126.93015354256231,50.587419438121735]],[[-126.92827912187137,50.582825694159986],[-126.92520740314026,50.58319462372647],[-126.9251173752797,50.582389611254094],[-126.9280468131915,50.58148513193034],[-126.92827912187137,50.582825694159986]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Alert Bay - Village","type":"Village","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943008","name":"Alert Bay - Village"}},{"type":"Feature","geometry":{"coordinates":[[[-127.11151208832088,50.59394836915042],[-127.12442415730246,50.57306133080518],[-127.04727888760851,50.57851773109149],[-127.04186515702152,50.591478870300136],[-127.11151208832088,50.59394836915042]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Port McNeill","type":"Town","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943012","name":"Port McNeill"}},{"type":"Feature","geometry":{"coordinates":[[[-126.92091911149033,50.593787262516074],[-126.94736524704197,50.602392763480466],[-126.9513586347897,50.587586671390675],[-126.93015354256231,50.587419438121735],[-126.92091911149033,50.593787262516074]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Alert Bay - Indian reserve","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943837","name":"Alert Bay - Indian reserve"}},{"type":"Feature","geometry":{"coordinates":[[[-126.5983393463954,50.59549245952261],[-126.59266931616517,50.59223447729371],[-126.58814886583417,50.593117001125506],[-126.5876092634411,50.59731204691723],[-126.5983393463954,50.59549245952261]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Dead Point 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943807","name":"Dead Point 5"}},{"type":"Feature","geometry":{"coordinates":[[[-127.42622838103168,50.82797983445299],[-127.52906044378042,50.8577113328106],[-127.63034547321041,50.89487257177132],[-127.75584063267998,50.95817691020079],[-127.90816842222198,51.00023377983892],[-127.99283971911848,51.080989454540855],[-128.53947521962792,51.024663305900205],[-129.0843837688484,50.96557513086937],[-129.11150973078446,50.90603897327717],[-129.11948600227873,50.81276166357992],[-129.0763108636559,50.70696244286188],[-129.03067035766645,50.65555533553879],[-128.87043408868306,50.51685046143849],[-128.57052672103333,50.27508821348615],[-128.4240285410595,50.20414574022224],[-128.18440180030973,50.10435551647509],[-127.98468522755135,49.996531237363904],[-127.92337483710999,49.93464531255562],[-127.91418929117395,50.01183114771062],[-127.89796369808073,50.05544814519007],[-127.95201047194344,50.09080870230505],[-127.9674036108795,50.122168668928765],[-127.86085406617856,50.14223213277769],[-127.80337943408044,50.14159590966315],[-127.73622438928948,50.16379543449825],[-127.73472597135715,50.189646140626444],[-127.66186314052989,50.23976784614868],[-127.54208904685837,50.29206463126737],[-127.52616174356527,50.27891655540394],[-127.41038573293771,50.2504750584824],[-127.37776527404323,50.25757587717643],[-127.36025957526014,50.298184470463895],[-127.42904835836886,50.33697459831713],[-127.447546775656,50.3747709667512],[-127.49473041993836,50.404053171459886],[-127.51984334373434,50.44469533274242],[-127.6256933494531,50.525635129011015],[-127.62311491728117,50.58708769712241],[-127.75912055678364,50.59712747900911],[-127.76521477644832,50.76819775496999],[-127.6027206229937,50.77122304289391],[-127.60342173273236,50.80864622822347],[-127.45950663472468,50.801814846680834],[-127.42622838103168,50.82797983445299]],[[-127.98422246995369,50.92092717346638],[-127.92897765424259,50.9271053613672],[-127.90162723746715,50.94465737931601],[-127.8411890504729,50.93199618094602],[-127.83246226922968,50.904813669026844],[-127.87373836026175,50.88886965794518],[-127.98624027269449,50.90529647004632],[-127.98422246995369,50.92092717346638]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Mount Waddington B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943027","name":"Mount Waddington B"}},{"type":"Feature","geometry":{"coordinates":[[[-127.5739488100278,50.61253713085195],[-127.56323585226649,50.61778005917304],[-127.56542155770869,50.61919007076667],[-127.56868645170509,50.617068756839515],[-127.57794342926911,50.61359258184447],[-127.5739488100278,50.61253713085195]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Quatsino Subdivision 18","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943816","name":"Quatsino Subdivision 18"}},{"type":"Feature","geometry":{"coordinates":[[[-126.60012116037284,50.69481965960081],[-126.59823975449031,50.69036475282685],[-126.59434361856583,50.69083365928698],[-126.59460250795256,50.69780058272474],[-126.60012116037284,50.69481965960081]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Gwayasdums 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943808","name":"Gwayasdums 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.40816768007548,50.69544777114678],[-127.41404267875801,50.69526820836745],[-127.41374808806464,50.69203735509762],[-127.40810487533655,50.69206882452226],[-127.40808910186996,50.69454904098011],[-127.40816768007548,50.69544777114678]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Kippase 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943815","name":"Kippase 2"}},{"type":"Feature","geometry":{"coordinates":[[[-127.40808910186996,50.69454904098011],[-127.40288957444378,50.69525379190085],[-127.40299363660317,50.69649565009971],[-127.40816768007548,50.69544777114678],[-127.40808910186996,50.69454904098011]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Fort Rupert 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943804","name":"Fort Rupert 1"}},{"type":"Feature","geometry":{"coordinates":[[[-127.38568536426632,50.69687832313393],[-127.3857985501401,50.69445597466079],[-127.38036341302117,50.6944115530883],[-127.38084716465998,50.69813807151776],[-127.38554274000435,50.69992977772367],[-127.38568536426632,50.69687832313393]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Thomas Point 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943817","name":"Thomas Point 5"}},{"type":"Feature","geometry":{"coordinates":[[[-127.38554274000435,50.69992977772367],[-127.38977050841537,50.698121594781085],[-127.38568536426632,50.69687832313393],[-127.38554274000435,50.69992977772367]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Thomas Point 5A","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943826","name":"Thomas Point 5A"}},{"type":"Feature","geometry":{"coordinates":[[[[-127.38568536426632,50.69687832313393],[-127.3857985501401,50.69445597466079],[-127.38036341302117,50.6944115530883],[-127.38084716465998,50.69813807151776],[-127.38554274000435,50.69992977772367],[-127.38977050841537,50.698121594781085],[-127.38568536426632,50.69687832313393]]],[[[-127.50262019606113,50.73441470309164],[-127.52076569527732,50.70570380634946],[-127.46616980676822,50.68375053138868],[-127.38372527495353,50.676118282157546],[-127.42883921563717,50.72646278489178],[-127.49425005795068,50.73066847758243],[-127.50262019606113,50.73441470309164]],[[-127.40808910186996,50.69454904098011],[-127.40810487533655,50.69206882452226],[-127.41374808806464,50.69203735509762],[-127.41404267875801,50.69526820836745],[-127.40816768007548,50.69544777114678],[-127.40299363660317,50.69649565009971],[-127.40288957444378,50.69525379190085],[-127.40808910186996,50.69454904098011]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Port Hardy","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943023","name":"Port Hardy"}},{"type":"Feature","geometry":{"coordinates":[[[-127.49425005795068,50.73066847758243],[-127.49504924079159,50.74278407098304],[-127.5053657584514,50.737024937378024],[-127.50262019606113,50.73441470309164],[-127.49425005795068,50.73066847758243]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Tsulquate 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943806","name":"Tsulquate 4"}},{"type":"Feature","geometry":{"coordinates":[[[-127.98422246995369,50.92092717346638],[-127.98624027269449,50.90529647004632],[-127.87373836026175,50.88886965794518],[-127.83246226922968,50.904813669026844],[-127.8411890504729,50.93199618094602],[-127.90162723746715,50.94465737931601],[-127.92897765424259,50.9271053613672],[-127.98422246995369,50.92092717346638]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Hope Island 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943836","name":"Hope Island 1"}},{"type":"Feature","geometry":{"coordinates":[[[-126.82005905542677,50.922717368561585],[-126.82002267706045,50.92445957160403],[-126.82322135536752,50.923884297542486],[-126.82005905542677,50.922717368561585]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Hopetown 10A","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943809","name":"Hopetown 10A"}},{"type":"Feature","geometry":{"coordinates":[[[-126.18371580044014,50.97397070996807],[-126.16965284142329,50.96512093040434],[-126.16873597598249,50.98044483423947],[-126.18371580044014,50.97397070996807]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Quaee 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943813","name":"Quaee 7"}},{"type":"Feature","geometry":{"coordinates":[[[-125.77758605017944,52.00053340744154],[-125.81464678908094,51.975418499110255],[-125.88081254096393,51.963397733385506],[-125.87062318854554,51.910876617369276],[-125.91437244050444,51.890152281516244],[-125.92705651667855,51.8177789169623],[-125.97164675207266,51.78881610178768],[-125.96216424299891,51.747364178983865],[-125.99730286292635,51.728354020139776],[-125.99117837729854,51.68829616960127],[-125.95518426309745,51.692210883926194],[-125.950678136005,51.648435521081616],[-125.91032136192064,51.614332319219024],[-125.98179837797277,51.58068623543117],[-126.02812905514824,51.5999422339915],[-126.05301754589118,51.565557651672975],[-126.11798197184117,51.51832003631812],[-126.0990316364203,51.475106350701495],[-126.14966459794802,51.46061625158526],[-126.17240350370261,51.435854806082396],[-126.21711654089233,51.453971746643276],[-126.34562801995276,51.46205361120064],[-126.3889862770458,51.48166409204649],[-126.45115164318906,51.4764410486329],[-126.48175777992813,51.44247486964171],[-126.52839524081666,51.41821054882066],[-126.58542317620751,51.40630026389568],[-126.61992640014614,51.443444912429975],[-126.70735579295561,51.46025048748113],[-126.72356746845765,51.43485654381505],[-126.69907057472359,51.40972759380616],[-126.72545645916489,51.34517327970446],[-126.76405352233381,51.301295851624054],[-126.81018602844334,51.299058246836765],[-126.8406446865487,51.323011043552015],[-126.8921119425129,51.30674415110503],[-126.92377080188382,51.277885475542],[-126.92251483320818,51.242014230269724],[-126.997268399497,51.24074127562028],[-127.19454755690288,51.20402431418169],[-127.23498036668013,51.219406053027896],[-127.3234003870892,51.20924591616467],[-127.39100198581531,51.22850780979143],[-127.45290022622922,51.224481343899605],[-127.45682630701485,51.20433363265802],[-127.61079573063897,51.19154359204555],[-127.73823953080027,51.188722903043086],[-127.73530464054902,51.15951325146394],[-127.79288496981363,51.15617976779495],[-127.86239527986427,51.09670258530435],[-127.91785931337839,51.07633020523256],[-127.99283971911848,51.080989454540855],[-127.90816842222198,51.00023377983892],[-127.75584063267998,50.95817691020079],[-127.63034547321041,50.89487257177132],[-127.52906044378042,50.8577113328106],[-127.42622838103168,50.82797983445299],[-127.18472459551553,50.75896264134456],[-127.18121707435282,50.65056914236069],[-127.14980440943202,50.62179470220449],[-127.00576665904208,50.6108188555237],[-126.95604905254903,50.58124535531578],[-126.9607290836858,50.595596944996274],[-126.94400120816692,50.604957165222146],[-126.90778056479662,50.59980528579283],[-126.88268578311643,50.56646877851037],[-126.790385263456,50.557724440682705],[-126.67448150005545,50.533237349376165],[-126.62017884786329,50.51055770180846],[-126.56666629701223,50.50220454073632],[-126.31954430903508,50.49895620619622],[-126.28049553470785,50.53251544322595],[-126.22809690433178,50.543154374059164],[-126.20224872338318,50.57277592915849],[-126.06187813631755,50.614439697265105],[-125.92669082015092,50.63391214552195],[-125.84850746903612,50.6211689816612],[-125.82782836879605,50.57369026053924],[-125.74043896310724,50.60512438051204],[-125.6628755701612,50.59633688001681],[-125.60521203186464,50.60936302871577],[-125.5616173428385,50.68454886548925],[-125.57570697492154,50.709520201674714],[-125.53758688001699,50.73508967694642],[-125.54991005411489,50.77410968734575],[-125.50323068078505,50.79422526762462],[-125.54395937580497,50.832934307531076],[-125.50489279254693,50.842941734302634],[-125.4970487445419,50.90067378664838],[-125.41156265035933,50.94382463486992],[-125.25277052316598,50.96273254916098],[-125.27997002788568,51.010721586465586],[-125.30896836130043,51.00702760398532],[-125.32507918239936,51.045933845240675],[-125.24289831000658,51.06422050740734],[-125.29669077476022,51.103468280902135],[-125.28264808515803,51.16881522832554],[-125.33151444172492,51.19974378643625],[-125.32864381144702,51.24964934165681],[-125.2839986629721,51.28297736197837],[-125.22512010998994,51.30185761876673],[-125.20366249196893,51.3231859023937],[-125.26666799255864,51.37685835117752],[-125.33856416051238,51.4090546806275],[-125.32693638093639,51.45364512085922],[-125.28956318517386,51.475600352361205],[-125.28899033051033,51.504829285405435],[-125.25229175902633,51.52687237254429],[-125.26323318995395,51.552143976943746],[-125.23789230389853,51.572068734946896],[-125.29603158045298,51.589394858995284],[-125.2920231577417,51.6093305128626],[-125.23288209994813,51.640487318108406],[-125.25654760214688,51.72323051253667],[-125.2547145578096,51.765080665151245],[-125.37945561966197,51.7893275378019],[-125.42781247497696,51.841795533290146],[-125.50132089856974,51.87841562338193],[-125.48747494152117,51.915820482757795],[-125.5752915616659,51.913363220227716],[-125.61162566020715,51.90325500320885],[-125.67857356867958,51.94317143567366],[-125.72082804693659,52.00849998587794],[-125.77758605017944,52.00053340744154]],[[-126.82005905542677,50.922717368561585],[-126.82322135536752,50.923884297542486],[-126.82002267706045,50.92445957160403],[-126.82005905542677,50.922717368561585]],[[-126.60012116037284,50.69481965960081],[-126.59460250795256,50.69780058272474],[-126.59434361856583,50.69083365928698],[-126.59823975449031,50.69036475282685],[-126.60012116037284,50.69481965960081]],[[-126.5983393463954,50.59549245952261],[-126.5876092634411,50.59731204691723],[-126.58814886583417,50.593117001125506],[-126.59266931616517,50.59223447729371],[-126.5983393463954,50.59549245952261]],[[-126.18371580044014,50.97397070996807],[-126.16873597598249,50.98044483423947],[-126.16965284142329,50.96512093040434],[-126.18371580044014,50.97397070996807]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Mount Waddington","census_subdivision":"Mount Waddington A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5943","census_subdivision_code":"5943037","name":"Mount Waddington A"}},{"type":"Feature","geometry":{"coordinates":[[[-123.8637316404857,49.12674892721258],[-123.88566545023969,49.12310593561207],[-123.88643556289902,49.12313914099343],[-123.8891837413078,49.114707395260055],[-123.91994778402511,49.102010971871685],[-123.89246288484898,49.08255431059656],[-123.87772533722769,49.03703268405996],[-123.86445159670302,49.05733387050843],[-123.74042660229857,49.05705366529003],[-123.80512774776906,49.126859981096715],[-123.8637316404857,49.12674892721258]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921010","name":"Nanaimo A"}},{"type":"Feature","geometry":{"coordinates":[[[-123.8637316404857,49.12674892721258],[-123.87855235800257,49.13339838855825],[-123.88566545023969,49.12310593561207],[-123.8637316404857,49.12674892721258]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo River","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921807","name":"Nanaimo River"}},{"type":"Feature","geometry":{"coordinates":[[[-123.92739143023255,49.15539035350242],[-123.93036367684171,49.15528069925589],[-123.93090963812169,49.14684662954088],[-123.927221934237,49.146296954163056],[-123.92830234438382,49.15132564899776],[-123.92739143023255,49.15539035350242]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo Town 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921804","name":"Nanaimo Town 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.50000187401457,49.21473496754862],[-123.83713417145567,49.21159348621813],[-123.90252331155759,49.185082679046175],[-123.8654451758041,49.152487014490816],[-123.80512774776906,49.126859981096715],[-123.74042660229857,49.05705366529003],[-123.71573947091504,49.09328443329738],[-123.73064256783528,49.12153179825782],[-123.4348002950749,49.129358854319236],[-123.46822061147883,49.183581613955646],[-123.50000187401457,49.21473496754862]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921014","name":"Nanaimo B"}},{"type":"Feature","geometry":{"coordinates":[[[[-123.76699266926536,49.319392649668195],[-123.91732414784867,49.349832333971236],[-124.04004447082157,49.36500137760259],[-124.05698358467423,49.26836573537647],[-124.11354986021702,49.25849727614935],[-124.05707081574214,49.25150894764467],[-123.96212946593477,49.237770880079175],[-123.90252331155759,49.185082679046175],[-123.83713417145567,49.21159348621813],[-123.50000187401457,49.21473496754862],[-123.61505892074632,49.273302204083194],[-123.73837752680708,49.31233839977494],[-123.76699266926536,49.319392649668195]]],[[[-124.23627130018883,49.25282000756558],[-124.24590975585201,49.22632820025819],[-124.29216658243959,49.21894825062607],[-124.32675469812794,49.2302052594749],[-124.52524005759658,49.241145903034706],[-124.60533827494783,49.28406883726516],[-124.64315523048374,49.27203679400607],[-124.67423772814229,49.23389255021996],[-124.69731781603397,49.191286968728214],[-124.6882921800145,49.171556278590316],[-124.59046684505257,49.15966509337611],[-124.58255508490153,49.14005755432641],[-124.5282151892442,49.124178776459196],[-124.52723887942528,49.08013248893326],[-124.49045916893249,49.056328204957644],[-124.47922931295604,49.021481805434455],[-124.41543148502679,49.02436330612795],[-124.36457092716505,48.982185822756755],[-124.23815929576597,49.003926014548455],[-124.10254772389924,48.99816314439575],[-124.0103618209193,48.99958973699312],[-124.03594849234996,49.02574451581664],[-123.87772533722769,49.03703268405996],[-123.89246288484898,49.08255431059656],[-123.91994778402511,49.102010971871685],[-123.93318556874614,49.133664699932154],[-123.97063261955648,49.1330055658423],[-124.01386574615249,49.15626902427589],[-123.99932683870324,49.18698694805654],[-124.05442669460335,49.20283018959325],[-124.06461513289547,49.229764703178795],[-124.08195893251728,49.19920587331539],[-124.13540407448211,49.20290417150043],[-124.22690660669356,49.224090213027424],[-124.23627130018883,49.25282000756558]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921016","name":"Nanaimo C"}},{"type":"Feature","geometry":{"coordinates":[[[-123.90252331155759,49.185082679046175],[-123.96212946593477,49.237770880079175],[-124.05707081574214,49.25150894764467],[-124.06461513289547,49.229764703178795],[-124.05442669460335,49.20283018959325],[-123.99932683870324,49.18698694805654],[-124.01386574615249,49.15626902427589],[-123.97063261955648,49.1330055658423],[-123.93318556874614,49.133664699932154],[-123.91994778402511,49.102010971871685],[-123.8891837413078,49.114707395260055],[-123.88643556289902,49.12313914099343],[-123.88566545023969,49.12310593561207],[-123.87855235800257,49.13339838855825],[-123.8637316404857,49.12674892721258],[-123.80512774776906,49.126859981096715],[-123.8654451758041,49.152487014490816],[-123.90252331155759,49.185082679046175]],[[-123.92739143023255,49.15539035350242],[-123.92830234438382,49.15132564899776],[-123.927221934237,49.146296954163056],[-123.93090963812169,49.14684662954088],[-123.93036367684171,49.15528069925589],[-123.92739143023255,49.15539035350242]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921007","name":"Nanaimo"}},{"type":"Feature","geometry":{"coordinates":[[[-124.1322690729478,49.255164354530805],[-124.13540407448211,49.20290417150043],[-124.08195893251728,49.19920587331539],[-124.06461513289547,49.229764703178795],[-124.05707081574214,49.25150894764467],[-124.11354986021702,49.25849727614935],[-124.1228195020397,49.25689800317142],[-124.11292780497811,49.24881607664604],[-124.13168296805154,49.248910725491854],[-124.1322690729478,49.255164354530805]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Lantzville","type":"District municipality","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921008","name":"Lantzville"}},{"type":"Feature","geometry":{"coordinates":[[[-124.1322690729478,49.255164354530805],[-124.13168296805154,49.248910725491854],[-124.11292780497811,49.24881607664604],[-124.1228195020397,49.25689800317142],[-124.1322690729478,49.255164354530805]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanoose","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921805","name":"Nanoose"}},{"type":"Feature","geometry":{"coordinates":[[[-124.54175183605794,49.34215023978562],[-124.58359213989584,49.31145899424305],[-124.62020781778112,49.338005346498065],[-124.66129405923468,49.32130090368325],[-124.68771813337932,49.2678069242181],[-124.67423772814229,49.23389255021996],[-124.64315523048374,49.27203679400607],[-124.60533827494783,49.28406883726516],[-124.52524005759658,49.241145903034706],[-124.32675469812794,49.2302052594749],[-124.29216658243959,49.21894825062607],[-124.24590975585201,49.22632820025819],[-124.23627130018883,49.25282000756558],[-124.26650666961721,49.26772899491101],[-124.30149676239714,49.30519620326941],[-124.34703173598385,49.312676131811926],[-124.45359996297938,49.317211677655386],[-124.46512156776062,49.333940604408866],[-124.54175183605794,49.34215023978562]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921032","name":"Nanaimo F"}},{"type":"Feature","geometry":{"coordinates":[[[-124.04004447082157,49.36500137760259],[-124.26313449703709,49.39077246185688],[-124.24855605693365,49.30652354470248],[-124.24431434821126,49.298657556167115],[-124.26650666961721,49.26772899491101],[-124.23627130018883,49.25282000756558],[-124.22690660669356,49.224090213027424],[-124.13540407448211,49.20290417150043],[-124.1322690729478,49.255164354530805],[-124.1228195020397,49.25689800317142],[-124.11354986021702,49.25849727614935],[-124.05698358467423,49.26836573537647],[-124.04004447082157,49.36500137760259]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921030","name":"Nanaimo E"}},{"type":"Feature","geometry":{"coordinates":[[[-124.24855605693365,49.30652354470248],[-124.27512096019223,49.32996814553162],[-124.34703173598385,49.312676131811926],[-124.30149676239714,49.30519620326941],[-124.24431434821126,49.298657556167115],[-124.24855605693365,49.30652354470248]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Parksville","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921018","name":"Parksville"}},{"type":"Feature","geometry":{"coordinates":[[[-124.47803261497036,49.3607729495445],[-124.48243941840427,49.34532221755466],[-124.4099518963443,49.325915138419056],[-124.38185330080566,49.35856230882125],[-124.47803261497036,49.3607729495445]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Qualicum Beach","type":"Town","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921023","name":"Qualicum Beach"}},{"type":"Feature","geometry":{"coordinates":[[[[-124.24431434821126,49.298657556167115],[-124.30149676239714,49.30519620326941],[-124.26650666961721,49.26772899491101],[-124.24431434821126,49.298657556167115]]],[[[-124.26313449703709,49.39077246185688],[-124.3971439588043,49.423976476865306],[-124.46536673440677,49.46977996591827],[-124.51744554513553,49.46982078518735],[-124.51585067026278,49.43434328558474],[-124.53626512755795,49.40549296751682],[-124.54175183605794,49.34215023978562],[-124.46512156776062,49.333940604408866],[-124.45359996297938,49.317211677655386],[-124.34703173598385,49.312676131811926],[-124.27512096019223,49.32996814553162],[-124.24855605693365,49.30652354470248],[-124.26313449703709,49.39077246185688]],[[-124.47803261497036,49.3607729495445],[-124.38185330080566,49.35856230882125],[-124.4099518963443,49.325915138419056],[-124.48243941840427,49.34532221755466],[-124.47803261497036,49.3607729495445]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921034","name":"Nanaimo G"}},{"type":"Feature","geometry":{"coordinates":[[[-124.51744554513553,49.46982078518735],[-124.75630832167967,49.470249737922124],[-124.73345424565458,49.439579451485024],[-124.73357320238365,49.40474425028296],[-124.82314066031182,49.40489815367689],[-124.85934462145121,49.43308701309076],[-124.96813235767269,49.43338667776203],[-124.89991918445234,49.379537756242414],[-124.80932973176417,49.32794850058181],[-124.77428372799505,49.298687046862504],[-124.74749300797109,49.275513405302725],[-124.68771813337932,49.2678069242181],[-124.66129405923468,49.32130090368325],[-124.62020781778112,49.338005346498065],[-124.58359213989584,49.31145899424305],[-124.54175183605794,49.34215023978562],[-124.53626512755795,49.40549296751682],[-124.51585067026278,49.43434328558474],[-124.51744554513553,49.46982078518735]],[[-124.61043165275186,49.39857555492097],[-124.62031598835871,49.39434735483617],[-124.61986599401443,49.40283372172441],[-124.61043165275186,49.39857555492097]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Nanaimo H","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921036","name":"Nanaimo H"}},{"type":"Feature","geometry":{"coordinates":[[[-124.61043165275186,49.39857555492097],[-124.61986599401443,49.40283372172441],[-124.62031598835871,49.39434735483617],[-124.61043165275186,49.39857555492097]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Nanaimo","census_subdivision":"Qualicum","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5921","census_subdivision_code":"5921806","name":"Qualicum"}},{"type":"Feature","geometry":{"coordinates":[[[-118.67187910827923,49.81271018610097],[-118.671299948344,50.22369671693025],[-118.69506268698817,50.237776811205514],[-118.79357556417125,50.24467919877266],[-118.79175664908917,50.27020053058291],[-118.69278798659398,50.26804243674816],[-118.69505950391739,50.48818000506634],[-119.00187008517386,50.48838678137844],[-119.0007052008528,50.473663101655674],[-119.00311257175602,50.30597326636024],[-118.9987745074814,50.26684998742559],[-119.07929833719768,50.25289579376295],[-119.0688289733001,50.2234895949223],[-119.18211134128259,50.195619853671396],[-119.2272602560319,50.19489724316493],[-119.28866916526268,50.17652568311824],[-119.32903588684951,50.15110066039968],[-119.146108022664,50.151247564669504],[-119.14099606048138,50.11926973479365],[-119.16528887283373,50.0932897677502],[-119.17338962863226,50.04974320184619],[-119.06430607466596,50.03705022617848],[-118.94687217704995,50.057035492685365],[-118.86889732155115,50.05279009643828],[-118.80988513040057,50.02183867849786],[-118.82274210795471,49.99996711386366],[-118.80803768947813,49.955614480703076],[-118.85232835802493,49.95790191718066],[-118.97683788324505,49.892868610661715],[-119.05568075157318,49.81232225443617],[-118.67187910827923,49.81271018610097]],[[-118.96495632979251,50.25322024873455],[-118.96627913300107,50.23689943352286],[-118.98764805091047,50.23780533077226],[-118.98703485666086,50.26484770158535],[-118.96495632979251,50.25322024873455]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"North Okanagan D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937022","name":"North Okanagan D"}},{"type":"Feature","geometry":{"coordinates":[[[-119.24819192027691,50.245431633597505],[-119.29005183686485,50.223248450928544],[-119.23156338061699,50.21572274782282],[-119.2272602560319,50.19489724316493],[-119.18211134128259,50.195619853671396],[-119.0688289733001,50.2234895949223],[-119.07929833719768,50.25289579376295],[-119.21699762638441,50.25312909515319],[-119.24819192027691,50.245431633597505]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Coldstream","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937010","name":"Coldstream"}},{"type":"Feature","geometry":{"coordinates":[[[-119.23315781370283,50.283162099880556],[-119.28475322052839,50.30326698508262],[-119.35221760895134,50.26009758267191],[-119.41898009405095,50.2528537102079],[-119.42012971114077,50.21702519217498],[-119.45400256810896,50.18656818409766],[-119.45316062829207,50.150748904886704],[-119.4196278662286,50.151364341754636],[-119.40979220992884,50.180405146862185],[-119.35363854192956,50.181090058095215],[-119.29005183686485,50.223248450928544],[-119.24819192027691,50.245431633597505],[-119.23315781370283,50.283162099880556]],[[-119.34835956940005,50.24827396405709],[-119.33083920645338,50.24844973988202],[-119.33066218070952,50.2457300456885],[-119.34581302499156,50.245626849517244],[-119.34835956940005,50.24827396405709]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Vernon","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937014","name":"Vernon"}},{"type":"Feature","geometry":{"coordinates":[[[-119.34835956940005,50.24827396405709],[-119.34581302499156,50.245626849517244],[-119.33066218070952,50.2457300456885],[-119.33083920645338,50.24844973988202],[-119.34835956940005,50.24827396405709]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Priest's Valley 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937803","name":"Priest's Valley 6"}},{"type":"Feature","geometry":{"coordinates":[[[-118.96495632979251,50.25322024873455],[-118.98703485666086,50.26484770158535],[-118.98764805091047,50.23780533077226],[-118.96627913300107,50.23689943352286],[-118.96495632979251,50.25322024873455]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Lumby","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937005","name":"Lumby"}},{"type":"Feature","geometry":{"coordinates":[[[-118.29428161423951,50.86440291034162],[-118.37560092555535,50.83199294622687],[-118.43361093975909,50.82578907043615],[-118.43136884076289,50.79509485844995],[-118.45627717593536,50.77248788466862],[-118.43154037171686,50.752233559922104],[-118.41744844880387,50.66630044281803],[-118.48871626637903,50.608106945352134],[-118.4817532401639,50.55686887732875],[-118.58448773923692,50.514264765485485],[-118.57838095778911,50.48788887375608],[-118.69505950391739,50.48818000506634],[-118.69278798659398,50.26804243674816],[-118.79175664908917,50.27020053058291],[-118.79357556417125,50.24467919877266],[-118.69506268698817,50.237776811205514],[-118.671299948344,50.22369671693025],[-118.67187910827923,49.81271018610097],[-118.51021317089777,49.81255700557587],[-118.31219441177743,49.81230454222221],[-118.312086272718,49.82352320655097],[-118.37440871389306,49.82458066663775],[-118.37859547434635,49.85911617477006],[-118.35388731562549,49.89178275812373],[-118.41870262594338,49.913602830563384],[-118.4158898028227,49.97304486669975],[-118.47351338277564,49.99952528095995],[-118.44811088553605,50.022615701905465],[-118.39976004321466,50.033423319855984],[-118.3982961742248,50.078761239011094],[-118.3381718594383,50.10072266560427],[-118.29352351152869,50.097815289410676],[-118.29139485668364,50.131286614007344],[-118.26372091216102,50.18142124416824],[-118.23912308610514,50.196296637692164],[-118.27606247819301,50.27865560871076],[-118.27545786572308,50.33980316057006],[-118.32689403391227,50.351999961747836],[-118.28208467420059,50.392415230310576],[-118.26758563206768,50.436218543711654],[-118.21205016044867,50.43941555570674],[-118.17606924447392,50.49311678020399],[-118.21530428510019,50.53806764185943],[-118.17966392685928,50.55358263454597],[-118.1626941566705,50.61146592926147],[-118.19598122657227,50.63420354080822],[-118.2072802831721,50.69028161896898],[-118.205853691659,50.738925062599016],[-118.24189769910171,50.75519283945533],[-118.29428161423951,50.86440291034162]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"North Okanagan E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937023","name":"North Okanagan E"}},{"type":"Feature","geometry":{"coordinates":[[[[-119.27788178506407,50.34037685783297],[-119.28475322052839,50.30326698508262],[-119.23315781370283,50.283162099880556],[-119.24279685031829,50.34023894878028],[-119.27788178506407,50.34037685783297]]],[[[-119.41898009405095,50.2528537102079],[-119.33062644032216,50.31552566266023],[-119.34449522941561,50.33305764655967],[-119.44321733417675,50.26974877060015],[-119.43684883836325,50.22580615510996],[-119.46075721894688,50.21119038524712],[-119.47431653510567,50.149953005047855],[-119.45316062829207,50.150748904886704],[-119.45400256810896,50.18656818409766],[-119.42012971114077,50.21702519217498],[-119.41898009405095,50.2528537102079]]],[[[-119.29005183686485,50.223248450928544],[-119.35363854192956,50.181090058095215],[-119.40979220992884,50.180405146862185],[-119.4196278662286,50.151364341754636],[-119.34750089791531,50.151305159135454],[-119.32903588684951,50.15110066039968],[-119.28866916526268,50.17652568311824],[-119.2272602560319,50.19489724316493],[-119.23156338061699,50.21572274782282],[-119.29005183686485,50.223248450928544]]],[[[-119.35239100234091,50.41617074052406],[-119.4457064548474,50.415957521012714],[-119.44636506457506,50.430853694181536],[-119.52493477467372,50.431032276972125],[-119.58186485203649,50.445701550771126],[-119.64448665191006,50.40210758142982],[-119.63348270884104,50.376275622033425],[-119.69806757623944,50.285054943398656],[-119.69742125348549,50.25796287827061],[-119.75185425304845,50.25954996698874],[-119.76180443064712,50.232820985095046],[-119.4716809871789,50.23489268031333],[-119.45948306650239,50.23123764330253],[-119.44865634568767,50.314297266899004],[-119.40343947077206,50.314318669653694],[-119.34184300355393,50.346904702065544],[-119.35239100234091,50.41617074052406]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"North Okanagan B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937017","name":"North Okanagan B"}},{"type":"Feature","geometry":{"coordinates":[[[-119.27788178506407,50.34037685783297],[-119.30602460215341,50.36930754132604],[-119.31786342611008,50.416146245596984],[-119.35239100234091,50.41617074052406],[-119.34184300355393,50.346904702065544],[-119.40343947077206,50.314318669653694],[-119.44865634568767,50.314297266899004],[-119.45948306650239,50.23123764330253],[-119.46075721894688,50.21119038524712],[-119.43684883836325,50.22580615510996],[-119.44321733417675,50.26974877060015],[-119.34449522941561,50.33305764655967],[-119.33062644032216,50.31552566266023],[-119.41898009405095,50.2528537102079],[-119.35221760895134,50.26009758267191],[-119.28475322052839,50.30326698508262],[-119.27788178506407,50.34037685783297]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Okanagan (Part) 1 - Thompson/Okanagan","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937801","name":"Okanagan (Part) 1 - Thompson/Okanagan"}},{"type":"Feature","geometry":{"coordinates":[[[-119.07939790963454,50.4447061549188],[-119.14909133482105,50.441757675825265],[-119.17255784883638,50.41264526966282],[-119.17126040196871,50.339813997156455],[-119.24279685031829,50.34023894878028],[-119.23315781370283,50.283162099880556],[-119.24819192027691,50.245431633597505],[-119.21699762638441,50.25312909515319],[-119.07929833719768,50.25289579376295],[-118.9987745074814,50.26684998742559],[-119.00311257175602,50.30597326636024],[-119.0007052008528,50.473663101655674],[-119.07939790963454,50.4447061549188]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"North Okanagan C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937021","name":"North Okanagan C"}},{"type":"Feature","geometry":{"coordinates":[[[-119.23002327845471,50.38397196148777],[-119.22873151891638,50.39061212140011],[-119.23825325702151,50.39058242554606],[-119.23859705311013,50.38396992431531],[-119.23002327845471,50.38397196148777]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Harris 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937805","name":"Harris 3"}},{"type":"Feature","geometry":{"coordinates":[[[-119.08197269663344,50.553988915073695],[-119.1253422636943,50.53622488866648],[-119.13790991353073,50.49961050871217],[-119.18345635989662,50.50000044409184],[-119.18337170821098,50.52781476928139],[-119.30846641971793,50.52860320799074],[-119.30811639755586,50.5145723787715],[-119.29738276493796,50.47135010814293],[-119.32892854352538,50.469983349042366],[-119.31786342611008,50.416146245596984],[-119.30602460215341,50.36930754132604],[-119.27788178506407,50.34037685783297],[-119.24279685031829,50.34023894878028],[-119.17126040196871,50.339813997156455],[-119.17255784883638,50.41264526966282],[-119.14909133482105,50.441757675825265],[-119.07939790963454,50.4447061549188],[-119.08197269663344,50.553988915073695]],[[-119.23002327845471,50.38397196148777],[-119.23859705311013,50.38396992431531],[-119.23825325702151,50.39058242554606],[-119.22873151891638,50.39061212140011],[-119.23002327845471,50.38397196148777]],[[-119.2101774423417,50.45596319190772],[-119.18256450905325,50.45582845790382],[-119.19447839032267,50.43787663392333],[-119.21712458395903,50.43625816973287],[-119.2101774423417,50.45596319190772]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Spallumcheen","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937024","name":"Spallumcheen"}},{"type":"Feature","geometry":{"coordinates":[[[-119.2101774423417,50.45596319190772],[-119.21712458395903,50.43625816973287],[-119.19447839032267,50.43787663392333],[-119.18256450905325,50.45582845790382],[-119.2101774423417,50.45596319190772]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Armstrong","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937028","name":"Armstrong"}},{"type":"Feature","geometry":{"coordinates":[[[-119.13618563733162,50.55026765601551],[-119.15415474260556,50.54329025556386],[-119.18353745063396,50.543866499966434],[-119.18337170821098,50.52781476928139],[-119.18345635989662,50.50000044409184],[-119.13790991353073,50.49961050871217],[-119.1253422636943,50.53622488866648],[-119.08197269663344,50.553988915073695],[-119.13618563733162,50.55026765601551]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Enderby 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937802","name":"Enderby 2"}},{"type":"Feature","geometry":{"coordinates":[[[-119.13618563733162,50.55026765601551],[-119.12501740582576,50.55963946335208],[-119.13204724184102,50.56585186037762],[-119.15570309288164,50.55461841422375],[-119.15415474260556,50.54329025556386],[-119.13618563733162,50.55026765601551]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"Enderby","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937033","name":"Enderby"}},{"type":"Feature","geometry":{"coordinates":[[[-118.31442671730173,50.88836758013088],[-118.4115930713829,50.882671647569765],[-118.4706348793324,50.89455705771244],[-118.533769090753,50.93457264904485],[-118.61277894389913,50.92461999331034],[-118.60960390903884,50.89411388219153],[-118.65161028650394,50.85323037689627],[-118.66444885990435,50.823020170810125],[-118.69937430803343,50.81120373171168],[-118.7781270218073,50.82604449954068],[-118.8126549032231,50.78667698397021],[-118.88303733623769,50.75042413047028],[-119.17800854869746,50.75009593852145],[-119.18082643341994,50.66403054358253],[-119.18353745063396,50.543866499966434],[-119.15415474260556,50.54329025556386],[-119.15570309288164,50.55461841422375],[-119.13204724184102,50.56585186037762],[-119.12501740582576,50.55963946335208],[-119.13618563733162,50.55026765601551],[-119.08197269663344,50.553988915073695],[-119.07939790963454,50.4447061549188],[-119.0007052008528,50.473663101655674],[-119.00187008517386,50.48838678137844],[-118.69505950391739,50.48818000506634],[-118.57838095778911,50.48788887375608],[-118.58448773923692,50.514264765485485],[-118.4817532401639,50.55686887732875],[-118.48871626637903,50.608106945352134],[-118.41744844880387,50.66630044281803],[-118.43154037171686,50.752233559922104],[-118.45627717593536,50.77248788466862],[-118.43136884076289,50.79509485844995],[-118.43361093975909,50.82578907043615],[-118.37560092555535,50.83199294622687],[-118.29428161423951,50.86440291034162],[-118.31442671730173,50.88836758013088]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"North Okanagan","census_subdivision":"North Okanagan F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5937","census_subdivision_code":"5937041","name":"North Okanagan F"}},{"type":"Feature","geometry":{"coordinates":[[[-122.70738363311222,58.09015213501244],[-122.70378342761204,58.06816751682941],[-122.68610787360169,58.065458803776565],[-122.68709877757928,58.09513682138588],[-122.70738363311222,58.09015213501244]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Northern Rockies Regional Municipality","census_subdivision":"Prophet River 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5959","census_subdivision_code":"5959810","name":"Prophet River 4"}},{"type":"Feature","geometry":{"coordinates":[[[-121.7277257182462,58.28402557733298],[-121.72374612146153,58.28320526596799],[-121.72304253093169,58.28729468899197],[-121.72861036601314,58.28757860967767],[-121.7277257182462,58.28402557733298]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Northern Rockies Regional Municipality","census_subdivision":"Fontas 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5959","census_subdivision_code":"5959805","name":"Fontas 1"}},{"type":"Feature","geometry":{"coordinates":[[[-120.9087466101668,58.35701198481678],[-120.90995487617613,58.354178783914826],[-120.90510971779626,58.35428888527497],[-120.90547816229484,58.35772494582236],[-120.9087466101668,58.35701198481678]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Northern Rockies Regional Municipality","census_subdivision":"Kahntah 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5959","census_subdivision_code":"5959809","name":"Kahntah 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.57380950619388,58.82528760519608],[-122.6392122053939,58.793291394093195],[-122.67401704051548,58.744143679544685],[-122.58982368012802,58.75076177717406],[-122.45452122059174,58.7496283813002],[-122.45363992807759,58.81561121773618],[-122.42424216344727,58.846534325836544],[-122.50449460778168,58.84469419022996],[-122.50796471570256,58.80594739390872],[-122.57380950619388,58.82528760519608]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Northern Rockies Regional Municipality","census_subdivision":"Fort Nelson 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5959","census_subdivision_code":"5959806","name":"Fort Nelson 2"}},{"type":"Feature","geometry":{"coordinates":[[[-123.789324835561,60.00003261971194],[-124.49999998419199,59.99999999083998],[-124.99999999384676,59.99999999275535],[-125.49999998069161,59.99999999068714],[-125.99999999458569,59.99999999738116],[-126.49999997133345,59.99999999734734],[-126.99999997369942,59.999999997445464],[-127.72500008774584,60.00002214929825],[-127.72860753660227,59.89570745163183],[-127.65549982549155,59.88014259056828],[-127.6606356469357,59.8550345443702],[-127.76918761410911,59.828238566261156],[-127.76164166170871,59.799696981107076],[-127.80272594142238,59.78544605983485],[-127.79785007139814,59.69513220707044],[-127.75261060553449,59.66664882640882],[-127.72766554342152,59.62997521239896],[-127.59267264941361,59.59704074899553],[-127.53267728460453,59.534416930580214],[-127.4939886923378,59.53008095689706],[-127.42771386541615,59.45525053826308],[-127.34264568959883,59.37866314145689],[-127.33312279131147,59.34657883643649],[-127.27970592304142,59.28216879643267],[-127.22739097444232,59.24219625674133],[-127.22305003550804,59.21721136671861],[-127.17093650941902,59.14019722600758],[-127.11320357873834,59.120462492430214],[-127.02763400741513,59.13295183392962],[-126.9721482827801,59.10299484828454],[-126.97856134837383,59.049811202180166],[-126.95138547408713,59.024687936508116],[-126.94346329590266,58.97177157454199],[-126.99239779667788,58.90933567177222],[-127.05941939565626,58.85060176725167],[-127.02138492542254,58.806628820918775],[-126.94867705604956,58.80897347312023],[-126.89534845075339,58.7781309802924],[-126.8343959882457,58.7221094449708],[-126.9066801292143,58.66116645361502],[-126.7438677776015,58.667261444228416],[-126.6999012797205,58.64886990575436],[-126.60559181916668,58.585153223032925],[-126.5519857054852,58.57913497269119],[-126.48676978381651,58.60504458222862],[-126.40327062486635,58.596896270188736],[-126.33239395450197,58.61003848056533],[-126.30289601714826,58.59835136786487],[-126.28482571545624,58.549318849814306],[-126.20759362218027,58.4934235489848],[-126.07055007571046,58.449416802244244],[-126.06009712044737,58.4204842062932],[-125.9308900576435,58.395287848271295],[-125.8574543296773,58.41265744198077],[-125.82296812389755,58.36940409423168],[-125.71739303146826,58.30727590804862],[-125.65019138901549,58.30391259963858],[-125.55184269281894,58.31955345176527],[-125.48049818883521,58.308653136590664],[-125.4393467446414,58.34113453888752],[-125.32853319011899,58.2777707600901],[-125.28862133809409,58.30289376734997],[-125.20129913933505,58.23926415823223],[-125.16010571789533,58.24383674426087],[-124.9518669774111,58.23083551557063],[-124.9262669607891,58.253214109446525],[-124.8297049637391,58.20706136316344],[-124.88395537530289,58.16431677519982],[-124.86096492518996,58.12489038574302],[-124.91906686116562,58.07397154777613],[-124.91702713540563,58.030427329346935],[-124.94836471156168,57.99987025305091],[-124.50096983748892,57.99958172409965],[-124.00105266965743,57.999308329278335],[-123.50300322865236,57.99954480154474],[-123.00643787436488,57.999798201019104],[-122.25516314445281,58.00002496100031],[-121.75329355634804,57.999121155813974],[-121.27382340826563,58.001412300085384],[-120.50110986155913,57.99979102070992],[-120.00002255688672,58.00000005006396],[-120.00000003642833,58.0794695009417],[-119.99999993292076,58.734048868824665],[-119.9999999832295,59.999999999344084],[-120.49999997008557,59.99999999624946],[-121.00000002378971,59.999999996662524],[-121.7499999774632,59.99999999015017],[-122.50000001140688,59.9999999960158],[-122.99999999299197,60.00000000726423],[-123.789324835561,60.00003261971194]],[[-120.9087466101668,58.35701198481678],[-120.90547816229484,58.35772494582236],[-120.90510971779626,58.35428888527497],[-120.90995487617613,58.354178783914826],[-120.9087466101668,58.35701198481678]],[[-121.7277257182462,58.28402557733298],[-121.72861036601314,58.28757860967767],[-121.72304253093169,58.28729468899197],[-121.72374612146153,58.28320526596799],[-121.7277257182462,58.28402557733298]],[[-122.70738363311222,58.09015213501244],[-122.68709877757928,58.09513682138588],[-122.68610787360169,58.065458803776565],[-122.70378342761204,58.06816751682941],[-122.70738363311222,58.09015213501244]],[[-122.57380950619388,58.82528760519608],[-122.50796471570256,58.80594739390872],[-122.50449460778168,58.84469419022996],[-122.42424216344727,58.846534325836544],[-122.45363992807759,58.81561121773618],[-122.45452122059174,58.7496283813002],[-122.58982368012802,58.75076177717406],[-122.67401704051548,58.744143679544685],[-122.6392122053939,58.793291394093195],[-122.57380950619388,58.82528760519608]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Northern Rockies Regional Municipality","census_subdivision":"Northern Rockies","type":"Regional municipality","census_year":"2021","economic_region_id":"5980","census_division_code":"5959","census_subdivision_code":"5959007","name":"Northern Rockies"}},{"type":"Feature","geometry":{"coordinates":[[[-119.70300448273004,49.0000499391504],[-119.70851163891221,49.049152856627686],[-119.73495187572705,49.059103175889334],[-119.736879691363,49.00008374846988],[-119.70300448273004,49.0000499391504]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Chopaka 7 & 8","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907805","name":"Chopaka 7 & 8"}},{"type":"Feature","geometry":{"coordinates":[[[-119.44506231759975,49.03678738223755],[-119.46675655335669,49.044182453885846],[-119.48381856143568,49.033655026028384],[-119.48892936864237,49.00736091247133],[-119.47537340709198,49.00670095762468],[-119.45908205562002,49.02602518758016],[-119.43701124095865,49.0363243394816],[-119.44506231759975,49.03678738223755]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Osoyoos","type":"Town","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907005","name":"Osoyoos"}},{"type":"Feature","geometry":{"coordinates":[[[-119.52617070306908,49.09434935722923],[-119.60403048912073,49.09463048686224],[-119.60410968963059,49.11441949337774],[-119.66962147231902,49.120932794086585],[-119.62656114868332,49.073469944833626],[-119.62612343561455,49.00008080953583],[-119.29492322384736,49.00004765634961],[-119.30182071645683,49.07325407022651],[-119.25597402888108,49.16188682125208],[-119.32658039874923,49.11384922317789],[-119.39710813385464,49.12927744535432],[-119.4488465711462,49.123791674868244],[-119.44911459206901,49.06667307953237],[-119.43701124095865,49.0363243394816],[-119.45908205562002,49.02602518758016],[-119.47537340709198,49.00670095762468],[-119.48892936864237,49.00736091247133],[-119.48381856143568,49.033655026028384],[-119.46675655335669,49.044182453885846],[-119.44506231759975,49.03678738223755],[-119.52617070306908,49.09434935722923]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907022","name":"Okanagan-Similkameen A"}},{"type":"Feature","geometry":{"coordinates":[[[-119.67638449086074,49.196492542709166],[-119.79157645863329,49.19599341297523],[-119.78248278268687,49.113390737424965],[-119.76088802195608,49.113418711060476],[-119.71704267511528,49.1354010659591],[-119.71462084811577,49.096958596301995],[-119.74939639796605,49.10214798642979],[-119.78324684244836,49.09694645855776],[-119.94623130369921,49.000157086237486],[-119.736879691363,49.00008374846988],[-119.73495187572705,49.059103175889334],[-119.70851163891221,49.049152856627686],[-119.70300448273004,49.0000499391504],[-119.62612343561455,49.00008080953583],[-119.62656114868332,49.073469944833626],[-119.66962147231902,49.120932794086585],[-119.67638449086074,49.196492542709166]],[[-119.73768253890036,49.18437134069283],[-119.7264591346844,49.19289802657545],[-119.72638006097898,49.17475556402274],[-119.7377038879337,49.17499562660133],[-119.73768253890036,49.18437134069283]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907026","name":"Okanagan-Similkameen B"}},{"type":"Feature","geometry":{"coordinates":[[[-119.74939639796605,49.10214798642979],[-119.71462084811577,49.096958596301995],[-119.71704267511528,49.1354010659591],[-119.76088802195608,49.113418711060476],[-119.74939639796605,49.10214798642979]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Lower Similkameen 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907801","name":"Lower Similkameen 2"}},{"type":"Feature","geometry":{"coordinates":[[[-119.4488465711462,49.123791674868244],[-119.44882186139887,49.24075736485338],[-119.5373018801465,49.24085739514675],[-119.53718898596965,49.204577361497044],[-119.53703632089224,49.175944872537556],[-119.55941689863803,49.15369952371795],[-119.52617070306908,49.09434935722923],[-119.44506231759975,49.03678738223755],[-119.43701124095865,49.0363243394816],[-119.44911459206901,49.06667307953237],[-119.4488465711462,49.123791674868244]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Osoyoos 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907802","name":"Osoyoos 1"}},{"type":"Feature","geometry":{"coordinates":[[[-119.73768253890036,49.18437134069283],[-119.7377038879337,49.17499562660133],[-119.72638006097898,49.17475556402274],[-119.7264591346844,49.19289802657545],[-119.73768253890036,49.18437134069283]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Blind Creek 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907806","name":"Blind Creek 6"}},{"type":"Feature","geometry":{"coordinates":[[[-119.53718898596965,49.204577361497044],[-119.56650139903726,49.178796012592606],[-119.53703632089224,49.175944872537556],[-119.53718898596965,49.204577361497044]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Oliver","type":"Town","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907014","name":"Oliver"}},{"type":"Feature","geometry":{"coordinates":[[[-119.54151459770443,49.273699920907646],[-119.6704488931085,49.29946142711431],[-119.67638449086074,49.196492542709166],[-119.66962147231902,49.120932794086585],[-119.60410968963059,49.11441949337774],[-119.60403048912073,49.09463048686224],[-119.52617070306908,49.09434935722923],[-119.55941689863803,49.15369952371795],[-119.53703632089224,49.175944872537556],[-119.56650139903726,49.178796012592606],[-119.53718898596965,49.204577361497044],[-119.5373018801465,49.24085739514675],[-119.44882186139887,49.24075736485338],[-119.4488465711462,49.123791674868244],[-119.39710813385464,49.12927744535432],[-119.32658039874923,49.11384922317789],[-119.25597402888108,49.16188682125208],[-119.19593948484435,49.21598963657711],[-119.23738440016001,49.23894486266366],[-119.21335095279103,49.28569992371506],[-119.17737997365644,49.312289168199825],[-119.20689783650644,49.34403266493369],[-119.23787860704427,49.25582415599426],[-119.30134393247596,49.24866606874675],[-119.34822631845387,49.256358256391145],[-119.42285732179839,49.25322356735122],[-119.54151459770443,49.273699920907646]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907028","name":"Okanagan-Similkameen C"}},{"type":"Feature","geometry":{"coordinates":[[[-119.82330063422951,49.19856000331147],[-119.81896038985222,49.21107713368917],[-119.83703229944423,49.211076455108696],[-119.83714245873307,49.20079034834974],[-119.82330063422951,49.19856000331147]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Keremeos","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907009","name":"Keremeos"}},{"type":"Feature","geometry":{"coordinates":[[[-119.91293984344063,49.2119570654327],[-119.90736963399713,49.223001789486965],[-119.93203298754023,49.22302048600702],[-119.92298964514033,49.213069362097],[-119.91293984344063,49.2119570654327]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Alexis 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907808","name":"Alexis 9"}},{"type":"Feature","geometry":{"coordinates":[[[-120.09922463326423,49.64614119594459],[-120.16508196879911,49.62736645596684],[-120.16015715396621,49.559552421203136],[-120.19721380010374,49.52091874675503],[-120.17333663323015,49.487876747842876],[-120.16632791798567,49.43817347032366],[-120.22664873643899,49.40599420304021],[-120.22650092164335,49.40042832922806],[-120.22682252580807,49.34079342095066],[-120.27538124383737,49.30384927066648],[-120.26794947076935,49.25646674223725],[-120.2959398709728,49.23497092186202],[-120.33840538627454,49.24673501451801],[-120.41173236701223,49.23748066712466],[-120.41683975495837,49.12735001782826],[-120.45573588514195,49.08399943484213],[-120.45655032555133,49.050927976865886],[-120.40254729343643,49.00007688300237],[-119.94623130369921,49.000157086237486],[-119.78324684244836,49.09694645855776],[-119.74939639796605,49.10214798642979],[-119.76088802195608,49.113418711060476],[-119.78248278268687,49.113390737424965],[-119.79157645863329,49.19599341297523],[-119.67638449086074,49.196492542709166],[-119.6704488931085,49.29946142711431],[-119.79747661144006,49.30126314326932],[-119.89115002200302,49.314358257700654],[-119.90013561542695,49.4717042532444],[-119.90809104805327,49.500089718517934],[-119.94961917247294,49.52888517388224],[-120.0010777224985,49.50582775860749],[-120.03328156805509,49.52151541118415],[-120.02221537169817,49.55263056531254],[-120.04845731800745,49.572971580515315],[-120.03160981115855,49.594839700745645],[-120.09922463326423,49.64614119594459]],[[-119.91293984344063,49.2119570654327],[-119.92298964514033,49.213069362097],[-119.93203298754023,49.22302048600702],[-119.90736963399713,49.223001789486965],[-119.91293984344063,49.2119570654327]],[[-119.82330063422951,49.19856000331147],[-119.83714245873307,49.20079034834974],[-119.83703229944423,49.211076455108696],[-119.81896038985222,49.21107713368917],[-119.82330063422951,49.19856000331147]],[[-120.04400647433184,49.302463620727245],[-120.04549287006925,49.31786859041769],[-120.12270608082407,49.36629705639771],[-120.07800491667378,49.38948951797388],[-120.07892647816335,49.34606769682795],[-120.03942879718174,49.34789176135246],[-120.03164607844681,49.30268060586224],[-120.03532243194753,49.27488724557365],[-120.00161908121343,49.23833770233742],[-119.9635243102015,49.22536036586082],[-119.97894182407582,49.199163394153885],[-120.02271291484385,49.199375527351336],[-120.02224431880957,49.244557763215084],[-120.08908995366427,49.24491140574233],[-120.08935115062663,49.27313612552157],[-120.04380874733181,49.27355338857972],[-120.04400647433184,49.302463620727245]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen G","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907053","name":"Okanagan-Similkameen G"}},{"type":"Feature","geometry":{"coordinates":[[[-120.04400647433184,49.302463620727245],[-120.04380874733181,49.27355338857972],[-120.08935115062663,49.27313612552157],[-120.08908995366427,49.24491140574233],[-120.02224431880957,49.244557763215084],[-120.02271291484385,49.199375527351336],[-119.97894182407582,49.199163394153885],[-119.9635243102015,49.22536036586082],[-120.00161908121343,49.23833770233742],[-120.03532243194753,49.27488724557365],[-120.03164607844681,49.30268060586224],[-120.04400647433184,49.302463620727245]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Ashnola 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907809","name":"Ashnola 10"}},{"type":"Feature","geometry":{"coordinates":[[[-120.53840194276044,49.38139178719475],[-120.56817024704655,49.33640456246346],[-120.54403257822598,49.288451350947774],[-120.49997194189841,49.28629286197273],[-120.49460348817799,49.3774056048764],[-120.53840194276044,49.38139178719475]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Princeton","type":"Town","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907024","name":"Princeton"}},{"type":"Feature","geometry":{"coordinates":[[[-120.03164607844681,49.30268060586224],[-120.03942879718174,49.34789176135246],[-120.07892647816335,49.34606769682795],[-120.07800491667378,49.38948951797388],[-120.12270608082407,49.36629705639771],[-120.04549287006925,49.31786859041769],[-120.04400647433184,49.302463620727245],[-120.03164607844681,49.30268060586224]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Chuchuwayha 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907807","name":"Chuchuwayha 2"}},{"type":"Feature","geometry":{"coordinates":[[[-119.73894673611254,49.471470611955276],[-119.90013561542695,49.4717042532444],[-119.89115002200302,49.314358257700654],[-119.79747661144006,49.30126314326932],[-119.6704488931085,49.29946142711431],[-119.54151459770443,49.273699920907646],[-119.54742329546714,49.30501335707317],[-119.5856960496479,49.334085868487634],[-119.57426651605886,49.35810638042766],[-119.57789778514238,49.42363073514136],[-119.59744797511824,49.45242855273945],[-119.60552165752999,49.38097864451603],[-119.6797914017614,49.38072790830908],[-119.7207147278594,49.39524691672112],[-119.73952359798311,49.431750579614686],[-119.73894673611254,49.471470611955276]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen I","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907048","name":"Okanagan-Similkameen I"}},{"type":"Feature","geometry":{"coordinates":[[[-119.30989495005215,49.505040201414225],[-119.53044456368448,49.504103986030735],[-119.57789778514238,49.42363073514136],[-119.57426651605886,49.35810638042766],[-119.5856960496479,49.334085868487634],[-119.54742329546714,49.30501335707317],[-119.54151459770443,49.273699920907646],[-119.42285732179839,49.25322356735122],[-119.34822631845387,49.256358256391145],[-119.30134393247596,49.24866606874675],[-119.23787860704427,49.25582415599426],[-119.20689783650644,49.34403266493369],[-119.2604370431979,49.3503144724461],[-119.2620687059423,49.38227487174039],[-119.30035751782964,49.385707472235936],[-119.30079731603458,49.50364479639543],[-119.30989495005215,49.505040201414225]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907047","name":"Okanagan-Similkameen D"}},{"type":"Feature","geometry":{"coordinates":[[[-120.22650092164335,49.40042832922806],[-120.22664873643899,49.40599420304021],[-120.23167217078705,49.406153841548715],[-120.23159599361334,49.40143712590845],[-120.22650092164335,49.40042832922806]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Lulu 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907850","name":"Lulu 5"}},{"type":"Feature","geometry":{"coordinates":[[[-120.57172851662234,49.77286844495655],[-120.60433288796683,49.74957950682011],[-120.75988518888956,49.74972609316595],[-120.77179116853846,49.7633910958258],[-120.948452298514,49.7605805529817],[-120.96240832746012,49.67347949598367],[-120.95950302271704,49.642209131120424],[-121.00205632480316,49.59704497533077],[-121.03788250372105,49.58691195321396],[-121.04771034450359,49.53187218572555],[-121.08187464222203,49.51416761960043],[-121.05377626403921,49.471228500840404],[-121.09926682834454,49.44108774085686],[-121.09804393142029,49.35390947218675],[-121.04524265512967,49.33073445419786],[-121.0014173551285,49.278242388862104],[-120.93612029124154,49.27597719959101],[-120.90578885427527,49.30567529731264],[-120.82397134237581,49.29497116390638],[-120.82076573616285,49.247323188344076],[-120.84738436692352,49.21970600805052],[-120.89127772996144,49.20617473969421],[-120.90318383254578,49.17513873580312],[-120.85798331803531,49.133953624014005],[-120.96311148240413,49.09483565753421],[-120.89507815678598,49.07816044404138],[-120.82569932186053,49.02546256743129],[-120.84840827446449,49.000077145903774],[-120.40254729343643,49.00007688300237],[-120.45655032555133,49.050927976865886],[-120.45573588514195,49.08399943484213],[-120.41683975495837,49.12735001782826],[-120.41173236701223,49.23748066712466],[-120.33840538627454,49.24673501451801],[-120.2959398709728,49.23497092186202],[-120.26794947076935,49.25646674223725],[-120.27538124383737,49.30384927066648],[-120.22682252580807,49.34079342095066],[-120.22650092164335,49.40042832922806],[-120.23159599361334,49.40143712590845],[-120.23167217078705,49.406153841548715],[-120.22664873643899,49.40599420304021],[-120.16632791798567,49.43817347032366],[-120.17333663323015,49.487876747842876],[-120.19721380010374,49.52091874675503],[-120.16015715396621,49.559552421203136],[-120.16508196879911,49.62736645596684],[-120.09922463326423,49.64614119594459],[-120.03024758549095,49.670248229566184],[-119.97519402463897,49.66763259391134],[-119.97953153291452,49.76625090091305],[-119.96700729744315,49.8122089599406],[-119.99164524938509,49.83388413910292],[-120.05479757827862,49.85570622338706],[-120.1301715929205,49.84582654328975],[-120.16113472660605,49.86525663817543],[-120.21338723793606,49.86052756302215],[-120.2287105180035,49.89592228754961],[-120.26842684068745,49.88794410064804],[-120.33005879886788,49.912011607787186],[-120.39014537155596,49.87389074335891],[-120.388637369925,49.849111377202945],[-120.48571062269043,49.77223134414028],[-120.57172851662234,49.77286844495655]],[[-120.53840194276044,49.38139178719475],[-120.49460348817799,49.3774056048764],[-120.49997194189841,49.28629286197273],[-120.54403257822598,49.288451350947774],[-120.56817024704655,49.33640456246346],[-120.53840194276044,49.38139178719475]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen H","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907055","name":"Okanagan-Similkameen H"}},{"type":"Feature","geometry":{"coordinates":[[[-119.66414827652017,49.56174714332863],[-119.71114234349447,49.550168365983374],[-119.7229650215377,49.58048696233023],[-119.76344708561317,49.59850636309394],[-119.7773172823857,49.51491202035272],[-119.73894673611254,49.471470611955276],[-119.73952359798311,49.431750579614686],[-119.7207147278594,49.39524691672112],[-119.6797914017614,49.38072790830908],[-119.60552165752999,49.38097864451603],[-119.59744797511824,49.45242855273945],[-119.61366602324797,49.501305169972014],[-119.61822124347125,49.53098856648749],[-119.66414827652017,49.56174714332863]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Penticton 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907803","name":"Penticton 1"}},{"type":"Feature","geometry":{"coordinates":[[[-119.53044456368448,49.504103986030735],[-119.54751536056965,49.555604585861836],[-119.61038017247704,49.50544709629961],[-119.61366602324797,49.501305169972014],[-119.59744797511824,49.45242855273945],[-119.57789778514238,49.42363073514136],[-119.53044456368448,49.504103986030735]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Penticton","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907041","name":"Penticton"}},{"type":"Feature","geometry":{"coordinates":[[[[-119.61038017247704,49.50544709629961],[-119.59612488106907,49.52987259969962],[-119.60350331032224,49.57365439676235],[-119.6425080901999,49.6334476152736],[-119.72866460602638,49.712062957493075],[-119.77174190336883,49.712442908234564],[-119.76117632019043,49.6794418035832],[-119.72105645075244,49.678876454118125],[-119.65597436197413,49.62168518434804],[-119.64315921107108,49.58689200490011],[-119.66414827652017,49.56174714332863],[-119.61822124347125,49.53098856648749],[-119.61366602324797,49.501305169972014],[-119.61038017247704,49.50544709629961]]],[[[-119.79408026479975,49.712410910990656],[-119.83590596512109,49.712625812231764],[-119.83699338047178,49.76565883206087],[-119.97953153291452,49.76625090091305],[-119.97519402463897,49.66763259391134],[-120.03024758549095,49.670248229566184],[-120.09922463326423,49.64614119594459],[-120.03160981115855,49.594839700745645],[-120.04845731800745,49.572971580515315],[-120.02221537169817,49.55263056531254],[-120.03328156805509,49.52151541118415],[-120.0010777224985,49.50582775860749],[-119.94961917247294,49.52888517388224],[-119.90809104805327,49.500089718517934],[-119.90013561542695,49.4717042532444],[-119.73894673611254,49.471470611955276],[-119.7773172823857,49.51491202035272],[-119.76344708561317,49.59850636309394],[-119.71625250687586,49.61609272656962],[-119.71454057089322,49.63850371975165],[-119.78902890310442,49.68317924974147],[-119.79408026479975,49.712410910990656]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907051","name":"Okanagan-Similkameen F"}},{"type":"Feature","geometry":{"coordinates":[[[-119.79408026479975,49.712410910990656],[-119.78902890310442,49.68317924974147],[-119.71454057089322,49.63850371975165],[-119.71625250687586,49.61609272656962],[-119.76344708561317,49.59850636309394],[-119.7229650215377,49.58048696233023],[-119.71114234349447,49.550168365983374],[-119.66414827652017,49.56174714332863],[-119.64315921107108,49.58689200490011],[-119.65597436197413,49.62168518434804],[-119.72105645075244,49.678876454118125],[-119.76117632019043,49.6794418035832],[-119.77174190336883,49.712442908234564],[-119.79408026479975,49.712410910990656]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Summerland","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907035","name":"Summerland"}},{"type":"Feature","geometry":{"coordinates":[[[-119.37590573758658,49.67903282660881],[-119.42703348079017,49.675387991723134],[-119.45876379597655,49.72547007854944],[-119.48589747745856,49.74639297461415],[-119.55662402031756,49.760186025195004],[-119.69708950553331,49.76073836522758],[-119.69745585995102,49.77516161850759],[-119.74157461057845,49.72482060868914],[-119.72866460602638,49.712062957493075],[-119.6425080901999,49.6334476152736],[-119.60350331032224,49.57365439676235],[-119.59612488106907,49.52987259969962],[-119.61038017247704,49.50544709629961],[-119.54751536056965,49.555604585861836],[-119.53044456368448,49.504103986030735],[-119.30989495005215,49.505040201414225],[-119.35813095249276,49.61622047855691],[-119.35035563852355,49.63608688055201],[-119.37590573758658,49.67903282660881]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Okanagan-Similkameen","census_subdivision":"Okanagan-Similkameen E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5907","census_subdivision_code":"5907049","name":"Okanagan-Similkameen E"}},{"type":"Feature","geometry":{"coordinates":[[[-120.85256444527498,55.20185815649697],[-121.1552373901595,55.2011031121803],[-121.15109534868006,55.2427089277225],[-121.49252016547537,55.24561673389121],[-121.49756219711844,55.18508554951503],[-121.5997512313142,55.17676951987783],[-121.62781175901597,55.13623698462487],[-121.52606609386805,55.13470235215181],[-121.52176953263242,55.0728539247637],[-121.23093413860923,54.896586704477336],[-121.0794028851674,54.80194256002878],[-120.8781417113528,54.85926725918779],[-120.81907512511202,55.180251551898024],[-120.85256444527498,55.20185815649697]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Tumbler Ridge","type":"District municipality","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955003","name":"Tumbler Ridge"}},{"type":"Feature","geometry":{"coordinates":[[[-120.70123731436824,56.14172829701746],[-120.75040822074831,56.13140989599175],[-120.81775689227143,56.14809127478315],[-120.82194035505435,56.07660750636462],[-120.81531215657682,55.987157958179985],[-120.66244047474486,55.98608707646329],[-120.66163506832974,55.810877483162734],[-120.6356147479187,55.81110324533514],[-120.63451463154044,55.63534229324513],[-120.64281160265676,55.564404159856196],[-120.66688861452437,55.56331749511446],[-120.73766401528701,55.520659199553954],[-120.7891635023774,55.50464551627766],[-120.82749745288443,55.45558274336761],[-120.80284425106028,55.37739064350408],[-120.90482050558192,55.33521120253524],[-120.8916315229496,55.28279979339139],[-120.8435593764023,55.261005437532376],[-120.85256444527498,55.20185815649697],[-120.81907512511202,55.180251551898024],[-120.8781417113528,54.85926725918779],[-121.0794028851674,54.80194256002878],[-121.23093413860923,54.896586704477336],[-121.25088298773898,54.88984400006415],[-121.21417269546339,54.80354829808495],[-121.18835281350934,54.78130069996156],[-121.16721778064837,54.715200292053744],[-121.09683192052019,54.67811959988626],[-121.01746838573506,54.60871219165032],[-121.0602656161615,54.524237104820635],[-121.05737349428668,54.48914416774292],[-121.11945721543646,54.47496100199051],[-121.0741632486178,54.45119249742323],[-121.00468414786356,54.46369689376641],[-120.93417836601908,54.45197083625612],[-120.87684579298963,54.46516756688129],[-120.87517834579693,54.48894328095812],[-120.82507867380457,54.49371230846317],[-120.78989519697313,54.46874414915716],[-120.80207054665858,54.42798952011748],[-120.7759607921544,54.39713739916346],[-120.73219988544552,54.40861133167901],[-120.68897163703238,54.39181388435751],[-120.65962667730243,54.35502369422085],[-120.71338279311838,54.30516431815179],[-120.67664059821597,54.28229651024055],[-120.60631240465877,54.289686629328],[-120.5662528206723,54.218821283799144],[-120.58146975282438,54.17383642705222],[-120.53180825719683,54.136016892849014],[-120.47922711460116,54.13508028197595],[-120.44024543775105,54.1184191978145],[-120.3932197831698,54.121754974538526],[-120.3289981199751,54.10436139573187],[-120.16729661590642,54.12152147795512],[-120.14357943179088,54.064601060483334],[-120.19654626641233,54.02980975934424],[-120.22962825077327,54.04154911476793],[-120.26290373239243,53.99962947065557],[-120.26000412146344,53.97662783203441],[-120.2095826300535,53.97282096202608],[-120.19181837243788,53.94000282229551],[-120.15551482060394,53.9381634709043],[-120.09681674025302,53.98457154295584],[-120.0639123921856,53.96431109745162],[-120.05282219380109,53.883247050947624],[-120.01742562559552,53.86419604213508],[-120.04979003740533,53.82900733332956],[-120.03708743688581,53.80465020285502],[-119.99999997842916,53.80621976296581],[-120.00000000311599,53.93741038431441],[-119.99999998284919,54.26886872872125],[-119.9999999855039,54.73697509206525],[-120.00031396288122,55.119198403838475],[-120.00152850397734,55.49028102096945],[-119.99994596937307,55.77838166243072],[-119.99999999001159,56.14553507320785],[-120.10490855569255,56.10118154065452],[-120.1707667872076,56.090862693574664],[-120.23238720719566,56.10477718636806],[-120.3769997710696,56.09718329524315],[-120.49140257758995,56.118593495764365],[-120.53332630724046,56.115143998686044],[-120.66053361561515,56.13633199637533],[-120.70123731436824,56.14172829701746]],[[-120.11171092880812,55.72289835991189],[-120.1370528321551,55.711192694056315],[-120.14665440259118,55.72315239312992],[-120.11171092880812,55.72289835991189]],[[-120.25054518077094,55.781293862433756],[-120.21182697564899,55.77388368284951],[-120.17265718004126,55.73032015258909],[-120.25045434705801,55.73032241107612],[-120.27635956137269,55.7667166047014],[-120.25054518077094,55.781293862433756]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Peace River D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955021","name":"Peace River D"}},{"type":"Feature","geometry":{"coordinates":[[[-122.30446550044584,56.08310554115748],[-122.43789236890538,56.11275291075853],[-122.55555446842686,56.14484601727006],[-122.62861564816849,56.131105437573],[-122.70014605676688,56.0982958274174],[-122.78098455937368,56.08932277934869],[-122.90472089654169,56.09385170262212],[-123.00553743551761,56.082572207797284],[-123.06238114490165,56.061136968651915],[-123.07684783528454,56.03193559418485],[-123.12992432490059,55.99427040103439],[-123.20216009228632,55.981422532784194],[-123.28268017234564,55.9833217332099],[-123.364389530984,56.015291069350305],[-123.76408744580124,56.05003268555425],[-123.82714882112077,55.993409103175864],[-123.81528805427031,55.98018934143764],[-123.75153069671488,55.933894798966556],[-123.68294008252386,55.9392121943001],[-123.68428631753243,55.91367631896618],[-123.57619760527014,55.87053534853938],[-123.52366038326973,55.86316735259821],[-123.44235086096059,55.88247427640616],[-123.36772601825399,55.86107783271913],[-123.38287116200729,55.839487113485724],[-123.33925837176163,55.81989651879967],[-123.30740774624954,55.77609636870732],[-123.34139884802693,55.7312602193071],[-123.26082907132547,55.697108144679476],[-123.14376974812787,55.731686314825744],[-123.1203790289018,55.688791318828955],[-123.14293553304297,55.64044097117749],[-123.07816130498128,55.62549765374608],[-123.07180901272807,55.58266663953451],[-123.01362927671134,55.55974558182379],[-122.94804104369952,55.580918733928065],[-122.93291946991692,55.521784503989785],[-123.00571977081938,55.44607808650139],[-122.97453482100039,55.398084754909135],[-122.87440953942853,55.419017120315814],[-122.84604239626857,55.39891552184022],[-122.74270805923813,55.36554163440642],[-122.71989745171761,55.34397838746855],[-122.65494477986329,55.342431514740184],[-122.63008141600362,55.393950994468014],[-122.57854906132533,55.41258048628325],[-122.48475707462269,55.34875542924677],[-122.42922552724794,55.33076624679159],[-122.38596669844812,55.335308702370746],[-122.29662802898419,55.25108941265627],[-122.23851224905847,55.22281366103058],[-122.27388341594587,55.18111090183248],[-122.25124409711493,55.161686328397444],[-122.16113841026609,55.134145292372395],[-122.15940129365197,55.10546587373374],[-122.10020972807517,55.10515379197715],[-122.03513790550274,55.065298012659014],[-122.0087849239772,55.033753152901696],[-121.93489368172264,55.00360760335786],[-121.90430512089176,54.96622430034797],[-121.84484607304952,54.933324908181746],[-121.86824636885827,54.904594987358436],[-121.86509650366983,54.86913854925939],[-121.80258588174814,54.85882910356635],[-121.69522376296707,54.878820321838674],[-121.64309348872787,54.84527115314374],[-121.55381898827518,54.82037567032097],[-121.52205716987463,54.79819275902016],[-121.52711742485971,54.77145322524562],[-121.47392948093112,54.723613445185364],[-121.51868699028823,54.684965167233166],[-121.52350697424134,54.6519852483602],[-121.48187698847333,54.60881433447648],[-121.39737344796744,54.568963189416756],[-121.3962628500456,54.536261340179095],[-121.3554547834239,54.535740044172435],[-121.3102198447924,54.51480391084444],[-121.27207452238889,54.51723735180407],[-121.24816519574712,54.54656786917655],[-121.14502215056723,54.55275945486304],[-121.11945721543646,54.47496100199051],[-121.05737349428668,54.48914416774292],[-121.0602656161615,54.524237104820635],[-121.01746838573506,54.60871219165032],[-121.09683192052019,54.67811959988626],[-121.16721778064837,54.715200292053744],[-121.18835281350934,54.78130069996156],[-121.21417269546339,54.80354829808495],[-121.25088298773898,54.88984400006415],[-121.23093413860923,54.896586704477336],[-121.52176953263242,55.0728539247637],[-121.52606609386805,55.13470235215181],[-121.62781175901597,55.13623698462487],[-121.5997512313142,55.17676951987783],[-121.49756219711844,55.18508554951503],[-121.49252016547537,55.24561673389121],[-121.15109534868006,55.2427089277225],[-121.1552373901595,55.2011031121803],[-120.85256444527498,55.20185815649697],[-120.8435593764023,55.261005437532376],[-120.8916315229496,55.28279979339139],[-120.90482050558192,55.33521120253524],[-120.80284425106028,55.37739064350408],[-120.82749745288443,55.45558274336761],[-120.7891635023774,55.50464551627766],[-120.73766401528701,55.520659199553954],[-120.66688861452437,55.56331749511446],[-120.64281160265676,55.564404159856196],[-120.63451463154044,55.63534229324513],[-120.6356147479187,55.81110324533514],[-120.66163506832974,55.810877483162734],[-120.66244047474486,55.98608707646329],[-120.81531215657682,55.987157958179985],[-120.82194035505435,56.07660750636462],[-120.81775689227143,56.14809127478315],[-120.75040822074831,56.13140989599175],[-120.70123731436824,56.14172829701746],[-120.73320563020897,56.15582717684105],[-120.80744898885901,56.19843320320334],[-120.9054625218776,56.19183910087494],[-120.9894580955068,56.231276913494455],[-121.09165391785793,56.220203692365615],[-121.16260893832099,56.24820170809358],[-121.20691388763235,56.26743329490566],[-121.26533432244236,56.24242709639311],[-121.40848738837474,56.22778899180855],[-121.43446139148605,56.21080959162022],[-121.54961097441982,56.17746889662591],[-121.67425667106286,56.11987099293223],[-121.75629517248747,56.1138745410957],[-121.75663078947495,55.89838707383886],[-122.03784275240764,55.899264414511734],[-122.0368929662467,55.88584116739218],[-122.23607148535362,55.88998151943586],[-122.23159268833751,56.00562406340616],[-122.28539431507723,56.00172337304375],[-122.30446550044584,56.08310554115748]],[[-121.85801676752257,55.83223233109893],[-121.85114352997749,55.80227273869408],[-121.89014532124341,55.782322984447354],[-121.94180154958488,55.78134526304039],[-121.94330640380346,55.81093448593213],[-121.90420724019921,55.83236761414206],[-121.85801676752257,55.83223233109893]],[[-121.65260824142152,55.88341808356658],[-121.60057105875575,55.86885479598727],[-121.60058391968897,55.81113080603769],[-121.6788448021057,55.83989500490652],[-121.65260824142152,55.88341808356658]],[[-121.6897831992084,55.751667706583596],[-121.6036993615658,55.75015519434091],[-121.56489246662291,55.737113743012614],[-121.58570292260713,55.688501589985876],[-121.66508713887534,55.700393202002395],[-121.6897831992084,55.751667706583596]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Peace River E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955023","name":"Peace River E"}},{"type":"Feature","geometry":{"coordinates":[[[-120.11171092880812,55.72289835991189],[-120.14665440259118,55.72315239312992],[-120.1370528321551,55.711192694056315],[-120.11171092880812,55.72289835991189]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Pouce Coupe","type":"Village","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955005","name":"Pouce Coupe"}},{"type":"Feature","geometry":{"coordinates":[[[-121.6897831992084,55.751667706583596],[-121.66508713887534,55.700393202002395],[-121.58570292260713,55.688501589985876],[-121.56489246662291,55.737113743012614],[-121.6036993615658,55.75015519434091],[-121.6897831992084,55.751667706583596]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Chetwynd","type":"District municipality","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955010","name":"Chetwynd"}},{"type":"Feature","geometry":{"coordinates":[[[-120.25054518077094,55.781293862433756],[-120.27635956137269,55.7667166047014],[-120.25045434705801,55.73032241107612],[-120.17265718004126,55.73032015258909],[-120.21182697564899,55.77388368284951],[-120.25054518077094,55.781293862433756]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Dawson Creek","type":"City","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955014","name":"Dawson Creek"}},{"type":"Feature","geometry":{"coordinates":[[[-121.85801676752257,55.83223233109893],[-121.90420724019921,55.83236761414206],[-121.94330640380346,55.81093448593213],[-121.94180154958488,55.78134526304039],[-121.89014532124341,55.782322984447354],[-121.85114352997749,55.80227273869408],[-121.85801676752257,55.83223233109893]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"West Moberly Lake 168A","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955802","name":"West Moberly Lake 168A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.65260824142152,55.88341808356658],[-121.6788448021057,55.83989500490652],[-121.60058391968897,55.81113080603769],[-121.60057105875575,55.86885479598727],[-121.65260824142152,55.88341808356658]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"East Moberly Lake 169","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955801","name":"East Moberly Lake 169"}},{"type":"Feature","geometry":{"coordinates":[[[-121.75629517248747,56.1138745410957],[-121.75793044673817,56.159406783290315],[-121.95821292058994,56.15889391478912],[-121.95922813878538,56.14144983158682],[-122.15634271982297,56.144650387316844],[-122.23340530779744,56.13979670565076],[-122.28873113642314,56.11404299327813],[-122.30446550044584,56.08310554115748],[-122.28539431507723,56.00172337304375],[-122.23159268833751,56.00562406340616],[-122.23607148535362,55.88998151943586],[-122.0368929662467,55.88584116739218],[-122.03784275240764,55.899264414511734],[-121.75663078947495,55.89838707383886],[-121.75629517248747,56.1138745410957]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Hudson's Hope","type":"District municipality","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955025","name":"Hudson's Hope"}},{"type":"Feature","geometry":{"coordinates":[[[-120.66053361561515,56.13633199637533],[-120.63667018951537,56.170910710269375],[-120.71576571668469,56.17392619331285],[-120.73320563020897,56.15582717684105],[-120.70123731436824,56.14172829701746],[-120.66053361561515,56.13633199637533]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Taylor","type":"District municipality","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955030","name":"Taylor"}},{"type":"Feature","geometry":{"coordinates":[[[-120.3769997710696,56.09718329524315],[-120.3964675799831,56.135010301356644],[-120.47790451768066,56.21814859168623],[-120.57644289846309,56.25885529415334],[-120.66952792676378,56.26567730472991],[-120.74048660424783,56.28609899719242],[-120.70653962177681,56.33353073937067],[-121.16422964596813,56.33387411690581],[-121.16260893832099,56.24820170809358],[-121.09165391785793,56.220203692365615],[-120.9894580955068,56.231276913494455],[-120.9054625218776,56.19183910087494],[-120.80744898885901,56.19843320320334],[-120.73320563020897,56.15582717684105],[-120.71576571668469,56.17392619331285],[-120.63667018951537,56.170910710269375],[-120.66053361561515,56.13633199637533],[-120.53332630724046,56.115143998686044],[-120.49140257758995,56.118593495764365],[-120.3769997710696,56.09718329524315]],[[-120.86537169497488,56.26007122538481],[-120.80796151719706,56.27992709775909],[-120.78540195130596,56.21780851352062],[-120.88718229959917,56.23904201467057],[-120.86537169497488,56.26007122538481]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Peace River C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955042","name":"Peace River C"}},{"type":"Feature","geometry":{"coordinates":[[[-120.86537169497488,56.26007122538481],[-120.88718229959917,56.23904201467057],[-120.78540195130596,56.21780851352062],[-120.80796151719706,56.27992709775909],[-120.86537169497488,56.26007122538481]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Fort St. John","type":"City","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955034","name":"Fort St. John"}},{"type":"Feature","geometry":{"coordinates":[[[-125.4458082779537,56.378715461463955],[-125.39427303729596,56.350676972001],[-125.38883813229529,56.35641836528403],[-125.40961576996507,56.37320797622618],[-125.4458082779537,56.378715461463955]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Mesilinka 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955850","name":"Mesilinka 7"}},{"type":"Feature","geometry":{"coordinates":[[[-121.90158137236413,56.52133749374173],[-121.94790118899493,56.501535463484466],[-121.83989591214888,56.459725865771624],[-121.77960622526764,56.42453778435387],[-121.77775819459801,56.47217629975447],[-121.83311800118094,56.487177825041954],[-121.90079139708408,56.487841979906236],[-121.90158137236413,56.52133749374173]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Halfway River 168","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955808","name":"Halfway River 168"}},{"type":"Feature","geometry":{"coordinates":[[[-120.47839986564293,56.603691055524884],[-120.51268995234275,56.59490772422389],[-120.51455779704085,56.55887759706836],[-120.47152440817112,56.551364547812504],[-120.48449983286419,56.57537201450377],[-120.47839986564293,56.603691055524884]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Doig River 206","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955804","name":"Doig River 206"}},{"type":"Feature","geometry":{"coordinates":[[[-121.05004210911403,56.727043199856425],[-121.1303291485734,56.7051441676365],[-121.11224878260016,56.68915197129196],[-121.0469231314351,56.70336959887409],[-121.05004210911403,56.727043199856425]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Blueberry River 205","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955803","name":"Blueberry River 205"}},{"type":"Feature","geometry":{"coordinates":[[[-124.92859770905602,56.78689144302397],[-124.88011644467512,56.78873587073432],[-124.90831453945297,56.811940917651796],[-124.92859770905602,56.78689144302397]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Ingenika Point","type":"Indian settlement","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955812","name":"Ingenika Point"}},{"type":"Feature","geometry":{"coordinates":[[[-124.97516266531099,56.923430883760425],[-124.99337333755172,56.89231399347436],[-124.97174044427939,56.878363681353996],[-124.95037251887908,56.91084138085572],[-124.97516266531099,56.923430883760425]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Finlay River 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955840","name":"Finlay River 6"}},{"type":"Feature","geometry":{"coordinates":[[[-124.94836471156168,57.99987025305091],[-124.98234871716552,57.98142477376542],[-125.09470079818068,58.01910197995903],[-125.2039071216588,58.022356291798495],[-125.25083079397781,58.00541789196301],[-125.38658025491164,57.98871411508348],[-125.45103236313152,57.971562700550464],[-125.48897578289302,57.941191504759594],[-125.59382799487828,57.91425245504594],[-125.65344340332025,57.92222100357709],[-125.69960128177408,57.86827013678149],[-125.74735831650445,57.8655487267122],[-125.78964937730393,57.92259719534838],[-125.7973561603639,57.966046466795326],[-125.83745973242829,57.97939419097559],[-125.91639514807451,57.98068269470776],[-125.97473640625579,57.96703257670572],[-126.04409116648816,57.96693863093876],[-126.07794258643194,57.91366828205003],[-126.14009412366404,57.92236739697468],[-126.1829092620949,57.94455961672054],[-126.22874815912746,57.93374019781578],[-126.2687118124238,57.855704310239496],[-126.31593371748458,57.86191574620357],[-126.3852507944324,57.926192123964846],[-126.51803226322481,57.94094655517243],[-126.60412412325726,57.960207412452704],[-126.66290597411921,57.99082239270512],[-126.70305576113398,58.027104219171925],[-126.77301503608936,58.01106945655417],[-126.95093980402464,57.989446759869104],[-126.98002797722398,57.96122368010072],[-126.97059238666226,57.933119859484485],[-126.88795656467417,57.86731939352394],[-126.86915363009429,57.785327600558794],[-126.95909120290038,57.79708139724182],[-126.9812672375927,57.76080983050723],[-126.91819229356234,57.698720763983594],[-126.85251346213386,57.68816644751691],[-126.83666198788384,57.66821923454067],[-126.87013022968404,57.64011713084417],[-126.78429763337924,57.576054358877876],[-126.79613810572351,57.565860741075205],[-126.98797135294814,57.52995722227146],[-127.05704518574962,57.50727249859882],[-127.0930788235751,57.528133242970156],[-127.15014627342167,57.53589891074127],[-127.14525016911797,57.57754610275056],[-127.18140489294294,57.59766067993483],[-127.27191057780878,57.603187167840986],[-127.34188682545265,57.54904730106093],[-127.32508630386808,57.482248883949126],[-127.3029031329018,57.446671942208404],[-127.37426531915764,57.418194279735445],[-127.48027220143011,57.335693040716876],[-127.49123615890278,57.30344307548504],[-127.46726998070545,57.21003140574682],[-127.52153611260925,57.17068136899169],[-127.60237561575724,57.1516457126469],[-127.6969556402724,57.14090119354798],[-127.7303493754962,57.10996591954708],[-127.73286907871747,57.019632087095566],[-127.67709542173283,56.9767776621279],[-127.56117430689231,56.977174579115356],[-127.54478789812437,56.931354699418215],[-127.60380666995502,56.88877957465501],[-127.56399081974301,56.86165542258177],[-127.60335234314124,56.833985183954745],[-127.52331490084094,56.773049565021815],[-127.53273830708572,56.74067010539877],[-127.41585663280442,56.676814717881946],[-127.36228685471946,56.689962620779625],[-127.22228546377107,56.74590304050535],[-127.12886368133778,56.62639718236888],[-127.1010753415934,56.61353576068999],[-126.99288282207378,56.63222467526293],[-126.9022749718439,56.69247664336345],[-126.81148711071684,56.68032254027607],[-126.71722302855076,56.76634251503262],[-126.67483776965257,56.77175921034285],[-126.48831323541309,56.6646942088388],[-126.41767038361738,56.654778543252704],[-126.33150951256525,56.67736953298613],[-126.23126880821559,56.64730084171763],[-126.17041023827464,56.612160548281985],[-126.14302735297828,56.57667750368188],[-126.14192543268356,56.52950095106442],[-126.19308306150405,56.48104665064231],[-126.18245635248061,56.464897347460756],[-126.10187289898445,56.42543834034634],[-126.10036232692713,56.39261806000405],[-126.19583645209973,56.350355421215035],[-126.11632286831002,56.271922216278945],[-125.98062199638194,56.245629394437934],[-125.97172873867083,56.166341184491046],[-125.95550025483509,56.14292791201176],[-125.86563951842994,56.14520393723921],[-125.73761841824033,56.19057509748566],[-125.65662760228427,56.22858523772123],[-125.65318908835462,56.169164351252995],[-125.63517965857052,56.151264129160964],[-125.57478856211846,56.168991647706655],[-125.45768812660125,56.23335394762308],[-125.40377374737645,56.25294838642072],[-125.32462936236386,56.24399149538499],[-125.24546383747587,56.250564309133864],[-125.18902778044966,56.294742849881246],[-125.11909586907309,56.30359588615635],[-125.06366117060783,56.26306861478362],[-125.04165338959716,56.20310438607496],[-124.92350692055065,56.24437289987409],[-124.83285271718228,56.223537575767374],[-124.71546395694232,56.1338002747243],[-124.6610171600011,56.11611630733481],[-124.48399810155561,56.13000291424693],[-124.4976322199731,56.06725261174548],[-124.44068574746872,55.998926234495066],[-124.4315819392136,55.95481746297988],[-124.39912690529853,55.950548524241846],[-124.37402457896972,55.8789788510207],[-124.33361620127224,55.83215662572685],[-124.35726747652389,55.78670896239254],[-124.30833268413646,55.705863720104055],[-124.26715092775511,55.68661339761396],[-124.19229073060059,55.68315440054483],[-124.12301102811315,55.63971952572078],[-124.09262898216477,55.5688139599082],[-124.05035329167046,55.5413167596998],[-123.92837814181846,55.55437952745788],[-123.97505617096249,55.60945447558561],[-123.91643917693695,55.65676960313874],[-123.84614106389664,55.68240240423588],[-123.81798465252032,55.71695681196091],[-123.76177856959715,55.74558427086553],[-123.80589264305762,55.75797342844576],[-123.81913013449623,55.79044402061452],[-123.88025256774428,55.8254546791637],[-123.93272521090086,55.909708396265444],[-123.87467401129176,55.92697663631826],[-123.85712056973794,55.97203722127153],[-123.81528805427031,55.98018934143764],[-123.82714882112077,55.993409103175864],[-123.76408744580124,56.05003268555425],[-123.364389530984,56.015291069350305],[-123.28268017234564,55.9833217332099],[-123.20216009228632,55.981422532784194],[-123.12992432490059,55.99427040103439],[-123.07684783528454,56.03193559418485],[-123.06238114490165,56.061136968651915],[-123.00553743551761,56.082572207797284],[-122.90472089654169,56.09385170262212],[-122.78098455937368,56.08932277934869],[-122.70014605676688,56.0982958274174],[-122.62861564816849,56.131105437573],[-122.55555446842686,56.14484601727006],[-122.43789236890538,56.11275291075853],[-122.30446550044584,56.08310554115748],[-122.28873113642314,56.11404299327813],[-122.23340530779744,56.13979670565076],[-122.15634271982297,56.144650387316844],[-121.95922813878538,56.14144983158682],[-121.95821292058994,56.15889391478912],[-121.75793044673817,56.159406783290315],[-121.75629517248747,56.1138745410957],[-121.67425667106286,56.11987099293223],[-121.54961097441982,56.17746889662591],[-121.43446139148605,56.21080959162022],[-121.40848738837474,56.22778899180855],[-121.26533432244236,56.24242709639311],[-121.20691388763235,56.26743329490566],[-121.16260893832099,56.24820170809358],[-121.16422964596813,56.33387411690581],[-120.70653962177681,56.33353073937067],[-120.74048660424783,56.28609899719242],[-120.66952792676378,56.26567730472991],[-120.57644289846309,56.25885529415334],[-120.47790451768066,56.21814859168623],[-120.3964675799831,56.135010301356644],[-120.3769997710696,56.09718329524315],[-120.23238720719566,56.10477718636806],[-120.1707667872076,56.090862693574664],[-120.10490855569255,56.10118154065452],[-119.99999999001159,56.14553507320785],[-119.99999999804965,56.43894538891443],[-120.0000218791129,57.00000002480468],[-120.00000001064922,57.38062883165178],[-120.00002255688672,58.00000005006396],[-120.50110986155913,57.99979102070992],[-121.27382340826563,58.001412300085384],[-121.75329355634804,57.999121155813974],[-122.25516314445281,58.00002496100031],[-123.00643787436488,57.999798201019104],[-123.50300322865236,57.99954480154474],[-124.00105266965743,57.999308329278335],[-124.50096983748892,57.99958172409965],[-124.94836471156168,57.99987025305091]],[[-125.61558529558354,57.423877484676716],[-125.65475739845938,57.42569459365332],[-125.63883027877661,57.43496140137684],[-125.61886211194863,57.43576780666784],[-125.61558529558354,57.423877484676716]],[[-125.4458082779537,56.378715461463955],[-125.40961576996507,56.37320797622618],[-125.38883813229529,56.35641836528403],[-125.39427303729596,56.350676972001],[-125.4458082779537,56.378715461463955]],[[-124.92859770905602,56.78689144302397],[-124.90831453945297,56.811940917651796],[-124.88011644467512,56.78873587073432],[-124.92859770905602,56.78689144302397]],[[-124.97516266531099,56.923430883760425],[-124.95037251887908,56.91084138085572],[-124.97174044427939,56.878363681353996],[-124.99337333755172,56.89231399347436],[-124.97516266531099,56.923430883760425]],[[-120.47839986564293,56.603691055524884],[-120.48449983286419,56.57537201450377],[-120.47152440817112,56.551364547812504],[-120.51455779704085,56.55887759706836],[-120.51268995234275,56.59490772422389],[-120.47839986564293,56.603691055524884]],[[-121.05004210911403,56.727043199856425],[-121.0469231314351,56.70336959887409],[-121.11224878260016,56.68915197129196],[-121.1303291485734,56.7051441676365],[-121.05004210911403,56.727043199856425]],[[-121.90158137236413,56.52133749374173],[-121.90079139708408,56.487841979906236],[-121.83311800118094,56.487177825041954],[-121.77775819459801,56.47217629975447],[-121.77960622526764,56.42453778435387],[-121.83989591214888,56.459725865771624],[-121.94790118899493,56.501535463484466],[-121.90158137236413,56.52133749374173]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Peace River B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955040","name":"Peace River B"}},{"type":"Feature","geometry":{"coordinates":[[[-125.61558529558354,57.423877484676716],[-125.61886211194863,57.43576780666784],[-125.63883027877661,57.43496140137684],[-125.65475739845938,57.42569459365332],[-125.61558529558354,57.423877484676716]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Northeast","regional_district_aka_census_division":"Peace River","census_subdivision":"Fort Ware 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5980","census_division_code":"5955","census_subdivision_code":"5955807","name":"Fort Ware 1"}},{"type":"Feature","geometry":{"coordinates":[[[-124.04508303532279,49.43856997570487],[-124.12155227061758,49.43883406690505],[-124.16105890842974,49.48670148745262],[-124.19543688180502,49.51013065549218],[-124.36267046217907,49.550270811843916],[-124.50063090643563,49.54868770645227],[-124.50035088132333,49.499874428996854],[-124.46536673440677,49.46977996591827],[-124.3971439588043,49.423976476865306],[-124.26313449703709,49.39077246185688],[-124.04004447082157,49.36500137760259],[-124.04508303532279,49.43856997570487]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"qathet E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927020","name":"qathet E"}},{"type":"Feature","geometry":{"coordinates":[[[-124.08564683487957,49.546322820852495],[-124.13084911212371,49.59087892977024],[-124.25404963072286,49.65973766198861],[-124.29188511813248,49.70156905372372],[-124.33320654182207,49.73009497127666],[-124.44203264367322,49.748762440965805],[-124.51388006280095,49.765807823925044],[-124.5400225254519,49.77922947713244],[-124.58084582347972,49.831947245830065],[-124.77143797467129,49.77054888341275],[-124.79951431295218,49.76753048169058],[-124.74904382304956,49.71026205213603],[-124.69466622933031,49.66599558793341],[-124.65287531999276,49.63758412061784],[-124.53037124621943,49.57496983534866],[-124.50063090643563,49.54868770645227],[-124.36267046217907,49.550270811843916],[-124.19543688180502,49.51013065549218],[-124.16105890842974,49.48670148745262],[-124.12155227061758,49.43883406690505],[-124.04508303532279,49.43856997570487],[-124.08564683487957,49.546322820852495]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"qathet D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927018","name":"qathet D"}},{"type":"Feature","geometry":{"coordinates":[[[-124.32851002293306,49.77689315153648],[-124.33954844652735,49.77540014400534],[-124.33939044840315,49.772545293411305],[-124.33059611461928,49.77345860323705],[-124.32851002293306,49.77689315153648]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"Sechelt (Part) - qathet","type":"Indian government district","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927806","name":"Sechelt (Part) - qathet"}},{"type":"Feature","geometry":{"coordinates":[[[-124.50997771701101,49.79257292765273],[-124.50387408918516,49.85865249911747],[-124.5267849572023,49.88733315547778],[-124.57685422469592,49.907974280548785],[-124.59462465859302,49.88957090023266],[-124.54574744815118,49.84866538168257],[-124.53794132182907,49.801193690404624],[-124.50997771701101,49.79257292765273]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"Powell River","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927008","name":"Powell River"}},{"type":"Feature","geometry":{"coordinates":[[[-124.11365661681008,50.02465511976424],[-124.16578636716197,50.02285703453133],[-124.19876607728166,50.00751654388136],[-124.25113130869754,50.025012224814446],[-124.38111825888068,50.0242283552438],[-124.44310768257458,50.014407103014996],[-124.41980321997335,49.90360267050012],[-124.44226523939999,49.856349324784645],[-124.40837332782195,49.840152341559794],[-124.40979644098485,49.80291364445116],[-124.44203264367322,49.748762440965805],[-124.33320654182207,49.73009497127666],[-124.29188511813248,49.70156905372372],[-124.22054029404721,49.75726075544282],[-124.13707794608034,49.769426903081516],[-124.03499284137068,49.805472257160446],[-124.02516962382542,49.839999023805],[-124.04571924802121,49.86770632311759],[-124.03417666211985,49.92796671437674],[-124.06294401064476,49.933246146387916],[-124.0793491844389,50.000236745671025],[-124.11365661681008,50.02465511976424]],[[-124.32851002293306,49.77689315153648],[-124.33059611461928,49.77345860323705],[-124.33939044840315,49.772545293411305],[-124.33954844652735,49.77540014400534],[-124.32851002293306,49.77689315153648]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"qathet C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927016","name":"qathet C"}},{"type":"Feature","geometry":{"coordinates":[[[-124.44310768257458,50.014407103014996],[-124.53109643308055,49.98682453108463],[-124.53925350641023,49.96310310793517],[-124.5267849572023,49.88733315547778],[-124.50387408918516,49.85865249911747],[-124.50997771701101,49.79257292765273],[-124.51388006280095,49.765807823925044],[-124.44203264367322,49.748762440965805],[-124.40979644098485,49.80291364445116],[-124.40837332782195,49.840152341559794],[-124.44226523939999,49.856349324784645],[-124.41980321997335,49.90360267050012],[-124.44310768257458,50.014407103014996]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"qathet B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927012","name":"qathet B"}},{"type":"Feature","geometry":{"coordinates":[[[-124.57685422469592,49.907974280548785],[-124.63575114520246,49.914453246596],[-124.61990253019707,49.89610167483872],[-124.59462465859302,49.88957090023266],[-124.57685422469592,49.907974280548785]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"Sliammon 1","type":"Tla'amin Lands","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927802","name":"Sliammon 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.83205492675306,50.713938256212955],[-123.86428154753351,50.7107696818202],[-123.91924491542565,50.742415069641886],[-123.97426442771152,50.80398205056604],[-124.03235191347963,50.81144322287641],[-124.0692616293967,50.84046601543886],[-124.10926966662613,50.78745897286635],[-124.19060475224276,50.80079804245471],[-124.26211806799704,50.82442268919146],[-124.2523187036056,50.84769557873467],[-124.29467483370209,50.863501888323704],[-124.32349533854233,50.85360290291787],[-124.32747612626811,50.818348464557225],[-124.38216357500993,50.77300833729611],[-124.34835663624881,50.74647294603715],[-124.38702100708406,50.7208520088072],[-124.42878138699372,50.72248235444371],[-124.59133108888828,50.66166644199038],[-124.60334244529322,50.63900061866405],[-124.56871143182597,50.60456916725281],[-124.58127529874228,50.5740761716504],[-124.5155735931072,50.526141133079705],[-124.51335591551444,50.498701560412],[-124.5740662879456,50.46258943358638],[-124.57522816509304,50.41391935228124],[-124.64822499819056,50.41390588941586],[-124.69940326669506,50.36905250034868],[-124.76848182326647,50.321926129159166],[-124.6583290387969,50.292030088993855],[-124.62532025854041,50.24998037430938],[-124.64260844212474,50.19135775695664],[-124.86589947199121,50.085268691988865],[-124.8404488104279,50.021217581560244],[-124.87232028666118,50.0023760172968],[-124.93385987789304,50.01039629292242],[-124.97087167020189,49.99943307958455],[-124.93989181291727,49.9401700876884],[-124.88418210667116,49.873205504901605],[-124.82821487149307,49.80289142309788],[-124.79951431295218,49.76753048169058],[-124.77143797467129,49.77054888341275],[-124.58084582347972,49.831947245830065],[-124.5400225254519,49.77922947713244],[-124.51388006280095,49.765807823925044],[-124.50997771701101,49.79257292765273],[-124.53794132182907,49.801193690404624],[-124.54574744815118,49.84866538168257],[-124.59462465859302,49.88957090023266],[-124.61990253019707,49.89610167483872],[-124.63575114520246,49.914453246596],[-124.57685422469592,49.907974280548785],[-124.5267849572023,49.88733315547778],[-124.53925350641023,49.96310310793517],[-124.53109643308055,49.98682453108463],[-124.44310768257458,50.014407103014996],[-124.38111825888068,50.0242283552438],[-124.25113130869754,50.025012224814446],[-124.19876607728166,50.00751654388136],[-124.16578636716197,50.02285703453133],[-124.11365661681008,50.02465511976424],[-124.1507847532323,50.061024014920456],[-124.13689850258085,50.13552882786929],[-124.06938167590963,50.15055123457989],[-124.09214443803835,50.19370513024138],[-124.15425568118938,50.21909803436747],[-124.14423078480257,50.255747536007256],[-124.16901059304769,50.27001570923117],[-124.15953725579566,50.33338629304999],[-124.13670724261418,50.35262051112126],[-124.07580248479155,50.36642339599419],[-124.04116804298975,50.34638465265326],[-123.96249865296876,50.33936374301365],[-123.90996346225221,50.359413613229925],[-123.9230073535398,50.39890152587674],[-123.95146448917107,50.42190663308368],[-123.93649544510953,50.451430237338094],[-123.99640049791385,50.473882588517796],[-123.98281270332917,50.51396229153516],[-123.92512505181315,50.5314607467204],[-123.84211029085134,50.528773291234],[-123.80171431649522,50.54048149878984],[-123.74412405538975,50.53805492522443],[-123.76124948117183,50.633855917079785],[-123.72801124985524,50.69458378966724],[-123.78860684330495,50.7225104182089],[-123.83205492675306,50.713938256212955]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"qathet","census_subdivision":"qathet A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5927","census_subdivision_code":"5927010","name":"qathet A"}},{"type":"Feature","geometry":{"coordinates":[[[-130.71401131342958,53.40877312822282],[-131.49418082086308,53.29469275170235],[-131.7282202942096,53.25045834652333],[-131.7986485994315,53.29104561004405],[-131.88520076992154,53.317708668819336],[-131.94240751494658,53.25281826226175],[-132.0012154815418,53.22376179244234],[-132.0793852445653,53.161565240337474],[-132.14726217159443,53.162963342092695],[-132.22132963153987,53.14277164900367],[-132.30338791869647,53.1542338280111],[-132.3533340671065,53.150312267510905],[-132.37827103933483,53.131779773969946],[-132.47847339357904,53.1307367091953],[-132.58968877103956,53.166000527967014],[-132.6219075270855,53.16367022214241],[-133.02154995613037,53.167660274016455],[-132.95689069839466,52.99426422546856],[-132.75827349513224,52.75000953484053],[-132.50000001988056,52.7500000054716],[-132.5000000092977,52.560144229851524],[-132.3133111248907,52.393574267277224],[-132.19706534217013,52.30777410167302],[-132.0671628032534,52.223346028081],[-131.93867055237203,52.15121554191186],[-131.61369750773488,52.02133510132763],[-131.49867735132395,51.991938399853936],[-131.21754607544779,51.940667781720336],[-131.07117648117793,51.890681895482885],[-130.97516460086334,51.888629959901316],[-130.81237966878618,51.91342793889484],[-130.75277775575,51.927844853838415],[-130.4569623746444,51.96909306652374],[-130.516520997712,52.122212619568145],[-130.57115034534348,52.2007018372865],[-130.67696125091808,52.33682296869386],[-130.71201043739714,52.389881617019874],[-130.79013213688978,52.47005379584559],[-130.88734942834043,52.60676220667476],[-130.97058225935783,52.743672866792885],[-131.03999048281258,52.89734184752541],[-131.04764932094278,52.950091891866094],[-131.0380132480344,53.03174898693957],[-130.97654380824093,53.118185402567434],[-130.83651134082984,53.20229504926745],[-130.73574363064972,53.28672339955422],[-130.6997922316564,53.3664395609588],[-130.71401131342958,53.40877312822282]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"North Coast E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947032","name":"North Coast E"}},{"type":"Feature","geometry":{"coordinates":[[[-132.10634603932886,53.27703477331159],[-132.1617971072287,53.27832561935862],[-132.1628293354186,53.22844790411522],[-132.1263823773704,53.20731723601631],[-132.00322236087672,53.23106368467935],[-132.0170703298164,53.27705628067529],[-132.10634603932886,53.27703477331159]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Queen Charlotte","type":"Village","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947026","name":"Queen Charlotte"}},{"type":"Feature","geometry":{"coordinates":[[[-131.98607317891944,53.28324794660073],[-131.96922610876095,53.28307649393449],[-131.96639129105517,53.3020986628078],[-131.9750573098652,53.30311599265788],[-131.98607317891944,53.28324794660073]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Skidegate 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947804","name":"Skidegate 1"}},{"type":"Feature","geometry":{"coordinates":[[[-129.25542801021547,53.427541386184856],[-129.26868708583706,53.427759025913836],[-129.2684740067669,53.41797763201857],[-129.25303828699214,53.41824957351803],[-129.25270966599805,53.425954766206665],[-129.25542801021547,53.427541386184856]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Kulkayu (Hartley Bay) 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947806","name":"Kulkayu (Hartley Bay) 4"}},{"type":"Feature","geometry":{"coordinates":[[[-129.25270966599805,53.425954766206665],[-129.24288349465334,53.4237643564479],[-129.24361946604648,53.43072488821551],[-129.25542801021547,53.427541386184856],[-129.25270966599805,53.425954766206665]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Kulkayu (Hartley Bay) 4A","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947802","name":"Kulkayu (Hartley Bay) 4A"}},{"type":"Feature","geometry":{"coordinates":[[[-132.18029194156978,53.69561058076365],[-132.18299991045225,53.68172601995514],[-132.1398855787004,53.688541110968494],[-132.1507671304077,53.705998711875544],[-132.18029194156978,53.69561058076365]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Port Clements","type":"Village","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947030","name":"Port Clements"}},{"type":"Feature","geometry":{"coordinates":[[[-130.34864714052122,54.20098464886572],[-130.39158807944295,54.189660099999074],[-130.44684117655115,54.19815339976081],[-130.53210790751862,54.2269055328425],[-130.64015826252046,54.287231501426184],[-130.96962752425404,54.290707840790695],[-131.00091949841882,54.245638033365786],[-130.9878027826252,54.16492075859297],[-130.91529833201383,53.995031664595075],[-130.84560864046904,53.906924350858695],[-130.79868534491123,53.863789147353685],[-130.6965434604629,53.80064420121801],[-130.72231489187303,53.75672692175618],[-130.7228511231237,53.46945303107114],[-130.71401131342958,53.40877312822282],[-130.6997922316564,53.3664395609588],[-130.60572787684967,53.27627944204551],[-130.5150165479882,53.21411448777634],[-130.37629898437078,53.136103852934134],[-130.1927051045463,53.05528691321168],[-130.10246231830635,53.02859585729672],[-129.9494107016608,53.072996610239706],[-129.81717813348925,53.12614750798199],[-129.6732346511087,53.154252888201725],[-129.56082364056684,53.193223454002656],[-129.46044747524667,53.20411247461079],[-129.43168963106078,53.222319866025444],[-129.43224401391694,53.26233634315265],[-129.38868968782867,53.28811076746952],[-129.30342533600287,53.302254161058606],[-129.30716277603966,53.33682234267039],[-129.2805293890132,53.348125293732984],[-129.20218749696122,53.327301285087636],[-129.1827148549867,53.36008675405281],[-129.20183794072943,53.41208837235941],[-129.197931951526,53.478212901628375],[-129.21388966529682,53.60687802875291],[-129.29474543556472,53.698053116727415],[-129.29428548964322,53.70924003609558],[-129.3625038498042,53.784530293282074],[-129.37348442749396,53.79654099031067],[-129.37485003521854,53.940722091083366],[-129.37210092997404,54.29197543382849],[-129.44914381764895,54.24706217685172],[-129.5155914385903,54.24164094809306],[-129.62641463029502,54.17861012435225],[-129.73892787982714,54.21547169774362],[-129.85556926471338,54.2237684934046],[-129.94656255067844,54.1904513428468],[-129.98628891066244,54.16360481725458],[-130.064491373157,54.15337348817294],[-130.09331375607633,54.16475016472554],[-130.13232427544523,54.146732623174756],[-130.22868126460747,54.19343755414328],[-130.3064297161711,54.20148861204312],[-130.34864714052122,54.20098464886572]],[[-129.25270966599805,53.425954766206665],[-129.25303828699214,53.41824957351803],[-129.2684740067669,53.41797763201857],[-129.26868708583706,53.427759025913836],[-129.25542801021547,53.427541386184856],[-129.24361946604648,53.43072488821551],[-129.24288349465334,53.4237643564479],[-129.25270966599805,53.425954766206665]],[[-130.46019724078693,53.79182997557855],[-130.40630083821523,53.78906697976618],[-130.43372056450568,53.749513869279916],[-130.46231414406904,53.76411766895514],[-130.46019724078693,53.79182997557855]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"North Coast C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947021","name":"North Coast C"}},{"type":"Feature","geometry":{"coordinates":[[[-130.46019724078693,53.79182997557855],[-130.46231414406904,53.76411766895514],[-130.43372056450568,53.749513869279916],[-130.40630083821523,53.78906697976618],[-130.46019724078693,53.79182997557855]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Dolphin Island 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947807","name":"Dolphin Island 1"}},{"type":"Feature","geometry":{"coordinates":[[[-130.98889023321266,54.70281503883701],[-131.99999829672424,54.68098965586914],[-132.681230443032,54.66147424779277],[-133.24395797466372,54.645918436952655],[-133.2472613648831,54.16545704816303],[-133.24396018063527,53.79722587367378],[-133.22014614876525,53.67543976400244],[-133.12527141580046,53.417808489576686],[-133.02154995613037,53.167660274016455],[-132.6219075270855,53.16367022214241],[-132.58968877103956,53.166000527967014],[-132.47847339357904,53.1307367091953],[-132.37827103933483,53.131779773969946],[-132.3533340671065,53.150312267510905],[-132.30338791869647,53.1542338280111],[-132.22132963153987,53.14277164900367],[-132.14726217159443,53.162963342092695],[-132.0793852445653,53.161565240337474],[-132.0012154815418,53.22376179244234],[-131.94240751494658,53.25281826226175],[-131.88520076992154,53.317708668819336],[-131.7986485994315,53.29104561004405],[-131.7282202942096,53.25045834652333],[-131.49418082086308,53.29469275170235],[-130.71401131342958,53.40877312822282],[-130.7228511231237,53.46945303107114],[-130.72231489187303,53.75672692175618],[-130.6965434604629,53.80064420121801],[-130.79868534491123,53.863789147353685],[-130.84560864046904,53.906924350858695],[-130.91529833201383,53.995031664595075],[-130.9878027826252,54.16492075859297],[-131.00091949841882,54.245638033365786],[-130.96962752425404,54.290707840790695],[-130.97683525651283,54.39721723397208],[-131.0145884530602,54.44381001810534],[-131.0493802907311,54.54089293508082],[-131.10890208702648,54.57973209971783],[-131.09604156111078,54.63892474492078],[-130.98889023321266,54.70281503883701]],[[-131.98607317891944,53.28324794660073],[-131.9750573098652,53.30311599265788],[-131.96639129105517,53.3020986628078],[-131.96922610876095,53.28307649393449],[-131.98607317891944,53.28324794660073]],[[-132.18029194156978,53.69561058076365],[-132.1507671304077,53.705998711875544],[-132.1398855787004,53.688541110968494],[-132.18299991045225,53.68172601995514],[-132.18029194156978,53.69561058076365]],[[-132.16056839682818,54.02192689652323],[-132.1966202706077,54.04280406548424],[-132.18517137427372,54.04944097526932],[-132.15930263728012,54.03897152025993],[-132.10282757628076,54.01414533781929],[-132.13232469363797,53.99999596188647],[-132.12988714413697,53.98614789189816],[-132.14128910198707,53.99998340433455],[-132.16056839682818,54.02192689652323]],[[-132.10634603932886,53.27703477331159],[-132.0170703298164,53.27705628067529],[-132.00322236087672,53.23106368467935],[-132.1263823773704,53.20731723601631],[-132.1628293354186,53.22844790411522],[-132.1617971072287,53.27832561935862],[-132.10634603932886,53.27703477331159]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"North Coast D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947027","name":"North Coast D"}},{"type":"Feature","geometry":{"coordinates":[[[-132.14128910198707,53.99998340433455],[-132.12988714413697,53.98614789189816],[-132.13232469363797,53.99999596188647],[-132.14128910198707,53.99998340433455]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Tlaa Gaa Aawtlaas 28","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947823","name":"Tlaa Gaa Aawtlaas 28"}},{"type":"Feature","geometry":{"coordinates":[[[-132.13232469363797,53.99999596188647],[-132.10282757628076,54.01414533781929],[-132.15930263728012,54.03897152025993],[-132.16056839682818,54.02192689652323],[-132.14128910198707,53.99998340433455],[-132.13232469363797,53.99999596188647]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Masset","type":"Village","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947023","name":"Masset"}},{"type":"Feature","geometry":{"coordinates":[[[-132.15930263728012,54.03897152025993],[-132.18517137427372,54.04944097526932],[-132.1966202706077,54.04280406548424],[-132.16056839682818,54.02192689652323],[-132.15930263728012,54.03897152025993]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Masset 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947803","name":"Masset 1"}},{"type":"Feature","geometry":{"coordinates":[[[-130.24659564227454,54.26193403600194],[-130.28855850478203,54.249140790875295],[-130.3064297161711,54.20148861204312],[-130.22868126460747,54.19343755414328],[-130.13232427544523,54.146732623174756],[-130.09331375607633,54.16475016472554],[-130.0299087416253,54.16575586875591],[-129.9793891944555,54.19233965937204],[-129.9582394533642,54.26138362029471],[-130.18857585200072,54.2485681866067],[-130.24659564227454,54.26193403600194]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Port Edward","type":"District municipality","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947007","name":"Port Edward"}},{"type":"Feature","geometry":{"coordinates":[[[-130.24659564227454,54.26193403600194],[-130.25556931113186,54.31089739738446],[-130.28349970213424,54.33857848744767],[-130.36549576395197,54.31441449116643],[-130.34864714052122,54.20098464886572],[-130.3064297161711,54.20148861204312],[-130.28855850478203,54.249140790875295],[-130.24659564227454,54.26193403600194]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Prince Rupert","type":"City","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947012","name":"Prince Rupert"}},{"type":"Feature","geometry":{"coordinates":[[[-130.48663214244303,54.40468751147614],[-130.4613431608951,54.335588777242315],[-130.41892307286616,54.34277398193146],[-130.40097208099385,54.377899799174045],[-130.4480868105117,54.37839924381638],[-130.48663214244303,54.40468751147614]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"S1/2 Tsimpsean 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947810","name":"S1/2 Tsimpsean 2"}},{"type":"Feature","geometry":{"coordinates":[[[-130.61678154224182,54.70849898924426],[-130.98889023321266,54.70281503883701],[-131.09604156111078,54.63892474492078],[-131.10890208702648,54.57973209971783],[-131.0493802907311,54.54089293508082],[-131.0145884530602,54.44381001810534],[-130.97683525651283,54.39721723397208],[-130.96962752425404,54.290707840790695],[-130.64015826252046,54.287231501426184],[-130.53210790751862,54.2269055328425],[-130.44684117655115,54.19815339976081],[-130.39158807944295,54.189660099999074],[-130.34864714052122,54.20098464886572],[-130.36549576395197,54.31441449116643],[-130.28349970213424,54.33857848744767],[-130.25556931113186,54.31089739738446],[-130.24659564227454,54.26193403600194],[-130.18857585200072,54.2485681866067],[-129.9582394533642,54.26138362029471],[-129.9793891944555,54.19233965937204],[-130.0299087416253,54.16575586875591],[-130.09331375607633,54.16475016472554],[-130.064491373157,54.15337348817294],[-129.98628891066244,54.16360481725458],[-129.94656255067844,54.1904513428468],[-129.85556926471338,54.2237684934046],[-129.73892787982714,54.21547169774362],[-129.62641463029502,54.17861012435225],[-129.5155914385903,54.24164094809306],[-129.44914381764895,54.24706217685172],[-129.37210092997404,54.29197543382849],[-129.37111700501424,54.356503542231465],[-129.47565954304014,54.36822736445455],[-129.52504985613007,54.43854707495964],[-129.5651482958037,54.46069963773194],[-129.65369622407948,54.487211643949834],[-129.6922874449738,54.527262808187544],[-129.6586192291793,54.556878102413535],[-129.68717345002975,54.59476258291972],[-129.64604773184865,54.629127961847594],[-129.56844848907582,54.635604856635226],[-129.54601423909125,54.60256766822113],[-129.47458588763655,54.61867419089316],[-129.46393839229336,54.66028769312486],[-129.51300488920404,54.65844128078659],[-129.56697348644823,54.68030249172125],[-129.6843400138743,54.69541212660561],[-129.70113971008837,54.736432906469666],[-129.75385832185736,54.72357650878826],[-129.79535370576488,54.74578763388343],[-129.96559928318155,54.69892546555059],[-130.058825469752,54.703200426968614],[-130.1398853837921,54.730724402932665],[-130.20391076478145,54.731763449332675],[-130.31477675638016,54.70169599870243],[-130.38843226980612,54.69186369954737],[-130.58096597356908,54.69111105738969],[-130.61678154224182,54.70849898924426]],[[-130.48663214244303,54.40468751147614],[-130.4480868105117,54.37839924381638],[-130.40097208099385,54.377899799174045],[-130.41892307286616,54.34277398193146],[-130.4613431608951,54.335588777242315],[-130.48663214244303,54.40468751147614]],[[-130.43971985815475,54.563388388741664],[-130.4306588022418,54.552237844052165],[-130.33368590996557,54.55044291933869],[-130.32864156084145,54.414366584698115],[-130.4780139421389,54.4146685000497],[-130.44788187287895,54.45710087888193],[-130.45069014504332,54.529503477891694],[-130.43971985815475,54.563388388741664]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"North Coast A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947016","name":"North Coast A"}},{"type":"Feature","geometry":{"coordinates":[[[-130.43971985815475,54.563388388741664],[-130.45069014504332,54.529503477891694],[-130.44788187287895,54.45710087888193],[-130.4780139421389,54.4146685000497],[-130.32864156084145,54.414366584698115],[-130.33368590996557,54.55044291933869],[-130.4306588022418,54.552237844052165],[-130.43971985815475,54.563388388741664]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"North Coast","regional_district_aka_census_division":"Skeena-Queen Charlotte","census_subdivision":"Lax Kw'alaams 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5960","census_division_code":"5947","census_subdivision_code":"5947809","name":"Lax Kw'alaams 1"}},{"type":"Feature","geometry":{"coordinates":[[[-123.14479859771478,49.69249001260467],[-123.15366025842117,49.69241303953892],[-123.15405883155593,49.689084355812405],[-123.14480103042155,49.69000435515389],[-123.14479859771478,49.69249001260467]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Stawamus 24","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931807","name":"Stawamus 24"}},{"type":"Feature","geometry":{"coordinates":[[[-123.16388351578277,49.72585972155234],[-123.16046020620554,49.72510369756159],[-123.16012202570109,49.726090560364575],[-123.16212077703885,49.7265124939749],[-123.16388351578277,49.72585972155234]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Yekwaupsum 18","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931809","name":"Yekwaupsum 18"}},{"type":"Feature","geometry":{"coordinates":[[[-123.1939291078072,49.794034764637885],[-123.15999172209129,49.75310532670585],[-123.21030159873462,49.68122513544777],[-123.15042024934694,49.68130813204926],[-123.09115570151359,49.70891603569894],[-123.01547198647968,49.70907364604704],[-123.01640122138525,49.72745392638395],[-123.09002061313288,49.72670073913442],[-123.089380163346,49.77890817468506],[-123.16236240191486,49.81074870082249],[-123.1939291078072,49.794034764637885]],[[-123.16388351578277,49.72585972155234],[-123.16212077703885,49.7265124939749],[-123.16012202570109,49.726090560364575],[-123.16046020620554,49.72510369756159],[-123.16388351578277,49.72585972155234]],[[-123.14179215431429,49.752224572545074],[-123.14245111247858,49.754615061299305],[-123.14241456310415,49.755816283284794],[-123.14122363961278,49.75579611841677],[-123.14131266018482,49.75315219934324],[-123.14179215431429,49.752224572545074]],[[-123.15810223260806,49.76698034265641],[-123.164818134184,49.77100915022688],[-123.16095874404145,49.77226276104914],[-123.1580300896189,49.77044770991173],[-123.15810223260806,49.76698034265641]],[[-123.14479859771478,49.69249001260467],[-123.14480103042155,49.69000435515389],[-123.15405883155593,49.689084355812405],[-123.15366025842117,49.69241303953892],[-123.14479859771478,49.69249001260467]],[[-123.13830870845871,49.745661876109835],[-123.13700768761393,49.7394060856738],[-123.143662347666,49.73916348996403],[-123.14337252595888,49.745804619166606],[-123.13830870845871,49.745661876109835]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Squamish","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931006","name":"Squamish"}},{"type":"Feature","geometry":{"coordinates":[[[-123.13830870845871,49.745661876109835],[-123.14337252595888,49.745804619166606],[-123.143662347666,49.73916348996403],[-123.13700768761393,49.7394060856738],[-123.13830870845871,49.745661876109835]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Kowtain 17","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931802","name":"Kowtain 17"}},{"type":"Feature","geometry":{"coordinates":[[[-123.14179215431429,49.752224572545074],[-123.14131266018482,49.75315219934324],[-123.14122363961278,49.75579611841677],[-123.14241456310415,49.755816283284794],[-123.14245111247858,49.754615061299305],[-123.14179215431429,49.752224572545074]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Seaichem 16","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931806","name":"Seaichem 16"}},{"type":"Feature","geometry":{"coordinates":[[[-123.15810223260806,49.76698034265641],[-123.1580300896189,49.77044770991173],[-123.16095874404145,49.77226276104914],[-123.164818134184,49.77100915022688],[-123.15810223260806,49.76698034265641]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Waiwakum 14","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931808","name":"Waiwakum 14"}},{"type":"Feature","geometry":{"coordinates":[[[-123.16236240191486,49.81074870082249],[-123.1979568796342,49.81148849220008],[-123.1939291078072,49.794034764637885],[-123.16236240191486,49.81074870082249]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Cheakamus 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931801","name":"Cheakamus 11"}},{"type":"Feature","geometry":{"coordinates":[[[-123.06873633737032,50.124993189709635],[-123.07761022283117,50.16059182906363],[-123.13239939101558,50.212589583703064],[-123.26704080004399,50.24067371837751],[-123.30206791043766,50.27566272757263],[-123.30315740656246,50.33705191809935],[-123.28865015216765,50.34847273585193],[-123.40631511570345,50.41849570252823],[-123.445376361587,50.36584999257489],[-123.46183909691068,50.30171974360119],[-123.50835479373454,50.272362244646445],[-123.54711933107289,50.270210946990275],[-123.61510425518757,50.24629769092582],[-123.63988443925912,50.21253250308837],[-123.63505764536745,50.17564078429242],[-123.5813311144481,50.1739640577815],[-123.58989008353787,50.123165944552824],[-123.649061953643,50.084795808298125],[-123.63067967977688,50.01219828169211],[-123.60485958401011,50.01248523242562],[-123.58626074801428,49.97111779362901],[-123.6201713520494,49.930668601800214],[-123.56499680326286,49.90531643132075],[-123.5503056808505,49.871070948290566],[-123.48794732337186,49.911352887311715],[-123.42795160402778,49.900927918592586],[-123.32841734701526,49.851443426159754],[-123.33331084286402,49.827328437963374],[-123.30522437361002,49.79650951476816],[-123.30300648771797,49.750053245570996],[-123.36401573103879,49.67435125918894],[-123.35160869557859,49.66567098141773],[-123.27689368983012,49.59075742864389],[-123.24501630733718,49.57628971813421],[-123.27009203498618,49.52106405996887],[-123.27486868816247,49.48110287112881],[-123.10280206154651,49.4821966935482],[-123.10230746179492,49.547783572406665],[-122.92421431524488,49.54842971557776],[-122.94504470848462,49.5705427449884],[-122.81608574841671,49.57235386256782],[-122.8355773434717,49.599656416699524],[-122.81136175933952,49.61923292675175],[-122.8524273292758,49.67150864495653],[-122.81420399155287,49.711243938650796],[-122.8553108326616,49.74346152404376],[-122.88991258343998,49.80195424031206],[-122.87367107385128,49.81847795159122],[-122.964654188915,49.83499511243596],[-122.98524343300961,49.85747455511842],[-122.96201255239237,49.90257664633004],[-122.93648257666872,49.917408009381404],[-122.89656566974934,49.89481837256128],[-122.85061799626564,49.91861036165716],[-122.76779367231723,49.932710253335756],[-122.6803038352416,49.98123414949182],[-122.67945282743293,50.02264473476505],[-122.74060613605056,50.016782374686514],[-122.79184177806052,50.0411029817133],[-122.8434326443272,50.01186559275287],[-122.91631570409766,50.04018783490319],[-122.978297125054,50.02591201432369],[-123.05826712857903,50.02701627976825],[-123.15055881990104,50.03994722028362],[-123.15497943308938,50.10170663526393],[-123.10143882720111,50.10149966206754],[-123.06873633737032,50.124993189709635]],[[-123.1939291078072,49.794034764637885],[-123.1979568796342,49.81148849220008],[-123.16236240191486,49.81074870082249],[-123.089380163346,49.77890817468506],[-123.09002061313288,49.72670073913442],[-123.01640122138525,49.72745392638395],[-123.01547198647968,49.70907364604704],[-123.09115570151359,49.70891603569894],[-123.15042024934694,49.68130813204926],[-123.21030159873462,49.68122513544777],[-123.15999172209129,49.75310532670585],[-123.1939291078072,49.794034764637885]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Squamish-Lillooet D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931021","name":"Squamish-Lillooet D"}},{"type":"Feature","geometry":{"coordinates":[[[-122.91631570409766,50.04018783490319],[-122.86100443791707,50.0401699752097],[-122.86058272970288,50.13684015068318],[-122.91365569597401,50.13715901672943],[-122.91398804681499,50.16529267630044],[-123.00682439615761,50.16500729843792],[-123.06873633737032,50.124993189709635],[-123.10143882720111,50.10149966206754],[-123.15497943308938,50.10170663526393],[-123.15055881990104,50.03994722028362],[-123.05826712857903,50.02701627976825],[-122.978297125054,50.02591201432369],[-122.91631570409766,50.04018783490319]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Whistler","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931020","name":"Whistler"}},{"type":"Feature","geometry":{"coordinates":[[[-122.63079851016171,50.31052320687531],[-122.6817609256648,50.3013364596479],[-122.65250748091984,50.29907980293945],[-122.63079851016171,50.31052320687531]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Nesuch 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931812","name":"Nesuch 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.7256916536476,50.31707704240336],[-122.74609230094971,50.3337074040634],[-122.79267779650739,50.31599967812534],[-122.95581197373352,50.34532798158481],[-122.98004730476532,50.316062205630075],[-122.9051792518036,50.30529917003258],[-122.79927103168838,50.31427414230166],[-122.73289572277443,50.31022833910913],[-122.72816558881827,50.30985162258559],[-122.72508057395659,50.31707835730982],[-122.7256916536476,50.31707704240336]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Pemberton","type":"Village","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931012","name":"Pemberton"}},{"type":"Feature","geometry":{"coordinates":[[[-122.63079851016171,50.31052320687531],[-122.63811028057368,50.34120608748151],[-122.68459389335995,50.34407281848432],[-122.72816558881827,50.30985162258559],[-122.73289572277443,50.31022833910913],[-122.6817609256648,50.3013364596479],[-122.63079851016171,50.31052320687531]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Mount Currie","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931843","name":"Mount Currie"}},{"type":"Feature","geometry":{"coordinates":[[[-123.7295082823491,50.84286088094488],[-123.79530284087605,50.833680937769195],[-123.80119101862063,50.79718197493424],[-123.86728277894295,50.747763614373824],[-123.83205492675306,50.713938256212955],[-123.78860684330495,50.7225104182089],[-123.72801124985524,50.69458378966724],[-123.76124948117183,50.633855917079785],[-123.74412405538975,50.53805492522443],[-123.80171431649522,50.54048149878984],[-123.84211029085134,50.528773291234],[-123.92512505181315,50.5314607467204],[-123.98281270332917,50.51396229153516],[-123.99640049791385,50.473882588517796],[-123.93649544510953,50.451430237338094],[-123.95146448917107,50.42190663308368],[-123.9230073535398,50.39890152587674],[-123.90996346225221,50.359413613229925],[-123.84807756009634,50.30066907846659],[-123.76796087745731,50.26201762399469],[-123.75454121779647,50.24427576566618],[-123.69840920743019,50.229516111254725],[-123.68666264742969,50.202529638836715],[-123.63988443925912,50.21253250308837],[-123.61510425518757,50.24629769092582],[-123.54711933107289,50.270210946990275],[-123.50835479373454,50.272362244646445],[-123.46183909691068,50.30171974360119],[-123.445376361587,50.36584999257489],[-123.40631511570345,50.41849570252823],[-123.28865015216765,50.34847273585193],[-123.30315740656246,50.33705191809935],[-123.30206791043766,50.27566272757263],[-123.26704080004399,50.24067371837751],[-123.13239939101558,50.212589583703064],[-123.07761022283117,50.16059182906363],[-123.06873633737032,50.124993189709635],[-123.00682439615761,50.16500729843792],[-122.91398804681499,50.16529267630044],[-122.91365569597401,50.13715901672943],[-122.86058272970288,50.13684015068318],[-122.86100443791707,50.0401699752097],[-122.91631570409766,50.04018783490319],[-122.8434326443272,50.01186559275287],[-122.79184177806052,50.0411029817133],[-122.80579703700225,50.08710218243847],[-122.78828729791068,50.13113766468127],[-122.73396217426436,50.151296077343595],[-122.65991648438145,50.1431475622135],[-122.63822520979983,50.123262985967365],[-122.53207277363953,50.12380251760332],[-122.52216834031671,50.12383959572101],[-122.25844006319265,50.12344431007174],[-122.31625116355197,50.18712021616655],[-122.27795120416424,50.203316476826025],[-122.30163009329088,50.229787286784706],[-122.35346504232024,50.23099222432868],[-122.37365936201573,50.26160951340704],[-122.36638152145206,50.311555489021984],[-122.43875097179607,50.33534754796712],[-122.47694583546968,50.383480208177005],[-122.5170667777707,50.38773724722238],[-122.52518821605885,50.4148000414274],[-122.48543520544892,50.44346352746839],[-122.39654677220125,50.4111205622659],[-122.33593650756536,50.41616797616795],[-122.30444443707522,50.430923600812314],[-122.28730033499967,50.47542887941208],[-122.33776736440062,50.52056794015604],[-122.41885282534211,50.55264160569449],[-122.40919805148008,50.59133940678646],[-122.46677707948534,50.59104845616035],[-122.50414790777144,50.566508145246175],[-122.60986272699495,50.599792438595934],[-122.61146884047784,50.63567289302123],[-122.62923740521094,50.65280706398429],[-122.70392772354049,50.64355494051535],[-122.72900999799592,50.656096967994905],[-122.83283343294961,50.64619964999279],[-122.86107123898405,50.619491430942844],[-122.92793934293557,50.601178201420346],[-122.95676149318567,50.54872768967846],[-123.01880956950396,50.60111020906699],[-123.0814748905392,50.59399735166709],[-123.1325152190257,50.63271023132497],[-123.16370945355038,50.63470040146756],[-123.23580113211574,50.72296031273116],[-123.32132706292492,50.731355466706646],[-123.35825639945722,50.761165227057226],[-123.43907265356711,50.79654941823708],[-123.50280303418309,50.779854178394196],[-123.56281667968877,50.797548756932],[-123.60707809398399,50.77680002432373],[-123.63005121341124,50.79259964474471],[-123.71987186847723,50.8012551330794],[-123.7295082823491,50.84286088094488]],[[-122.49097589954651,50.55330996811883],[-122.46780524997546,50.54863026733483],[-122.46601021129258,50.542250227220094],[-122.4912867379096,50.54191116075179],[-122.49097589954651,50.55330996811883]],[[-122.73289572277443,50.31022833910913],[-122.79927103168838,50.31427414230166],[-122.9051792518036,50.30529917003258],[-122.98004730476532,50.316062205630075],[-122.95581197373352,50.34532798158481],[-122.79267779650739,50.31599967812534],[-122.74609230094971,50.3337074040634],[-122.7256916536476,50.31707704240336],[-122.72508057395659,50.31707835730982],[-122.72816558881827,50.30985162258559],[-122.68459389335995,50.34407281848432],[-122.63811028057368,50.34120608748151],[-122.63079851016171,50.31052320687531],[-122.65250748091984,50.29907980293945],[-122.6817609256648,50.3013364596479],[-122.73289572277443,50.31022833910913]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Squamish-Lillooet C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931017","name":"Squamish-Lillooet C"}},{"type":"Feature","geometry":{"coordinates":[[[-121.76624407579465,50.54638153875979],[-121.80250463443934,50.555050533520735],[-121.80453543760623,50.53106524156325],[-121.78490768399108,50.530582172532675],[-121.76624407579465,50.54638153875979]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Nesikep 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931827","name":"Nesikep 6"}},{"type":"Feature","geometry":{"coordinates":[[[-122.49097589954651,50.55330996811883],[-122.4912867379096,50.54191116075179],[-122.46601021129258,50.542250227220094],[-122.46780524997546,50.54863026733483],[-122.49097589954651,50.55330996811883]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Nequatque","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931844","name":"Nequatque"}},{"type":"Feature","geometry":{"coordinates":[[[-121.8464654575338,50.586845569650656],[-121.85716480440333,50.59182081611249],[-121.8579882905819,50.579597624664714],[-121.84648760980383,50.57956784771556],[-121.8464654575338,50.586845569650656]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Towinock 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931832","name":"Towinock 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.79536463870993,50.628918355784016],[-121.79534738749932,50.64869988165953],[-121.80364542855271,50.648571737336376],[-121.79536463870993,50.628918355784016]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Chilhil 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931815","name":"Chilhil 6"}},{"type":"Feature","geometry":{"coordinates":[[[-121.92283192971857,50.65430851155894],[-121.92380477329147,50.64305875375055],[-121.89587591403571,50.64967366522257],[-121.9214056719644,50.66539291106237],[-121.92283192971857,50.65430851155894]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Pashilqua 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931828","name":"Pashilqua 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.88482629076654,50.64949516504053],[-121.8905662391541,50.66247462977406],[-121.91712616125086,50.66598416195207],[-121.88482629076654,50.64949516504053]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"McCartney's Flat 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931823","name":"McCartney's Flat 4"}},{"type":"Feature","geometry":{"coordinates":[[[-121.98718153346223,50.6688392565413],[-121.98877483477796,50.66847606265857],[-121.98952891421274,50.66690887047751],[-121.98718153346223,50.6688392565413]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Seton Lake 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931824","name":"Seton Lake 5"}},{"type":"Feature","geometry":{"coordinates":[[[-121.94564258801152,50.67228901352936],[-121.92749214156346,50.66573793088585],[-121.92685562372166,50.68180520308255],[-121.94039857951077,50.675441696604445],[-121.94564258801152,50.67228901352936]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Cayoosh Creek 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931814","name":"Cayoosh Creek 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.94407035286903,50.6942607673048],[-121.95658250896601,50.67185132410411],[-121.94564258801152,50.67228901352936],[-121.94039857951077,50.675441696604445],[-121.94407035286903,50.6942607673048]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Lillooet 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931821","name":"Lillooet 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.91209683241682,50.71893669627566],[-121.94407035286903,50.6942607673048],[-121.94039857951077,50.675441696604445],[-121.92685562372166,50.68180520308255],[-121.92749214156346,50.66573793088585],[-121.94564258801152,50.67228901352936],[-121.95658250896601,50.67185132410411],[-121.98718153346223,50.6688392565413],[-121.98952891421274,50.66690887047751],[-121.92283192971857,50.65430851155894],[-121.9214056719644,50.66539291106237],[-121.91712616125086,50.66598416195207],[-121.8905662391541,50.66247462977406],[-121.88482629076654,50.64949516504053],[-121.90596594311451,50.720316850520156],[-121.91209683241682,50.71893669627566]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Lillooet","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931026","name":"Lillooet"}},{"type":"Feature","geometry":{"coordinates":[[[-121.80370337466658,50.68798260440808],[-121.81206946341297,50.68879673967452],[-121.81202699975267,50.68424239355966],[-121.80337929256997,50.68430889230906],[-121.80370337466658,50.68798260440808]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931820","name":"Fountain 12"}},{"type":"Feature","geometry":{"coordinates":[[[-122.29404420424216,50.705674179740974],[-122.30283473337258,50.70589205892245],[-122.30316645823424,50.70023027240586],[-122.29384023662433,50.700947590731694],[-122.29404420424216,50.705674179740974]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Necait 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931826","name":"Necait 6"}},{"type":"Feature","geometry":{"coordinates":[[[-122.27527441784757,50.706312564313755],[-122.28002657811973,50.70637878244096],[-122.28505009494772,50.7028369449282],[-122.27543757941181,50.702888426160435],[-122.27527441784757,50.706312564313755]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Mission 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931833","name":"Mission 5"}},{"type":"Feature","geometry":{"coordinates":[[[-121.83350524578135,50.70420403646527],[-121.83298900976712,50.70829406856144],[-121.83984428829216,50.70867346280514],[-121.84026118464384,50.704609653544175],[-121.83350524578135,50.70420403646527]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain Creek 8","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931822","name":"Fountain Creek 8"}},{"type":"Feature","geometry":{"coordinates":[[[-121.90596594311451,50.720316850520156],[-121.90625456072019,50.72265629232987],[-121.91436334827551,50.72274156632622],[-121.91209683241682,50.71893669627566],[-121.90596594311451,50.720316850520156]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931819","name":"Fountain 11"}},{"type":"Feature","geometry":{"coordinates":[[[-121.6260853820538,50.9249547626597],[-121.62749484618871,50.99610887039958],[-121.91510340698797,50.996834280094106],[-121.91360004303682,50.98709167911766],[-122.16533913664877,50.99025213457542],[-122.19715214436089,51.01838526940725],[-122.306385424651,51.04441607037674],[-122.35839966655683,51.074551778528956],[-122.37633552396848,51.106982096351786],[-122.46533923229953,51.11422834838338],[-122.47078363365969,51.156658313525575],[-122.53027091901271,51.20918626290719],[-122.58977054870192,51.176625687598296],[-122.60249606993426,51.14257250420993],[-122.57939323298861,51.10340704122752],[-122.61844850494086,51.081196655137816],[-122.57253352586079,51.034060235233476],[-122.58794119484877,51.00944550172126],[-122.53676667088638,50.96151593946342],[-122.43211431572566,50.9327919516182],[-122.422368545745,50.895980498244434],[-122.2954327457787,50.82746965080752],[-122.22776009990628,50.86179313358733],[-122.14696744625932,50.851953726190494],[-122.06927627977069,50.8129444143689],[-122.02094851149654,50.8058016027677],[-121.969777269192,50.78777340686032],[-121.93430785194366,50.742934629795656],[-121.97687757946125,50.74311975165648],[-121.9904985600516,50.778930669328766],[-122.02435423960809,50.779196934371576],[-122.0430018633243,50.8081747222727],[-122.13706244128817,50.80928417522011],[-122.14906263300279,50.832664815364495],[-122.16239823572273,50.81906386729214],[-122.09294417619387,50.769038839886335],[-122.128788153401,50.74338020694914],[-122.17212293062141,50.763977703358805],[-122.26248951576378,50.73869678986796],[-122.39152966259975,50.75452013416971],[-122.48893842125966,50.73971443787874],[-122.58818242332451,50.702155542326864],[-122.58893043767948,50.642358117693576],[-122.61146884047784,50.63567289302123],[-122.60986272699495,50.599792438595934],[-122.50414790777144,50.566508145246175],[-122.46677707948534,50.59104845616035],[-122.40919805148008,50.59133940678646],[-122.41885282534211,50.55264160569449],[-122.33776736440062,50.52056794015604],[-122.28730033499967,50.47542887941208],[-122.30444443707522,50.430923600812314],[-122.33593650756536,50.41616797616795],[-122.39654677220125,50.4111205622659],[-122.48543520544892,50.44346352746839],[-122.52518821605885,50.4148000414274],[-122.5170667777707,50.38773724722238],[-122.47694583546968,50.383480208177005],[-122.43875097179607,50.33534754796712],[-122.36638152145206,50.311555489021984],[-122.37365936201573,50.26160951340704],[-122.35346504232024,50.23099222432868],[-122.30163009329088,50.229787286784706],[-122.23805829343974,50.28765128745688],[-122.23429582116285,50.32468896459096],[-122.16740236785083,50.34648532613945],[-122.11799557801481,50.4161280681231],[-122.11914122739884,50.43278394663732],[-122.01515140639692,50.41437906273872],[-121.88311958008202,50.41933245827396],[-121.86243253319742,50.46088489460861],[-121.78490768399108,50.530582172532675],[-121.80453543760623,50.53106524156325],[-121.80250463443934,50.555050533520735],[-121.76624407579465,50.54638153875979],[-121.76596858389708,50.750211984516135],[-121.74357322745756,50.750391531964475],[-121.72068815719447,50.7937187057892],[-121.71989252021886,50.83770026665225],[-121.67239632475585,50.85285256261618],[-121.67283307483247,50.88163385893976],[-121.62533767023426,50.89604108877572],[-121.6260853820538,50.9249547626597]],[[-121.83350524578135,50.70420403646527],[-121.84026118464384,50.704609653544175],[-121.83984428829216,50.70867346280514],[-121.83298900976712,50.70829406856144],[-121.83350524578135,50.70420403646527]],[[-121.80370337466658,50.68798260440808],[-121.80337929256997,50.68430889230906],[-121.81202699975267,50.68424239355966],[-121.81206946341297,50.68879673967452],[-121.80370337466658,50.68798260440808]],[[-122.29404420424216,50.705674179740974],[-122.29384023662433,50.700947590731694],[-122.30316645823424,50.70023027240586],[-122.30283473337258,50.70589205892245],[-122.29404420424216,50.705674179740974]],[[-121.8464654575338,50.586845569650656],[-121.84648760980383,50.57956784771556],[-121.8579882905819,50.579597624664714],[-121.85716480440333,50.59182081611249],[-121.8464654575338,50.586845569650656]],[[-121.91771502872216,50.76473127177678],[-121.91343753850006,50.754956584332106],[-121.93149924707075,50.75530727313615],[-121.91771502872216,50.76473127177678]],[[-121.86838240513212,50.74352180134918],[-121.86093785712895,50.742540676223555],[-121.86918977254955,50.73967077774323],[-121.87748143471796,50.73667624084273],[-121.88320583237696,50.745056252863336],[-121.86838240513212,50.74352180134918]],[[-121.79536463870993,50.628918355784016],[-121.80364542855271,50.648571737336376],[-121.79534738749932,50.64869988165953],[-121.79536463870993,50.628918355784016]],[[-121.83589596308636,50.76569152149898],[-121.85601582238914,50.78943620152741],[-121.82752598108065,50.78219646351682],[-121.83112291948743,50.76570564333277],[-121.83085180837416,50.75833276453954],[-121.83576902108592,50.76240812734456],[-121.83589596308636,50.76569152149898]],[[-122.27527441784757,50.706312564313755],[-122.27543757941181,50.702888426160435],[-122.28505009494772,50.7028369449282],[-122.28002657811973,50.70637878244096],[-122.27527441784757,50.706312564313755]],[[-122.22125192205533,50.735079405953584],[-122.17346186481004,50.73363682312145],[-122.18606802323241,50.72482496356811],[-122.22125192205533,50.735079405953584]],[[-121.81648625232253,50.89596118979956],[-121.83274543885285,50.8712621615997],[-121.8684500141281,50.867036554844475],[-121.86612772089555,50.897404471354726],[-121.81648625232253,50.89596118979956]],[[-121.90596594311451,50.720316850520156],[-121.88482629076654,50.64949516504053],[-121.91712616125086,50.66598416195207],[-121.9214056719644,50.66539291106237],[-121.89587591403571,50.64967366522257],[-121.92380477329147,50.64305875375055],[-121.92283192971857,50.65430851155894],[-121.98952891421274,50.66690887047751],[-121.98877483477796,50.66847606265857],[-121.98718153346223,50.6688392565413],[-121.95658250896601,50.67185132410411],[-121.94407035286903,50.6942607673048],[-121.91209683241682,50.71893669627566],[-121.91436334827551,50.72274156632622],[-121.90625456072019,50.72265629232987],[-121.90596594311451,50.720316850520156]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Squamish-Lillooet B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931034","name":"Squamish-Lillooet B"}},{"type":"Feature","geometry":{"coordinates":[[[-122.22125192205533,50.735079405953584],[-122.18606802323241,50.72482496356811],[-122.17346186481004,50.73363682312145],[-122.22125192205533,50.735079405953584]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Slosh 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931831","name":"Slosh 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.86838240513212,50.74352180134918],[-121.88320583237696,50.745056252863336],[-121.87748143471796,50.73667624084273],[-121.86918977254955,50.73967077774323],[-121.87117228497762,50.74214758596765],[-121.86838240513212,50.74352180134918]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 1B","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931842","name":"Fountain 1B"}},{"type":"Feature","geometry":{"coordinates":[[[-121.86918977254955,50.73967077774323],[-121.86093785712895,50.742540676223555],[-121.87117228497762,50.74214758596765],[-121.86918977254955,50.73967077774323]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931816","name":"Fountain 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.86093785712895,50.742540676223555],[-121.86838240513212,50.74352180134918],[-121.87117228497762,50.74214758596765],[-121.86093785712895,50.742540676223555]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 1D","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931825","name":"Fountain 1D"}},{"type":"Feature","geometry":{"coordinates":[[[-121.91771502872216,50.76473127177678],[-121.93149924707075,50.75530727313615],[-121.91343753850006,50.754956584332106],[-121.91771502872216,50.76473127177678]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931818","name":"Fountain 10"}},{"type":"Feature","geometry":{"coordinates":[[[-121.83112291948743,50.76570564333277],[-121.83589596308636,50.76569152149898],[-121.83576902108592,50.76240812734456],[-121.83085180837416,50.75833276453954],[-121.83112291948743,50.76570564333277]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 3A","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931834","name":"Fountain 3A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.83112291948743,50.76570564333277],[-121.82752598108065,50.78219646351682],[-121.85601582238914,50.78943620152741],[-121.83589596308636,50.76569152149898],[-121.83112291948743,50.76570564333277]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Fountain 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931817","name":"Fountain 3"}},{"type":"Feature","geometry":{"coordinates":[[[-122.14906263300279,50.832664815364495],[-122.13706244128817,50.80928417522011],[-122.0430018633243,50.8081747222727],[-122.02435423960809,50.779196934371576],[-121.9904985600516,50.778930669328766],[-121.97687757946125,50.74311975165648],[-121.93430785194366,50.742934629795656],[-121.969777269192,50.78777340686032],[-122.02094851149654,50.8058016027677],[-122.06927627977069,50.8129444143689],[-122.14696744625932,50.851953726190494],[-122.14906263300279,50.832664815364495]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Bridge River 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931813","name":"Bridge River 1"}},{"type":"Feature","geometry":{"coordinates":[[[-122.61844850494086,51.081196655137816],[-122.67518651543212,51.09865077284866],[-122.74303417989832,51.15911070513172],[-122.776047973392,51.13761980002479],[-122.82251969193076,51.14478608660905],[-122.90525868681141,51.183901831452424],[-123.0331586060811,51.200650940824076],[-123.05912350276417,51.1809807344938],[-123.0503195907154,51.14979490641802],[-123.14672119896261,51.122734879266034],[-123.18232472971822,51.07226538199047],[-123.24928221089621,51.04395478479966],[-123.24344186612224,51.00039390213633],[-123.4517481928313,50.98080406115071],[-123.6070904871157,50.901569832553115],[-123.66218832374228,50.880379108329834],[-123.75821747490323,50.88346399214995],[-123.71823179450918,50.871269521032715],[-123.7295082823491,50.84286088094488],[-123.71987186847723,50.8012551330794],[-123.63005121341124,50.79259964474471],[-123.60707809398399,50.77680002432373],[-123.56281667968877,50.797548756932],[-123.50280303418309,50.779854178394196],[-123.43907265356711,50.79654941823708],[-123.35825639945722,50.761165227057226],[-123.32132706292492,50.731355466706646],[-123.23580113211574,50.72296031273116],[-123.16370945355038,50.63470040146756],[-123.1325152190257,50.63271023132497],[-123.0814748905392,50.59399735166709],[-123.01880956950396,50.60111020906699],[-122.95676149318567,50.54872768967846],[-122.92793934293557,50.601178201420346],[-122.86107123898405,50.619491430942844],[-122.83283343294961,50.64619964999279],[-122.72900999799592,50.656096967994905],[-122.70392772354049,50.64355494051535],[-122.62923740521094,50.65280706398429],[-122.61146884047784,50.63567289302123],[-122.58893043767948,50.642358117693576],[-122.58818242332451,50.702155542326864],[-122.48893842125966,50.73971443787874],[-122.39152966259975,50.75452013416971],[-122.26248951576378,50.73869678986796],[-122.17212293062141,50.763977703358805],[-122.128788153401,50.74338020694914],[-122.09294417619387,50.769038839886335],[-122.16239823572273,50.81906386729214],[-122.14906263300279,50.832664815364495],[-122.14696744625932,50.851953726190494],[-122.22776009990628,50.86179313358733],[-122.2954327457787,50.82746965080752],[-122.422368545745,50.895980498244434],[-122.43211431572566,50.9327919516182],[-122.53676667088638,50.96151593946342],[-122.58794119484877,51.00944550172126],[-122.57253352586079,51.034060235233476],[-122.61844850494086,51.081196655137816]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Squamish-Lillooet A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931032","name":"Squamish-Lillooet A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.81648625232253,50.89596118979956],[-121.86612772089555,50.897404471354726],[-121.8684500141281,50.867036554844475],[-121.83274543885285,50.8712621615997],[-121.81648625232253,50.89596118979956]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Squamish-Lillooet","census_subdivision":"Pavilion 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5931","census_subdivision_code":"5931829","name":"Pavilion 1"}},{"type":"Feature","geometry":{"coordinates":[[[-134.98622754904167,60.00001281904278],[-135.59802245193995,60.000058644764785],[-136.50000001039552,59.99999998797954],[-137.00000001008164,60.0000000042633],[-137.49999997394298,60.000000000531],[-137.99999998414833,60.000000006237165],[-138.50000003442148,60.000000000562096],[-139.0522010411841,60.0000406474665],[-139.04213094516098,59.991567962790064],[-138.7908234329654,59.92299071539709],[-138.70578523037895,59.906239995703636],[-138.65629932969114,59.799224081146704],[-138.60542550811186,59.757690148177865],[-138.23666079490695,59.57012415013162],[-137.87804393868265,59.381441715707226],[-137.60206921300198,59.24072505486144],[-137.49931352014505,58.98313853291263],[-137.52672886439257,58.90659879273748],[-137.4465623846557,58.9086617376359],[-137.28840773955164,58.999481953356366],[-137.2366480986645,59.01143785862013],[-136.99963448320622,59.091363956864946],[-136.82467003873046,59.15980142441974],[-136.58199214807448,59.16554119337505],[-136.46749461024496,59.28456206371763],[-136.47624805225632,59.464192707916744],[-136.39773530844113,59.447177031679786],[-136.30143606390345,59.465837689773245],[-136.23628501754604,59.52671140344323],[-136.24140605065017,59.55910280233396],[-136.3557124755909,59.60067303831466],[-136.19525108676726,59.638812684436516],[-135.9456889268942,59.6636223980322],[-135.479005207944,59.7986125970738],[-135.3770228365201,59.74292598059732],[-135.2347073582717,59.69594991389383],[-135.2218148039441,59.664146867554386],[-135.15445466272797,59.626478672320886],[-135.11754594846008,59.6233833890751],[-135.0277080623283,59.563918070987555],[-135.02798883695033,59.47630230400011],[-135.0975276258429,59.427003110015484],[-134.98924636318853,59.38787571240176],[-135.03020196243003,59.348351091907475],[-134.95893515335584,59.28108634941901],[-134.69929969859365,59.248388765625364],[-134.67794727745962,59.192804312619224],[-134.56979928896266,59.13350376560262],[-134.48478307227992,59.133387134739905],[-134.44491903832082,59.08647402440201],[-134.38537490218124,59.04139666812193],[-134.40760749037082,58.97844545279188],[-134.31227859598047,58.96139113919767],[-134.33738290363453,58.92033537103034],[-134.25643375791063,58.85907245262983],[-134.002585809312,58.77409484756657],[-133.84133308491857,58.73014897156962],[-133.69947134485628,58.609113611527206],[-133.50418276283273,58.49637769658137],[-133.3817976969062,58.43255160410078],[-133.46127439842482,58.38987267167143],[-133.35407056742574,58.28339962566179],[-133.17239918952723,58.151641311987234],[-133.06954316545807,58.000052424647734],[-132.50059206084646,57.99991395925476],[-132.00078064155474,57.99989679682487],[-131.31898966465423,57.99992755125583],[-131.00167476791418,58.000551352823365],[-131.00137318148535,58.0052562121639],[-131.0007599002577,58.012370962005754],[-131.00421573453767,58.06751692047355],[-131.0045837474398,58.6098380869848],[-131.00978700692485,59.002096855950285],[-130.23992880938792,59.00117449537923],[-129.79776144849632,59.00058811705333],[-128.94319054554407,59.00225460244679],[-128.95873555254627,58.74781277541639],[-129.00224609914082,57.99875932475676],[-129.00273603813312,57.86942992540003],[-129.00205422043302,57.164389392052094],[-128.93061529663225,57.147634313285614],[-128.8500446370254,57.11665819777148],[-128.7861158966738,57.07566827170367],[-128.78065648546854,57.05289427424618],[-128.72627203026263,57.042146044549895],[-128.68656797375746,56.985422881646834],[-128.66151631430748,56.972271038352275],[-128.66407441786336,56.926321281020165],[-128.69334114916217,56.878426468104934],[-128.6344699384192,56.883641176894585],[-128.5626913577537,56.84342506805097],[-128.35851848773495,56.752981376949215],[-128.25926713244735,56.74822551886103],[-128.17024622374518,56.71971600882844],[-128.1610036817986,56.69400004032719],[-128.17651951689112,56.64344766670786],[-128.11058845682584,56.639382398132476],[-128.0711191287651,56.66664086766819],[-127.98947867069485,56.61131676168713],[-127.91621840587973,56.61507143406745],[-127.85449311170456,56.542909840562444],[-127.96677690766941,56.52860925393715],[-127.98874221646149,56.510441959970784],[-127.96379459931059,56.451151260913086],[-127.9786224067913,56.43542587409932],[-128.0801032388903,56.41412423453311],[-128.1365055243514,56.42760780746872],[-128.16351761250104,56.453477548676936],[-128.26523345008627,56.41902867937995],[-128.27317577973764,56.38341559654514],[-128.109344085347,56.34818375148173],[-128.10580942540267,56.30942579908445],[-128.20206004410062,56.30091777287178],[-128.28409004523553,56.246574770599764],[-128.27549173557816,56.2142032361815],[-128.29557149116846,56.19050643440799],[-128.27871168131236,56.11028458614809],[-128.32162047997872,56.09208688302273],[-128.4093034636311,56.10914748670717],[-128.49209066353603,56.10217272508459],[-128.52256496503102,56.08372512528083],[-128.39152662238655,56.02775354613333],[-128.36462689175144,56.003179122828925],[-127.94153266919186,55.99993573269343],[-127.9182200361711,56.002813462108804],[-127.50040355544016,56.00150256662776],[-127.02431387805869,56.00010236242619],[-126.50020204960522,55.99996801792858],[-126.00105088280027,55.999537762459504],[-125.24993180652605,56.00005465786452],[-124.44068574746872,55.998926234495066],[-124.4976322199731,56.06725261174548],[-124.48399810155561,56.13000291424693],[-124.6610171600011,56.11611630733481],[-124.71546395694232,56.1338002747243],[-124.83285271718228,56.223537575767374],[-124.92350692055065,56.24437289987409],[-125.04165338959716,56.20310438607496],[-125.06366117060783,56.26306861478362],[-125.11909586907309,56.30359588615635],[-125.18902778044966,56.294742849881246],[-125.24546383747587,56.250564309133864],[-125.32462936236386,56.24399149538499],[-125.40377374737645,56.25294838642072],[-125.45768812660125,56.23335394762308],[-125.57478856211846,56.168991647706655],[-125.63517965857052,56.151264129160964],[-125.65318908835462,56.169164351252995],[-125.65662760228427,56.22858523772123],[-125.73761841824033,56.19057509748566],[-125.86563951842994,56.14520393723921],[-125.95550025483509,56.14292791201176],[-125.97172873867083,56.166341184491046],[-125.98062199638194,56.245629394437934],[-126.11632286831002,56.271922216278945],[-126.19583645209973,56.350355421215035],[-126.10036232692713,56.39261806000405],[-126.10187289898445,56.42543834034634],[-126.18245635248061,56.464897347460756],[-126.19308306150405,56.48104665064231],[-126.14192543268356,56.52950095106442],[-126.14302735297828,56.57667750368188],[-126.17041023827464,56.612160548281985],[-126.23126880821559,56.64730084171763],[-126.33150951256525,56.67736953298613],[-126.41767038361738,56.654778543252704],[-126.48831323541309,56.6646942088388],[-126.67483776965257,56.77175921034285],[-126.71722302855076,56.76634251503262],[-126.81148711071684,56.68032254027607],[-126.9022749718439,56.69247664336345],[-126.99288282207378,56.63222467526293],[-127.1010753415934,56.61353576068999],[-127.12886368133778,56.62639718236888],[-127.22228546377107,56.74590304050535],[-127.36228685471946,56.689962620779625],[-127.41585663280442,56.676814717881946],[-127.53273830708572,56.74067010539877],[-127.52331490084094,56.773049565021815],[-127.60335234314124,56.833985183954745],[-127.56399081974301,56.86165542258177],[-127.60380666995502,56.88877957465501],[-127.54478789812437,56.931354699418215],[-127.56117430689231,56.977174579115356],[-127.67709542173283,56.9767776621279],[-127.73286907871747,57.019632087095566],[-127.7303493754962,57.10996591954708],[-127.6969556402724,57.14090119354798],[-127.60237561575724,57.1516457126469],[-127.52153611260925,57.17068136899169],[-127.46726998070545,57.21003140574682],[-127.49123615890278,57.30344307548504],[-127.48027220143011,57.335693040716876],[-127.37426531915764,57.418194279735445],[-127.3029031329018,57.446671942208404],[-127.32508630386808,57.482248883949126],[-127.34188682545265,57.54904730106093],[-127.27191057780878,57.603187167840986],[-127.18140489294294,57.59766067993483],[-127.14525016911797,57.57754610275056],[-127.15014627342167,57.53589891074127],[-127.0930788235751,57.528133242970156],[-127.05704518574962,57.50727249859882],[-126.98797135294814,57.52995722227146],[-126.79613810572351,57.565860741075205],[-126.78429763337924,57.576054358877876],[-126.87013022968404,57.64011713084417],[-126.83666198788384,57.66821923454067],[-126.85251346213386,57.68816644751691],[-126.91819229356234,57.698720763983594],[-126.9812672375927,57.76080983050723],[-126.95909120290038,57.79708139724182],[-126.86915363009429,57.785327600558794],[-126.88795656467417,57.86731939352394],[-126.97059238666226,57.933119859484485],[-126.98002797722398,57.96122368010072],[-126.95093980402464,57.989446759869104],[-126.77301503608936,58.01106945655417],[-126.70305576113398,58.027104219171925],[-126.66290597411921,57.99082239270512],[-126.60412412325726,57.960207412452704],[-126.51803226322481,57.94094655517243],[-126.3852507944324,57.926192123964846],[-126.31593371748458,57.86191574620357],[-126.2687118124238,57.855704310239496],[-126.22874815912746,57.93374019781578],[-126.1829092620949,57.94455961672054],[-126.14009412366404,57.92236739697468],[-126.07794258643194,57.91366828205003],[-126.04409116648816,57.96693863093876],[-125.97473640625579,57.96703257670572],[-125.91639514807451,57.98068269470776],[-125.83745973242829,57.97939419097559],[-125.7973561603639,57.966046466795326],[-125.78964937730393,57.92259719534838],[-125.74735831650445,57.8655487267122],[-125.69960128177408,57.86827013678149],[-125.65344340332025,57.92222100357709],[-125.59382799487828,57.91425245504594],[-125.48897578289302,57.941191504759594],[-125.45103236313152,57.971562700550464],[-125.38658025491164,57.98871411508348],[-125.25083079397781,58.00541789196301],[-125.2039071216588,58.022356291798495],[-125.09470079818068,58.01910197995903],[-124.98234871716552,57.98142477376542],[-124.94836471156168,57.99987025305091],[-124.91702713540563,58.030427329346935],[-124.91906686116562,58.07397154777613],[-124.86096492518996,58.12489038574302],[-124.88395537530289,58.16431677519982],[-124.8297049637391,58.20706136316344],[-124.9262669607891,58.253214109446525],[-124.9518669774111,58.23083551557063],[-125.16010571789533,58.24383674426087],[-125.20129913933505,58.23926415823223],[-125.28862133809409,58.30289376734997],[-125.32853319011899,58.2777707600901],[-125.4393467446414,58.34113453888752],[-125.48049818883521,58.308653136590664],[-125.55184269281894,58.31955345176527],[-125.65019138901549,58.30391259963858],[-125.71739303146826,58.30727590804862],[-125.82296812389755,58.36940409423168],[-125.8574543296773,58.41265744198077],[-125.9308900576435,58.395287848271295],[-126.06009712044737,58.4204842062932],[-126.07055007571046,58.449416802244244],[-126.20759362218027,58.4934235489848],[-126.28482571545624,58.549318849814306],[-126.30289601714826,58.59835136786487],[-126.33239395450197,58.61003848056533],[-126.40327062486635,58.596896270188736],[-126.48676978381651,58.60504458222862],[-126.5519857054852,58.57913497269119],[-126.60559181916668,58.585153223032925],[-126.6999012797205,58.64886990575436],[-126.7438677776015,58.667261444228416],[-126.9066801292143,58.66116645361502],[-126.8343959882457,58.7221094449708],[-126.89534845075339,58.7781309802924],[-126.94867705604956,58.80897347312023],[-127.02138492542254,58.806628820918775],[-127.05941939565626,58.85060176725167],[-126.99239779667788,58.90933567177222],[-126.94346329590266,58.97177157454199],[-126.95138547408713,59.024687936508116],[-126.97856134837383,59.049811202180166],[-126.9721482827801,59.10299484828454],[-127.02763400741513,59.13295183392962],[-127.11320357873834,59.120462492430214],[-127.17093650941902,59.14019722600758],[-127.22305003550804,59.21721136671861],[-127.22739097444232,59.24219625674133],[-127.27970592304142,59.28216879643267],[-127.33312279131147,59.34657883643649],[-127.34264568959883,59.37866314145689],[-127.42771386541615,59.45525053826308],[-127.4939886923378,59.53008095689706],[-127.53267728460453,59.534416930580214],[-127.59267264941361,59.59704074899553],[-127.72766554342152,59.62997521239896],[-127.75261060553449,59.66664882640882],[-127.79785007139814,59.69513220707044],[-127.80272594142238,59.78544605983485],[-127.76164166170871,59.799696981107076],[-127.76918761410911,59.828238566261156],[-127.6606356469357,59.8550345443702],[-127.65549982549155,59.88014259056828],[-127.72860753660227,59.89570745163183],[-127.72500008774584,60.00002214929825],[-128.49999999605464,59.9999999901002],[-128.99999996852813,59.999999998622485],[-129.5000000100188,59.99999999076995],[-130.2500000015184,59.99999999317735],[-131.08543924325744,60.0000553532497],[-131.2031441115969,60.00003747757813],[-131.9999999865491,59.9999999953151],[-132.50000000977442,59.9999999885164],[-133.00000000502897,60.00000000257286],[-133.50000002098517,60.000000004934996],[-133.99999997848317,60.00000000071053],[-134.50000001748205,59.999999998864126],[-134.98622754904167,60.00001281904278]],[[-133.701866411956,59.569582010139094],[-133.70078003535136,59.56744345392548],[-133.70328263345036,59.567200406590764],[-133.70412022054373,59.5684823836597],[-133.701866411956,59.569582010139094]],[[-129.21728317117714,59.19195771158862],[-129.21535640871664,59.18595227950111],[-129.22957207712219,59.185385109712406],[-129.2301850050441,59.190862967554175],[-129.21728317117714,59.19195771158862]],[[-129.29293088732058,59.29764739967367],[-129.27749586654522,59.29045141713401],[-129.29711754772717,59.2773267676637],[-129.3039374434075,59.28501918620125],[-129.29293088732058,59.29764739967367]],[[-128.50262152534404,59.923637622078424],[-128.52502825235288,59.93209508301558],[-128.50228590540266,59.93976179245075],[-128.48436006433184,59.93226725250593],[-128.49319187198287,59.92303796680387],[-128.50262152534404,59.923637622078424]],[[-133.67794247157656,59.51624157781204],[-133.60966874556746,59.48375863297329],[-133.6460690871553,59.4771797334274],[-133.67794247157656,59.51624157781204]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Stikine Region","census_subdivision":"Stikine Region","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5970","census_division_code":"5957","census_subdivision_code":"5957022","name":"Stikine Region"}},{"type":"Feature","geometry":{"coordinates":[[[-129.21728317117714,59.19195771158862],[-129.2301850050441,59.190862967554175],[-129.22957207712219,59.185385109712406],[-129.21535640871664,59.18595227950111],[-129.21728317117714,59.19195771158862]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Stikine Region","census_subdivision":"Good Hope Lake","type":"Indian settlement","census_year":"2021","economic_region_id":"5970","census_division_code":"5957","census_subdivision_code":"5957804","name":"Good Hope Lake"}},{"type":"Feature","geometry":{"coordinates":[[[-129.29293088732058,59.29764739967367],[-129.3039374434075,59.28501918620125],[-129.29711754772717,59.2773267676637],[-129.27749586654522,59.29045141713401],[-129.29293088732058,59.29764739967367]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Stikine Region","census_subdivision":"Dease River 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5957","census_subdivision_code":"5957820","name":"Dease River 1"}},{"type":"Feature","geometry":{"coordinates":[[[-133.67794247157656,59.51624157781204],[-133.6460690871553,59.4771797334274],[-133.60966874556746,59.48375863297329],[-133.67794247157656,59.51624157781204]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Stikine Region","census_subdivision":"Five Mile Point 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5957","census_subdivision_code":"5957803","name":"Five Mile Point 3"}},{"type":"Feature","geometry":{"coordinates":[[[-133.701866411956,59.569582010139094],[-133.70412022054373,59.5684823836597],[-133.70328263345036,59.567200406590764],[-133.70078003535136,59.56744345392548],[-133.701866411956,59.569582010139094]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Stikine Region","census_subdivision":"Unnamed 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5957","census_subdivision_code":"5957802","name":"Unnamed 10"}},{"type":"Feature","geometry":{"coordinates":[[[-128.49319187198287,59.92303796680387],[-128.4939094081969,59.92567020808006],[-128.50262152534404,59.923637622078424],[-128.49319187198287,59.92303796680387]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Stikine Region","census_subdivision":"Lower Post","type":"Indian settlement","census_year":"2021","economic_region_id":"5970","census_division_code":"5957","census_subdivision_code":"5957813","name":"Lower Post"}},{"type":"Feature","geometry":{"coordinates":[[[-128.49319187198287,59.92303796680387],[-128.48436006433184,59.93226725250593],[-128.50228590540266,59.93976179245075],[-128.52502825235288,59.93209508301558],[-128.50262152534404,59.923637622078424],[-128.4939094081969,59.92567020808006],[-128.49319187198287,59.92303796680387]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Nechako","regional_district_aka_census_division":"Stikine Region","census_subdivision":"Liard River 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5970","census_division_code":"5957","census_subdivision_code":"5957814","name":"Liard River 3"}},{"type":"Feature","geometry":{"coordinates":[[[-126.61626116262782,49.59088937205318],[-126.61993934351743,49.59549956746149],[-126.63715638944765,49.59882720700165],[-126.63720414904171,49.59275861341516],[-126.62775013981651,49.5936722560784],[-126.61626116262782,49.59088937205318]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Yuquot 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924814","name":"Yuquot 1"}},{"type":"Feature","geometry":{"coordinates":[[[-126.11623538446271,49.6846072043592],[-126.12270867008344,49.68675597810172],[-126.12275920910865,49.68282582995175],[-126.11623538446271,49.6846072043592]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Ahaminaquus 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924803","name":"Ahaminaquus 12"}},{"type":"Feature","geometry":{"coordinates":[[[-126.05704039179504,49.79370792222367],[-126.05810422887826,49.77107145444185],[-126.13873377701825,49.67197103772286],[-126.09771034645262,49.67141693771763],[-126.10125057377496,49.70868341688446],[-126.04301738772865,49.76725314495208],[-126.05704039179504,49.79370792222367]],[[-126.11623538446271,49.6846072043592],[-126.12275920910865,49.68282582995175],[-126.12270867008344,49.68675597810172],[-126.11623538446271,49.6846072043592]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Gold River","type":"Village","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924025","name":"Gold River"}},{"type":"Feature","geometry":{"coordinates":[[[-125.41076554930521,50.00853301249461],[-125.48365809022509,50.026482288714966],[-125.60971593352001,49.989948642076676],[-125.63116477543188,49.99948404147591],[-125.77609745535011,49.99709040846026],[-125.90857087575695,49.999546905055055],[-125.8942896821384,49.977048753411616],[-125.92070265748482,49.94921023118281],[-125.91467729333179,49.90163431976575],[-125.8811596388581,49.87160636554901],[-125.91485697594246,49.83737676784932],[-125.91450811526056,49.77612018914798],[-125.86203776107584,49.74521255992034],[-125.80284223807057,49.688201641788986],[-125.80271162211979,49.66284958969106],[-125.73432914244123,49.64861721116295],[-125.70092494758192,49.630654678576306],[-125.74847634761907,49.57264702621066],[-125.72753538145999,49.544273021547276],[-125.74113128368451,49.52248126499058],[-125.56703415860397,49.498249741140064],[-125.4998118660986,49.47816908018078],[-125.46881735577001,49.52821696644871],[-125.3795739891982,49.547902580267326],[-125.42652104146819,49.642665618237686],[-125.5137441950936,49.71021116032123],[-125.49128780694659,49.74080975117659],[-125.54589139494922,49.75534839900808],[-125.5530721994635,49.7851896182284],[-125.48570589810844,49.82747354591419],[-125.42315120300469,49.82885550489648],[-125.40343322746598,49.87447880022029],[-125.35599680588923,49.87450628685312],[-125.35188710728463,49.91052413659281],[-125.32372802838138,49.919740317040315],[-125.28106423530942,49.885018396800156],[-125.25663560264043,49.896940496821365],[-125.19838648838395,49.886941093337384],[-125.15389069936462,49.86552539561365],[-125.11250732465854,49.87473289849452],[-125.00030469675731,49.870986644356975],[-124.88418210667116,49.873205504901605],[-124.93989181291727,49.9401700876884],[-125.0014329878601,49.93737229976938],[-125.12356654731494,49.967444346856354],[-125.19135746793312,49.95087511444205],[-125.1955825521568,49.915914685430344],[-125.20567582780723,49.90302107494131],[-125.22345665639924,49.915772241817365],[-125.28889448640558,49.916364706875555],[-125.3270716582186,49.99980135182666],[-125.41076554930521,50.00853301249461]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Strathcona D (Oyster Bay - Buttle Lake)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924042","name":"Strathcona D (Oyster Bay - Buttle Lake)"}},{"type":"Feature","geometry":{"coordinates":[[[-126.08821348866103,49.820588044816084],[-126.07903781671357,49.806516417815715],[-126.06667553962819,49.81104101007511],[-126.0806777938901,49.82629951376198],[-126.08821348866103,49.820588044816084]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Tsa Xana 18","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924835","name":"Tsa Xana 18"}},{"type":"Feature","geometry":{"coordinates":[[[-126.98017785056078,49.87652877390634],[-126.98029143353293,49.8738313649184],[-126.97478145495016,49.872108057425905],[-126.97435350334975,49.876958927280306],[-126.98017785056078,49.87652877390634]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Chenahkint 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924805","name":"Chenahkint 12"}},{"type":"Feature","geometry":{"coordinates":[[[-125.22345665639924,49.915772241817365],[-125.20567582780723,49.90302107494131],[-125.1955825521568,49.915914685430344],[-125.22345665639924,49.915772241817365]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Nenagwas 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924843","name":"Nenagwas 12"}},{"type":"Feature","geometry":{"coordinates":[[[-127.37776527404323,50.25757587717643],[-127.41038573293771,50.2504750584824],[-127.52616174356527,50.27891655540394],[-127.54208904685837,50.29206463126737],[-127.66186314052989,50.23976784614868],[-127.73472597135715,50.189646140626444],[-127.73622438928948,50.16379543449825],[-127.80337943408044,50.14159590966315],[-127.86085406617856,50.14223213277769],[-127.9674036108795,50.122168668928765],[-127.95201047194344,50.09080870230505],[-127.89796369808073,50.05544814519007],[-127.91418929117395,50.01183114771062],[-127.92337483710999,49.93464531255562],[-127.78316142102642,49.77306033035086],[-127.70477436438362,49.69929035000074],[-127.45207438672558,49.552620081215785],[-127.29490352167362,49.51378429525509],[-126.99999999626434,49.5212722763583],[-126.61445839254172,49.54044589057454],[-126.5065359722319,49.54037662639184],[-126.47418448951039,49.5703161984031],[-126.43442922041345,49.57806364903819],[-126.38318690132174,49.56072532217726],[-126.3466283182865,49.59876929818044],[-126.31821749481865,49.6042348068256],[-126.24906143520599,49.5549962881483],[-126.2068254679475,49.55122724209362],[-126.17886221955088,49.56796251317819],[-126.09428426557584,49.56913028529872],[-126.06414842047928,49.551227044415825],[-126.02564849762909,49.57673110942258],[-125.9696933407371,49.58488365171527],[-125.8886072115523,49.546963114330225],[-125.78460620813631,49.539842068734735],[-125.74113128368451,49.52248126499058],[-125.72753538145999,49.544273021547276],[-125.74847634761907,49.57264702621066],[-125.70092494758192,49.630654678576306],[-125.73432914244123,49.64861721116295],[-125.80271162211979,49.66284958969106],[-125.80284223807057,49.688201641788986],[-125.86203776107584,49.74521255992034],[-125.91450811526056,49.77612018914798],[-125.91485697594246,49.83737676784932],[-125.8811596388581,49.87160636554901],[-125.91467729333179,49.90163431976575],[-125.92070265748482,49.94921023118281],[-125.8942896821384,49.977048753411616],[-125.90857087575695,49.999546905055055],[-125.77609745535011,49.99709040846026],[-125.63116477543188,49.99948404147591],[-125.60971593352001,49.989948642076676],[-125.48365809022509,50.026482288714966],[-125.41076554930521,50.00853301249461],[-125.38710259736698,50.04372680700234],[-125.32059603890701,50.059567374801006],[-125.31221419229742,50.09509028272682],[-125.3505075868729,50.12398596567797],[-125.37907278537106,50.251662898372835],[-125.43387242343157,50.34371605272811],[-125.46244472871294,50.338829168214794],[-125.58327951984381,50.376786460924635],[-125.7259818306501,50.36790831422274],[-125.82080864774268,50.38939404116738],[-125.8557087065654,50.38599831542795],[-125.95690570846222,50.4139456461275],[-126.03352749502875,50.45381835072011],[-126.10896461989047,50.471170318636425],[-126.11107797834849,50.397592790493604],[-126.05601051921617,50.40462226366634],[-125.99486138895372,50.34038787807927],[-126.05484599890832,50.33958637442145],[-126.04232363439338,50.31267295633929],[-125.99540286431905,50.28218961107071],[-126.02770807336807,50.259223158789155],[-126.04457971356734,50.180559709620816],[-126.10080977561974,50.159507397412966],[-126.16034493062355,50.12143450022005],[-126.22572837844602,50.12317255499274],[-126.25422616675796,50.06899605656227],[-126.22629216037333,50.01623011618611],[-126.32602606691239,49.95378312241784],[-126.3487575555831,49.92006381257222],[-126.3888294765869,49.90675499454566],[-126.46951983858217,49.9290411043566],[-126.49398552107954,49.96388654216434],[-126.5715692205315,49.99024488415343],[-126.5587448115338,50.02947015230202],[-126.65903491437938,50.01834551585322],[-126.69320557504236,50.03255048029404],[-126.69542462204372,50.061822377587696],[-126.64701800057863,50.09109493194123],[-126.714143605494,50.1148062960752],[-126.74711314716124,50.103447513102175],[-126.79100593542039,50.12479455859454],[-126.78134759735174,50.15673855927349],[-126.82193470443154,50.16974318595024],[-126.83962438778723,50.138759269032725],[-126.90366665968402,50.190153980536145],[-126.99052376203886,50.1816431324169],[-126.99842100921816,50.2779481543137],[-127.04682367539517,50.32315369692789],[-127.09477100459817,50.340295157468525],[-127.16147741894353,50.2874814113816],[-127.2254551070469,50.264463653546315],[-127.2655790970297,50.284328308016626],[-127.29692306413267,50.27680550093482],[-127.29109781811653,50.24011000156111],[-127.33392501516441,50.23200417411109],[-127.37776527404323,50.25757587717643]],[[-126.937951427428,49.98711726426814],[-126.94346255290544,49.98889318630642],[-126.9380215773479,49.99091137754751],[-126.937951427428,49.98711726426814]],[[-127.37780296521817,50.029595668296594],[-127.38101267133061,50.03251026474542],[-127.37454104863433,50.03283237515171],[-127.37780296521817,50.029595668296594]],[[-126.98017785056078,49.87652877390634],[-126.97435350334975,49.876958927280306],[-126.97478145495016,49.872108057425905],[-126.98029143353293,49.8738313649184],[-126.98017785056078,49.87652877390634]],[[-127.40471975999863,50.01455317128236],[-127.39769346122645,50.014275474282506],[-127.39589914345004,50.00906997325531],[-127.40495573722762,50.007413668955614],[-127.40471975999863,50.01455317128236]],[[-126.61626116262782,49.59088937205318],[-126.62775013981651,49.5936722560784],[-126.63720414904171,49.59275861341516],[-126.63715638944765,49.59882720700165],[-126.61993934351743,49.59549956746149],[-126.61626116262782,49.59088937205318]],[[-126.08821348866103,49.820588044816084],[-126.0806777938901,49.82629951376198],[-126.06667553962819,49.81104101007511],[-126.07903781671357,49.806516417815715],[-126.08821348866103,49.820588044816084]],[[-126.8593229876534,49.979914978223114],[-126.86390871166458,49.97973540970854],[-126.86445162026163,49.98514761352549],[-126.84414168431108,49.99342041434854],[-126.84514951780614,49.96927528387578],[-126.8593229876534,49.979914978223114]],[[-125.95319028075808,50.39197987197781],[-125.9255012522863,50.35764999989535],[-125.95106303934934,50.357650953870156],[-125.96590154120099,50.378264288839844],[-125.95319028075808,50.39197987197781]],[[-126.63761186223812,49.93758945408059],[-126.66082439521318,49.92659864937838],[-126.6598211736957,49.94509988642671],[-126.63761186223812,49.93758945408059]],[[-126.05704039179504,49.79370792222367],[-126.04301738772865,49.76725314495208],[-126.10125057377496,49.70868341688446],[-126.09771034645262,49.67141693771763],[-126.13873377701825,49.67197103772286],[-126.05810422887826,49.77107145444185],[-126.05704039179504,49.79370792222367]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Strathcona A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924048","name":"Strathcona A"}},{"type":"Feature","geometry":{"coordinates":[[[-126.63761186223812,49.93758945408059],[-126.6598211736957,49.94509988642671],[-126.66082439521318,49.92659864937838],[-126.63761186223812,49.93758945408059]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Tahsis","type":"Village","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924030","name":"Tahsis"}},{"type":"Feature","geometry":{"coordinates":[[[-125.24157054910879,49.95647352486585],[-125.24833729820523,49.944029855197705],[-125.2364301063513,49.94473498965875],[-125.24157054910879,49.95647352486585]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Homalco 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924840","name":"Homalco 9"}},{"type":"Feature","geometry":{"coordinates":[[[-126.8593229876534,49.979914978223114],[-126.86445162026163,49.98514761352549],[-126.86390871166458,49.97973540970854],[-126.8593229876534,49.979914978223114]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Ehatis 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924836","name":"Ehatis 11"}},{"type":"Feature","geometry":{"coordinates":[[[-126.8593229876534,49.979914978223114],[-126.84514951780614,49.96927528387578],[-126.84414168431108,49.99342041434854],[-126.86445162026163,49.98514761352549],[-126.8593229876534,49.979914978223114]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Zeballos","type":"Village","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924029","name":"Zeballos"}},{"type":"Feature","geometry":{"coordinates":[[[-126.937951427428,49.98711726426814],[-126.9380215773479,49.99091137754751],[-126.94346255290544,49.98889318630642],[-126.937951427428,49.98711726426814]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Oclucje 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924833","name":"Oclucje 7"}},{"type":"Feature","geometry":{"coordinates":[[[-125.31221419229742,50.09509028272682],[-125.32059603890701,50.059567374801006],[-125.38710259736698,50.04372680700234],[-125.41076554930521,50.00853301249461],[-125.3270716582186,49.99980135182666],[-125.28889448640558,49.916364706875555],[-125.22345665639924,49.915772241817365],[-125.1955825521568,49.915914685430344],[-125.19135746793312,49.95087511444205],[-125.21950271569702,49.98276642465713],[-125.23963273558155,50.0312689183041],[-125.26189046860537,50.03051353616658],[-125.24435041899243,50.04644323470477],[-125.26785704907337,50.07747575755087],[-125.31221419229742,50.09509028272682]],[[-125.24157054910879,49.95647352486585],[-125.2364301063513,49.94473498965875],[-125.24833729820523,49.944029855197705],[-125.24157054910879,49.95647352486585]],[[-125.29240232576187,50.024485647330906],[-125.2838884929174,50.01402329384756],[-125.30276791498312,50.01433950840631],[-125.29240232576187,50.024485647330906]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Campbell River","type":"City","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924034","name":"Campbell River"}},{"type":"Feature","geometry":{"coordinates":[[[-125.19641935557712,50.0110966640228],[-125.19307194703464,49.99676765612589],[-125.17750071249415,49.99624307389862],[-125.1774293730666,50.01904515626796],[-125.19641935557712,50.0110966640228]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Cape Mudge 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924817","name":"Cape Mudge 10"}},{"type":"Feature","geometry":{"coordinates":[[[-127.40471975999863,50.01455317128236],[-127.40495573722762,50.007413668955614],[-127.39589914345004,50.00906997325531],[-127.39769346122645,50.014275474282506],[-127.40471975999863,50.01455317128236]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Village Island 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924813","name":"Village Island 1"}},{"type":"Feature","geometry":{"coordinates":[[[-125.29240232576187,50.024485647330906],[-125.30276791498312,50.01433950840631],[-125.2838884929174,50.01402329384756],[-125.29240232576187,50.024485647330906]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Quinsam 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924812","name":"Quinsam 12"}},{"type":"Feature","geometry":{"coordinates":[[[-127.37780296521817,50.029595668296594],[-127.37454104863433,50.03283237515171],[-127.38101267133061,50.03251026474542],[-127.37780296521817,50.029595668296594]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Houpsitas 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924806","name":"Houpsitas 6"}},{"type":"Feature","geometry":{"coordinates":[[[-125.23963273558155,50.0312689183041],[-125.24435041899243,50.04644323470477],[-125.26189046860537,50.03051353616658],[-125.23963273558155,50.0312689183041]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Campbell River 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924804","name":"Campbell River 11"}},{"type":"Feature","geometry":{"coordinates":[[[-124.86589947199121,50.085268691988865],[-124.89004037141112,50.15120395880614],[-124.98077157323702,50.23823568099643],[-125.01131836332203,50.23212253280982],[-125.00708603411682,50.174102292825495],[-125.09846948080208,50.11527213276908],[-125.12063836247583,50.056090981745854],[-125.10757453271151,50.010898447506825],[-125.02585259887887,49.96604307371714],[-124.93989181291727,49.9401700876884],[-124.97087167020189,49.99943307958455],[-124.93385987789304,50.01039629292242],[-124.87232028666118,50.0023760172968],[-124.8404488104279,50.021217581560244],[-124.86589947199121,50.085268691988865]],[[-124.92487863088532,50.145818821643694],[-124.92026233084754,50.14662016793363],[-124.9165923316703,50.144116357831024],[-124.92311082887852,50.143628128024794],[-124.92487863088532,50.145818821643694]],[[-124.93424809169866,50.136748139045224],[-124.92192502937269,50.12130672943978],[-124.94530169867993,50.12055971581348],[-124.93424809169866,50.136748139045224]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Strathcona B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924052","name":"Strathcona B"}},{"type":"Feature","geometry":{"coordinates":[[[-124.93424809169866,50.136748139045224],[-124.94530169867993,50.12055971581348],[-124.92192502937269,50.12130672943978],[-124.93424809169866,50.136748139045224]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Tork 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924820","name":"Tork 7"}},{"type":"Feature","geometry":{"coordinates":[[[-124.92487863088532,50.145818821643694],[-124.92311082887852,50.143628128024794],[-124.9165923316703,50.144116357831024],[-124.92026233084754,50.14662016793363],[-124.92487863088532,50.145818821643694]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Squirrel Cove 8","type":"Indian reserve","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924818","name":"Squirrel Cove 8"}},{"type":"Feature","geometry":{"coordinates":[[[-125.95319028075808,50.39197987197781],[-125.96590154120099,50.378264288839844],[-125.95106303934934,50.357650953870156],[-125.9255012522863,50.35764999989535],[-125.95319028075808,50.39197987197781]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Sayward","type":"Village","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924039","name":"Sayward"}},{"type":"Feature","geometry":{"coordinates":[[[-123.75821747490323,50.88346399214995],[-123.88187565262668,50.94860085447902],[-123.9366551480512,50.93618494589851],[-123.99579815672352,50.96271144263831],[-124.0276964735825,50.94437187795774],[-124.05994498581431,50.958892056702105],[-124.08714760676375,51.00969932361545],[-124.1552040243606,51.036632669892114],[-124.18532611043514,51.13529324129548],[-124.24527098416738,51.14852771734544],[-124.29731995627125,51.13743392124945],[-124.35088365988182,51.14692466809792],[-124.40248995359144,51.188115045080984],[-124.43378308315984,51.14839911071161],[-124.54480489931305,51.17954292167599],[-124.5808260539096,51.181084987398926],[-124.76203153469957,51.238223843384816],[-124.79976342171618,51.30542415964032],[-124.88787485614019,51.33039189594755],[-124.96529312931656,51.328250530363235],[-125.00900702949681,51.34971769623187],[-125.13118588449427,51.364069327746215],[-125.1771115835742,51.39857993897598],[-125.2510043459237,51.393740654261244],[-125.26666799255864,51.37685835117752],[-125.20366249196893,51.3231859023937],[-125.22512010998994,51.30185761876673],[-125.2839986629721,51.28297736197837],[-125.32864381144702,51.24964934165681],[-125.33151444172492,51.19974378643625],[-125.28264808515803,51.16881522832554],[-125.29669077476022,51.103468280902135],[-125.24289831000658,51.06422050740734],[-125.32507918239936,51.045933845240675],[-125.30896836130043,51.00702760398532],[-125.27997002788568,51.010721586465586],[-125.25277052316598,50.96273254916098],[-125.41156265035933,50.94382463486992],[-125.4970487445419,50.90067378664838],[-125.50489279254693,50.842941734302634],[-125.54395937580497,50.832934307531076],[-125.50323068078505,50.79422526762462],[-125.54991005411489,50.77410968734575],[-125.53758688001699,50.73508967694642],[-125.57570697492154,50.709520201674714],[-125.5616173428385,50.68454886548925],[-125.60521203186464,50.60936302871577],[-125.6628755701612,50.59633688001681],[-125.74043896310724,50.60512438051204],[-125.82782836879605,50.57369026053924],[-125.84850746903612,50.6211689816612],[-125.92669082015092,50.63391214552195],[-126.06187813631755,50.614439697265105],[-126.20224872338318,50.57277592915849],[-126.22809690433178,50.543154374059164],[-126.28049553470785,50.53251544322595],[-126.31954430903508,50.49895620619622],[-126.19238296006039,50.478550725368926],[-126.10896461989047,50.471170318636425],[-126.03352749502875,50.45381835072011],[-125.95690570846222,50.4139456461275],[-125.8557087065654,50.38599831542795],[-125.82080864774268,50.38939404116738],[-125.7259818306501,50.36790831422274],[-125.58327951984381,50.376786460924635],[-125.46244472871294,50.338829168214794],[-125.43387242343157,50.34371605272811],[-125.37907278537106,50.251662898372835],[-125.3505075868729,50.12398596567797],[-125.31221419229742,50.09509028272682],[-125.26785704907337,50.07747575755087],[-125.24435041899243,50.04644323470477],[-125.23963273558155,50.0312689183041],[-125.21950271569702,49.98276642465713],[-125.19135746793312,49.95087511444205],[-125.12356654731494,49.967444346856354],[-125.0014329878601,49.93737229976938],[-124.93989181291727,49.9401700876884],[-125.02585259887887,49.96604307371714],[-125.10757453271151,50.010898447506825],[-125.12063836247583,50.056090981745854],[-125.09846948080208,50.11527213276908],[-125.00708603411682,50.174102292825495],[-125.01131836332203,50.23212253280982],[-124.98077157323702,50.23823568099643],[-124.89004037141112,50.15120395880614],[-124.86589947199121,50.085268691988865],[-124.64260844212474,50.19135775695664],[-124.62532025854041,50.24998037430938],[-124.6583290387969,50.292030088993855],[-124.76848182326647,50.321926129159166],[-124.69940326669506,50.36905250034868],[-124.64822499819056,50.41390588941586],[-124.57522816509304,50.41391935228124],[-124.5740662879456,50.46258943358638],[-124.51335591551444,50.498701560412],[-124.5155735931072,50.526141133079705],[-124.58127529874228,50.5740761716504],[-124.56871143182597,50.60456916725281],[-124.60334244529322,50.63900061866405],[-124.59133108888828,50.66166644199038],[-124.42878138699372,50.72248235444371],[-124.38702100708406,50.7208520088072],[-124.34835663624881,50.74647294603715],[-124.38216357500993,50.77300833729611],[-124.32747612626811,50.818348464557225],[-124.32349533854233,50.85360290291787],[-124.29467483370209,50.863501888323704],[-124.2523187036056,50.84769557873467],[-124.26211806799704,50.82442268919146],[-124.19060475224276,50.80079804245471],[-124.10926966662613,50.78745897286635],[-124.0692616293967,50.84046601543886],[-124.03235191347963,50.81144322287641],[-123.97426442771152,50.80398205056604],[-123.91924491542565,50.742415069641886],[-123.86428154753351,50.7107696818202],[-123.83205492675306,50.713938256212955],[-123.86728277894295,50.747763614373824],[-123.80119101862063,50.79718197493424],[-123.79530284087605,50.833680937769195],[-123.7295082823491,50.84286088094488],[-123.71823179450918,50.871269521032715],[-123.75821747490323,50.88346399214995]],[[-125.19641935557712,50.0110966640228],[-125.1774293730666,50.01904515626796],[-125.17750071249415,49.99624307389862],[-125.19307194703464,49.99676765612589],[-125.19641935557712,50.0110966640228]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Vancouver Island/Coast","regional_district_aka_census_division":"Strathcona","census_subdivision":"Strathcona C","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5910","census_division_code":"5924","census_subdivision_code":"5924054","name":"Strathcona C"}},{"type":"Feature","geometry":{"coordinates":[[[-123.57285618813313,49.45560099503639],[-123.57130823319761,49.3108814591227],[-123.51151896368,49.30909011902223],[-123.51102009458621,49.385592794518246],[-123.51372304109779,49.41421686604249],[-123.52931573172997,49.45549841866184],[-123.57285618813313,49.45560099503639]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Sunshine Coast E","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929026","name":"Sunshine Coast E"}},{"type":"Feature","geometry":{"coordinates":[[[-123.51372304109779,49.41421686604249],[-123.51102009458621,49.385592794518246],[-123.50109923379381,49.40571508428272],[-123.50124380186104,49.408098570808654],[-123.51372304109779,49.41421686604249]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Gibsons","type":"Town","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929005","name":"Gibsons"}},{"type":"Feature","geometry":{"coordinates":[[[-123.50109923379381,49.40571508428272],[-123.49629191366847,49.41112816451418],[-123.50130330990147,49.41066629813065],[-123.50124380186104,49.408098570808654],[-123.50109923379381,49.40571508428272]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Chekwelp 26","type":"Indian reserve","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929801","name":"Chekwelp 26"}},{"type":"Feature","geometry":{"coordinates":[[[-123.57285618813313,49.45560099503639],[-123.59855634074825,49.49084733980158],[-123.59379236721477,49.56737479239839],[-123.57834446649295,49.610966821170244],[-123.6462037070281,49.59080584514742],[-123.67483911088493,49.540211259735706],[-123.68208160824845,49.5003124655691],[-123.7354782191438,49.487187538343534],[-123.73548843154394,49.48629747511017],[-123.73513049152393,49.4672111444336],[-123.709956898081,49.43869405011998],[-123.72328989740234,49.43884834286286],[-123.74333038679534,49.46437345017558],[-123.75340726184346,49.47075210695941],[-123.77171886232543,49.464224022105455],[-123.76699266926536,49.319392649668195],[-123.73837752680708,49.31233839977494],[-123.57130823319761,49.3108814591227],[-123.57285618813313,49.45560099503639]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Sunshine Coast D","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929024","name":"Sunshine Coast D"}},{"type":"Feature","geometry":{"coordinates":[[[[-123.7354782191438,49.487187538343534],[-123.74231081784163,49.5212863314037],[-123.76054783271569,49.513831257091006],[-123.75484645845651,49.51154491091725],[-123.75189390415538,49.503829539481735],[-123.74896636659395,49.502826444033815],[-123.75269330954636,49.486169539272844],[-123.73548843154394,49.48629747511017],[-123.7354782191438,49.487187538343534]]],[[[-123.73513049152393,49.4672111444336],[-123.74333038679534,49.46437345017558],[-123.72328989740234,49.43884834286286],[-123.709956898081,49.43869405011998],[-123.73513049152393,49.4672111444336]]],[[[-123.79835257225089,49.5089796676534],[-123.82733815408959,49.496373486650036],[-123.81609583482758,49.464629781604714],[-123.77171886232543,49.464224022105455],[-123.75340726184346,49.47075210695941],[-123.75337778687727,49.48307214854415],[-123.76719331722352,49.48944467812574],[-123.76460067552159,49.49050391525087],[-123.79585824572641,49.509326351546],[-123.79835257225089,49.5089796676534]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Sechelt","type":"District municipality","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929011","name":"Sechelt"}},{"type":"Feature","geometry":{"coordinates":[[[-123.35160869557859,49.66567098141773],[-123.37310357320258,49.64962432973099],[-123.44328472967022,49.65542194050024],[-123.45775249760311,49.61903142033286],[-123.53140196740091,49.632833343682634],[-123.57834446649295,49.610966821170244],[-123.59379236721477,49.56737479239839],[-123.59855634074825,49.49084733980158],[-123.57285618813313,49.45560099503639],[-123.52931573172997,49.45549841866184],[-123.51372304109779,49.41421686604249],[-123.50124380186104,49.408098570808654],[-123.50130330990147,49.41066629813065],[-123.49629191366847,49.41112816451418],[-123.50109923379381,49.40571508428272],[-123.51102009458621,49.385592794518246],[-123.51151896368,49.30909011902223],[-123.47454509349575,49.30717770573677],[-123.4394525439831,49.33772297145804],[-123.42853158795553,49.37604053441536],[-123.39307287903758,49.408377252296454],[-123.30295103267717,49.41910523497682],[-123.27486868816247,49.48110287112881],[-123.27009203498618,49.52106405996887],[-123.24501630733718,49.57628971813421],[-123.27689368983012,49.59075742864389],[-123.35160869557859,49.66567098141773]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Sunshine Coast F","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929028","name":"Sunshine Coast F"}},{"type":"Feature","geometry":{"coordinates":[[[[-123.73548843154394,49.48629747511017],[-123.75269330954636,49.486169539272844],[-123.75337778687727,49.48307214854415],[-123.75340726184346,49.47075210695941],[-123.74333038679534,49.46437345017558],[-123.73513049152393,49.4672111444336],[-123.73548843154394,49.48629747511017]]],[[[-123.74565614287962,50.09346577477302],[-123.76809733141269,50.07613175794487],[-123.75653066675568,50.07277107254643],[-123.74565614287962,50.09346577477302]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Sechelt (Part) - Sunshine Coast","type":"Indian government district","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929803","name":"Sechelt (Part) - Sunshine Coast"}},{"type":"Feature","geometry":{"coordinates":[[[-123.6201713520494,49.930668601800214],[-123.66021728375637,49.92997117609777],[-123.74681821839998,49.886086873935746],[-123.77515194791874,49.86126354533131],[-123.77173116236165,49.82554343436066],[-123.7975674401995,49.76991482145884],[-123.83582235102266,49.74730258059783],[-123.89444100107511,49.73475772817062],[-123.90416936242015,49.727682767622035],[-123.93936258200094,49.71926503486278],[-123.9272681601909,49.66976903452004],[-123.89050561767105,49.64324944178792],[-123.9369530198655,49.55365140096848],[-124.08564683487957,49.546322820852495],[-124.04508303532279,49.43856997570487],[-124.04004447082157,49.36500137760259],[-123.91732414784867,49.349832333971236],[-123.76699266926536,49.319392649668195],[-123.77171886232543,49.464224022105455],[-123.81609583482758,49.464629781604714],[-123.82733815408959,49.496373486650036],[-123.79835257225089,49.5089796676534],[-123.79585824572641,49.509326351546],[-123.76460067552159,49.49050391525087],[-123.76719331722352,49.48944467812574],[-123.75337778687727,49.48307214854415],[-123.75269330954636,49.486169539272844],[-123.74896636659395,49.502826444033815],[-123.75189390415538,49.503829539481735],[-123.75484645845651,49.51154491091725],[-123.76054783271569,49.513831257091006],[-123.74231081784163,49.5212863314037],[-123.7354782191438,49.487187538343534],[-123.68208160824845,49.5003124655691],[-123.67483911088493,49.540211259735706],[-123.6462037070281,49.59080584514742],[-123.57834446649295,49.610966821170244],[-123.53140196740091,49.632833343682634],[-123.45775249760311,49.61903142033286],[-123.44328472967022,49.65542194050024],[-123.37310357320258,49.64962432973099],[-123.35160869557859,49.66567098141773],[-123.36401573103879,49.67435125918894],[-123.30300648771797,49.750053245570996],[-123.30522437361002,49.79650951476816],[-123.33331084286402,49.827328437963374],[-123.32841734701526,49.851443426159754],[-123.42795160402778,49.900927918592586],[-123.48794732337186,49.911352887311715],[-123.5503056808505,49.871070948290566],[-123.56499680326286,49.90531643132075],[-123.6201713520494,49.930668601800214]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Sunshine Coast B","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929022","name":"Sunshine Coast B"}},{"type":"Feature","geometry":{"coordinates":[[[-123.90996346225221,50.359413613229925],[-123.96249865296876,50.33936374301365],[-124.04116804298975,50.34638465265326],[-124.07580248479155,50.36642339599419],[-124.13670724261418,50.35262051112126],[-124.15953725579566,50.33338629304999],[-124.16901059304769,50.27001570923117],[-124.14423078480257,50.255747536007256],[-124.15425568118938,50.21909803436747],[-124.09214443803835,50.19370513024138],[-124.06938167590963,50.15055123457989],[-124.13689850258085,50.13552882786929],[-124.1507847532323,50.061024014920456],[-124.11365661681008,50.02465511976424],[-124.0793491844389,50.000236745671025],[-124.06294401064476,49.933246146387916],[-124.03417666211985,49.92796671437674],[-124.04571924802121,49.86770632311759],[-124.02516962382542,49.839999023805],[-124.03499284137068,49.805472257160446],[-124.13707794608034,49.769426903081516],[-124.22054029404721,49.75726075544282],[-124.29188511813248,49.70156905372372],[-124.25404963072286,49.65973766198861],[-124.13084911212371,49.59087892977024],[-124.08564683487957,49.546322820852495],[-123.9369530198655,49.55365140096848],[-123.89050561767105,49.64324944178792],[-123.9272681601909,49.66976903452004],[-123.93936258200094,49.71926503486278],[-123.90416936242015,49.727682767622035],[-123.89444100107511,49.73475772817062],[-123.83582235102266,49.74730258059783],[-123.7975674401995,49.76991482145884],[-123.77173116236165,49.82554343436066],[-123.77515194791874,49.86126354533131],[-123.74681821839998,49.886086873935746],[-123.66021728375637,49.92997117609777],[-123.6201713520494,49.930668601800214],[-123.58626074801428,49.97111779362901],[-123.60485958401011,50.01248523242562],[-123.63067967977688,50.01219828169211],[-123.649061953643,50.084795808298125],[-123.58989008353787,50.123165944552824],[-123.5813311144481,50.1739640577815],[-123.63505764536745,50.17564078429242],[-123.63988443925912,50.21253250308837],[-123.68666264742969,50.202529638836715],[-123.69840920743019,50.229516111254725],[-123.75454121779647,50.24427576566618],[-123.76796087745731,50.26201762399469],[-123.84807756009634,50.30066907846659],[-123.90996346225221,50.359413613229925]],[[-123.74565614287962,50.09346577477302],[-123.75653066675568,50.07277107254643],[-123.76809733141269,50.07613175794487],[-123.74565614287962,50.09346577477302]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Mainland/Southwest","regional_district_aka_census_division":"Sunshine Coast","census_subdivision":"Sunshine Coast A","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5920","census_division_code":"5929","census_subdivision_code":"5929018","name":"Sunshine Coast A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.09972009934718,50.2268582635622],[-121.14031733582723,50.22721568211138],[-121.14558595370929,50.19977707873522],[-121.22030518298774,50.18899131058044],[-121.24817964104281,50.14537679619372],[-121.27911642741293,50.15651281736877],[-121.32132902289322,50.12686742819517],[-121.30756845070394,50.103307238828016],[-121.31532813930744,50.05246633438642],[-121.2691639139884,49.962255647616104],[-121.286554996184,49.926950354306975],[-121.32425906778234,49.89942365700732],[-121.2860351109753,49.87226310313267],[-121.22015741929802,49.89448188496823],[-121.16426153998125,49.88125809491546],[-121.12435089450446,49.82564067234034],[-121.1802266803239,49.82187052738434],[-121.21182554628788,49.77926963595587],[-121.18570331991754,49.726605804720975],[-121.14440262704315,49.70015953813995],[-121.1322883745683,49.66746716571656],[-121.17078915662884,49.648364579616135],[-121.15583339068336,49.61715655036909],[-121.01882394278387,49.63699736005438],[-121.00714552978144,49.65851548163549],[-120.96240832746012,49.67347949598367],[-120.948452298514,49.7605805529817],[-120.77179116853846,49.7633910958258],[-120.75988518888956,49.74972609316595],[-120.60433288796683,49.74957950682011],[-120.57172851662234,49.77286844495655],[-120.55553391177303,49.946134941237375],[-120.57821715548819,49.974891917911144],[-120.57847716432532,50.13200949627915],[-120.65068721481857,50.13146186516891],[-120.68804060176548,50.15425239693512],[-120.73378726288682,50.12760531783042],[-120.75236726672192,50.085712495553196],[-120.76322035065068,50.098621654514815],[-120.79594621644752,50.091570891322995],[-120.82333729981188,50.11832010590846],[-120.83569971427463,50.1231718472965],[-120.86430275600996,50.13737119114109],[-121.00568454673736,50.138664954224716],[-120.99955238451722,50.227742755194946],[-121.09117961985113,50.227139782038336],[-121.08250718019431,50.225240040805836],[-121.0805301083719,50.2073961857411],[-121.09184030373049,50.20695022010663],[-121.09972009934718,50.2268582635622]],[[-120.94082787734878,49.98729482697823],[-120.96209288842302,49.97669345678888],[-120.97790064874503,49.99122121961667],[-120.94082787734878,49.98729482697823]],[[-120.85393300190435,50.055646270103935],[-120.81448528430084,50.03317111731843],[-120.90236927363361,50.01437130783003],[-120.90240196077879,50.03221561942854],[-120.85393300190435,50.055646270103935]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola N (Beautiful Nicola Valley - South)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933012","name":"Thompson-Nicola N (Beautiful Nicola Valley - South)"}},{"type":"Feature","geometry":{"coordinates":[[[-120.94082787734878,49.98729482697823],[-120.97790064874503,49.99122121961667],[-120.96209288842302,49.97669345678888],[-120.94082787734878,49.98729482697823]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Paul's Basin 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933809","name":"Paul's Basin 2"}},{"type":"Feature","geometry":{"coordinates":[[[-120.85393300190435,50.055646270103935],[-120.90240196077879,50.03221561942854],[-120.90236927363361,50.01437130783003],[-120.81448528430084,50.03317111731843],[-120.85393300190435,50.055646270103935]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Coldwater 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933801","name":"Coldwater 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.54612397107546,50.05691342931653],[-121.54454125271536,50.05473297997639],[-121.54408223561826,50.05489517327362],[-121.54528653176129,50.05705104729199],[-121.54612397107546,50.05691342931653]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Boothroyd 8A","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933897","name":"Boothroyd 8A"}},{"type":"Feature","geometry":{"coordinates":[[[-120.75236726672192,50.085712495553196],[-120.74986572634458,50.09886962783619],[-120.76322035065068,50.098621654514815],[-120.75236726672192,50.085712495553196]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Joeyaska 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933805","name":"Joeyaska 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.55598529381004,50.1053168602681],[-121.55265490447441,50.1053539987006],[-121.55304679549316,50.11089725166585],[-121.55606081105033,50.1107951573242],[-121.55598529381004,50.1053168602681]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nekliptum 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933896","name":"Nekliptum 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.55606081105033,50.1107951573242],[-121.55516091238887,50.12077219584244],[-121.56571734427379,50.11804057213531],[-121.56336972163962,50.10539213044636],[-121.55598529381004,50.1053168602681],[-121.55606081105033,50.1107951573242]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Kanaka Bar","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933882","name":"Kanaka Bar"}},{"type":"Feature","geometry":{"coordinates":[[[-120.73378726288682,50.12760531783042],[-120.81376511067047,50.13452262034563],[-120.82333729981188,50.11832010590846],[-120.79594621644752,50.091570891322995],[-120.76322035065068,50.098621654514815],[-120.74986572634458,50.09886962783619],[-120.75236726672192,50.085712495553196],[-120.73378726288682,50.12760531783042]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Merritt","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933006","name":"Merritt"}},{"type":"Feature","geometry":{"coordinates":[[[-121.56432611450221,50.130529755150384],[-121.56818691486991,50.14276170262291],[-121.5742316984093,50.14273082642359],[-121.57309972153499,50.133718269239395],[-121.56432611450221,50.130529755150384]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Siska Flat","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933849","name":"Siska Flat"}},{"type":"Feature","geometry":{"coordinates":[[[-121.52193013297048,50.14212528786493],[-121.51103600982101,50.151271680083894],[-121.52116311982022,50.15030176615003],[-121.5286996541493,50.14627534199289],[-121.52193013297048,50.14212528786493]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Hamilton Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933803","name":"Hamilton Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.5785026089763,50.156988822477544],[-121.57876307461778,50.15131166570151],[-121.57359102330321,50.15150584829098],[-121.57260535463917,50.15700817953844],[-121.5785026089763,50.156988822477544]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Zacht 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933879","name":"Zacht 5"}},{"type":"Feature","geometry":{"coordinates":[[[-120.3409211085578,50.38585948668081],[-120.4315289240638,50.385742959308374],[-120.43179872830746,50.400156855306754],[-120.56626609509858,50.401484188193436],[-120.631620665946,50.41574809545193],[-120.63427381527075,50.43033022069928],[-120.72849640229073,50.43099117529941],[-120.79717731931304,50.4594119930629],[-120.86369905864476,50.45937445811024],[-120.89047061067073,50.41621865558551],[-120.93492854673651,50.41659569332865],[-120.89010480498041,50.36289574976881],[-120.91441050274034,50.313651555801286],[-120.96607580571903,50.272949643321056],[-120.94492204802395,50.252641194655396],[-120.99955238451722,50.227742755194946],[-121.00568454673736,50.138664954224716],[-120.86430275600996,50.13737119114109],[-120.86574022071679,50.235942932751435],[-120.81660989609053,50.249285103952595],[-120.81452985850407,50.148444390236406],[-120.83569971427463,50.1231718472965],[-120.82333729981188,50.11832010590846],[-120.81376511067047,50.13452262034563],[-120.73378726288682,50.12760531783042],[-120.68804060176548,50.15425239693512],[-120.65068721481857,50.13146186516891],[-120.57847716432532,50.13200949627915],[-120.57821715548819,49.974891917911144],[-120.55553391177303,49.946134941237375],[-120.57172851662234,49.77286844495655],[-120.48571062269043,49.77223134414028],[-120.388637369925,49.849111377202945],[-120.39014537155596,49.87389074335891],[-120.33005879886788,49.912011607787186],[-120.26842684068745,49.88794410064804],[-120.2287105180035,49.89592228754961],[-120.21338723793606,49.86052756302215],[-120.16113472660605,49.86525663817543],[-120.1301715929205,49.84582654328975],[-120.05479757827862,49.85570622338706],[-120.0295267914982,49.911890116821105],[-119.9774861257252,49.93140631411227],[-119.9509386811893,49.92023997849444],[-119.89308444723197,49.963881767181135],[-119.83228512994357,49.98051641304784],[-119.76910767278152,50.04315125525346],[-119.74113075242803,50.116046887640756],[-119.77720625831446,50.11997287916019],[-119.81312346926045,50.1768523618613],[-119.76180443064712,50.232820985095046],[-119.75185425304845,50.25954996698874],[-119.69742125348549,50.25796287827061],[-119.69806757623944,50.285054943398656],[-119.63348270884104,50.376275622033425],[-119.64448665191006,50.40210758142982],[-119.65139328119909,50.40205146558443],[-119.72042142607233,50.372659650826634],[-119.78935104597167,50.35786716670029],[-120.09182937672911,50.357835248203195],[-120.09062125665811,50.37110658669826],[-120.22495519483472,50.37140411076484],[-120.22575087283334,50.385838374969374],[-120.3409211085578,50.38585948668081]],[[-120.6749527220722,50.192253794093375],[-120.661604839196,50.19379033831646],[-120.66202537604389,50.17461120485778],[-120.6738868283762,50.17204789504148],[-120.6749527220722,50.192253794093375]],[[-120.46305442078675,50.2373536562102],[-120.44699090787816,50.23689010962949],[-120.45273113916883,50.1924835139246],[-120.48335464693639,50.21278036751643],[-120.46305442078675,50.2373536562102]],[[-120.30023174025679,50.22824046148701],[-120.2445786938944,50.242738412194434],[-120.2410908054049,50.157410317777305],[-120.2242016515717,50.09860526423438],[-120.31022948768509,50.09922603978385],[-120.33647371247686,50.13642157294875],[-120.33367325247015,50.21104830793994],[-120.30023174025679,50.22824046148701]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola M (Beautiful Nicola Valley - North)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933008","name":"Thompson-Nicola M (Beautiful Nicola Valley - North)"}},{"type":"Feature","geometry":{"coordinates":[[[-120.30023174025679,50.22824046148701],[-120.33367325247015,50.21104830793994],[-120.33647371247686,50.13642157294875],[-120.31022948768509,50.09922603978385],[-120.2242016515717,50.09860526423438],[-120.2410908054049,50.157410317777305],[-120.2445786938944,50.242738412194434],[-120.30023174025679,50.22824046148701]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Douglas Lake 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933802","name":"Douglas Lake 3"}},{"type":"Feature","geometry":{"coordinates":[[[-121.57368022341522,50.17316983472719],[-121.5783757658754,50.1725202661824],[-121.58094425215701,50.17552162401221],[-121.58205317076944,50.17118801057462],[-121.57553128791308,50.17078743197536],[-121.57368022341522,50.17316983472719]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Skuppah 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933865","name":"Skuppah 4"}},{"type":"Feature","geometry":{"coordinates":[[[-120.6749527220722,50.192253794093375],[-120.6738868283762,50.17204789504148],[-120.66202537604389,50.17461120485778],[-120.661604839196,50.19379033831646],[-120.6749527220722,50.192253794093375]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Zoht 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933811","name":"Zoht 4"}},{"type":"Feature","geometry":{"coordinates":[[[-120.83569971427463,50.1231718472965],[-120.81452985850407,50.148444390236406],[-120.81660989609053,50.249285103952595],[-120.86574022071679,50.235942932751435],[-120.86430275600996,50.13737119114109],[-120.83569971427463,50.1231718472965]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nicola Mameet 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933807","name":"Nicola Mameet 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58144909255572,50.19304003318349],[-121.58105831679025,50.1863512578262],[-121.5721314753691,50.182312579929935],[-121.57542722491834,50.19620694198263],[-121.58144909255572,50.19304003318349]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Inklyuhkinatko 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933825","name":"Inklyuhkinatko 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58973715820338,50.19800852908544],[-121.59634571951749,50.18746352417944],[-121.58343823881026,50.18729843388879],[-121.58634183112886,50.1980996236164],[-121.58973715820338,50.19800852908544]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Skwayaynope 26","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933866","name":"Skwayaynope 26"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58144909255572,50.19304003318349],[-121.57542722491834,50.19620694198263],[-121.58303883261577,50.19655716495048],[-121.58144909255572,50.19304003318349]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Skuppah 2A","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933824","name":"Skuppah 2A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.57342660124198,50.199526346147316],[-121.56848824059104,50.19955627695233],[-121.5685946114559,50.20249833243219],[-121.57392035070022,50.202385959236736],[-121.57342660124198,50.199526346147316]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Kitzowit 20","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933823","name":"Kitzowit 20"}},{"type":"Feature","geometry":{"coordinates":[[[-121.57991105116247,50.21836606213384],[-121.58973715820338,50.19800852908544],[-121.58634183112886,50.1980996236164],[-121.58573250006059,50.19975273838676],[-121.57991105116247,50.21836606213384]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nickeyeah 25","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933850","name":"Nickeyeah 25"}},{"type":"Feature","geometry":{"coordinates":[[[-120.46305442078675,50.2373536562102],[-120.48335464693639,50.21278036751643],[-120.45273113916883,50.1924835139246],[-120.44699090787816,50.23689010962949],[-120.46305442078675,50.2373536562102]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nicola Lake 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933806","name":"Nicola Lake 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.09117961985113,50.227139782038336],[-121.09972009934718,50.2268582635622],[-121.09184030373049,50.20695022010663],[-121.0805301083719,50.2073961857411],[-121.08250718019431,50.225240040805836],[-121.09117961985113,50.227139782038336]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nooaitch 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933808","name":"Nooaitch 10"}},{"type":"Feature","geometry":{"coordinates":[[[-121.57392035070022,50.202385959236736],[-121.56291370129577,50.2260138039524],[-121.55846352933752,50.248272597526515],[-121.57893243529519,50.23811547413406],[-121.57214190870648,50.238504278536375],[-121.57201295179283,50.23466921225674],[-121.58120018430081,50.23629996352821],[-121.57991105116247,50.21836606213384],[-121.58573250006059,50.19975273838676],[-121.57342660124198,50.199526346147316],[-121.57392035070022,50.202385959236736]],[[-121.57977166711669,50.23015178342278],[-121.57528636344335,50.228720819241566],[-121.5751905372575,50.22659389495418],[-121.57900671643677,50.22595450736052],[-121.57977166711669,50.23015178342278]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Lytton","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933015","name":"Lytton"}},{"type":"Feature","geometry":{"coordinates":[[[-121.57977166711669,50.23015178342278],[-121.57900671643677,50.22595450736052],[-121.5751905372575,50.22659389495418],[-121.57528636344335,50.228720819241566],[-121.57977166711669,50.23015178342278]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Klahkamich 17","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933829","name":"Klahkamich 17"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58704712630797,50.23401246861714],[-121.58952520883504,50.240022854088025],[-121.59699039229866,50.23738611721174],[-121.5970368988498,50.2340479388245],[-121.58704712630797,50.23401246861714]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Papyum 27","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933855","name":"Papyum 27"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58120018430081,50.23629996352821],[-121.57201295179283,50.23466921225674],[-121.57214190870648,50.238504278536375],[-121.57893243529519,50.23811547413406],[-121.58120018430081,50.23629996352821]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Klickkumcheen 18","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933832","name":"Klickkumcheen 18"}},{"type":"Feature","geometry":{"coordinates":[[[-121.60009399971699,50.25211504017991],[-121.59963508994835,50.250301358190896],[-121.60319296122209,50.24879636835379],[-121.6016015020511,50.247309383863445],[-121.5960007448199,50.25043646648875],[-121.60009399971699,50.25211504017991]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nohomeen 23","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933852","name":"Nohomeen 23"}},{"type":"Feature","geometry":{"coordinates":[[[-121.57922987983737,50.25661710290143],[-121.56502210360036,50.25649696122018],[-121.56539738236148,50.267248490124565],[-121.57923960070185,50.26564850651137],[-121.57922987983737,50.25661710290143]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Kleetlekut 22","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933831","name":"Kleetlekut 22"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58634466006785,50.26554554857327],[-121.60399201377403,50.26209925711368],[-121.57922987983737,50.25661710290143],[-121.57923960070185,50.26564850651137],[-121.58634466006785,50.26554554857327]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nuuautin 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933853","name":"Nuuautin 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.3993339791629,50.26695316125414],[-121.41254216806225,50.2628027126586],[-121.41118922704987,50.25993175434343],[-121.39336226573495,50.26198198955586],[-121.3993339791629,50.26695316125414]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nicomen 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933851","name":"Nicomen 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.58634466006785,50.26554554857327],[-121.58855814805631,50.276759223802145],[-121.6158150228886,50.27682986303601],[-121.60399201377403,50.26209925711368],[-121.58634466006785,50.26554554857327]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Inkluckcheen","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933833","name":"Inkluckcheen"}},{"type":"Feature","geometry":{"coordinates":[[[-121.63531860828144,50.27403957974875],[-121.61942783402269,50.27004401752155],[-121.6156165713973,50.27491144019116],[-121.63531860828144,50.27403957974875]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Lytton 9B","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933842","name":"Lytton 9B"}},{"type":"Feature","geometry":{"coordinates":[[[-121.6156165713973,50.27491144019116],[-121.63322040901853,50.291435158067856],[-121.6427402449066,50.29384926236942],[-121.64156191639974,50.29799189190798],[-121.65045579411344,50.297676164489644],[-121.63531860828144,50.27403957974875],[-121.6156165713973,50.27491144019116]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Stryen 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933873","name":"Stryen 9"}},{"type":"Feature","geometry":{"coordinates":[[[-121.24330283334949,50.315471784684675],[-121.24420470763198,50.28268754660482],[-121.18568526741501,50.26437899960692],[-121.13805893571951,50.28729527864281],[-121.24330283334949,50.315471784684675]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Shackan 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933859","name":"Shackan 11"}},{"type":"Feature","geometry":{"coordinates":[[[-121.61493821898324,50.29929862118391],[-121.64023370508242,50.30025351412917],[-121.63827473021429,50.29338345521688],[-121.61441504102126,50.292359880883524],[-121.61493821898324,50.29929862118391]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Halhalaeden","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933813","name":"Halhalaeden"}},{"type":"Feature","geometry":{"coordinates":[[[-121.64156191639974,50.29799189190798],[-121.65023343189361,50.317378248980155],[-121.6562311497527,50.31694704088969],[-121.65045579411344,50.297676164489644],[-121.64156191639974,50.29799189190798]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Lytton 9A","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933841","name":"Lytton 9A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.65023343189361,50.317378248980155],[-121.66269154473108,50.34489575459143],[-121.667180588655,50.33908513050462],[-121.6562311497527,50.31694704088969],[-121.65023343189361,50.317378248980155]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nkaih 10","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933870","name":"Nkaih 10"}},{"type":"Feature","geometry":{"coordinates":[[[-121.66273833071237,50.34648188974346],[-121.65369101592837,50.32718737944003],[-121.64581564847936,50.32779326121885],[-121.6447403041051,50.34602027585212],[-121.66273833071237,50.34648188974346]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Spintlum Flat 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933868","name":"Spintlum Flat 3"}},{"type":"Feature","geometry":{"coordinates":[[[-121.667180588655,50.33908513050462],[-121.66269154473108,50.34489575459143],[-121.67353934543702,50.35459880015988],[-121.6789011390845,50.3422873149742],[-121.667180588655,50.33908513050462]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Yawaucht 11","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933878","name":"Yawaucht 11"}},{"type":"Feature","geometry":{"coordinates":[[[-121.24073410536644,50.36073431147266],[-121.2336355937944,50.354596718288335],[-121.23370686753584,50.36916118627346],[-121.24073410536644,50.36073431147266]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Kloklowuck 7","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933861","name":"Kloklowuck 7"}},{"type":"Feature","geometry":{"coordinates":[[[-121.67679863460737,50.370322173799806],[-121.67606913398653,50.377877503278356],[-121.68340306232989,50.37769526365326],[-121.68393208246803,50.36851787676502],[-121.67679863460737,50.370322173799806]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Tsaukan 12","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933874","name":"Tsaukan 12"}},{"type":"Feature","geometry":{"coordinates":[[[-121.3580733976805,50.4168781838913],[-121.36148134985163,50.41581846345323],[-121.36321873454723,50.413339870590626],[-121.35886301008361,50.413608833620515],[-121.35713671670881,50.41597999715688],[-121.3580733976805,50.4168781838913]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Spences Bridge","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933881","name":"Spences Bridge"}},{"type":"Feature","geometry":{"coordinates":[[[-121.35713671670881,50.41597999715688],[-121.35421734120918,50.41616757637168],[-121.35486540224369,50.417776895366146],[-121.3580733976805,50.4168781838913],[-121.35713671670881,50.41597999715688]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Shawniken 4B","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933895","name":"Shawniken 4B"}},{"type":"Feature","geometry":{"coordinates":[[[-121.31597193945433,50.42135727018972],[-121.31595380751956,50.42666385852099],[-121.32133011958771,50.4234935748006],[-121.31597193945433,50.42135727018972]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Kumcheen 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933834","name":"Kumcheen 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.72179698298962,50.42841299087765],[-121.72205402485368,50.42184952753678],[-121.70430542181683,50.4286681042429],[-121.72179698298962,50.42841299087765]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Lytton 4E","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933840","name":"Lytton 4E"}},{"type":"Feature","geometry":{"coordinates":[[[-121.33574128404025,50.42563492939683],[-121.33605073558036,50.430534257990175],[-121.3386021583575,50.430564718622534],[-121.33864733162964,50.42543419933234],[-121.33574128404025,50.42563492939683]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Twoyqhalsht 16","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933893","name":"Twoyqhalsht 16"}},{"type":"Feature","geometry":{"coordinates":[[[-121.70672272382198,50.447033954192875],[-121.72511781387223,50.44266832952389],[-121.70007763301436,50.43750775875548],[-121.69732617419633,50.443184795129895],[-121.70672272382198,50.447033954192875]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Lytton 4A","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933839","name":"Lytton 4A"}},{"type":"Feature","geometry":{"coordinates":[[[-121.34192663783601,50.449119766174675],[-121.34500945529186,50.4492057757873],[-121.34499725200145,50.445251907418644],[-121.34207250604557,50.44513019216733],[-121.34192663783601,50.449119766174675]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Chuchhraischin","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933810","name":"Chuchhraischin"}},{"type":"Feature","geometry":{"coordinates":[[[-121.69732617419633,50.443184795129895],[-121.69449493697812,50.449515261942175],[-121.70230313448887,50.45188655816104],[-121.70672272382198,50.447033954192875],[-121.69732617419633,50.443184795129895]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nickel Palm 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933848","name":"Nickel Palm 4"}},{"type":"Feature","geometry":{"coordinates":[[[[-121.32110078871632,50.62171829956919],[-121.33023609925571,50.60928391384157],[-121.31866363573809,50.610086997427],[-121.32110078871632,50.62171829956919]]],[[[-121.07107758539125,50.924854087893564],[-121.6260853820538,50.9249547626597],[-121.62533767023426,50.89604108877572],[-121.67283307483247,50.88163385893976],[-121.67239632475585,50.85285256261618],[-121.71989252021886,50.83770026665225],[-121.72068815719447,50.7937187057892],[-121.74357322745756,50.750391531964475],[-121.76596858389708,50.750211984516135],[-121.76624407579465,50.54638153875979],[-121.78490768399108,50.530582172532675],[-121.86243253319742,50.46088489460861],[-121.88311958008202,50.41933245827396],[-122.01515140639692,50.41437906273872],[-122.11914122739884,50.43278394663732],[-122.11799557801481,50.4161280681231],[-122.16740236785083,50.34648532613945],[-122.23429582116285,50.32468896459096],[-122.23805829343974,50.28765128745688],[-122.30163009329088,50.229787286784706],[-122.27795120416424,50.203316476826025],[-122.31625116355197,50.18712021616655],[-122.25844006319265,50.12344431007174],[-122.22991522865198,50.11051206971429],[-122.11636732115254,50.107311729794226],[-122.07006993723608,50.1263701322907],[-122.0236312700526,50.085840471547336],[-121.9593924193798,50.08469144706474],[-121.89580230551168,50.04964998716786],[-121.84939080300482,50.075296355730394],[-121.75876280349085,50.09196251262882],[-121.71457896512857,50.08620817117932],[-121.60975134458276,50.04188198106048],[-121.54268209552515,50.05240793208374],[-121.54210692180143,50.05238788010108],[-121.31532813930744,50.05246633438642],[-121.30756845070394,50.103307238828016],[-121.32132902289322,50.12686742819517],[-121.27911642741293,50.15651281736877],[-121.24817964104281,50.14537679619372],[-121.22030518298774,50.18899131058044],[-121.14558595370929,50.19977707873522],[-121.14031733582723,50.22721568211138],[-121.09972009934718,50.2268582635622],[-121.09117961985113,50.227139782038336],[-120.99955238451722,50.227742755194946],[-120.94492204802395,50.252641194655396],[-120.96607580571903,50.272949643321056],[-120.91441050274034,50.313651555801286],[-120.89010480498041,50.36289574976881],[-120.93492854673651,50.41659569332865],[-120.95833601371889,50.38791051750289],[-121.07338678353318,50.388537844398776],[-121.07136929820467,50.43174247677282],[-121.14080765074553,50.43250986829652],[-121.13835282222851,50.53498253289934],[-121.23481790237206,50.53420186218583],[-121.20935728875446,50.57800399565429],[-121.09629071051755,50.57935065556862],[-121.01735066197583,50.548519972937385],[-121.00921711458372,50.575791543624405],[-121.06476116563748,50.60073431235006],[-121.01100320847533,50.67753343296322],[-120.90956908207323,50.66202259547781],[-120.91082462670296,50.74374188889629],[-120.99270180031459,50.80539067095627],[-121.01443290885278,50.83754658399612],[-121.04982269833485,50.83797877034451],[-121.04903656050384,50.924879987476814],[-121.07107758539125,50.924854087893564]],[[-121.54612397107546,50.05691342931653],[-121.54528653176129,50.05705104729199],[-121.54408223561826,50.05489517327362],[-121.54454125271536,50.05473297997639],[-121.54612397107546,50.05691342931653]],[[-121.34192663783601,50.449119766174675],[-121.34207250604557,50.44513019216733],[-121.34499725200145,50.445251907418644],[-121.34500945529186,50.4492057757873],[-121.34192663783601,50.449119766174675]],[[-121.57368022341522,50.17316983472719],[-121.57553128791308,50.17078743197536],[-121.58205317076944,50.17118801057462],[-121.58094425215701,50.17552162401221],[-121.5783757658754,50.1725202661824],[-121.57368022341522,50.17316983472719]],[[-121.60009399971699,50.25211504017991],[-121.5960007448199,50.25043646648875],[-121.6016015020511,50.247309383863445],[-121.60319296122209,50.24879636835379],[-121.59963508994835,50.250301358190896],[-121.60009399971699,50.25211504017991]],[[-121.35713671670881,50.41597999715688],[-121.35886301008361,50.413608833620515],[-121.36321873454723,50.413339870590626],[-121.36148134985163,50.41581846345323],[-121.3580733976805,50.4168781838913],[-121.35486540224369,50.417776895366146],[-121.35421734120918,50.41616757637168],[-121.35713671670881,50.41597999715688]],[[-121.31597193945433,50.42135727018972],[-121.32133011958771,50.4234935748006],[-121.31595380751956,50.42666385852099],[-121.31597193945433,50.42135727018972]],[[-121.33605073558036,50.430534257990175],[-121.33574128404025,50.42563492939683],[-121.33864733162964,50.42543419933234],[-121.3386021583575,50.430564718622534],[-121.33605073558036,50.430534257990175]],[[-121.5785026089763,50.156988822477544],[-121.57260535463917,50.15700817953844],[-121.57359102330321,50.15150584829098],[-121.57876307461778,50.15131166570151],[-121.5785026089763,50.156988822477544]],[[-121.58704712630797,50.23401246861714],[-121.5970368988498,50.2340479388245],[-121.59699039229866,50.23738611721174],[-121.58952520883504,50.240022854088025],[-121.58704712630797,50.23401246861714]],[[-121.67679863460737,50.370322173799806],[-121.68393208246803,50.36851787676502],[-121.68340306232989,50.37769526365326],[-121.67606913398653,50.377877503278356],[-121.67679863460737,50.370322173799806]],[[-121.56432611450221,50.130529755150384],[-121.57309972153499,50.133718269239395],[-121.5742316984093,50.14273082642359],[-121.56818691486991,50.14276170262291],[-121.56432611450221,50.130529755150384]],[[-121.3993339791629,50.26695316125414],[-121.39336226573495,50.26198198955586],[-121.41118922704987,50.25993175434343],[-121.41254216806225,50.2628027126586],[-121.3993339791629,50.26695316125414]],[[-121.31139258843261,50.46137973884435],[-121.32006505592564,50.46572441523807],[-121.31281911290537,50.47230970686555],[-121.30360710880646,50.46824094427042],[-121.31139258843261,50.46137973884435]],[[-121.52193013297048,50.14212528786493],[-121.5286996541493,50.14627534199289],[-121.52116311982022,50.15030176615003],[-121.51103600982101,50.151271680083894],[-121.52193013297048,50.14212528786493]],[[-121.24073410536644,50.36073431147266],[-121.23370686753584,50.36916118627346],[-121.2336355937944,50.354596718288335],[-121.24073410536644,50.36073431147266]],[[-121.57542722491834,50.19620694198263],[-121.5721314753691,50.182312579929935],[-121.58105831679025,50.1863512578262],[-121.58144909255572,50.19304003318349],[-121.58303883261577,50.19655716495048],[-121.57542722491834,50.19620694198263]],[[-121.72179698298962,50.42841299087765],[-121.70430542181683,50.4286681042429],[-121.72205402485368,50.42184952753678],[-121.72179698298962,50.42841299087765]],[[-121.55598529381004,50.1053168602681],[-121.56336972163962,50.10539213044636],[-121.56571734427379,50.11804057213531],[-121.55516091238887,50.12077219584244],[-121.55606081105033,50.1107951573242],[-121.55304679549316,50.11089725166585],[-121.55265490447441,50.1053539987006],[-121.55598529381004,50.1053168602681]],[[-121.73679591787801,50.50711886559185],[-121.72648952740819,50.498048069947785],[-121.72854522417751,50.490658614536166],[-121.74250285502914,50.490923760018056],[-121.73679591787801,50.50711886559185]],[[-121.61493821898324,50.29929862118391],[-121.61441504102126,50.292359880883524],[-121.63827473021429,50.29338345521688],[-121.64023370508242,50.30025351412917],[-121.61493821898324,50.29929862118391]],[[-121.66273833071237,50.34648188974346],[-121.6447403041051,50.34602027585212],[-121.64581564847936,50.32779326121885],[-121.65369101592837,50.32718737944003],[-121.66273833071237,50.34648188974346]],[[-121.37215419559665,50.61957764455659],[-121.38463544270572,50.605022221029685],[-121.39590923111749,50.619502113519324],[-121.37215419559665,50.61957764455659]],[[-121.70672272382198,50.447033954192875],[-121.70230313448887,50.45188655816104],[-121.69449493697812,50.449515261942175],[-121.69732617419633,50.443184795129895],[-121.70007763301436,50.43750775875548],[-121.72511781387223,50.44266832952389],[-121.70672272382198,50.447033954192875]],[[-121.64563658908634,50.81911071871536],[-121.65940666800715,50.81024036125046],[-121.6703648961594,50.82324980414742],[-121.64563658908634,50.81911071871536]],[[-121.27546222457187,50.66858792108171],[-121.25272387207202,50.67078352757291],[-121.25249535453989,50.65674319169528],[-121.27546222457187,50.66858792108171]],[[-121.60399201377403,50.26209925711368],[-121.6158150228886,50.27682986303601],[-121.58855814805631,50.276759223802145],[-121.58634466006785,50.26554554857327],[-121.57923960070185,50.26564850651137],[-121.56539738236148,50.267248490124565],[-121.56502210360036,50.25649696122018],[-121.57922987983737,50.25661710290143],[-121.60399201377403,50.26209925711368]],[[-121.36688994802283,50.851949933058364],[-121.36709857499348,50.830590267868594],[-121.39591947573004,50.83788535999838],[-121.36688994802283,50.851949933058364]],[[-121.66269154473108,50.34489575459143],[-121.65023343189361,50.317378248980155],[-121.64156191639974,50.29799189190798],[-121.6427402449066,50.29384926236942],[-121.63322040901853,50.291435158067856],[-121.6156165713973,50.27491144019116],[-121.61942783402269,50.27004401752155],[-121.63531860828144,50.27403957974875],[-121.65045579411344,50.297676164489644],[-121.6562311497527,50.31694704088969],[-121.667180588655,50.33908513050462],[-121.6789011390845,50.3422873149742],[-121.67353934543702,50.35459880015988],[-121.66269154473108,50.34489575459143]],[[-121.47628741728666,50.88977969863493],[-121.44531361383,50.88953329452602],[-121.44517462372934,50.87864040863464],[-121.49894276487632,50.87910649098444],[-121.52237174332615,50.86956096626138],[-121.52298981578144,50.89002407369082],[-121.47628741728666,50.88977969863493]],[[-121.59163736294852,50.82604332282064],[-121.56619738512374,50.82608779244382],[-121.5603650709551,50.80818363300178],[-121.59163770452808,50.80804343714668],[-121.59163736294852,50.82604332282064]],[[-121.57893243529519,50.23811547413406],[-121.55846352933752,50.248272597526515],[-121.56291370129577,50.2260138039524],[-121.57392035070022,50.202385959236736],[-121.5685946114559,50.20249833243219],[-121.56848824059104,50.19955627695233],[-121.57342660124198,50.199526346147316],[-121.58573250006059,50.19975273838676],[-121.58634183112886,50.1980996236164],[-121.58343823881026,50.18729843388879],[-121.59634571951749,50.18746352417944],[-121.58973715820338,50.19800852908544],[-121.57991105116247,50.21836606213384],[-121.58120018430081,50.23629996352821],[-121.57893243529519,50.23811547413406]],[[-121.33712182576497,50.60889830633698],[-121.32750895201515,50.62878280715286],[-121.32749009107475,50.648037928329366],[-121.31203740438788,50.64736685990289],[-121.31820207673029,50.62068481740172],[-121.31555471618945,50.610149420060566],[-121.31022090931,50.58979811159148],[-121.33464586275133,50.589482615207686],[-121.33712182576497,50.60889830633698]],[[-121.32674335074223,50.818260740035015],[-121.3116754406293,50.78028425829502],[-121.33804618907294,50.780556194922],[-121.32674335074223,50.818260740035015]],[[-121.26834079235145,50.51436956648813],[-121.23940611052062,50.50922121218083],[-121.24783364075607,50.45440401510301],[-121.28927893585474,50.46321335665826],[-121.29423022513893,50.49162637166597],[-121.26834079235145,50.51436956648813]],[[-121.24330283334949,50.315471784684675],[-121.13805893571951,50.28729527864281],[-121.18568526741501,50.26437899960692],[-121.24420470763198,50.28268754660482],[-121.24330283334949,50.315471784684675]],[[-121.3281180490541,50.72785835418427],[-121.28200423884108,50.73459867299791],[-121.2806043822479,50.70509997574767],[-121.31540849928439,50.69241817059718],[-121.31811987333558,50.66575453228257],[-121.4149915682596,50.65832555210535],[-121.41316785242736,50.7009042893068],[-121.3281180490541,50.72785835418427]]]],"type":"MultiPolygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola I (Blue Sky Country)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933037","name":"Thompson-Nicola I (Blue Sky Country)"}},{"type":"Feature","geometry":{"coordinates":[[[-121.31139258843261,50.46137973884435],[-121.30360710880646,50.46824094427042],[-121.31281911290537,50.47230970686555],[-121.32006505592564,50.46572441523807],[-121.31139258843261,50.46137973884435]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Entlqwekkinh 19","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933899","name":"Entlqwekkinh 19"}},{"type":"Feature","geometry":{"coordinates":[[[-121.26834079235145,50.51436956648813],[-121.29423022513893,50.49162637166597],[-121.28927893585474,50.46321335665826],[-121.24783364075607,50.45440401510301],[-121.23940611052062,50.50922121218083],[-121.26834079235145,50.51436956648813]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Pemynoos 9","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933857","name":"Pemynoos 9"}},{"type":"Feature","geometry":{"coordinates":[[[-121.01735066197583,50.548519972937385],[-121.09629071051755,50.57935065556862],[-121.20935728875446,50.57800399565429],[-121.23481790237206,50.53420186218583],[-121.13835282222851,50.53498253289934],[-121.14080765074553,50.43250986829652],[-121.07136929820467,50.43174247677282],[-121.07338678353318,50.388537844398776],[-120.95833601371889,50.38791051750289],[-120.93492854673651,50.41659569332865],[-120.89047061067073,50.41621865558551],[-120.86369905864476,50.45937445811024],[-120.79978821837318,50.47422537311355],[-120.78430848100233,50.50388764347837],[-120.9128979455363,50.50319065457248],[-120.95955681457085,50.5479897963354],[-121.01735066197583,50.548519972937385]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Logan Lake","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933035","name":"Logan Lake"}},{"type":"Feature","geometry":{"coordinates":[[[-121.73679591787801,50.50711886559185],[-121.74250285502914,50.490923760018056],[-121.72854522417751,50.490658614536166],[-121.72648952740819,50.498048069947785],[-121.73679591787801,50.50711886559185]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Seah 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933858","name":"Seah 5"}},{"type":"Feature","geometry":{"coordinates":[[[-119.60538801587671,50.86634146063707],[-119.60996142557744,50.87006325025438],[-119.68991719821457,50.83064591863978],[-119.67317360538101,50.81919679101711],[-119.69448343501449,50.81589883750295],[-119.70926818319866,50.82114535109899],[-119.71642498797507,50.7858380009823],[-119.69588540440384,50.77296539132658],[-119.74403029463265,50.73049690984747],[-119.7632200885262,50.73916140943444],[-119.83966522487086,50.67356055214155],[-119.91499671005435,50.64515326348166],[-120.04199037752775,50.65818407519424],[-120.08003373075319,50.64865034817756],[-120.08157116074018,50.61934607943328],[-120.35791164339975,50.618268969642116],[-120.33987025544087,50.57495307458815],[-120.3409211085578,50.38585948668081],[-120.22575087283334,50.385838374969374],[-120.22495519483472,50.37140411076484],[-120.09062125665811,50.37110658669826],[-120.09182937672911,50.357835248203195],[-119.78935104597167,50.35786716670029],[-119.72042142607233,50.372659650826634],[-119.65139328119909,50.40205146558443],[-119.65150924325592,50.56897795219864],[-119.62882624392778,50.57611119197024],[-119.52549805361696,50.57656516083],[-119.52473385603027,50.74459590282901],[-119.46209787253659,50.7505814943547],[-119.46079738660987,50.83838732789521],[-119.51647721056837,50.83861348937051],[-119.51681660932893,50.86734923056418],[-119.57436667603086,50.8669406547723],[-119.60226573806622,50.853883460148836],[-119.60845245452818,50.84626844825896],[-119.61862291426208,50.84671713189246],[-119.60513459153961,50.85393492096201],[-119.60410284063958,50.864697968284055],[-119.60538801587671,50.86634146063707]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola L (Grasslands)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933060","name":"Thompson-Nicola L (Grasslands)"}},{"type":"Feature","geometry":{"coordinates":[[[-121.33712182576497,50.60889830633698],[-121.33464586275133,50.589482615207686],[-121.31022090931,50.58979811159148],[-121.31555471618945,50.610149420060566],[-121.31866363573809,50.610086997427],[-121.33023609925571,50.60928391384157],[-121.33712182576497,50.60889830633698]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Oregon Jack Creek 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933846","name":"Oregon Jack Creek 5"}},{"type":"Feature","geometry":{"coordinates":[[[-121.37215419559665,50.61957764455659],[-121.39590923111749,50.619502113519324],[-121.38463544270572,50.605022221029685],[-121.37215419559665,50.61957764455659]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Peq-Paq 22","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933837","name":"Peq-Paq 22"}},{"type":"Feature","geometry":{"coordinates":[[[-121.31555471618945,50.610149420060566],[-121.31820207673029,50.62068481740172],[-121.32110078871632,50.62171829956919],[-121.31866363573809,50.610086997427],[-121.31555471618945,50.610149420060566]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Paska Island 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933854","name":"Paska Island 3"}},{"type":"Feature","geometry":{"coordinates":[[[-121.31820207673029,50.62068481740172],[-121.31203740438788,50.64736685990289],[-121.32749009107475,50.648037928329366],[-121.32750895201515,50.62878280715286],[-121.33712182576497,50.60889830633698],[-121.33023609925571,50.60928391384157],[-121.32110078871632,50.62171829956919],[-121.31820207673029,50.62068481740172]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Basque 18","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933828","name":"Basque 18"}},{"type":"Feature","geometry":{"coordinates":[[[-121.27546222457187,50.66858792108171],[-121.25249535453989,50.65674319169528],[-121.25272387207202,50.67078352757291],[-121.27546222457187,50.66858792108171]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Upper Nepa 6","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933876","name":"Upper Nepa 6"}},{"type":"Feature","geometry":{"coordinates":[[[-121.3281180490541,50.72785835418427],[-121.41316785242736,50.7009042893068],[-121.4149915682596,50.65832555210535],[-121.31811987333558,50.66575453228257],[-121.31540849928439,50.69241817059718],[-121.2806043822479,50.70509997574767],[-121.28200423884108,50.73459867299791],[-121.31245432664745,50.70867157236477],[-121.32329534495013,50.71907989453658],[-121.32804776073483,50.72010630115859],[-121.3246207145598,50.726649741488266],[-121.3281180490541,50.72785835418427]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Ashcroft","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933019","name":"Ashcroft"}},{"type":"Feature","geometry":{"coordinates":[[[-120.30088277216662,50.78150923651867],[-120.26052625711819,50.85566703648687],[-120.31176328646212,50.86622761374369],[-120.33515083714992,50.82289291457811],[-120.3820641038913,50.822781652554255],[-120.3819123409007,50.74205420636374],[-120.47242593939889,50.74196989607835],[-120.53838152485909,50.72904163856811],[-120.51871753265051,50.69311471771481],[-120.47400116031709,50.6866816387561],[-120.47394067109133,50.61945527545713],[-120.35791164339975,50.618268969642116],[-120.08157116074018,50.61934607943328],[-120.08003373075319,50.64865034817756],[-120.04199037752775,50.65818407519424],[-120.20970153701757,50.67306505985461],[-120.34033998597565,50.68684050242464],[-120.35578748724845,50.73677399186451],[-120.32417014780907,50.78192276826977],[-120.30088277216662,50.78150923651867]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Kamloops","type":"City","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933042","name":"Kamloops"}},{"type":"Feature","geometry":{"coordinates":[[[-121.31245432664745,50.70867157236477],[-121.3246207145598,50.726649741488266],[-121.32804776073483,50.72010630115859],[-121.32329534495013,50.71907989453658],[-121.31245432664745,50.70867157236477]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Ashcroft 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933844","name":"Ashcroft 4"}},{"type":"Feature","geometry":{"coordinates":[[[-121.31245432664745,50.70867157236477],[-121.28200423884108,50.73459867299791],[-121.3281180490541,50.72785835418427],[-121.3246207145598,50.726649741488266],[-121.31245432664745,50.70867157236477]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"105 Mile Post 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933845","name":"105 Mile Post 2"}},{"type":"Feature","geometry":{"coordinates":[[[-120.20970153701757,50.67306505985461],[-120.17857740173227,50.678201001289075],[-120.1761246138965,50.78023762108498],[-120.30088277216662,50.78150923651867],[-120.32417014780907,50.78192276826977],[-120.35578748724845,50.73677399186451],[-120.34033998597565,50.68684050242464],[-120.20970153701757,50.67306505985461]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Kamloops 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933880","name":"Kamloops 1"}},{"type":"Feature","geometry":{"coordinates":[[[-119.72111376978012,50.780820828823906],[-119.75887558660052,50.822392153583664],[-119.78027690817468,50.769899761402016],[-119.7632200885262,50.73916140943444],[-119.74403029463265,50.73049690984747],[-119.69588540440384,50.77296539132658],[-119.71642498797507,50.7858380009823],[-119.72111376978012,50.780820828823906]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Neskonlith","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933898","name":"Neskonlith"}},{"type":"Feature","geometry":{"coordinates":[[[-121.32674335074223,50.818260740035015],[-121.33804618907294,50.780556194922],[-121.3116754406293,50.78028425829502],[-121.32674335074223,50.818260740035015]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Cache Creek","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933024","name":"Cache Creek"}},{"type":"Feature","geometry":{"coordinates":[[[-119.72111376978012,50.780820828823906],[-119.72266702587886,50.80588096932372],[-119.75887558660052,50.822392153583664],[-119.72111376978012,50.780820828823906]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Sahhaltkum 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933884","name":"Sahhaltkum 4"}},{"type":"Feature","geometry":{"coordinates":[[[-120.55777392969058,51.193571031415274],[-120.61701807425233,51.2165160992119],[-120.68111126753624,51.2151399061726],[-120.73517022436482,51.239692651885036],[-120.77513022671097,51.231807425208714],[-120.80396242168334,51.25070247037866],[-120.88658750253767,51.24472714042451],[-120.91753067249937,51.2144453997496],[-120.96032117520318,51.204127090907406],[-121.00095810646258,51.13579793486426],[-120.9380048823751,51.090297680204564],[-121.07266749598863,51.07223809448595],[-121.07107758539125,50.924854087893564],[-121.04903656050384,50.924879987476814],[-121.04982269833485,50.83797877034451],[-121.01443290885278,50.83754658399612],[-121.03905156625711,50.8753668069308],[-121.00869742342952,50.885104065575206],[-120.95146385406792,50.87542934574005],[-120.87882997123612,50.749183441966736],[-120.91082462670296,50.74374188889629],[-120.90956908207323,50.66202259547781],[-121.01100320847533,50.67753343296322],[-121.06476116563748,50.60073431235006],[-121.00921711458372,50.575791543624405],[-121.01735066197583,50.548519972937385],[-120.95955681457085,50.5479897963354],[-120.9128979455363,50.50319065457248],[-120.78430848100233,50.50388764347837],[-120.79978821837318,50.47422537311355],[-120.86369905864476,50.45937445811024],[-120.79717731931304,50.4594119930629],[-120.72849640229073,50.43099117529941],[-120.63427381527075,50.43033022069928],[-120.631620665946,50.41574809545193],[-120.56626609509858,50.401484188193436],[-120.43179872830746,50.400156855306754],[-120.4315289240638,50.385742959308374],[-120.3409211085578,50.38585948668081],[-120.33987025544087,50.57495307458815],[-120.35791164339975,50.618268969642116],[-120.47394067109133,50.61945527545713],[-120.47400116031709,50.6866816387561],[-120.51871753265051,50.69311471771481],[-120.53838152485909,50.72904163856811],[-120.47242593939889,50.74196989607835],[-120.3819123409007,50.74205420636374],[-120.3820641038913,50.822781652554255],[-120.33515083714992,50.82289291457811],[-120.31176328646212,50.86622761374369],[-120.41854444291734,50.93867037259102],[-120.50936387866246,50.96802423512184],[-120.51101966822048,50.99436527243426],[-120.5596014267523,51.02859665413908],[-120.55730203582421,51.08872382494201],[-120.55777392969058,51.193571031415274]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola J (Copper Desert Country)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933039","name":"Thompson-Nicola J (Copper Desert Country)"}},{"type":"Feature","geometry":{"coordinates":[[[-121.59163736294852,50.82604332282064],[-121.59163770452808,50.80804343714668],[-121.5603650709551,50.80818363300178],[-121.56619738512374,50.82608779244382],[-121.59163736294852,50.82604332282064]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Upper Hat Creek 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933875","name":"Upper Hat Creek 1"}},{"type":"Feature","geometry":{"coordinates":[[[-121.64563658908634,50.81911071871536],[-121.6703648961594,50.82324980414742],[-121.65940666800715,50.81024036125046],[-121.64563658908634,50.81911071871536]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Marble Canyon 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933872","name":"Marble Canyon 3"}},{"type":"Feature","geometry":{"coordinates":[[[-120.91082462670296,50.74374188889629],[-120.87882997123612,50.749183441966736],[-120.95146385406792,50.87542934574005],[-121.00869742342952,50.885104065575206],[-121.03905156625711,50.8753668069308],[-121.01443290885278,50.83754658399612],[-120.99270180031459,50.80539067095627],[-120.91082462670296,50.74374188889629]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Skeetchestn","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933817","name":"Skeetchestn"}},{"type":"Feature","geometry":{"coordinates":[[[-119.68991719821457,50.83064591863978],[-119.70926818319866,50.82114535109899],[-119.69448343501449,50.81589883750295],[-119.67317360538101,50.81919679101711],[-119.68991719821457,50.83064591863978]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Chase","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933054","name":"Chase"}},{"type":"Feature","geometry":{"coordinates":[[[-121.36688994802283,50.851949933058364],[-121.39591947573004,50.83788535999838],[-121.36709857499348,50.830590267868594],[-121.36688994802283,50.851949933058364]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Bonaparte 3","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933812","name":"Bonaparte 3"}},{"type":"Feature","geometry":{"coordinates":[[[-119.60226573806622,50.853883460148836],[-119.60513459153961,50.85393492096201],[-119.61862291426208,50.84671713189246],[-119.60845245452818,50.84626844825896],[-119.60226573806622,50.853883460148836]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Stequmwhulpa 5","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933892","name":"Stequmwhulpa 5"}},{"type":"Feature","geometry":{"coordinates":[[[-119.92154990607571,50.92464755153206],[-120.09601664477599,50.92504244967237],[-120.09542328609926,51.011408909042316],[-120.1110072909168,51.06777032928585],[-120.1351155162026,51.102104457837555],[-120.22059476446849,51.09420906194166],[-120.55730203582421,51.08872382494201],[-120.5596014267523,51.02859665413908],[-120.51101966822048,50.99436527243426],[-120.50936387866246,50.96802423512184],[-120.41854444291734,50.93867037259102],[-120.31176328646212,50.86622761374369],[-120.26052625711819,50.85566703648687],[-120.30088277216662,50.78150923651867],[-120.1761246138965,50.78023762108498],[-120.17857740173227,50.678201001289075],[-120.20970153701757,50.67306505985461],[-120.04199037752775,50.65818407519424],[-119.91499671005435,50.64515326348166],[-119.83966522487086,50.67356055214155],[-119.7632200885262,50.73916140943444],[-119.78027690817468,50.769899761402016],[-119.75887558660052,50.822392153583664],[-119.72266702587886,50.80588096932372],[-119.72111376978012,50.780820828823906],[-119.71642498797507,50.7858380009823],[-119.70926818319866,50.82114535109899],[-119.68991719821457,50.83064591863978],[-119.60996142557744,50.87006325025438],[-119.66419384683739,50.86772658977897],[-119.65601652641274,50.939064470829955],[-119.66906782293843,50.9582727000753],[-119.70453126624193,50.98370475601514],[-119.80401486354242,50.98402291623459],[-119.8043607496601,50.924590619456716],[-119.92154990607571,50.92464755153206]],[[-119.92154990607571,50.92464755153206],[-119.83232960679308,50.88863406840274],[-119.83017883944895,50.86621008657413],[-119.91390564731269,50.85854725925117],[-119.96148377789284,50.91441881638423],[-119.92154990607571,50.92464755153206]],[[-120.23115346817904,51.00620643165527],[-120.23774595218991,50.968304101362676],[-120.26290426393058,50.96820237132108],[-120.2507276047705,50.983778289557925],[-120.24489129662079,51.006454947633664],[-120.23115346817904,51.00620643165527]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola P (Rivers and the Peaks)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933044","name":"Thompson-Nicola P (Rivers and the Peaks)"}},{"type":"Feature","geometry":{"coordinates":[[[-121.47628741728666,50.88977969863493],[-121.52298981578144,50.89002407369082],[-121.52237174332615,50.86956096626138],[-121.49894276487632,50.87910649098444],[-121.44517462372934,50.87864040863464],[-121.44531361383,50.88953329452602],[-121.47628741728666,50.88977969863493]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Lower Hat Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933836","name":"Lower Hat Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-119.92154990607571,50.92464755153206],[-119.96148377789284,50.91441881638423],[-119.91390564731269,50.85854725925117],[-119.83017883944895,50.86621008657413],[-119.83232960679308,50.88863406840274],[-119.92154990607571,50.92464755153206]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Sun Peaks Mountain","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933045","name":"Sun Peaks Mountain"}},{"type":"Feature","geometry":{"coordinates":[[[-120.23115346817904,51.00620643165527],[-120.24489129662079,51.006454947633664],[-120.2507276047705,50.983778289557925],[-120.26290426393058,50.96820237132108],[-120.23774595218991,50.968304101362676],[-120.23115346817904,51.00620643165527]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Whispering Pines 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933877","name":"Whispering Pines 4"}},{"type":"Feature","geometry":{"coordinates":[[[-119.78598648681593,51.07917987525417],[-119.77615740989218,51.075855569776365],[-119.77371569869699,51.080524936987786],[-119.78598648681593,51.07917987525417]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Squaam 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933889","name":"Squaam 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.59235269489214,51.10434832953615],[-121.59696335574597,51.080088769336705],[-121.57428244977746,51.07938407581422],[-121.56258066699526,51.10653237869496],[-121.59235269489214,51.10434832953615]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Clinton","type":"Village","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933028","name":"Clinton"}},{"type":"Feature","geometry":{"coordinates":[[[-122.00693721273261,51.117073132345254],[-122.03969179194466,51.13981951012576],[-122.04985203219934,51.12331155280846],[-122.02826927272272,51.099917204651696],[-122.00693721273261,51.117073132345254]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"High Bar 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933819","name":"High Bar 1"}},{"type":"Feature","geometry":{"coordinates":[[[-120.1266640439186,51.134852175407076],[-120.12781847419669,51.13397607756493],[-120.12497785512748,51.1332607376815],[-120.12463462512396,51.13526063008106],[-120.1266640439186,51.134852175407076]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Louis Creek 4","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933888","name":"Louis Creek 4"}},{"type":"Feature","geometry":{"coordinates":[[[-120.1191054923505,51.14716559937517],[-120.11634632339667,51.19768703964487],[-120.14913919572284,51.178335896999585],[-120.1191054923505,51.14716559937517]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Barriere","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933074","name":"Barriere"}},{"type":"Feature","geometry":{"coordinates":[[[-122.28191759619304,51.51887000435118],[-122.33078893409925,51.524138252773355],[-122.42758823563683,51.509859060856556],[-122.46919384629817,51.48211836084817],[-122.55971132420387,51.485122839964276],[-122.55938225957765,51.43544439106777],[-122.62411995115298,51.41721146621181],[-122.61341879613394,51.37255389773207],[-122.67488330730598,51.274371491466155],[-122.63085889893698,51.24876105560507],[-122.5713395706734,51.24758789948112],[-122.53027091901271,51.20918626290719],[-122.47078363365969,51.156658313525575],[-122.46533923229953,51.11422834838338],[-122.37633552396848,51.106982096351786],[-122.35839966655683,51.074551778528956],[-122.306385424651,51.04441607037674],[-122.19715214436089,51.01838526940725],[-122.16533913664877,50.99025213457542],[-121.91360004303682,50.98709167911766],[-121.91510340698797,50.996834280094106],[-121.62749484618871,50.99610887039958],[-121.6260853820538,50.9249547626597],[-121.07107758539125,50.924854087893564],[-121.07266749598863,51.07223809448595],[-120.9380048823751,51.090297680204564],[-121.00095810646258,51.13579793486426],[-120.96032117520318,51.204127090907406],[-120.91753067249937,51.2144453997496],[-120.88658750253767,51.24472714042451],[-120.80396242168334,51.25070247037866],[-120.77513022671097,51.231807425208714],[-120.73517022436482,51.239692651885036],[-120.68111126753624,51.2151399061726],[-120.61701807425233,51.2165160992119],[-120.55777392969058,51.193571031415274],[-120.56072881186645,51.43461791161262],[-120.8334670298005,51.435158628884835],[-120.9483287205719,51.445102190586596],[-121.0017202573667,51.429060077880074],[-121.13384203317229,51.439629720604636],[-121.17179210642696,51.430894255888425],[-121.27661851536045,51.379857793924074],[-121.42064190445292,51.37755958808855],[-121.42616168787305,51.43670319887458],[-121.52514210501123,51.451053301569914],[-121.52662721583955,51.547723999183354],[-121.63049759542757,51.54738354247066],[-121.63108047730725,51.564048309204416],[-121.88589267595658,51.56613312607204],[-121.88572777364531,51.51784655288858],[-121.94636410065043,51.5170016062985],[-122.17903912864374,51.516110266458504],[-122.28191759619304,51.51887000435118]],[[-122.15932527083808,51.473061341180774],[-122.1427869638826,51.473290523198806],[-122.15163071300755,51.465139888423565],[-122.15932527083808,51.473061341180774]],[[-121.59235269489214,51.10434832953615],[-121.56258066699526,51.10653237869496],[-121.57428244977746,51.07938407581422],[-121.59696335574597,51.080088769336705],[-121.59235269489214,51.10434832953615]],[[-122.00693721273261,51.117073132345254],[-122.02826927272272,51.099917204651696],[-122.04985203219934,51.12331155280846],[-122.03969179194466,51.13981951012576],[-122.00693721273261,51.117073132345254]],[[-121.97769663661286,51.41046558692634],[-122.0002071591557,51.42455989130738],[-122.08686415909943,51.42535805120648],[-122.06660933700302,51.438407765256585],[-121.97747657421003,51.43582144505554],[-121.97769663661286,51.41046558692634]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola E (Bonaparte Plateau)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933032","name":"Thompson-Nicola E (Bonaparte Plateau)"}},{"type":"Feature","geometry":{"coordinates":[[[-120.15976853549104,51.339547868011],[-120.15312811606394,51.312537771611105],[-120.15662402042105,51.29732297722816],[-120.17039632608784,51.2931414646135],[-120.14387884679402,51.269580432771356],[-120.15238812263514,51.30459778797997],[-120.15246539824076,51.3400054279906],[-120.15976853549104,51.339547868011]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"North Thompson 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933887","name":"North Thompson 1"}},{"type":"Feature","geometry":{"coordinates":[[[-120.5442337906107,51.66958069676481],[-120.55841504442225,51.66454835674849],[-120.56072881186645,51.43461791161262],[-120.55777392969058,51.193571031415274],[-120.55730203582421,51.08872382494201],[-120.22059476446849,51.09420906194166],[-120.1351155162026,51.102104457837555],[-120.1110072909168,51.06777032928585],[-120.09542328609926,51.011408909042316],[-120.09601664477599,50.92504244967237],[-119.92154990607571,50.92464755153206],[-119.8043607496601,50.924590619456716],[-119.80401486354242,50.98402291623459],[-119.70453126624193,50.98370475601514],[-119.536918404455,50.98359434586235],[-119.54807206314442,51.01103044779492],[-119.50713150984751,51.06665214955037],[-119.52569883935175,51.10664693173659],[-119.48393414795052,51.17372818304496],[-119.43965648890668,51.18228344660909],[-119.44069469321866,51.221772775535975],[-119.3708816411726,51.25549364424913],[-119.29399449073557,51.24634292622944],[-119.23722320792575,51.268109228029275],[-119.22098710116555,51.311124603392926],[-119.19242495283454,51.31760557657068],[-119.18704895813184,51.35449509980522],[-119.05878826370471,51.39501142599631],[-119.02902696490762,51.42290157536584],[-118.9534538741414,51.46131035394043],[-118.95019426570818,51.507398369566864],[-118.98368790541764,51.54235816003254],[-118.96055967831114,51.60952164797827],[-118.97798879549991,51.64407000227665],[-119.2775908591573,51.64812432074224],[-119.30510373260645,51.63368656307388],[-119.33022996454979,51.59006560983373],[-119.4706896352821,51.56806464219006],[-119.50036851366042,51.60255798713329],[-119.54377967751277,51.599725780902624],[-119.59493491318527,51.55333053425903],[-119.611134904909,51.509303337602766],[-119.65893688293353,51.503835875553335],[-119.70011546393563,51.48226382206402],[-120.14978517422095,51.47912212697771],[-120.19859489528433,51.47194080204724],[-120.20280485160539,51.5307088706853],[-120.18589262778612,51.55286812359898],[-120.23544110339806,51.585571705758866],[-120.26096132827266,51.63259426947648],[-120.32165507527291,51.636948342632735],[-120.33006080010283,51.65359991133295],[-120.45272024141876,51.67383237171583],[-120.49392033031545,51.659725318262815],[-120.5442337906107,51.66958069676481]],[[-120.20035610456351,51.42165408798692],[-120.19932292210129,51.42295142511103],[-120.1982107632242,51.42259753417412],[-120.19868017348152,51.42109635365863],[-120.20035610456351,51.42165408798692]],[[-120.1266640439186,51.134852175407076],[-120.12463462512396,51.13526063008106],[-120.12497785512748,51.1332607376815],[-120.12781847419669,51.13397607756493],[-120.1266640439186,51.134852175407076]],[[-119.78598648681593,51.07917987525417],[-119.77371569869699,51.080524936987786],[-119.77615740989218,51.075855569776365],[-119.78598648681593,51.07917987525417]],[[-120.1191054923505,51.14716559937517],[-120.14913919572284,51.178335896999585],[-120.11634632339667,51.19768703964487],[-120.1191054923505,51.14716559937517]],[[-120.15976853549104,51.339547868011],[-120.15246539824076,51.3400054279906],[-120.15238812263514,51.30459778797997],[-120.14387884679402,51.269580432771356],[-120.17039632608784,51.2931414646135],[-120.15662402042105,51.29732297722816],[-120.15312811606394,51.312537771611105],[-120.15976853549104,51.339547868011]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola O (Lower North Thompson)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933072","name":"Thompson-Nicola O (Lower North Thompson)"}},{"type":"Feature","geometry":{"coordinates":[[[-120.20035610456351,51.42165408798692],[-120.19868017348152,51.42109635365863],[-120.1982107632242,51.42259753417412],[-120.19932292210129,51.42295142511103],[-120.20035610456351,51.42165408798692]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Nekalliston 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933886","name":"Nekalliston 2"}},{"type":"Feature","geometry":{"coordinates":[[[-121.97769663661286,51.41046558692634],[-121.97747657421003,51.43582144505554],[-122.06660933700302,51.438407765256585],[-122.08686415909943,51.42535805120648],[-122.0002071591557,51.42455989130738],[-121.97769663661286,51.41046558692634]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Canoe Creek 2","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933821","name":"Canoe Creek 2"}},{"type":"Feature","geometry":{"coordinates":[[[-122.15932527083808,51.473061341180774],[-122.15163071300755,51.465139888423565],[-122.1427869638826,51.473290523198806],[-122.15932527083808,51.473061341180774]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Canoe Creek 1","type":"Indian reserve","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933814","name":"Canoe Creek 1"}},{"type":"Feature","geometry":{"coordinates":[[[-120.0130005786558,51.68744747182775],[-120.04125966199724,51.66771576205757],[-120.1009470967178,51.66064088455836],[-120.12305835910878,51.63048250195716],[-120.0228766386662,51.62884267455902],[-119.95346201604258,51.60436701626027],[-119.94216235835255,51.62729295360169],[-120.0130005786558,51.68744747182775]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Clearwater","type":"District municipality","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933067","name":"Clearwater"}},{"type":"Feature","geometry":{"coordinates":[[[-118.80320419853614,52.17722257400103],[-118.84719132366848,52.206799127936094],[-118.839832425669,52.23281109263444],[-118.8821237481863,52.26408955766972],[-118.78802059778064,52.30529402627462],[-118.86844898706418,52.34430522496931],[-118.9263772037914,52.353597998267475],[-118.94793457668874,52.391212690583444],[-118.92162942231695,52.422119587653036],[-118.92426376533554,52.4631567164777],[-118.88632215435284,52.47415478210626],[-118.92755699142704,52.56878594085348],[-119.03363497457812,52.59450823729773],[-119.05608806683742,52.63329783055958],[-119.19256750031987,52.63689036762571],[-119.36440142129895,52.63250937836778],[-119.3694796150536,52.65611080530539],[-119.44258646208658,52.6387638018246],[-119.46491103194981,52.649211970572736],[-119.53111838977571,52.63154157548282],[-119.57795469385309,52.64799119057398],[-119.61606006916409,52.68913509532651],[-119.6774833929841,52.69561343264292],[-119.768405977507,52.66031932069511],[-119.7635222704512,52.61045635308771],[-119.72353398279493,52.60399194489923],[-119.6958130971696,52.57268649685632],[-119.70105685822628,52.537477230327255],[-119.66603371190747,52.53366888886704],[-119.6539019827823,52.48984912830943],[-119.62077400546485,52.47412991035993],[-119.56645554372444,52.40348550045471],[-119.46396788329702,52.36247814300466],[-119.52955139637884,52.309872570372384],[-119.50386289499261,52.263173706336914],[-119.5156795576316,52.22223017504159],[-119.48320357091006,52.11060314119225],[-119.52792996041515,52.09200361117127],[-119.55651009505932,52.03174919678695],[-119.43126859025803,52.025282754991494],[-119.4465898410614,51.97366968076518],[-119.47368815939245,51.95739027802954],[-119.43707721329226,51.92904305707149],[-119.48751017572552,51.877280241307936],[-119.48191540541933,51.83425381528588],[-119.55238779593418,51.80470157397346],[-119.5889643109945,51.80249912206909],[-119.62971557765634,51.73492332295452],[-119.67006038104566,51.694722351028965],[-119.65684088723683,51.66806020253019],[-119.68386111315583,51.64695340366094],[-119.67486040212887,51.601632295918016],[-119.69813389992203,51.58539191479285],[-119.70011546393563,51.48226382206402],[-119.65893688293353,51.503835875553335],[-119.611134904909,51.509303337602766],[-119.59493491318527,51.55333053425903],[-119.54377967751277,51.599725780902624],[-119.50036851366042,51.60255798713329],[-119.4706896352821,51.56806464219006],[-119.33022996454979,51.59006560983373],[-119.30510373260645,51.63368656307388],[-119.2775908591573,51.64812432074224],[-118.97798879549991,51.64407000227665],[-119.00994132172315,51.687260331795045],[-118.93782763499192,51.70272153474947],[-118.92386926889019,51.68956225211715],[-118.88550715385679,51.73310306642999],[-118.88681284570195,51.7750449336348],[-118.9613926496334,51.81057019801279],[-118.95028877691648,51.84948141682526],[-118.99013456256455,51.86455306858364],[-118.96595103459693,51.88711097535229],[-118.98775403623618,51.93130247601258],[-118.9085192825515,51.928060240006324],[-118.89102988450458,51.954074183777315],[-118.97185248201436,51.977219586851376],[-118.94425761882322,52.02619783672693],[-118.85593896296875,52.04563434865206],[-118.87280812185531,52.07601766827151],[-118.83366979070992,52.164311897583474],[-118.80320419853614,52.17722257400103]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola B (Thompson Headwaters)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933070","name":"Thompson-Nicola B (Thompson Headwaters)"}},{"type":"Feature","geometry":{"coordinates":[[[-120.14254549439083,52.87674077578408],[-120.17725338382988,52.86003454741283],[-120.21214278647919,52.87633176809711],[-120.25953702305515,52.85961601987577],[-120.3129225740879,52.85871318516134],[-120.33422840079746,52.83313909803514],[-120.30243816152856,52.815110168492055],[-120.30827383875823,52.78011251195091],[-120.27378052742317,52.74592322282795],[-120.2936941492979,52.72560440485187],[-120.254383523472,52.6773509943649],[-120.2897276618271,52.65775472848972],[-120.23527869557962,52.6347139318352],[-120.29367798390496,52.60762654381557],[-120.29158060281952,52.58735904296742],[-120.33321015323257,52.56675289378218],[-120.36301267232386,52.52814209569241],[-120.40767781794666,52.534483467497324],[-120.50940186011252,52.49474459262114],[-120.5421505490952,52.466116494843575],[-120.4592203884972,52.42124218329561],[-120.52109016274525,52.37975308524671],[-120.5348509734951,52.32940096234168],[-120.4664727559977,52.30441953406306],[-120.49150006778994,52.288514461977265],[-120.38695603520722,52.17854878831645],[-120.38754754617437,52.13744511708389],[-120.34744252903576,52.155816629126235],[-120.29367224148528,52.08261658717435],[-120.31678271330632,52.064339160068236],[-120.30579458203157,52.012912507185],[-120.3300115266359,51.99507467684202],[-120.2502757088437,51.94025309367445],[-120.27316147090343,51.89260567680543],[-120.22396288941343,51.86659424705926],[-120.22664968764181,51.82542980589349],[-120.27578179540981,51.83219694151357],[-120.31952507458452,51.819912552724425],[-120.32155884665531,51.78372446482908],[-120.34992458604668,51.752667313278074],[-120.33852336049962,51.732974919447656],[-120.39127080532734,51.70400897362374],[-120.45935552901456,51.70988075512815],[-120.5442337906107,51.66958069676481],[-120.49392033031545,51.659725318262815],[-120.45272024141876,51.67383237171583],[-120.33006080010283,51.65359991133295],[-120.32165507527291,51.636948342632735],[-120.26096132827266,51.63259426947648],[-120.23544110339806,51.585571705758866],[-120.18589262778612,51.55286812359898],[-120.20280485160539,51.5307088706853],[-120.19859489528433,51.47194080204724],[-120.14978517422095,51.47912212697771],[-119.70011546393563,51.48226382206402],[-119.69813389992203,51.58539191479285],[-119.67486040212887,51.601632295918016],[-119.68386111315583,51.64695340366094],[-119.65684088723683,51.66806020253019],[-119.67006038104566,51.694722351028965],[-119.62971557765634,51.73492332295452],[-119.5889643109945,51.80249912206909],[-119.55238779593418,51.80470157397346],[-119.48191540541933,51.83425381528588],[-119.48751017572552,51.877280241307936],[-119.43707721329226,51.92904305707149],[-119.47368815939245,51.95739027802954],[-119.4465898410614,51.97366968076518],[-119.43126859025803,52.025282754991494],[-119.55651009505932,52.03174919678695],[-119.52792996041515,52.09200361117127],[-119.48320357091006,52.11060314119225],[-119.5156795576316,52.22223017504159],[-119.50386289499261,52.263173706336914],[-119.52955139637884,52.309872570372384],[-119.46396788329702,52.36247814300466],[-119.56645554372444,52.40348550045471],[-119.62077400546485,52.47412991035993],[-119.6539019827823,52.48984912830943],[-119.66603371190747,52.53366888886704],[-119.70105685822628,52.537477230327255],[-119.6958130971696,52.57268649685632],[-119.72353398279493,52.60399194489923],[-119.7635222704512,52.61045635308771],[-119.768405977507,52.66031932069511],[-120.0247460353654,52.75757772816632],[-120.06142917336307,52.82429429489569],[-120.1114813386262,52.84314212418255],[-120.14254549439083,52.87674077578408]],[[-120.0130005786558,51.68744747182775],[-119.94216235835255,51.62729295360169],[-119.95346201604258,51.60436701626027],[-120.0228766386662,51.62884267455902],[-120.12305835910878,51.63048250195716],[-120.1009470967178,51.66064088455836],[-120.04125966199724,51.66771576205757],[-120.0130005786558,51.68744747182775]]],"type":"Polygon"},"properties":{"province":"British Columbia","economic_region":"Thompson/Okanagan","regional_district_aka_census_division":"Thompson-Nicola","census_subdivision":"Thompson-Nicola A (Wells Gray Country)","type":"Regional district electoral area","census_year":"2021","economic_region_id":"5930","census_division_code":"5933","census_subdivision_code":"5933068","name":"Thompson-Nicola A (Wells Gray Country)"}}]} +{"name": "lcsd000a25a_e", "type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-114.893156, 50.096674], [-114.89355, 50.081757], [-114.894156, 50.069224], [-114.897162, 50.069275], [-114.903565, 50.069108], [-114.920874, 50.068262], [-114.921081, 50.068533], [-114.921185, 50.069369], [-114.920937, 50.070323], [-114.919368, 50.071705], [-114.919176, 50.071997], [-114.919167, 50.072984], [-114.919544, 50.073471], [-114.919835, 50.073529], [-114.920639, 50.074006], [-114.921251, 50.074762], [-114.921681, 50.074936], [-114.922261, 50.074996], [-114.924224, 50.074797], [-114.92516, 50.075005], [-114.926289, 50.074901], [-114.926924, 50.07474], [-114.927477, 50.074458], [-114.927818, 50.07408], [-114.927944, 50.073522], [-114.928165, 50.073381], [-114.928406, 50.073343], [-114.929336, 50.073555], [-114.931276, 50.075217], [-114.931831, 50.075513], [-114.932364, 50.075641], [-114.931371, 50.073559], [-114.936612, 50.07375], [-114.938457, 50.035434], [-114.939837, 50.031763], [-114.95014, 50.025749], [-114.951029, 50.019899], [-114.951748, 50.012066], [-114.948291, 50.005947], [-114.947533, 50.005433], [-114.942134, 49.996724], [-114.92393, 49.96074], [-114.914386, 49.959751], [-114.901581, 49.961207], [-114.900726, 49.977769], [-114.898976, 49.984575], [-114.898415, 49.987479], [-114.897855, 49.991897], [-114.897212, 50.00949], [-114.896866, 50.016109], [-114.896752, 50.016935], [-114.874982, 50.017044], [-114.837423, 50.016774], [-114.828616, 50.016636], [-114.793242, 50.015644], [-114.798513, 50.069446], [-114.798869, 50.070796], [-114.799113, 50.072505], [-114.800762, 50.072574], [-114.802721, 50.070681], [-114.804893, 50.068445], [-114.825341, 50.069013], [-114.824187, 50.094477], [-114.888446, 50.096655], [-114.893156, 50.096674]]], [[[-114.8725, 50.188226], [-114.872914, 50.196556], [-114.874251, 50.21316], [-114.873143, 50.213195], [-114.873808, 50.224482], [-114.891058, 50.224047], [-114.889837, 50.199228], [-114.910638, 50.19942], [-114.910409, 50.188971], [-114.900821, 50.188753], [-114.900893, 50.175457], [-114.889146, 50.175464], [-114.888647, 50.162855], [-114.851319, 50.162801], [-114.851083, 50.187777], [-114.8725, 50.188226]]], [[[-114.851083, 50.187777], [-114.83602, 50.187459], [-114.835764, 50.198824], [-114.850976, 50.199095], [-114.851083, 50.187777]]]]}, "properties": {"name": "Elkford", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Elkford", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901003", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-114.858172, 49.820235], [-114.858864, 49.812897], [-114.871959, 49.812433], [-114.871919, 49.811055], [-114.871144, 49.810203], [-114.870879, 49.809053], [-114.873376, 49.805569], [-114.875137, 49.802962], [-114.875418, 49.801993], [-114.87568, 49.80167], [-114.87623, 49.799827], [-114.876538, 49.799297], [-114.877044, 49.798767], [-114.877026, 49.798596], [-114.877793, 49.797544], [-114.87836, 49.797198], [-114.87924, 49.796894], [-114.881621, 49.796833], [-114.883032, 49.796336], [-114.883194, 49.795754], [-114.883192, 49.795292], [-114.882958, 49.794866], [-114.88246, 49.794419], [-114.881875, 49.794094], [-114.881147, 49.793836], [-114.880717, 49.793295], [-114.880712, 49.792353], [-114.880559, 49.791871], [-114.879491, 49.790812], [-114.878975, 49.790139], [-114.8788, 49.789755], [-114.878957, 49.789238], [-114.87979, 49.788829], [-114.880034, 49.788536], [-114.88099, 49.788212], [-114.881381, 49.787916], [-114.881977, 49.786673], [-114.881968, 49.786224], [-114.881793, 49.785682], [-114.881138, 49.784937], [-114.880057, 49.784366], [-114.878611, 49.78398], [-114.877593, 49.784296], [-114.876427, 49.784434], [-114.875669, 49.784015], [-114.875561, 49.783699], [-114.875707, 49.782627], [-114.875679, 49.781596], [-114.875843, 49.781109], [-114.875805, 49.780845], [-114.875163, 49.780007], [-114.874827, 49.779779], [-114.874485, 49.779649], [-114.874232, 49.779449], [-114.874041, 49.779112], [-114.873678, 49.777971], [-114.874349, 49.776171], [-114.874553, 49.775228], [-114.874571, 49.774139], [-114.874238, 49.773425], [-114.873095, 49.772434], [-114.872958, 49.772197], [-114.872944, 49.770007], [-114.873706, 49.767821], [-114.873519, 49.767487], [-114.874671, 49.767567], [-114.876331, 49.764686], [-114.890175, 49.765937], [-114.889959, 49.769532], [-114.904418, 49.770439], [-114.908332, 49.770375], [-114.907824, 49.769497], [-114.910643, 49.763607], [-114.910958, 49.755875], [-114.913622, 49.743493], [-114.913654, 49.707985], [-114.905084, 49.692659], [-114.903921, 49.68141], [-114.886878, 49.681934], [-114.886291, 49.68907], [-114.885823, 49.706968], [-114.874073, 49.707431], [-114.874875, 49.730031], [-114.875071, 49.731394], [-114.860297, 49.729855], [-114.85538, 49.729281], [-114.854089, 49.727789], [-114.842348, 49.715701], [-114.831263, 49.705637], [-114.828447, 49.70273], [-114.826705, 49.700846], [-114.826226, 49.700181], [-114.82496, 49.698867], [-114.812898, 49.688014], [-114.811732, 49.68669], [-114.795578, 49.681805], [-114.787259, 49.6711], [-114.78297, 49.666805], [-114.774462, 49.665338], [-114.771474, 49.664917], [-114.761716, 49.66355], [-114.749576, 49.662104], [-114.748863, 49.640002], [-114.703826, 49.639418], [-114.703419, 49.636754], [-114.702109, 49.637374], [-114.700644, 49.636247], [-114.699172, 49.635528], [-114.697428, 49.631837], [-114.696411, 49.629356], [-114.691006, 49.630044], [-114.691227, 49.631247], [-114.691231, 49.633071], [-114.686825, 49.634578], [-114.686386, 49.63678], [-114.680695, 49.638087], [-114.679318, 49.638812], [-114.679373, 49.640599], [-114.674336, 49.642913], [-114.667753, 49.637446], [-114.666248, 49.639684], [-114.665171, 49.641685], [-114.662819, 49.643724], [-114.66277, 49.645142], [-114.662251, 49.648193], [-114.659813, 49.65525], [-114.717171, 49.653838], [-114.716183, 49.667716], [-114.718387, 49.667658], [-114.736375, 49.668434], [-114.763435, 49.679354], [-114.765721, 49.694332], [-114.771642, 49.731799], [-114.774889, 49.749969], [-114.78229, 49.785637], [-114.788191, 49.820449], [-114.799596, 49.820589], [-114.858172, 49.820235]]], [[[-114.625638, 49.477869], [-114.628101, 49.514712], [-114.648993, 49.514427], [-114.649315, 49.518749], [-114.672162, 49.517989], [-114.672019, 49.516081], [-114.671396, 49.516107], [-114.671811, 49.514451], [-114.672134, 49.513979], [-114.672456, 49.513721], [-114.672536, 49.51332], [-114.672756, 49.513065], [-114.672947, 49.512637], [-114.6731, 49.51204], [-114.673686, 49.511582], [-114.674996, 49.509391], [-114.675188, 49.507193], [-114.675415, 49.506556], [-114.676026, 49.505959], [-114.676345, 49.504721], [-114.676777, 49.504193], [-114.677121, 49.503504], [-114.677179, 49.503141], [-114.677459, 49.50287], [-114.677606, 49.502402], [-114.678038, 49.502061], [-114.678632, 49.500784], [-114.67875, 49.500179], [-114.678769, 49.499261], [-114.678964, 49.498427], [-114.679448, 49.497894], [-114.679542, 49.496941], [-114.679975, 49.49649], [-114.680158, 49.495631], [-114.680577, 49.495069], [-114.68091, 49.494201], [-114.681083, 49.493277], [-114.68112, 49.491777], [-114.680703, 49.490294], [-114.680104, 49.489301], [-114.679657, 49.488806], [-114.67956, 49.488501], [-114.679583, 49.487619], [-114.679737, 49.486682], [-114.679697, 49.48618], [-114.669852, 49.486274], [-114.661288, 49.486422], [-114.647181, 49.486037], [-114.64619, 49.472183], [-114.625388, 49.472624], [-114.625638, 49.477869]]], [[[-114.674355, 49.523129], [-114.677229, 49.523137], [-114.677343, 49.523277], [-114.680606, 49.525645], [-114.682493, 49.526547], [-114.684533, 49.527072], [-114.684699, 49.527326], [-114.686801, 49.527633], [-114.687407, 49.527601], [-114.68853, 49.527801], [-114.695601, 49.52843], [-114.695639, 49.528372], [-114.694864, 49.528283], [-114.693744, 49.528037], [-114.693226, 49.527837], [-114.692415, 49.527337], [-114.691145, 49.526137], [-114.681868, 49.518065], [-114.681059, 49.517559], [-114.680588, 49.517383], [-114.680108, 49.517265], [-114.679145, 49.517191], [-114.678995, 49.521058], [-114.677852, 49.521068], [-114.676679, 49.517829], [-114.673897, 49.521055], [-114.674355, 49.523129]]], [[[-114.716795, 49.966487], [-114.740412, 49.966398], [-114.743999, 49.966249], [-114.785457, 49.966501], [-114.785325, 49.949025], [-114.784537, 49.90467], [-114.784424, 49.904434], [-114.784516, 49.904237], [-114.784966, 49.903824], [-114.785377, 49.903696], [-114.78548, 49.903582], [-114.785594, 49.9029], [-114.785737, 49.902831], [-114.785917, 49.902843], [-114.786962, 49.903115], [-114.787102, 49.903099], [-114.787434, 49.902873], [-114.787866, 49.901954], [-114.788222, 49.90178], [-114.788529, 49.901742], [-114.789668, 49.901809], [-114.790371, 49.901678], [-114.791808, 49.901004], [-114.792242, 49.900949], [-114.793102, 49.901037], [-114.79344, 49.900971], [-114.794175, 49.900679], [-114.794907, 49.900253], [-114.795302, 49.900108], [-114.796719, 49.899892], [-114.797734, 49.899937], [-114.798408, 49.899816], [-114.798832, 49.899671], [-114.798962, 49.899593], [-114.799096, 49.899352], [-114.799702, 49.898913], [-114.799738, 49.898446], [-114.799813, 49.898331], [-114.800479, 49.898038], [-114.80064, 49.897871], [-114.800581, 49.897374], [-114.800675, 49.897125], [-114.80088, 49.896885], [-114.801367, 49.896589], [-114.802118, 49.896316], [-114.803035, 49.896368], [-114.803354, 49.896059], [-114.803503, 49.895549], [-114.803679, 49.895356], [-114.804092, 49.895192], [-114.804755, 49.895259], [-114.805374, 49.895162], [-114.805663, 49.894934], [-114.805855, 49.894659], [-114.80649, 49.894194], [-114.806934, 49.894194], [-114.807504, 49.89452], [-114.807767, 49.894597], [-114.808908, 49.894618], [-114.809467, 49.894557], [-114.81048, 49.894629], [-114.8126, 49.894544], [-114.814614, 49.894041], [-114.816918, 49.894194], [-114.81787, 49.894409], [-114.818638, 49.894352], [-114.818991, 49.894268], [-114.820369, 49.894249], [-114.82061, 49.894145], [-114.820596, 49.893543], [-114.820699, 49.893427], [-114.820939, 49.893325], [-114.821803, 49.893332], [-114.822955, 49.893704], [-114.823417, 49.893695], [-114.824141, 49.893349], [-114.825056, 49.893141], [-114.827049, 49.893088], [-114.82782, 49.892986], [-114.828953, 49.892539], [-114.83023, 49.892348], [-114.831141, 49.891888], [-114.832211, 49.891629], [-114.833575, 49.891619], [-114.834374, 49.891849], [-114.834932, 49.89212], [-114.835172, 49.892368], [-114.835693, 49.89253], [-114.835978, 49.89268], [-114.836286, 49.893009], [-114.837206, 49.893576], [-114.838269, 49.893811], [-114.838651, 49.893989], [-114.839133, 49.894088], [-114.839956, 49.894067], [-114.840771, 49.893866], [-114.841459, 49.893771], [-114.843649, 49.893668], [-114.844078, 49.893425], [-114.84415, 49.893047], [-114.84427, 49.892871], [-114.844473, 49.892713], [-114.844811, 49.892593], [-114.845159, 49.892617], [-114.845569, 49.892768], [-114.846344, 49.893205], [-114.846691, 49.893563], [-114.846923, 49.893648], [-114.847466, 49.893658], [-114.848506, 49.893416], [-114.848959, 49.893568], [-114.849793, 49.89363], [-114.850719, 49.89344], [-114.851095, 49.893437], [-114.851242, 49.893557], [-114.851383, 49.893848], [-114.851791, 49.894044], [-114.852126, 49.89405], [-114.852804, 49.893865], [-114.853699, 49.894044], [-114.854228, 49.894071], [-114.855438, 49.894751], [-114.855529, 49.89486], [-114.855622, 49.895312], [-114.856563, 49.895752], [-114.856818, 49.895937], [-114.856887, 49.896306], [-114.856614, 49.896814], [-114.856603, 49.897021], [-114.856745, 49.897293], [-114.856947, 49.897459], [-114.857289, 49.897573], [-114.857346, 49.897643], [-114.85775, 49.897546], [-114.858311, 49.897553], [-114.859244, 49.898002], [-114.859969, 49.898076], [-114.860454, 49.897996], [-114.861235, 49.897632], [-114.86181, 49.897063], [-114.862984, 49.896518], [-114.863505, 49.895972], [-114.863919, 49.89497], [-114.864287, 49.894441], [-114.864773, 49.894105], [-114.865071, 49.894], [-114.865618, 49.893967], [-114.866268, 49.894047], [-114.867231, 49.894292], [-114.86802, 49.894323], [-114.868661, 49.894208], [-114.86955, 49.893819], [-114.870448, 49.892668], [-114.870718, 49.892042], [-114.870867, 49.891211], [-114.870824, 49.890199], [-114.871022, 49.889653], [-114.87142, 49.889297], [-114.872512, 49.888891], [-114.873235, 49.888427], [-114.873463, 49.888057], [-114.873657, 49.887161], [-114.874208, 49.886289], [-114.874452, 49.885409], [-114.874894, 49.88453], [-114.875385, 49.883961], [-114.876265, 49.883502], [-114.876971, 49.882826], [-114.876957, 49.882495], [-114.876681, 49.881991], [-114.875856, 49.88143], [-114.876027, 49.881249], [-114.876026, 49.88089], [-114.875732, 49.879499], [-114.875444, 49.878987], [-114.875341, 49.878269], [-114.875019, 49.877827], [-114.874449, 49.877563], [-114.873543, 49.87728], [-114.872436, 49.877245], [-114.870859, 49.87704], [-114.870432, 49.876915], [-114.86991, 49.876566], [-114.868959, 49.875502], [-114.868937, 49.875197], [-114.868139, 49.874389], [-114.868026, 49.873638], [-114.86806, 49.872754], [-114.867526, 49.871798], [-114.866252, 49.870779], [-114.857946, 49.871175], [-114.841556, 49.871761], [-114.841955, 49.876259], [-114.8315, 49.87639], [-114.784682, 49.877575], [-114.784454, 49.89455], [-114.772238, 49.894891], [-114.767456, 49.894755], [-114.762438, 49.894821], [-114.76253, 49.906742], [-114.762643, 49.909562], [-114.745012, 49.909436], [-114.740814, 49.909484], [-114.740767, 49.93615], [-114.717045, 49.936492], [-114.716795, 49.966487]]]]}, "properties": {"name": "Sparwood", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Sparwood", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901006", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.03948, 49.528793], [-115.041834, 49.52822], [-115.042071, 49.52839], [-115.050868, 49.528444], [-115.052122, 49.528323], [-115.084976, 49.531707], [-115.08438, 49.526333], [-115.083019, 49.51149], [-115.081414, 49.505445], [-115.079425, 49.505448], [-115.078705, 49.509199], [-115.075596, 49.509246], [-115.072827, 49.509505], [-115.072902, 49.509274], [-115.072295, 49.506514], [-115.071591, 49.505308], [-115.072801, 49.505222], [-115.071383, 49.503379], [-115.070521, 49.503837], [-115.070473, 49.503775], [-115.076624, 49.5004], [-115.079184, 49.500403], [-115.078992, 49.499479], [-115.079936, 49.499486], [-115.080224, 49.49848], [-115.081708, 49.498522], [-115.081769, 49.498116], [-115.081271, 49.496539], [-115.080739, 49.496696], [-115.079048, 49.495913], [-115.0794, 49.49526], [-115.080091, 49.49308], [-115.080077, 49.492934], [-115.081126, 49.493454], [-115.08117, 49.492404], [-115.081105, 49.49172], [-115.080852, 49.49072], [-115.078628, 49.486961], [-115.075951, 49.482685], [-115.079529, 49.48268], [-115.079769, 49.486618], [-115.084262, 49.486903], [-115.087189, 49.486699], [-115.089297, 49.486745], [-115.090612, 49.486833], [-115.090769, 49.481157], [-115.07511, 49.481345], [-115.075561, 49.482063], [-115.0716, 49.482474], [-115.066641, 49.482905], [-115.066683, 49.483791], [-115.066869, 49.484297], [-115.067473, 49.485056], [-115.065786, 49.485015], [-115.064718, 49.484222], [-115.064389, 49.483841], [-115.064175, 49.483259], [-115.064195, 49.483009], [-115.064299, 49.482631], [-115.064893, 49.481407], [-115.065206, 49.480157], [-115.066452, 49.477836], [-115.066639, 49.47724], [-115.066679, 49.476647], [-115.065288, 49.477144], [-115.064846, 49.476398], [-115.064364, 49.475972], [-115.062942, 49.476506], [-115.061824, 49.475534], [-115.060419, 49.475807], [-115.059279, 49.47854], [-115.059394, 49.479404], [-115.059744, 49.479801], [-115.059645, 49.480234], [-115.057809, 49.481126], [-115.057565, 49.481695], [-115.057603, 49.482576], [-115.057213, 49.483676], [-115.055717, 49.485221], [-115.054607, 49.485888], [-115.053187, 49.485899], [-115.052541, 49.485179], [-115.051798, 49.484829], [-115.050781, 49.484737], [-115.050089, 49.48516], [-115.049535, 49.486709], [-115.048843, 49.487321], [-115.048279, 49.487685], [-115.047842, 49.488303], [-115.047762, 49.489447], [-115.046989, 49.490177], [-115.046083, 49.491599], [-115.045976, 49.492677], [-115.045327, 49.4937], [-115.04414, 49.494795], [-115.042823, 49.49555], [-115.042741, 49.496781], [-115.041638, 49.496519], [-115.040485, 49.496374], [-115.03938, 49.496374], [-115.038863, 49.496491], [-115.038088, 49.496558], [-115.036779, 49.496482], [-115.035776, 49.496321], [-115.035391, 49.496333], [-115.035133, 49.496518], [-115.034774, 49.496538], [-115.034351, 49.496405], [-115.033989, 49.495967], [-115.03387, 49.502134], [-115.032902, 49.512757], [-115.041624, 49.518082], [-115.043819, 49.516321], [-115.045547, 49.516349], [-115.044842, 49.521342], [-115.044436, 49.523847], [-115.04429, 49.524271], [-115.041964, 49.524579], [-115.041159, 49.524853], [-115.040048, 49.525408], [-115.038001, 49.526201], [-115.037106, 49.526396], [-115.036562, 49.526188], [-115.035924, 49.526084], [-115.034186, 49.526079], [-115.033458, 49.526166], [-115.032723, 49.526449], [-115.032031, 49.526966], [-115.03948, 49.528793]]]]}, "properties": {"name": "Fernie", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Fernie", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901012", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.174976, 50.561359], [-115.177704, 50.55822], [-115.183389, 50.556006], [-115.186757, 50.555771], [-115.189878, 50.555125], [-115.190894, 50.554053], [-115.189883, 50.549004], [-115.183747, 50.544033], [-115.186177, 50.53979], [-115.189124, 50.538246], [-115.19092, 50.535099], [-115.202232, 50.533035], [-115.205954, 50.528257], [-115.202389, 50.526441], [-115.198136, 50.525805], [-115.194806, 50.524625], [-115.191711, 50.52259], [-115.190059, 50.520042], [-115.188052, 50.518777], [-115.181748, 50.520953], [-115.177113, 50.519055], [-115.173974, 50.519023], [-115.170846, 50.514842], [-115.166757, 50.51281], [-115.164203, 50.510004], [-115.163982, 50.508382], [-115.164787, 50.502839], [-115.163351, 50.495013], [-115.161442, 50.492448], [-115.163097, 50.488532], [-115.163957, 50.48162], [-115.163605, 50.479153], [-115.160109, 50.473308], [-115.146668, 50.465428], [-115.143559, 50.46523], [-115.139521, 50.462229], [-115.139125, 50.460731], [-115.140211, 50.457115], [-115.137556, 50.456009], [-115.137303, 50.452243], [-115.13392, 50.449082], [-115.130371, 50.445643], [-115.123529, 50.442531], [-115.119488, 50.441604], [-115.120408, 50.43771], [-115.132068, 50.428393], [-115.134407, 50.424789], [-115.135816, 50.423805], [-115.134405, 50.421439], [-115.137595, 50.418424], [-115.134547, 50.415821], [-115.133404, 50.41307], [-115.133049, 50.409967], [-115.133129, 50.406757], [-115.12911, 50.405029], [-115.126842, 50.404149], [-115.12371, 50.398058], [-115.125819, 50.393235], [-115.11965, 50.391235], [-115.122633, 50.389547], [-115.128725, 50.388051], [-115.129935, 50.386318], [-115.125007, 50.38306], [-115.125998, 50.379707], [-115.124929, 50.375823], [-115.123373, 50.372376], [-115.122036, 50.368877], [-115.1231, 50.366065], [-115.123935, 50.362033], [-115.122701, 50.35787], [-115.121572, 50.356393], [-115.123466, 50.354971], [-115.118375, 50.351434], [-115.113866, 50.348871], [-115.110485, 50.347785], [-115.108663, 50.344724], [-115.102057, 50.341557], [-115.097144, 50.33455], [-115.094466, 50.329626], [-115.095438, 50.325402], [-115.099502, 50.320102], [-115.102646, 50.318692], [-115.108806, 50.319409], [-115.11462, 50.318298], [-115.120512, 50.319398], [-115.122582, 50.319527], [-115.127421, 50.321363], [-115.137822, 50.316255], [-115.135732, 50.313579], [-115.133508, 50.311095], [-115.131328, 50.310354], [-115.136212, 50.304769], [-115.12717, 50.299174], [-115.128026, 50.297688], [-115.127361, 50.293228], [-115.129074, 50.290256], [-115.126572, 50.286885], [-115.135861, 50.277426], [-115.129665, 50.273686], [-115.122279, 50.272946], [-115.116809, 50.271258], [-115.112072, 50.26955], [-115.111194, 50.26849], [-115.112576, 50.264962], [-115.114848, 50.263766], [-115.118683, 50.263937], [-115.126614, 50.260551], [-115.127686, 50.259012], [-115.136962, 50.257047], [-115.13776, 50.250872], [-115.134705, 50.249072], [-115.133316, 50.242559], [-115.134321, 50.236732], [-115.135227, 50.234915], [-115.126709, 50.231428], [-115.122129, 50.228727], [-115.119011, 50.22264], [-115.116392, 50.220733], [-115.110084, 50.218456], [-115.101996, 50.216933], [-115.099605, 50.216244], [-115.097285, 50.211077], [-115.102586, 50.207462], [-115.103091, 50.206223], [-115.097, 50.200547], [-115.096886, 50.196592], [-115.096216, 50.194207], [-115.096659, 50.192026], [-115.090891, 50.185635], [-115.090499, 50.180792], [-115.084939, 50.171403], [-115.077714, 50.165051], [-115.07048, 50.160772], [-115.071109, 50.158069], [-115.069875, 50.155982], [-115.07376, 50.153752], [-115.073741, 50.151208], [-115.07264, 50.14893], [-115.067261, 50.146108], [-115.06889, 50.143], [-115.068655, 50.140509], [-115.068196, 50.138032], [-115.036119, 50.122611], [-115.02765, 50.120093], [-115.016109, 50.119009], [-115.010884, 50.118334], [-115.009287, 50.11299], [-115.016355, 50.107577], [-115.024713, 50.097488], [-115.022193, 50.07872], [-115.026883, 50.070968], [-115.031933, 50.059514], [-115.029779, 50.04852], [-115.034186, 50.042108], [-115.038589, 50.037677], [-115.044251, 50.035364], [-115.051296, 50.033012], [-115.058366, 50.033079], [-115.066037, 50.031784], [-115.071131, 50.029307], [-115.07697, 50.021783], [-115.077393, 50.016206], [-115.076467, 50.013091], [-115.072592, 50.005838], [-115.072232, 50.005538], [-115.058371, 49.983426], [-115.055549, 49.979303], [-115.05662, 49.97101], [-115.067598, 49.970459], [-115.081725, 49.970154], [-115.090099, 49.965209], [-115.096819, 49.954825], [-115.101795, 49.94212], [-115.102544, 49.930348], [-115.104824, 49.924392], [-115.108467, 49.918498], [-115.113379, 49.912804], [-115.113533, 49.907145], [-115.108651, 49.902846], [-115.096512, 49.902162], [-115.087403, 49.901192], [-115.078237, 49.897144], [-115.072296, 49.890469], [-115.068162, 49.874807], [-115.067725, 49.871704], [-115.068382, 49.865693], [-115.074137, 49.862314], [-115.080694, 49.861483], [-115.086704, 49.861816], [-115.094017, 49.859879], [-115.100251, 49.855233], [-115.102498, 49.851005], [-115.098615, 49.83331], [-115.094851, 49.81469], [-115.091389, 49.798883], [-115.089407, 49.780481], [-115.085577, 49.77606], [-115.069548, 49.768718], [-115.058862, 49.765819], [-115.035091, 49.76132], [-115.023877, 49.760196], [-115.018952, 49.759651], [-115.006643, 49.761556], [-114.993694, 49.763275], [-114.987107, 49.763191], [-114.987183, 49.736295], [-114.987369, 49.719977], [-114.979757, 49.711014], [-114.974701, 49.703382], [-114.974664, 49.695891], [-114.983628, 49.687868], [-115.006812, 49.678821], [-115.01055, 49.67534], [-115.016534, 49.666452], [-115.018174, 49.656463], [-115.016638, 49.640231], [-115.01224, 49.633708], [-115.005998, 49.621994], [-115.004654, 49.613792], [-115.008196, 49.604942], [-115.013511, 49.601176], [-115.020816, 49.600802], [-115.028235, 49.603929], [-115.035829, 49.611885], [-115.044241, 49.614306], [-115.055286, 49.612691], [-115.057525, 49.610272], [-115.060531, 49.608411], [-115.065969, 49.602959], [-115.069723, 49.59073], [-115.070943, 49.580908], [-115.079064, 49.576733], [-115.092354, 49.575877], [-115.123303, 49.57592], [-115.127297, 49.576003], [-115.133715, 49.572902], [-115.137144, 49.568936], [-115.135271, 49.563559], [-115.131034, 49.559564], [-115.128454, 49.552976], [-115.127859, 49.546575], [-115.132541, 49.53619], [-115.137187, 49.528689], [-115.147113, 49.522722], [-115.161306, 49.521624], [-115.170793, 49.524119], [-115.176254, 49.526744], [-115.180498, 49.528961], [-115.185129, 49.526332], [-115.189718, 49.524084], [-115.197669, 49.520348], [-115.200439, 49.519236], [-115.201783, 49.488633], [-115.157127, 49.48886], [-115.156946, 49.481689], [-115.150855, 49.481761], [-115.151383, 49.467198], [-115.128205, 49.467054], [-115.128495, 49.452421], [-115.106411, 49.452729], [-115.106381, 49.435135], [-115.084602, 49.434899], [-115.084621, 49.420471], [-115.061821, 49.420475], [-115.061895, 49.418054], [-115.051391, 49.417841], [-115.051795, 49.405062], [-115.041243, 49.404753], [-115.041292, 49.399039], [-115.040548, 49.36526], [-115.056322, 49.364395], [-115.056484, 49.34766], [-115.027566, 49.347481], [-115.010346, 49.34844], [-115.010129, 49.346712], [-115.008578, 49.348452], [-115.007894, 49.348965], [-115.0066, 49.349412], [-115.00604, 49.349709], [-115.004927, 49.351153], [-115.004392, 49.352362], [-115.004324, 49.35312], [-115.004561, 49.353773], [-115.004927, 49.354074], [-115.00567, 49.354393], [-115.005972, 49.354802], [-115.007003, 49.35543], [-115.006911, 49.355711], [-115.006988, 49.356974], [-115.004479, 49.358013], [-115.003089, 49.358025], [-115.001421, 49.357717], [-115.001282, 49.357743], [-115.00059, 49.358171], [-115.0, 49.358214], [-114.999545, 49.358134], [-114.998816, 49.357754], [-114.998604, 49.357867], [-114.998383, 49.358231], [-114.99802, 49.358378], [-114.997828, 49.358348], [-114.997427, 49.358062], [-114.996655, 49.358095], [-114.99633, 49.357945], [-114.996104, 49.357751], [-114.995899, 49.357721], [-114.995575, 49.357868], [-114.995375, 49.358072], [-114.994835, 49.358107], [-114.994422, 49.358478], [-114.993353, 49.359017], [-114.993147, 49.359319], [-114.993072, 49.359814], [-114.992791, 49.359979], [-114.992321, 49.359997], [-114.990305, 49.35945], [-114.989254, 49.359234], [-114.988986, 49.359355], [-114.988899, 49.359489], [-114.988919, 49.359668], [-114.989173, 49.359843], [-114.989196, 49.359962], [-114.988813, 49.360215], [-114.988372, 49.360227], [-114.988048, 49.360104], [-114.987828, 49.360091], [-114.987658, 49.360187], [-114.987606, 49.360446], [-114.987521, 49.360499], [-114.987022, 49.36058], [-114.986432, 49.360526], [-114.985928, 49.360399], [-114.985625, 49.360403], [-114.98537, 49.360578], [-114.98535, 49.360714], [-114.985761, 49.361134], [-114.98567, 49.361303], [-114.985204, 49.361619], [-114.985132, 49.362014], [-114.985212, 49.362114], [-114.98555, 49.362246], [-114.985543, 49.362444], [-114.985344, 49.362548], [-114.984998, 49.362624], [-114.984128, 49.362643], [-114.983696, 49.363437], [-114.983581, 49.363561], [-114.983059, 49.363858], [-114.983204, 49.364031], [-114.983716, 49.364293], [-114.983724, 49.364464], [-114.983314, 49.364734], [-114.982687, 49.364877], [-114.982217, 49.365256], [-114.981967, 49.366322], [-114.981636, 49.366684], [-114.981499, 49.367331], [-114.981327, 49.367489], [-114.980438, 49.367662], [-114.979844, 49.367688], [-114.979488, 49.367637], [-114.978565, 49.367324], [-114.977748, 49.367418], [-114.976706, 49.367282], [-114.976458, 49.367322], [-114.975824, 49.367662], [-114.974805, 49.36796], [-114.973979, 49.368323], [-114.973606, 49.368335], [-114.973319, 49.368258], [-114.972942, 49.36808], [-114.972541, 49.367758], [-114.972349, 49.367728], [-114.971794, 49.367843], [-114.971357, 49.36807], [-114.970542, 49.368145], [-114.970372, 49.368232], [-114.970211, 49.36849], [-114.970151, 49.368957], [-114.970301, 49.369283], [-114.97024, 49.369463], [-114.969295, 49.370012], [-114.96857, 49.370208], [-114.967849, 49.370293], [-114.967505, 49.370279], [-114.966878, 49.370141], [-114.966188, 49.370148], [-114.96592, 49.370296], [-114.96523, 49.371002], [-114.965006, 49.371089], [-114.964746, 49.371048], [-114.964342, 49.370807], [-114.963907, 49.370673], [-114.963248, 49.370635], [-114.962972, 49.370675], [-114.962714, 49.370895], [-114.962571, 49.371326], [-114.962329, 49.371555], [-114.961692, 49.371633], [-114.960962, 49.371629], [-114.960228, 49.371724], [-114.959776, 49.372004], [-114.959472, 49.372341], [-114.958518, 49.372422], [-114.958115, 49.372533], [-114.958008, 49.372774], [-114.958157, 49.373469], [-114.956713, 49.374425], [-114.955869, 49.374499], [-114.955524, 49.374862], [-114.955028, 49.374835], [-114.954751, 49.374875], [-114.954429, 49.375013], [-114.95423, 49.37519], [-114.953767, 49.375362], [-114.952869, 49.375399], [-114.952162, 49.375548], [-114.951082, 49.375682], [-114.950481, 49.37586], [-114.950029, 49.376149], [-114.949881, 49.376363], [-114.949811, 49.376712], [-114.949973, 49.377148], [-114.949802, 49.37727], [-114.948988, 49.377319], [-114.948687, 49.377592], [-114.948238, 49.377756], [-114.947717, 49.377755], [-114.94753, 49.377914], [-114.947267, 49.377935], [-114.94697, 49.378138], [-114.946479, 49.378327], [-114.945296, 49.378279], [-114.944942, 49.378219], [-114.944679, 49.37824], [-114.944522, 49.378329], [-114.944317, 49.378648], [-114.944324, 49.378774], [-114.94452, 49.379039], [-114.944501, 49.379182], [-114.944301, 49.37935], [-114.943801, 49.379458], [-114.942806, 49.379494], [-114.942263, 49.379629], [-114.941662, 49.37987], [-114.941191, 49.379934], [-114.940874, 49.379918], [-114.940412, 49.38008], [-114.939999, 49.380425], [-114.939665, 49.380518], [-114.939154, 49.380536], [-114.938771, 49.380448], [-114.938434, 49.380603], [-114.938078, 49.380885], [-114.93785, 49.381393], [-114.937548, 49.381713], [-114.93739, 49.381835], [-114.936733, 49.382057], [-114.936711, 49.382255], [-114.936451, 49.382583], [-114.936848, 49.382969], [-114.936796, 49.383174], [-114.936726, 49.383236], [-114.935736, 49.383488], [-114.935676, 49.383612], [-114.935907, 49.384004], [-114.935903, 49.384148], [-114.935169, 49.384512], [-114.934314, 49.384559], [-114.93428, 49.385037], [-114.934037, 49.385257], [-114.933367, 49.38547], [-114.93244, 49.385525], [-114.932379, 49.385678], [-114.932083, 49.385843], [-114.931961, 49.386092], [-114.93184, 49.386739], [-114.931547, 49.387083], [-114.931334, 49.387602], [-114.931145, 49.387814], [-114.931115, 49.387904], [-114.931239, 49.388211], [-114.930992, 49.388549], [-114.931062, 49.388802], [-114.930792, 49.389022], [-114.930557, 49.389351], [-114.930463, 49.389655], [-114.930568, 49.389765], [-114.930973, 49.389935], [-114.931075, 49.390143], [-114.931497, 49.390268], [-114.931716, 49.390622], [-114.931431, 49.390877], [-114.931395, 49.391075], [-114.931567, 49.391241], [-114.931986, 49.3914], [-114.931986, 49.391446], [-114.931786, 49.391918], [-114.931602, 49.392059], [-114.931569, 49.392193], [-114.93179, 49.392477], [-114.931369, 49.392693], [-114.931264, 49.392863], [-114.931367, 49.393045], [-114.931744, 49.393259], [-114.931863, 49.393395], [-114.931787, 49.393565], [-114.931557, 49.393777], [-114.931247, 49.393934], [-114.931159, 49.394058], [-114.931355, 49.39434], [-114.93165, 49.394525], [-114.931722, 49.394743], [-114.931342, 49.394934], [-114.931041, 49.395216], [-114.931156, 49.395452], [-114.930651, 49.395956], [-114.930634, 49.396054], [-114.931023, 49.396628], [-114.931169, 49.396748], [-114.931713, 49.396965], [-114.931812, 49.397218], [-114.931244, 49.397631], [-114.931223, 49.397774], [-114.930982, 49.39795], [-114.930576, 49.398104], [-114.930374, 49.398316], [-114.929978, 49.398525], [-114.930042, 49.398671], [-114.930389, 49.39892], [-114.930447, 49.399199], [-114.930366, 49.39945], [-114.930042, 49.399642], [-114.929883, 49.399837], [-114.929479, 49.399911], [-114.929032, 49.400082], [-114.928828, 49.400313], [-114.928491, 49.400468], [-114.928281, 49.400888], [-114.928015, 49.400947], [-114.928011, 49.401063], [-114.927704, 49.401156], [-114.927088, 49.401722], [-114.927082, 49.401828], [-114.926429, 49.402609], [-114.926261, 49.402704], [-114.925997, 49.402727], [-114.925951, 49.402871], [-114.926078, 49.403124], [-114.925774, 49.403452], [-114.925816, 49.40375], [-114.925416, 49.404066], [-114.925372, 49.404128], [-114.92546, 49.404373], [-114.925218, 49.40453], [-114.924729, 49.404665], [-114.923941, 49.404741], [-114.923888, 49.405037], [-114.923773, 49.405142], [-114.923675, 49.405187], [-114.923166, 49.405168], [-114.92272, 49.40561], [-114.921901, 49.405721], [-114.921463, 49.405974], [-114.921113, 49.406102], [-114.921034, 49.406344], [-114.920723, 49.406545], [-114.920655, 49.406832], [-114.920584, 49.406884], [-114.920281, 49.406861], [-114.920153, 49.40695], [-114.920213, 49.407158], [-114.92015, 49.407354], [-114.919591, 49.407866], [-114.919028, 49.408143], [-114.917721, 49.408425], [-114.917287, 49.408553], [-114.916795, 49.408796], [-114.916129, 49.408874], [-114.91551, 49.409528], [-114.91429, 49.41029], [-114.913772, 49.410819], [-114.913519, 49.410905], [-114.913189, 49.410935], [-114.912235, 49.411295], [-114.911531, 49.411345], [-114.911149, 49.411537], [-114.911182, 49.411744], [-114.911352, 49.411944], [-114.911316, 49.412143], [-114.91149, 49.412272], [-114.911334, 49.412709], [-114.910703, 49.412959], [-114.910097, 49.412949], [-114.909872, 49.413384], [-114.909966, 49.413782], [-114.909842, 49.414401], [-114.909731, 49.414723], [-114.909589, 49.414846], [-114.90952, 49.415142], [-114.909757, 49.415784], [-114.909414, 49.416058], [-114.909463, 49.416157], [-114.909722, 49.41627], [-114.909877, 49.416498], [-114.909738, 49.416837], [-114.909885, 49.417363], [-114.909442, 49.419247], [-114.909445, 49.419538], [-114.909322, 49.419758], [-114.908867, 49.421551], [-114.906535, 49.425252], [-114.891914, 49.428956], [-114.875497, 49.422201], [-114.868384, 49.419723], [-114.863729, 49.418453], [-114.85872, 49.414703], [-114.857064, 49.412232], [-114.859823, 49.407127], [-114.865596, 49.403617], [-114.867606, 49.401902], [-114.871062, 49.396791], [-114.87301, 49.395909], [-114.873956, 49.393311], [-114.878447, 49.389801], [-114.881167, 49.387456], [-114.886192, 49.385717], [-114.880753, 49.383595], [-114.877723, 49.382559], [-114.876786, 49.381212], [-114.874908, 49.380204], [-114.87274, 49.375581], [-114.872836, 49.373769], [-114.882615, 49.369828], [-114.883436, 49.364471], [-114.880639, 49.359321], [-114.88036, 49.357706], [-114.885757, 49.354925], [-114.886381, 49.349806], [-114.889378, 49.345736], [-114.886181, 49.341071], [-114.881469, 49.338274], [-114.878004, 49.335385], [-114.871413, 49.334112], [-114.863199, 49.330036], [-114.855022, 49.328827], [-114.848881, 49.327762], [-114.846035, 49.326216], [-114.843939, 49.326245], [-114.842031, 49.32913], [-114.837198, 49.329766], [-114.834181, 49.329326], [-114.830104, 49.327334], [-114.825912, 49.32739], [-114.820474, 49.329228], [-114.816516, 49.33166], [-114.811558, 49.332642], [-114.802134, 49.331517], [-114.798544, 49.330364], [-114.798185, 49.327778], [-114.796696, 49.326327], [-114.792571, 49.32509], [-114.781387, 49.322316], [-114.772444, 49.320329], [-114.770368, 49.318701], [-114.767472, 49.317059], [-114.76287, 49.316681], [-114.759322, 49.31785], [-114.750981, 49.31662], [-114.743616, 49.3168], [-114.735265, 49.314986], [-114.725134, 49.313873], [-114.728125, 49.310987], [-114.731243, 49.308593], [-114.731989, 49.303537], [-114.728819, 49.302038], [-114.726079, 49.302113], [-114.718336, 49.299313], [-114.715724, 49.2968], [-114.714905, 49.29553], [-114.70831, 49.292531], [-114.699027, 49.28846], [-114.706769, 49.283674], [-114.709425, 49.283024], [-114.70925, 49.282011], [-114.715076, 49.278473], [-114.713867, 49.270926], [-114.719966, 49.266249], [-114.726503, 49.263477], [-114.73133, 49.263669], [-114.733229, 49.261878], [-114.732423, 49.25932], [-114.74095, 49.249803], [-114.737312, 49.246247], [-114.738069, 49.243305], [-114.740652, 49.241292], [-114.74278, 49.237058], [-114.739994, 49.233292], [-114.74004, 49.230525], [-114.74042, 49.22863], [-114.738955, 49.227189], [-114.740045, 49.222841], [-114.75328, 49.217887], [-114.747917, 49.211577], [-114.747415, 49.208415], [-114.75105, 49.203704], [-114.744572, 49.198836], [-114.736694, 49.197174], [-114.732573, 49.191619], [-114.726142, 49.18711], [-114.722239, 49.186482], [-114.717179, 49.177556], [-114.708837, 49.172511], [-114.706739, 49.170803], [-114.706958, 49.169478], [-114.708844, 49.167954], [-114.714004, 49.165393], [-114.713965, 49.163678], [-114.71173, 49.161535], [-114.709436, 49.159568], [-114.707966, 49.157346], [-114.708662, 49.15523], [-114.710789, 49.152535], [-114.714897, 49.151046], [-114.716136, 49.151256], [-114.717841, 49.150601], [-114.71906, 49.149106], [-114.718285, 49.14779], [-114.720427, 49.145951], [-114.723739, 49.145307], [-114.727214, 49.143553], [-114.726808, 49.142038], [-114.724912, 49.13992], [-114.722803, 49.136887], [-114.725534, 49.134681], [-114.731517, 49.132278], [-114.732912, 49.127571], [-114.733344, 49.127605], [-114.7336, 49.127717], [-114.736284, 49.128287], [-114.74351, 49.125022], [-114.749326, 49.124683], [-114.753785, 49.124246], [-114.753899, 49.120439], [-114.751516, 49.117351], [-114.745527, 49.114426], [-114.736779, 49.103458], [-114.731653, 49.100633], [-114.728693, 49.097373], [-114.72436, 49.09167], [-114.719949, 49.089824], [-114.71895, 49.087761], [-114.714405, 49.085106], [-114.71127, 49.0821], [-114.708671, 49.078332], [-114.707697, 49.075737], [-114.703591, 49.073289], [-114.700777, 49.069993], [-114.711915, 49.063367], [-114.716724, 49.06327], [-114.717658, 49.060629], [-114.721953, 49.057069], [-114.724291, 49.055769], [-114.728856, 49.053828], [-114.732318, 49.049944], [-114.733981, 49.048596], [-114.736673, 49.049326], [-114.741323, 49.042685], [-114.746102, 49.040269], [-114.750644, 49.03886], [-114.753652, 49.038453], [-114.75726, 49.035687], [-114.757558, 49.032781], [-114.756874, 49.029276], [-114.749337, 49.026428], [-114.744033, 49.022703], [-114.74113, 49.019537], [-114.740048, 49.015606], [-114.739366, 49.0121], [-114.734106, 49.006736], [-114.73028, 49.005063], [-114.726252, 49.000118], [-114.676658, 49.000245], [-114.673357, 49.000178], [-114.671565, 49.000062], [-114.637215, 49.000793], [-114.612177, 49.000756], [-114.491777, 49.001025], [-114.479624, 49.000945], [-114.457232, 49.001107], [-114.410625, 49.001214], [-114.366798, 49.001031], [-114.352801, 49.000895], [-114.313651, 49.000752], [-114.068334, 48.998843], [-114.07037, 49.000767], [-114.071807, 49.002352], [-114.072006, 49.003359], [-114.071843, 49.004205], [-114.072341, 49.004938], [-114.071729, 49.005912], [-114.068915, 49.00767], [-114.065697, 49.011163], [-114.058722, 49.018274], [-114.055884, 49.022216], [-114.054837, 49.023915], [-114.054615, 49.024291], [-114.053761, 49.026537], [-114.056615, 49.027829], [-114.061921, 49.037379], [-114.063008, 49.040204], [-114.063674, 49.042767], [-114.063499, 49.045304], [-114.064408, 49.045949], [-114.065567, 49.046171], [-114.066532, 49.046667], [-114.067682, 49.048116], [-114.069506, 49.049721], [-114.076175, 49.053526], [-114.079986, 49.05765], [-114.080979, 49.059682], [-114.082536, 49.059628], [-114.085968, 49.058719], [-114.089239, 49.058393], [-114.092971, 49.058772], [-114.096482, 49.059747], [-114.10013, 49.06128], [-114.106942, 49.064959], [-114.107838, 49.066196], [-114.111026, 49.068201], [-114.113717, 49.070552], [-114.114867, 49.072863], [-114.115813, 49.073817], [-114.117771, 49.073984], [-114.129595, 49.078097], [-114.130451, 49.07889], [-114.132628, 49.082544], [-114.135195, 49.083927], [-114.139732, 49.087106], [-114.142105, 49.089624], [-114.147647, 49.094105], [-114.15315, 49.099504], [-114.153513, 49.101143], [-114.153235, 49.103116], [-114.151716, 49.104844], [-114.148959, 49.107324], [-114.149604, 49.111074], [-114.149271, 49.115422], [-114.149639, 49.118058], [-114.153132, 49.119854], [-114.156565, 49.123027], [-114.157744, 49.123652], [-114.158523, 49.126281], [-114.160715, 49.12748], [-114.162134, 49.131499], [-114.166061, 49.135552], [-114.165393, 49.137075], [-114.16233, 49.138267], [-114.156225, 49.140192], [-114.152797, 49.141472], [-114.14904, 49.143647], [-114.151151, 49.145321], [-114.15616, 49.147844], [-114.159713, 49.14999], [-114.161931, 49.151729], [-114.162038, 49.153156], [-114.161251, 49.154826], [-114.166222, 49.156716], [-114.17133, 49.16], [-114.1726, 49.162421], [-114.174906, 49.163545], [-114.18038, 49.164329], [-114.195246, 49.169044], [-114.198948, 49.16923], [-114.20396, 49.169757], [-114.209172, 49.17207], [-114.212654, 49.173436], [-114.215728, 49.178361], [-114.217118, 49.184137], [-114.219219, 49.18489], [-114.221547, 49.189051], [-114.230469, 49.189266], [-114.234688, 49.185367], [-114.240537, 49.184668], [-114.245407, 49.185647], [-114.246717, 49.187272], [-114.251303, 49.182602], [-114.2523, 49.180526], [-114.254149, 49.179399], [-114.257127, 49.177003], [-114.260904, 49.177746], [-114.263294, 49.179583], [-114.267459, 49.179734], [-114.269442, 49.180987], [-114.277367, 49.179707], [-114.27995, 49.178035], [-114.287303, 49.178019], [-114.288668, 49.17874], [-114.289364, 49.180408], [-114.288494, 49.183136], [-114.290102, 49.186001], [-114.294723, 49.188244], [-114.298568, 49.18939], [-114.300964, 49.190805], [-114.306243, 49.191368], [-114.310458, 49.19203], [-114.313319, 49.193701], [-114.314836, 49.196116], [-114.316877, 49.199034], [-114.318443, 49.199968], [-114.322846, 49.199823], [-114.328201, 49.19895], [-114.335345, 49.19969], [-114.336877, 49.199425], [-114.339588, 49.195988], [-114.342908, 49.194346], [-114.345592, 49.193566], [-114.350131, 49.194515], [-114.355602, 49.196552], [-114.358903, 49.19843], [-114.360716, 49.200511], [-114.360862, 49.20205], [-114.366171, 49.203653], [-114.377343, 49.202865], [-114.386817, 49.205033], [-114.389723, 49.207059], [-114.391185, 49.20681], [-114.398958, 49.210361], [-114.402123, 49.21327], [-114.399512, 49.214322], [-114.397895, 49.215292], [-114.396191, 49.217385], [-114.393889, 49.219412], [-114.395929, 49.22144], [-114.399707, 49.222335], [-114.404965, 49.224264], [-114.405847, 49.225258], [-114.404405, 49.226395], [-114.401122, 49.22782], [-114.401619, 49.230404], [-114.402923, 49.232714], [-114.402548, 49.234747], [-114.403411, 49.237269], [-114.402827, 49.240351], [-114.402677, 49.241647], [-114.400639, 49.242298], [-114.39573, 49.24312], [-114.391141, 49.244651], [-114.383615, 49.246236], [-114.379858, 49.248247], [-114.381434, 49.250754], [-114.387688, 49.251603], [-114.393487, 49.257184], [-114.396283, 49.257163], [-114.400075, 49.257769], [-114.403121, 49.259184], [-114.405079, 49.258815], [-114.407846, 49.259878], [-114.409266, 49.259692], [-114.414463, 49.262214], [-114.420966, 49.261794], [-114.424905, 49.262232], [-114.429693, 49.261334], [-114.43521, 49.262149], [-114.438577, 49.263276], [-114.43967, 49.26464], [-114.447943, 49.264366], [-114.448184, 49.265359], [-114.449007, 49.266104], [-114.449353, 49.267281], [-114.449031, 49.276631], [-114.449707, 49.278673], [-114.450936, 49.279426], [-114.451177, 49.280418], [-114.449034, 49.282303], [-114.449415, 49.2851], [-114.446796, 49.288415], [-114.448677, 49.290033], [-114.451237, 49.292565], [-114.453973, 49.2981], [-114.461156, 49.304108], [-114.462807, 49.30376], [-114.466771, 49.304374], [-114.4713, 49.30669], [-114.473168, 49.308707], [-114.477647, 49.312349], [-114.480052, 49.312763], [-114.481613, 49.311833], [-114.484961, 49.310652], [-114.489972, 49.312115], [-114.492063, 49.313814], [-114.491288, 49.315421], [-114.491748, 49.316939], [-114.491145, 49.319555], [-114.492092, 49.320796], [-114.492165, 49.322198], [-114.489246, 49.323852], [-114.482986, 49.325004], [-114.480407, 49.325841], [-114.478929, 49.326777], [-114.481665, 49.329187], [-114.482022, 49.330099], [-114.48255, 49.337538], [-114.48405, 49.339329], [-114.484343, 49.342674], [-114.487626, 49.347317], [-114.495722, 49.3525], [-114.500964, 49.352804], [-114.506928, 49.356639], [-114.513713, 49.355411], [-114.516577, 49.354505], [-114.522996, 49.356309], [-114.524722, 49.357362], [-114.525304, 49.359796], [-114.524139, 49.36213], [-114.53159, 49.370544], [-114.531797, 49.371756], [-114.526291, 49.375092], [-114.531494, 49.377297], [-114.536595, 49.379606], [-114.544154, 49.377611], [-114.547671, 49.377281], [-114.551652, 49.378048], [-114.556491, 49.376791], [-114.562584, 49.377307], [-114.566931, 49.37688], [-114.568105, 49.380065], [-114.571598, 49.381949], [-114.576108, 49.386741], [-114.57337, 49.389564], [-114.575671, 49.389924], [-114.578309, 49.391438], [-114.580262, 49.39133], [-114.586479, 49.392341], [-114.587403, 49.393956], [-114.589473, 49.395215], [-114.58956, 49.395217], [-114.590592, 49.396105], [-114.591845, 49.400127], [-114.592026, 49.404866], [-114.598434, 49.412558], [-114.596444, 49.416859], [-114.596619, 49.420062], [-114.597238, 49.421449], [-114.600782, 49.424743], [-114.600156, 49.426547], [-114.600804, 49.427984], [-114.599216, 49.429481], [-114.598575, 49.433851], [-114.601711, 49.436277], [-114.60257, 49.437321], [-114.605066, 49.438934], [-114.602864, 49.443628], [-114.600689, 49.444101], [-114.59835, 49.445354], [-114.598862, 49.449757], [-114.603025, 49.451534], [-114.603406, 49.452808], [-114.598411, 49.454765], [-114.597798, 49.459186], [-114.599296, 49.461954], [-114.60003, 49.463997], [-114.599435, 49.466619], [-114.593938, 49.469381], [-114.593454, 49.471435], [-114.595481, 49.478176], [-114.595534, 49.480099], [-114.594536, 49.480798], [-114.59363, 49.484099], [-114.594171, 49.486407], [-114.595757, 49.487798], [-114.597112, 49.490911], [-114.596081, 49.491853], [-114.594413, 49.492147], [-114.592951, 49.493252], [-114.593831, 49.494932], [-114.594894, 49.496624], [-114.594901, 49.500126], [-114.596584, 49.501982], [-114.594718, 49.502842], [-114.593313, 49.505714], [-114.591103, 49.506888], [-114.585155, 49.512653], [-114.582855, 49.518215], [-114.583435, 49.520429], [-114.577674, 49.521522], [-114.575748, 49.523947], [-114.573007, 49.524962], [-114.572799, 49.527024], [-114.573757, 49.528226], [-114.573586, 49.532921], [-114.570203, 49.537368], [-114.571228, 49.538984], [-114.572641, 49.544442], [-114.574715, 49.546807], [-114.572653, 49.54869], [-114.574559, 49.551067], [-114.573605, 49.557462], [-114.576595, 49.557359], [-114.579531, 49.558523], [-114.588956, 49.565897], [-114.594027, 49.561559], [-114.599441, 49.560633], [-114.602777, 49.561427], [-114.605367, 49.559176], [-114.607958, 49.55975], [-114.609497, 49.555338], [-114.613088, 49.554455], [-114.614499, 49.550882], [-114.616355, 49.549485], [-114.616551, 49.548764], [-114.620134, 49.546808], [-114.621399, 49.547573], [-114.627014, 49.54982], [-114.630945, 49.549525], [-114.638365, 49.543936], [-114.648473, 49.543328], [-114.655118, 49.545585], [-114.66314, 49.552332], [-114.676823, 49.553645], [-114.679439, 49.555679], [-114.683823, 49.556873], [-114.690984, 49.554026], [-114.692021, 49.551223], [-114.696235, 49.546829], [-114.701381, 49.552519], [-114.704726, 49.553696], [-114.710729, 49.558759], [-114.710775, 49.563115], [-114.71442, 49.566281], [-114.720004, 49.567493], [-114.723024, 49.570288], [-114.724768, 49.571559], [-114.724537, 49.575819], [-114.730222, 49.576866], [-114.732587, 49.576379], [-114.734499, 49.580104], [-114.736856, 49.595398], [-114.744926, 49.599926], [-114.74657, 49.601745], [-114.745922, 49.603479], [-114.746351, 49.606391], [-114.752402, 49.608796], [-114.747444, 49.613022], [-114.746477, 49.618509], [-114.728201, 49.62275], [-114.722547, 49.622905], [-114.719179, 49.6249], [-114.715265, 49.629529], [-114.711413, 49.629251], [-114.707806, 49.630112], [-114.705488, 49.632513], [-114.707328, 49.634679], [-114.704622, 49.635325], [-114.704362, 49.636308], [-114.703419, 49.636754], [-114.703826, 49.639418], [-114.748863, 49.640002], [-114.749576, 49.662104], [-114.761716, 49.66355], [-114.771474, 49.664917], [-114.774462, 49.665338], [-114.78297, 49.666805], [-114.787259, 49.6711], [-114.795578, 49.681805], [-114.811732, 49.68669], [-114.812898, 49.688014], [-114.82496, 49.698867], [-114.826226, 49.700181], [-114.826705, 49.700846], [-114.828447, 49.70273], [-114.831263, 49.705637], [-114.842348, 49.715701], [-114.854089, 49.727789], [-114.85538, 49.729281], [-114.860297, 49.729855], [-114.875071, 49.731394], [-114.874875, 49.730031], [-114.874073, 49.707431], [-114.885823, 49.706968], [-114.886291, 49.68907], [-114.886878, 49.681934], [-114.903921, 49.68141], [-114.905084, 49.692659], [-114.913654, 49.707985], [-114.913622, 49.743493], [-114.910958, 49.755875], [-114.910643, 49.763607], [-114.907824, 49.769497], [-114.908332, 49.770375], [-114.904418, 49.770439], [-114.889959, 49.769532], [-114.890175, 49.765937], [-114.876331, 49.764686], [-114.874671, 49.767567], [-114.873519, 49.767487], [-114.873706, 49.767821], [-114.872944, 49.770007], [-114.872958, 49.772197], [-114.873095, 49.772434], [-114.874238, 49.773425], [-114.874571, 49.774139], [-114.874553, 49.775228], [-114.874349, 49.776171], [-114.873678, 49.777971], [-114.874041, 49.779112], [-114.874232, 49.779449], [-114.874485, 49.779649], [-114.874827, 49.779779], [-114.875163, 49.780007], [-114.875805, 49.780845], [-114.875843, 49.781109], [-114.875679, 49.781596], [-114.875707, 49.782627], [-114.875561, 49.783699], [-114.875669, 49.784015], [-114.876427, 49.784434], [-114.877593, 49.784296], [-114.878611, 49.78398], [-114.880057, 49.784366], [-114.881138, 49.784937], [-114.881793, 49.785682], [-114.881968, 49.786224], [-114.881977, 49.786673], [-114.881381, 49.787916], [-114.88099, 49.788212], [-114.880034, 49.788536], [-114.87979, 49.788829], [-114.878957, 49.789238], [-114.8788, 49.789755], [-114.878975, 49.790139], [-114.879491, 49.790812], [-114.880559, 49.791871], [-114.880712, 49.792353], [-114.880717, 49.793295], [-114.881147, 49.793836], [-114.881875, 49.794094], [-114.88246, 49.794419], [-114.882958, 49.794866], [-114.883192, 49.795292], [-114.883194, 49.795754], [-114.883032, 49.796336], [-114.881621, 49.796833], [-114.87924, 49.796894], [-114.87836, 49.797198], [-114.877793, 49.797544], [-114.877026, 49.798596], [-114.877044, 49.798767], [-114.876538, 49.799297], [-114.87623, 49.799827], [-114.87568, 49.80167], [-114.875418, 49.801993], [-114.875137, 49.802962], [-114.873376, 49.805569], [-114.870879, 49.809053], [-114.871144, 49.810203], [-114.871919, 49.811055], [-114.871959, 49.812433], [-114.858864, 49.812897], [-114.858172, 49.820235], [-114.799596, 49.820589], [-114.788191, 49.820449], [-114.78229, 49.785637], [-114.774889, 49.749969], [-114.771642, 49.731799], [-114.765721, 49.694332], [-114.763435, 49.679354], [-114.736375, 49.668434], [-114.718387, 49.667658], [-114.716183, 49.667716], [-114.717171, 49.653838], [-114.659813, 49.65525], [-114.657707, 49.661244], [-114.658229, 49.664001], [-114.663286, 49.665799], [-114.667451, 49.669821], [-114.667349, 49.669821], [-114.669323, 49.670428], [-114.670324, 49.67316], [-114.668619, 49.675833], [-114.665008, 49.676802], [-114.668786, 49.680808], [-114.6689, 49.683203], [-114.670399, 49.684228], [-114.670515, 49.687004], [-114.669216, 49.691142], [-114.672258, 49.693357], [-114.676064, 49.69435], [-114.676785, 49.696187], [-114.673747, 49.699112], [-114.668386, 49.703874], [-114.660969, 49.706214], [-114.647441, 49.713021], [-114.646495, 49.714424], [-114.646186, 49.71548], [-114.642987, 49.717237], [-114.638906, 49.717842], [-114.63629, 49.721734], [-114.638342, 49.724353], [-114.633649, 49.73036], [-114.63312, 49.734079], [-114.637026, 49.738036], [-114.64158, 49.739278], [-114.642931, 49.739091], [-114.646293, 49.74332], [-114.643311, 49.744989], [-114.642168, 49.746334], [-114.644227, 49.749618], [-114.648188, 49.753948], [-114.651009, 49.755085], [-114.651355, 49.75868], [-114.654019, 49.759313], [-114.657308, 49.760792], [-114.659137, 49.765078], [-114.653201, 49.767254], [-114.64445, 49.772984], [-114.642372, 49.778235], [-114.64101, 49.781403], [-114.636054, 49.78481], [-114.635905, 49.785582], [-114.637731, 49.786401], [-114.638461, 49.791129], [-114.64164, 49.794616], [-114.642173, 49.795819], [-114.642057, 49.798614], [-114.641502, 49.801307], [-114.642034, 49.80335], [-114.643048, 49.804541], [-114.643717, 49.805605], [-114.641881, 49.808047], [-114.643359, 49.81037], [-114.645486, 49.814795], [-114.647472, 49.817293], [-114.647422, 49.819267], [-114.645806, 49.82078], [-114.642908, 49.822322], [-114.639936, 49.82772], [-114.6428, 49.831547], [-114.646889, 49.833745], [-114.650618, 49.838362], [-114.652117, 49.84245], [-114.654828, 49.846665], [-114.661173, 49.85177], [-114.661284, 49.85346], [-114.66268, 49.854839], [-114.661976, 49.859426], [-114.661292, 49.860678], [-114.661445, 49.862253], [-114.66239, 49.863321], [-114.671375, 49.86451], [-114.671312, 49.865664], [-114.670473, 49.868426], [-114.670805, 49.87087], [-114.672308, 49.872714], [-114.673021, 49.873944], [-114.672692, 49.878335], [-114.675376, 49.881137], [-114.682201, 49.885794], [-114.68515, 49.887043], [-114.684936, 49.887796], [-114.69179, 49.896285], [-114.691124, 49.89869], [-114.688751, 49.901894], [-114.689772, 49.906503], [-114.687321, 49.917054], [-114.690157, 49.921609], [-114.691378, 49.933059], [-114.68967, 49.936102], [-114.690431, 49.937883], [-114.69299, 49.940646], [-114.693204, 49.941015], [-114.694865, 49.94191], [-114.693681, 49.942583], [-114.685323, 49.955177], [-114.683524, 49.960592], [-114.683315, 49.96706], [-114.681394, 49.967542], [-114.670604, 49.967871], [-114.663605, 49.966468], [-114.658513, 49.968137], [-114.657441, 49.968396], [-114.65594, 49.968057], [-114.655799, 49.970133], [-114.651505, 49.975518], [-114.651909, 49.978532], [-114.653659, 49.980984], [-114.653548, 49.982291], [-114.653718, 49.984152], [-114.654348, 49.985753], [-114.653494, 49.988729], [-114.653317, 49.989736], [-114.652395, 49.991379], [-114.652052, 49.992733], [-114.654854, 49.996948], [-114.655646, 49.997423], [-114.6567, 49.997808], [-114.663523, 50.000001], [-114.664966, 50.000003], [-114.666119, 50.001566], [-114.666587, 50.003285], [-114.665433, 50.005089], [-114.663371, 50.007533], [-114.66173, 50.011287], [-114.661236, 50.015071], [-114.65766, 50.019125], [-114.659583, 50.026718], [-114.659098, 50.027685], [-114.657727, 50.029682], [-114.661568, 50.033244], [-114.661943, 50.03389], [-114.664021, 50.034537], [-114.666449, 50.035389], [-114.666452, 50.036002], [-114.662905, 50.039593], [-114.665136, 50.04151], [-114.667442, 50.042032], [-114.671085, 50.0431], [-114.672311, 50.044365], [-114.673756, 50.045068], [-114.675042, 50.046389], [-114.676077, 50.048121], [-114.666376, 50.050944], [-114.666385, 50.05152], [-114.665291, 50.054274], [-114.665096, 50.055672], [-114.665932, 50.058863], [-114.665623, 50.060955], [-114.664557, 50.062492], [-114.663341, 50.06382], [-114.662474, 50.064906], [-114.665168, 50.06373], [-114.66607, 50.063969], [-114.671547, 50.064463], [-114.677078, 50.063479], [-114.679923, 50.064108], [-114.680743, 50.064603], [-114.681752, 50.067271], [-114.684493, 50.068749], [-114.688822, 50.070309], [-114.691304, 50.071341], [-114.691146, 50.075045], [-114.692038, 50.077768], [-114.693812, 50.079971], [-114.695214, 50.081159], [-114.694777, 50.081439], [-114.695691, 50.083683], [-114.697373, 50.086943], [-114.699065, 50.088815], [-114.70049, 50.089296], [-114.704098, 50.089662], [-114.702829, 50.091038], [-114.703712, 50.094842], [-114.705748, 50.095807], [-114.706323, 50.096536], [-114.707417, 50.09729], [-114.707792, 50.098585], [-114.709732, 50.101117], [-114.710799, 50.102219], [-114.719382, 50.105707], [-114.720171, 50.106614], [-114.720449, 50.110266], [-114.720817, 50.110896], [-114.722196, 50.111809], [-114.727903, 50.113194], [-114.729737, 50.114418], [-114.733265, 50.11861], [-114.735105, 50.119517], [-114.736003, 50.120353], [-114.73348, 50.121313], [-114.731519, 50.12606], [-114.730998, 50.127923], [-114.726987, 50.135235], [-114.727518, 50.136985], [-114.727232, 50.137896], [-114.726208, 50.139319], [-114.724964, 50.140742], [-114.724765, 50.143274], [-114.727304, 50.148364], [-114.727273, 50.157839], [-114.726322, 50.160738], [-114.725346, 50.161355], [-114.732633, 50.1693], [-114.730668, 50.171196], [-114.730442, 50.174173], [-114.730916, 50.176034], [-114.727859, 50.178588], [-114.723943, 50.183877], [-114.725495, 50.186109], [-114.724781, 50.186992], [-114.724676, 50.190177], [-114.728183, 50.192175], [-114.728804, 50.192815], [-114.730989, 50.194026], [-114.731746, 50.195739], [-114.736305, 50.200628], [-114.73888, 50.202667], [-114.737566, 50.20883], [-114.739593, 50.211659], [-114.741131, 50.212394], [-114.743667, 50.21273], [-114.749012, 50.214917], [-114.744795, 50.218226], [-114.745306, 50.22225], [-114.747495, 50.224724], [-114.751911, 50.227214], [-114.755832, 50.231799], [-114.761637, 50.233716], [-114.762935, 50.234667], [-114.762693, 50.235515], [-114.761995, 50.240869], [-114.763034, 50.240925], [-114.768052, 50.243097], [-114.768581, 50.243998], [-114.767783, 50.245218], [-114.766984, 50.245525], [-114.767153, 50.247026], [-114.768912, 50.248657], [-114.769597, 50.249977], [-114.770232, 50.249995], [-114.76966, 50.251903], [-114.766542, 50.254026], [-114.766203, 50.255422], [-114.767026, 50.256822], [-114.76651, 50.257461], [-114.766843, 50.25818], [-114.76411, 50.265207], [-114.758139, 50.271729], [-114.752128, 50.273179], [-114.751673, 50.275287], [-114.752869, 50.278539], [-114.754239, 50.280722], [-114.755056, 50.281353], [-114.752525, 50.285846], [-114.753572, 50.287478], [-114.75284, 50.293823], [-114.755129, 50.299239], [-114.762211, 50.299302], [-114.769406, 50.302594], [-114.772491, 50.301621], [-114.776208, 50.299754], [-114.78036, 50.299838], [-114.781575, 50.301601], [-114.780992, 50.307282], [-114.782381, 50.309946], [-114.782707, 50.31141], [-114.780429, 50.315272], [-114.784473, 50.318809], [-114.788041, 50.319263], [-114.79037, 50.320643], [-114.79227, 50.322355], [-114.797612, 50.326122], [-114.798639, 50.326503], [-114.800026, 50.329767], [-114.799295, 50.330344], [-114.798347, 50.330401], [-114.796608, 50.330935], [-114.795416, 50.33088], [-114.794401, 50.331582], [-114.792251, 50.335814], [-114.775962, 50.343626], [-114.774823, 50.343815], [-114.773867, 50.344617], [-114.772853, 50.346232], [-114.771898, 50.34749], [-114.769427, 50.349057], [-114.767541, 50.349797], [-114.766223, 50.350743], [-114.768622, 50.352392], [-114.768635, 50.358788], [-114.773371, 50.362131], [-114.774957, 50.362549], [-114.781726, 50.362518], [-114.781882, 50.362023], [-114.784495, 50.362822], [-114.784778, 50.36224], [-114.786849, 50.361055], [-114.789101, 50.358055], [-114.791459, 50.358572], [-114.795898, 50.361558], [-114.798951, 50.361737], [-114.799462, 50.362756], [-114.803929, 50.364878], [-114.808794, 50.370705], [-114.814718, 50.368933], [-114.81917, 50.369058], [-114.817251, 50.374893], [-114.813079, 50.376757], [-114.812535, 50.37826], [-114.814363, 50.380448], [-114.813897, 50.381931], [-114.815607, 50.382405], [-114.817887, 50.382483], [-114.820263, 50.384539], [-114.824824, 50.393325], [-114.825881, 50.393299], [-114.831255, 50.390287], [-114.838286, 50.393562], [-114.848429, 50.39257], [-114.851829, 50.393178], [-114.854762, 50.39224], [-114.856897, 50.392525], [-114.859565, 50.393709], [-114.86226, 50.394487], [-114.863609, 50.396162], [-114.865393, 50.398874], [-114.866403, 50.399373], [-114.865735, 50.400964], [-114.865245, 50.405427], [-114.860128, 50.407664], [-114.861642, 50.409014], [-114.862416, 50.409112], [-114.864072, 50.411456], [-114.863618, 50.41734], [-114.862218, 50.419965], [-114.859607, 50.420996], [-114.859835, 50.4238], [-114.862551, 50.425516], [-114.86845, 50.425806], [-114.869997, 50.427662], [-114.873016, 50.430192], [-114.873871, 50.437075], [-114.874716, 50.439558], [-114.88078, 50.438007], [-114.884031, 50.43745], [-114.885417, 50.436314], [-114.886552, 50.435811], [-114.887785, 50.435627], [-114.895528, 50.439473], [-114.897467, 50.441234], [-114.899374, 50.444147], [-114.905441, 50.448484], [-114.911216, 50.450518], [-114.912172, 50.451373], [-114.912446, 50.454853], [-114.913196, 50.455815], [-114.916199, 50.458005], [-114.917376, 50.461496], [-114.923903, 50.466751], [-114.926954, 50.468415], [-114.928367, 50.471848], [-114.93232, 50.473523], [-114.932782, 50.475356], [-114.931698, 50.478507], [-114.935665, 50.480807], [-114.937161, 50.486337], [-114.938216, 50.487055], [-114.943503, 50.488406], [-114.945758, 50.489633], [-114.950556, 50.496338], [-114.9513, 50.497588], [-114.953285, 50.497908], [-114.954968, 50.500133], [-114.955743, 50.501433], [-114.959041, 50.50441], [-114.962576, 50.512452], [-114.963645, 50.513795], [-114.965805, 50.51516], [-114.967726, 50.516125], [-114.968572, 50.517694], [-114.977461, 50.529589], [-114.977529, 50.532263], [-114.978344, 50.534984], [-114.983159, 50.539741], [-114.991407, 50.544381], [-114.991261, 50.54579], [-114.992672, 50.547852], [-114.995454, 50.549352], [-115.004287, 50.559775], [-115.005898, 50.560816], [-115.006039, 50.562556], [-115.011234, 50.567336], [-115.013701, 50.57086], [-115.013382, 50.574086], [-115.015117, 50.582396], [-115.019152, 50.58388], [-115.020535, 50.584689], [-115.027053, 50.583108], [-115.033581, 50.57929], [-115.049541, 50.575157], [-115.052084, 50.571447], [-115.0613, 50.579773], [-115.063338, 50.583172], [-115.073697, 50.588443], [-115.085278, 50.58975], [-115.100858, 50.577938], [-115.115859, 50.571763], [-115.117529, 50.569752], [-115.13171, 50.571794], [-115.136144, 50.574379], [-115.145198, 50.571482], [-115.148496, 50.570769], [-115.154623, 50.573274], [-115.173557, 50.567589], [-115.174976, 50.561359]], [[-114.680862, 49.517485], [-114.681472, 49.517781], [-114.681868, 49.518065], [-114.691145, 49.526137], [-114.692415, 49.527337], [-114.693226, 49.527837], [-114.693744, 49.528037], [-114.694864, 49.528283], [-114.695639, 49.528372], [-114.695601, 49.52843], [-114.68853, 49.527801], [-114.687407, 49.527601], [-114.686801, 49.527633], [-114.684699, 49.527326], [-114.684533, 49.527072], [-114.682493, 49.526547], [-114.680606, 49.525645], [-114.677343, 49.523277], [-114.677229, 49.523137], [-114.674355, 49.523129], [-114.673897, 49.521055], [-114.676679, 49.517829], [-114.677852, 49.521068], [-114.678995, 49.521058], [-114.679145, 49.517191], [-114.680108, 49.517265], [-114.680862, 49.517485]], [[-114.679697, 49.48618], [-114.679737, 49.486682], [-114.679583, 49.487619], [-114.67956, 49.488501], [-114.679657, 49.488806], [-114.680104, 49.489301], [-114.680703, 49.490294], [-114.68112, 49.491777], [-114.681083, 49.493277], [-114.68091, 49.494201], [-114.680577, 49.495069], [-114.680158, 49.495631], [-114.679975, 49.49649], [-114.679542, 49.496941], [-114.679448, 49.497894], [-114.678964, 49.498427], [-114.678769, 49.499261], [-114.67875, 49.500179], [-114.678632, 49.500784], [-114.678038, 49.502061], [-114.677606, 49.502402], [-114.677459, 49.50287], [-114.677179, 49.503141], [-114.677121, 49.503504], [-114.676777, 49.504193], [-114.676345, 49.504721], [-114.676026, 49.505959], [-114.675415, 49.506556], [-114.675188, 49.507193], [-114.674996, 49.509391], [-114.673686, 49.511582], [-114.6731, 49.51204], [-114.672947, 49.512637], [-114.672756, 49.513065], [-114.672536, 49.51332], [-114.672456, 49.513721], [-114.672134, 49.513979], [-114.671811, 49.514451], [-114.671396, 49.516107], [-114.672019, 49.516081], [-114.672162, 49.517989], [-114.649315, 49.518749], [-114.648993, 49.514427], [-114.628101, 49.514712], [-114.625638, 49.477869], [-114.625388, 49.472624], [-114.64619, 49.472183], [-114.647181, 49.486037], [-114.661288, 49.486422], [-114.669852, 49.486274], [-114.679697, 49.48618]], [[-115.081414, 49.505445], [-115.083019, 49.51149], [-115.08438, 49.526333], [-115.084976, 49.531707], [-115.052122, 49.528323], [-115.050868, 49.528444], [-115.042071, 49.52839], [-115.041834, 49.52822], [-115.03948, 49.528793], [-115.032031, 49.526966], [-115.032723, 49.526449], [-115.033458, 49.526166], [-115.034186, 49.526079], [-115.035924, 49.526084], [-115.036562, 49.526188], [-115.037106, 49.526396], [-115.038001, 49.526201], [-115.040048, 49.525408], [-115.041159, 49.524853], [-115.041964, 49.524579], [-115.04429, 49.524271], [-115.044436, 49.523847], [-115.044842, 49.521342], [-115.045547, 49.516349], [-115.043819, 49.516321], [-115.041624, 49.518082], [-115.032902, 49.512757], [-115.03387, 49.502134], [-115.033989, 49.495967], [-115.034351, 49.496405], [-115.034774, 49.496538], [-115.035133, 49.496518], [-115.035391, 49.496333], [-115.035776, 49.496321], [-115.036779, 49.496482], [-115.038088, 49.496558], [-115.038863, 49.496491], [-115.03938, 49.496374], [-115.040485, 49.496374], [-115.041638, 49.496519], [-115.042741, 49.496781], [-115.042823, 49.49555], [-115.04414, 49.494795], [-115.045327, 49.4937], [-115.045976, 49.492677], [-115.046083, 49.491599], [-115.046989, 49.490177], [-115.047762, 49.489447], [-115.047842, 49.488303], [-115.048279, 49.487685], [-115.048843, 49.487321], [-115.049535, 49.486709], [-115.050089, 49.48516], [-115.050781, 49.484737], [-115.051798, 49.484829], [-115.052541, 49.485179], [-115.053187, 49.485899], [-115.054607, 49.485888], [-115.055717, 49.485221], [-115.057213, 49.483676], [-115.057603, 49.482576], [-115.057565, 49.481695], [-115.057809, 49.481126], [-115.059645, 49.480234], [-115.059744, 49.479801], [-115.059394, 49.479404], [-115.059279, 49.47854], [-115.060419, 49.475807], [-115.061824, 49.475534], [-115.062942, 49.476506], [-115.064364, 49.475972], [-115.064846, 49.476398], [-115.065288, 49.477144], [-115.066679, 49.476647], [-115.066639, 49.47724], [-115.066452, 49.477836], [-115.065206, 49.480157], [-115.064893, 49.481407], [-115.064299, 49.482631], [-115.064195, 49.483009], [-115.064175, 49.483259], [-115.064389, 49.483841], [-115.064718, 49.484222], [-115.065786, 49.485015], [-115.067473, 49.485056], [-115.066869, 49.484297], [-115.066683, 49.483791], [-115.066641, 49.482905], [-115.0716, 49.482474], [-115.075561, 49.482063], [-115.07511, 49.481345], [-115.090769, 49.481157], [-115.090612, 49.486833], [-115.089297, 49.486745], [-115.087189, 49.486699], [-115.084262, 49.486903], [-115.079769, 49.486618], [-115.079529, 49.48268], [-115.075951, 49.482685], [-115.08014, 49.489439], [-115.080852, 49.49072], [-115.081105, 49.49172], [-115.08117, 49.492404], [-115.081126, 49.493454], [-115.080077, 49.492934], [-115.080091, 49.49308], [-115.0794, 49.49526], [-115.079048, 49.495913], [-115.080739, 49.496696], [-115.081271, 49.496539], [-115.081769, 49.498116], [-115.081708, 49.498522], [-115.080224, 49.49848], [-115.079936, 49.499486], [-115.078992, 49.499479], [-115.079184, 49.500403], [-115.076624, 49.5004], [-115.070473, 49.503775], [-115.070521, 49.503837], [-115.071383, 49.503379], [-115.072801, 49.505222], [-115.071591, 49.505308], [-115.072295, 49.506514], [-115.072902, 49.509274], [-115.072827, 49.509505], [-115.075596, 49.509246], [-115.078705, 49.509199], [-115.079425, 49.505448], [-115.081414, 49.505445]], [[-114.851319, 50.162801], [-114.888647, 50.162855], [-114.889146, 50.175464], [-114.900893, 50.175457], [-114.900821, 50.188753], [-114.910409, 50.188971], [-114.910638, 50.19942], [-114.889837, 50.199228], [-114.891058, 50.224047], [-114.873808, 50.224482], [-114.873143, 50.213195], [-114.874251, 50.21316], [-114.872914, 50.196556], [-114.8725, 50.188226], [-114.851083, 50.187777], [-114.850976, 50.199095], [-114.835764, 50.198824], [-114.83602, 50.187459], [-114.851083, 50.187777], [-114.851319, 50.162801]], [[-114.785212, 49.942701], [-114.785457, 49.966501], [-114.743999, 49.966249], [-114.740412, 49.966398], [-114.716795, 49.966487], [-114.717045, 49.936492], [-114.740767, 49.93615], [-114.740814, 49.909484], [-114.745012, 49.909436], [-114.762643, 49.909562], [-114.76253, 49.906742], [-114.762438, 49.894821], [-114.767456, 49.894755], [-114.772238, 49.894891], [-114.784454, 49.89455], [-114.784682, 49.877575], [-114.8315, 49.87639], [-114.841955, 49.876259], [-114.841556, 49.871761], [-114.857946, 49.871175], [-114.866252, 49.870779], [-114.867526, 49.871798], [-114.86806, 49.872754], [-114.868026, 49.873638], [-114.868139, 49.874389], [-114.868937, 49.875197], [-114.868959, 49.875502], [-114.86991, 49.876566], [-114.870432, 49.876915], [-114.870859, 49.87704], [-114.872436, 49.877245], [-114.873543, 49.87728], [-114.874449, 49.877563], [-114.875019, 49.877827], [-114.875341, 49.878269], [-114.875444, 49.878987], [-114.875732, 49.879499], [-114.876026, 49.88089], [-114.876027, 49.881249], [-114.875856, 49.88143], [-114.876681, 49.881991], [-114.876957, 49.882495], [-114.876971, 49.882826], [-114.876265, 49.883502], [-114.875385, 49.883961], [-114.874894, 49.88453], [-114.874452, 49.885409], [-114.874208, 49.886289], [-114.873657, 49.887161], [-114.873463, 49.888057], [-114.873235, 49.888427], [-114.872512, 49.888891], [-114.87142, 49.889297], [-114.871022, 49.889653], [-114.870824, 49.890199], [-114.870867, 49.891211], [-114.870718, 49.892042], [-114.870448, 49.892668], [-114.86955, 49.893819], [-114.868661, 49.894208], [-114.86802, 49.894323], [-114.867231, 49.894292], [-114.866268, 49.894047], [-114.865618, 49.893967], [-114.865071, 49.894], [-114.864773, 49.894105], [-114.864287, 49.894441], [-114.863919, 49.89497], [-114.863505, 49.895972], [-114.862984, 49.896518], [-114.86181, 49.897063], [-114.861235, 49.897632], [-114.860454, 49.897996], [-114.859969, 49.898076], [-114.859244, 49.898002], [-114.858311, 49.897553], [-114.85775, 49.897546], [-114.857346, 49.897643], [-114.857289, 49.897573], [-114.856947, 49.897459], [-114.856745, 49.897293], [-114.856603, 49.897021], [-114.856614, 49.896814], [-114.856887, 49.896306], [-114.856818, 49.895937], [-114.856563, 49.895752], [-114.855622, 49.895312], [-114.855529, 49.89486], [-114.855438, 49.894751], [-114.854228, 49.894071], [-114.853699, 49.894044], [-114.852804, 49.893865], [-114.852126, 49.89405], [-114.851791, 49.894044], [-114.851383, 49.893848], [-114.851242, 49.893557], [-114.851095, 49.893437], [-114.850719, 49.89344], [-114.849793, 49.89363], [-114.848959, 49.893568], [-114.848506, 49.893416], [-114.847466, 49.893658], [-114.846923, 49.893648], [-114.846691, 49.893563], [-114.846344, 49.893205], [-114.845569, 49.892768], [-114.845159, 49.892617], [-114.844811, 49.892593], [-114.844473, 49.892713], [-114.84427, 49.892871], [-114.84415, 49.893047], [-114.844078, 49.893425], [-114.843649, 49.893668], [-114.841459, 49.893771], [-114.840771, 49.893866], [-114.839956, 49.894067], [-114.839133, 49.894088], [-114.838651, 49.893989], [-114.838269, 49.893811], [-114.837206, 49.893576], [-114.836286, 49.893009], [-114.835978, 49.89268], [-114.835693, 49.89253], [-114.835172, 49.892368], [-114.834932, 49.89212], [-114.834374, 49.891849], [-114.833575, 49.891619], [-114.832211, 49.891629], [-114.831141, 49.891888], [-114.83023, 49.892348], [-114.828953, 49.892539], [-114.82782, 49.892986], [-114.827049, 49.893088], [-114.825056, 49.893141], [-114.824141, 49.893349], [-114.823417, 49.893695], [-114.822955, 49.893704], [-114.821803, 49.893332], [-114.820939, 49.893325], [-114.820699, 49.893427], [-114.820596, 49.893543], [-114.82061, 49.894145], [-114.820369, 49.894249], [-114.818991, 49.894268], [-114.818638, 49.894352], [-114.81787, 49.894409], [-114.816918, 49.894194], [-114.814614, 49.894041], [-114.8126, 49.894544], [-114.81048, 49.894629], [-114.809467, 49.894557], [-114.808908, 49.894618], [-114.807767, 49.894597], [-114.807504, 49.89452], [-114.806934, 49.894194], [-114.80649, 49.894194], [-114.805855, 49.894659], [-114.805663, 49.894934], [-114.805374, 49.895162], [-114.804755, 49.895259], [-114.804092, 49.895192], [-114.803679, 49.895356], [-114.803503, 49.895549], [-114.803354, 49.896059], [-114.803035, 49.896368], [-114.802118, 49.896316], [-114.801367, 49.896589], [-114.80088, 49.896885], [-114.800675, 49.897125], [-114.800581, 49.897374], [-114.80064, 49.897871], [-114.800479, 49.898038], [-114.799813, 49.898331], [-114.799738, 49.898446], [-114.799702, 49.898913], [-114.799096, 49.899352], [-114.798962, 49.899593], [-114.798832, 49.899671], [-114.798408, 49.899816], [-114.797734, 49.899937], [-114.796719, 49.899892], [-114.795302, 49.900108], [-114.794907, 49.900253], [-114.794175, 49.900679], [-114.79344, 49.900971], [-114.793102, 49.901037], [-114.792242, 49.900949], [-114.791808, 49.901004], [-114.790371, 49.901678], [-114.789668, 49.901809], [-114.788529, 49.901742], [-114.788222, 49.90178], [-114.787866, 49.901954], [-114.787434, 49.902873], [-114.787102, 49.903099], [-114.786962, 49.903115], [-114.785917, 49.902843], [-114.785737, 49.902831], [-114.785594, 49.9029], [-114.78548, 49.903582], [-114.785377, 49.903696], [-114.784966, 49.903824], [-114.784516, 49.904237], [-114.784424, 49.904434], [-114.784537, 49.90467], [-114.785212, 49.942701]], [[-114.893156, 50.096674], [-114.888446, 50.096655], [-114.824187, 50.094477], [-114.825341, 50.069013], [-114.804893, 50.068445], [-114.802721, 50.070681], [-114.800762, 50.072574], [-114.799113, 50.072505], [-114.798869, 50.070796], [-114.798513, 50.069446], [-114.793242, 50.015644], [-114.828616, 50.016636], [-114.837423, 50.016774], [-114.874982, 50.017044], [-114.896752, 50.016935], [-114.896866, 50.016109], [-114.897212, 50.00949], [-114.897855, 49.991897], [-114.898415, 49.987479], [-114.898976, 49.984575], [-114.900726, 49.977769], [-114.901581, 49.961207], [-114.914386, 49.959751], [-114.92393, 49.96074], [-114.942134, 49.996724], [-114.947533, 50.005433], [-114.948291, 50.005947], [-114.951748, 50.012066], [-114.951029, 50.019899], [-114.95014, 50.025749], [-114.939837, 50.031763], [-114.938457, 50.035434], [-114.936612, 50.07375], [-114.931371, 50.073559], [-114.932364, 50.075641], [-114.931831, 50.075513], [-114.931276, 50.075217], [-114.929336, 50.073555], [-114.928406, 50.073343], [-114.928165, 50.073381], [-114.927944, 50.073522], [-114.927818, 50.07408], [-114.927477, 50.074458], [-114.926924, 50.07474], [-114.926289, 50.074901], [-114.92516, 50.075005], [-114.924224, 50.074797], [-114.922261, 50.074996], [-114.921681, 50.074936], [-114.921251, 50.074762], [-114.920639, 50.074006], [-114.919835, 50.073529], [-114.919544, 50.073471], [-114.919167, 50.072984], [-114.919176, 50.071997], [-114.919368, 50.071705], [-114.920937, 50.070323], [-114.921185, 50.069369], [-114.921081, 50.068533], [-114.920874, 50.068262], [-114.903565, 50.069108], [-114.897162, 50.069275], [-114.894156, 50.069224], [-114.89355, 50.081757], [-114.893156, 50.096674]]]]}, "properties": {"name": "East Kootenay A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "East Kootenay A", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901017", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.223151, 49.516822], [-115.234621, 49.513364], [-115.242193, 49.507796], [-115.243546, 49.499903], [-115.256184, 49.492494], [-115.258069, 49.487672], [-115.255446, 49.487243], [-115.249719, 49.484929], [-115.250803, 49.479448], [-115.249911, 49.474346], [-115.250681, 49.466879], [-115.243112, 49.464817], [-115.236917, 49.458383], [-115.239053, 49.452685], [-115.227418, 49.445863], [-115.224503, 49.444354], [-115.216224, 49.438769], [-115.207341, 49.427037], [-115.252543, 49.426154], [-115.26227, 49.42645], [-115.265954, 49.426489], [-115.284185, 49.426267], [-115.298616, 49.426292], [-115.319069, 49.42513], [-115.34865, 49.426498], [-115.375445, 49.427181], [-115.375442, 49.423198], [-115.374935, 49.413126], [-115.373892, 49.403078], [-115.373866, 49.401341], [-115.377123, 49.40073], [-115.375853, 49.390329], [-115.396237, 49.390113], [-115.407773, 49.391687], [-115.411394, 49.391837], [-115.413273, 49.391815], [-115.419068, 49.392137], [-115.443071, 49.391551], [-115.445597, 49.39158], [-115.498661, 49.393062], [-115.504905, 49.393452], [-115.541864, 49.393498], [-115.541937, 49.39341], [-115.54289, 49.392966], [-115.543768, 49.393169], [-115.544014, 49.393506], [-115.570571, 49.393501], [-115.605323, 49.393318], [-115.604655, 49.388256], [-115.604062, 49.387744], [-115.603056, 49.386682], [-115.600871, 49.38663], [-115.600563, 49.383815], [-115.599895, 49.383068], [-115.600419, 49.382775], [-115.600051, 49.379759], [-115.604504, 49.379775], [-115.605385, 49.386576], [-115.609816, 49.386718], [-115.609939, 49.390245], [-115.609939, 49.393597], [-115.610021, 49.393638], [-115.610072, 49.394006], [-115.623644, 49.393541], [-115.626297, 49.38648], [-115.628714, 49.383109], [-115.631018, 49.379193], [-115.632056, 49.371695], [-115.631296, 49.369526], [-115.631252, 49.369147], [-115.630704, 49.36852], [-115.629943, 49.368152], [-115.62958, 49.367824], [-115.628844, 49.367527], [-115.628783, 49.367257], [-115.629107, 49.366982], [-115.629128, 49.366748], [-115.628019, 49.366492], [-115.627626, 49.366245], [-115.626027, 49.364814], [-115.625655, 49.364297], [-115.624718, 49.363819], [-115.624131, 49.363119], [-115.614949, 49.356886], [-115.60474, 49.350228], [-115.594285, 49.345371], [-115.587905, 49.343238], [-115.586749, 49.343077], [-115.586535, 49.342784], [-115.586021, 49.342472], [-115.584636, 49.342249], [-115.582083, 49.341426], [-115.582083, 49.34041], [-115.582197, 49.340232], [-115.581847, 49.338915], [-115.581666, 49.338464], [-115.580948, 49.337511], [-115.580356, 49.335958], [-115.579971, 49.335387], [-115.579641, 49.334358], [-115.579087, 49.333443], [-115.57908, 49.3332], [-115.579423, 49.332692], [-115.579403, 49.332431], [-115.578521, 49.331935], [-115.57852, 49.331485], [-115.578862, 49.331076], [-115.579312, 49.330757], [-115.579569, 49.330428], [-115.580531, 49.330026], [-115.580569, 49.329639], [-115.580254, 49.329114], [-115.58098, 49.328772], [-115.581618, 49.3286], [-115.581992, 49.328056], [-115.582409, 49.327917], [-115.582836, 49.327904], [-115.583352, 49.328153], [-115.584293, 49.327985], [-115.585334, 49.328151], [-115.585903, 49.328463], [-115.586993, 49.328864], [-115.587453, 49.329157], [-115.587602, 49.329707], [-115.587751, 49.329808], [-115.589334, 49.329819], [-115.590824, 49.330179], [-115.592401, 49.330396], [-115.594302, 49.330329], [-115.595468, 49.330469], [-115.596557, 49.330428], [-115.596813, 49.33009], [-115.596891, 49.329749], [-115.596141, 49.328932], [-115.595518, 49.327981], [-115.595531, 49.32746], [-115.595283, 49.326935], [-115.595583, 49.327011], [-115.595764, 49.326968], [-115.595767, 49.326833], [-115.594977, 49.326059], [-115.594821, 49.325752], [-115.594979, 49.32552], [-115.595928, 49.325046], [-115.596286, 49.324546], [-115.596317, 49.323953], [-115.595796, 49.322903], [-115.595845, 49.322643], [-115.596236, 49.322432], [-115.597161, 49.322335], [-115.597971, 49.322399], [-115.599405, 49.323739], [-115.599744, 49.323923], [-115.60116, 49.323967], [-115.60265, 49.323841], [-115.604975, 49.323348], [-115.605893, 49.323503], [-115.608204, 49.323522], [-115.609811, 49.323704], [-115.611585, 49.324284], [-115.612614, 49.324927], [-115.613094, 49.325014], [-115.613718, 49.324869], [-115.615112, 49.324301], [-115.616303, 49.324073], [-115.617207, 49.323284], [-115.617612, 49.323109], [-115.618233, 49.323054], [-115.618626, 49.323181], [-115.619334, 49.322986], [-115.619712, 49.32272], [-115.620909, 49.322111], [-115.621655, 49.321381], [-115.62325, 49.320236], [-115.623437, 49.319914], [-115.623471, 49.319653], [-115.623291, 49.31911], [-115.623274, 49.318659], [-115.623824, 49.318098], [-115.624047, 49.317974], [-115.624974, 49.317696], [-115.625469, 49.317683], [-115.625797, 49.317732], [-115.626137, 49.317404], [-115.626806, 49.317143], [-115.627506, 49.316244], [-115.627944, 49.315368], [-115.628411, 49.315004], [-115.627576, 49.313707], [-115.627587, 49.313329], [-115.627864, 49.312801], [-115.627909, 49.311297], [-115.628135, 49.31067], [-115.628639, 49.310378], [-115.629637, 49.310164], [-115.630849, 49.309692], [-115.631371, 49.309752], [-115.632457, 49.310348], [-115.633795, 49.310291], [-115.634188, 49.310034], [-115.63422, 49.309422], [-115.634618, 49.309004], [-115.635133, 49.308829], [-115.636392, 49.308627], [-115.637256, 49.307818], [-115.638484, 49.307759], [-115.639519, 49.307204], [-115.640671, 49.306901], [-115.640857, 49.30621], [-115.641678, 49.305913], [-115.641933, 49.305673], [-115.643049, 49.305181], [-115.64356, 49.305115], [-115.644037, 49.304832], [-115.644421, 49.304872], [-115.644774, 49.305083], [-115.645037, 49.305041], [-115.645755, 49.304491], [-115.646112, 49.302649], [-115.646845, 49.302063], [-115.647577, 49.301035], [-115.647689, 49.300046], [-115.64859, 49.29984], [-115.649974, 49.300134], [-115.650345, 49.300147], [-115.650471, 49.300076], [-115.650419, 49.299508], [-115.649598, 49.298463], [-115.649674, 49.298193], [-115.649996, 49.298008], [-115.650582, 49.298248], [-115.650985, 49.298127], [-115.65102, 49.297866], [-115.651174, 49.297796], [-115.651641, 49.297828], [-115.652021, 49.298039], [-115.652191, 49.298948], [-115.652559, 49.299105], [-115.65303, 49.299011], [-115.653234, 49.298617], [-115.653167, 49.298103], [-115.653468, 49.297674], [-115.654556, 49.297677], [-115.654632, 49.297435], [-115.654929, 49.297177], [-115.655051, 49.296287], [-115.655193, 49.296135], [-115.655671, 49.296293], [-115.655953, 49.29608], [-115.656451, 49.295996], [-115.657707, 49.296405], [-115.658756, 49.296326], [-115.659652, 49.295823], [-115.660218, 49.295766], [-115.660643, 49.295825], [-115.660954, 49.295558], [-115.662573, 49.294784], [-115.663033, 49.294582], [-115.663245, 49.294584], [-115.665486, 49.293316], [-115.677661, 49.290187], [-115.679328, 49.289452], [-115.683712, 49.288172], [-115.686958, 49.287337], [-115.689479, 49.286076], [-115.693298, 49.284634], [-115.69634, 49.283851], [-115.698658, 49.282641], [-115.700969, 49.2822], [-115.703716, 49.282871], [-115.706339, 49.283728], [-115.708999, 49.285035], [-115.711709, 49.285256], [-115.715274, 49.284951], [-115.71844, 49.283982], [-115.721974, 49.282459], [-115.723972, 49.280718], [-115.728004, 49.277687], [-115.728103, 49.275516], [-115.726544, 49.273313], [-115.726324, 49.270611], [-115.72751, 49.269079], [-115.730914, 49.268508], [-115.733991, 49.268174], [-115.737585, 49.269086], [-115.742187, 49.270504], [-115.749209, 49.27283], [-115.754075, 49.271574], [-115.759049, 49.270131], [-115.762182, 49.268387], [-115.764184, 49.265554], [-115.765744, 49.263144], [-115.76634, 49.261447], [-115.766194, 49.259319], [-115.765595, 49.25574], [-115.764786, 49.254937], [-115.764848, 49.254589], [-115.764831, 49.253102], [-115.764577, 49.252531], [-115.763481, 49.250105], [-115.762979, 49.249803], [-115.762676, 49.249801], [-115.76276, 49.24967], [-115.761217, 49.248756], [-115.760077, 49.247185], [-115.757424, 49.241126], [-115.755502, 49.235282], [-115.757161, 49.227143], [-115.75674, 49.218391], [-115.759284, 49.214961], [-115.75996, 49.214302], [-115.763555, 49.211324], [-115.776522, 49.205517], [-115.784494, 49.194986], [-115.780658, 49.183572], [-115.78061, 49.178631], [-115.780102, 49.174653], [-115.767701, 49.177589], [-115.74319, 49.184453], [-115.735579, 49.192139], [-115.732161, 49.196742], [-115.727501, 49.203372], [-115.718187, 49.208082], [-115.703067, 49.207375], [-115.699483, 49.197594], [-115.687664, 49.191599], [-115.67182, 49.196621], [-115.663359, 49.20629], [-115.651122, 49.209912], [-115.633745, 49.212604], [-115.620526, 49.211245], [-115.618849, 49.204539], [-115.617892, 49.20193], [-115.618707, 49.188077], [-115.612908, 49.180116], [-115.608499, 49.16928], [-115.601544, 49.162556], [-115.591678, 49.155885], [-115.595515, 49.153824], [-115.59074, 49.142577], [-115.587914, 49.133337], [-115.578986, 49.130302], [-115.569777, 49.124937], [-115.556805, 49.119758], [-115.552322, 49.114339], [-115.550582, 49.100543], [-115.554282, 49.08993], [-115.554845, 49.079995], [-115.547342, 49.069066], [-115.546259, 49.050762], [-115.533053, 49.043561], [-115.535511, 49.037461], [-115.531379, 49.029644], [-115.534687, 49.021427], [-115.532521, 49.014246], [-115.529232, 49.009282], [-115.523751, 49.003801], [-115.519996, 49.000709], [-115.513871, 49.00069], [-115.502828, 49.000788], [-115.501151, 49.000129], [-115.484376, 49.000014], [-115.259172, 49.000005], [-115.128152, 49.000075], [-115.128362, 49.016381], [-115.128329, 49.048005], [-115.128573, 49.070636], [-115.128724, 49.072238], [-115.128602, 49.074185], [-115.129945, 49.092056], [-115.129754, 49.096251], [-115.12375, 49.095426], [-115.113315, 49.094537], [-115.107774, 49.094306], [-115.09542, 49.094171], [-115.085887, 49.094196], [-115.081725, 49.094039], [-115.078081, 49.094159], [-115.074577, 49.094147], [-115.074165, 49.086983], [-115.074132, 49.081251], [-115.073976, 49.075737], [-115.07372, 49.043146], [-115.074214, 49.027764], [-115.075678, 49.002702], [-115.063094, 49.002757], [-115.054411, 49.002671], [-115.052386, 49.002777], [-115.05233, 49.001788], [-115.052217, 49.001411], [-115.051869, 49.001365], [-115.048526, 49.001452], [-115.048045, 49.000049], [-114.97662, 49.000019], [-114.763513, 49.000006], [-114.726252, 49.000118], [-114.73028, 49.005063], [-114.734106, 49.006736], [-114.739366, 49.0121], [-114.740048, 49.015606], [-114.74113, 49.019537], [-114.744033, 49.022703], [-114.749337, 49.026428], [-114.756874, 49.029276], [-114.757558, 49.032781], [-114.75726, 49.035687], [-114.753652, 49.038453], [-114.750644, 49.03886], [-114.746102, 49.040269], [-114.741323, 49.042685], [-114.736673, 49.049326], [-114.733981, 49.048596], [-114.732318, 49.049944], [-114.728856, 49.053828], [-114.724291, 49.055769], [-114.721953, 49.057069], [-114.717658, 49.060629], [-114.716724, 49.06327], [-114.711915, 49.063367], [-114.700777, 49.069993], [-114.703591, 49.073289], [-114.707697, 49.075737], [-114.708671, 49.078332], [-114.71127, 49.0821], [-114.714405, 49.085106], [-114.71895, 49.087761], [-114.719949, 49.089824], [-114.72436, 49.09167], [-114.728693, 49.097373], [-114.731653, 49.100633], [-114.736779, 49.103458], [-114.745527, 49.114426], [-114.751516, 49.117351], [-114.753899, 49.120439], [-114.753785, 49.124246], [-114.749326, 49.124683], [-114.74351, 49.125022], [-114.736284, 49.128287], [-114.7336, 49.127717], [-114.733344, 49.127605], [-114.732912, 49.127571], [-114.731517, 49.132278], [-114.725534, 49.134681], [-114.722803, 49.136887], [-114.724912, 49.13992], [-114.726808, 49.142038], [-114.727214, 49.143553], [-114.723739, 49.145307], [-114.720427, 49.145951], [-114.718285, 49.14779], [-114.71906, 49.149106], [-114.717841, 49.150601], [-114.716136, 49.151256], [-114.714897, 49.151046], [-114.710789, 49.152535], [-114.708662, 49.15523], [-114.707966, 49.157346], [-114.709436, 49.159568], [-114.71173, 49.161535], [-114.713965, 49.163678], [-114.714004, 49.165393], [-114.708844, 49.167954], [-114.706958, 49.169478], [-114.706739, 49.170803], [-114.708837, 49.172511], [-114.717179, 49.177556], [-114.722239, 49.186482], [-114.726142, 49.18711], [-114.732573, 49.191619], [-114.736694, 49.197174], [-114.744572, 49.198836], [-114.75105, 49.203704], [-114.747415, 49.208415], [-114.747917, 49.211577], [-114.75328, 49.217887], [-114.740045, 49.222841], [-114.738955, 49.227189], [-114.74042, 49.22863], [-114.74004, 49.230525], [-114.739994, 49.233292], [-114.74278, 49.237058], [-114.740652, 49.241292], [-114.738069, 49.243305], [-114.737312, 49.246247], [-114.74095, 49.249803], [-114.732423, 49.25932], [-114.733229, 49.261878], [-114.73133, 49.263669], [-114.726503, 49.263477], [-114.719966, 49.266249], [-114.713867, 49.270926], [-114.715076, 49.278473], [-114.70925, 49.282011], [-114.709425, 49.283024], [-114.706769, 49.283674], [-114.699027, 49.28846], [-114.70831, 49.292531], [-114.714905, 49.29553], [-114.715724, 49.2968], [-114.718336, 49.299313], [-114.726079, 49.302113], [-114.728819, 49.302038], [-114.731989, 49.303537], [-114.731243, 49.308593], [-114.728125, 49.310987], [-114.725134, 49.313873], [-114.735265, 49.314986], [-114.743616, 49.3168], [-114.750981, 49.31662], [-114.759322, 49.31785], [-114.76287, 49.316681], [-114.767472, 49.317059], [-114.770368, 49.318701], [-114.772444, 49.320329], [-114.781387, 49.322316], [-114.792571, 49.32509], [-114.796696, 49.326327], [-114.798185, 49.327778], [-114.798544, 49.330364], [-114.802134, 49.331517], [-114.811558, 49.332642], [-114.816516, 49.33166], [-114.820474, 49.329228], [-114.825912, 49.32739], [-114.830104, 49.327334], [-114.834181, 49.329326], [-114.837198, 49.329766], [-114.842031, 49.32913], [-114.843939, 49.326245], [-114.846035, 49.326216], [-114.848881, 49.327762], [-114.855022, 49.328827], [-114.863199, 49.330036], [-114.871413, 49.334112], [-114.878004, 49.335385], [-114.881469, 49.338274], [-114.886181, 49.341071], [-114.889378, 49.345736], [-114.886381, 49.349806], [-114.885757, 49.354925], [-114.88036, 49.357706], [-114.880639, 49.359321], [-114.883436, 49.364471], [-114.882615, 49.369828], [-114.872836, 49.373769], [-114.87274, 49.375581], [-114.874908, 49.380204], [-114.876786, 49.381212], [-114.877723, 49.382559], [-114.880753, 49.383595], [-114.886192, 49.385717], [-114.881167, 49.387456], [-114.878447, 49.389801], [-114.873956, 49.393311], [-114.87301, 49.395909], [-114.871062, 49.396791], [-114.867606, 49.401902], [-114.865596, 49.403617], [-114.859823, 49.407127], [-114.857064, 49.412232], [-114.85872, 49.414703], [-114.863729, 49.418453], [-114.868384, 49.419723], [-114.875497, 49.422201], [-114.891914, 49.428956], [-114.906535, 49.425252], [-114.908867, 49.421551], [-114.909322, 49.419758], [-114.909445, 49.419538], [-114.909442, 49.419247], [-114.909885, 49.417363], [-114.909738, 49.416837], [-114.909877, 49.416498], [-114.909722, 49.41627], [-114.909463, 49.416157], [-114.909414, 49.416058], [-114.909757, 49.415784], [-114.90952, 49.415142], [-114.909589, 49.414846], [-114.909731, 49.414723], [-114.909842, 49.414401], [-114.909966, 49.413782], [-114.909872, 49.413384], [-114.910097, 49.412949], [-114.910703, 49.412959], [-114.911334, 49.412709], [-114.91149, 49.412272], [-114.911316, 49.412143], [-114.911352, 49.411944], [-114.911182, 49.411744], [-114.911149, 49.411537], [-114.911531, 49.411345], [-114.912235, 49.411295], [-114.913189, 49.410935], [-114.913519, 49.410905], [-114.913772, 49.410819], [-114.91429, 49.41029], [-114.91551, 49.409528], [-114.916129, 49.408874], [-114.916795, 49.408796], [-114.917287, 49.408553], [-114.917721, 49.408425], [-114.919028, 49.408143], [-114.919591, 49.407866], [-114.92015, 49.407354], [-114.920213, 49.407158], [-114.920153, 49.40695], [-114.920281, 49.406861], [-114.920584, 49.406884], [-114.920655, 49.406832], [-114.920723, 49.406545], [-114.921034, 49.406344], [-114.921113, 49.406102], [-114.921463, 49.405974], [-114.921901, 49.405721], [-114.92272, 49.40561], [-114.923166, 49.405168], [-114.923675, 49.405187], [-114.923773, 49.405142], [-114.923888, 49.405037], [-114.923941, 49.404741], [-114.924729, 49.404665], [-114.925218, 49.40453], [-114.92546, 49.404373], [-114.925372, 49.404128], [-114.925416, 49.404066], [-114.925816, 49.40375], [-114.925774, 49.403452], [-114.926078, 49.403124], [-114.925951, 49.402871], [-114.925997, 49.402727], [-114.926261, 49.402704], [-114.926429, 49.402609], [-114.927082, 49.401828], [-114.927088, 49.401722], [-114.927704, 49.401156], [-114.928011, 49.401063], [-114.928015, 49.400947], [-114.928281, 49.400888], [-114.928491, 49.400468], [-114.928828, 49.400313], [-114.929032, 49.400082], [-114.929479, 49.399911], [-114.929883, 49.399837], [-114.930042, 49.399642], [-114.930366, 49.39945], [-114.930447, 49.399199], [-114.930389, 49.39892], [-114.930042, 49.398671], [-114.929978, 49.398525], [-114.930374, 49.398316], [-114.930576, 49.398104], [-114.930982, 49.39795], [-114.931223, 49.397774], [-114.931244, 49.397631], [-114.931812, 49.397218], [-114.931713, 49.396965], [-114.931169, 49.396748], [-114.931023, 49.396628], [-114.930634, 49.396054], [-114.930651, 49.395956], [-114.931156, 49.395452], [-114.931041, 49.395216], [-114.931342, 49.394934], [-114.931722, 49.394743], [-114.93165, 49.394525], [-114.931355, 49.39434], [-114.931159, 49.394058], [-114.931247, 49.393934], [-114.931557, 49.393777], [-114.931787, 49.393565], [-114.931863, 49.393395], [-114.931744, 49.393259], [-114.931367, 49.393045], [-114.931264, 49.392863], [-114.931369, 49.392693], [-114.93179, 49.392477], [-114.931569, 49.392193], [-114.931602, 49.392059], [-114.931786, 49.391918], [-114.931986, 49.391446], [-114.931986, 49.3914], [-114.931567, 49.391241], [-114.931395, 49.391075], [-114.931431, 49.390877], [-114.931716, 49.390622], [-114.931497, 49.390268], [-114.931075, 49.390143], [-114.930973, 49.389935], [-114.930568, 49.389765], [-114.930463, 49.389655], [-114.930557, 49.389351], [-114.930792, 49.389022], [-114.931062, 49.388802], [-114.930992, 49.388549], [-114.931239, 49.388211], [-114.931115, 49.387904], [-114.931145, 49.387814], [-114.931334, 49.387602], [-114.931547, 49.387083], [-114.93184, 49.386739], [-114.931961, 49.386092], [-114.932083, 49.385843], [-114.932379, 49.385678], [-114.93244, 49.385525], [-114.933367, 49.38547], [-114.934037, 49.385257], [-114.93428, 49.385037], [-114.934314, 49.384559], [-114.935169, 49.384512], [-114.935903, 49.384148], [-114.935907, 49.384004], [-114.935676, 49.383612], [-114.935736, 49.383488], [-114.936726, 49.383236], [-114.936796, 49.383174], [-114.936848, 49.382969], [-114.936451, 49.382583], [-114.936711, 49.382255], [-114.936733, 49.382057], [-114.93739, 49.381835], [-114.937548, 49.381713], [-114.93785, 49.381393], [-114.938078, 49.380885], [-114.938434, 49.380603], [-114.938771, 49.380448], [-114.939154, 49.380536], [-114.939665, 49.380518], [-114.939999, 49.380425], [-114.940412, 49.38008], [-114.940874, 49.379918], [-114.941191, 49.379934], [-114.941662, 49.37987], [-114.942263, 49.379629], [-114.942806, 49.379494], [-114.943801, 49.379458], [-114.944301, 49.37935], [-114.944501, 49.379182], [-114.94452, 49.379039], [-114.944324, 49.378774], [-114.944317, 49.378648], [-114.944522, 49.378329], [-114.944679, 49.37824], [-114.944942, 49.378219], [-114.945296, 49.378279], [-114.946479, 49.378327], [-114.94697, 49.378138], [-114.947267, 49.377935], [-114.94753, 49.377914], [-114.947717, 49.377755], [-114.948238, 49.377756], [-114.948687, 49.377592], [-114.948988, 49.377319], [-114.949802, 49.37727], [-114.949973, 49.377148], [-114.949811, 49.376712], [-114.949881, 49.376363], [-114.950029, 49.376149], [-114.950481, 49.37586], [-114.951082, 49.375682], [-114.952162, 49.375548], [-114.952869, 49.375399], [-114.953767, 49.375362], [-114.95423, 49.37519], [-114.954429, 49.375013], [-114.954751, 49.374875], [-114.955028, 49.374835], [-114.955524, 49.374862], [-114.955869, 49.374499], [-114.956713, 49.374425], [-114.958157, 49.373469], [-114.958008, 49.372774], [-114.958115, 49.372533], [-114.958518, 49.372422], [-114.959472, 49.372341], [-114.959776, 49.372004], [-114.960228, 49.371724], [-114.960962, 49.371629], [-114.961692, 49.371633], [-114.962329, 49.371555], [-114.962571, 49.371326], [-114.962714, 49.370895], [-114.962972, 49.370675], [-114.963248, 49.370635], [-114.963907, 49.370673], [-114.964342, 49.370807], [-114.964746, 49.371048], [-114.965006, 49.371089], [-114.96523, 49.371002], [-114.96592, 49.370296], [-114.966188, 49.370148], [-114.966878, 49.370141], [-114.967505, 49.370279], [-114.967849, 49.370293], [-114.96857, 49.370208], [-114.969295, 49.370012], [-114.97024, 49.369463], [-114.970301, 49.369283], [-114.970151, 49.368957], [-114.970211, 49.36849], [-114.970372, 49.368232], [-114.970542, 49.368145], [-114.971357, 49.36807], [-114.971794, 49.367843], [-114.972349, 49.367728], [-114.972541, 49.367758], [-114.972942, 49.36808], [-114.973319, 49.368258], [-114.973606, 49.368335], [-114.973979, 49.368323], [-114.974805, 49.36796], [-114.975824, 49.367662], [-114.976458, 49.367322], [-114.976706, 49.367282], [-114.977748, 49.367418], [-114.978565, 49.367324], [-114.979488, 49.367637], [-114.979844, 49.367688], [-114.980438, 49.367662], [-114.981327, 49.367489], [-114.981499, 49.367331], [-114.981636, 49.366684], [-114.981967, 49.366322], [-114.982217, 49.365256], [-114.982687, 49.364877], [-114.983314, 49.364734], [-114.983724, 49.364464], [-114.983716, 49.364293], [-114.983204, 49.364031], [-114.983059, 49.363858], [-114.983581, 49.363561], [-114.983696, 49.363437], [-114.984128, 49.362643], [-114.984998, 49.362624], [-114.985344, 49.362548], [-114.985543, 49.362444], [-114.98555, 49.362246], [-114.985212, 49.362114], [-114.985132, 49.362014], [-114.985204, 49.361619], [-114.98567, 49.361303], [-114.985761, 49.361134], [-114.98535, 49.360714], [-114.98537, 49.360578], [-114.985625, 49.360403], [-114.985928, 49.360399], [-114.986432, 49.360526], [-114.987022, 49.36058], [-114.987521, 49.360499], [-114.987606, 49.360446], [-114.987658, 49.360187], [-114.987828, 49.360091], [-114.988048, 49.360104], [-114.988372, 49.360227], [-114.988813, 49.360215], [-114.989196, 49.359962], [-114.989173, 49.359843], [-114.988919, 49.359668], [-114.988899, 49.359489], [-114.988986, 49.359355], [-114.989254, 49.359234], [-114.990305, 49.35945], [-114.992321, 49.359997], [-114.992791, 49.359979], [-114.993072, 49.359814], [-114.993147, 49.359319], [-114.993353, 49.359017], [-114.994422, 49.358478], [-114.994835, 49.358107], [-114.995375, 49.358072], [-114.995575, 49.357868], [-114.995899, 49.357721], [-114.996104, 49.357751], [-114.99633, 49.357945], [-114.996655, 49.358095], [-114.997427, 49.358062], [-114.997828, 49.358348], [-114.99802, 49.358378], [-114.998383, 49.358231], [-114.998604, 49.357867], [-114.998816, 49.357754], [-114.999545, 49.358134], [-115.0, 49.358214], [-115.00059, 49.358171], [-115.001282, 49.357743], [-115.001421, 49.357717], [-115.003089, 49.358025], [-115.004479, 49.358013], [-115.006988, 49.356974], [-115.006911, 49.355711], [-115.007003, 49.35543], [-115.005972, 49.354802], [-115.00567, 49.354393], [-115.004927, 49.354074], [-115.004561, 49.353773], [-115.004324, 49.35312], [-115.004392, 49.352362], [-115.004927, 49.351153], [-115.00604, 49.349709], [-115.0066, 49.349412], [-115.007894, 49.348965], [-115.008578, 49.348452], [-115.010129, 49.346712], [-115.010346, 49.34844], [-115.027566, 49.347481], [-115.056484, 49.34766], [-115.056322, 49.364395], [-115.040548, 49.36526], [-115.041292, 49.399039], [-115.041243, 49.404753], [-115.051795, 49.405062], [-115.051391, 49.417841], [-115.061895, 49.418054], [-115.061821, 49.420475], [-115.084621, 49.420471], [-115.084602, 49.434899], [-115.106381, 49.435135], [-115.106411, 49.452729], [-115.128495, 49.452421], [-115.128205, 49.467054], [-115.151383, 49.467198], [-115.150855, 49.481761], [-115.156946, 49.481689], [-115.157127, 49.48886], [-115.201783, 49.488633], [-115.200439, 49.519236], [-115.212584, 49.515822], [-115.223151, 49.516822]]]]}, "properties": {"name": "East Kootenay B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "East Kootenay B", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901019", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.809733, 49.581042], [-115.810299, 49.581064], [-115.811572, 49.581581], [-115.811967, 49.581829], [-115.812317, 49.582264], [-115.812992, 49.583513], [-115.813275, 49.58437], [-115.813696, 49.585229], [-115.813897, 49.585537], [-115.81425, 49.585829], [-115.814715, 49.586058], [-115.816034, 49.586458], [-115.817377, 49.586427], [-115.817682, 49.586358], [-115.818006, 49.586163], [-115.819523, 49.584495], [-115.819524, 49.582174], [-115.818531, 49.581652], [-115.816796, 49.581279], [-115.81641, 49.581101], [-115.816087, 49.580861], [-115.815629, 49.580333], [-115.815548, 49.5795], [-115.815167, 49.578342], [-115.814645, 49.577951], [-115.813343, 49.576634], [-115.812813, 49.576246], [-115.808486, 49.573708], [-115.806984, 49.572489], [-115.80654, 49.572209], [-115.805816, 49.571874], [-115.805083, 49.571619], [-115.803964, 49.571344], [-115.802414, 49.571058], [-115.801827, 49.571057], [-115.800782, 49.571326], [-115.800084, 49.571397], [-115.797964, 49.571324], [-115.797167, 49.571212], [-115.79221, 49.56998], [-115.791546, 49.569913], [-115.790718, 49.569906], [-115.787859, 49.570077], [-115.78682, 49.570057], [-115.786246, 49.570214], [-115.777585, 49.565187], [-115.776283, 49.564317], [-115.775516, 49.563685], [-115.774761, 49.562936], [-115.77298, 49.560633], [-115.772376, 49.559975], [-115.77114, 49.558898], [-115.772701, 49.558866], [-115.772785, 49.558901], [-115.774926, 49.558901], [-115.774924, 49.559806], [-115.78201, 49.562803], [-115.78478, 49.564186], [-115.785952, 49.564581], [-115.786003, 49.551616], [-115.772576, 49.551644], [-115.771067, 49.552124], [-115.77118, 49.551835], [-115.77119, 49.54623], [-115.774411, 49.54626], [-115.775, 49.54632], [-115.775017, 49.543111], [-115.774935, 49.541485], [-115.774978, 49.540324], [-115.775229, 49.538601], [-115.783216, 49.538308], [-115.78342, 49.524298], [-115.780649, 49.524351], [-115.777748, 49.523029], [-115.776285, 49.522151], [-115.776095, 49.521006], [-115.773844, 49.519845], [-115.773226, 49.519447], [-115.770404, 49.518046], [-115.771028, 49.51753], [-115.77055, 49.517243], [-115.771418, 49.516774], [-115.773027, 49.515555], [-115.774746, 49.51474], [-115.775533, 49.515307], [-115.776854, 49.514557], [-115.777926, 49.514893], [-115.778675, 49.515215], [-115.779264, 49.515745], [-115.778404, 49.516304], [-115.780864, 49.51807], [-115.78327, 49.516681], [-115.783345, 49.513393], [-115.787518, 49.513395], [-115.787891, 49.513468], [-115.793145, 49.51347], [-115.794294, 49.513447], [-115.794764, 49.513346], [-115.796074, 49.513407], [-115.79599, 49.512762], [-115.796067, 49.512558], [-115.796077, 49.501479], [-115.796233, 49.497877], [-115.785088, 49.497889], [-115.785012, 49.490621], [-115.773627, 49.490578], [-115.773647, 49.488722], [-115.770801, 49.488712], [-115.770792, 49.490454], [-115.768466, 49.490215], [-115.762682, 49.490171], [-115.762526, 49.485405], [-115.762592, 49.483218], [-115.756807, 49.483174], [-115.756847, 49.490441], [-115.759826, 49.490446], [-115.759804, 49.492485], [-115.751301, 49.492462], [-115.7513, 49.49421], [-115.748388, 49.494234], [-115.748406, 49.496251], [-115.7513, 49.496266], [-115.751403, 49.500058], [-115.749734, 49.500068], [-115.749724, 49.50199], [-115.743774, 49.501948], [-115.743591, 49.499977], [-115.742481, 49.500027], [-115.742517, 49.498038], [-115.739176, 49.497959], [-115.739173, 49.500022], [-115.731789, 49.499993], [-115.731848, 49.501863], [-115.732704, 49.501897], [-115.732664, 49.506445], [-115.736442, 49.506474], [-115.736793, 49.506756], [-115.737332, 49.507356], [-115.737341, 49.508046], [-115.736986, 49.508226], [-115.734897, 49.510216], [-115.738744, 49.510525], [-115.738738, 49.516424], [-115.739158, 49.516425], [-115.739157, 49.516617], [-115.738471, 49.516928], [-115.737955, 49.517356], [-115.735145, 49.520689], [-115.735444, 49.520914], [-115.735074, 49.521315], [-115.73881, 49.523681], [-115.728186, 49.523687], [-115.728135, 49.530694], [-115.728695, 49.537573], [-115.737678, 49.537309], [-115.739174, 49.537364], [-115.740963, 49.537266], [-115.739812, 49.5383], [-115.738927, 49.539238], [-115.738727, 49.539853], [-115.738473, 49.540199], [-115.738478, 49.540429], [-115.738902, 49.541344], [-115.741082, 49.543692], [-115.741426, 49.544151], [-115.741733, 49.544699], [-115.742552, 49.546882], [-115.742775, 49.547276], [-115.743364, 49.547871], [-115.743933, 49.548161], [-115.744518, 49.548337], [-115.745122, 49.548431], [-115.745808, 49.548485], [-115.750696, 49.548583], [-115.752343, 49.54873], [-115.753694, 49.548963], [-115.754522, 49.549164], [-115.755948, 49.549612], [-115.756681, 49.549901], [-115.758306, 49.550714], [-115.759637, 49.551563], [-115.753554, 49.551595], [-115.755063, 49.553067], [-115.755419, 49.553627], [-115.755575, 49.554164], [-115.755551, 49.554979], [-115.754652, 49.559021], [-115.760466, 49.558965], [-115.760052, 49.563062], [-115.763887, 49.563218], [-115.763842, 49.565627], [-115.767556, 49.564267], [-115.767855, 49.564788], [-115.768134, 49.565059], [-115.768465, 49.565263], [-115.769344, 49.565646], [-115.769529, 49.565779], [-115.769802, 49.566141], [-115.774808, 49.566135], [-115.774969, 49.569771], [-115.774947, 49.573346], [-115.774803, 49.573517], [-115.774894, 49.573619], [-115.774829, 49.576321], [-115.781826, 49.576834], [-115.780956, 49.580427], [-115.781918, 49.58064], [-115.782659, 49.580959], [-115.78324, 49.581079], [-115.785483, 49.582275], [-115.785755, 49.582971], [-115.785202, 49.583505], [-115.785182, 49.585868], [-115.78539, 49.586357], [-115.785724, 49.586872], [-115.786184, 49.58731], [-115.786633, 49.587602], [-115.787506, 49.588052], [-115.788657, 49.588505], [-115.789667, 49.588506], [-115.790219, 49.588398], [-115.790374, 49.588136], [-115.790386, 49.587868], [-115.790945, 49.587772], [-115.791476, 49.587545], [-115.792727, 49.586793], [-115.793122, 49.586482], [-115.794318, 49.585109], [-115.794894, 49.58471], [-115.795413, 49.58387], [-115.796465, 49.582712], [-115.797227, 49.582144], [-115.798358, 49.58167], [-115.799123, 49.58157], [-115.800473, 49.581728], [-115.80209, 49.581808], [-115.802825, 49.581788], [-115.804157, 49.581577], [-115.805461, 49.581473], [-115.807466, 49.581486], [-115.808312, 49.581378], [-115.809733, 49.581042]]], [[[-115.778142, 49.623656], [-115.778327, 49.624088], [-115.778341, 49.624308], [-115.782458, 49.625351], [-115.784744, 49.626035], [-115.786847, 49.62658], [-115.786602, 49.61976], [-115.788739, 49.619877], [-115.789238, 49.619866], [-115.789752, 49.619791], [-115.789841, 49.619707], [-115.790272, 49.619691], [-115.790651, 49.615628], [-115.790343, 49.612396], [-115.790473, 49.603651], [-115.785868, 49.603639], [-115.786001, 49.595758], [-115.7775, 49.595781], [-115.777619, 49.596644], [-115.777537, 49.596795], [-115.777997, 49.613981], [-115.778142, 49.623656]]]]}, "properties": {"name": "Cranbrook", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Cranbrook", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901022", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.994592, 49.728796], [-116.000845, 49.729807], [-116.00274, 49.732009], [-116.004583, 49.727942], [-116.008266, 49.724778], [-116.0114, 49.725858], [-116.014691, 49.722698], [-116.014153, 49.721827], [-116.015048, 49.720794], [-116.016565, 49.72037], [-116.017322, 49.716449], [-116.016632, 49.716209], [-116.016629, 49.71444], [-116.016717, 49.714226], [-116.017694, 49.713848], [-116.01719, 49.71353], [-116.01585, 49.713519], [-116.015424, 49.713417], [-116.015201, 49.713505], [-116.014568, 49.714226], [-116.013568, 49.713705], [-116.015092, 49.713217], [-116.009797, 49.705882], [-116.007602, 49.70655], [-116.006998, 49.703994], [-116.005233, 49.704162], [-116.004516, 49.697247], [-116.007923, 49.697603], [-116.008063, 49.695536], [-116.014562, 49.696617], [-116.012782, 49.697199], [-116.017243, 49.700347], [-116.021742, 49.697846], [-116.020991, 49.697202], [-116.025418, 49.698346], [-116.025361, 49.700783], [-116.028556, 49.701194], [-116.030068, 49.69698], [-116.05146, 49.700787], [-116.057667, 49.68479], [-116.049554, 49.683595], [-116.034482, 49.681065], [-116.033965, 49.679111], [-116.033444, 49.679149], [-116.032087, 49.675356], [-116.028697, 49.675716], [-116.028573, 49.673997], [-116.0283, 49.671858], [-116.02218, 49.671891], [-116.022151, 49.672478], [-116.021195, 49.672601], [-116.021061, 49.67002], [-116.021882, 49.669011], [-116.022068, 49.670894], [-116.02763, 49.671297], [-116.028569, 49.667067], [-116.027376, 49.666963], [-116.027718, 49.653866], [-116.027703, 49.644496], [-116.027821, 49.639217], [-116.011002, 49.639371], [-116.010844, 49.632186], [-116.000872, 49.631097], [-116.000382, 49.629907], [-115.999421, 49.629771], [-115.998994, 49.629948], [-115.997927, 49.629946], [-115.996947, 49.629771], [-115.995942, 49.629257], [-115.995089, 49.629021], [-115.993215, 49.628912], [-115.992059, 49.628937], [-115.990838, 49.629172], [-115.990242, 49.629424], [-115.989855, 49.629713], [-115.989619, 49.630124], [-115.989516, 49.630716], [-115.989551, 49.631012], [-115.989814, 49.631361], [-115.990896, 49.631899], [-115.991535, 49.632339], [-115.991596, 49.632687], [-115.991509, 49.632875], [-115.99129, 49.632994], [-115.990886, 49.633056], [-115.989414, 49.632967], [-115.988585, 49.632836], [-115.98712, 49.632363], [-115.9848, 49.631346], [-115.983481, 49.631187], [-115.982125, 49.630904], [-115.980478, 49.630347], [-115.979555, 49.630181], [-115.978058, 49.630348], [-115.976491, 49.630764], [-115.974631, 49.631675], [-115.973884, 49.631908], [-115.973092, 49.631665], [-115.972703, 49.631015], [-115.972895, 49.629515], [-115.97226, 49.628113], [-115.970307, 49.62755], [-115.968028, 49.628327], [-115.965925, 49.629464], [-115.961533, 49.630347], [-115.960731, 49.630426], [-115.959957, 49.630237], [-115.959117, 49.629911], [-115.958365, 49.629814], [-115.957436, 49.629511], [-115.956407, 49.629042], [-115.95504, 49.628058], [-115.953725, 49.626706], [-115.953401, 49.626238], [-115.95311, 49.625435], [-115.952782, 49.624879], [-115.950957, 49.624223], [-115.950099, 49.623575], [-115.949769, 49.623099], [-115.948499, 49.622741], [-115.947403, 49.622575], [-115.946053, 49.622901], [-115.944329, 49.623163], [-115.942992, 49.622844], [-115.942854, 49.622743], [-115.942134, 49.623512], [-115.940679, 49.623534], [-115.929396, 49.623061], [-115.929477, 49.630416], [-115.933699, 49.630426], [-115.935659, 49.632771], [-115.936196, 49.633185], [-115.936851, 49.633559], [-115.937971, 49.63393], [-115.938727, 49.63407], [-115.941232, 49.634327], [-115.940619, 49.636494], [-115.94044, 49.637664], [-115.933921, 49.637526], [-115.929545, 49.637545], [-115.92936, 49.641302], [-115.911963, 49.641163], [-115.911893, 49.647072], [-115.911656, 49.652715], [-115.915047, 49.652765], [-115.914787, 49.657418], [-115.914624, 49.658039], [-115.914599, 49.659605], [-115.91472, 49.65984], [-115.914866, 49.661382], [-115.914899, 49.665214], [-115.915353, 49.665737], [-115.915058, 49.665923], [-115.915135, 49.666531], [-115.928492, 49.666424], [-115.928364, 49.673588], [-115.938414, 49.673704], [-115.939122, 49.680153], [-115.945302, 49.680218], [-115.945721, 49.687787], [-115.951527, 49.687658], [-115.954388, 49.685509], [-115.959849, 49.687668], [-115.963091, 49.684299], [-115.96634, 49.685072], [-115.968297, 49.685694], [-115.970174, 49.685209], [-115.970153, 49.684757], [-115.972517, 49.683815], [-115.973326, 49.685229], [-115.973461, 49.68571], [-115.976593, 49.685797], [-115.976535, 49.687551], [-115.974683, 49.688473], [-115.972764, 49.688464], [-115.972765, 49.688411], [-115.967536, 49.688409], [-115.967788, 49.69612], [-115.973546, 49.695878], [-115.975775, 49.695629], [-115.97691, 49.695672], [-115.976912, 49.695281], [-115.978888, 49.695335], [-115.979389, 49.69865], [-115.985136, 49.700781], [-115.983801, 49.702471], [-115.982097, 49.704178], [-115.992581, 49.708038], [-115.993322, 49.70884], [-115.990774, 49.712495], [-115.992186, 49.713187], [-115.99015, 49.715188], [-115.991584, 49.716068], [-115.990827, 49.716199], [-115.988086, 49.715113], [-115.981295, 49.720808], [-115.990587, 49.725569], [-115.994592, 49.728796]]]]}, "properties": {"name": "Kimberley", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kimberley", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901028", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.104255, 50.105675], [-115.11944, 50.105278], [-115.128016, 50.111147], [-115.137146, 50.109771], [-115.14268, 50.111961], [-115.183361, 50.10631], [-115.206411, 50.105214], [-115.22399, 50.081029], [-115.227281, 50.064202], [-115.215691, 50.058953], [-115.223096, 50.052434], [-115.245024, 50.041525], [-115.271308, 50.036571], [-115.250451, 50.01521], [-115.26876, 50.004499], [-115.238249, 49.995726], [-115.249273, 49.988193], [-115.250373, 49.976999], [-115.263168, 49.971542], [-115.281565, 49.972822], [-115.295964, 49.973602], [-115.31185, 49.967907], [-115.322131, 49.959747], [-115.326776, 49.953291], [-115.355306, 49.953229], [-115.351963, 49.94884], [-115.344653, 49.926963], [-115.343193, 49.909843], [-115.348103, 49.896629], [-115.357366, 49.884954], [-115.356325, 49.864125], [-115.344118, 49.8583], [-115.342352, 49.849929], [-115.362584, 49.840643], [-115.408418, 49.831937], [-115.416163, 49.830418], [-115.442793, 49.818727], [-115.458453, 49.827194], [-115.471369, 49.840233], [-115.488789, 49.831227], [-115.498969, 49.826063], [-115.520973, 49.8139], [-115.545744, 49.81424], [-115.553488, 49.814722], [-115.554925, 49.798057], [-115.570532, 49.786159], [-115.579506, 49.764669], [-115.594435, 49.763594], [-115.60125, 49.754211], [-115.595436, 49.74762], [-115.588421, 49.742024], [-115.59818, 49.723039], [-115.602702, 49.719597], [-115.60243, 49.717898], [-115.59893, 49.711351], [-115.589207, 49.697321], [-115.586787, 49.691851], [-115.586566, 49.68677], [-115.585256, 49.683895], [-115.611443, 49.683803], [-115.624675, 49.683475], [-115.665564, 49.683299], [-115.667898, 49.68316], [-115.669234, 49.661609], [-115.674968, 49.661915], [-115.675256, 49.661984], [-115.679956, 49.661947], [-115.680877, 49.661891], [-115.682178, 49.661648], [-115.683205, 49.661729], [-115.683616, 49.660873], [-115.683902, 49.66049], [-115.684387, 49.660029], [-115.684753, 49.659808], [-115.686399, 49.659322], [-115.687763, 49.659184], [-115.689742, 49.658713], [-115.690485, 49.658424], [-115.691265, 49.657704], [-115.691457, 49.657274], [-115.691872, 49.656794], [-115.692209, 49.656113], [-115.692315, 49.6558], [-115.692249, 49.655152], [-115.691946, 49.654608], [-115.691462, 49.654046], [-115.690917, 49.653634], [-115.689607, 49.6529], [-115.688151, 49.652425], [-115.687364, 49.652381], [-115.686057, 49.652563], [-115.685363, 49.652564], [-115.684413, 49.652319], [-115.682662, 49.65203], [-115.681412, 49.651629], [-115.679991, 49.651388], [-115.67674, 49.651251], [-115.67077, 49.651174], [-115.668249, 49.650677], [-115.667208, 49.650261], [-115.666406, 49.649667], [-115.665961, 49.649212], [-115.665573, 49.648263], [-115.665274, 49.647054], [-115.664722, 49.645896], [-115.664162, 49.64509], [-115.662124, 49.642664], [-115.661543, 49.642109], [-115.660553, 49.641351], [-115.659866, 49.640624], [-115.65892, 49.639308], [-115.658564, 49.638611], [-115.658358, 49.638033], [-115.658444, 49.636919], [-115.658526, 49.636515], [-115.659524, 49.633981], [-115.659633, 49.633532], [-115.659644, 49.632607], [-115.659579, 49.631922], [-115.659133, 49.631017], [-115.658691, 49.630534], [-115.658521, 49.63011], [-115.657496, 49.629604], [-115.656585, 49.629045], [-115.655967, 49.628867], [-115.654101, 49.628143], [-115.653662, 49.628004], [-115.652464, 49.627773], [-115.651352, 49.627445], [-115.649953, 49.626952], [-115.649832, 49.626861], [-115.647701, 49.626535], [-115.647471, 49.627172], [-115.641136, 49.626371], [-115.637811, 49.625138], [-115.635519, 49.623624], [-115.633681, 49.622543], [-115.633246, 49.621841], [-115.632849, 49.620876], [-115.633296, 49.619625], [-115.634197, 49.618739], [-115.635107, 49.61833], [-115.635946, 49.617453], [-115.636833, 49.617803], [-115.637233, 49.61788], [-115.637564, 49.617866], [-115.637717, 49.617823], [-115.637875, 49.617689], [-115.638027, 49.617682], [-115.638162, 49.617792], [-115.638439, 49.617832], [-115.639009, 49.617676], [-115.639569, 49.61744], [-115.64042, 49.617243], [-115.641164, 49.616919], [-115.64166, 49.616439], [-115.641893, 49.616054], [-115.641156, 49.614697], [-115.641329, 49.614402], [-115.641807, 49.614183], [-115.642485, 49.614181], [-115.643719, 49.614602], [-115.644005, 49.614821], [-115.643945, 49.61544], [-115.643995, 49.615657], [-115.644551, 49.616023], [-115.64506, 49.616199], [-115.645984, 49.616309], [-115.646835, 49.61658], [-115.64733, 49.61665], [-115.64855, 49.617139], [-115.649462, 49.617205], [-115.649809, 49.61711], [-115.650881, 49.61643], [-115.651822, 49.615398], [-115.652443, 49.615036], [-115.653044, 49.614782], [-115.653296, 49.614713], [-115.653682, 49.614694], [-115.654744, 49.614892], [-115.654671, 49.615026], [-115.654776, 49.61527], [-115.654966, 49.615406], [-115.655311, 49.615448], [-115.656449, 49.615352], [-115.657909, 49.615099], [-115.658215, 49.61503], [-115.658946, 49.614626], [-115.659612, 49.614049], [-115.66015, 49.613192], [-115.660344, 49.613103], [-115.660793, 49.612965], [-115.661806, 49.612833], [-115.663189, 49.612831], [-115.663913, 49.612695], [-115.664576, 49.61282], [-115.664778, 49.61294], [-115.664924, 49.613166], [-115.665352, 49.61326], [-115.665824, 49.613707], [-115.665943, 49.613907], [-115.666269, 49.614153], [-115.666373, 49.614413], [-115.666076, 49.614644], [-115.666205, 49.614935], [-115.666132, 49.61514], [-115.666158, 49.61568], [-115.666238, 49.615816], [-115.666512, 49.615919], [-115.666805, 49.616831], [-115.667121, 49.617392], [-115.667072, 49.617883], [-115.671241, 49.618185], [-115.672604, 49.618121], [-115.674038, 49.617085], [-115.675182, 49.616658], [-115.67738, 49.617206], [-115.678433, 49.617592], [-115.679278, 49.617745], [-115.679926, 49.618038], [-115.680513, 49.61802], [-115.681246, 49.617877], [-115.681712, 49.617587], [-115.683127, 49.617181], [-115.683751, 49.616846], [-115.683828, 49.616386], [-115.684881, 49.614697], [-115.686282, 49.614107], [-115.687145, 49.614038], [-115.688238, 49.613408], [-115.689451, 49.613129], [-115.690057, 49.612383], [-115.690733, 49.611977], [-115.691236, 49.611793], [-115.692193, 49.611767], [-115.692959, 49.611534], [-115.694306, 49.611954], [-115.696303, 49.612319], [-115.696354, 49.612454], [-115.696504, 49.612518], [-115.69679, 49.613286], [-115.697453, 49.61377], [-115.697755, 49.613908], [-115.698195, 49.614022], [-115.699456, 49.613945], [-115.69987, 49.613809], [-115.699335, 49.612538], [-115.700042, 49.61197], [-115.700443, 49.61183], [-115.701356, 49.611656], [-115.703377, 49.61143], [-115.705833, 49.610155], [-115.706908, 49.608372], [-115.706658, 49.607418], [-115.707546, 49.607002], [-115.708072, 49.605938], [-115.708135, 49.605138], [-115.708069, 49.605002], [-115.707743, 49.604738], [-115.70776, 49.604612], [-115.708489, 49.604863], [-115.708636, 49.605027], [-115.709838, 49.605085], [-115.710767, 49.605068], [-115.711143, 49.604947], [-115.711553, 49.604051], [-115.711127, 49.603434], [-115.710512, 49.60315], [-115.710283, 49.602895], [-115.71029, 49.602688], [-115.710459, 49.602546], [-115.710417, 49.60206], [-115.710474, 49.601979], [-115.710216, 49.601805], [-115.710033, 49.601399], [-115.710208, 49.601067], [-115.710711, 49.600885], [-115.71174, 49.60069], [-115.713889, 49.600525], [-115.714206, 49.600573], [-115.714956, 49.601003], [-115.71534, 49.601143], [-115.715946, 49.601267], [-115.716165, 49.601376], [-115.716402, 49.601262], [-115.717054, 49.601198], [-115.71803, 49.600921], [-115.718477, 49.600755], [-115.718746, 49.600579], [-115.719216, 49.599999], [-115.719292, 49.59982], [-115.71929, 49.599307], [-115.719244, 49.598974], [-115.718904, 49.598215], [-115.718454, 49.59793], [-115.718131, 49.597594], [-115.718102, 49.597117], [-115.718217, 49.596966], [-115.718415, 49.59686], [-115.71896, 49.596641], [-115.719948, 49.596373], [-115.720323, 49.596332], [-115.720696, 49.596363], [-115.721274, 49.596487], [-115.722194, 49.596802], [-115.722972, 49.597692], [-115.723453, 49.597797], [-115.723815, 49.597765], [-115.724725, 49.597352], [-115.72531, 49.597215], [-115.725976, 49.597141], [-115.726469, 49.596292], [-115.727316, 49.595608], [-115.72796, 49.595328], [-115.730475, 49.593916], [-115.732211, 49.593162], [-115.734481, 49.592575], [-115.73584, 49.592418], [-115.736852, 49.592385], [-115.739115, 49.592049], [-115.739785, 49.591858], [-115.740346, 49.591568], [-115.741029, 49.591324], [-115.741698, 49.590648], [-115.742513, 49.590152], [-115.744189, 49.589533], [-115.746446, 49.588963], [-115.747639, 49.588788], [-115.749343, 49.588715], [-115.750959, 49.588905], [-115.751674, 49.588912], [-115.751553, 49.5896], [-115.751604, 49.589621], [-115.752317, 49.589836], [-115.752951, 49.589942], [-115.753517, 49.589993], [-115.754569, 49.589977], [-115.75457, 49.588621], [-115.754204, 49.587053], [-115.754381, 49.585716], [-115.754229, 49.585492], [-115.754047, 49.584911], [-115.752718, 49.585117], [-115.752435, 49.584632], [-115.752958, 49.58456], [-115.752484, 49.583036], [-115.750167, 49.583661], [-115.750767, 49.581569], [-115.758469, 49.58144], [-115.758479, 49.580715], [-115.769818, 49.580421], [-115.77001, 49.577035], [-115.774837, 49.577477], [-115.774894, 49.573619], [-115.774803, 49.573517], [-115.774947, 49.573346], [-115.774969, 49.569771], [-115.774808, 49.566135], [-115.769802, 49.566141], [-115.769529, 49.565779], [-115.769344, 49.565646], [-115.768465, 49.565263], [-115.768134, 49.565059], [-115.767855, 49.564788], [-115.767556, 49.564267], [-115.763842, 49.565627], [-115.763887, 49.563218], [-115.760052, 49.563062], [-115.760466, 49.558965], [-115.754652, 49.559021], [-115.755551, 49.554979], [-115.755575, 49.554164], [-115.755419, 49.553627], [-115.755063, 49.553067], [-115.753554, 49.551595], [-115.759637, 49.551563], [-115.758306, 49.550714], [-115.756681, 49.549901], [-115.755948, 49.549612], [-115.754522, 49.549164], [-115.753694, 49.548963], [-115.752343, 49.54873], [-115.750696, 49.548583], [-115.745808, 49.548485], [-115.745122, 49.548431], [-115.744518, 49.548337], [-115.743933, 49.548161], [-115.743364, 49.547871], [-115.742775, 49.547276], [-115.742552, 49.546882], [-115.741733, 49.544699], [-115.741426, 49.544151], [-115.741082, 49.543692], [-115.738902, 49.541344], [-115.738478, 49.540429], [-115.738473, 49.540199], [-115.738727, 49.539853], [-115.738927, 49.539238], [-115.739812, 49.5383], [-115.740963, 49.537266], [-115.739174, 49.537364], [-115.737678, 49.537309], [-115.728695, 49.537573], [-115.728135, 49.530694], [-115.728186, 49.523687], [-115.73881, 49.523681], [-115.735074, 49.521315], [-115.735444, 49.520914], [-115.735145, 49.520689], [-115.737955, 49.517356], [-115.738471, 49.516928], [-115.739157, 49.516617], [-115.739158, 49.516425], [-115.738738, 49.516424], [-115.738744, 49.510525], [-115.734897, 49.510216], [-115.736986, 49.508226], [-115.737341, 49.508046], [-115.737332, 49.507356], [-115.736793, 49.506756], [-115.736442, 49.506474], [-115.732664, 49.506445], [-115.732704, 49.501897], [-115.731848, 49.501863], [-115.731789, 49.499993], [-115.739173, 49.500022], [-115.739176, 49.497959], [-115.742517, 49.498038], [-115.742481, 49.500027], [-115.743591, 49.499977], [-115.743774, 49.501948], [-115.749724, 49.50199], [-115.749734, 49.500068], [-115.751403, 49.500058], [-115.7513, 49.496266], [-115.748406, 49.496251], [-115.748388, 49.494234], [-115.7513, 49.49421], [-115.751301, 49.492462], [-115.759804, 49.492485], [-115.759826, 49.490446], [-115.756847, 49.490441], [-115.756807, 49.483174], [-115.762592, 49.483218], [-115.762526, 49.485405], [-115.762682, 49.490171], [-115.768466, 49.490215], [-115.770792, 49.490454], [-115.770801, 49.488712], [-115.773647, 49.488722], [-115.773627, 49.490578], [-115.785012, 49.490621], [-115.785088, 49.497889], [-115.796233, 49.497877], [-115.796077, 49.501479], [-115.796067, 49.512558], [-115.79599, 49.512762], [-115.796074, 49.513407], [-115.794764, 49.513346], [-115.794294, 49.513447], [-115.793145, 49.51347], [-115.787891, 49.513468], [-115.787518, 49.513395], [-115.783345, 49.513393], [-115.78327, 49.516681], [-115.780864, 49.51807], [-115.778404, 49.516304], [-115.779264, 49.515745], [-115.778675, 49.515215], [-115.777926, 49.514893], [-115.776854, 49.514557], [-115.775533, 49.515307], [-115.774746, 49.51474], [-115.773027, 49.515555], [-115.771418, 49.516774], [-115.77055, 49.517243], [-115.771028, 49.51753], [-115.770404, 49.518046], [-115.773226, 49.519447], [-115.773844, 49.519845], [-115.776095, 49.521006], [-115.776285, 49.522151], [-115.777748, 49.523029], [-115.780649, 49.524351], [-115.78342, 49.524298], [-115.783216, 49.538308], [-115.775229, 49.538601], [-115.774978, 49.540324], [-115.774935, 49.541485], [-115.775017, 49.543111], [-115.775, 49.54632], [-115.774411, 49.54626], [-115.77119, 49.54623], [-115.77118, 49.551835], [-115.771067, 49.552124], [-115.772576, 49.551644], [-115.786003, 49.551616], [-115.785952, 49.564581], [-115.78478, 49.564186], [-115.78201, 49.562803], [-115.774924, 49.559806], [-115.774926, 49.558901], [-115.772785, 49.558901], [-115.772701, 49.558866], [-115.77114, 49.558898], [-115.772376, 49.559975], [-115.77298, 49.560633], [-115.774761, 49.562936], [-115.775516, 49.563685], [-115.776283, 49.564317], [-115.777585, 49.565187], [-115.786246, 49.570214], [-115.78682, 49.570057], [-115.787859, 49.570077], [-115.790718, 49.569906], [-115.791546, 49.569913], [-115.79221, 49.56998], [-115.797167, 49.571212], [-115.797964, 49.571324], [-115.800084, 49.571397], [-115.800782, 49.571326], [-115.801827, 49.571057], [-115.802114, 49.571029], [-115.803964, 49.571344], [-115.805083, 49.571619], [-115.805816, 49.571874], [-115.80654, 49.572209], [-115.806984, 49.572489], [-115.808486, 49.573708], [-115.812813, 49.576246], [-115.813343, 49.576634], [-115.814645, 49.577951], [-115.815167, 49.578342], [-115.815548, 49.5795], [-115.815629, 49.580333], [-115.816087, 49.580861], [-115.81641, 49.581101], [-115.816796, 49.581279], [-115.818531, 49.581652], [-115.819524, 49.582174], [-115.819523, 49.584495], [-115.818289, 49.585897], [-115.817795, 49.586296], [-115.817224, 49.586444], [-115.816172, 49.586468], [-115.815799, 49.586411], [-115.814618, 49.586021], [-115.813966, 49.585601], [-115.813406, 49.584668], [-115.812992, 49.583513], [-115.812224, 49.58212], [-115.811819, 49.58171], [-115.810299, 49.581064], [-115.809733, 49.581042], [-115.808312, 49.581378], [-115.807466, 49.581486], [-115.805461, 49.581473], [-115.804157, 49.581577], [-115.802825, 49.581788], [-115.80209, 49.581808], [-115.800473, 49.581728], [-115.799123, 49.58157], [-115.798358, 49.58167], [-115.797227, 49.582144], [-115.796465, 49.582712], [-115.795413, 49.58387], [-115.794894, 49.58471], [-115.794318, 49.585109], [-115.793348, 49.586268], [-115.792727, 49.586793], [-115.791196, 49.587676], [-115.790945, 49.587772], [-115.790386, 49.587868], [-115.790374, 49.588136], [-115.790075, 49.588988], [-115.790126, 49.595805], [-115.790476, 49.603651], [-115.790343, 49.612396], [-115.790651, 49.615628], [-115.790272, 49.619691], [-115.790257, 49.621109], [-115.790025, 49.621532], [-115.790262, 49.62204], [-115.790162, 49.623837], [-115.790243, 49.62448], [-115.79012, 49.624967], [-115.790264, 49.625294], [-115.790228, 49.626721], [-115.790017, 49.627406], [-115.790178, 49.631851], [-115.790106, 49.63195], [-115.790166, 49.636291], [-115.790074, 49.637336], [-115.790166, 49.637391], [-115.790216, 49.638391], [-115.790153, 49.638466], [-115.790058, 49.643877], [-115.790167, 49.64565], [-115.790131, 49.651729], [-115.790159, 49.652261], [-115.790303, 49.652551], [-115.790017, 49.652863], [-115.790234, 49.653568], [-115.790155, 49.653937], [-115.79015, 49.661297], [-115.810238, 49.661218], [-115.813101, 49.661259], [-115.813548, 49.676488], [-115.835447, 49.676605], [-115.861916, 49.676576], [-115.862649, 49.651115], [-115.870449, 49.651132], [-115.870473, 49.648527], [-115.878072, 49.648651], [-115.8787, 49.635234], [-115.87883, 49.629611], [-115.879122, 49.622864], [-115.879901, 49.61108], [-115.880119, 49.605234], [-115.880048, 49.604475], [-115.880096, 49.603172], [-115.88109, 49.602089], [-115.881147, 49.60072], [-115.881656, 49.600798], [-115.881917, 49.600917], [-115.883656, 49.600996], [-115.885429, 49.601189], [-115.886261, 49.601407], [-115.887416, 49.601529], [-115.889244, 49.600717], [-115.89004, 49.600296], [-115.891423, 49.59991], [-115.891579, 49.599387], [-115.891783, 49.599186], [-115.892412, 49.598847], [-115.894108, 49.598302], [-115.894934, 49.598201], [-115.896153, 49.598493], [-115.89654, 49.598504], [-115.897562, 49.598994], [-115.89801, 49.59927], [-115.89867, 49.600034], [-115.900338, 49.600326], [-115.902144, 49.60041], [-115.903037, 49.600606], [-115.903801, 49.600902], [-115.905634, 49.600932], [-115.905685, 49.600972], [-115.905849, 49.598512], [-115.906002, 49.593971], [-115.922629, 49.593988], [-115.951029, 49.593814], [-115.950815, 49.591394], [-115.98276, 49.59116], [-115.992595, 49.591425], [-115.993465, 49.59125], [-116.071505, 49.590065], [-116.073924, 49.587628], [-116.075512, 49.581877], [-116.071725, 49.579553], [-116.071604, 49.575271], [-116.07543, 49.574492], [-116.078751, 49.572275], [-116.090431, 49.553604], [-116.090418, 49.553314], [-116.094924, 49.537617], [-116.098521, 49.533024], [-116.104282, 49.525984], [-116.109846, 49.520046], [-116.117286, 49.515267], [-116.121284, 49.508848], [-116.125396, 49.505792], [-116.126257, 49.505574], [-116.128055, 49.504112], [-116.128013, 49.500172], [-116.132067, 49.493634], [-116.133727, 49.490795], [-116.140818, 49.48894], [-116.147562, 49.483808], [-116.153094, 49.482741], [-116.163724, 49.47939], [-116.166716, 49.47721], [-116.163438, 49.474005], [-116.164679, 49.452699], [-116.170064, 49.44348], [-116.17319, 49.440125], [-116.175067, 49.435858], [-116.182271, 49.426647], [-116.18958, 49.424973], [-116.199167, 49.421217], [-116.198976, 49.415336], [-116.21051, 49.413454], [-116.209662, 49.404605], [-116.198248, 49.399104], [-116.188617, 49.39284], [-116.182918, 49.390829], [-116.181965, 49.379645], [-116.181172, 49.379609], [-116.17905, 49.376036], [-116.166824, 49.368401], [-116.164677, 49.35862], [-116.165335, 49.352282], [-116.171415, 49.350095], [-116.185218, 49.337016], [-116.185726, 49.32913], [-116.188957, 49.321934], [-116.183404, 49.314402], [-116.176119, 49.307122], [-116.172635, 49.297899], [-116.171688, 49.296529], [-116.171093, 49.293546], [-116.168002, 49.28926], [-116.164058, 49.28567], [-116.158471, 49.283352], [-116.149826, 49.283034], [-116.144712, 49.284128], [-116.13721, 49.280636], [-116.130845, 49.278448], [-116.126239, 49.282791], [-116.117999, 49.286957], [-116.115497, 49.288282], [-116.107714, 49.287717], [-116.10217, 49.281822], [-116.095125, 49.279464], [-116.088719, 49.271487], [-116.079307, 49.262751], [-116.072624, 49.258643], [-116.077846, 49.252858], [-116.078223, 49.246308], [-116.071179, 49.24091], [-116.070073, 49.232014], [-116.076715, 49.223891], [-116.077347, 49.22166], [-116.085931, 49.208544], [-116.094808, 49.202024], [-116.100767, 49.198449], [-116.064345, 49.19768], [-116.050147, 49.197779], [-116.028473, 49.197549], [-116.028109, 49.188829], [-116.02811, 49.138327], [-116.032146, 49.066162], [-116.032571, 49.063605], [-116.032462, 49.058757], [-116.035607, 49.054842], [-116.024814, 49.044951], [-116.027065, 49.000916], [-115.519996, 49.000709], [-115.523751, 49.003801], [-115.529232, 49.009282], [-115.532521, 49.014246], [-115.534687, 49.021427], [-115.531379, 49.029644], [-115.535511, 49.037461], [-115.533053, 49.043561], [-115.546259, 49.050762], [-115.547342, 49.069066], [-115.554845, 49.079995], [-115.554282, 49.08993], [-115.550582, 49.100543], [-115.552322, 49.114339], [-115.556805, 49.119758], [-115.569777, 49.124937], [-115.578986, 49.130302], [-115.587914, 49.133337], [-115.59074, 49.142577], [-115.595515, 49.153824], [-115.591678, 49.155885], [-115.601544, 49.162556], [-115.608499, 49.16928], [-115.612908, 49.180116], [-115.618707, 49.188077], [-115.617892, 49.20193], [-115.618849, 49.204539], [-115.620526, 49.211245], [-115.633745, 49.212604], [-115.651122, 49.209912], [-115.663359, 49.20629], [-115.67182, 49.196621], [-115.687664, 49.191599], [-115.699483, 49.197594], [-115.703067, 49.207375], [-115.718187, 49.208082], [-115.727501, 49.203372], [-115.732161, 49.196742], [-115.735579, 49.192139], [-115.74319, 49.184453], [-115.767701, 49.177589], [-115.780102, 49.174653], [-115.78061, 49.178631], [-115.780658, 49.183572], [-115.784494, 49.194986], [-115.776522, 49.205517], [-115.763555, 49.211324], [-115.75996, 49.214302], [-115.759284, 49.214961], [-115.75674, 49.218391], [-115.757161, 49.227143], [-115.755502, 49.235282], [-115.757424, 49.241126], [-115.760077, 49.247185], [-115.761217, 49.248756], [-115.76276, 49.24967], [-115.762676, 49.249801], [-115.762979, 49.249803], [-115.763481, 49.250105], [-115.764577, 49.252531], [-115.764831, 49.253102], [-115.764848, 49.254589], [-115.764786, 49.254937], [-115.765595, 49.25574], [-115.766194, 49.259319], [-115.76634, 49.261447], [-115.765744, 49.263144], [-115.764184, 49.265554], [-115.762182, 49.268387], [-115.759049, 49.270131], [-115.754075, 49.271574], [-115.749209, 49.27283], [-115.742187, 49.270504], [-115.737585, 49.269086], [-115.733991, 49.268174], [-115.730914, 49.268508], [-115.72751, 49.269079], [-115.726324, 49.270611], [-115.726544, 49.273313], [-115.728103, 49.275516], [-115.728004, 49.277687], [-115.723972, 49.280718], [-115.721974, 49.282459], [-115.71844, 49.283982], [-115.715274, 49.284951], [-115.711709, 49.285256], [-115.708999, 49.285035], [-115.706339, 49.283728], [-115.703716, 49.282871], [-115.700969, 49.2822], [-115.698658, 49.282641], [-115.69634, 49.283851], [-115.693298, 49.284634], [-115.689479, 49.286076], [-115.686958, 49.287337], [-115.683712, 49.288172], [-115.679328, 49.289452], [-115.677661, 49.290187], [-115.665486, 49.293316], [-115.663245, 49.294584], [-115.663033, 49.294582], [-115.662573, 49.294784], [-115.660954, 49.295558], [-115.660643, 49.295825], [-115.660218, 49.295766], [-115.659652, 49.295823], [-115.658756, 49.296326], [-115.657707, 49.296405], [-115.656451, 49.295996], [-115.655953, 49.29608], [-115.655671, 49.296293], [-115.655193, 49.296135], [-115.655051, 49.296287], [-115.654929, 49.297177], [-115.654632, 49.297435], [-115.654556, 49.297677], [-115.653468, 49.297674], [-115.653167, 49.298103], [-115.653234, 49.298617], [-115.65303, 49.299011], [-115.652559, 49.299105], [-115.652191, 49.298948], [-115.652021, 49.298039], [-115.651641, 49.297828], [-115.651174, 49.297796], [-115.65102, 49.297866], [-115.650985, 49.298127], [-115.650582, 49.298248], [-115.649996, 49.298008], [-115.649674, 49.298193], [-115.649598, 49.298463], [-115.650419, 49.299508], [-115.650471, 49.300076], [-115.650345, 49.300147], [-115.649974, 49.300134], [-115.64859, 49.29984], [-115.647689, 49.300046], [-115.647577, 49.301035], [-115.646845, 49.302063], [-115.646112, 49.302649], [-115.645755, 49.304491], [-115.645037, 49.305041], [-115.644774, 49.305083], [-115.644421, 49.304872], [-115.644037, 49.304832], [-115.64356, 49.305115], [-115.643049, 49.305181], [-115.641933, 49.305673], [-115.641678, 49.305913], [-115.640857, 49.30621], [-115.640671, 49.306901], [-115.639519, 49.307204], [-115.638484, 49.307759], [-115.637256, 49.307818], [-115.636392, 49.308627], [-115.635133, 49.308829], [-115.634618, 49.309004], [-115.63422, 49.309422], [-115.634188, 49.310034], [-115.633795, 49.310291], [-115.632457, 49.310348], [-115.631371, 49.309752], [-115.630849, 49.309692], [-115.629637, 49.310164], [-115.628639, 49.310378], [-115.628135, 49.31067], [-115.627909, 49.311297], [-115.627864, 49.312801], [-115.627587, 49.313329], [-115.627576, 49.313707], [-115.628411, 49.315004], [-115.627944, 49.315368], [-115.627506, 49.316244], [-115.626806, 49.317143], [-115.626137, 49.317404], [-115.625797, 49.317732], [-115.625469, 49.317683], [-115.624974, 49.317696], [-115.624047, 49.317974], [-115.623824, 49.318098], [-115.623274, 49.318659], [-115.623291, 49.31911], [-115.623471, 49.319653], [-115.623437, 49.319914], [-115.62325, 49.320236], [-115.621655, 49.321381], [-115.620909, 49.322111], [-115.619712, 49.32272], [-115.619334, 49.322986], [-115.618626, 49.323181], [-115.618233, 49.323054], [-115.617612, 49.323109], [-115.617207, 49.323284], [-115.616303, 49.324073], [-115.615112, 49.324301], [-115.613718, 49.324869], [-115.613094, 49.325014], [-115.612614, 49.324927], [-115.611585, 49.324284], [-115.609811, 49.323704], [-115.608204, 49.323522], [-115.605893, 49.323503], [-115.604975, 49.323348], [-115.60265, 49.323841], [-115.60116, 49.323967], [-115.599744, 49.323923], [-115.599405, 49.323739], [-115.597971, 49.322399], [-115.597161, 49.322335], [-115.596236, 49.322432], [-115.595845, 49.322643], [-115.595796, 49.322903], [-115.596317, 49.323953], [-115.596286, 49.324546], [-115.595928, 49.325046], [-115.594979, 49.32552], [-115.594821, 49.325752], [-115.594977, 49.326059], [-115.595767, 49.326833], [-115.595764, 49.326968], [-115.595583, 49.327011], [-115.595283, 49.326935], [-115.595531, 49.32746], [-115.595518, 49.327981], [-115.596141, 49.328932], [-115.596891, 49.329749], [-115.596813, 49.33009], [-115.596557, 49.330428], [-115.595468, 49.330469], [-115.594302, 49.330329], [-115.592401, 49.330396], [-115.590824, 49.330179], [-115.589334, 49.329819], [-115.587751, 49.329808], [-115.587602, 49.329707], [-115.587453, 49.329157], [-115.586993, 49.328864], [-115.585903, 49.328463], [-115.585334, 49.328151], [-115.584293, 49.327985], [-115.583352, 49.328153], [-115.582836, 49.327904], [-115.582409, 49.327917], [-115.581992, 49.328056], [-115.581618, 49.3286], [-115.58098, 49.328772], [-115.580254, 49.329114], [-115.580569, 49.329639], [-115.580531, 49.330026], [-115.579569, 49.330428], [-115.579312, 49.330757], [-115.578862, 49.331076], [-115.57852, 49.331485], [-115.578521, 49.331935], [-115.579403, 49.332431], [-115.579423, 49.332692], [-115.57908, 49.3332], [-115.579087, 49.333443], [-115.579641, 49.334358], [-115.579971, 49.335387], [-115.580356, 49.335958], [-115.580948, 49.337511], [-115.581666, 49.338464], [-115.581847, 49.338915], [-115.582197, 49.340232], [-115.582083, 49.34041], [-115.582083, 49.341426], [-115.584636, 49.342249], [-115.586021, 49.342472], [-115.586535, 49.342784], [-115.586749, 49.343077], [-115.587905, 49.343238], [-115.594285, 49.345371], [-115.60474, 49.350228], [-115.614949, 49.356886], [-115.624131, 49.363119], [-115.624718, 49.363819], [-115.625655, 49.364297], [-115.626027, 49.364814], [-115.627626, 49.366245], [-115.628019, 49.366492], [-115.629128, 49.366748], [-115.629107, 49.366982], [-115.628783, 49.367257], [-115.628844, 49.367527], [-115.62958, 49.367824], [-115.629943, 49.368152], [-115.630704, 49.36852], [-115.631252, 49.369147], [-115.631296, 49.369526], [-115.632056, 49.371695], [-115.631018, 49.379193], [-115.628714, 49.383109], [-115.626297, 49.38648], [-115.623644, 49.393541], [-115.610072, 49.394006], [-115.610021, 49.393638], [-115.609939, 49.393597], [-115.609939, 49.390245], [-115.609816, 49.386718], [-115.605385, 49.386576], [-115.604504, 49.379775], [-115.600051, 49.379759], [-115.600419, 49.382775], [-115.599895, 49.383068], [-115.600563, 49.383815], [-115.600871, 49.38663], [-115.603056, 49.386682], [-115.604062, 49.387744], [-115.604655, 49.388256], [-115.605323, 49.393318], [-115.570571, 49.393501], [-115.544014, 49.393506], [-115.543768, 49.393169], [-115.54289, 49.392966], [-115.541937, 49.39341], [-115.541864, 49.393498], [-115.504905, 49.393452], [-115.498661, 49.393062], [-115.445597, 49.39158], [-115.443071, 49.391551], [-115.419068, 49.392137], [-115.413273, 49.391815], [-115.411394, 49.391837], [-115.407773, 49.391687], [-115.396237, 49.390113], [-115.375853, 49.390329], [-115.377123, 49.40073], [-115.373866, 49.401341], [-115.373892, 49.403078], [-115.374935, 49.413126], [-115.375442, 49.423198], [-115.375445, 49.427181], [-115.34865, 49.426498], [-115.319069, 49.42513], [-115.298616, 49.426292], [-115.284185, 49.426267], [-115.265954, 49.426489], [-115.26227, 49.42645], [-115.252543, 49.426154], [-115.207341, 49.427037], [-115.216224, 49.438769], [-115.224503, 49.444354], [-115.227418, 49.445863], [-115.239053, 49.452685], [-115.236917, 49.458383], [-115.243112, 49.464817], [-115.250681, 49.466879], [-115.249911, 49.474346], [-115.250803, 49.479448], [-115.249719, 49.484929], [-115.255446, 49.487243], [-115.258069, 49.487672], [-115.256184, 49.492494], [-115.243546, 49.499903], [-115.242193, 49.507796], [-115.234621, 49.513364], [-115.223151, 49.516822], [-115.212584, 49.515822], [-115.200529, 49.519195], [-115.197669, 49.520348], [-115.189718, 49.524084], [-115.185129, 49.526332], [-115.180498, 49.528961], [-115.176254, 49.526744], [-115.170793, 49.524119], [-115.161306, 49.521624], [-115.147113, 49.522722], [-115.137187, 49.528689], [-115.132541, 49.53619], [-115.127859, 49.546575], [-115.128454, 49.552976], [-115.131034, 49.559564], [-115.135271, 49.563559], [-115.137144, 49.568936], [-115.133715, 49.572902], [-115.127297, 49.576003], [-115.123303, 49.57592], [-115.092354, 49.575877], [-115.079064, 49.576733], [-115.070943, 49.580908], [-115.069723, 49.59073], [-115.065969, 49.602959], [-115.060531, 49.608411], [-115.057525, 49.610272], [-115.055286, 49.612691], [-115.044241, 49.614306], [-115.035829, 49.611885], [-115.028235, 49.603929], [-115.020816, 49.600802], [-115.013511, 49.601176], [-115.008196, 49.604942], [-115.004654, 49.613792], [-115.005998, 49.621994], [-115.01224, 49.633708], [-115.016638, 49.640231], [-115.018174, 49.656463], [-115.016534, 49.666452], [-115.01055, 49.67534], [-115.006812, 49.678821], [-114.983628, 49.687868], [-114.974664, 49.695891], [-114.974701, 49.703382], [-114.979757, 49.711014], [-114.987369, 49.719977], [-114.987183, 49.736295], [-114.987107, 49.763191], [-114.993694, 49.763275], [-115.006643, 49.761556], [-115.018952, 49.759651], [-115.023877, 49.760196], [-115.035091, 49.76132], [-115.058862, 49.765819], [-115.069548, 49.768718], [-115.085577, 49.77606], [-115.089407, 49.780481], [-115.091389, 49.798883], [-115.094851, 49.81469], [-115.098615, 49.83331], [-115.102498, 49.851005], [-115.100251, 49.855233], [-115.094017, 49.859879], [-115.086704, 49.861816], [-115.080694, 49.861483], [-115.074137, 49.862314], [-115.068382, 49.865693], [-115.067725, 49.871704], [-115.068162, 49.874807], [-115.072296, 49.890469], [-115.078237, 49.897144], [-115.087403, 49.901192], [-115.096512, 49.902162], [-115.108651, 49.902846], [-115.113533, 49.907145], [-115.113379, 49.912804], [-115.108467, 49.918498], [-115.104824, 49.924392], [-115.102544, 49.930348], [-115.101795, 49.94212], [-115.096819, 49.954825], [-115.090099, 49.965209], [-115.081725, 49.970154], [-115.067598, 49.970459], [-115.05662, 49.97101], [-115.055549, 49.979303], [-115.058371, 49.983426], [-115.072232, 50.005538], [-115.072592, 50.005838], [-115.076467, 50.013091], [-115.077393, 50.016206], [-115.07697, 50.021783], [-115.071131, 50.029307], [-115.066037, 50.031784], [-115.058366, 50.033079], [-115.051296, 50.033012], [-115.044251, 50.035364], [-115.038589, 50.037677], [-115.034186, 50.042108], [-115.029779, 50.04852], [-115.031933, 50.059514], [-115.026883, 50.070968], [-115.022193, 50.07872], [-115.024713, 50.097488], [-115.016355, 50.107577], [-115.009287, 50.11299], [-115.010884, 50.118334], [-115.016109, 50.119009], [-115.02765, 50.120093], [-115.036119, 50.122611], [-115.049917, 50.129223], [-115.048247, 50.125948], [-115.052057, 50.1179], [-115.060724, 50.114207], [-115.076714, 50.114253], [-115.090619, 50.109041], [-115.104255, 50.105675]], [[-115.611296, 49.554297], [-115.589152, 49.553712], [-115.589446, 49.538552], [-115.589589, 49.53575], [-115.600335, 49.535889], [-115.600536, 49.539376], [-115.605915, 49.53944], [-115.606122, 49.542995], [-115.611531, 49.543179], [-115.611296, 49.554297]], [[-115.570898, 49.488468], [-115.570881, 49.49504], [-115.562288, 49.494909], [-115.559961, 49.494969], [-115.559469, 49.492202], [-115.559699, 49.487942], [-115.559637, 49.48788], [-115.570898, 49.488468]]]]}, "properties": {"name": "East Kootenay C", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "East Kootenay C", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901035", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.605627, 50.176774], [-115.609136, 50.181402], [-115.615992, 50.186565], [-115.617707, 50.192373], [-115.61907, 50.198632], [-115.617942, 50.20552], [-115.618146, 50.206525], [-115.623784, 50.21171], [-115.638691, 50.21457], [-115.645426, 50.216839], [-115.647412, 50.217397], [-115.660188, 50.213405], [-115.668197, 50.196913], [-115.660213, 50.181813], [-115.658837, 50.178211], [-115.662023, 50.170573], [-115.661884, 50.170434], [-115.662109, 50.169354], [-115.66179, 50.168554], [-115.657918, 50.160498], [-115.657593, 50.156602], [-115.686114, 50.158187], [-115.687983, 50.153884], [-115.689102, 50.15046], [-115.701496, 50.146427], [-115.695995, 50.143523], [-115.696401, 50.142195], [-115.698836, 50.135981], [-115.708578, 50.133869], [-115.708025, 50.131878], [-115.707479, 50.131384], [-115.70777, 50.130963], [-115.706271, 50.125565], [-115.711281, 50.111586], [-115.711454, 50.111292], [-115.711599, 50.100303], [-115.712208, 50.090356], [-115.709733, 50.073359], [-115.702474, 50.058943], [-115.700324, 50.048858], [-115.706273, 50.035125], [-115.707298, 50.030755], [-115.706326, 50.027091], [-115.703291, 50.019455], [-115.702621, 50.015841], [-115.70198, 50.009681], [-115.70219, 50.001367], [-115.702347, 50.001131], [-115.704761, 50.00134], [-115.734362, 50.000739], [-115.794882, 49.999593], [-115.796988, 49.999483], [-115.801956, 49.999564], [-115.846138, 49.999148], [-115.846115, 49.999209], [-115.848767, 50.000207], [-115.850094, 50.003744], [-115.855811, 50.008139], [-115.862045, 50.013973], [-115.861848, 50.018315], [-115.872318, 50.025137], [-115.876231, 50.032965], [-115.870332, 50.0372], [-115.862853, 50.041835], [-115.858829, 50.049114], [-115.853216, 50.058751], [-115.852873, 50.065094], [-115.85578, 50.073739], [-115.871648, 50.07868], [-115.879308, 50.084157], [-115.898863, 50.090108], [-115.908666, 50.087194], [-115.922668, 50.087122], [-115.923847, 50.082099], [-115.923556, 50.076668], [-115.924844, 50.070831], [-115.927502, 50.064249], [-115.931195, 50.061333], [-115.928906, 50.055627], [-115.934622, 50.048369], [-115.937229, 50.047376], [-115.937827, 50.047216], [-115.943167, 50.04528], [-115.946101, 50.044341], [-115.96082, 50.047238], [-115.969325, 50.044475], [-115.975198, 50.040084], [-115.978424, 50.036738], [-115.977747, 50.0339], [-115.975095, 50.01722], [-115.977749, 50.011534], [-115.991536, 50.014012], [-115.993952, 50.018419], [-115.998112, 50.022388], [-116.006961, 50.018962], [-116.016112, 50.015621], [-116.01695, 50.012618], [-116.023069, 50.007055], [-116.041133, 50.008774], [-116.067312, 50.023648], [-116.080741, 50.028235], [-116.092718, 50.028363], [-116.105731, 50.026322], [-116.112991, 50.020297], [-116.124453, 50.020438], [-116.136881, 50.021595], [-116.145342, 50.018019], [-116.151371, 50.011733], [-116.157773, 50.004657], [-116.162393, 50.003919], [-116.168047, 50.004294], [-116.17704, 50.004551], [-116.189191, 50.006693], [-116.198956, 50.00692], [-116.208478, 50.006749], [-116.215059, 50.005498], [-116.222852, 50.004508], [-116.236402, 50.001788], [-116.240124, 49.999897], [-116.239744, 49.993884], [-116.241137, 49.989486], [-116.241672, 49.987041], [-116.24169, 49.983807], [-116.241296, 49.98022], [-116.241895, 49.977873], [-116.243595, 49.969187], [-116.248558, 49.963744], [-116.252137, 49.962465], [-116.260242, 49.960581], [-116.266266, 49.959009], [-116.269832, 49.957156], [-116.271671, 49.953448], [-116.273799, 49.948281], [-116.273708, 49.944614], [-116.275615, 49.943194], [-116.285028, 49.942579], [-116.288134, 49.942229], [-116.293303, 49.939033], [-116.295586, 49.936684], [-116.302439, 49.925558], [-116.310149, 49.926823], [-116.321764, 49.923352], [-116.334353, 49.931262], [-116.35566, 49.934862], [-116.39854, 49.936611], [-116.408466, 49.944037], [-116.426787, 49.963528], [-116.443116, 49.979287], [-116.451257, 49.965612], [-116.471882, 49.966238], [-116.498485, 49.977784], [-116.497433, 49.980964], [-116.510142, 49.984995], [-116.529261, 49.972751], [-116.546221, 49.962069], [-116.565569, 49.952982], [-116.578833, 49.954625], [-116.5839, 49.94884], [-116.584811, 49.929683], [-116.599798, 49.925295], [-116.620762, 49.909974], [-116.622544, 49.897261], [-116.645636, 49.882594], [-116.67674, 49.88229], [-116.69717, 49.874525], [-116.693256, 49.87006], [-116.684754, 49.860669], [-116.690958, 49.842765], [-116.683882, 49.824597], [-116.673594, 49.816845], [-116.685042, 49.811808], [-116.669215, 49.792852], [-116.658461, 49.781662], [-116.639464, 49.785139], [-116.63459, 49.777653], [-116.624377, 49.776909], [-116.623845, 49.763895], [-116.611139, 49.745252], [-116.597449, 49.732625], [-116.590924, 49.724891], [-116.607634, 49.715778], [-116.590578, 49.699372], [-116.594575, 49.694747], [-116.628801, 49.683873], [-116.657329, 49.667814], [-116.675393, 49.648295], [-116.677572, 49.633347], [-116.670704, 49.629628], [-116.648296, 49.630753], [-116.645363, 49.619761], [-116.65028, 49.61637], [-116.664015, 49.607332], [-116.689214, 49.572742], [-116.644647, 49.558722], [-116.625169, 49.538841], [-116.627399, 49.535145], [-116.644535, 49.502911], [-116.667354, 49.472215], [-116.632341, 49.458678], [-116.617791, 49.472105], [-116.595152, 49.477017], [-116.579579, 49.455198], [-116.563813, 49.460666], [-116.53498, 49.467139], [-116.509488, 49.478891], [-116.491755, 49.48965], [-116.475961, 49.493967], [-116.463919, 49.497032], [-116.459497, 49.505197], [-116.456241, 49.51822], [-116.450744, 49.5269], [-116.440233, 49.53245], [-116.423513, 49.53366], [-116.414792, 49.52977], [-116.411777, 49.526404], [-116.401955, 49.521814], [-116.395359, 49.519638], [-116.373477, 49.516337], [-116.362394, 49.51309], [-116.355069, 49.518611], [-116.349507, 49.523759], [-116.312448, 49.524599], [-116.303451, 49.520976], [-116.296753, 49.511643], [-116.289103, 49.508553], [-116.287829, 49.505338], [-116.281759, 49.489183], [-116.282589, 49.47765], [-116.284852, 49.472397], [-116.266601, 49.470775], [-116.257793, 49.467991], [-116.248062, 49.461456], [-116.245273, 49.457975], [-116.24892, 49.451951], [-116.259882, 49.447966], [-116.254743, 49.444286], [-116.2374, 49.428143], [-116.238045, 49.423303], [-116.241662, 49.420155], [-116.235716, 49.41696], [-116.215898, 49.416562], [-116.210521, 49.413546], [-116.21051, 49.413454], [-116.198976, 49.415336], [-116.199167, 49.421217], [-116.18958, 49.424973], [-116.182271, 49.426647], [-116.175067, 49.435858], [-116.17319, 49.440125], [-116.170064, 49.44348], [-116.164679, 49.452699], [-116.163438, 49.474005], [-116.166716, 49.47721], [-116.163724, 49.47939], [-116.153094, 49.482741], [-116.147562, 49.483808], [-116.140818, 49.48894], [-116.133727, 49.490795], [-116.132067, 49.493634], [-116.128013, 49.500172], [-116.128055, 49.504112], [-116.126257, 49.505574], [-116.125396, 49.505792], [-116.121284, 49.508848], [-116.117286, 49.515267], [-116.109846, 49.520046], [-116.104282, 49.525984], [-116.098521, 49.533024], [-116.094924, 49.537617], [-116.090418, 49.553314], [-116.090431, 49.553604], [-116.078751, 49.572275], [-116.07543, 49.574492], [-116.071604, 49.575271], [-116.071725, 49.579553], [-116.075512, 49.581877], [-116.073924, 49.587628], [-116.071505, 49.590065], [-115.993465, 49.59125], [-115.992595, 49.591425], [-115.98276, 49.59116], [-115.950815, 49.591394], [-115.951029, 49.593814], [-115.922629, 49.593988], [-115.906002, 49.593971], [-115.905849, 49.598512], [-115.905685, 49.600972], [-115.905634, 49.600932], [-115.903801, 49.600902], [-115.903037, 49.600606], [-115.902144, 49.60041], [-115.900338, 49.600326], [-115.89867, 49.600034], [-115.89801, 49.59927], [-115.897562, 49.598994], [-115.89654, 49.598504], [-115.896153, 49.598493], [-115.894934, 49.598201], [-115.894108, 49.598302], [-115.892412, 49.598847], [-115.891783, 49.599186], [-115.891579, 49.599387], [-115.891423, 49.59991], [-115.89004, 49.600296], [-115.889244, 49.600717], [-115.887416, 49.601529], [-115.886261, 49.601407], [-115.885429, 49.601189], [-115.883656, 49.600996], [-115.881917, 49.600917], [-115.881656, 49.600798], [-115.881147, 49.60072], [-115.88109, 49.602089], [-115.880096, 49.603172], [-115.880048, 49.604475], [-115.880119, 49.605234], [-115.879901, 49.61108], [-115.879122, 49.622864], [-115.87883, 49.629611], [-115.8787, 49.635234], [-115.878072, 49.648651], [-115.870473, 49.648527], [-115.870449, 49.651132], [-115.862649, 49.651115], [-115.861916, 49.676576], [-115.835447, 49.676605], [-115.803074, 49.676383], [-115.796507, 49.676374], [-115.790896, 49.676472], [-115.790664, 49.676299], [-115.789925, 49.676569], [-115.789923, 49.676422], [-115.782779, 49.676597], [-115.775351, 49.676476], [-115.774571, 49.676526], [-115.772356, 49.676532], [-115.757396, 49.676353], [-115.733189, 49.676237], [-115.716717, 49.676086], [-115.700254, 49.676081], [-115.700027, 49.675739], [-115.699444, 49.675219], [-115.698208, 49.674315], [-115.697729, 49.674094], [-115.69638, 49.673683], [-115.694411, 49.673274], [-115.692777, 49.67322], [-115.691771, 49.672992], [-115.690868, 49.67255], [-115.688507, 49.671687], [-115.687604, 49.671246], [-115.686775, 49.670615], [-115.685578, 49.669279], [-115.685367, 49.668836], [-115.684898, 49.668265], [-115.684031, 49.6665], [-115.683756, 49.665409], [-115.683646, 49.664328], [-115.683116, 49.662918], [-115.683058, 49.662531], [-115.683099, 49.662001], [-115.683205, 49.661729], [-115.682178, 49.661648], [-115.680877, 49.661891], [-115.679956, 49.661947], [-115.675256, 49.661984], [-115.674968, 49.661915], [-115.669234, 49.661609], [-115.667898, 49.68316], [-115.665564, 49.683299], [-115.624675, 49.683475], [-115.611443, 49.683803], [-115.585256, 49.683895], [-115.586566, 49.68677], [-115.586787, 49.691851], [-115.589207, 49.697321], [-115.59893, 49.711351], [-115.60243, 49.717898], [-115.602702, 49.719597], [-115.59818, 49.723039], [-115.588421, 49.742024], [-115.595436, 49.74762], [-115.60125, 49.754211], [-115.594435, 49.763594], [-115.579506, 49.764669], [-115.570532, 49.786159], [-115.554925, 49.798057], [-115.553488, 49.814722], [-115.545744, 49.81424], [-115.520973, 49.8139], [-115.498969, 49.826063], [-115.488789, 49.831227], [-115.471369, 49.840233], [-115.458453, 49.827194], [-115.442793, 49.818727], [-115.416163, 49.830418], [-115.408418, 49.831937], [-115.362584, 49.840643], [-115.342352, 49.849929], [-115.344118, 49.8583], [-115.356325, 49.864125], [-115.357366, 49.884954], [-115.348103, 49.896629], [-115.343193, 49.909843], [-115.344653, 49.926963], [-115.351963, 49.94884], [-115.355306, 49.953229], [-115.36038, 49.991607], [-115.364656, 49.998912], [-115.361493, 50.009738], [-115.371455, 50.011383], [-115.386083, 50.017941], [-115.386612, 50.026412], [-115.398572, 50.03593], [-115.40642, 50.040854], [-115.414232, 50.054907], [-115.420247, 50.062125], [-115.408846, 50.069454], [-115.436847, 50.080936], [-115.437451, 50.087098], [-115.439461, 50.09308], [-115.450124, 50.097647], [-115.461836, 50.109985], [-115.469215, 50.110208], [-115.47564, 50.103331], [-115.488069, 50.101373], [-115.508427, 50.096742], [-115.520372, 50.098687], [-115.525322, 50.100958], [-115.537346, 50.105744], [-115.54813, 50.113034], [-115.551611, 50.115767], [-115.551415, 50.120039], [-115.550917, 50.120033], [-115.550388, 50.119955], [-115.548504, 50.120409], [-115.547751, 50.121331], [-115.546715, 50.122917], [-115.546133, 50.123449], [-115.542559, 50.124068], [-115.538297, 50.124018], [-115.535428, 50.123811], [-115.536601, 50.125852], [-115.539398, 50.127519], [-115.542899, 50.12807], [-115.543272, 50.128294], [-115.541999, 50.129696], [-115.53657, 50.134856], [-115.530477, 50.149495], [-115.544098, 50.171429], [-115.559943, 50.179531], [-115.580091, 50.180007], [-115.596761, 50.172937], [-115.605627, 50.176774]], [[-116.004583, 49.727942], [-116.00274, 49.732009], [-116.000845, 49.729807], [-115.994592, 49.728796], [-115.990587, 49.725569], [-115.981295, 49.720808], [-115.988086, 49.715113], [-115.990827, 49.716199], [-115.991584, 49.716068], [-115.99015, 49.715188], [-115.992186, 49.713187], [-115.990774, 49.712495], [-115.993322, 49.70884], [-115.992581, 49.708038], [-115.982097, 49.704178], [-115.983801, 49.702471], [-115.985136, 49.700781], [-115.979389, 49.69865], [-115.978888, 49.695335], [-115.976912, 49.695281], [-115.97691, 49.695672], [-115.975775, 49.695629], [-115.973546, 49.695878], [-115.967788, 49.69612], [-115.967536, 49.688409], [-115.972765, 49.688411], [-115.972764, 49.688464], [-115.974683, 49.688473], [-115.976535, 49.687551], [-115.976593, 49.685797], [-115.973461, 49.68571], [-115.973326, 49.685229], [-115.972517, 49.683815], [-115.970153, 49.684757], [-115.970174, 49.685209], [-115.968297, 49.685694], [-115.96634, 49.685072], [-115.963091, 49.684299], [-115.959849, 49.687668], [-115.954388, 49.685509], [-115.951527, 49.687658], [-115.945721, 49.687787], [-115.945302, 49.680218], [-115.939122, 49.680153], [-115.938414, 49.673704], [-115.928364, 49.673588], [-115.928492, 49.666424], [-115.915135, 49.666531], [-115.915058, 49.665923], [-115.915353, 49.665737], [-115.914899, 49.665214], [-115.914866, 49.661382], [-115.91472, 49.65984], [-115.914599, 49.659605], [-115.914624, 49.658039], [-115.914787, 49.657418], [-115.915047, 49.652765], [-115.911656, 49.652715], [-115.911893, 49.647072], [-115.911963, 49.641163], [-115.92936, 49.641302], [-115.929545, 49.637545], [-115.933921, 49.637526], [-115.94044, 49.637664], [-115.940619, 49.636494], [-115.941232, 49.634327], [-115.938727, 49.63407], [-115.937971, 49.63393], [-115.936851, 49.633559], [-115.936196, 49.633185], [-115.935659, 49.632771], [-115.933699, 49.630426], [-115.929477, 49.630416], [-115.929396, 49.623061], [-115.940679, 49.623534], [-115.942134, 49.623512], [-115.942854, 49.622743], [-115.942992, 49.622844], [-115.944329, 49.623163], [-115.946053, 49.622901], [-115.947403, 49.622575], [-115.948499, 49.622741], [-115.949769, 49.623099], [-115.950099, 49.623575], [-115.950957, 49.624223], [-115.952782, 49.624879], [-115.95311, 49.625435], [-115.953401, 49.626238], [-115.953725, 49.626706], [-115.95504, 49.628058], [-115.956407, 49.629042], [-115.957436, 49.629511], [-115.958365, 49.629814], [-115.959117, 49.629911], [-115.959957, 49.630237], [-115.960731, 49.630426], [-115.961533, 49.630347], [-115.965925, 49.629464], [-115.968028, 49.628327], [-115.970307, 49.62755], [-115.97226, 49.628113], [-115.972895, 49.629515], [-115.972703, 49.631015], [-115.973092, 49.631665], [-115.973884, 49.631908], [-115.974631, 49.631675], [-115.976491, 49.630764], [-115.978058, 49.630348], [-115.979555, 49.630181], [-115.980478, 49.630347], [-115.982125, 49.630904], [-115.983481, 49.631187], [-115.9848, 49.631346], [-115.98712, 49.632363], [-115.988585, 49.632836], [-115.989414, 49.632967], [-115.990886, 49.633056], [-115.99129, 49.632994], [-115.991509, 49.632875], [-115.991596, 49.632687], [-115.991535, 49.632339], [-115.990896, 49.631899], [-115.989814, 49.631361], [-115.989551, 49.631012], [-115.989516, 49.630716], [-115.989619, 49.630124], [-115.989855, 49.629713], [-115.990242, 49.629424], [-115.990838, 49.629172], [-115.992059, 49.628937], [-115.993215, 49.628912], [-115.995089, 49.629021], [-115.995942, 49.629257], [-115.996947, 49.629771], [-115.997927, 49.629946], [-115.998994, 49.629948], [-115.999421, 49.629771], [-116.000382, 49.629907], [-116.000872, 49.631097], [-116.010844, 49.632186], [-116.011002, 49.639371], [-116.027821, 49.639217], [-116.027703, 49.644496], [-116.027718, 49.653866], [-116.027376, 49.666963], [-116.028569, 49.667067], [-116.02763, 49.671297], [-116.022068, 49.670894], [-116.021882, 49.669011], [-116.021061, 49.67002], [-116.021195, 49.672601], [-116.022151, 49.672478], [-116.02218, 49.671891], [-116.0283, 49.671858], [-116.028573, 49.673997], [-116.028697, 49.675716], [-116.032087, 49.675356], [-116.033444, 49.679149], [-116.033965, 49.679111], [-116.034482, 49.681065], [-116.049554, 49.683595], [-116.057667, 49.68479], [-116.05146, 49.700787], [-116.030068, 49.69698], [-116.028556, 49.701194], [-116.025361, 49.700783], [-116.025418, 49.698346], [-116.020991, 49.697202], [-116.021742, 49.697846], [-116.017243, 49.700347], [-116.012782, 49.697199], [-116.014562, 49.696617], [-116.008063, 49.695536], [-116.007923, 49.697603], [-116.004516, 49.697247], [-116.005233, 49.704162], [-116.006998, 49.703994], [-116.007602, 49.70655], [-116.009797, 49.705882], [-116.015092, 49.713217], [-116.013568, 49.713705], [-116.014568, 49.714226], [-116.015201, 49.713505], [-116.015424, 49.713417], [-116.01585, 49.713519], [-116.01719, 49.71353], [-116.017694, 49.713848], [-116.016717, 49.714226], [-116.016629, 49.71444], [-116.016632, 49.716209], [-116.017322, 49.716449], [-116.016565, 49.72037], [-116.015048, 49.720794], [-116.014153, 49.721827], [-116.014691, 49.722698], [-116.0114, 49.725858], [-116.008266, 49.724778], [-116.004583, 49.727942]]]]}, "properties": {"name": "East Kootenay E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "East Kootenay E", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901037", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.032445, 50.531253], [-116.033417, 50.531544], [-116.033104, 50.531011], [-116.034361, 50.530602], [-116.035169, 50.529838], [-116.035574, 50.529607], [-116.035927, 50.529513], [-116.03802, 50.529634], [-116.038305, 50.52959], [-116.038642, 50.52938], [-116.03914, 50.528372], [-116.039397, 50.528261], [-116.039393, 50.527637], [-116.039613, 50.527213], [-116.040035, 50.526794], [-116.040871, 50.526533], [-116.041599, 50.52578], [-116.042029, 50.525079], [-116.042091, 50.524477], [-116.042782, 50.523225], [-116.042752, 50.52268], [-116.042847, 50.522332], [-116.04309, 50.522121], [-116.04361, 50.521831], [-116.044555, 50.521577], [-116.045605, 50.520613], [-116.046013, 50.51981], [-116.045973, 50.518162], [-116.046213, 50.517666], [-116.046161, 50.517273], [-116.046411, 50.516309], [-116.046353, 50.515154], [-116.046879, 50.514225], [-116.046947, 50.513481], [-116.046356, 50.512461], [-116.044969, 50.510662], [-116.044733, 50.510021], [-116.044741, 50.509563], [-116.045094, 50.509179], [-116.045884, 50.508749], [-116.046299, 50.508383], [-116.046429, 50.507869], [-116.046257, 50.506593], [-116.046413, 50.505888], [-116.046957, 50.505501], [-116.048254, 50.505008], [-116.048736, 50.504566], [-116.049538, 50.503135], [-116.049534, 50.502893], [-116.049874, 50.502414], [-116.049994, 50.50193], [-116.050348, 50.501745], [-116.05099, 50.501704], [-116.052211, 50.501872], [-116.052696, 50.501749], [-116.053395, 50.501406], [-116.053781, 50.501382], [-116.054255, 50.50152], [-116.054593, 50.501912], [-116.054822, 50.502638], [-116.055119, 50.502867], [-116.055518, 50.503035], [-116.056915, 50.503329], [-116.057569, 50.503544], [-116.058926, 50.504273], [-116.056514, 50.500002], [-116.057162, 50.491319], [-116.057111, 50.488512], [-116.050873, 50.489275], [-116.050448, 50.486075], [-116.049116, 50.485462], [-116.049157, 50.485372], [-116.049694, 50.48546], [-116.050726, 50.485771], [-116.05109, 50.485958], [-116.051095, 50.485508], [-116.049152, 50.472947], [-116.037623, 50.472492], [-116.037362, 50.475599], [-116.028108, 50.475166], [-116.0273, 50.477606], [-116.027262, 50.477941], [-116.027458, 50.47855], [-116.02877, 50.480837], [-116.022541, 50.481032], [-116.022793, 50.482639], [-116.021415, 50.484346], [-116.021144, 50.485912], [-116.021989, 50.487221], [-116.023507, 50.488535], [-116.025478, 50.48994], [-116.027695, 50.491692], [-116.028011, 50.493488], [-116.027634, 50.494174], [-116.025581, 50.496087], [-116.023227, 50.495342], [-116.019636, 50.491813], [-116.015645, 50.491689], [-116.015096, 50.495784], [-116.014803, 50.499284], [-116.018075, 50.506106], [-116.019618, 50.509632], [-116.018862, 50.514425], [-116.019785, 50.516467], [-116.020072, 50.517581], [-116.021004, 50.51829], [-116.021924, 50.518666], [-116.022129, 50.518827], [-116.022549, 50.519618], [-116.022486, 50.519905], [-116.022226, 50.520201], [-116.022073, 50.52081], [-116.022353, 50.521428], [-116.022936, 50.522098], [-116.023189, 50.523553], [-116.023711, 50.524132], [-116.024952, 50.524977], [-116.026845, 50.526046], [-116.028944, 50.526395], [-116.0294, 50.526513], [-116.02971, 50.526823], [-116.029964, 50.527261], [-116.030075, 50.528083], [-116.03116, 50.530331], [-116.032445, 50.531253]]]]}, "properties": {"name": "Invermere", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Invermere", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901039", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.079117, 50.647099], [-116.0799, 50.649065], [-116.08078, 50.6485], [-116.081256, 50.647928], [-116.081837, 50.646887], [-116.081818, 50.646449], [-116.088877, 50.642678], [-116.090946, 50.642395], [-116.092612, 50.640259], [-116.091853, 50.639175], [-116.090628, 50.638049], [-116.089821, 50.637638], [-116.089604, 50.637317], [-116.089616, 50.637034], [-116.092623, 50.63709], [-116.094706, 50.637037], [-116.094772, 50.6353], [-116.095816, 50.622814], [-116.101792, 50.622884], [-116.103789, 50.622991], [-116.103075, 50.621684], [-116.102531, 50.621293], [-116.101925, 50.621127], [-116.101263, 50.621041], [-116.099029, 50.621077], [-116.09807, 50.620953], [-116.097521, 50.620851], [-116.096748, 50.620601], [-116.095978, 50.620208], [-116.095827, 50.619946], [-116.096072, 50.619643], [-116.096069, 50.619076], [-116.096348, 50.618593], [-116.096983, 50.617878], [-116.096945, 50.61767], [-116.096363, 50.617055], [-116.096012, 50.616944], [-116.095574, 50.616931], [-116.094624, 50.617113], [-116.093519, 50.617186], [-116.092327, 50.617455], [-116.091225, 50.617455], [-116.090871, 50.617398], [-116.089522, 50.616319], [-116.089066, 50.615775], [-116.088887, 50.615441], [-116.088749, 50.614604], [-116.088391, 50.614115], [-116.08786, 50.613751], [-116.086636, 50.613436], [-116.085754, 50.613079], [-116.084946, 50.612469], [-116.084433, 50.611979], [-116.083773, 50.61165], [-116.083297, 50.611503], [-116.082719, 50.611427], [-116.080525, 50.611553], [-116.080062, 50.611432], [-116.077594, 50.61107], [-116.076272, 50.610746], [-116.075025, 50.610286], [-116.072801, 50.609596], [-116.069493, 50.609249], [-116.069009, 50.615436], [-116.068974, 50.617051], [-116.069443, 50.619165], [-116.069306, 50.623197], [-116.06798, 50.623249], [-116.067966, 50.623314], [-116.064167, 50.623316], [-116.063896, 50.627738], [-116.064589, 50.629594], [-116.065094, 50.633866], [-116.072184, 50.63325], [-116.072404, 50.637095], [-116.075178, 50.637588], [-116.07695, 50.637345], [-116.076609, 50.64027], [-116.075503, 50.640421], [-116.079117, 50.647099]]]]}, "properties": {"name": "Radium Hot Springs", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Radium Hot Springs", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901040", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.807338, 50.183406], [-115.815341, 50.184239], [-115.816355, 50.192709], [-115.825939, 50.193577], [-115.834403, 50.189235], [-115.850213, 50.170355], [-115.854296, 50.170428], [-115.859518, 50.170409], [-115.860556, 50.16555], [-115.851997, 50.165188], [-115.847709, 50.164408], [-115.847014, 50.163319], [-115.842884, 50.158033], [-115.837328, 50.153819], [-115.833109, 50.151134], [-115.83045, 50.149683], [-115.825907, 50.146302], [-115.826414, 50.14582], [-115.826763, 50.145192], [-115.826616, 50.144501], [-115.825966, 50.143921], [-115.824385, 50.142825], [-115.823427, 50.141969], [-115.823137, 50.14159], [-115.821004, 50.138023], [-115.819697, 50.136146], [-115.817273, 50.138039], [-115.815096, 50.139305], [-115.810029, 50.141909], [-115.808062, 50.143], [-115.805297, 50.144651], [-115.803398, 50.145946], [-115.801393, 50.147532], [-115.800766, 50.147834], [-115.792092, 50.151298], [-115.787879, 50.150793], [-115.78662, 50.150796], [-115.78634, 50.151001], [-115.785992, 50.153201], [-115.784867, 50.153843], [-115.783337, 50.153664], [-115.783755, 50.161571], [-115.790221, 50.161812], [-115.802301, 50.161172], [-115.802719, 50.161389], [-115.803228, 50.161763], [-115.803982, 50.1624], [-115.804375, 50.162926], [-115.804677, 50.163172], [-115.805272, 50.163429], [-115.805972, 50.164021], [-115.806897, 50.164526], [-115.807522, 50.164739], [-115.807679, 50.164721], [-115.807338, 50.183406]]]]}, "properties": {"name": "Canal Flats", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Canal Flats", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901043", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.665056, 50.736241], [-115.66555, 50.737374], [-115.666617, 50.738353], [-115.667531, 50.740047], [-115.667994, 50.740274], [-115.667932, 50.740108], [-115.6677, 50.739941], [-115.667991, 50.738738], [-115.668934, 50.737625], [-115.669286, 50.737357], [-115.669186, 50.737], [-115.669687, 50.735822], [-115.671413, 50.73472], [-115.672901, 50.734246], [-115.675538, 50.734018], [-115.676731, 50.733633], [-115.677243, 50.732979], [-115.677674, 50.731967], [-115.678157, 50.731564], [-115.679038, 50.731285], [-115.679457, 50.731057], [-115.680881, 50.729665], [-115.68186, 50.729051], [-115.682448, 50.729014], [-115.683113, 50.728863], [-115.6839, 50.728359], [-115.68394, 50.728167], [-115.684901, 50.727378], [-115.686253, 50.726602], [-115.68718, 50.725331], [-115.688003, 50.724908], [-115.689851, 50.724326], [-115.690738, 50.724176], [-115.691513, 50.723839], [-115.692966, 50.723543], [-115.693706, 50.723011], [-115.694926, 50.722345], [-115.69812, 50.721029], [-115.698396, 50.720649], [-115.699077, 50.720008], [-115.699771, 50.719005], [-115.700316, 50.718538], [-115.700568, 50.718126], [-115.700889, 50.717864], [-115.702496, 50.717031], [-115.703929, 50.716786], [-115.705087, 50.71633], [-115.706405, 50.715265], [-115.707555, 50.714633], [-115.708895, 50.714228], [-115.709633, 50.713553], [-115.710196, 50.713184], [-115.710657, 50.71307], [-115.711776, 50.712518], [-115.712534, 50.711686], [-115.712462, 50.71137], [-115.712754, 50.710863], [-115.713117, 50.710549], [-115.713306, 50.710495], [-115.714735, 50.71039], [-115.715485, 50.710191], [-115.716123, 50.709943], [-115.716707, 50.709077], [-115.717441, 50.708809], [-115.719788, 50.708917], [-115.720249, 50.70898], [-115.720752, 50.708939], [-115.722942, 50.709318], [-115.724362, 50.709733], [-115.725148, 50.709439], [-115.725527, 50.709172], [-115.726132, 50.708358], [-115.726495, 50.70757], [-115.726645, 50.706919], [-115.727217, 50.706445], [-115.72782, 50.706283], [-115.728805, 50.70623], [-115.7295, 50.70604], [-115.730369, 50.704722], [-115.730086, 50.703353], [-115.730336, 50.702054], [-115.732443, 50.700786], [-115.733248, 50.700607], [-115.73463, 50.700012], [-115.735635, 50.699066], [-115.737725, 50.697712], [-115.740928, 50.69684], [-115.741816, 50.696713], [-115.743528, 50.696679], [-115.745251, 50.696994], [-115.746254, 50.696974], [-115.747517, 50.697138], [-115.748147, 50.69713], [-115.752006, 50.695776], [-115.753186, 50.695722], [-115.753594, 50.695607], [-115.7548, 50.695523], [-115.755786, 50.695364], [-115.757014, 50.695335], [-115.757835, 50.695429], [-115.759766, 50.69544], [-115.760409, 50.695299], [-115.760748, 50.695048], [-115.761212, 50.694434], [-115.762444, 50.69343], [-115.763418, 50.693027], [-115.764653, 50.692825], [-115.764947, 50.692708], [-115.765206, 50.692218], [-115.765819, 50.69174], [-115.766092, 50.691405], [-115.766713, 50.68977], [-115.767688, 50.68876], [-115.768108, 50.688467], [-115.768626, 50.688137], [-115.768981, 50.688042], [-115.770117, 50.688159], [-115.770642, 50.688075], [-115.770972, 50.68793], [-115.771128, 50.687658], [-115.771113, 50.686994], [-115.771223, 50.686779], [-115.773366, 50.685245], [-115.774172, 50.684167], [-115.774649, 50.683821], [-115.775029, 50.683798], [-115.775626, 50.684048], [-115.776186, 50.68417], [-115.776946, 50.684124], [-115.777713, 50.683817], [-115.778061, 50.683469], [-115.778898, 50.681971], [-115.778857, 50.681567], [-115.778508, 50.680926], [-115.778511, 50.680614], [-115.778776, 50.680426], [-115.780845, 50.68001], [-115.78186, 50.679923], [-115.782503, 50.679701], [-115.783165, 50.679214], [-115.783766, 50.678171], [-115.784753, 50.677633], [-115.784728, 50.677405], [-115.784556, 50.677254], [-115.783336, 50.676807], [-115.782943, 50.676535], [-115.78267, 50.675969], [-115.782524, 50.675029], [-115.782683, 50.674695], [-115.783409, 50.67451], [-115.784589, 50.67446], [-115.786553, 50.674695], [-115.787859, 50.674561], [-115.789245, 50.674614], [-115.790222, 50.674544], [-115.790634, 50.674428], [-115.790871, 50.674175], [-115.791052, 50.673837], [-115.791119, 50.673374], [-115.790779, 50.672822], [-115.789191, 50.67167], [-115.788949, 50.671297], [-115.788838, 50.67074], [-115.788683, 50.670593], [-115.788732, 50.670291], [-115.789039, 50.669605], [-115.789726, 50.669182], [-115.790136, 50.668697], [-115.790138, 50.66826], [-115.789715, 50.667821], [-115.788765, 50.66728], [-115.788552, 50.666953], [-115.789252, 50.665719], [-115.789825, 50.665204], [-115.790623, 50.664685], [-115.791608, 50.663834], [-115.791864, 50.663334], [-115.791792, 50.662405], [-115.791137, 50.661207], [-115.791126, 50.660797], [-115.791327, 50.660323], [-115.791611, 50.660045], [-115.791888, 50.659923], [-115.79312, 50.659711], [-115.793921, 50.659669], [-115.794488, 50.659397], [-115.794867, 50.659065], [-115.795029, 50.658769], [-115.79494, 50.657334], [-115.795018, 50.656908], [-115.794944, 50.65652], [-115.794482, 50.655975], [-115.793204, 50.655391], [-115.793298, 50.654593], [-115.793692, 50.654337], [-115.794321, 50.654122], [-115.795339, 50.65392], [-115.795686, 50.653658], [-115.795787, 50.653388], [-115.795882, 50.652774], [-115.795649, 50.652312], [-115.795515, 50.651768], [-115.795968, 50.65088], [-115.796116, 50.650757], [-115.7955, 50.645862], [-115.796385, 50.639765], [-115.797639, 50.639817], [-115.820473, 50.639839], [-115.822046, 50.639766], [-115.821714, 50.639533], [-115.820694, 50.639252], [-115.818522, 50.639424], [-115.817609, 50.639256], [-115.817102, 50.639033], [-115.81462, 50.636104], [-115.813075, 50.632496], [-115.812017, 50.631149], [-115.811903, 50.630196], [-115.812182, 50.629284], [-115.811901, 50.628537], [-115.810454, 50.627568], [-115.8092, 50.626201], [-115.808295, 50.624745], [-115.807549, 50.623367], [-115.805659, 50.621271], [-115.804515, 50.620554], [-115.803318, 50.620224], [-115.801634, 50.620647], [-115.800851, 50.621101], [-115.8003, 50.620865], [-115.79978, 50.619968], [-115.798804, 50.618811], [-115.79795, 50.617436], [-115.797991, 50.617029], [-115.798345, 50.616356], [-115.80044, 50.615174], [-115.802634, 50.614389], [-115.803454, 50.614225], [-115.803814, 50.614072], [-115.804102, 50.613824], [-115.804097, 50.613428], [-115.803214, 50.61233], [-115.803061, 50.611901], [-115.803137, 50.611463], [-115.803485, 50.61058], [-115.809914, 50.610736], [-115.842899, 50.610783], [-115.86935, 50.596438], [-115.87389, 50.595939], [-115.876448, 50.595579], [-115.882526, 50.595874], [-115.889637, 50.596694], [-115.898669, 50.601301], [-115.916113, 50.589025], [-115.915322, 50.583356], [-115.952833, 50.562591], [-115.989112, 50.547665], [-115.997695, 50.54807], [-116.002529, 50.547932], [-116.012057, 50.547998], [-116.012545, 50.541075], [-115.998329, 50.540994], [-115.995314, 50.541051], [-115.994633, 50.514695], [-115.999066, 50.515401], [-116.000354, 50.516538], [-115.999937, 50.516008], [-115.999964, 50.515756], [-116.00015, 50.515569], [-116.000505, 50.51541], [-116.010437, 50.515606], [-116.012077, 50.51552], [-116.014105, 50.515563], [-116.018071, 50.515478], [-116.018157, 50.515635], [-116.018634, 50.516014], [-116.019265, 50.51615], [-116.019644, 50.516155], [-116.018862, 50.514425], [-116.019618, 50.509632], [-116.018075, 50.506106], [-116.014803, 50.499284], [-116.015096, 50.495784], [-116.015645, 50.491689], [-116.019636, 50.491813], [-116.023227, 50.495342], [-116.025552, 50.496085], [-116.027634, 50.494174], [-116.028011, 50.493488], [-116.027695, 50.491692], [-116.025478, 50.48994], [-116.023507, 50.488535], [-116.021989, 50.487221], [-116.021144, 50.485912], [-116.021415, 50.484346], [-116.022793, 50.482639], [-116.022541, 50.481032], [-116.02877, 50.480837], [-116.027458, 50.47855], [-116.027262, 50.477941], [-116.0273, 50.477606], [-116.028108, 50.475166], [-116.037362, 50.475599], [-116.037623, 50.472492], [-116.049152, 50.472947], [-116.051095, 50.485508], [-116.05109, 50.485958], [-116.050726, 50.485771], [-116.049694, 50.48546], [-116.049157, 50.485372], [-116.049116, 50.485462], [-116.050448, 50.486075], [-116.050873, 50.489275], [-116.057111, 50.488512], [-116.057162, 50.491319], [-116.056514, 50.500002], [-116.058926, 50.504273], [-116.057569, 50.503544], [-116.056915, 50.503329], [-116.055518, 50.503035], [-116.055119, 50.502867], [-116.054822, 50.502638], [-116.054593, 50.501912], [-116.054255, 50.50152], [-116.053781, 50.501382], [-116.053395, 50.501406], [-116.052696, 50.501749], [-116.052211, 50.501872], [-116.05099, 50.501704], [-116.050348, 50.501745], [-116.049994, 50.50193], [-116.049874, 50.502414], [-116.049534, 50.502893], [-116.049538, 50.503135], [-116.048736, 50.504566], [-116.048254, 50.505008], [-116.046957, 50.505501], [-116.046413, 50.505888], [-116.046257, 50.506593], [-116.046429, 50.507869], [-116.046299, 50.508383], [-116.045884, 50.508749], [-116.045094, 50.509179], [-116.044741, 50.509563], [-116.044733, 50.510021], [-116.044969, 50.510662], [-116.046356, 50.512461], [-116.046947, 50.513481], [-116.046879, 50.514225], [-116.046353, 50.515154], [-116.046411, 50.516309], [-116.046161, 50.517273], [-116.046213, 50.517666], [-116.045973, 50.518162], [-116.046013, 50.51981], [-116.045605, 50.520613], [-116.044555, 50.521577], [-116.04361, 50.521831], [-116.04309, 50.522121], [-116.042847, 50.522332], [-116.042752, 50.52268], [-116.042782, 50.523225], [-116.042091, 50.524477], [-116.042029, 50.525079], [-116.041599, 50.52578], [-116.040871, 50.526533], [-116.040035, 50.526794], [-116.039613, 50.527213], [-116.039393, 50.527637], [-116.039397, 50.528261], [-116.03914, 50.528372], [-116.038642, 50.52938], [-116.038305, 50.52959], [-116.03802, 50.529634], [-116.035927, 50.529513], [-116.035574, 50.529607], [-116.035169, 50.529838], [-116.034361, 50.530602], [-116.033104, 50.531011], [-116.033417, 50.531544], [-116.033818, 50.531898], [-116.034951, 50.533166], [-116.035455, 50.533962], [-116.03586, 50.534217], [-116.036269, 50.534211], [-116.036779, 50.534099], [-116.037032, 50.534192], [-116.037193, 50.534533], [-116.037436, 50.535732], [-116.037755, 50.536724], [-116.038084, 50.537221], [-116.038461, 50.537459], [-116.038846, 50.537844], [-116.040124, 50.537812], [-116.050866, 50.537868], [-116.052097, 50.538568], [-116.054926, 50.53884], [-116.055018, 50.53893], [-116.0559, 50.539132], [-116.056055, 50.53901], [-116.056079, 50.538462], [-116.056211, 50.538212], [-116.065043, 50.538269], [-116.066623, 50.538717], [-116.067998, 50.538424], [-116.071303, 50.538267], [-116.073152, 50.53809], [-116.094031, 50.53758], [-116.121555, 50.537877], [-116.121798, 50.526592], [-116.120501, 50.519084], [-116.120666, 50.512939], [-116.1736, 50.513054], [-116.186686, 50.512652], [-116.188275, 50.512865], [-116.221535, 50.512332], [-116.265716, 50.499339], [-116.316726, 50.47399], [-116.317814, 50.463066], [-116.349545, 50.455377], [-116.363357, 50.450974], [-116.390708, 50.45166], [-116.398579, 50.454118], [-116.403497, 50.457647], [-116.408381, 50.46568], [-116.420182, 50.468205], [-116.43721, 50.46675], [-116.44946, 50.458178], [-116.464067, 50.439034], [-116.456607, 50.426152], [-116.453208, 50.416229], [-116.465381, 50.410608], [-116.490209, 50.407736], [-116.507014, 50.411272], [-116.517336, 50.409214], [-116.562602, 50.405118], [-116.588679, 50.41816], [-116.616849, 50.430653], [-116.630075, 50.430459], [-116.647702, 50.424084], [-116.652325, 50.420225], [-116.644571, 50.4124], [-116.637391, 50.395723], [-116.631562, 50.390387], [-116.635058, 50.378538], [-116.626268, 50.36521], [-116.620005, 50.357957], [-116.613803, 50.350179], [-116.622794, 50.345024], [-116.624872, 50.338379], [-116.622012, 50.334555], [-116.62299, 50.327435], [-116.615411, 50.323071], [-116.618188, 50.317513], [-116.60885, 50.31412], [-116.602113, 50.311059], [-116.590877, 50.308417], [-116.578545, 50.310889], [-116.55943, 50.317678], [-116.540796, 50.319], [-116.541849, 50.311358], [-116.545043, 50.300869], [-116.554958, 50.283488], [-116.549462, 50.264684], [-116.549814, 50.248717], [-116.55428, 50.236358], [-116.556643, 50.2226], [-116.556812, 50.212877], [-116.547482, 50.205639], [-116.52571, 50.20431], [-116.500334, 50.197908], [-116.49052, 50.190892], [-116.487968, 50.181688], [-116.488842, 50.173527], [-116.482503, 50.167861], [-116.481344, 50.167723], [-116.481389, 50.167659], [-116.475629, 50.159471], [-116.464047, 50.155791], [-116.458532, 50.157296], [-116.453612, 50.155009], [-116.452462, 50.142252], [-116.450944, 50.13647], [-116.449921, 50.133458], [-116.452138, 50.124214], [-116.459169, 50.117789], [-116.467321, 50.115156], [-116.480112, 50.114699], [-116.482604, 50.106894], [-116.49517, 50.093791], [-116.497038, 50.074467], [-116.49826, 50.056181], [-116.482987, 50.046774], [-116.471438, 50.037911], [-116.466735, 50.020445], [-116.469144, 50.013529], [-116.465822, 50.001431], [-116.454188, 49.994965], [-116.442074, 49.98776], [-116.443116, 49.979287], [-116.426787, 49.963528], [-116.408466, 49.944037], [-116.39854, 49.936611], [-116.35566, 49.934862], [-116.334353, 49.931262], [-116.321764, 49.923352], [-116.310149, 49.926823], [-116.302439, 49.925558], [-116.295586, 49.936684], [-116.293303, 49.939033], [-116.288134, 49.942229], [-116.285028, 49.942579], [-116.275615, 49.943194], [-116.273708, 49.944614], [-116.273799, 49.948281], [-116.271671, 49.953448], [-116.269832, 49.957156], [-116.266266, 49.959009], [-116.260242, 49.960581], [-116.252137, 49.962465], [-116.248558, 49.963744], [-116.243595, 49.969187], [-116.241895, 49.977873], [-116.241296, 49.98022], [-116.24169, 49.983807], [-116.241672, 49.987041], [-116.241137, 49.989486], [-116.239744, 49.993884], [-116.240124, 49.999897], [-116.236402, 50.001788], [-116.222852, 50.004508], [-116.215059, 50.005498], [-116.208478, 50.006749], [-116.198956, 50.00692], [-116.189191, 50.006693], [-116.17704, 50.004551], [-116.168047, 50.004294], [-116.162393, 50.003919], [-116.157773, 50.004657], [-116.151371, 50.011733], [-116.145342, 50.018019], [-116.136881, 50.021595], [-116.124453, 50.020438], [-116.112991, 50.020297], [-116.105731, 50.026322], [-116.092718, 50.028363], [-116.080741, 50.028235], [-116.067312, 50.023648], [-116.041133, 50.008774], [-116.023069, 50.007055], [-116.01695, 50.012618], [-116.016112, 50.015621], [-116.006961, 50.018962], [-115.998112, 50.022388], [-115.993952, 50.018419], [-115.991536, 50.014012], [-115.977749, 50.011534], [-115.975095, 50.01722], [-115.977747, 50.0339], [-115.978424, 50.036738], [-115.975198, 50.040084], [-115.969325, 50.044475], [-115.96082, 50.047238], [-115.946101, 50.044341], [-115.943167, 50.04528], [-115.937827, 50.047216], [-115.937229, 50.047376], [-115.934622, 50.048369], [-115.928906, 50.055627], [-115.931195, 50.061333], [-115.927502, 50.064249], [-115.924844, 50.070831], [-115.923556, 50.076668], [-115.923847, 50.082099], [-115.922668, 50.087122], [-115.908666, 50.087194], [-115.898863, 50.090108], [-115.879308, 50.084157], [-115.871648, 50.07868], [-115.85578, 50.073739], [-115.852873, 50.065094], [-115.853216, 50.058751], [-115.858829, 50.049114], [-115.862853, 50.041835], [-115.870332, 50.0372], [-115.876231, 50.032965], [-115.872318, 50.025137], [-115.861848, 50.018315], [-115.862045, 50.013973], [-115.855811, 50.008139], [-115.850094, 50.003744], [-115.848767, 50.000207], [-115.846115, 49.999209], [-115.846138, 49.999148], [-115.801956, 49.999564], [-115.796988, 49.999483], [-115.794882, 49.999593], [-115.734362, 50.000739], [-115.704761, 50.00134], [-115.702347, 50.001131], [-115.70219, 50.001367], [-115.70198, 50.009681], [-115.702621, 50.015841], [-115.703291, 50.019455], [-115.706326, 50.027091], [-115.707298, 50.030755], [-115.706273, 50.035125], [-115.700324, 50.048858], [-115.702474, 50.058943], [-115.709733, 50.073359], [-115.712208, 50.090356], [-115.711599, 50.100303], [-115.711454, 50.111292], [-115.711281, 50.111586], [-115.706271, 50.125565], [-115.70777, 50.130963], [-115.707479, 50.131384], [-115.708025, 50.131878], [-115.708578, 50.133869], [-115.698836, 50.135981], [-115.696401, 50.142195], [-115.695995, 50.143523], [-115.701496, 50.146427], [-115.689102, 50.15046], [-115.687983, 50.153884], [-115.686114, 50.158187], [-115.657593, 50.156602], [-115.657918, 50.160498], [-115.66179, 50.168554], [-115.662109, 50.169354], [-115.661884, 50.170434], [-115.662023, 50.170573], [-115.658837, 50.178211], [-115.660213, 50.181813], [-115.668197, 50.196913], [-115.660188, 50.213405], [-115.647412, 50.217397], [-115.645426, 50.216839], [-115.638691, 50.21457], [-115.623784, 50.21171], [-115.618146, 50.206525], [-115.617942, 50.20552], [-115.61907, 50.198632], [-115.617707, 50.192373], [-115.615992, 50.186565], [-115.609136, 50.181402], [-115.605627, 50.176774], [-115.596761, 50.172937], [-115.580091, 50.180007], [-115.559943, 50.179531], [-115.544098, 50.171429], [-115.530477, 50.149495], [-115.53657, 50.134856], [-115.541999, 50.129696], [-115.543272, 50.128294], [-115.542899, 50.12807], [-115.539398, 50.127519], [-115.536601, 50.125852], [-115.535428, 50.123811], [-115.538297, 50.124018], [-115.542559, 50.124068], [-115.546133, 50.123449], [-115.546715, 50.122917], [-115.547751, 50.121331], [-115.548504, 50.120409], [-115.550388, 50.119955], [-115.550917, 50.120033], [-115.551415, 50.120039], [-115.551611, 50.115767], [-115.54813, 50.113034], [-115.537346, 50.105744], [-115.525322, 50.100958], [-115.520372, 50.098687], [-115.508427, 50.096742], [-115.488069, 50.101373], [-115.47564, 50.103331], [-115.469215, 50.110208], [-115.461836, 50.109985], [-115.450124, 50.097647], [-115.439461, 50.09308], [-115.437451, 50.087098], [-115.436847, 50.080936], [-115.408846, 50.069454], [-115.420247, 50.062125], [-115.414232, 50.054907], [-115.40642, 50.040854], [-115.398572, 50.03593], [-115.386612, 50.026412], [-115.386083, 50.017941], [-115.371455, 50.011383], [-115.361493, 50.009738], [-115.364656, 49.998912], [-115.36038, 49.991607], [-115.355306, 49.953229], [-115.326776, 49.953291], [-115.322131, 49.959747], [-115.31185, 49.967907], [-115.295964, 49.973602], [-115.281565, 49.972822], [-115.263168, 49.971542], [-115.250373, 49.976999], [-115.249273, 49.988193], [-115.238249, 49.995726], [-115.26876, 50.004499], [-115.250451, 50.01521], [-115.271308, 50.036571], [-115.245024, 50.041525], [-115.223096, 50.052434], [-115.215691, 50.058953], [-115.227281, 50.064202], [-115.22399, 50.081029], [-115.206411, 50.105214], [-115.183361, 50.10631], [-115.14268, 50.111961], [-115.137146, 50.109771], [-115.128016, 50.111147], [-115.11944, 50.105278], [-115.104255, 50.105675], [-115.090619, 50.109041], [-115.076714, 50.114253], [-115.060724, 50.114207], [-115.052057, 50.1179], [-115.048247, 50.125948], [-115.049917, 50.129223], [-115.068196, 50.138032], [-115.068655, 50.140509], [-115.06889, 50.143], [-115.067261, 50.146108], [-115.07264, 50.14893], [-115.073741, 50.151208], [-115.07376, 50.153752], [-115.069875, 50.155982], [-115.071109, 50.158069], [-115.07048, 50.160772], [-115.077714, 50.165051], [-115.084939, 50.171403], [-115.090499, 50.180792], [-115.090891, 50.185635], [-115.096659, 50.192026], [-115.096216, 50.194207], [-115.096886, 50.196592], [-115.097, 50.200547], [-115.103091, 50.206223], [-115.102586, 50.207462], [-115.097285, 50.211077], [-115.099605, 50.216244], [-115.101996, 50.216933], [-115.110084, 50.218456], [-115.116392, 50.220733], [-115.119011, 50.22264], [-115.122129, 50.228727], [-115.126709, 50.231428], [-115.135227, 50.234915], [-115.134321, 50.236732], [-115.133316, 50.242559], [-115.134705, 50.249072], [-115.13776, 50.250872], [-115.136962, 50.257047], [-115.127686, 50.259012], [-115.126614, 50.260551], [-115.118683, 50.263937], [-115.114848, 50.263766], [-115.112576, 50.264962], [-115.111194, 50.26849], [-115.112072, 50.26955], [-115.116809, 50.271258], [-115.122279, 50.272946], [-115.129665, 50.273686], [-115.135861, 50.277426], [-115.126572, 50.286885], [-115.129074, 50.290256], [-115.127361, 50.293228], [-115.128026, 50.297688], [-115.12717, 50.299174], [-115.136212, 50.304769], [-115.131328, 50.310354], [-115.133508, 50.311095], [-115.135732, 50.313579], [-115.137822, 50.316255], [-115.127421, 50.321363], [-115.122582, 50.319527], [-115.120512, 50.319398], [-115.11462, 50.318298], [-115.108806, 50.319409], [-115.102646, 50.318692], [-115.099502, 50.320102], [-115.095438, 50.325402], [-115.094466, 50.329626], [-115.097144, 50.33455], [-115.102057, 50.341557], [-115.108663, 50.344724], [-115.110485, 50.347785], [-115.113866, 50.348871], [-115.118375, 50.351434], [-115.123466, 50.354971], [-115.121572, 50.356393], [-115.122701, 50.35787], [-115.123935, 50.362033], [-115.1231, 50.366065], [-115.122036, 50.368877], [-115.123373, 50.372376], [-115.124929, 50.375823], [-115.125998, 50.379707], [-115.125007, 50.38306], [-115.129935, 50.386318], [-115.128725, 50.388051], [-115.122633, 50.389547], [-115.11965, 50.391235], [-115.125819, 50.393235], [-115.12371, 50.398058], [-115.126842, 50.404149], [-115.12911, 50.405029], [-115.133129, 50.406757], [-115.133049, 50.409967], [-115.133404, 50.41307], [-115.134547, 50.415821], [-115.137595, 50.418424], [-115.134405, 50.421439], [-115.135816, 50.423805], [-115.134407, 50.424789], [-115.132068, 50.428393], [-115.120408, 50.43771], [-115.119488, 50.441604], [-115.123529, 50.442531], [-115.130371, 50.445643], [-115.13392, 50.449082], [-115.137303, 50.452243], [-115.137556, 50.456009], [-115.140211, 50.457115], [-115.139125, 50.460731], [-115.139521, 50.462229], [-115.143559, 50.46523], [-115.146668, 50.465428], [-115.160109, 50.473308], [-115.163605, 50.479153], [-115.163957, 50.48162], [-115.163097, 50.488532], [-115.161442, 50.492448], [-115.163351, 50.495013], [-115.164787, 50.502839], [-115.163982, 50.508382], [-115.164203, 50.510004], [-115.166757, 50.51281], [-115.170846, 50.514842], [-115.173974, 50.519023], [-115.177113, 50.519055], [-115.181748, 50.520953], [-115.188052, 50.518777], [-115.190059, 50.520042], [-115.191711, 50.52259], [-115.194806, 50.524625], [-115.198136, 50.525805], [-115.202389, 50.526441], [-115.205954, 50.528257], [-115.206083, 50.528091], [-115.208137, 50.527823], [-115.213259, 50.532335], [-115.216884, 50.536508], [-115.221036, 50.536961], [-115.222484, 50.539667], [-115.230988, 50.54488], [-115.231893, 50.550661], [-115.229603, 50.551458], [-115.228427, 50.554101], [-115.22969, 50.554968], [-115.229827, 50.559172], [-115.231425, 50.5609], [-115.234163, 50.56482], [-115.233656, 50.566121], [-115.234907, 50.56758], [-115.241913, 50.57122], [-115.239338, 50.574912], [-115.235015, 50.574794], [-115.231956, 50.577074], [-115.230184, 50.577508], [-115.236233, 50.58568], [-115.239654, 50.589198], [-115.243694, 50.58915], [-115.247337, 50.588139], [-115.251278, 50.589763], [-115.260058, 50.596324], [-115.264347, 50.596685], [-115.265897, 50.597717], [-115.2685, 50.597432], [-115.271921, 50.597888], [-115.277919, 50.601068], [-115.280429, 50.605516], [-115.284662, 50.608835], [-115.285925, 50.608171], [-115.287624, 50.608225], [-115.28946, 50.609423], [-115.290551, 50.609391], [-115.293629, 50.611109], [-115.295356, 50.61304], [-115.295235, 50.614366], [-115.297386, 50.617607], [-115.298234, 50.620226], [-115.298019, 50.624754], [-115.296869, 50.626215], [-115.300154, 50.625526], [-115.305216, 50.625932], [-115.310099, 50.627265], [-115.311454, 50.628581], [-115.311805, 50.63038], [-115.309538, 50.631526], [-115.310141, 50.635265], [-115.31305, 50.637614], [-115.311947, 50.638238], [-115.303026, 50.638191], [-115.299604, 50.639266], [-115.294827, 50.639026], [-115.288435, 50.637649], [-115.285459, 50.63885], [-115.282059, 50.646987], [-115.277507, 50.648339], [-115.275235, 50.647954], [-115.274157, 50.648925], [-115.277945, 50.650588], [-115.28135, 50.653758], [-115.282458, 50.656195], [-115.281702, 50.657087], [-115.285878, 50.660304], [-115.284887, 50.661725], [-115.282258, 50.663194], [-115.283689, 50.665553], [-115.287928, 50.668872], [-115.290498, 50.672188], [-115.298379, 50.683333], [-115.30084, 50.69074], [-115.297779, 50.694554], [-115.293624, 50.698401], [-115.296808, 50.699977], [-115.301618, 50.700565], [-115.306293, 50.704897], [-115.308809, 50.707815], [-115.311043, 50.712098], [-115.314357, 50.71541], [-115.314695, 50.71627], [-115.31359, 50.716894], [-115.310704, 50.721609], [-115.312301, 50.723928], [-115.313483, 50.724345], [-115.315127, 50.725827], [-115.318299, 50.726463], [-115.319816, 50.726209], [-115.320656, 50.724235], [-115.32421, 50.723364], [-115.32642, 50.722114], [-115.327613, 50.721939], [-115.33304, 50.724143], [-115.335129, 50.72422], [-115.335947, 50.72343], [-115.339219, 50.722055], [-115.340212, 50.722232], [-115.346214, 50.722093], [-115.349909, 50.721256], [-115.354559, 50.722713], [-115.357437, 50.721443], [-115.358977, 50.721065], [-115.363441, 50.717859], [-115.367834, 50.717622], [-115.370159, 50.717261], [-115.369902, 50.714302], [-115.377587, 50.710936], [-115.375625, 50.707905], [-115.378926, 50.705335], [-115.38641, 50.707991], [-115.391225, 50.706454], [-115.394578, 50.707596], [-115.40054, 50.710836], [-115.403658, 50.712317], [-115.405399, 50.712451], [-115.410241, 50.711679], [-115.413802, 50.711258], [-115.416269, 50.712759], [-115.416636, 50.713723], [-115.416004, 50.714863], [-115.416399, 50.718772], [-115.416878, 50.719919], [-115.415806, 50.722151], [-115.411378, 50.723241], [-115.411924, 50.726129], [-115.410639, 50.727289], [-115.410814, 50.7283], [-115.413248, 50.730653], [-115.413535, 50.731847], [-115.412394, 50.733605], [-115.413087, 50.734558], [-115.414679, 50.735713], [-115.41626, 50.736307], [-115.417736, 50.736365], [-115.419553, 50.736621], [-115.4251, 50.743338], [-115.436284, 50.755732], [-115.444286, 50.754321], [-115.447046, 50.753219], [-115.448554, 50.753691], [-115.450532, 50.75475], [-115.452291, 50.756355], [-115.453586, 50.755754], [-115.454928, 50.755775], [-115.456185, 50.756379], [-115.457592, 50.757227], [-115.458897, 50.757186], [-115.460474, 50.756867], [-115.462378, 50.755272], [-115.463918, 50.753626], [-115.466714, 50.752584], [-115.470233, 50.751997], [-115.471255, 50.75294], [-115.474967, 50.754836], [-115.477641, 50.755582], [-115.481109, 50.755183], [-115.484711, 50.760693], [-115.484209, 50.764755], [-115.482567, 50.768044], [-115.481888, 50.768563], [-115.488584, 50.773872], [-115.494404, 50.778835], [-115.49464, 50.779762], [-115.494928, 50.780018], [-115.500181, 50.77724], [-115.50022, 50.776703], [-115.499709, 50.776264], [-115.499432, 50.775676], [-115.499026, 50.775455], [-115.498754, 50.775111], [-115.498667, 50.774696], [-115.498416, 50.774575], [-115.497881, 50.774011], [-115.497737, 50.773631], [-115.497368, 50.773258], [-115.497113, 50.773192], [-115.496866, 50.772936], [-115.49679, 50.772648], [-115.49615, 50.772262], [-115.495797, 50.772239], [-115.495456, 50.771785], [-115.494991, 50.771725], [-115.494558, 50.771522], [-115.494215, 50.77114], [-115.494224, 50.770861], [-115.49355, 50.770663], [-115.49341, 50.770553], [-115.493154, 50.770163], [-115.493318, 50.769949], [-115.493215, 50.769166], [-115.493506, 50.768954], [-115.493566, 50.768838], [-115.493334, 50.768546], [-115.493343, 50.768286], [-115.493179, 50.768068], [-115.493157, 50.767843], [-115.493274, 50.767746], [-115.493278, 50.767629], [-115.493678, 50.767095], [-115.494187, 50.766696], [-115.494258, 50.766275], [-115.494446, 50.766124], [-115.495076, 50.765953], [-115.495652, 50.765717], [-115.496179, 50.765625], [-115.496839, 50.765382], [-115.497084, 50.765249], [-115.497479, 50.764868], [-115.498619, 50.764244], [-115.499445, 50.764166], [-115.500292, 50.763861], [-115.500703, 50.763875], [-115.501658, 50.763698], [-115.502394, 50.763268], [-115.502789, 50.762877], [-115.502658, 50.762569], [-115.502967, 50.762187], [-115.504372, 50.761279], [-115.504563, 50.761065], [-115.504641, 50.760868], [-115.504578, 50.760625], [-115.504734, 50.759728], [-115.504741, 50.759061], [-115.505211, 50.758583], [-115.506053, 50.757919], [-115.50673, 50.757109], [-115.50683, 50.756706], [-115.507563, 50.755888], [-115.507582, 50.755348], [-115.508408, 50.754297], [-115.5088, 50.754059], [-115.509787, 50.753739], [-115.510335, 50.753423], [-115.51063, 50.753102], [-115.510989, 50.752477], [-115.511618, 50.75191], [-115.511588, 50.751496], [-115.512169, 50.751054], [-115.512457, 50.750455], [-115.513106, 50.749671], [-115.513511, 50.749425], [-115.513978, 50.748955], [-115.515187, 50.748429], [-115.515685, 50.748374], [-115.51587, 50.748304], [-115.516091, 50.748063], [-115.516962, 50.747401], [-115.517348, 50.746874], [-115.517984, 50.746487], [-115.518546, 50.745766], [-115.518787, 50.745751], [-115.518897, 50.745852], [-115.51908, 50.745899], [-115.519708, 50.745789], [-115.519914, 50.74554], [-115.520647, 50.745622], [-115.520951, 50.745437], [-115.521265, 50.745387], [-115.521738, 50.745195], [-115.521912, 50.74509], [-115.522148, 50.744805], [-115.52262, 50.744702], [-115.522912, 50.744365], [-115.52334, 50.744306], [-115.523656, 50.744175], [-115.524336, 50.744148], [-115.52512, 50.744014], [-115.525751, 50.743779], [-115.526078, 50.743775], [-115.526443, 50.743852], [-115.527113, 50.743788], [-115.527564, 50.743875], [-115.527908, 50.743752], [-115.528499, 50.743886], [-115.528938, 50.743883], [-115.529498, 50.744078], [-115.52987, 50.743993], [-115.530266, 50.74398], [-115.531414, 50.743087], [-115.532238, 50.743035], [-115.532959, 50.743079], [-115.533131, 50.743036], [-115.533205, 50.742929], [-115.533085, 50.742738], [-115.533371, 50.742599], [-115.533738, 50.742703], [-115.534036, 50.742643], [-115.534431, 50.742261], [-115.535517, 50.742463], [-115.535849, 50.742728], [-115.536205, 50.742653], [-115.536525, 50.742818], [-115.536724, 50.742829], [-115.536927, 50.742716], [-115.536783, 50.742327], [-115.536957, 50.742211], [-115.537439, 50.742181], [-115.53804, 50.742405], [-115.538199, 50.742335], [-115.538277, 50.742103], [-115.53842, 50.742042], [-115.539299, 50.742079], [-115.539702, 50.74231], [-115.539902, 50.742294], [-115.54014, 50.742359], [-115.540299, 50.74229], [-115.540449, 50.74204], [-115.540692, 50.741954], [-115.540959, 50.742029], [-115.541447, 50.742295], [-115.541687, 50.742307], [-115.542069, 50.741898], [-115.542336, 50.741929], [-115.542528, 50.742129], [-115.542726, 50.742194], [-115.543796, 50.741946], [-115.544218, 50.742025], [-115.544632, 50.741958], [-115.545095, 50.742089], [-115.545747, 50.742089], [-115.546154, 50.74222], [-115.546938, 50.742095], [-115.547124, 50.742015], [-115.547604, 50.742112], [-115.548019, 50.741945], [-115.548499, 50.742042], [-115.548741, 50.741991], [-115.549347, 50.741629], [-115.550423, 50.740762], [-115.550592, 50.74079], [-115.550921, 50.740686], [-115.551642, 50.740786], [-115.551968, 50.740763], [-115.551998, 50.7407], [-115.551722, 50.740472], [-115.551696, 50.740373], [-115.551999, 50.740232], [-115.552097, 50.740243], [-115.552262, 50.740407], [-115.552491, 50.740383], [-115.552653, 50.740178], [-115.552421, 50.739869], [-115.553281, 50.739547], [-115.553566, 50.739074], [-115.554356, 50.738696], [-115.554502, 50.738528], [-115.555042, 50.73849], [-115.555531, 50.738298], [-115.555961, 50.737664], [-115.557099, 50.737067], [-115.557137, 50.736762], [-115.557267, 50.736656], [-115.557712, 50.73648], [-115.558088, 50.736252], [-115.558788, 50.736107], [-115.56243, 50.734633], [-115.563143, 50.734102], [-115.563408, 50.733277], [-115.563926, 50.733024], [-115.564419, 50.732639], [-115.56487, 50.732486], [-115.565291, 50.732198], [-115.565641, 50.731333], [-115.566328, 50.730655], [-115.566411, 50.730054], [-115.566262, 50.729617], [-115.566867, 50.7288], [-115.566794, 50.728049], [-115.566941, 50.727652], [-115.567457, 50.727345], [-115.568033, 50.727277], [-115.569568, 50.727308], [-115.570481, 50.727066], [-115.570865, 50.726861], [-115.572179, 50.72579], [-115.572439, 50.725015], [-115.572515, 50.724158], [-115.573055, 50.723574], [-115.573045, 50.723319], [-115.572642, 50.722815], [-115.572662, 50.722472], [-115.573596, 50.721016], [-115.574032, 50.720612], [-115.575631, 50.71992], [-115.576418, 50.719686], [-115.57708, 50.719334], [-115.577583, 50.719152], [-115.578422, 50.718587], [-115.579064, 50.71837], [-115.580266, 50.718152], [-115.582154, 50.717167], [-115.58274, 50.716561], [-115.583381, 50.71614], [-115.585065, 50.715744], [-115.585456, 50.715497], [-115.585878, 50.71508], [-115.586601, 50.715089], [-115.587156, 50.715014], [-115.587941, 50.714817], [-115.588672, 50.714538], [-115.589664, 50.714055], [-115.592141, 50.713141], [-115.59298, 50.713043], [-115.593899, 50.713117], [-115.594607, 50.713099], [-115.598106, 50.712161], [-115.599129, 50.712047], [-115.599843, 50.712029], [-115.599731, 50.711102], [-115.600095, 50.711024], [-115.601003, 50.710963], [-115.602073, 50.711129], [-115.603026, 50.71106], [-115.603786, 50.711222], [-115.604594, 50.711654], [-115.6052, 50.711752], [-115.606054, 50.711626], [-115.606427, 50.711451], [-115.606649, 50.711156], [-115.607391, 50.71095], [-115.607969, 50.711011], [-115.609203, 50.711421], [-115.609799, 50.711474], [-115.610426, 50.711786], [-115.610782, 50.711701], [-115.611077, 50.7113], [-115.611364, 50.711231], [-115.613083, 50.711513], [-115.61342, 50.711634], [-115.613906, 50.711936], [-115.61465, 50.712161], [-115.614899, 50.712353], [-115.615447, 50.712529], [-115.616678, 50.712508], [-115.617763, 50.71226], [-115.618038, 50.712084], [-115.618875, 50.711995], [-115.620059, 50.712189], [-115.620769, 50.712135], [-115.621262, 50.712257], [-115.621554, 50.712477], [-115.621753, 50.712874], [-115.621975, 50.713083], [-115.622212, 50.713167], [-115.622738, 50.713165], [-115.623061, 50.71324], [-115.624135, 50.714278], [-115.624648, 50.714636], [-115.624893, 50.714962], [-115.625061, 50.715055], [-115.62548, 50.715248], [-115.62617, 50.715382], [-115.627137, 50.715762], [-115.628382, 50.715839], [-115.628872, 50.716016], [-115.629133, 50.716262], [-115.629388, 50.716759], [-115.629874, 50.717142], [-115.630113, 50.717695], [-115.630856, 50.718458], [-115.63136, 50.719148], [-115.631773, 50.719512], [-115.632211, 50.719527], [-115.633313, 50.719153], [-115.633994, 50.719125], [-115.634375, 50.719192], [-115.634709, 50.719375], [-115.63485, 50.719891], [-115.634988, 50.720009], [-115.635158, 50.720056], [-115.636079, 50.720049], [-115.636247, 50.720105], [-115.636442, 50.72026], [-115.636823, 50.720785], [-115.637406, 50.721143], [-115.638451, 50.721327], [-115.639144, 50.72129], [-115.639847, 50.721478], [-115.640357, 50.721475], [-115.641031, 50.721717], [-115.641652, 50.721841], [-115.641913, 50.722069], [-115.642334, 50.722254], [-115.643085, 50.722729], [-115.643574, 50.722933], [-115.643857, 50.723422], [-115.644673, 50.723684], [-115.645459, 50.724421], [-115.646298, 50.724763], [-115.646796, 50.72521], [-115.646963, 50.725275], [-115.648024, 50.725377], [-115.648524, 50.725679], [-115.648699, 50.726005], [-115.648837, 50.726115], [-115.649725, 50.726306], [-115.650192, 50.72632], [-115.650431, 50.726394], [-115.650624, 50.726612], [-115.650681, 50.727045], [-115.650993, 50.72756], [-115.650922, 50.728063], [-115.65125, 50.728445], [-115.651778, 50.728794], [-115.653033, 50.7286], [-115.653101, 50.728629], [-115.653543, 50.729569], [-115.653925, 50.730014], [-115.65401, 50.730051], [-115.654366, 50.729983], [-115.654636, 50.729996], [-115.654945, 50.730088], [-115.655278, 50.730291], [-115.655728, 50.730422], [-115.656341, 50.730798], [-115.656987, 50.731524], [-115.65779, 50.731668], [-115.658239, 50.731809], [-115.658839, 50.731689], [-115.659106, 50.731746], [-115.659477, 50.732148], [-115.659692, 50.733071], [-115.659874, 50.733338], [-115.660211, 50.733482], [-115.66176, 50.733666], [-115.662098, 50.73365], [-115.662863, 50.7341], [-115.663401, 50.735045], [-115.664684, 50.735856], [-115.665056, 50.736241]], [[-115.971398, 50.46113], [-115.971043, 50.461491], [-115.969481, 50.461688], [-115.968587, 50.461539], [-115.956722, 50.461514], [-115.951504, 50.461703], [-115.946776, 50.462109], [-115.946854, 50.460844], [-115.94766, 50.45535], [-115.948093, 50.447078], [-115.930417, 50.446957], [-115.896307, 50.447492], [-115.895036, 50.43572], [-115.893493, 50.413843], [-115.89259, 50.403183], [-115.891773, 50.396173], [-115.879232, 50.396124], [-115.858481, 50.395632], [-115.860448, 50.366994], [-115.85923, 50.364428], [-115.858171, 50.361933], [-115.857409, 50.355754], [-115.859645, 50.355816], [-115.861418, 50.356469], [-115.870796, 50.355845], [-115.87115, 50.355759], [-115.871698, 50.355764], [-115.873107, 50.356245], [-115.873633, 50.356566], [-115.873754, 50.356819], [-115.873371, 50.35758], [-115.873606, 50.357662], [-115.87449, 50.357779], [-115.875005, 50.358027], [-115.875136, 50.358414], [-115.874941, 50.358953], [-115.875051, 50.359088], [-115.875217, 50.359143], [-115.876171, 50.359207], [-115.876511, 50.359139], [-115.876824, 50.35898], [-115.876941, 50.358783], [-115.87673, 50.358161], [-115.876755, 50.357684], [-115.877001, 50.357416], [-115.877416, 50.357132], [-115.87811, 50.356869], [-115.878391, 50.356863], [-115.879366, 50.357286], [-115.879827, 50.35739], [-115.882217, 50.35744], [-115.883573, 50.357695], [-115.884745, 50.358129], [-115.887679, 50.358283], [-115.888225, 50.358387], [-115.889523, 50.358769], [-115.891097, 50.359387], [-115.893118, 50.360369], [-115.894451, 50.361923], [-115.895354, 50.36264], [-115.89638, 50.364087], [-115.896308, 50.364242], [-115.895532, 50.364827], [-115.89553, 50.365078], [-115.895752, 50.365117], [-115.896064, 50.365316], [-115.896486, 50.365329], [-115.896778, 50.36543], [-115.897065, 50.365802], [-115.897225, 50.366217], [-115.897404, 50.366381], [-115.897628, 50.366364], [-115.89814, 50.366118], [-115.898408, 50.366138], [-115.899795, 50.367528], [-115.901237, 50.368441], [-115.902002, 50.369438], [-115.90215, 50.369727], [-115.902156, 50.370014], [-115.902032, 50.37048], [-115.90138, 50.371347], [-115.901092, 50.372252], [-115.900329, 50.373064], [-115.900145, 50.373116], [-115.899887, 50.373347], [-115.899708, 50.373714], [-115.899522, 50.373857], [-115.898995, 50.374112], [-115.898431, 50.374278], [-115.897336, 50.374196], [-115.896742, 50.374253], [-115.896247, 50.374365], [-115.895623, 50.374647], [-115.894449, 50.375526], [-115.893636, 50.375419], [-115.893209, 50.375438], [-115.893338, 50.375952], [-115.893284, 50.376571], [-115.892478, 50.377796], [-115.892381, 50.378403], [-115.892738, 50.378829], [-115.893902, 50.379776], [-115.895592, 50.381733], [-115.89645, 50.382264], [-115.897661, 50.382864], [-115.897962, 50.382876], [-115.89841, 50.382768], [-115.899209, 50.382277], [-115.899589, 50.382173], [-115.901422, 50.382167], [-115.902083, 50.382312], [-115.902616, 50.382691], [-115.903451, 50.383943], [-115.903556, 50.384346], [-115.903444, 50.384991], [-115.903771, 50.385367], [-115.904384, 50.385621], [-115.904989, 50.385698], [-115.906113, 50.386037], [-115.907712, 50.385891], [-115.909133, 50.386162], [-115.909763, 50.386749], [-115.911181, 50.38774], [-115.911537, 50.388113], [-115.911748, 50.38851], [-115.911922, 50.389421], [-115.91174, 50.389926], [-115.911278, 50.390145], [-115.910051, 50.390452], [-115.9097, 50.390685], [-115.909475, 50.390962], [-115.909458, 50.391177], [-115.909768, 50.391567], [-115.909341, 50.392242], [-115.909293, 50.392763], [-115.909123, 50.393337], [-115.90797, 50.39439], [-115.907777, 50.394821], [-115.90786, 50.395385], [-115.908511, 50.395868], [-115.908978, 50.396312], [-115.909183, 50.396584], [-115.909207, 50.396747], [-115.909189, 50.396872], [-115.908564, 50.397227], [-115.908276, 50.397484], [-115.90791, 50.398678], [-115.907886, 50.399099], [-115.907968, 50.399272], [-115.908231, 50.399444], [-115.909422, 50.399689], [-115.910785, 50.399766], [-115.910995, 50.399822], [-115.911856, 50.400243], [-115.912913, 50.400883], [-115.913601, 50.401492], [-115.915998, 50.401907], [-115.917672, 50.401892], [-115.918857, 50.401982], [-115.919587, 50.402241], [-115.921174, 50.40311], [-115.921969, 50.403255], [-115.923847, 50.403309], [-115.92583, 50.40352], [-115.926944, 50.403196], [-115.92786, 50.403144], [-115.92849, 50.403348], [-115.929192, 50.403435], [-115.930196, 50.403795], [-115.930889, 50.404296], [-115.931341, 50.404786], [-115.93183, 50.404952], [-115.934224, 50.406152], [-115.934528, 50.406362], [-115.935136, 50.406934], [-115.935807, 50.40775], [-115.934564, 50.4079], [-115.933679, 50.40791], [-115.93273, 50.407478], [-115.931875, 50.407336], [-115.931457, 50.407125], [-115.930884, 50.407039], [-115.93005, 50.407121], [-115.929785, 50.407101], [-115.929338, 50.40689], [-115.92895, 50.406608], [-115.928459, 50.406558], [-115.927881, 50.406544], [-115.927497, 50.406747], [-115.927059, 50.406824], [-115.926928, 50.407011], [-115.925081, 50.407165], [-115.924798, 50.40727], [-115.924423, 50.407645], [-115.924342, 50.408185], [-115.923698, 50.409284], [-115.923042, 50.409612], [-115.92297, 50.409735], [-115.92298, 50.409862], [-115.923702, 50.410318], [-115.923879, 50.410599], [-115.92386, 50.410788], [-115.923525, 50.411298], [-115.923935, 50.411238], [-115.924446, 50.410955], [-115.924984, 50.410806], [-115.925248, 50.411007], [-115.925563, 50.411433], [-115.92595, 50.411734], [-115.926711, 50.412927], [-115.92661, 50.413061], [-115.926367, 50.413176], [-115.926359, 50.413572], [-115.927276, 50.414075], [-115.927343, 50.414192], [-115.927335, 50.414598], [-115.927458, 50.414779], [-115.927705, 50.415068], [-115.928094, 50.415314], [-115.928201, 50.415541], [-115.92868, 50.416112], [-115.929234, 50.416512], [-115.929591, 50.416956], [-115.929615, 50.417083], [-115.929281, 50.417485], [-115.92928, 50.41761], [-115.929376, 50.417664], [-115.929602, 50.417667], [-115.930056, 50.417509], [-115.930534, 50.417486], [-115.932133, 50.418482], [-115.932961, 50.41911], [-115.934201, 50.419742], [-115.935792, 50.420386], [-115.93612, 50.42082], [-115.935929, 50.421115], [-115.935527, 50.421517], [-115.935057, 50.421737], [-115.934899, 50.421907], [-115.93502, 50.422123], [-115.935339, 50.422316], [-115.935916, 50.422357], [-115.936031, 50.422304], [-115.936626, 50.421445], [-115.936783, 50.421303], [-115.937067, 50.42126], [-115.938018, 50.421485], [-115.938605, 50.421733], [-115.938937, 50.421979], [-115.939319, 50.422576], [-115.939746, 50.422966], [-115.9406, 50.423119], [-115.941648, 50.423533], [-115.941978, 50.423878], [-115.942493, 50.424161], [-115.942765, 50.424586], [-115.943055, 50.424814], [-115.943429, 50.425051], [-115.944808, 50.425702], [-115.945347, 50.426184], [-115.945792, 50.42643], [-115.94586, 50.426548], [-115.945354, 50.426507], [-115.944557, 50.426312], [-115.943881, 50.426278], [-115.943891, 50.42644], [-115.944083, 50.426658], [-115.944682, 50.426978], [-115.945045, 50.427071], [-115.945568, 50.427058], [-115.946064, 50.426864], [-115.946388, 50.42693], [-115.948362, 50.428001], [-115.949311, 50.428989], [-115.949798, 50.429291], [-115.950378, 50.429781], [-115.952397, 50.430771], [-115.953265, 50.43104], [-115.954546, 50.431681], [-115.954972, 50.432171], [-115.956159, 50.433269], [-115.957502, 50.43428], [-115.958314, 50.435142], [-115.959468, 50.43589], [-115.959839, 50.436226], [-115.961232, 50.437587], [-115.962719, 50.439174], [-115.963584, 50.440152], [-115.963786, 50.440577], [-115.963952, 50.440705], [-115.965086, 50.441038], [-115.966123, 50.441263], [-115.967297, 50.441733], [-115.968116, 50.44228], [-115.968543, 50.442714], [-115.96954, 50.443479], [-115.970361, 50.443874], [-115.971621, 50.444936], [-115.972005, 50.445381], [-115.972088, 50.445436], [-115.972327, 50.445446], [-115.972578, 50.445566], [-115.973396, 50.446175], [-115.974483, 50.446769], [-115.974965, 50.447286], [-115.975462, 50.447696], [-115.977299, 50.448665], [-115.977422, 50.448873], [-115.977233, 50.449169], [-115.977414, 50.449296], [-115.978365, 50.449611], [-115.97904, 50.449643], [-115.979469, 50.449906], [-115.980283, 50.450176], [-115.980911, 50.450459], [-115.981159, 50.450615], [-115.981602, 50.451069], [-115.981769, 50.451142], [-115.98216, 50.451253], [-115.983146, 50.451253], [-115.983831, 50.451583], [-115.984134, 50.451847], [-115.983907, 50.452563], [-115.983918, 50.453409], [-115.984097, 50.454184], [-115.984245, 50.454302], [-115.970632, 50.454142], [-115.971398, 50.46113]], [[-115.834403, 50.189235], [-115.825939, 50.193577], [-115.816355, 50.192709], [-115.815341, 50.184239], [-115.807338, 50.183406], [-115.807679, 50.164721], [-115.807522, 50.164739], [-115.806897, 50.164526], [-115.805972, 50.164021], [-115.805272, 50.163429], [-115.804677, 50.163172], [-115.804375, 50.162926], [-115.803982, 50.1624], [-115.803228, 50.161763], [-115.802719, 50.161389], [-115.802301, 50.161172], [-115.790221, 50.161812], [-115.783755, 50.161571], [-115.783337, 50.153664], [-115.784867, 50.153843], [-115.785992, 50.153201], [-115.78634, 50.151001], [-115.78662, 50.150796], [-115.787879, 50.150793], [-115.792092, 50.151298], [-115.800766, 50.147834], [-115.801393, 50.147532], [-115.803398, 50.145946], [-115.805297, 50.144651], [-115.808062, 50.143], [-115.810029, 50.141909], [-115.815096, 50.139305], [-115.817273, 50.138039], [-115.819697, 50.136146], [-115.821004, 50.138023], [-115.823137, 50.14159], [-115.823427, 50.141969], [-115.824385, 50.142825], [-115.825966, 50.143921], [-115.826616, 50.144501], [-115.826763, 50.145192], [-115.826414, 50.14582], [-115.825907, 50.146302], [-115.83045, 50.149683], [-115.833109, 50.151134], [-115.837328, 50.153819], [-115.842884, 50.158033], [-115.847014, 50.163319], [-115.847709, 50.164408], [-115.851997, 50.165188], [-115.860556, 50.16555], [-115.859518, 50.170409], [-115.854296, 50.170428], [-115.850213, 50.170355], [-115.834403, 50.189235]]]]}, "properties": {"name": "East Kootenay F", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "East Kootenay F", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901046", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.219087, 51.294504], [-116.220528, 51.29499], [-116.223223, 51.298131], [-116.226633, 51.299746], [-116.227106, 51.301538], [-116.228469, 51.301901], [-116.23267, 51.30176], [-116.236019, 51.302754], [-116.243384, 51.301387], [-116.245509, 51.302407], [-116.248982, 51.304998], [-116.256758, 51.308128], [-116.259975, 51.309792], [-116.26802, 51.311934], [-116.269101, 51.316155], [-116.274605, 51.319436], [-116.274805, 51.328164], [-116.278898, 51.329252], [-116.281277, 51.330137], [-116.282607, 51.331502], [-116.305197, 51.325384], [-116.304898, 51.32492], [-116.303651, 51.312847], [-116.300818, 51.302327], [-116.290239, 51.290845], [-116.296575, 51.261694], [-116.280571, 51.25398], [-116.262238, 51.243008], [-116.263112, 51.226593], [-116.264503, 51.225637], [-116.264688, 51.224965], [-116.263259, 51.22385], [-116.263368, 51.221799], [-116.286175, 51.211424], [-116.301096, 51.208655], [-116.327099, 51.214612], [-116.335097, 51.20844], [-116.346472, 51.207781], [-116.346103, 51.203036], [-116.34617, 51.203035], [-116.343959, 51.19956], [-116.344668, 51.197794], [-116.343563, 51.196056], [-116.343402, 51.192204], [-116.341389, 51.188679], [-116.338667, 51.185479], [-116.339054, 51.185227], [-116.33212, 51.180609], [-116.315728, 51.182452], [-116.310215, 51.181845], [-116.297545, 51.179968], [-116.291433, 51.173804], [-116.290912, 51.166211], [-116.289223, 51.157218], [-116.284347, 51.151387], [-116.282418, 51.149644], [-116.280414, 51.150003], [-116.277775, 51.149185], [-116.274354, 51.149902], [-116.273055, 51.149339], [-116.272162, 51.148673], [-116.268043, 51.147374], [-116.265203, 51.146977], [-116.262119, 51.145825], [-116.258465, 51.143404], [-116.256457, 51.140789], [-116.261022, 51.13504], [-116.264516, 51.129158], [-116.262165, 51.126552], [-116.276167, 51.117238], [-116.291921, 51.108999], [-116.30821, 51.102824], [-116.318474, 51.095462], [-116.340519, 51.068242], [-116.338765, 51.067777], [-116.337597, 51.067599], [-116.339787, 51.064353], [-116.342417, 51.06371], [-116.352966, 51.062386], [-116.364035, 51.060871], [-116.370987, 51.059791], [-116.379389, 51.058017], [-116.384409, 51.054999], [-116.387077, 51.055393], [-116.391062, 51.055582], [-116.392612, 51.054877], [-116.393628, 51.053543], [-116.394654, 51.051769], [-116.395708, 51.051114], [-116.398746, 51.049794], [-116.4006, 51.048318], [-116.401908, 51.046842], [-116.404683, 51.045031], [-116.406363, 51.04322], [-116.412787, 51.039825], [-116.418476, 51.036586], [-116.418559, 51.032647], [-116.407327, 51.027916], [-116.403614, 51.020109], [-116.384593, 51.011865], [-116.380689, 51.00718], [-116.380776, 50.999238], [-116.380986, 50.999236], [-116.3804, 50.999057], [-116.365349, 50.991349], [-116.346924, 50.978996], [-116.337042, 50.975477], [-116.334409, 50.97224], [-116.325417, 50.962196], [-116.318327, 50.949077], [-116.353091, 50.94869], [-116.361698, 50.948691], [-116.393223, 50.949287], [-116.407517, 50.949633], [-116.418989, 50.949694], [-116.432962, 50.949887], [-116.444366, 50.949822], [-116.443655, 50.935197], [-116.454252, 50.935787], [-116.463564, 50.93649], [-116.46489, 50.938635], [-116.488189, 50.940517], [-116.492524, 50.938071], [-116.497515, 50.938694], [-116.499162, 50.935883], [-116.499748, 50.936137], [-116.499726, 50.934927], [-116.521416, 50.93512], [-116.535384, 50.935136], [-116.535716, 50.920973], [-116.567014, 50.920572], [-116.621489, 50.920716], [-116.62873, 50.920674], [-116.632137, 50.918585], [-116.636032, 50.911654], [-116.640249, 50.908454], [-116.672162, 50.889783], [-116.686406, 50.888472], [-116.692478, 50.890257], [-116.694266, 50.889667], [-116.697099, 50.889682], [-116.699112, 50.887291], [-116.701418, 50.88604], [-116.703339, 50.886478], [-116.708047, 50.885725], [-116.712261, 50.881922], [-116.713159, 50.880101], [-116.727091, 50.880277], [-116.733466, 50.876379], [-116.733583, 50.875414], [-116.728648, 50.871189], [-116.727969, 50.869217], [-116.727614, 50.8666], [-116.724239, 50.86365], [-116.723209, 50.854017], [-116.724168, 50.853207], [-116.730365, 50.853376], [-116.736684, 50.851455], [-116.742135, 50.851162], [-116.744086, 50.851872], [-116.74646, 50.847984], [-116.749376, 50.846992], [-116.754192, 50.846863], [-116.759929, 50.848367], [-116.763991, 50.847311], [-116.765346, 50.845743], [-116.764746, 50.844125], [-116.765173, 50.84364], [-116.764085, 50.841495], [-116.763462, 50.840069], [-116.753005, 50.830935], [-116.751359, 50.826087], [-116.749281, 50.823547], [-116.74877, 50.820691], [-116.745887, 50.816212], [-116.737637, 50.813232], [-116.738448, 50.810592], [-116.73924, 50.80861], [-116.737851, 50.806451], [-116.73997, 50.80263], [-116.748081, 50.796174], [-116.749524, 50.790847], [-116.749533, 50.784213], [-116.748429, 50.782727], [-116.745662, 50.779341], [-116.74644, 50.778484], [-116.745355, 50.771295], [-116.75189, 50.771091], [-116.752771, 50.770394], [-116.759865, 50.770137], [-116.762236, 50.768772], [-116.765202, 50.768093], [-116.767266, 50.768304], [-116.771957, 50.766738], [-116.772983, 50.765285], [-116.773615, 50.762806], [-116.773382, 50.761061], [-116.772839, 50.760356], [-116.775205, 50.75116], [-116.779, 50.749153], [-116.784791, 50.749113], [-116.787109, 50.746758], [-116.78834, 50.7459], [-116.789978, 50.745529], [-116.788749, 50.739473], [-116.78326, 50.737019], [-116.782448, 50.735482], [-116.783004, 50.734547], [-116.786359, 50.734067], [-116.795834, 50.729109], [-116.79655, 50.729302], [-116.78857, 50.721605], [-116.795256, 50.71255], [-116.780399, 50.69901], [-116.768955, 50.702078], [-116.749949, 50.693178], [-116.744362, 50.678094], [-116.727312, 50.674507], [-116.699205, 50.670815], [-116.678073, 50.672125], [-116.667, 50.681482], [-116.655667, 50.682211], [-116.65282, 50.670836], [-116.646374, 50.669784], [-116.625432, 50.66572], [-116.607622, 50.66855], [-116.602279, 50.653329], [-116.579617, 50.647276], [-116.578666, 50.634552], [-116.586973, 50.626286], [-116.594122, 50.619338], [-116.601437, 50.62074], [-116.603431, 50.625055], [-116.614392, 50.630851], [-116.621844, 50.614408], [-116.631344, 50.597429], [-116.654134, 50.598603], [-116.664108, 50.579585], [-116.667408, 50.568545], [-116.659532, 50.563737], [-116.66224, 50.554888], [-116.67286, 50.530993], [-116.69919, 50.518497], [-116.689197, 50.49237], [-116.704933, 50.479591], [-116.722436, 50.461509], [-116.70369, 50.453082], [-116.691321, 50.443104], [-116.68323, 50.430478], [-116.670816, 50.426618], [-116.65257, 50.420473], [-116.652325, 50.420225], [-116.647702, 50.424084], [-116.630075, 50.430459], [-116.616849, 50.430653], [-116.588679, 50.41816], [-116.562602, 50.405118], [-116.517336, 50.409214], [-116.507014, 50.411272], [-116.490209, 50.407736], [-116.465381, 50.410608], [-116.453208, 50.416229], [-116.456607, 50.426152], [-116.464067, 50.439034], [-116.44946, 50.458178], [-116.43721, 50.46675], [-116.420182, 50.468205], [-116.408381, 50.46568], [-116.403497, 50.457647], [-116.398579, 50.454118], [-116.390708, 50.45166], [-116.363357, 50.450974], [-116.349545, 50.455377], [-116.317814, 50.463066], [-116.316726, 50.47399], [-116.265716, 50.499339], [-116.221535, 50.512332], [-116.188275, 50.512865], [-116.186686, 50.512652], [-116.1736, 50.513054], [-116.120666, 50.512939], [-116.120501, 50.519084], [-116.121798, 50.526592], [-116.121555, 50.537877], [-116.094031, 50.53758], [-116.073152, 50.53809], [-116.071303, 50.538267], [-116.067998, 50.538424], [-116.066623, 50.538717], [-116.065043, 50.538269], [-116.056211, 50.538212], [-116.056079, 50.538462], [-116.056055, 50.53901], [-116.0559, 50.539132], [-116.055018, 50.53893], [-116.054926, 50.53884], [-116.052097, 50.538568], [-116.050866, 50.537868], [-116.040124, 50.537812], [-116.038846, 50.537844], [-116.039214, 50.538607], [-116.039365, 50.539517], [-116.039597, 50.539824], [-116.040058, 50.540079], [-116.041086, 50.54025], [-116.041772, 50.540498], [-116.04219, 50.54079], [-116.042671, 50.54137], [-116.043172, 50.54176], [-116.043928, 50.542045], [-116.044276, 50.542273], [-116.044845, 50.54279], [-116.045091, 50.543188], [-116.044889, 50.545461], [-116.044611, 50.546709], [-116.044127, 50.547586], [-116.043303, 50.548552], [-116.042803, 50.549536], [-116.042835, 50.550022], [-116.043365, 50.551061], [-116.043415, 50.551368], [-116.042951, 50.55193], [-116.042347, 50.55251], [-116.042043, 50.55292], [-116.041964, 50.55328], [-116.042247, 50.553965], [-116.042404, 50.555199], [-116.042589, 50.555867], [-116.043217, 50.557005], [-116.043548, 50.55806], [-116.043906, 50.558548], [-116.044476, 50.558939], [-116.045182, 50.559665], [-116.046248, 50.561383], [-116.022572, 50.560766], [-116.022592, 50.551509], [-116.021436, 50.551533], [-116.011918, 50.551297], [-116.012057, 50.547998], [-116.002529, 50.547932], [-115.997695, 50.54807], [-115.989112, 50.547665], [-115.952833, 50.562591], [-115.915322, 50.583356], [-115.916113, 50.589025], [-115.898669, 50.601301], [-115.889637, 50.596694], [-115.882526, 50.595874], [-115.876448, 50.595579], [-115.87389, 50.595939], [-115.86935, 50.596438], [-115.842899, 50.610783], [-115.809914, 50.610736], [-115.803485, 50.61058], [-115.803137, 50.611463], [-115.803061, 50.611901], [-115.803214, 50.61233], [-115.804097, 50.613428], [-115.804102, 50.613824], [-115.803814, 50.614072], [-115.803454, 50.614225], [-115.802634, 50.614389], [-115.80044, 50.615174], [-115.798345, 50.616356], [-115.797991, 50.617029], [-115.79795, 50.617436], [-115.798804, 50.618811], [-115.79978, 50.619968], [-115.8003, 50.620865], [-115.800851, 50.621101], [-115.801634, 50.620647], [-115.803318, 50.620224], [-115.804515, 50.620554], [-115.805659, 50.621271], [-115.807549, 50.623367], [-115.808295, 50.624745], [-115.8092, 50.626201], [-115.810454, 50.627568], [-115.811901, 50.628537], [-115.812182, 50.629284], [-115.811903, 50.630196], [-115.812017, 50.631149], [-115.813075, 50.632496], [-115.81462, 50.636104], [-115.817102, 50.639033], [-115.817609, 50.639256], [-115.818522, 50.639424], [-115.820694, 50.639252], [-115.821714, 50.639533], [-115.822046, 50.639766], [-115.820473, 50.639839], [-115.797639, 50.639817], [-115.796385, 50.639765], [-115.7955, 50.645862], [-115.796116, 50.650757], [-115.795968, 50.65088], [-115.795515, 50.651768], [-115.795649, 50.652312], [-115.795882, 50.652774], [-115.795787, 50.653388], [-115.795686, 50.653658], [-115.795339, 50.65392], [-115.794321, 50.654122], [-115.793692, 50.654337], [-115.793298, 50.654593], [-115.793204, 50.655391], [-115.794482, 50.655975], [-115.794944, 50.65652], [-115.795018, 50.656908], [-115.79494, 50.657334], [-115.795029, 50.658769], [-115.794867, 50.659065], [-115.794488, 50.659397], [-115.793921, 50.659669], [-115.79312, 50.659711], [-115.791888, 50.659923], [-115.791611, 50.660045], [-115.791327, 50.660323], [-115.791126, 50.660797], [-115.791137, 50.661207], [-115.791792, 50.662405], [-115.791864, 50.663334], [-115.791608, 50.663834], [-115.790623, 50.664685], [-115.789825, 50.665204], [-115.789252, 50.665719], [-115.788552, 50.666953], [-115.788765, 50.66728], [-115.789715, 50.667821], [-115.790138, 50.66826], [-115.790136, 50.668697], [-115.789726, 50.669182], [-115.789039, 50.669605], [-115.788732, 50.670291], [-115.788683, 50.670593], [-115.788838, 50.67074], [-115.788949, 50.671297], [-115.789191, 50.67167], [-115.790779, 50.672822], [-115.791119, 50.673374], [-115.791052, 50.673837], [-115.790871, 50.674175], [-115.790634, 50.674428], [-115.790222, 50.674544], [-115.789245, 50.674614], [-115.787859, 50.674561], [-115.786553, 50.674695], [-115.784589, 50.67446], [-115.783409, 50.67451], [-115.782683, 50.674695], [-115.782524, 50.675029], [-115.78267, 50.675969], [-115.782943, 50.676535], [-115.783336, 50.676807], [-115.784556, 50.677254], [-115.784728, 50.677405], [-115.784753, 50.677633], [-115.783766, 50.678171], [-115.783165, 50.679214], [-115.782503, 50.679701], [-115.78186, 50.679923], [-115.780845, 50.68001], [-115.778776, 50.680426], [-115.778511, 50.680614], [-115.778508, 50.680926], [-115.778857, 50.681567], [-115.778898, 50.681971], [-115.778061, 50.683469], [-115.777713, 50.683817], [-115.776946, 50.684124], [-115.776186, 50.68417], [-115.775626, 50.684048], [-115.775029, 50.683798], [-115.774649, 50.683821], [-115.774172, 50.684167], [-115.773366, 50.685245], [-115.771223, 50.686779], [-115.771113, 50.686994], [-115.771128, 50.687658], [-115.770972, 50.68793], [-115.770642, 50.688075], [-115.770117, 50.688159], [-115.768981, 50.688042], [-115.768626, 50.688137], [-115.768108, 50.688467], [-115.767688, 50.68876], [-115.766713, 50.68977], [-115.766092, 50.691405], [-115.765819, 50.69174], [-115.765206, 50.692218], [-115.764947, 50.692708], [-115.764653, 50.692825], [-115.763418, 50.693027], [-115.762444, 50.69343], [-115.761212, 50.694434], [-115.760748, 50.695048], [-115.760409, 50.695299], [-115.759766, 50.69544], [-115.757835, 50.695429], [-115.757014, 50.695335], [-115.755786, 50.695364], [-115.7548, 50.695523], [-115.753594, 50.695607], [-115.753186, 50.695722], [-115.752006, 50.695776], [-115.748147, 50.69713], [-115.747517, 50.697138], [-115.746254, 50.696974], [-115.745251, 50.696994], [-115.743528, 50.696679], [-115.741816, 50.696713], [-115.740928, 50.69684], [-115.737725, 50.697712], [-115.735635, 50.699066], [-115.73463, 50.700012], [-115.733248, 50.700607], [-115.732443, 50.700786], [-115.730336, 50.702054], [-115.730086, 50.703353], [-115.730369, 50.704722], [-115.7295, 50.70604], [-115.728805, 50.70623], [-115.72782, 50.706283], [-115.727217, 50.706445], [-115.726645, 50.706919], [-115.726495, 50.70757], [-115.726132, 50.708358], [-115.725527, 50.709172], [-115.725148, 50.709439], [-115.724362, 50.709733], [-115.722942, 50.709318], [-115.720752, 50.708939], [-115.720249, 50.70898], [-115.719788, 50.708917], [-115.717441, 50.708809], [-115.716707, 50.709077], [-115.716123, 50.709943], [-115.715485, 50.710191], [-115.714735, 50.71039], [-115.713306, 50.710495], [-115.713117, 50.710549], [-115.712754, 50.710863], [-115.712462, 50.71137], [-115.712534, 50.711686], [-115.711776, 50.712518], [-115.710657, 50.71307], [-115.710196, 50.713184], [-115.709633, 50.713553], [-115.708895, 50.714228], [-115.707555, 50.714633], [-115.706405, 50.715265], [-115.705087, 50.71633], [-115.703929, 50.716786], [-115.702496, 50.717031], [-115.700889, 50.717864], [-115.700568, 50.718126], [-115.700316, 50.718538], [-115.699771, 50.719005], [-115.699077, 50.720008], [-115.698396, 50.720649], [-115.69812, 50.721029], [-115.694926, 50.722345], [-115.693706, 50.723011], [-115.692966, 50.723543], [-115.691513, 50.723839], [-115.690738, 50.724176], [-115.689851, 50.724326], [-115.688003, 50.724908], [-115.68718, 50.725331], [-115.686253, 50.726602], [-115.684901, 50.727378], [-115.68394, 50.728167], [-115.6839, 50.728359], [-115.683113, 50.728863], [-115.682448, 50.729014], [-115.68186, 50.729051], [-115.680881, 50.729665], [-115.679457, 50.731057], [-115.679038, 50.731285], [-115.678157, 50.731564], [-115.677674, 50.731967], [-115.677243, 50.732979], [-115.676731, 50.733633], [-115.675538, 50.734018], [-115.672901, 50.734246], [-115.671413, 50.73472], [-115.669687, 50.735822], [-115.669186, 50.737], [-115.669286, 50.737357], [-115.668934, 50.737625], [-115.667991, 50.738738], [-115.6677, 50.739941], [-115.667932, 50.740108], [-115.667994, 50.740274], [-115.667531, 50.740047], [-115.666617, 50.738353], [-115.66555, 50.737374], [-115.665056, 50.736241], [-115.664684, 50.735856], [-115.663401, 50.735045], [-115.662863, 50.7341], [-115.662098, 50.73365], [-115.66176, 50.733666], [-115.660211, 50.733482], [-115.659874, 50.733338], [-115.659692, 50.733071], [-115.659477, 50.732148], [-115.659106, 50.731746], [-115.658839, 50.731689], [-115.658239, 50.731809], [-115.65779, 50.731668], [-115.656987, 50.731524], [-115.656341, 50.730798], [-115.655728, 50.730422], [-115.655278, 50.730291], [-115.654945, 50.730088], [-115.654636, 50.729996], [-115.654366, 50.729983], [-115.65401, 50.730051], [-115.653925, 50.730014], [-115.653543, 50.729569], [-115.653101, 50.728629], [-115.653033, 50.7286], [-115.651778, 50.728794], [-115.65125, 50.728445], [-115.650975, 50.728163], [-115.650913, 50.727848], [-115.650993, 50.72756], [-115.650681, 50.727045], [-115.650624, 50.726612], [-115.650431, 50.726394], [-115.650192, 50.72632], [-115.649725, 50.726306], [-115.648837, 50.726115], [-115.648699, 50.726005], [-115.648524, 50.725679], [-115.648024, 50.725377], [-115.646963, 50.725275], [-115.646796, 50.72521], [-115.646298, 50.724763], [-115.645459, 50.724421], [-115.644673, 50.723684], [-115.643857, 50.723422], [-115.643574, 50.722933], [-115.643085, 50.722729], [-115.642334, 50.722254], [-115.641913, 50.722069], [-115.641652, 50.721841], [-115.641031, 50.721717], [-115.640357, 50.721475], [-115.639847, 50.721478], [-115.639144, 50.72129], [-115.638451, 50.721327], [-115.637406, 50.721143], [-115.636823, 50.720785], [-115.636442, 50.72026], [-115.636247, 50.720105], [-115.636079, 50.720049], [-115.635158, 50.720056], [-115.634988, 50.720009], [-115.63485, 50.719891], [-115.634709, 50.719375], [-115.634375, 50.719192], [-115.633994, 50.719125], [-115.633313, 50.719153], [-115.632211, 50.719527], [-115.631773, 50.719512], [-115.63136, 50.719148], [-115.630856, 50.718458], [-115.630113, 50.717695], [-115.629874, 50.717142], [-115.629388, 50.716759], [-115.629133, 50.716262], [-115.628872, 50.716016], [-115.628382, 50.715839], [-115.627137, 50.715762], [-115.62617, 50.715382], [-115.62548, 50.715248], [-115.625061, 50.715055], [-115.624893, 50.714962], [-115.624648, 50.714636], [-115.624135, 50.714278], [-115.623061, 50.71324], [-115.622738, 50.713165], [-115.622212, 50.713167], [-115.621975, 50.713083], [-115.621753, 50.712874], [-115.621554, 50.712477], [-115.621262, 50.712257], [-115.620769, 50.712135], [-115.620059, 50.712189], [-115.618875, 50.711995], [-115.618038, 50.712084], [-115.617763, 50.71226], [-115.616678, 50.712508], [-115.615447, 50.712529], [-115.614899, 50.712353], [-115.61465, 50.712161], [-115.613906, 50.711936], [-115.61342, 50.711634], [-115.613083, 50.711513], [-115.611364, 50.711231], [-115.611077, 50.7113], [-115.610782, 50.711701], [-115.610426, 50.711786], [-115.609799, 50.711474], [-115.609203, 50.711421], [-115.607969, 50.711011], [-115.607391, 50.71095], [-115.606649, 50.711156], [-115.606427, 50.711451], [-115.606054, 50.711626], [-115.6052, 50.711752], [-115.604594, 50.711654], [-115.603786, 50.711222], [-115.603026, 50.71106], [-115.602073, 50.711129], [-115.601101, 50.710964], [-115.600095, 50.711024], [-115.599731, 50.711102], [-115.599843, 50.712029], [-115.599129, 50.712047], [-115.598106, 50.712161], [-115.594607, 50.713099], [-115.593899, 50.713117], [-115.59298, 50.713043], [-115.592141, 50.713141], [-115.589664, 50.714055], [-115.588672, 50.714538], [-115.587941, 50.714817], [-115.587156, 50.715014], [-115.586601, 50.715089], [-115.585878, 50.71508], [-115.585456, 50.715497], [-115.585065, 50.715744], [-115.583381, 50.71614], [-115.58274, 50.716561], [-115.582154, 50.717167], [-115.580266, 50.718152], [-115.579064, 50.71837], [-115.578422, 50.718587], [-115.577583, 50.719152], [-115.57708, 50.719334], [-115.576418, 50.719686], [-115.575631, 50.71992], [-115.574032, 50.720612], [-115.573596, 50.721016], [-115.572662, 50.722472], [-115.572642, 50.722815], [-115.573045, 50.723319], [-115.573055, 50.723574], [-115.572515, 50.724158], [-115.572439, 50.725015], [-115.572179, 50.72579], [-115.570865, 50.726861], [-115.570481, 50.727066], [-115.569568, 50.727308], [-115.568033, 50.727277], [-115.567457, 50.727345], [-115.566941, 50.727652], [-115.566794, 50.728049], [-115.566867, 50.7288], [-115.566262, 50.729617], [-115.566411, 50.730054], [-115.566328, 50.730655], [-115.565641, 50.731333], [-115.565291, 50.732198], [-115.56487, 50.732486], [-115.564419, 50.732639], [-115.563926, 50.733024], [-115.563408, 50.733277], [-115.563143, 50.734102], [-115.56243, 50.734633], [-115.558788, 50.736107], [-115.558088, 50.736252], [-115.557712, 50.73648], [-115.557267, 50.736656], [-115.557137, 50.736762], [-115.557099, 50.737067], [-115.555961, 50.737664], [-115.555531, 50.738298], [-115.555042, 50.73849], [-115.554502, 50.738528], [-115.554356, 50.738696], [-115.553566, 50.739074], [-115.553281, 50.739547], [-115.552421, 50.739869], [-115.552653, 50.740178], [-115.552491, 50.740383], [-115.552262, 50.740407], [-115.552097, 50.740243], [-115.551999, 50.740232], [-115.551696, 50.740373], [-115.551722, 50.740472], [-115.551998, 50.7407], [-115.551968, 50.740763], [-115.551642, 50.740786], [-115.550921, 50.740686], [-115.550592, 50.74079], [-115.550423, 50.740762], [-115.549347, 50.741629], [-115.548741, 50.741991], [-115.548499, 50.742042], [-115.548019, 50.741945], [-115.547604, 50.742112], [-115.547124, 50.742015], [-115.546938, 50.742095], [-115.546154, 50.74222], [-115.545747, 50.742089], [-115.545095, 50.742089], [-115.544632, 50.741958], [-115.544218, 50.742025], [-115.543796, 50.741946], [-115.542726, 50.742194], [-115.542528, 50.742129], [-115.542336, 50.741929], [-115.542069, 50.741898], [-115.541687, 50.742307], [-115.541447, 50.742295], [-115.540959, 50.742029], [-115.540692, 50.741954], [-115.540449, 50.74204], [-115.540299, 50.74229], [-115.54014, 50.742359], [-115.539902, 50.742294], [-115.539702, 50.74231], [-115.539299, 50.742079], [-115.53842, 50.742042], [-115.538277, 50.742103], [-115.538199, 50.742335], [-115.53804, 50.742405], [-115.537439, 50.742181], [-115.536957, 50.742211], [-115.536783, 50.742327], [-115.536927, 50.742716], [-115.536724, 50.742829], [-115.536525, 50.742818], [-115.536205, 50.742653], [-115.535849, 50.742728], [-115.535517, 50.742463], [-115.534431, 50.742261], [-115.534036, 50.742643], [-115.533738, 50.742703], [-115.533371, 50.742599], [-115.533085, 50.742738], [-115.533205, 50.742929], [-115.533131, 50.743036], [-115.532959, 50.743079], [-115.532238, 50.743035], [-115.531414, 50.743087], [-115.530266, 50.74398], [-115.52987, 50.743993], [-115.529498, 50.744078], [-115.528938, 50.743883], [-115.528499, 50.743886], [-115.527908, 50.743752], [-115.527564, 50.743875], [-115.527113, 50.743788], [-115.526443, 50.743852], [-115.526078, 50.743775], [-115.525751, 50.743779], [-115.52512, 50.744014], [-115.524336, 50.744148], [-115.523656, 50.744175], [-115.52334, 50.744306], [-115.522912, 50.744365], [-115.52262, 50.744702], [-115.522148, 50.744805], [-115.521912, 50.74509], [-115.521738, 50.745195], [-115.521265, 50.745387], [-115.520951, 50.745437], [-115.520647, 50.745622], [-115.519914, 50.74554], [-115.519708, 50.745789], [-115.51908, 50.745899], [-115.518897, 50.745852], [-115.518787, 50.745751], [-115.518546, 50.745766], [-115.517984, 50.746487], [-115.517348, 50.746874], [-115.516962, 50.747401], [-115.516091, 50.748063], [-115.51587, 50.748304], [-115.515685, 50.748374], [-115.515187, 50.748429], [-115.513978, 50.748955], [-115.513511, 50.749425], [-115.513106, 50.749671], [-115.512457, 50.750455], [-115.512169, 50.751054], [-115.511588, 50.751496], [-115.511618, 50.75191], [-115.510989, 50.752477], [-115.51063, 50.753102], [-115.510335, 50.753423], [-115.509787, 50.753739], [-115.5088, 50.754059], [-115.508408, 50.754297], [-115.507582, 50.755348], [-115.507563, 50.755888], [-115.50683, 50.756706], [-115.50673, 50.757109], [-115.506053, 50.757919], [-115.505211, 50.758583], [-115.504741, 50.759061], [-115.504734, 50.759728], [-115.504578, 50.760625], [-115.504641, 50.760868], [-115.504563, 50.761065], [-115.504372, 50.761279], [-115.502967, 50.762187], [-115.502658, 50.762569], [-115.502789, 50.762877], [-115.502394, 50.763268], [-115.501658, 50.763698], [-115.500703, 50.763875], [-115.500292, 50.763861], [-115.499445, 50.764166], [-115.498619, 50.764244], [-115.497479, 50.764868], [-115.497084, 50.765249], [-115.496839, 50.765382], [-115.496179, 50.765625], [-115.495566, 50.765744], [-115.495076, 50.765953], [-115.494374, 50.766159], [-115.494258, 50.766275], [-115.494187, 50.766696], [-115.493678, 50.767095], [-115.493157, 50.767843], [-115.493204, 50.768132], [-115.493343, 50.768286], [-115.493334, 50.768546], [-115.493567, 50.768784], [-115.493506, 50.768954], [-115.493215, 50.769166], [-115.493318, 50.769949], [-115.493154, 50.770163], [-115.49341, 50.770553], [-115.49355, 50.770663], [-115.494224, 50.770861], [-115.494215, 50.77114], [-115.494558, 50.771522], [-115.494991, 50.771725], [-115.495456, 50.771785], [-115.495797, 50.772239], [-115.49615, 50.772262], [-115.49679, 50.772648], [-115.496866, 50.772936], [-115.497113, 50.773192], [-115.497368, 50.773258], [-115.497737, 50.773631], [-115.497881, 50.774011], [-115.498416, 50.774575], [-115.498667, 50.774696], [-115.498754, 50.775111], [-115.499026, 50.775455], [-115.499432, 50.775676], [-115.499709, 50.776264], [-115.50022, 50.776703], [-115.500181, 50.77724], [-115.494928, 50.780018], [-115.497561, 50.782347], [-115.501116, 50.784248], [-115.50381, 50.7852], [-115.509595, 50.786304], [-115.512091, 50.786391], [-115.515805, 50.784488], [-115.515615, 50.781651], [-115.516941, 50.780198], [-115.527745, 50.785125], [-115.529162, 50.786886], [-115.53241, 50.788193], [-115.533079, 50.792883], [-115.535484, 50.795525], [-115.538583, 50.796589], [-115.542898, 50.795662], [-115.544637, 50.79488], [-115.547903, 50.796394], [-115.550872, 50.797067], [-115.551495, 50.799517], [-115.55285, 50.802524], [-115.555526, 50.803621], [-115.557889, 50.80367], [-115.560431, 50.80473], [-115.561134, 50.808568], [-115.560614, 50.810245], [-115.561443, 50.811588], [-115.565477, 50.813264], [-115.566478, 50.814706], [-115.561801, 50.821706], [-115.562319, 50.824886], [-115.560781, 50.826534], [-115.564259, 50.829017], [-115.564874, 50.832173], [-115.56635, 50.832582], [-115.572168, 50.836421], [-115.573094, 50.837741], [-115.578138, 50.840505], [-115.585568, 50.841551], [-115.59055, 50.843133], [-115.59583, 50.843938], [-115.601559, 50.844208], [-115.606562, 50.845643], [-115.60735, 50.84404], [-115.618053, 50.835719], [-115.621579, 50.835126], [-115.62359, 50.834064], [-115.626982, 50.833434], [-115.631388, 50.836777], [-115.634885, 50.837035], [-115.639356, 50.837968], [-115.641509, 50.839827], [-115.642985, 50.842207], [-115.642677, 50.846017], [-115.645397, 50.854356], [-115.644246, 50.855909], [-115.643904, 50.857332], [-115.644778, 50.858383], [-115.649465, 50.862712], [-115.648384, 50.863931], [-115.649065, 50.86503], [-115.651038, 50.865878], [-115.650627, 50.868446], [-115.650855, 50.872403], [-115.648932, 50.874149], [-115.642011, 50.875374], [-115.636008, 50.877004], [-115.634084, 50.878749], [-115.630077, 50.879109], [-115.628954, 50.87981], [-115.61691, 50.879416], [-115.612734, 50.885345], [-115.604454, 50.887255], [-115.599791, 50.886016], [-115.599855, 50.890436], [-115.592649, 50.892642], [-115.590206, 50.892472], [-115.582332, 50.889281], [-115.577858, 50.888346], [-115.571351, 50.890694], [-115.566586, 50.893069], [-115.562085, 50.894252], [-115.566444, 50.898244], [-115.567858, 50.899091], [-115.568629, 50.902139], [-115.572243, 50.905822], [-115.572204, 50.90738], [-115.575068, 50.907869], [-115.578183, 50.909845], [-115.578467, 50.913366], [-115.583162, 50.913754], [-115.584178, 50.915756], [-115.589689, 50.91566], [-115.595863, 50.916457], [-115.59992, 50.917882], [-115.601807, 50.919669], [-115.605823, 50.922196], [-115.609803, 50.926281], [-115.605448, 50.929683], [-115.605521, 50.933398], [-115.597731, 50.937015], [-115.597042, 50.939861], [-115.604743, 50.944013], [-115.610851, 50.946763], [-115.614598, 50.951189], [-115.611562, 50.957082], [-115.611677, 50.958885], [-115.618011, 50.963164], [-115.622016, 50.965483], [-115.625973, 50.970421], [-115.625522, 50.973738], [-115.628121, 50.977744], [-115.628279, 50.980875], [-115.631968, 50.980526], [-115.636236, 50.982006], [-115.64006, 50.985286], [-115.641581, 50.987375], [-115.642338, 50.99057], [-115.648321, 50.996064], [-115.648837, 50.997522], [-115.652125, 50.99868], [-115.654209, 50.998798], [-115.657445, 51.001309], [-115.660092, 51.001076], [-115.663368, 50.9997], [-115.669356, 50.999274], [-115.670566, 50.999961], [-115.671574, 51.001402], [-115.676046, 51.004099], [-115.677753, 51.0072], [-115.682481, 51.00941], [-115.688562, 51.013612], [-115.690523, 51.016579], [-115.69224, 51.019783], [-115.692282, 51.021464], [-115.69079, 51.024089], [-115.690469, 51.025367], [-115.692351, 51.028566], [-115.69474, 51.027198], [-115.69792, 51.025846], [-115.701224, 51.023617], [-115.702706, 51.022051], [-115.703795, 51.021287], [-115.706798, 51.020189], [-115.70956, 51.020139], [-115.711414, 51.020243], [-115.713619, 51.019837], [-115.715678, 51.01848], [-115.717136, 51.017413], [-115.726762, 51.018689], [-115.730535, 51.020078], [-115.733916, 51.02227], [-115.737365, 51.023317], [-115.73918, 51.02336], [-115.740037, 51.02491], [-115.738884, 51.026465], [-115.736377, 51.028358], [-115.735265, 51.029621], [-115.743112, 51.033947], [-115.748133, 51.03062], [-115.751468, 51.031483], [-115.754335, 51.033027], [-115.760282, 51.035921], [-115.761894, 51.037424], [-115.76484, 51.038737], [-115.767038, 51.039389], [-115.769263, 51.041516], [-115.772128, 51.046093], [-115.770441, 51.046795], [-115.769081, 51.047838], [-115.769824, 51.049205], [-115.771569, 51.051099], [-115.771617, 51.052427], [-115.772534, 51.053891], [-115.773408, 51.056002], [-115.773589, 51.05772], [-115.772078, 51.058167], [-115.766461, 51.059563], [-115.761291, 51.060778], [-115.759402, 51.063752], [-115.761486, 51.066901], [-115.758877, 51.069172], [-115.759055, 51.071244], [-115.753422, 51.074406], [-115.755313, 51.074924], [-115.757671, 51.075114], [-115.762047, 51.071912], [-115.768064, 51.069006], [-115.77241, 51.067009], [-115.776262, 51.066546], [-115.780607, 51.069909], [-115.78359, 51.069308], [-115.784296, 51.070614], [-115.789234, 51.072419], [-115.793809, 51.070787], [-115.802809, 51.069605], [-115.80384, 51.071606], [-115.803691, 51.073689], [-115.803967, 51.075737], [-115.806348, 51.07846], [-115.808016, 51.080585], [-115.810296, 51.082522], [-115.812283, 51.083368], [-115.812346, 51.08561], [-115.812785, 51.086488], [-115.816627, 51.084756], [-115.825518, 51.082683], [-115.825739, 51.081428], [-115.829484, 51.079367], [-115.833373, 51.075928], [-115.839012, 51.077416], [-115.84246, 51.076486], [-115.842896, 51.07807], [-115.843758, 51.07962], [-115.846147, 51.081282], [-115.847575, 51.081773], [-115.851681, 51.080819], [-115.857735, 51.079133], [-115.860261, 51.080479], [-115.861838, 51.082273], [-115.863026, 51.084517], [-115.86379, 51.086444], [-115.866782, 51.087815], [-115.867935, 51.089291], [-115.869192, 51.089331], [-115.870455, 51.08831], [-115.872509, 51.087656], [-115.874813, 51.087222], [-115.876166, 51.08759], [-115.878839, 51.086852], [-115.883021, 51.086019], [-115.884995, 51.08595], [-115.888474, 51.086493], [-115.890874, 51.086387], [-115.89339, 51.086112], [-115.894744, 51.086126], [-115.896478, 51.087811], [-115.898324, 51.090385], [-115.899417, 51.092653], [-115.899742, 51.093701], [-115.900902, 51.093764], [-115.902562, 51.092397], [-115.904484, 51.090999], [-115.904878, 51.089135], [-115.903153, 51.085332], [-115.903161, 51.083565], [-115.90386, 51.082896], [-115.907201, 51.084108], [-115.912098, 51.083519], [-115.916526, 51.083965], [-115.917763, 51.084149], [-115.920454, 51.083617], [-115.921849, 51.082986], [-115.923609, 51.08311], [-115.923875, 51.084244], [-115.924931, 51.086451], [-115.926645, 51.088634], [-115.930313, 51.090894], [-115.931442, 51.094636], [-115.932557, 51.096758], [-115.934219, 51.097613], [-115.941554, 51.096977], [-115.945402, 51.09792], [-115.948494, 51.099264], [-115.950537, 51.102143], [-115.949625, 51.103007], [-115.95045, 51.105554], [-115.950407, 51.106907], [-115.95278, 51.10942], [-115.953377, 51.110542], [-115.957265, 51.115183], [-115.959954, 51.11571], [-115.963904, 51.115568], [-115.967581, 51.116059], [-115.966529, 51.118654], [-115.967065, 51.120921], [-115.968302, 51.122165], [-115.97167, 51.122522], [-115.975153, 51.123415], [-115.979874, 51.124845], [-115.982236, 51.12503], [-115.984771, 51.126019], [-115.986978, 51.126314], [-115.991044, 51.126354], [-115.994745, 51.124931], [-115.996101, 51.124591], [-115.998522, 51.124337], [-115.998483, 51.124983], [-116.004466, 51.124682], [-116.004891, 51.125353], [-116.007446, 51.126549], [-116.008753, 51.126044], [-116.011288, 51.127739], [-116.012698, 51.130141], [-116.012694, 51.133321], [-116.013562, 51.135576], [-116.015612, 51.1381], [-116.00989, 51.143776], [-116.010446, 51.147664], [-116.010112, 51.150856], [-116.009567, 51.15283], [-116.009681, 51.154427], [-116.009447, 51.155122], [-116.007411, 51.156339], [-116.017508, 51.156138], [-116.019958, 51.157255], [-116.020924, 51.159485], [-116.025746, 51.16301], [-116.029526, 51.162768], [-116.030494, 51.163231], [-116.033535, 51.166072], [-116.036846, 51.170046], [-116.0345, 51.170777], [-116.023891, 51.176197], [-116.020646, 51.182594], [-116.021633, 51.184325], [-116.021727, 51.186422], [-116.021358, 51.18708], [-116.018778, 51.187444], [-116.016954, 51.188821], [-116.012958, 51.189611], [-116.00613, 51.190192], [-116.004151, 51.190971], [-116.001684, 51.192932], [-116.000024, 51.193948], [-115.999944, 51.19524], [-116.001336, 51.198496], [-116.003967, 51.202995], [-116.004372, 51.204166], [-116.004056, 51.20792], [-116.006383, 51.20875], [-116.006535, 51.210761], [-116.004921, 51.213003], [-116.002065, 51.215415], [-116.004971, 51.21822], [-116.007605, 51.222013], [-116.011215, 51.222381], [-116.016561, 51.223621], [-116.021416, 51.222405], [-116.025066, 51.221066], [-116.026679, 51.219885], [-116.049268, 51.227438], [-116.04991, 51.228172], [-116.049828, 51.228246], [-116.049854, 51.228363], [-116.050237, 51.228546], [-116.05969, 51.239235], [-116.065175, 51.247931], [-116.074265, 51.249112], [-116.081316, 51.251866], [-116.089338, 51.2519], [-116.091824, 51.250851], [-116.100818, 51.251701], [-116.111678, 51.253354], [-116.114652, 51.255363], [-116.114517, 51.256387], [-116.11946, 51.255391], [-116.122338, 51.257778], [-116.125138, 51.259337], [-116.134368, 51.260549], [-116.144149, 51.264735], [-116.148657, 51.264731], [-116.153239, 51.263434], [-116.154046, 51.268041], [-116.155742, 51.270514], [-116.157418, 51.272779], [-116.159135, 51.275813], [-116.155598, 51.280771], [-116.152863, 51.283369], [-116.151568, 51.287161], [-116.155323, 51.288267], [-116.15799, 51.290142], [-116.159784, 51.292237], [-116.160181, 51.296027], [-116.164133, 51.297791], [-116.168021, 51.297165], [-116.174147, 51.29739], [-116.179431, 51.295421], [-116.182153, 51.295442], [-116.182642, 51.29638], [-116.186421, 51.298399], [-116.188511, 51.30148], [-116.197723, 51.299652], [-116.200824, 51.296392], [-116.203368, 51.295254], [-116.206774, 51.296164], [-116.2099, 51.294879], [-116.219037, 51.291616], [-116.219087, 51.294504]], [[-116.081818, 50.646449], [-116.081837, 50.646887], [-116.081256, 50.647928], [-116.08078, 50.6485], [-116.0799, 50.649065], [-116.079117, 50.647099], [-116.075503, 50.640421], [-116.076609, 50.64027], [-116.07695, 50.637345], [-116.075178, 50.637588], [-116.072404, 50.637095], [-116.072184, 50.63325], [-116.065094, 50.633866], [-116.064589, 50.629594], [-116.063896, 50.627738], [-116.064167, 50.623316], [-116.067966, 50.623314], [-116.06798, 50.623249], [-116.069306, 50.623197], [-116.069443, 50.619165], [-116.068974, 50.617051], [-116.069009, 50.615436], [-116.069493, 50.609249], [-116.072801, 50.609596], [-116.075025, 50.610286], [-116.076272, 50.610746], [-116.077594, 50.61107], [-116.080062, 50.611432], [-116.080525, 50.611553], [-116.082719, 50.611427], [-116.083297, 50.611503], [-116.083773, 50.61165], [-116.084433, 50.611979], [-116.084946, 50.612469], [-116.085754, 50.613079], [-116.086636, 50.613436], [-116.08786, 50.613751], [-116.088391, 50.614115], [-116.088749, 50.614604], [-116.088887, 50.615441], [-116.089066, 50.615775], [-116.089522, 50.616319], [-116.090871, 50.617398], [-116.091225, 50.617455], [-116.092327, 50.617455], [-116.093519, 50.617186], [-116.094624, 50.617113], [-116.095574, 50.616931], [-116.096012, 50.616944], [-116.096363, 50.617055], [-116.096945, 50.61767], [-116.096983, 50.617878], [-116.096348, 50.618593], [-116.096069, 50.619076], [-116.096072, 50.619643], [-116.095827, 50.619946], [-116.095978, 50.620208], [-116.096748, 50.620601], [-116.097521, 50.620851], [-116.09807, 50.620953], [-116.099029, 50.621077], [-116.101263, 50.621041], [-116.101925, 50.621127], [-116.102531, 50.621293], [-116.103075, 50.621684], [-116.103789, 50.622991], [-116.101792, 50.622884], [-116.095816, 50.622814], [-116.094772, 50.6353], [-116.094706, 50.637037], [-116.092623, 50.63709], [-116.089616, 50.637034], [-116.089604, 50.637317], [-116.089821, 50.637638], [-116.090628, 50.638049], [-116.091853, 50.639175], [-116.092612, 50.640259], [-116.090946, 50.642395], [-116.088877, 50.642678], [-116.081818, 50.646449]]]]}, "properties": {"name": "East Kootenay G", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "East Kootenay G", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901048", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.048526, 49.001452], [-115.051869, 49.001365], [-115.052217, 49.001411], [-115.05233, 49.001788], [-115.052386, 49.002777], [-115.054411, 49.002671], [-115.063094, 49.002757], [-115.075678, 49.002702], [-115.074214, 49.027764], [-115.07372, 49.043146], [-115.073976, 49.075737], [-115.074132, 49.081251], [-115.074165, 49.086983], [-115.074577, 49.094147], [-115.078081, 49.094159], [-115.081725, 49.094039], [-115.085887, 49.094196], [-115.09542, 49.094171], [-115.107774, 49.094306], [-115.113315, 49.094537], [-115.12375, 49.095426], [-115.129754, 49.096251], [-115.129945, 49.092056], [-115.128602, 49.074185], [-115.128724, 49.072238], [-115.128573, 49.070636], [-115.128329, 49.048005], [-115.128362, 49.016381], [-115.128152, 49.000075], [-115.048045, 49.000049], [-115.048526, 49.001452]]]]}, "properties": {"name": "Tobacco Plains 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Tobacco Plains 2", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901801", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.589446, 49.538552], [-115.589152, 49.553712], [-115.611296, 49.554297], [-115.611531, 49.543179], [-115.606122, 49.542995], [-115.605915, 49.53944], [-115.600536, 49.539376], [-115.600335, 49.535889], [-115.589589, 49.53575], [-115.589446, 49.538552]]]]}, "properties": {"name": "Isidore's Ranch 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Isidore's Ranch 4", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901802", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.790896, 49.676472], [-115.796507, 49.676374], [-115.803074, 49.676383], [-115.813548, 49.676488], [-115.813101, 49.661259], [-115.810238, 49.661218], [-115.79015, 49.661297], [-115.790155, 49.653937], [-115.790234, 49.653568], [-115.790017, 49.652863], [-115.790303, 49.652551], [-115.790159, 49.652261], [-115.790131, 49.651729], [-115.790167, 49.64565], [-115.790058, 49.643877], [-115.790153, 49.638466], [-115.790216, 49.638391], [-115.790166, 49.637391], [-115.790074, 49.637336], [-115.790166, 49.636291], [-115.790106, 49.63195], [-115.790178, 49.631851], [-115.790017, 49.627406], [-115.790228, 49.626721], [-115.790264, 49.625294], [-115.79012, 49.624967], [-115.790243, 49.62448], [-115.790162, 49.623837], [-115.790262, 49.62204], [-115.790025, 49.621532], [-115.790257, 49.621109], [-115.790272, 49.619691], [-115.789841, 49.619707], [-115.789752, 49.619791], [-115.789238, 49.619866], [-115.788739, 49.619877], [-115.786602, 49.61976], [-115.786847, 49.62658], [-115.784744, 49.626035], [-115.782458, 49.625351], [-115.778341, 49.624308], [-115.778327, 49.624088], [-115.778142, 49.623656], [-115.777997, 49.613981], [-115.777537, 49.596795], [-115.777619, 49.596644], [-115.7775, 49.595781], [-115.786001, 49.595758], [-115.785868, 49.603639], [-115.790476, 49.603651], [-115.790126, 49.595805], [-115.790075, 49.588988], [-115.790374, 49.588136], [-115.790219, 49.588398], [-115.789667, 49.588506], [-115.788657, 49.588505], [-115.787506, 49.588052], [-115.786633, 49.587602], [-115.785871, 49.587036], [-115.78539, 49.586357], [-115.785182, 49.585868], [-115.785202, 49.583505], [-115.785755, 49.582971], [-115.785483, 49.582275], [-115.78324, 49.581079], [-115.782659, 49.580959], [-115.781918, 49.58064], [-115.780755, 49.580382], [-115.78043, 49.58024], [-115.779577, 49.580282], [-115.77892, 49.58117], [-115.778992, 49.581603], [-115.779256, 49.582154], [-115.779492, 49.583236], [-115.779446, 49.583937], [-115.779132, 49.584285], [-115.77867, 49.584558], [-115.777592, 49.585051], [-115.775833, 49.585626], [-115.775014, 49.585824], [-115.774208, 49.585878], [-115.770243, 49.585746], [-115.76872, 49.585784], [-115.766999, 49.585982], [-115.765095, 49.586321], [-115.764066, 49.586535], [-115.763089, 49.586821], [-115.762112, 49.587215], [-115.760371, 49.588222], [-115.75848, 49.58912], [-115.75774, 49.58939], [-115.75632, 49.589718], [-115.754569, 49.589977], [-115.753517, 49.589993], [-115.752951, 49.589942], [-115.752317, 49.589836], [-115.751604, 49.589621], [-115.751553, 49.5896], [-115.751674, 49.588912], [-115.750959, 49.588905], [-115.749343, 49.588715], [-115.747639, 49.588788], [-115.746446, 49.588963], [-115.744189, 49.589533], [-115.742513, 49.590152], [-115.741698, 49.590648], [-115.741029, 49.591324], [-115.740346, 49.591568], [-115.739785, 49.591858], [-115.739115, 49.592049], [-115.736852, 49.592385], [-115.73584, 49.592418], [-115.734481, 49.592575], [-115.732211, 49.593162], [-115.730475, 49.593916], [-115.72796, 49.595328], [-115.727316, 49.595608], [-115.726469, 49.596292], [-115.725976, 49.597141], [-115.72531, 49.597215], [-115.724725, 49.597352], [-115.723815, 49.597765], [-115.723453, 49.597797], [-115.722972, 49.597692], [-115.722194, 49.596802], [-115.721274, 49.596487], [-115.720323, 49.596332], [-115.719948, 49.596373], [-115.71896, 49.596641], [-115.718217, 49.596966], [-115.718073, 49.597198], [-115.718171, 49.597658], [-115.718454, 49.59793], [-115.718904, 49.598215], [-115.719244, 49.598974], [-115.719292, 49.59982], [-115.718746, 49.600579], [-115.718477, 49.600755], [-115.71803, 49.600921], [-115.717054, 49.601198], [-115.716402, 49.601262], [-115.716165, 49.601376], [-115.715946, 49.601267], [-115.71534, 49.601143], [-115.714956, 49.601003], [-115.714206, 49.600573], [-115.713889, 49.600525], [-115.71174, 49.60069], [-115.710711, 49.600885], [-115.710208, 49.601067], [-115.710033, 49.601399], [-115.710216, 49.601805], [-115.710474, 49.601979], [-115.710417, 49.60206], [-115.710459, 49.602546], [-115.71029, 49.602688], [-115.710283, 49.602895], [-115.710512, 49.60315], [-115.711127, 49.603434], [-115.711553, 49.604051], [-115.711143, 49.604947], [-115.710767, 49.605068], [-115.709838, 49.605085], [-115.708636, 49.605027], [-115.708489, 49.604863], [-115.70776, 49.604612], [-115.707743, 49.604738], [-115.708069, 49.605002], [-115.708135, 49.605138], [-115.708072, 49.605938], [-115.707546, 49.607002], [-115.706658, 49.607418], [-115.706908, 49.608372], [-115.705833, 49.610155], [-115.703377, 49.61143], [-115.701356, 49.611656], [-115.700443, 49.61183], [-115.700042, 49.61197], [-115.699335, 49.612538], [-115.69987, 49.613809], [-115.699456, 49.613945], [-115.698195, 49.614022], [-115.697755, 49.613908], [-115.697453, 49.61377], [-115.69679, 49.613286], [-115.696504, 49.612518], [-115.696354, 49.612454], [-115.696303, 49.612319], [-115.694306, 49.611954], [-115.692959, 49.611534], [-115.692193, 49.611767], [-115.691236, 49.611793], [-115.690733, 49.611977], [-115.690057, 49.612383], [-115.689451, 49.613129], [-115.688238, 49.613408], [-115.687145, 49.614038], [-115.686282, 49.614107], [-115.684881, 49.614697], [-115.683828, 49.616386], [-115.683751, 49.616846], [-115.683127, 49.617181], [-115.681712, 49.617587], [-115.681246, 49.617877], [-115.680513, 49.61802], [-115.679926, 49.618038], [-115.679278, 49.617745], [-115.678433, 49.617592], [-115.67738, 49.617206], [-115.675182, 49.616658], [-115.674038, 49.617085], [-115.672604, 49.618121], [-115.671241, 49.618185], [-115.667072, 49.617883], [-115.667121, 49.617392], [-115.666805, 49.616831], [-115.666512, 49.615919], [-115.666238, 49.615816], [-115.666158, 49.61568], [-115.666132, 49.61514], [-115.666205, 49.614935], [-115.666076, 49.614644], [-115.666373, 49.614413], [-115.666269, 49.614153], [-115.665943, 49.613907], [-115.665824, 49.613707], [-115.665352, 49.61326], [-115.664924, 49.613166], [-115.664778, 49.61294], [-115.664576, 49.61282], [-115.663913, 49.612695], [-115.663189, 49.612831], [-115.661806, 49.612833], [-115.660793, 49.612965], [-115.660344, 49.613103], [-115.66015, 49.613192], [-115.659612, 49.614049], [-115.658946, 49.614626], [-115.658215, 49.61503], [-115.657909, 49.615099], [-115.656449, 49.615352], [-115.655311, 49.615448], [-115.654966, 49.615406], [-115.654776, 49.61527], [-115.654671, 49.615026], [-115.654744, 49.614892], [-115.653682, 49.614694], [-115.653296, 49.614713], [-115.653044, 49.614782], [-115.652443, 49.615036], [-115.651822, 49.615398], [-115.650881, 49.61643], [-115.649809, 49.61711], [-115.649462, 49.617205], [-115.64855, 49.617139], [-115.64733, 49.61665], [-115.646835, 49.61658], [-115.645984, 49.616309], [-115.64506, 49.616199], [-115.644551, 49.616023], [-115.643995, 49.615657], [-115.643945, 49.61544], [-115.644005, 49.614821], [-115.643719, 49.614602], [-115.642485, 49.614181], [-115.641807, 49.614183], [-115.641329, 49.614402], [-115.641156, 49.614697], [-115.641893, 49.616054], [-115.64166, 49.616439], [-115.641164, 49.616919], [-115.64042, 49.617243], [-115.639569, 49.61744], [-115.639009, 49.617676], [-115.638439, 49.617832], [-115.638162, 49.617792], [-115.638027, 49.617682], [-115.637875, 49.617689], [-115.637717, 49.617823], [-115.637564, 49.617866], [-115.637233, 49.61788], [-115.636833, 49.617803], [-115.635946, 49.617453], [-115.635107, 49.61833], [-115.634197, 49.618739], [-115.633296, 49.619625], [-115.632849, 49.620876], [-115.633246, 49.621841], [-115.633681, 49.622543], [-115.635519, 49.623624], [-115.637811, 49.625138], [-115.641136, 49.626371], [-115.647471, 49.627172], [-115.647701, 49.626535], [-115.649832, 49.626861], [-115.649953, 49.626952], [-115.651352, 49.627445], [-115.652464, 49.627773], [-115.653662, 49.628004], [-115.654101, 49.628143], [-115.655967, 49.628867], [-115.656585, 49.629045], [-115.657496, 49.629604], [-115.658521, 49.63011], [-115.658691, 49.630534], [-115.659133, 49.631017], [-115.659579, 49.631922], [-115.659644, 49.632607], [-115.659633, 49.633532], [-115.659524, 49.633981], [-115.658526, 49.636515], [-115.658444, 49.636919], [-115.658358, 49.638033], [-115.658564, 49.638611], [-115.65892, 49.639308], [-115.659866, 49.640624], [-115.660553, 49.641351], [-115.661543, 49.642109], [-115.662124, 49.642664], [-115.664162, 49.64509], [-115.664722, 49.645896], [-115.665274, 49.647054], [-115.665573, 49.648263], [-115.665961, 49.649212], [-115.666406, 49.649667], [-115.667208, 49.650261], [-115.668249, 49.650677], [-115.67077, 49.651174], [-115.67674, 49.651251], [-115.679991, 49.651388], [-115.681412, 49.651629], [-115.682662, 49.65203], [-115.684413, 49.652319], [-115.685363, 49.652564], [-115.686057, 49.652563], [-115.687168, 49.652396], [-115.687932, 49.652386], [-115.688563, 49.652537], [-115.689607, 49.6529], [-115.690917, 49.653634], [-115.691462, 49.654046], [-115.691946, 49.654608], [-115.692249, 49.655152], [-115.692315, 49.6558], [-115.691872, 49.656794], [-115.691457, 49.657274], [-115.691265, 49.657704], [-115.691038, 49.657962], [-115.690485, 49.658424], [-115.689742, 49.658713], [-115.687763, 49.659184], [-115.686399, 49.659322], [-115.684753, 49.659808], [-115.684387, 49.660029], [-115.684073, 49.660321], [-115.683616, 49.660873], [-115.683099, 49.662001], [-115.683058, 49.662531], [-115.683116, 49.662918], [-115.683646, 49.664328], [-115.683756, 49.665409], [-115.684031, 49.6665], [-115.684767, 49.668038], [-115.685367, 49.668836], [-115.685578, 49.669279], [-115.686775, 49.670615], [-115.687604, 49.671246], [-115.688507, 49.671687], [-115.691004, 49.672606], [-115.691771, 49.672992], [-115.692777, 49.67322], [-115.694411, 49.673274], [-115.69638, 49.673683], [-115.697729, 49.674094], [-115.698208, 49.674315], [-115.699444, 49.675219], [-115.700027, 49.675739], [-115.700254, 49.676081], [-115.716717, 49.676086], [-115.733189, 49.676237], [-115.757396, 49.676353], [-115.772356, 49.676532], [-115.774571, 49.676526], [-115.775351, 49.676476], [-115.782779, 49.676597], [-115.789923, 49.676422], [-115.789925, 49.676569], [-115.790664, 49.676299], [-115.790896, 49.676472]]]]}, "properties": {"name": "Kootenay 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kootenay 1", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901803", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.946854, 50.460844], [-115.946776, 50.462109], [-115.951504, 50.461703], [-115.956722, 50.461514], [-115.968587, 50.461539], [-115.969481, 50.461688], [-115.971043, 50.461491], [-115.971398, 50.46113], [-115.970632, 50.454142], [-115.984245, 50.454302], [-115.984097, 50.454184], [-115.983918, 50.453409], [-115.983907, 50.452563], [-115.984134, 50.451847], [-115.983831, 50.451583], [-115.983146, 50.451253], [-115.98216, 50.451253], [-115.981769, 50.451142], [-115.981602, 50.451069], [-115.981159, 50.450615], [-115.980911, 50.450459], [-115.980283, 50.450176], [-115.979469, 50.449906], [-115.97904, 50.449643], [-115.978365, 50.449611], [-115.977414, 50.449296], [-115.977233, 50.449169], [-115.977422, 50.448873], [-115.977299, 50.448665], [-115.975462, 50.447696], [-115.974965, 50.447286], [-115.974483, 50.446769], [-115.973396, 50.446175], [-115.972578, 50.445566], [-115.972327, 50.445446], [-115.972088, 50.445436], [-115.972005, 50.445381], [-115.971621, 50.444936], [-115.970361, 50.443874], [-115.96954, 50.443479], [-115.968543, 50.442714], [-115.968116, 50.44228], [-115.967297, 50.441733], [-115.966123, 50.441263], [-115.965086, 50.441038], [-115.963952, 50.440705], [-115.963786, 50.440577], [-115.963584, 50.440152], [-115.962719, 50.439174], [-115.961232, 50.437587], [-115.959839, 50.436226], [-115.959468, 50.43589], [-115.958314, 50.435142], [-115.957502, 50.43428], [-115.956159, 50.433269], [-115.954972, 50.432171], [-115.954546, 50.431681], [-115.953265, 50.43104], [-115.952397, 50.430771], [-115.950378, 50.429781], [-115.949798, 50.429291], [-115.949311, 50.428989], [-115.948362, 50.428001], [-115.946388, 50.42693], [-115.946064, 50.426864], [-115.945568, 50.427058], [-115.945045, 50.427071], [-115.944682, 50.426978], [-115.944083, 50.426658], [-115.943891, 50.42644], [-115.943881, 50.426278], [-115.944557, 50.426312], [-115.945354, 50.426507], [-115.94586, 50.426548], [-115.945792, 50.42643], [-115.945347, 50.426184], [-115.944808, 50.425702], [-115.943429, 50.425051], [-115.943055, 50.424814], [-115.942765, 50.424586], [-115.942493, 50.424161], [-115.941978, 50.423878], [-115.941648, 50.423533], [-115.9406, 50.423119], [-115.939746, 50.422966], [-115.939319, 50.422576], [-115.938937, 50.421979], [-115.938605, 50.421733], [-115.938018, 50.421485], [-115.937067, 50.42126], [-115.936783, 50.421303], [-115.936626, 50.421445], [-115.936031, 50.422304], [-115.935916, 50.422357], [-115.935339, 50.422316], [-115.93502, 50.422123], [-115.934899, 50.421907], [-115.935057, 50.421737], [-115.935527, 50.421517], [-115.935929, 50.421115], [-115.93612, 50.42082], [-115.935792, 50.420386], [-115.934201, 50.419742], [-115.932961, 50.41911], [-115.932133, 50.418482], [-115.930534, 50.417486], [-115.930056, 50.417509], [-115.929602, 50.417667], [-115.929376, 50.417664], [-115.92928, 50.41761], [-115.929281, 50.417485], [-115.929615, 50.417083], [-115.929591, 50.416956], [-115.929234, 50.416512], [-115.92868, 50.416112], [-115.928201, 50.415541], [-115.928094, 50.415314], [-115.927705, 50.415068], [-115.927458, 50.414779], [-115.927335, 50.414598], [-115.927343, 50.414192], [-115.927276, 50.414075], [-115.926359, 50.413572], [-115.926367, 50.413176], [-115.92661, 50.413061], [-115.926711, 50.412927], [-115.92595, 50.411734], [-115.925563, 50.411433], [-115.925248, 50.411007], [-115.924984, 50.410806], [-115.924446, 50.410955], [-115.923935, 50.411238], [-115.923525, 50.411298], [-115.92386, 50.410788], [-115.923879, 50.410599], [-115.923702, 50.410318], [-115.92298, 50.409862], [-115.92297, 50.409735], [-115.923042, 50.409612], [-115.923698, 50.409284], [-115.924342, 50.408185], [-115.924423, 50.407645], [-115.924798, 50.40727], [-115.925081, 50.407165], [-115.926928, 50.407011], [-115.927059, 50.406824], [-115.927497, 50.406747], [-115.927881, 50.406544], [-115.928459, 50.406558], [-115.92895, 50.406608], [-115.929338, 50.40689], [-115.929785, 50.407101], [-115.93005, 50.407121], [-115.930884, 50.407039], [-115.931457, 50.407125], [-115.931875, 50.407336], [-115.93273, 50.407478], [-115.933679, 50.40791], [-115.934564, 50.4079], [-115.935807, 50.40775], [-115.935136, 50.406934], [-115.934528, 50.406362], [-115.934224, 50.406152], [-115.93183, 50.404952], [-115.931341, 50.404786], [-115.930889, 50.404296], [-115.930196, 50.403795], [-115.929192, 50.403435], [-115.92849, 50.403348], [-115.92786, 50.403144], [-115.926944, 50.403196], [-115.92583, 50.40352], [-115.923847, 50.403309], [-115.921969, 50.403255], [-115.921174, 50.40311], [-115.919587, 50.402241], [-115.918857, 50.401982], [-115.917672, 50.401892], [-115.915998, 50.401907], [-115.913601, 50.401492], [-115.912913, 50.400883], [-115.911856, 50.400243], [-115.910995, 50.399822], [-115.910785, 50.399766], [-115.909422, 50.399689], [-115.908231, 50.399444], [-115.907968, 50.399272], [-115.907886, 50.399099], [-115.90791, 50.398678], [-115.908276, 50.397484], [-115.908564, 50.397227], [-115.909189, 50.396872], [-115.909207, 50.396747], [-115.909183, 50.396584], [-115.908978, 50.396312], [-115.908511, 50.395868], [-115.90786, 50.395385], [-115.907777, 50.394821], [-115.90797, 50.39439], [-115.909123, 50.393337], [-115.909293, 50.392763], [-115.909341, 50.392242], [-115.909768, 50.391567], [-115.909458, 50.391177], [-115.909475, 50.390962], [-115.9097, 50.390685], [-115.910051, 50.390452], [-115.911278, 50.390145], [-115.91174, 50.389926], [-115.911922, 50.389421], [-115.911748, 50.38851], [-115.911537, 50.388113], [-115.911181, 50.38774], [-115.909763, 50.386749], [-115.909133, 50.386162], [-115.907712, 50.385891], [-115.906113, 50.386037], [-115.904989, 50.385698], [-115.904384, 50.385621], [-115.903771, 50.385367], [-115.903444, 50.384991], [-115.903556, 50.384346], [-115.903451, 50.383943], [-115.902616, 50.382691], [-115.902083, 50.382312], [-115.901422, 50.382167], [-115.899589, 50.382173], [-115.899209, 50.382277], [-115.89841, 50.382768], [-115.897962, 50.382876], [-115.897661, 50.382864], [-115.89645, 50.382264], [-115.895592, 50.381733], [-115.893902, 50.379776], [-115.892738, 50.378829], [-115.892381, 50.378403], [-115.892478, 50.377796], [-115.893284, 50.376571], [-115.893338, 50.375952], [-115.893209, 50.375438], [-115.893636, 50.375419], [-115.894449, 50.375526], [-115.895623, 50.374647], [-115.896247, 50.374365], [-115.896742, 50.374253], [-115.897336, 50.374196], [-115.898431, 50.374278], [-115.898995, 50.374112], [-115.899522, 50.373857], [-115.899708, 50.373714], [-115.899887, 50.373347], [-115.900145, 50.373116], [-115.900329, 50.373064], [-115.901092, 50.372252], [-115.90138, 50.371347], [-115.902032, 50.37048], [-115.902156, 50.370014], [-115.90215, 50.369727], [-115.902002, 50.369438], [-115.901237, 50.368441], [-115.899795, 50.367528], [-115.898408, 50.366138], [-115.89814, 50.366118], [-115.897628, 50.366364], [-115.897404, 50.366381], [-115.897225, 50.366217], [-115.897065, 50.365802], [-115.896778, 50.36543], [-115.896486, 50.365329], [-115.896064, 50.365316], [-115.895752, 50.365117], [-115.89553, 50.365078], [-115.895532, 50.364827], [-115.896308, 50.364242], [-115.89638, 50.364087], [-115.895354, 50.36264], [-115.894451, 50.361923], [-115.893118, 50.360369], [-115.891097, 50.359387], [-115.889523, 50.358769], [-115.888225, 50.358387], [-115.887679, 50.358283], [-115.884745, 50.358129], [-115.883573, 50.357695], [-115.882217, 50.35744], [-115.879827, 50.35739], [-115.879366, 50.357286], [-115.878391, 50.356863], [-115.87811, 50.356869], [-115.877416, 50.357132], [-115.877001, 50.357416], [-115.876755, 50.357684], [-115.87673, 50.358161], [-115.876941, 50.358783], [-115.876824, 50.35898], [-115.876511, 50.359139], [-115.876171, 50.359207], [-115.875217, 50.359143], [-115.875051, 50.359088], [-115.874941, 50.358953], [-115.875136, 50.358414], [-115.875005, 50.358027], [-115.87449, 50.357779], [-115.873606, 50.357662], [-115.873371, 50.35758], [-115.873754, 50.356819], [-115.873633, 50.356566], [-115.873107, 50.356245], [-115.871698, 50.355764], [-115.87115, 50.355759], [-115.870796, 50.355845], [-115.861418, 50.356469], [-115.859645, 50.355816], [-115.857409, 50.355754], [-115.858171, 50.361933], [-115.85923, 50.364428], [-115.860448, 50.366994], [-115.858481, 50.395632], [-115.879232, 50.396124], [-115.891773, 50.396173], [-115.89259, 50.403183], [-115.893493, 50.413843], [-115.895036, 50.43572], [-115.896307, 50.447492], [-115.930417, 50.446957], [-115.948093, 50.447078], [-115.94766, 50.45535], [-115.946854, 50.460844]]]]}, "properties": {"name": "Columbia Lake 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Columbia Lake 3", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901804", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.559699, 49.487942], [-115.559469, 49.492202], [-115.559961, 49.494969], [-115.562288, 49.494909], [-115.570881, 49.49504], [-115.570898, 49.488468], [-115.559637, 49.48788], [-115.559699, 49.487942]]]]}, "properties": {"name": "Cassimayooks (Mayook) 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Cassimayooks (Mayook) 5", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901805", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.995314, 50.541051], [-115.998329, 50.540994], [-116.012545, 50.541075], [-116.012057, 50.547998], [-116.011918, 50.551297], [-116.021436, 50.551533], [-116.022592, 50.551509], [-116.022572, 50.560766], [-116.046248, 50.561383], [-116.045182, 50.559665], [-116.044476, 50.558939], [-116.043906, 50.558548], [-116.043548, 50.55806], [-116.043217, 50.557005], [-116.042589, 50.555867], [-116.042404, 50.555199], [-116.042247, 50.553965], [-116.041964, 50.55328], [-116.042043, 50.55292], [-116.042347, 50.55251], [-116.042951, 50.55193], [-116.043415, 50.551368], [-116.043365, 50.551061], [-116.042835, 50.550022], [-116.042803, 50.549536], [-116.043303, 50.548552], [-116.044127, 50.547586], [-116.044611, 50.546709], [-116.044808, 50.546], [-116.045076, 50.543935], [-116.045091, 50.543188], [-116.044995, 50.542989], [-116.044276, 50.542273], [-116.04383, 50.541999], [-116.043394, 50.541879], [-116.04288, 50.54155], [-116.04219, 50.54079], [-116.041772, 50.540498], [-116.041086, 50.54025], [-116.040058, 50.540079], [-116.039597, 50.539824], [-116.039432, 50.53966], [-116.03931, 50.539354], [-116.039214, 50.538607], [-116.038902, 50.537912], [-116.038461, 50.537459], [-116.038084, 50.537221], [-116.037755, 50.536724], [-116.037436, 50.535732], [-116.037193, 50.534533], [-116.037032, 50.534192], [-116.036779, 50.534099], [-116.036269, 50.534211], [-116.03586, 50.534217], [-116.035455, 50.533962], [-116.034784, 50.532958], [-116.033417, 50.531544], [-116.032445, 50.531253], [-116.03116, 50.530331], [-116.030075, 50.528083], [-116.029964, 50.527261], [-116.02971, 50.526823], [-116.0294, 50.526513], [-116.028944, 50.526395], [-116.026845, 50.526046], [-116.024952, 50.524977], [-116.023711, 50.524132], [-116.023189, 50.523553], [-116.022936, 50.522098], [-116.022353, 50.521428], [-116.022073, 50.52081], [-116.022226, 50.520201], [-116.022486, 50.519905], [-116.022549, 50.519618], [-116.022129, 50.518827], [-116.021924, 50.518666], [-116.021004, 50.51829], [-116.020072, 50.517581], [-116.019644, 50.516155], [-116.019265, 50.51615], [-116.018634, 50.516014], [-116.018157, 50.515635], [-116.018071, 50.515478], [-116.014105, 50.515563], [-116.012077, 50.51552], [-116.010437, 50.515606], [-116.000505, 50.51541], [-116.00015, 50.515569], [-115.999964, 50.515756], [-115.999937, 50.516008], [-116.000354, 50.516538], [-115.999066, 50.515401], [-115.994633, 50.514695], [-115.995314, 50.541051]]]]}, "properties": {"name": "Shuswap", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Shuswap", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901806", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-115.766999, 49.585982], [-115.76872, 49.585784], [-115.770243, 49.585746], [-115.774208, 49.585878], [-115.775014, 49.585824], [-115.775833, 49.585626], [-115.777592, 49.585051], [-115.778977, 49.584391], [-115.779446, 49.583937], [-115.779505, 49.583776], [-115.779492, 49.583236], [-115.779256, 49.582154], [-115.778992, 49.581603], [-115.778936, 49.581089], [-115.779148, 49.580927], [-115.779577, 49.580282], [-115.78043, 49.58024], [-115.780956, 49.580427], [-115.781826, 49.576834], [-115.774829, 49.576321], [-115.774837, 49.577477], [-115.77001, 49.577035], [-115.769818, 49.580421], [-115.758479, 49.580715], [-115.758469, 49.58144], [-115.750767, 49.581569], [-115.750167, 49.583661], [-115.752484, 49.583036], [-115.752958, 49.58456], [-115.752435, 49.584632], [-115.752718, 49.585117], [-115.754047, 49.584911], [-115.754229, 49.585492], [-115.754381, 49.585716], [-115.754204, 49.587053], [-115.75457, 49.588621], [-115.754569, 49.589977], [-115.75632, 49.589718], [-115.75774, 49.58939], [-115.75848, 49.58912], [-115.760371, 49.588222], [-115.762112, 49.587215], [-115.763089, 49.586821], [-115.764066, 49.586535], [-115.766999, 49.585982]]]]}, "properties": {"name": "St. Mary's", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "St. Mary's", "economic_region_id": "5940", "census_division_code": "5901", "census_subdivision_code": "5901808", "regional_district_aka_census_division": "East Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.507276, 49.131026], [-116.517572, 49.1311], [-116.517589, 49.118593], [-116.52353, 49.118597], [-116.523554, 49.120842], [-116.52897, 49.120824], [-116.529368, 49.120717], [-116.529252, 49.120075], [-116.530309, 49.120024], [-116.53328, 49.120023], [-116.533458, 49.120032], [-116.533557, 49.120115], [-116.53408, 49.120137], [-116.53408, 49.119989], [-116.533854, 49.119982], [-116.533661, 49.11978], [-116.533556, 49.118934], [-116.533992, 49.118917], [-116.533928, 49.11848], [-116.533613, 49.118507], [-116.533351, 49.117189], [-116.537672, 49.116815], [-116.537612, 49.11618], [-116.537164, 49.116012], [-116.532553, 49.11323], [-116.531951, 49.112765], [-116.531499, 49.112294], [-116.52728, 49.104933], [-116.523938, 49.100754], [-116.523601, 49.100047], [-116.523427, 49.09931], [-116.523418, 49.099068], [-116.5286, 49.099496], [-116.530329, 49.095686], [-116.533351, 49.093411], [-116.533515, 49.090083], [-116.528992, 49.090153], [-116.529007, 49.091982], [-116.526351, 49.091852], [-116.526768, 49.095252], [-116.524664, 49.095262], [-116.52217, 49.090241], [-116.522105, 49.089891], [-116.522148, 49.088196], [-116.493522, 49.088306], [-116.494726, 49.09197], [-116.495155, 49.091936], [-116.495156, 49.092408], [-116.495368, 49.092681], [-116.495162, 49.094862], [-116.491124, 49.095232], [-116.489794, 49.095444], [-116.491852, 49.095443], [-116.492143, 49.095403], [-116.49626, 49.095473], [-116.495005, 49.098668], [-116.495182, 49.101371], [-116.495799, 49.106176], [-116.506093, 49.106435], [-116.506957, 49.107143], [-116.507276, 49.131026]]]]}, "properties": {"name": "Creston", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Creston", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903004", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.885309, 49.869327], [-116.880982, 49.810071], [-116.879044, 49.802007], [-116.880323, 49.791892], [-116.882481, 49.784132], [-116.884564, 49.749115], [-116.88562, 49.733953], [-116.886221, 49.716173], [-116.89011, 49.695412], [-116.89094, 49.690531], [-116.891953, 49.681621], [-116.897675, 49.661193], [-116.902683, 49.652035], [-116.902368, 49.651278], [-116.908211, 49.63721], [-116.901745, 49.626872], [-116.889284, 49.621642], [-116.881139, 49.618995], [-116.865978, 49.613609], [-116.85969, 49.609785], [-116.847892, 49.599061], [-116.837423, 49.589025], [-116.836379, 49.587954], [-116.832281, 49.581651], [-116.829441, 49.576792], [-116.828902, 49.575748], [-116.828231, 49.57483], [-116.826864, 49.572335], [-116.823258, 49.564474], [-116.820954, 49.560357], [-116.819454, 49.556519], [-116.814525, 49.546313], [-116.813387, 49.544217], [-116.813197, 49.538546], [-116.812909, 49.53614], [-116.812979, 49.53483], [-116.812728, 49.532239], [-116.812482, 49.530588], [-116.812495, 49.527644], [-116.81233, 49.523312], [-116.812212, 49.511089], [-116.8064, 49.477573], [-116.805639, 49.474956], [-116.835455, 49.473853], [-117.00406, 49.47341], [-117.068669, 49.472761], [-117.07521, 49.473512], [-117.079494, 49.473748], [-117.08869, 49.470894], [-117.100882, 49.464349], [-117.111868, 49.455628], [-117.117695, 49.448238], [-117.119094, 49.442178], [-117.120093, 49.435015], [-117.120948, 49.433101], [-117.121062, 49.432667], [-117.120669, 49.431446], [-117.110186, 49.426181], [-117.104198, 49.423928], [-117.10036, 49.418183], [-117.103733, 49.411165], [-117.105612, 49.402519], [-117.105878, 49.386971], [-117.098586, 49.383036], [-117.090585, 49.382614], [-117.081951, 49.385501], [-117.070402, 49.384027], [-117.063476, 49.382529], [-117.063372, 49.374038], [-117.05901, 49.367635], [-117.053998, 49.364514], [-117.062206, 49.350209], [-117.06335, 49.346013], [-117.064192, 49.341252], [-117.064539, 49.334746], [-117.068233, 49.328728], [-117.071577, 49.321596], [-117.070947, 49.315804], [-117.062858, 49.306899], [-117.063185, 49.305006], [-117.064518, 49.302886], [-117.067395, 49.299079], [-117.068019, 49.296466], [-117.067942, 49.294054], [-117.071232, 49.288256], [-117.061593, 49.283446], [-117.04679, 49.286678], [-117.039142, 49.29253], [-117.041038, 49.286307], [-117.041048, 49.280578], [-117.039373, 49.279894], [-117.033655, 49.276717], [-117.031458, 49.274626], [-117.02824, 49.270639], [-117.026836, 49.266414], [-117.02456, 49.26471], [-117.023743, 49.263641], [-117.021599, 49.262514], [-117.009759, 49.254141], [-117.011349, 49.246818], [-117.015235, 49.245808], [-117.017964, 49.244432], [-117.020973, 49.243494], [-117.023972, 49.243672], [-117.027428, 49.2421], [-117.030925, 49.239151], [-117.030821, 49.237646], [-117.029924, 49.235718], [-117.029848, 49.230135], [-117.033811, 49.229154], [-117.032524, 49.22486], [-117.033051, 49.222288], [-117.035793, 49.219287], [-117.037223, 49.218859], [-117.039968, 49.218333], [-117.042891, 49.217161], [-117.041027, 49.21618], [-117.040156, 49.2145], [-117.040926, 49.210457], [-117.043075, 49.208895], [-117.044533, 49.206966], [-117.045605, 49.204842], [-117.04408, 49.20347], [-117.047351, 49.202331], [-117.046744, 49.200963], [-117.047591, 49.199413], [-117.048054, 49.197156], [-117.046146, 49.195591], [-117.046749, 49.192934], [-117.049474, 49.191558], [-117.049905, 49.190589], [-117.049834, 49.189756], [-117.048047, 49.188072], [-117.045732, 49.186278], [-117.044684, 49.182772], [-117.044506, 49.180946], [-117.046002, 49.179902], [-117.044687, 49.178344], [-117.038291, 49.176802], [-117.038356, 49.174739], [-117.039166, 49.171793], [-117.040413, 49.170048], [-117.03862, 49.168612], [-117.035214, 49.167973], [-117.033655, 49.16644], [-117.031888, 49.165711], [-117.029392, 49.163988], [-117.029351, 49.162274], [-117.031697, 49.159635], [-117.033206, 49.158098], [-117.035066, 49.157062], [-117.038828, 49.156072], [-117.014465, 49.158389], [-116.990457, 49.162778], [-116.982869, 49.162417], [-116.981614, 49.162444], [-116.968658, 49.160409], [-116.958937, 49.160032], [-116.944154, 49.15476], [-116.943499, 49.157612], [-116.943421, 49.157659], [-116.945648, 49.166534], [-116.946058, 49.172519], [-116.94524, 49.177844], [-116.945157, 49.179958], [-116.944813, 49.181376], [-116.944035, 49.182921], [-116.941953, 49.184528], [-116.937628, 49.186019], [-116.936768, 49.185999], [-116.936161, 49.186063], [-116.93581, 49.186227], [-116.934566, 49.186369], [-116.932, 49.186227], [-116.929996, 49.18636], [-116.922177, 49.188267], [-116.918557, 49.188469], [-116.915566, 49.189274], [-116.907161, 49.19012], [-116.900468, 49.190249], [-116.895335, 49.192951], [-116.884709, 49.196842], [-116.873523, 49.203735], [-116.871179, 49.204627], [-116.8596, 49.197333], [-116.851119, 49.19108], [-116.838526, 49.179046], [-116.82826, 49.176831], [-116.807143, 49.187154], [-116.795101, 49.18866], [-116.77134, 49.194147], [-116.753419, 49.20431], [-116.729883, 49.205805], [-116.714908, 49.211242], [-116.713088, 49.211599], [-116.694609, 49.213851], [-116.682945, 49.219881], [-116.682355, 49.219942], [-116.681859, 49.220112], [-116.68074, 49.221288], [-116.679143, 49.222537], [-116.680622, 49.223403], [-116.682733, 49.225116], [-116.685891, 49.228368], [-116.686663, 49.229582], [-116.688465, 49.233254], [-116.688806, 49.235952], [-116.685997, 49.241241], [-116.684616, 49.249385], [-116.685379, 49.253034], [-116.686897, 49.254833], [-116.687024, 49.256696], [-116.687928, 49.257231], [-116.688638, 49.260702], [-116.688551, 49.266826], [-116.68805, 49.27749], [-116.692752, 49.287088], [-116.682774, 49.284307], [-116.67068, 49.284777], [-116.664362, 49.284334], [-116.663827, 49.283775], [-116.660651, 49.281964], [-116.660114, 49.281566], [-116.658224, 49.279461], [-116.657231, 49.27851], [-116.655766, 49.276703], [-116.654839, 49.275284], [-116.65375, 49.273233], [-116.653463, 49.272343], [-116.653539, 49.271724], [-116.652491, 49.269535], [-116.651851, 49.268504], [-116.651055, 49.266911], [-116.65036, 49.265308], [-116.649791, 49.263597], [-116.649141, 49.261069], [-116.649009, 49.260871], [-116.648513, 49.260993], [-116.647769, 49.26106], [-116.647041, 49.260976], [-116.646483, 49.260782], [-116.646063, 49.260553], [-116.644027, 49.258512], [-116.643175, 49.257986], [-116.6398, 49.256476], [-116.638166, 49.255576], [-116.63589, 49.254732], [-116.632647, 49.253878], [-116.632101, 49.253553], [-116.631263, 49.252838], [-116.630319, 49.25242], [-116.629778, 49.252083], [-116.628575, 49.2508], [-116.626667, 49.249378], [-116.62561, 49.248001], [-116.622256, 49.244406], [-116.621762, 49.243717], [-116.621197, 49.242692], [-116.620736, 49.242075], [-116.618248, 49.239719], [-116.617018, 49.238223], [-116.61651, 49.237434], [-116.616215, 49.236757], [-116.615383, 49.233309], [-116.615049, 49.232671], [-116.614542, 49.232201], [-116.612973, 49.231135], [-116.60992, 49.227967], [-116.608356, 49.227105], [-116.60793, 49.22681], [-116.604736, 49.223623], [-116.604536, 49.223273], [-116.604229, 49.222147], [-116.603861, 49.221524], [-116.60314, 49.2206], [-116.601928, 49.219532], [-116.601463, 49.218988], [-116.601236, 49.218325], [-116.601222, 49.217881], [-116.601413, 49.216838], [-116.601136, 49.216231], [-116.600745, 49.21587], [-116.600496, 49.215731], [-116.599804, 49.215483], [-116.598925, 49.215272], [-116.598327, 49.215021], [-116.59805, 49.21482], [-116.597629, 49.214315], [-116.596954, 49.212846], [-116.596559, 49.212278], [-116.595985, 49.211824], [-116.59308, 49.209996], [-116.59211, 49.209447], [-116.591699, 49.209055], [-116.59076, 49.206776], [-116.590668, 49.205222], [-116.589543, 49.202646], [-116.589142, 49.202261], [-116.588852, 49.202108], [-116.588318, 49.201932], [-116.587067, 49.201692], [-116.586315, 49.201358], [-116.585825, 49.200852], [-116.584913, 49.199228], [-116.584668, 49.19844], [-116.584626, 49.197783], [-116.584512, 49.197442], [-116.584264, 49.19706], [-116.583869, 49.196725], [-116.58346, 49.196519], [-116.582011, 49.196018], [-116.581565, 49.195651], [-116.581404, 49.195374], [-116.581017, 49.193218], [-116.581024, 49.192875], [-116.581164, 49.192396], [-116.581733, 49.191306], [-116.581697, 49.190659], [-116.581395, 49.190218], [-116.581082, 49.189968], [-116.580473, 49.189696], [-116.579744, 49.189566], [-116.578209, 49.18944], [-116.57784, 49.189355], [-116.574445, 49.18819], [-116.572959, 49.18792], [-116.572363, 49.187736], [-116.571527, 49.187202], [-116.569561, 49.185631], [-116.568472, 49.184917], [-116.564753, 49.182729], [-116.563618, 49.18223], [-116.562739, 49.181947], [-116.563043, 49.181672], [-116.563197, 49.177996], [-116.563129, 49.176911], [-116.56293, 49.17618], [-116.562697, 49.175689], [-116.561691, 49.174608], [-116.560337, 49.175274], [-116.559666, 49.175454], [-116.558997, 49.175496], [-116.552098, 49.175496], [-116.551059, 49.175544], [-116.549026, 49.174716], [-116.547353, 49.174315], [-116.544726, 49.174477], [-116.545032, 49.173275], [-116.545008, 49.172926], [-116.544696, 49.17256], [-116.544482, 49.17192], [-116.544513, 49.171145], [-116.544741, 49.169654], [-116.541268, 49.170831], [-116.540764, 49.168775], [-116.517388, 49.168389], [-116.517712, 49.17269], [-116.507067, 49.172597], [-116.506792, 49.164476], [-116.491634, 49.164095], [-116.49155, 49.162845], [-116.469075, 49.162442], [-116.469185, 49.166717], [-116.451536, 49.166335], [-116.449529, 49.178639], [-116.44614, 49.178945], [-116.445909, 49.179337], [-116.445894, 49.179416], [-116.446166, 49.179599], [-116.446205, 49.179697], [-116.446136, 49.179814], [-116.445623, 49.180144], [-116.445499, 49.180324], [-116.445176, 49.181033], [-116.44539, 49.18143], [-116.445045, 49.181671], [-116.44556, 49.182195], [-116.445639, 49.182456], [-116.44529, 49.18294], [-116.445232, 49.1833], [-116.445421, 49.183535], [-116.445319, 49.184155], [-116.444929, 49.184737], [-116.445048, 49.185053], [-116.444879, 49.185502], [-116.444858, 49.186096], [-116.44462, 49.186553], [-116.443827, 49.18753], [-116.443586, 49.188069], [-116.442852, 49.188731], [-116.442921, 49.189963], [-116.442837, 49.190215], [-116.442557, 49.190574], [-116.442705, 49.190799], [-116.442757, 49.191195], [-116.442684, 49.191411], [-116.442298, 49.191696], [-116.441976, 49.192207], [-116.441768, 49.192378], [-116.441668, 49.192702], [-116.441858, 49.192954], [-116.441757, 49.193421], [-116.441975, 49.193575], [-116.441806, 49.193854], [-116.441887, 49.194015], [-116.441679, 49.194213], [-116.441909, 49.194421], [-116.44191, 49.194519], [-116.441714, 49.194824], [-116.441725, 49.195067], [-116.441461, 49.195326], [-116.441499, 49.195624], [-116.441357, 49.195964], [-116.441547, 49.196226], [-116.441393, 49.196441], [-116.44124, 49.196521], [-116.441128, 49.196773], [-116.441013, 49.197259], [-116.441038, 49.197582], [-116.440866, 49.198202], [-116.440642, 49.198615], [-116.44098, 49.198994], [-116.440866, 49.1993], [-116.44126, 49.199662], [-116.441285, 49.200022], [-116.441544, 49.200157], [-116.441925, 49.20051], [-116.441713, 49.200859], [-116.441848, 49.201113], [-116.442419, 49.201591], [-116.442395, 49.202644], [-116.442704, 49.203185], [-116.442684, 49.203725], [-116.442557, 49.204075], [-116.442637, 49.204292], [-116.443141, 49.204618], [-116.443161, 49.205158], [-116.443501, 49.205519], [-116.443621, 49.205853], [-116.443427, 49.206059], [-116.443656, 49.206411], [-116.44361, 49.206726], [-116.443719, 49.206942], [-116.444289, 49.207493], [-116.444518, 49.207854], [-116.444528, 49.208114], [-116.444334, 49.208384], [-116.444273, 49.208923], [-116.444461, 49.209294], [-116.444429, 49.209625], [-116.444604, 49.210004], [-116.444419, 49.210525], [-116.444627, 49.211605], [-116.444403, 49.211973], [-116.444456, 49.213422], [-116.443917, 49.213716], [-116.443681, 49.213939], [-116.443719, 49.214281], [-116.443563, 49.21465], [-116.443779, 49.21501], [-116.443515, 49.21519], [-116.4432, 49.215188], [-116.443075, 49.215322], [-116.442523, 49.215607], [-116.442327, 49.215895], [-116.442682, 49.216067], [-116.442557, 49.216291], [-116.442197, 49.216425], [-116.442115, 49.217674], [-116.44177, 49.217835], [-116.44159, 49.218041], [-116.441682, 49.218302], [-116.441305, 49.218759], [-116.441425, 49.219092], [-116.441284, 49.21946], [-116.44165, 49.219885], [-116.441664, 49.220002], [-116.441397, 49.220343], [-116.441373, 49.221368], [-116.441096, 49.221619], [-116.441039, 49.22178], [-116.441167, 49.22268], [-116.440748, 49.223208], [-116.440976, 49.223561], [-116.441031, 49.224812], [-116.441112, 49.22501], [-116.44106, 49.225908], [-116.440876, 49.226438], [-116.440914, 49.22678], [-116.441132, 49.226971], [-116.441185, 49.227133], [-116.44119, 49.227834], [-116.440995, 49.228049], [-116.441484, 49.228583], [-116.441276, 49.228815], [-116.441406, 49.229292], [-116.441082, 49.230173], [-116.44112, 49.230514], [-116.441006, 49.230821], [-116.440895, 49.230919], [-116.439872, 49.231436], [-116.43965, 49.231614], [-116.439714, 49.231974], [-116.439478, 49.232333], [-116.439129, 49.232673], [-116.439101, 49.232924], [-116.438423, 49.233219], [-116.437967, 49.233566], [-116.43767, 49.234303], [-116.437609, 49.234663], [-116.437676, 49.234905], [-116.437439, 49.235183], [-116.437239, 49.235902], [-116.436712, 49.236268], [-116.436818, 49.236584], [-116.437064, 49.236792], [-116.437142, 49.237143], [-116.43736, 49.237369], [-116.437865, 49.237624], [-116.438205, 49.238057], [-116.438574, 49.23805], [-116.438997, 49.238403], [-116.439172, 49.238718], [-116.439513, 49.238827], [-116.440291, 49.239236], [-116.440676, 49.239327], [-116.440879, 49.239662], [-116.441248, 49.239834], [-116.441491, 49.240034], [-116.441434, 49.240384], [-116.441635, 49.240745], [-116.441934, 49.242186], [-116.441871, 49.243049], [-116.441936, 49.243292], [-116.441892, 49.243616], [-116.442063, 49.24413], [-116.442007, 49.244417], [-116.442276, 49.244778], [-116.442464, 49.245219], [-116.442776, 49.245554], [-116.444668, 49.246004], [-116.444968, 49.246185], [-116.445462, 49.246134], [-116.445776, 49.246352], [-116.446326, 49.246363], [-116.446694, 49.2465], [-116.446871, 49.246735], [-116.447159, 49.246861], [-116.4474, 49.247303], [-116.448759, 49.247427], [-116.449073, 49.247572], [-116.449125, 49.247851], [-116.448999, 49.248129], [-116.449203, 49.24832], [-116.449629, 49.248403], [-116.449779, 49.248521], [-116.449898, 49.248862], [-116.449663, 49.24904], [-116.450004, 49.249231], [-116.45018, 49.249458], [-116.450439, 49.24963], [-116.45098, 49.250325], [-116.451487, 49.250497], [-116.451913, 49.250509], [-116.452556, 49.250693], [-116.452924, 49.251063], [-116.45317, 49.251144], [-116.453734, 49.25122], [-116.4542, 49.251158], [-116.454556, 49.25143], [-116.454825, 49.251801], [-116.455389, 49.251883], [-116.455661, 49.25202], [-116.456223, 49.252158], [-116.457, 49.252855], [-116.457545, 49.253208], [-116.458575, 49.253248], [-116.460015, 49.253588], [-116.46029, 49.253606], [-116.461129, 49.253512], [-116.461993, 49.253597], [-116.462503, 49.25351], [-116.463052, 49.253611], [-116.463602, 49.253532], [-116.464179, 49.253544], [-116.464725, 49.253834], [-116.465824, 49.253894], [-116.466389, 49.25377], [-116.466937, 49.253934], [-116.467432, 49.25382], [-116.468307, 49.254408], [-116.468564, 49.254743], [-116.468864, 49.254905], [-116.470179, 49.255236], [-116.470771, 49.255166], [-116.471609, 49.255206], [-116.471882, 49.255361], [-116.471894, 49.255495], [-116.472253, 49.255488], [-116.47293, 49.255159], [-116.473808, 49.255189], [-116.474094, 49.255398], [-116.474907, 49.25532], [-116.475168, 49.255358], [-116.475716, 49.255333], [-116.477155, 49.255861], [-116.477371, 49.256196], [-116.478209, 49.256136], [-116.478757, 49.256228], [-116.47936, 49.256411], [-116.480675, 49.256948], [-116.481337, 49.256798], [-116.481765, 49.256404], [-116.482947, 49.256436], [-116.483429, 49.256312], [-116.484007, 49.256315], [-116.48541, 49.256096], [-116.485838, 49.255909], [-116.485963, 49.255909], [-116.486577, 49.256264], [-116.48677, 49.256318], [-116.487309, 49.256015], [-116.488937, 49.256787], [-116.490045, 49.257053], [-116.490542, 49.256992], [-116.490773, 49.257173], [-116.490853, 49.257433], [-116.491414, 49.257705], [-116.492263, 49.257916], [-116.493193, 49.258452], [-116.493314, 49.258695], [-116.4942, 49.259356], [-116.494127, 49.259769], [-116.494454, 49.259977], [-116.494386, 49.260102], [-116.494425, 49.260202], [-116.494984, 49.260691], [-116.495544, 49.261061], [-116.49583, 49.261368], [-116.496406, 49.261542], [-116.49665, 49.261732], [-116.497012, 49.262615], [-116.497284, 49.262985], [-116.497335, 49.263362], [-116.497607, 49.263535], [-116.497991, 49.263617], [-116.498115, 49.263708], [-116.498711, 49.26443], [-116.498805, 49.264728], [-116.499449, 49.264982], [-116.499486, 49.265342], [-116.499744, 49.265533], [-116.499863, 49.266108], [-116.500436, 49.266426], [-116.500723, 49.266688], [-116.500957, 49.266706], [-116.501119, 49.267041], [-116.501597, 49.267357], [-116.502101, 49.2678], [-116.502579, 49.268018], [-116.502865, 49.268253], [-116.502736, 49.268774], [-116.502913, 49.268982], [-116.503434, 49.269129], [-116.504149, 49.269167], [-116.504449, 49.269358], [-116.504542, 49.269664], [-116.504652, 49.269719], [-116.504885, 49.26971], [-116.505006, 49.269891], [-116.504922, 49.27026], [-116.505178, 49.270612], [-116.504831, 49.270996], [-116.504826, 49.271509], [-116.505153, 49.271861], [-116.505283, 49.272554], [-116.50583, 49.272962], [-116.505605, 49.273312], [-116.505686, 49.273491], [-116.50553, 49.274048], [-116.505539, 49.274561], [-116.505891, 49.274931], [-116.506548, 49.275294], [-116.506725, 49.275484], [-116.506654, 49.275682], [-116.506951, 49.276187], [-116.507309, 49.277636], [-116.507582, 49.277835], [-116.507131, 49.278851], [-116.506783, 49.27937], [-116.506212, 49.280087], [-116.505838, 49.280373], [-116.505765, 49.280625], [-116.505901, 49.280931], [-116.505857, 49.281138], [-116.505045, 49.282583], [-116.504761, 49.283491], [-116.50418, 49.283848], [-116.503811, 49.284962], [-116.503677, 49.286031], [-116.503425, 49.286399], [-116.503321, 49.287271], [-116.503195, 49.287477], [-116.502751, 49.287844], [-116.502083, 49.288723], [-116.501914, 49.289091], [-116.501663, 49.28927], [-116.5014, 49.289611], [-116.501287, 49.289979], [-116.501219, 49.291103], [-116.501066, 49.291418], [-116.500647, 49.292], [-116.500091, 49.292564], [-116.500075, 49.292852], [-116.499976, 49.293041], [-116.499837, 49.293211], [-116.499381, 49.293425], [-116.499418, 49.293758], [-116.498348, 49.294842], [-116.498, 49.295399], [-116.497814, 49.295945], [-116.49792, 49.296468], [-116.497654, 49.296844], [-116.497569, 49.297186], [-116.497621, 49.298841], [-116.497515, 49.299722], [-116.496414, 49.301148], [-116.496217, 49.301534], [-116.495964, 49.303512], [-116.495961, 49.305095], [-116.495653, 49.305679], [-116.495248, 49.306171], [-116.495219, 49.306386], [-116.495262, 49.306753], [-116.4972, 49.307281], [-116.498576, 49.309719], [-116.499748, 49.313464], [-116.503912, 49.313824], [-116.506973, 49.313499], [-116.513361, 49.311724], [-116.517128, 49.310449], [-116.521957, 49.307995], [-116.525997, 49.304499], [-116.538331, 49.300768], [-116.541937, 49.300273], [-116.549567, 49.300183], [-116.560973, 49.303294], [-116.561047, 49.303401], [-116.559928, 49.305226], [-116.561197, 49.30985], [-116.563757, 49.314942], [-116.567046, 49.320003], [-116.570113, 49.324309], [-116.57329, 49.326795], [-116.581927, 49.33083], [-116.587285, 49.334605], [-116.590861, 49.338771], [-116.591887, 49.341238], [-116.591143, 49.342768], [-116.589228, 49.34424], [-116.585605, 49.34661], [-116.58444, 49.348917], [-116.585014, 49.360526], [-116.574339, 49.367953], [-116.564267, 49.370183], [-116.562656, 49.371055], [-116.558138, 49.377805], [-116.54806, 49.385291], [-116.530542, 49.395414], [-116.5294, 49.400673], [-116.529552, 49.41254], [-116.532208, 49.418785], [-116.53444, 49.429434], [-116.535688, 49.433244], [-116.538675, 49.439107], [-116.54127, 49.444704], [-116.542855, 49.450866], [-116.54128, 49.457795], [-116.543939, 49.46511], [-116.563813, 49.460666], [-116.579579, 49.455198], [-116.595152, 49.477017], [-116.617791, 49.472105], [-116.632341, 49.458678], [-116.667354, 49.472215], [-116.644535, 49.502911], [-116.627399, 49.535145], [-116.625169, 49.538841], [-116.644647, 49.558722], [-116.689214, 49.572742], [-116.664015, 49.607332], [-116.65028, 49.61637], [-116.645363, 49.619761], [-116.648296, 49.630753], [-116.670704, 49.629628], [-116.677572, 49.633347], [-116.675393, 49.648295], [-116.657329, 49.667814], [-116.628801, 49.683873], [-116.594575, 49.694747], [-116.590578, 49.699372], [-116.607634, 49.715778], [-116.590924, 49.724891], [-116.597449, 49.732625], [-116.611139, 49.745252], [-116.623845, 49.763895], [-116.624377, 49.776909], [-116.63459, 49.777653], [-116.639464, 49.785139], [-116.658461, 49.781662], [-116.669215, 49.792852], [-116.685042, 49.811808], [-116.673594, 49.816845], [-116.683882, 49.824597], [-116.690958, 49.842765], [-116.684754, 49.860669], [-116.693256, 49.87006], [-116.772541, 49.870047], [-116.784632, 49.870084], [-116.801682, 49.870512], [-116.819524, 49.870706], [-116.820388, 49.870435], [-116.831843, 49.86929], [-116.848443, 49.869175], [-116.852619, 49.868952], [-116.856448, 49.86921], [-116.856237, 49.86993], [-116.856292, 49.870056], [-116.856473, 49.870092], [-116.85664, 49.869976], [-116.856934, 49.869499], [-116.857255, 49.869176], [-116.85777, 49.86915], [-116.857992, 49.869312], [-116.861024, 49.869874], [-116.861588, 49.870597], [-116.862116, 49.870748], [-116.870466, 49.869743], [-116.870518, 49.869334], [-116.885309, 49.869327]]]]}, "properties": {"name": "Central Kootenay A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay A", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903010", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.293777, 49.198351], [-117.294883, 49.19476], [-117.294499, 49.194414], [-117.293018, 49.193953], [-117.293491, 49.191855], [-117.293456, 49.191025], [-117.292579, 49.19115], [-117.291141, 49.191264], [-117.290329, 49.191014], [-117.289531, 49.190647], [-117.287372, 49.189897], [-117.286192, 49.189737], [-117.284715, 49.189829], [-117.284649, 49.18962], [-117.283596, 49.189618], [-117.283015, 49.189452], [-117.283134, 49.189132], [-117.283046, 49.188942], [-117.282026, 49.187988], [-117.281898, 49.187784], [-117.281943, 49.1875], [-117.28236, 49.186983], [-117.28289, 49.18675], [-117.283747, 49.186747], [-117.282359, 49.182442], [-117.281734, 49.180173], [-117.28073, 49.180236], [-117.280191, 49.179272], [-117.279614, 49.1788], [-117.275571, 49.178808], [-117.274337, 49.178762], [-117.274058, 49.178796], [-117.274871, 49.180581], [-117.274877, 49.181263], [-117.271439, 49.181314], [-117.270968, 49.181902], [-117.271291, 49.18991], [-117.270984, 49.192505], [-117.271102, 49.193568], [-117.271791, 49.196122], [-117.271746, 49.198469], [-117.274722, 49.199849], [-117.276132, 49.198485], [-117.293777, 49.198351]]]]}, "properties": {"name": "Salmo", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Salmo", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903011", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.395359, 49.519638], [-116.401955, 49.521814], [-116.411777, 49.526404], [-116.414792, 49.52977], [-116.423513, 49.53366], [-116.440233, 49.53245], [-116.450744, 49.5269], [-116.456241, 49.51822], [-116.459497, 49.505197], [-116.463919, 49.497032], [-116.475961, 49.493967], [-116.491755, 49.48965], [-116.509488, 49.478891], [-116.53498, 49.467139], [-116.543939, 49.46511], [-116.54128, 49.457795], [-116.542855, 49.450866], [-116.54127, 49.444704], [-116.538675, 49.439107], [-116.535688, 49.433244], [-116.53444, 49.429434], [-116.532208, 49.418785], [-116.529552, 49.41254], [-116.5294, 49.400673], [-116.530542, 49.395414], [-116.54806, 49.385291], [-116.558138, 49.377805], [-116.562656, 49.371055], [-116.564267, 49.370183], [-116.574339, 49.367953], [-116.585014, 49.360526], [-116.58444, 49.348917], [-116.585605, 49.34661], [-116.589228, 49.34424], [-116.591143, 49.342768], [-116.591887, 49.341238], [-116.590861, 49.338771], [-116.587285, 49.334605], [-116.581927, 49.33083], [-116.57329, 49.326795], [-116.570113, 49.324309], [-116.567046, 49.320003], [-116.563757, 49.314942], [-116.561197, 49.30985], [-116.559928, 49.305226], [-116.561047, 49.303401], [-116.560973, 49.303294], [-116.549567, 49.300183], [-116.541937, 49.300273], [-116.538331, 49.300768], [-116.525997, 49.304499], [-116.521957, 49.307995], [-116.517128, 49.310449], [-116.513361, 49.311724], [-116.506973, 49.313499], [-116.503912, 49.313824], [-116.499748, 49.313464], [-116.498576, 49.309719], [-116.4972, 49.307281], [-116.495262, 49.306753], [-116.495219, 49.306386], [-116.495248, 49.306171], [-116.495653, 49.305679], [-116.495961, 49.305095], [-116.495964, 49.303512], [-116.496217, 49.301534], [-116.496414, 49.301148], [-116.497515, 49.299722], [-116.497621, 49.298841], [-116.497569, 49.297186], [-116.497654, 49.296844], [-116.49792, 49.296468], [-116.497814, 49.295945], [-116.498, 49.295399], [-116.498348, 49.294842], [-116.499418, 49.293758], [-116.499381, 49.293425], [-116.499837, 49.293211], [-116.499976, 49.293041], [-116.500075, 49.292852], [-116.500091, 49.292564], [-116.500647, 49.292], [-116.501066, 49.291418], [-116.501219, 49.291103], [-116.501287, 49.289979], [-116.5014, 49.289611], [-116.501663, 49.28927], [-116.501914, 49.289091], [-116.502083, 49.288723], [-116.502751, 49.287844], [-116.503195, 49.287477], [-116.503321, 49.287271], [-116.503425, 49.286399], [-116.503677, 49.286031], [-116.503811, 49.284962], [-116.50418, 49.283848], [-116.504761, 49.283491], [-116.505045, 49.282583], [-116.505857, 49.281138], [-116.505901, 49.280931], [-116.505765, 49.280625], [-116.505838, 49.280373], [-116.506212, 49.280087], [-116.506783, 49.27937], [-116.507131, 49.278851], [-116.507582, 49.277835], [-116.507309, 49.277636], [-116.506951, 49.276187], [-116.506654, 49.275682], [-116.506725, 49.275484], [-116.506548, 49.275294], [-116.505891, 49.274931], [-116.505539, 49.274561], [-116.50553, 49.274048], [-116.505686, 49.273491], [-116.505605, 49.273312], [-116.50583, 49.272962], [-116.505283, 49.272554], [-116.505153, 49.271861], [-116.504826, 49.271509], [-116.504831, 49.270996], [-116.505178, 49.270612], [-116.504922, 49.27026], [-116.505006, 49.269891], [-116.504885, 49.26971], [-116.504652, 49.269719], [-116.504542, 49.269664], [-116.504449, 49.269358], [-116.504149, 49.269167], [-116.503434, 49.269129], [-116.502913, 49.268982], [-116.502736, 49.268774], [-116.502865, 49.268253], [-116.502579, 49.268018], [-116.502101, 49.2678], [-116.501597, 49.267357], [-116.501119, 49.267041], [-116.500957, 49.266706], [-116.500723, 49.266688], [-116.500436, 49.266426], [-116.499863, 49.266108], [-116.499744, 49.265533], [-116.499486, 49.265342], [-116.499449, 49.264982], [-116.498805, 49.264728], [-116.498711, 49.26443], [-116.498115, 49.263708], [-116.497991, 49.263617], [-116.497607, 49.263535], [-116.497335, 49.263362], [-116.497284, 49.262985], [-116.497012, 49.262615], [-116.49665, 49.261732], [-116.496406, 49.261542], [-116.49583, 49.261368], [-116.495544, 49.261061], [-116.494984, 49.260691], [-116.494425, 49.260202], [-116.494386, 49.260102], [-116.494454, 49.259977], [-116.494127, 49.259769], [-116.4942, 49.259356], [-116.493314, 49.258695], [-116.493193, 49.258452], [-116.492263, 49.257916], [-116.491414, 49.257705], [-116.490853, 49.257433], [-116.490773, 49.257173], [-116.490542, 49.256992], [-116.490045, 49.257053], [-116.488937, 49.256787], [-116.487309, 49.256015], [-116.48677, 49.256318], [-116.486577, 49.256264], [-116.485963, 49.255909], [-116.485838, 49.255909], [-116.48541, 49.256096], [-116.484007, 49.256315], [-116.483429, 49.256312], [-116.482947, 49.256436], [-116.481765, 49.256404], [-116.481337, 49.256798], [-116.480675, 49.256948], [-116.47936, 49.256411], [-116.478757, 49.256228], [-116.478209, 49.256136], [-116.477371, 49.256196], [-116.477155, 49.255861], [-116.475716, 49.255333], [-116.475168, 49.255358], [-116.474907, 49.25532], [-116.474094, 49.255398], [-116.473808, 49.255189], [-116.47293, 49.255159], [-116.472253, 49.255488], [-116.471894, 49.255495], [-116.471882, 49.255361], [-116.471609, 49.255206], [-116.470771, 49.255166], [-116.470179, 49.255236], [-116.468864, 49.254905], [-116.468564, 49.254743], [-116.468307, 49.254408], [-116.467432, 49.25382], [-116.466937, 49.253934], [-116.466389, 49.25377], [-116.465824, 49.253894], [-116.464725, 49.253834], [-116.464179, 49.253544], [-116.463602, 49.253532], [-116.463052, 49.253611], [-116.462503, 49.25351], [-116.461993, 49.253597], [-116.461129, 49.253512], [-116.46029, 49.253606], [-116.460015, 49.253588], [-116.458575, 49.253248], [-116.457545, 49.253208], [-116.457, 49.252855], [-116.456223, 49.252158], [-116.455661, 49.25202], [-116.455389, 49.251883], [-116.454825, 49.251801], [-116.454556, 49.25143], [-116.4542, 49.251158], [-116.453734, 49.25122], [-116.45317, 49.251144], [-116.452924, 49.251063], [-116.452556, 49.250693], [-116.451913, 49.250509], [-116.451487, 49.250497], [-116.45098, 49.250325], [-116.450439, 49.24963], [-116.45018, 49.249458], [-116.450004, 49.249231], [-116.449663, 49.24904], [-116.449898, 49.248862], [-116.449779, 49.248521], [-116.449629, 49.248403], [-116.449203, 49.24832], [-116.448999, 49.248129], [-116.449125, 49.247851], [-116.449073, 49.247572], [-116.448759, 49.247427], [-116.4474, 49.247303], [-116.447159, 49.246861], [-116.446871, 49.246735], [-116.446694, 49.2465], [-116.446326, 49.246363], [-116.445776, 49.246352], [-116.445462, 49.246134], [-116.444968, 49.246185], [-116.444668, 49.246004], [-116.442776, 49.245554], [-116.442464, 49.245219], [-116.442276, 49.244778], [-116.442007, 49.244417], [-116.442063, 49.24413], [-116.441892, 49.243616], [-116.441936, 49.243292], [-116.441871, 49.243049], [-116.441934, 49.242186], [-116.441635, 49.240745], [-116.441434, 49.240384], [-116.441491, 49.240034], [-116.441248, 49.239834], [-116.440879, 49.239662], [-116.440676, 49.239327], [-116.440291, 49.239236], [-116.439513, 49.238827], [-116.439172, 49.238718], [-116.438997, 49.238403], [-116.438574, 49.23805], [-116.438205, 49.238057], [-116.437865, 49.237624], [-116.43736, 49.237369], [-116.437142, 49.237143], [-116.437064, 49.236792], [-116.436818, 49.236584], [-116.436712, 49.236268], [-116.437239, 49.235902], [-116.437439, 49.235183], [-116.437676, 49.234905], [-116.437609, 49.234663], [-116.43767, 49.234303], [-116.437967, 49.233566], [-116.438423, 49.233219], [-116.439101, 49.232924], [-116.439129, 49.232673], [-116.439478, 49.232333], [-116.439714, 49.231974], [-116.43965, 49.231614], [-116.439872, 49.231436], [-116.440895, 49.230919], [-116.441006, 49.230821], [-116.44112, 49.230514], [-116.441082, 49.230173], [-116.441406, 49.229292], [-116.441276, 49.228815], [-116.441484, 49.228583], [-116.440995, 49.228049], [-116.44119, 49.227834], [-116.441185, 49.227133], [-116.441132, 49.226971], [-116.440914, 49.22678], [-116.440876, 49.226438], [-116.44106, 49.225908], [-116.441112, 49.22501], [-116.441031, 49.224812], [-116.440976, 49.223561], [-116.440748, 49.223208], [-116.441167, 49.22268], [-116.441039, 49.22178], [-116.441096, 49.221619], [-116.441373, 49.221368], [-116.441397, 49.220343], [-116.441664, 49.220002], [-116.44165, 49.219885], [-116.441284, 49.21946], [-116.441425, 49.219092], [-116.441305, 49.218759], [-116.441682, 49.218302], [-116.44159, 49.218041], [-116.44177, 49.217835], [-116.442115, 49.217674], [-116.442197, 49.216425], [-116.442557, 49.216291], [-116.442682, 49.216067], [-116.442327, 49.215895], [-116.442523, 49.215607], [-116.443075, 49.215322], [-116.4432, 49.215188], [-116.443515, 49.21519], [-116.443779, 49.21501], [-116.443563, 49.21465], [-116.443719, 49.214281], [-116.443681, 49.213939], [-116.443917, 49.213716], [-116.444456, 49.213422], [-116.444403, 49.211973], [-116.444627, 49.211605], [-116.444419, 49.210525], [-116.444604, 49.210004], [-116.444429, 49.209625], [-116.444461, 49.209294], [-116.444273, 49.208923], [-116.444334, 49.208384], [-116.444528, 49.208114], [-116.444518, 49.207854], [-116.444289, 49.207493], [-116.443719, 49.206942], [-116.44361, 49.206726], [-116.443656, 49.206411], [-116.443427, 49.206059], [-116.443621, 49.205853], [-116.443501, 49.205519], [-116.443161, 49.205158], [-116.443141, 49.204618], [-116.442637, 49.204292], [-116.442557, 49.204075], [-116.442684, 49.203725], [-116.442704, 49.203185], [-116.442395, 49.202644], [-116.442419, 49.201591], [-116.441848, 49.201113], [-116.441713, 49.200859], [-116.441925, 49.20051], [-116.441544, 49.200157], [-116.441285, 49.200022], [-116.44126, 49.199662], [-116.440866, 49.1993], [-116.44098, 49.198994], [-116.440642, 49.198615], [-116.440866, 49.198202], [-116.441038, 49.197582], [-116.441013, 49.197259], [-116.441128, 49.196773], [-116.44124, 49.196521], [-116.441393, 49.196441], [-116.441547, 49.196226], [-116.441357, 49.195964], [-116.441499, 49.195624], [-116.441461, 49.195326], [-116.441725, 49.195067], [-116.441714, 49.194824], [-116.44191, 49.194519], [-116.441909, 49.194421], [-116.441679, 49.194213], [-116.441887, 49.194015], [-116.441806, 49.193854], [-116.441975, 49.193575], [-116.441757, 49.193421], [-116.441858, 49.192954], [-116.441668, 49.192702], [-116.441768, 49.192378], [-116.441976, 49.192207], [-116.442298, 49.191696], [-116.442684, 49.191411], [-116.442757, 49.191195], [-116.442705, 49.190799], [-116.442557, 49.190574], [-116.442837, 49.190215], [-116.442921, 49.189963], [-116.442852, 49.188731], [-116.443586, 49.188069], [-116.443827, 49.18753], [-116.44462, 49.186553], [-116.444858, 49.186096], [-116.444879, 49.185502], [-116.445048, 49.185053], [-116.444929, 49.184737], [-116.445319, 49.184155], [-116.445421, 49.183535], [-116.445232, 49.1833], [-116.44529, 49.18294], [-116.445639, 49.182456], [-116.44556, 49.182195], [-116.445045, 49.181671], [-116.44539, 49.18143], [-116.445176, 49.181033], [-116.445499, 49.180324], [-116.445623, 49.180144], [-116.446136, 49.179814], [-116.446205, 49.179697], [-116.446166, 49.179599], [-116.445894, 49.179416], [-116.445909, 49.179337], [-116.44614, 49.178945], [-116.449529, 49.178639], [-116.451536, 49.166335], [-116.469185, 49.166717], [-116.469075, 49.162442], [-116.49155, 49.162845], [-116.493765, 49.157818], [-116.493227, 49.155255], [-116.493904, 49.151143], [-116.4942, 49.131161], [-116.507276, 49.131148], [-116.506957, 49.107143], [-116.506093, 49.106435], [-116.495799, 49.106176], [-116.495182, 49.101371], [-116.495005, 49.098668], [-116.49626, 49.095473], [-116.492143, 49.095403], [-116.491852, 49.095443], [-116.489794, 49.095444], [-116.491124, 49.095232], [-116.495162, 49.094862], [-116.495368, 49.092681], [-116.495156, 49.092408], [-116.495155, 49.091936], [-116.494726, 49.09197], [-116.493522, 49.088306], [-116.51243, 49.088241], [-116.512466, 49.086259], [-116.512307, 49.082494], [-116.491785, 49.082792], [-116.489212, 49.082534], [-116.488372, 49.074647], [-116.486702, 49.071664], [-116.48716, 49.072024], [-116.487751, 49.072361], [-116.488694, 49.072574], [-116.48999, 49.072527], [-116.490936, 49.072391], [-116.491442, 49.072239], [-116.492052, 49.071881], [-116.492849, 49.071796], [-116.494088, 49.071458], [-116.495234, 49.070752], [-116.49589, 49.070477], [-116.49846, 49.069843], [-116.499071, 49.069811], [-116.501543, 49.072169], [-116.503014, 49.073389], [-116.503839, 49.073674], [-116.505054, 49.073757], [-116.506853, 49.074814], [-116.509888, 49.076173], [-116.514103, 49.078423], [-116.517344, 49.079756], [-116.520198, 49.081115], [-116.522457, 49.082062], [-116.524706, 49.08216], [-116.525579, 49.082393], [-116.526886, 49.082928], [-116.527185, 49.081583], [-116.527712, 49.080049], [-116.527881, 49.078461], [-116.527588, 49.076146], [-116.526632, 49.074205], [-116.524501, 49.069489], [-116.522443, 49.069501], [-116.522389, 49.069338], [-116.513357, 49.069666], [-116.513064, 49.069464], [-116.512766, 49.069395], [-116.511965, 49.069391], [-116.511681, 49.069349], [-116.511506, 49.069264], [-116.511286, 49.068945], [-116.511232, 49.065902], [-116.51116, 49.065765], [-116.510936, 49.0656], [-116.510781, 49.056942], [-116.502433, 49.05695], [-116.502375, 49.052874], [-116.511986, 49.052975], [-116.511432, 49.036972], [-116.512945, 49.036976], [-116.514418, 49.036843], [-116.51717, 49.036155], [-116.518715, 49.036007], [-116.519069, 49.035524], [-116.519392, 49.035313], [-116.519897, 49.035126], [-116.521371, 49.034784], [-116.527341, 49.033811], [-116.531619, 49.032881], [-116.534687, 49.03171], [-116.53641, 49.030498], [-116.536761, 49.029927], [-116.536832, 49.029653], [-116.536658, 49.02894], [-116.535739, 49.028016], [-116.533836, 49.02699], [-116.531939, 49.026169], [-116.527864, 49.024756], [-116.522698, 49.023452], [-116.521055, 49.023242], [-116.517891, 49.023251], [-116.516412, 49.022821], [-116.513946, 49.021492], [-116.512831, 49.020706], [-116.510842, 49.018521], [-116.509035, 49.015978], [-116.507581, 49.013662], [-116.50579, 49.009518], [-116.505324, 49.00963], [-116.504935, 49.008936], [-116.503345, 49.004765], [-116.503075, 49.001188], [-116.503445, 49.000004], [-116.275747, 49.000028], [-116.177179, 49.000065], [-116.027062, 49.000029], [-116.024814, 49.044951], [-116.035607, 49.054842], [-116.032462, 49.058757], [-116.032571, 49.063605], [-116.032146, 49.066162], [-116.02811, 49.138327], [-116.028109, 49.188829], [-116.028473, 49.197549], [-116.050147, 49.197779], [-116.064345, 49.19768], [-116.100767, 49.198449], [-116.094808, 49.202024], [-116.085931, 49.208544], [-116.077347, 49.22166], [-116.076715, 49.223891], [-116.070073, 49.232014], [-116.071179, 49.24091], [-116.078223, 49.246308], [-116.077846, 49.252858], [-116.072624, 49.258643], [-116.079307, 49.262751], [-116.088719, 49.271487], [-116.095125, 49.279464], [-116.10217, 49.281822], [-116.107714, 49.287717], [-116.115497, 49.288282], [-116.117999, 49.286957], [-116.126239, 49.282791], [-116.130845, 49.278448], [-116.13721, 49.280636], [-116.144712, 49.284128], [-116.149826, 49.283034], [-116.158471, 49.283352], [-116.164058, 49.28567], [-116.168002, 49.28926], [-116.171093, 49.293546], [-116.171688, 49.296529], [-116.172635, 49.297899], [-116.176119, 49.307122], [-116.183404, 49.314402], [-116.188957, 49.321934], [-116.185726, 49.32913], [-116.185218, 49.337016], [-116.171415, 49.350095], [-116.165335, 49.352282], [-116.164677, 49.35862], [-116.166824, 49.368401], [-116.17905, 49.376036], [-116.181172, 49.379609], [-116.181965, 49.379645], [-116.182918, 49.390829], [-116.188617, 49.39284], [-116.198248, 49.399104], [-116.209662, 49.404605], [-116.210521, 49.413546], [-116.215898, 49.416562], [-116.235716, 49.41696], [-116.241662, 49.420155], [-116.238045, 49.423303], [-116.2374, 49.428143], [-116.254743, 49.444286], [-116.259882, 49.447966], [-116.24892, 49.451951], [-116.245273, 49.457975], [-116.248062, 49.461456], [-116.257793, 49.467991], [-116.266601, 49.470775], [-116.284852, 49.472397], [-116.282589, 49.47765], [-116.281759, 49.489183], [-116.287829, 49.505338], [-116.289103, 49.508553], [-116.296753, 49.511643], [-116.303451, 49.520976], [-116.312448, 49.524599], [-116.349507, 49.523759], [-116.355069, 49.518611], [-116.362394, 49.51309], [-116.373477, 49.516337], [-116.395359, 49.519638]]]]}, "properties": {"name": "Central Kootenay B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay B", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903013", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.283074, 49.518208], [-117.288409, 49.518209], [-117.285405, 49.516439], [-117.284449, 49.517061], [-117.283795, 49.516744], [-117.284628, 49.516131], [-117.284097, 49.515686], [-117.285256, 49.514937], [-117.28526, 49.514782], [-117.28588, 49.514262], [-117.285082, 49.513882], [-117.286121, 49.513103], [-117.28533, 49.512249], [-117.285677, 49.512087], [-117.286271, 49.511597], [-117.286664, 49.51093], [-117.286882, 49.510766], [-117.284138, 49.509309], [-117.285341, 49.508491], [-117.291381, 49.503172], [-117.294737, 49.499999], [-117.300857, 49.496749], [-117.30326, 49.496085], [-117.310467, 49.490315], [-117.312336, 49.489028], [-117.315552, 49.489427], [-117.330525, 49.491947], [-117.334314, 49.494227], [-117.334373, 49.494243], [-117.335282, 49.493719], [-117.336488, 49.494131], [-117.337634, 49.49421], [-117.338216, 49.494504], [-117.339241, 49.494835], [-117.339792, 49.494859], [-117.340258, 49.494972], [-117.340831, 49.494969], [-117.340121, 49.4941], [-117.339615, 49.49385], [-117.339327, 49.493779], [-117.338697, 49.493742], [-117.337033, 49.493911], [-117.33632, 49.493823], [-117.335818, 49.49363], [-117.335274, 49.493242], [-117.332731, 49.49092], [-117.330927, 49.489869], [-117.330035, 49.48959], [-117.328793, 49.489474], [-117.327804, 49.489278], [-117.326429, 49.489248], [-117.325656, 49.489069], [-117.324465, 49.488515], [-117.323465, 49.487717], [-117.323188, 49.487574], [-117.32278, 49.487409], [-117.320644, 49.486888], [-117.318698, 49.486073], [-117.318104, 49.4859], [-117.317614, 49.485843], [-117.316435, 49.485841], [-117.315525, 49.485864], [-117.314217, 49.485998], [-117.312439, 49.485941], [-117.309167, 49.486226], [-117.308039, 49.486391], [-117.307515, 49.485969], [-117.307632, 49.485331], [-117.307514, 49.482287], [-117.310751, 49.482702], [-117.311464, 49.482858], [-117.312007, 49.482775], [-117.31358, 49.479035], [-117.314494, 49.479011], [-117.310946, 49.474597], [-117.310813, 49.475997], [-117.303574, 49.476126], [-117.303546, 49.475226], [-117.30319, 49.474621], [-117.299501, 49.474691], [-117.299567, 49.475492], [-117.296119, 49.475501], [-117.296089, 49.473493], [-117.293021, 49.473579], [-117.292953, 49.472155], [-117.289956, 49.472218], [-117.290096, 49.472727], [-117.28966, 49.47275], [-117.290768, 49.474261], [-117.290769, 49.474441], [-117.289647, 49.475194], [-117.289459, 49.47483], [-117.288094, 49.473232], [-117.28792, 49.472943], [-117.287546, 49.47286], [-117.282877, 49.472863], [-117.282873, 49.475317], [-117.282618, 49.477834], [-117.282599, 49.480837], [-117.282279, 49.481746], [-117.28093, 49.484379], [-117.280008, 49.485645], [-117.279815, 49.486112], [-117.279756, 49.48947], [-117.279802, 49.490213], [-117.280027, 49.491477], [-117.280014, 49.492019], [-117.279122, 49.493322], [-117.278425, 49.493266], [-117.273289, 49.493367], [-117.27333, 49.497644], [-117.272876, 49.497941], [-117.27212, 49.498934], [-117.27175, 49.499231], [-117.269076, 49.500447], [-117.268127, 49.500985], [-117.267169, 49.502309], [-117.266072, 49.503021], [-117.265656, 49.503383], [-117.265093, 49.504076], [-117.264793, 49.504559], [-117.264887, 49.504579], [-117.264629, 49.505202], [-117.263821, 49.506527], [-117.263432, 49.508371], [-117.26207, 49.510274], [-117.261676, 49.511084], [-117.261603, 49.512029], [-117.261762, 49.513541], [-117.26162, 49.516866], [-117.261048, 49.518473], [-117.271058, 49.518064], [-117.274703, 49.515499], [-117.276241, 49.514317], [-117.280498, 49.516759], [-117.281862, 49.517371], [-117.283074, 49.518208]]], [[[-117.458893, 49.466984], [-117.463342, 49.466762], [-117.463469, 49.466987], [-117.463568, 49.467184], [-117.463467, 49.468399], [-117.463567, 49.468678], [-117.463831, 49.468802], [-117.46373, 49.469873], [-117.463622, 49.470135], [-117.463255, 49.470613], [-117.463231, 49.471206], [-117.462521, 49.471902], [-117.462551, 49.472261], [-117.462792, 49.472764], [-117.4627, 49.473412], [-117.462428, 49.473774], [-117.461525, 49.474596], [-117.461461, 49.475046], [-117.461474, 49.475135], [-117.461682, 49.475188], [-117.461615, 49.475367], [-117.462552, 49.476133], [-117.464456, 49.476377], [-117.464874, 49.476033], [-117.46507, 49.475775], [-117.465589, 49.474764], [-117.465955, 49.474264], [-117.467663, 49.472395], [-117.467839, 49.472128], [-117.467984, 49.471609], [-117.468102, 49.470422], [-117.468267, 49.470093], [-117.468578, 49.469809], [-117.469259, 49.469439], [-117.469989, 49.468891], [-117.470424, 49.467913], [-117.47069, 49.46705], [-117.470916, 49.465776], [-117.472058, 49.463981], [-117.472347, 49.462529], [-117.472753, 49.461501], [-117.473088, 49.461063], [-117.47347, 49.460728], [-117.473925, 49.460431], [-117.474404, 49.460224], [-117.475969, 49.459913], [-117.478007, 49.459629], [-117.479168, 49.459574], [-117.480552, 49.459623], [-117.481369, 49.459777], [-117.484772, 49.460779], [-117.487156, 49.461886], [-117.489052, 49.462463], [-117.489552, 49.462541], [-117.490853, 49.462506], [-117.497539, 49.462018], [-117.498516, 49.462008], [-117.500083, 49.46208], [-117.50148, 49.462498], [-117.502475, 49.462495], [-117.503142, 49.46242], [-117.50523, 49.462022], [-117.50699, 49.462035], [-117.50759, 49.461987], [-117.509442, 49.461542], [-117.511638, 49.461104], [-117.513601, 49.460944], [-117.5144, 49.460769], [-117.514811, 49.460568], [-117.514849, 49.459718], [-117.515841, 49.459402], [-117.516196, 49.459237], [-117.516441, 49.459047], [-117.517248, 49.458788], [-117.517519, 49.458505], [-117.518067, 49.458371], [-117.518431, 49.45792], [-117.518622, 49.457796], [-117.519804, 49.458376], [-117.521842, 49.457318], [-117.522239, 49.456974], [-117.522742, 49.456199], [-117.52405, 49.452097], [-117.523628, 49.450276], [-117.524935, 49.448993], [-117.524853, 49.448655], [-117.524295, 49.449188], [-117.523665, 49.449586], [-117.523269, 49.449957], [-117.522815, 49.450219], [-117.52207, 49.450531], [-117.521611, 49.449887], [-117.520525, 49.450334], [-117.520534, 49.449626], [-117.520336, 49.449205], [-117.520097, 49.448927], [-117.519765, 49.448722], [-117.518843, 49.447638], [-117.517986, 49.44622], [-117.51804, 49.446175], [-117.518275, 49.446201], [-117.518621, 49.446352], [-117.519515, 49.446097], [-117.520082, 49.446094], [-117.520274, 49.445976], [-117.520724, 49.445443], [-117.521338, 49.444909], [-117.521405, 49.444721], [-117.521345, 49.444537], [-117.522172, 49.444123], [-117.522435, 49.444266], [-117.522698, 49.44432], [-117.523506, 49.443811], [-117.523786, 49.442876], [-117.523652, 49.441923], [-117.523526, 49.441698], [-117.523219, 49.441466], [-117.522902, 49.441511], [-117.522672, 49.441792], [-117.522275, 49.442054], [-117.522274, 49.442303], [-117.519796, 49.442949], [-117.519011, 49.442564], [-117.518015, 49.442289], [-117.517546, 49.442273], [-117.517148, 49.442581], [-117.517203, 49.442706], [-117.517565, 49.442913], [-117.517874, 49.44328], [-117.517696, 49.443568], [-117.517572, 49.443605], [-117.516674, 49.443366], [-117.516481, 49.443367], [-117.516288, 49.443521], [-117.516109, 49.44345], [-117.515996, 49.443126], [-117.515991, 49.442802], [-117.516182, 49.442549], [-117.516149, 49.442072], [-117.515895, 49.441673], [-117.514406, 49.441587], [-117.514205, 49.446599], [-117.508523, 49.446678], [-117.50837, 49.450957], [-117.490198, 49.451131], [-117.481753, 49.451346], [-117.47005, 49.451262], [-117.469936, 49.4555], [-117.46738, 49.456586], [-117.466819, 49.457501], [-117.466525, 49.457732], [-117.464934, 49.459471], [-117.458595, 49.459554], [-117.458477, 49.46095], [-117.458569, 49.464401], [-117.458893, 49.466984]]]]}, "properties": {"name": "Nelson", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Nelson", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903015", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.682774, 49.284307], [-116.692752, 49.287088], [-116.68805, 49.27749], [-116.688551, 49.266826], [-116.688638, 49.260702], [-116.687928, 49.257231], [-116.687024, 49.256696], [-116.686897, 49.254833], [-116.685379, 49.253034], [-116.684616, 49.249385], [-116.685997, 49.241241], [-116.688806, 49.235952], [-116.688465, 49.233254], [-116.686663, 49.229582], [-116.685891, 49.228368], [-116.682733, 49.225116], [-116.680622, 49.223403], [-116.679143, 49.222537], [-116.68074, 49.221288], [-116.681859, 49.220112], [-116.682355, 49.219942], [-116.682945, 49.219881], [-116.694609, 49.213851], [-116.713088, 49.211599], [-116.714908, 49.211242], [-116.729883, 49.205805], [-116.753419, 49.20431], [-116.77134, 49.194147], [-116.795101, 49.18866], [-116.807143, 49.187154], [-116.82826, 49.176831], [-116.838526, 49.179046], [-116.851119, 49.19108], [-116.8596, 49.197333], [-116.871179, 49.204627], [-116.873523, 49.203735], [-116.884709, 49.196842], [-116.895335, 49.192951], [-116.900468, 49.190249], [-116.907161, 49.19012], [-116.915566, 49.189274], [-116.918557, 49.188469], [-116.922177, 49.188267], [-116.929996, 49.18636], [-116.932, 49.186227], [-116.934566, 49.186369], [-116.93581, 49.186227], [-116.936161, 49.186063], [-116.936768, 49.185999], [-116.937628, 49.186019], [-116.941953, 49.184528], [-116.944035, 49.182921], [-116.944813, 49.181376], [-116.945157, 49.179958], [-116.94524, 49.177844], [-116.946058, 49.172519], [-116.945648, 49.166534], [-116.943421, 49.157659], [-116.943499, 49.157612], [-116.944154, 49.15476], [-116.958937, 49.160032], [-116.968658, 49.160409], [-116.981614, 49.162444], [-116.982869, 49.162417], [-116.990457, 49.162778], [-117.014465, 49.158389], [-117.038828, 49.156072], [-117.035256, 49.1544], [-117.030468, 49.150375], [-117.029036, 49.147191], [-117.025641, 49.143135], [-117.025127, 49.141271], [-117.026383, 49.139576], [-117.027292, 49.137596], [-117.025724, 49.135642], [-117.026204, 49.131801], [-117.026202, 49.129039], [-117.027416, 49.12741], [-117.029215, 49.125786], [-117.030203, 49.123405], [-117.031852, 49.122201], [-117.035352, 49.120373], [-117.03855, 49.120425], [-117.041731, 49.120973], [-117.044113, 49.119613], [-117.046294, 49.118199], [-117.04682, 49.116012], [-117.04768, 49.113434], [-117.046381, 49.108887], [-117.047211, 49.106916], [-117.047092, 49.104498], [-117.049809, 49.103536], [-117.052266, 49.102427], [-117.052354, 49.099679], [-117.053349, 49.097446], [-117.056609, 49.095245], [-117.054065, 49.091749], [-117.051809, 49.089099], [-117.047227, 49.07746], [-117.054416, 49.069478], [-117.047017, 49.063066], [-117.044271, 49.058014], [-117.041599, 49.056532], [-117.033652, 49.052465], [-117.030384, 49.050939], [-117.02427, 49.05095], [-117.021322, 49.05171], [-117.017802, 49.055572], [-117.015937, 49.055362], [-117.012981, 49.05639], [-117.009733, 49.057053], [-117.002938, 49.055628], [-116.992769, 49.050462], [-116.97818, 49.049798], [-116.966845, 49.051394], [-116.959418, 49.053308], [-116.961742, 49.059338], [-116.950048, 49.061095], [-116.938959, 49.062601], [-116.924514, 49.064237], [-116.921078, 49.062064], [-116.914524, 49.058191], [-116.914695, 49.05816], [-116.919471, 49.056091], [-116.920806, 49.055576], [-116.911869, 49.050407], [-116.902309, 49.045391], [-116.890534, 49.042681], [-116.886534, 49.030946], [-116.885357, 49.028457], [-116.895791, 49.011245], [-116.896218, 49.010662], [-116.909281, 49.008401], [-116.91385, 49.005612], [-116.913552, 49.000076], [-116.755352, 49.000018], [-116.503445, 49.000004], [-116.503075, 49.001188], [-116.503345, 49.004765], [-116.504935, 49.008936], [-116.505324, 49.00963], [-116.50579, 49.009518], [-116.507581, 49.013662], [-116.509035, 49.015978], [-116.510842, 49.018521], [-116.512831, 49.020706], [-116.513946, 49.021492], [-116.516412, 49.022821], [-116.517891, 49.023251], [-116.521055, 49.023242], [-116.522698, 49.023452], [-116.527864, 49.024756], [-116.531939, 49.026169], [-116.533836, 49.02699], [-116.535739, 49.028016], [-116.536658, 49.02894], [-116.536832, 49.029653], [-116.536761, 49.029927], [-116.53641, 49.030498], [-116.534687, 49.03171], [-116.531619, 49.032881], [-116.527341, 49.033811], [-116.521371, 49.034784], [-116.519897, 49.035126], [-116.519392, 49.035313], [-116.519069, 49.035524], [-116.518715, 49.036007], [-116.517155, 49.03616], [-116.517087, 49.036249], [-116.517145, 49.037293], [-116.517455, 49.037672], [-116.518242, 49.038296], [-116.518365, 49.038513], [-116.518691, 49.038749], [-116.519014, 49.039163], [-116.519407, 49.039498], [-116.519529, 49.039759], [-116.519894, 49.040166], [-116.52097, 49.042194], [-116.521128, 49.042771], [-116.522012, 49.044816], [-116.522016, 49.045841], [-116.522106, 49.046247], [-116.522339, 49.046481], [-116.522463, 49.046222], [-116.522723, 49.046196], [-116.522802, 49.046538], [-116.523443, 49.046864], [-116.52359, 49.047116], [-116.524109, 49.047344], [-116.524119, 49.047569], [-116.524255, 49.047794], [-116.524461, 49.047795], [-116.524718, 49.048003], [-116.525006, 49.047941], [-116.525253, 49.047951], [-116.525511, 49.048123], [-116.52588, 49.048179], [-116.526811, 49.048039], [-116.527265, 49.047905], [-116.527676, 49.047691], [-116.528339, 49.047117], [-116.528658, 49.046679], [-116.529016, 49.046383], [-116.529401, 49.046232], [-116.529417, 49.046052], [-116.529841, 49.046108], [-116.530087, 49.046072], [-116.530662, 49.046111], [-116.531225, 49.045834], [-116.531544, 49.045475], [-116.532146, 49.04538], [-116.532958, 49.045041], [-116.533684, 49.044936], [-116.534917, 49.044627], [-116.538148, 49.044504], [-116.540459, 49.044656], [-116.54117, 49.044822], [-116.541964, 49.044897], [-116.543096, 49.045198], [-116.543684, 49.045282], [-116.545746, 49.045757], [-116.546114, 49.045957], [-116.54651, 49.046066], [-116.546796, 49.046212], [-116.54749, 49.046638], [-116.547909, 49.047043], [-116.548045, 49.047287], [-116.548027, 49.047637], [-116.547804, 49.048042], [-116.547775, 49.048248], [-116.54754, 49.048553], [-116.547357, 49.048975], [-116.545314, 49.05091], [-116.543158, 49.053384], [-116.542339, 49.05464], [-116.541772, 49.055233], [-116.540427, 49.057071], [-116.539328, 49.059018], [-116.538948, 49.060186], [-116.538476, 49.060841], [-116.538459, 49.061218], [-116.538726, 49.062012], [-116.539729, 49.062969], [-116.540725, 49.063432], [-116.541518, 49.063524], [-116.542078, 49.06368], [-116.542337, 49.063808], [-116.544634, 49.064122], [-116.545042, 49.064159], [-116.547275, 49.06407], [-116.547809, 49.063981], [-116.550578, 49.063776], [-116.554794, 49.063694], [-116.556616, 49.063601], [-116.557532, 49.063687], [-116.559171, 49.06407], [-116.559799, 49.06436], [-116.560657, 49.064967], [-116.560858, 49.065192], [-116.5611, 49.065832], [-116.561173, 49.066921], [-116.561343, 49.067748], [-116.561611, 49.068559], [-116.562449, 49.069974], [-116.524501, 49.069489], [-116.526632, 49.074205], [-116.527588, 49.076146], [-116.527881, 49.078461], [-116.527712, 49.080049], [-116.527185, 49.081583], [-116.526886, 49.082928], [-116.525579, 49.082393], [-116.524706, 49.08216], [-116.522457, 49.082062], [-116.520198, 49.081115], [-116.517344, 49.079756], [-116.514103, 49.078423], [-116.509888, 49.076173], [-116.506853, 49.074814], [-116.505054, 49.073757], [-116.503839, 49.073674], [-116.503014, 49.073389], [-116.501543, 49.072169], [-116.499071, 49.069811], [-116.49846, 49.069843], [-116.49589, 49.070477], [-116.495234, 49.070752], [-116.494088, 49.071458], [-116.492849, 49.071796], [-116.492052, 49.071881], [-116.491442, 49.072239], [-116.490936, 49.072391], [-116.48999, 49.072527], [-116.488694, 49.072574], [-116.487751, 49.072361], [-116.48716, 49.072024], [-116.486702, 49.071664], [-116.488372, 49.074647], [-116.489212, 49.082534], [-116.491785, 49.082792], [-116.512307, 49.082494], [-116.512466, 49.086259], [-116.51243, 49.088241], [-116.522148, 49.088196], [-116.522105, 49.089891], [-116.52217, 49.090241], [-116.524664, 49.095262], [-116.526768, 49.095252], [-116.526351, 49.091852], [-116.529007, 49.091982], [-116.528992, 49.090153], [-116.533515, 49.090083], [-116.533351, 49.093411], [-116.530329, 49.095686], [-116.5286, 49.099496], [-116.523418, 49.099068], [-116.523427, 49.09931], [-116.523601, 49.100047], [-116.523938, 49.100754], [-116.52728, 49.104933], [-116.531499, 49.112294], [-116.531951, 49.112765], [-116.532553, 49.11323], [-116.537164, 49.116012], [-116.537612, 49.11618], [-116.537672, 49.116815], [-116.533351, 49.117189], [-116.533613, 49.118507], [-116.533928, 49.11848], [-116.533992, 49.118917], [-116.533556, 49.118934], [-116.533661, 49.11978], [-116.533854, 49.119982], [-116.53408, 49.119989], [-116.53408, 49.120137], [-116.533557, 49.120115], [-116.533458, 49.120032], [-116.53328, 49.120023], [-116.530309, 49.120024], [-116.529252, 49.120075], [-116.529368, 49.120717], [-116.52897, 49.120824], [-116.523554, 49.120842], [-116.52353, 49.118597], [-116.517589, 49.118593], [-116.517572, 49.1311], [-116.507276, 49.131026], [-116.507276, 49.131148], [-116.4942, 49.131161], [-116.493904, 49.151143], [-116.493227, 49.155255], [-116.493765, 49.157818], [-116.49155, 49.162845], [-116.491634, 49.164095], [-116.506792, 49.164476], [-116.507067, 49.172597], [-116.517712, 49.17269], [-116.517388, 49.168389], [-116.540764, 49.168775], [-116.541268, 49.170831], [-116.544741, 49.169654], [-116.544513, 49.171145], [-116.544482, 49.17192], [-116.544696, 49.17256], [-116.545008, 49.172926], [-116.545032, 49.173275], [-116.544726, 49.174477], [-116.547353, 49.174315], [-116.549026, 49.174716], [-116.551059, 49.175544], [-116.552098, 49.175496], [-116.558997, 49.175496], [-116.559666, 49.175454], [-116.560337, 49.175274], [-116.561691, 49.174608], [-116.562697, 49.175689], [-116.56293, 49.17618], [-116.563129, 49.176911], [-116.563197, 49.177996], [-116.563043, 49.181672], [-116.562739, 49.181947], [-116.563618, 49.18223], [-116.564753, 49.182729], [-116.568472, 49.184917], [-116.569561, 49.185631], [-116.571527, 49.187202], [-116.572363, 49.187736], [-116.572959, 49.18792], [-116.574445, 49.18819], [-116.57784, 49.189355], [-116.578209, 49.18944], [-116.579744, 49.189566], [-116.580473, 49.189696], [-116.581082, 49.189968], [-116.581395, 49.190218], [-116.581697, 49.190659], [-116.581733, 49.191306], [-116.581164, 49.192396], [-116.581024, 49.192875], [-116.581017, 49.193218], [-116.581404, 49.195374], [-116.581565, 49.195651], [-116.582011, 49.196018], [-116.58346, 49.196519], [-116.583869, 49.196725], [-116.584264, 49.19706], [-116.584512, 49.197442], [-116.584626, 49.197783], [-116.584668, 49.19844], [-116.584913, 49.199228], [-116.585825, 49.200852], [-116.586315, 49.201358], [-116.587067, 49.201692], [-116.588318, 49.201932], [-116.588852, 49.202108], [-116.589142, 49.202261], [-116.589543, 49.202646], [-116.590668, 49.205222], [-116.59076, 49.206776], [-116.591699, 49.209055], [-116.59211, 49.209447], [-116.59308, 49.209996], [-116.595985, 49.211824], [-116.596559, 49.212278], [-116.596954, 49.212846], [-116.597629, 49.214315], [-116.59805, 49.21482], [-116.598327, 49.215021], [-116.598925, 49.215272], [-116.599804, 49.215483], [-116.600496, 49.215731], [-116.600745, 49.21587], [-116.601136, 49.216231], [-116.601413, 49.216838], [-116.601222, 49.217881], [-116.601236, 49.218325], [-116.601463, 49.218988], [-116.601928, 49.219532], [-116.60314, 49.2206], [-116.603861, 49.221524], [-116.604229, 49.222147], [-116.604536, 49.223273], [-116.604736, 49.223623], [-116.60793, 49.22681], [-116.608356, 49.227105], [-116.60992, 49.227967], [-116.612973, 49.231135], [-116.614542, 49.232201], [-116.615049, 49.232671], [-116.615383, 49.233309], [-116.616215, 49.236757], [-116.61651, 49.237434], [-116.617018, 49.238223], [-116.618248, 49.239719], [-116.620736, 49.242075], [-116.621197, 49.242692], [-116.621762, 49.243717], [-116.622256, 49.244406], [-116.62561, 49.248001], [-116.626667, 49.249378], [-116.628575, 49.2508], [-116.629778, 49.252083], [-116.630319, 49.25242], [-116.631263, 49.252838], [-116.632101, 49.253553], [-116.632647, 49.253878], [-116.63589, 49.254732], [-116.638166, 49.255576], [-116.6398, 49.256476], [-116.643175, 49.257986], [-116.644027, 49.258512], [-116.646063, 49.260553], [-116.646483, 49.260782], [-116.647041, 49.260976], [-116.647769, 49.26106], [-116.648513, 49.260993], [-116.649009, 49.260871], [-116.649141, 49.261069], [-116.649791, 49.263597], [-116.65036, 49.265308], [-116.651055, 49.266911], [-116.651851, 49.268504], [-116.652491, 49.269535], [-116.653539, 49.271724], [-116.653463, 49.272343], [-116.65375, 49.273233], [-116.654839, 49.275284], [-116.655766, 49.276703], [-116.657231, 49.27851], [-116.658224, 49.279461], [-116.660114, 49.281566], [-116.660651, 49.281964], [-116.663827, 49.283775], [-116.664362, 49.284334], [-116.67068, 49.284777], [-116.682774, 49.284307]], [[-116.589223, 49.172805], [-116.589711, 49.174142], [-116.591638, 49.174806], [-116.593347, 49.175094], [-116.593358, 49.17861], [-116.590579, 49.180401], [-116.589959, 49.183006], [-116.5878, 49.183008], [-116.587662, 49.180931], [-116.587631, 49.178188], [-116.587788, 49.175767], [-116.579393, 49.175752], [-116.579174, 49.165821], [-116.58014, 49.165167], [-116.581973, 49.164076], [-116.582538, 49.1638], [-116.583942, 49.163266], [-116.584396, 49.162979], [-116.584563, 49.162827], [-116.584814, 49.162324], [-116.585032, 49.160849], [-116.585171, 49.160566], [-116.597752, 49.160552], [-116.596058, 49.15694], [-116.603631, 49.156916], [-116.602873, 49.159473], [-116.601759, 49.161601], [-116.60003, 49.163741], [-116.597647, 49.165798], [-116.592433, 49.168898], [-116.591429, 49.169635], [-116.589821, 49.17126], [-116.589223, 49.172805]], [[-116.606831, 49.102654], [-116.569193, 49.102696], [-116.568593, 49.102664], [-116.568792, 49.102328], [-116.569096, 49.102023], [-116.569252, 49.101593], [-116.569158, 49.101296], [-116.569063, 49.101214], [-116.568708, 49.10115], [-116.568158, 49.101202], [-116.567279, 49.101612], [-116.56561, 49.102911], [-116.56521, 49.103097], [-116.564867, 49.103204], [-116.564386, 49.103248], [-116.562454, 49.103285], [-116.561046, 49.103092], [-116.560253, 49.102791], [-116.559206, 49.101897], [-116.558447, 49.101058], [-116.557988, 49.100255], [-116.557736, 49.099453], [-116.557701, 49.098661], [-116.557514, 49.098194], [-116.557092, 49.097697], [-116.556114, 49.096929], [-116.555313, 49.096089], [-116.555234, 49.095764], [-116.555252, 49.095251], [-116.555418, 49.094992], [-116.55564, 49.094804], [-116.557056, 49.094197], [-116.557728, 49.094038], [-116.558896, 49.093575], [-116.559532, 49.092974], [-116.559714, 49.092444], [-116.560362, 49.091961], [-116.561409, 49.091345], [-116.562018, 49.090744], [-116.562089, 49.089551], [-116.561522, 49.088964], [-116.564417, 49.08916], [-116.565265, 49.088747], [-116.565622, 49.088806], [-116.567682, 49.090022], [-116.568738, 49.090396], [-116.570598, 49.09037], [-116.572308, 49.089597], [-116.573417, 49.088935], [-116.57419, 49.088246], [-116.575722, 49.088199], [-116.605711, 49.088185], [-116.605659, 49.086043], [-116.607283, 49.08686], [-116.608455, 49.088043], [-116.60868, 49.088174], [-116.606813, 49.088184], [-116.606831, 49.102654]]]]}, "properties": {"name": "Central Kootenay C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay C", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903017", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.463576, 49.762905], [-117.463496, 49.766054], [-117.464525, 49.772208], [-117.466205, 49.772598], [-117.467049, 49.772733], [-117.470828, 49.77276], [-117.47299, 49.77155], [-117.474832, 49.768394], [-117.474521, 49.767623], [-117.474137, 49.767186], [-117.47331, 49.765843], [-117.473341, 49.764893], [-117.474072, 49.763907], [-117.474541, 49.762765], [-117.475323, 49.761402], [-117.474272, 49.761595], [-117.472263, 49.761083], [-117.463282, 49.760996], [-117.463576, 49.762905]]]]}, "properties": {"name": "Slocan", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Slocan", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903019", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.90651, 49.919255], [-116.91237, 49.918729], [-116.913502, 49.918865], [-116.914905, 49.918716], [-116.91623, 49.918439], [-116.917711, 49.918542], [-116.918717, 49.918483], [-116.920915, 49.918144], [-116.92025, 49.915627], [-116.920346, 49.915395], [-116.920346, 49.913073], [-116.920412, 49.912978], [-116.920376, 49.912585], [-116.920176, 49.91198], [-116.920765, 49.91015], [-116.919979, 49.909032], [-116.92022, 49.907398], [-116.919817, 49.905049], [-116.920318, 49.905158], [-116.925608, 49.904981], [-116.927708, 49.905541], [-116.929875, 49.905491], [-116.930761, 49.904662], [-116.932033, 49.904291], [-116.93186, 49.904662], [-116.932745, 49.904543], [-116.934306, 49.904479], [-116.947379, 49.904723], [-116.947463, 49.902009], [-116.925699, 49.90185], [-116.925862, 49.904025], [-116.919789, 49.904533], [-116.920081, 49.901301], [-116.915481, 49.901277], [-116.907957, 49.900101], [-116.906996, 49.900837], [-116.903163, 49.901273], [-116.901969, 49.901305], [-116.901798, 49.902653], [-116.900682, 49.903652], [-116.897589, 49.905521], [-116.897296, 49.906309], [-116.896957, 49.906586], [-116.896701, 49.908868], [-116.898179, 49.911668], [-116.903807, 49.913323], [-116.904076, 49.915039], [-116.904258, 49.917052], [-116.905004, 49.919003], [-116.905578, 49.919099], [-116.905598, 49.919368], [-116.905835, 49.919324], [-116.905895, 49.919152], [-116.90651, 49.919255]]]]}, "properties": {"name": "Kaslo", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kaslo", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903023", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.35309, 49.954356], [-117.356141, 49.956469], [-117.356149, 49.95695], [-117.356595, 49.95748], [-117.357212, 49.957894], [-117.357747, 49.958093], [-117.359506, 49.95797], [-117.359724, 49.958014], [-117.361556, 49.95886], [-117.364111, 49.957328], [-117.365226, 49.956145], [-117.366475, 49.953947], [-117.366768, 49.951127], [-117.365679, 49.94903], [-117.363761, 49.947139], [-117.363352, 49.946829], [-117.359005, 49.948458], [-117.355407, 49.948547], [-117.355413, 49.950315], [-117.35467, 49.950315], [-117.354669, 49.950909], [-117.353094, 49.952008], [-117.353639, 49.952334], [-117.353467, 49.952454], [-117.354069, 49.952812], [-117.354052, 49.953178], [-117.353372, 49.953178], [-117.353372, 49.954082], [-117.35309, 49.954082], [-117.35309, 49.954356]]]]}, "properties": {"name": "Silverton", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Silverton", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903027", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.374518, 49.996887], [-117.376951, 49.998558], [-117.380328, 49.997171], [-117.383311, 49.994677], [-117.386838, 49.990427], [-117.385831, 49.984942], [-117.382045, 49.980901], [-117.374162, 49.980174], [-117.37319, 49.980204], [-117.371555, 49.980381], [-117.370746, 49.98038], [-117.370545, 49.981114], [-117.370567, 49.982569], [-117.370642, 49.982896], [-117.370771, 49.983143], [-117.372421, 49.985107], [-117.372263, 49.989024], [-117.37064, 49.989403], [-117.366872, 49.989468], [-117.365186, 49.989988], [-117.362294, 49.990368], [-117.361865, 49.990656], [-117.361356, 49.99089], [-117.360993, 49.99375], [-117.357831, 49.99361], [-117.357865, 49.994886], [-117.357177, 49.994867], [-117.357242, 49.994331], [-117.356725, 49.993787], [-117.35574, 49.993268], [-117.355001, 49.993221], [-117.35585, 49.995395], [-117.356382, 49.995665], [-117.357489, 49.996566], [-117.358064, 49.996658], [-117.357955, 49.997227], [-117.360588, 49.997462], [-117.359045, 49.997759], [-117.358459, 50.002404], [-117.363441, 50.002189], [-117.363686, 49.997939], [-117.364043, 49.997974], [-117.363877, 49.99968], [-117.368869, 49.999486], [-117.369259, 49.999844], [-117.370713, 49.999156], [-117.37224, 49.998325], [-117.372071, 49.998129], [-117.372093, 49.997516], [-117.372385, 49.99721], [-117.372617, 49.996777], [-117.372979, 49.996435], [-117.373471, 49.996286], [-117.374518, 49.996887]]]]}, "properties": {"name": "New Denver", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "New Denver", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903032", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.264045, 51.054299], [-117.271259, 51.054168], [-117.279134, 51.055123], [-117.285123, 51.054393], [-117.297297, 51.052328], [-117.304315, 51.051324], [-117.315056, 51.037734], [-117.317742, 51.037512], [-117.319183, 51.036636], [-117.324386, 51.035498], [-117.32727, 51.035561], [-117.328591, 51.03681], [-117.329383, 51.038015], [-117.330823, 51.038186], [-117.340804, 51.036328], [-117.342731, 51.036615], [-117.344774, 51.038164], [-117.346067, 51.038127], [-117.347504, 51.038881], [-117.346403, 51.034005], [-117.348735, 51.032651], [-117.355622, 51.024759], [-117.358914, 51.022236], [-117.372266, 51.016623], [-117.373211, 51.012715], [-117.38017, 51.008237], [-117.383167, 51.006393], [-117.390199, 50.999796], [-117.388884, 50.997606], [-117.387973, 50.996556], [-117.387332, 50.993785], [-117.387791, 50.990854], [-117.392618, 50.988188], [-117.394623, 50.987254], [-117.398619, 50.985948], [-117.398866, 50.984723], [-117.398464, 50.982735], [-117.3993, 50.981754], [-117.401416, 50.980032], [-117.401809, 50.978812], [-117.400668, 50.977735], [-117.399606, 50.976459], [-117.399339, 50.974569], [-117.398541, 50.972731], [-117.39812, 50.971379], [-117.398013, 50.971379], [-117.396951, 50.968169], [-117.396444, 50.965393], [-117.397805, 50.961195], [-117.400324, 50.96074], [-117.404684, 50.961008], [-117.408898, 50.960387], [-117.411475, 50.959347], [-117.41675, 50.955598], [-117.41797, 50.955061], [-117.419666, 50.954895], [-117.423222, 50.952456], [-117.42493, 50.952643], [-117.429031, 50.950344], [-117.429894, 50.948267], [-117.431125, 50.948082], [-117.436439, 50.948592], [-117.437781, 50.948236], [-117.438624, 50.946803], [-117.439008, 50.944854], [-117.438681, 50.943023], [-117.438248, 50.936669], [-117.440985, 50.934365], [-117.437446, 50.932964], [-117.434199, 50.930485], [-117.431315, 50.926199], [-117.427546, 50.924788], [-117.42451, 50.923964], [-117.42098, 50.923914], [-117.418918, 50.924539], [-117.417766, 50.923244], [-117.416396, 50.919193], [-117.417089, 50.916868], [-117.416929, 50.913276], [-117.417603, 50.909246], [-117.421543, 50.90605], [-117.426117, 50.903966], [-117.428597, 50.903798], [-117.431273, 50.905432], [-117.432507, 50.903746], [-117.434593, 50.903328], [-117.442095, 50.90124], [-117.444932, 50.900263], [-117.447558, 50.900983], [-117.453845, 50.899185], [-117.456501, 50.899112], [-117.459129, 50.899331], [-117.461565, 50.900102], [-117.46729, 50.902411], [-117.474735, 50.896557], [-117.475403, 50.892527], [-117.484339, 50.888052], [-117.488239, 50.886395], [-117.490519, 50.884426], [-117.490646, 50.883108], [-117.490188, 50.881186], [-117.487512, 50.879461], [-117.485171, 50.879165], [-117.482017, 50.877662], [-117.480101, 50.872474], [-117.47839, 50.871439], [-117.4749, 50.870225], [-117.473838, 50.869029], [-117.472621, 50.866719], [-117.469692, 50.866214], [-117.469491, 50.863041], [-117.471201, 50.861305], [-117.47044, 50.859964], [-117.468217, 50.858336], [-117.465727, 50.854634], [-117.462906, 50.851907], [-117.461316, 50.850838], [-117.460307, 50.849692], [-117.459798, 50.84655], [-117.458745, 50.845533], [-117.45791, 50.840683], [-117.458235, 50.840128], [-117.456759, 50.839094], [-117.45618, 50.837559], [-117.455167, 50.832627], [-117.455407, 50.831027], [-117.454828, 50.830533], [-117.453266, 50.830043], [-117.453625, 50.829084], [-117.46128, 50.821232], [-117.464121, 50.817757], [-117.464664, 50.814546], [-117.465174, 50.812627], [-117.466797, 50.811191], [-117.465432, 50.808993], [-117.46259, 50.805768], [-117.461153, 50.804802], [-117.458751, 50.800389], [-117.455351, 50.797672], [-117.449092, 50.796473], [-117.445466, 50.796097], [-117.439061, 50.79711], [-117.435473, 50.797294], [-117.432689, 50.796832], [-117.433091, 50.795085], [-117.431391, 50.79255], [-117.430883, 50.784921], [-117.4291, 50.782765], [-117.422571, 50.781745], [-117.419657, 50.7831], [-117.412655, 50.781708], [-117.405659, 50.779317], [-117.400852, 50.776586], [-117.399855, 50.772581], [-117.398212, 50.767609], [-117.396396, 50.764394], [-117.394157, 50.76172], [-117.391316, 50.759991], [-117.390237, 50.758715], [-117.390242, 50.755366], [-117.39083, 50.752216], [-117.38997, 50.750595], [-117.387375, 50.74873], [-117.384461, 50.747983], [-117.382279, 50.747573], [-117.382002, 50.746152], [-117.382757, 50.744596], [-117.384092, 50.741387], [-117.385524, 50.737655], [-117.387127, 50.735015], [-117.392286, 50.722088], [-117.393732, 50.720559], [-117.394391, 50.719029], [-117.398139, 50.71809], [-117.401473, 50.718545], [-117.401858, 50.717444], [-117.401106, 50.716152], [-117.39893, 50.714744], [-117.39731, 50.713328], [-117.397818, 50.712159], [-117.397755, 50.711392], [-117.395793, 50.710639], [-117.392886, 50.709144], [-117.381827, 50.708206], [-117.376116, 50.70654], [-117.37442, 50.704504], [-117.370829, 50.701982], [-117.36694, 50.708085], [-117.36073, 50.712391], [-117.360069, 50.713922], [-117.361205, 50.716465], [-117.356367, 50.719974], [-117.353337, 50.720896], [-117.347842, 50.721234], [-117.343897, 50.720871], [-117.341055, 50.721991], [-117.337949, 50.722043], [-117.328268, 50.723505], [-117.323108, 50.724179], [-117.322135, 50.725579], [-117.32062, 50.72684], [-117.316869, 50.727776], [-117.314064, 50.729206], [-117.310604, 50.732769], [-117.308742, 50.738394], [-117.306422, 50.736596], [-117.303865, 50.733937], [-117.301373, 50.733395], [-117.298913, 50.733913], [-117.294761, 50.735596], [-117.290376, 50.735917], [-117.287586, 50.73695], [-117.28476, 50.737423], [-117.28332, 50.739304], [-117.281481, 50.740081], [-117.279319, 50.740625], [-117.275856, 50.744187], [-117.273545, 50.744592], [-117.266235, 50.744059], [-117.261495, 50.74604], [-117.255116, 50.744545], [-117.252086, 50.742012], [-117.254021, 50.738007], [-117.254765, 50.735246], [-117.253763, 50.730533], [-117.255415, 50.729308], [-117.258395, 50.728226], [-117.259411, 50.726887], [-117.260461, 50.724756], [-117.262548, 50.723343], [-117.2641, 50.722642], [-117.266416, 50.719887], [-117.265287, 50.718695], [-117.265055, 50.717334], [-117.265248, 50.715433], [-117.263135, 50.712085], [-117.263823, 50.707809], [-117.263427, 50.692546], [-117.265382, 50.690599], [-117.26747, 50.687335], [-117.270466, 50.685607], [-117.269045, 50.682289], [-117.268616, 50.680127], [-117.268528, 50.677802], [-117.268015, 50.674418], [-117.26927, 50.673441], [-117.275912, 50.671304], [-117.273694, 50.670832], [-117.271263, 50.668353], [-117.26907, 50.666736], [-117.266641, 50.665608], [-117.264239, 50.664688], [-117.262586, 50.66321], [-117.261332, 50.660985], [-117.260435, 50.659803], [-117.258137, 50.657858], [-117.254321, 50.65447], [-117.2506, 50.654259], [-117.247522, 50.653163], [-117.24063, 50.653232], [-117.234837, 50.652935], [-117.232713, 50.651335], [-117.231632, 50.649704], [-117.229791, 50.648277], [-117.229155, 50.646811], [-117.22986, 50.645342], [-117.229104, 50.643695], [-117.229203, 50.64182], [-117.229917, 50.639352], [-117.230805, 50.635629], [-117.229594, 50.632113], [-117.233841, 50.62941], [-117.236729, 50.627356], [-117.240351, 50.624892], [-117.241425, 50.624319], [-117.243434, 50.623638], [-117.243417, 50.623556], [-117.243827, 50.623098], [-117.267836, 50.613567], [-117.268903, 50.609763], [-117.273394, 50.602763], [-117.27337, 50.597802], [-117.280959, 50.592041], [-117.296685, 50.584303], [-117.306801, 50.577447], [-117.30705, 50.572412], [-117.300644, 50.568133], [-117.292381, 50.564976], [-117.290046, 50.563829], [-117.285792, 50.562057], [-117.279829, 50.556118], [-117.273521, 50.554], [-117.270776, 50.553021], [-117.258825, 50.544338], [-117.256965, 50.538366], [-117.245038, 50.535081], [-117.240688, 50.524042], [-117.243848, 50.519471], [-117.262223, 50.513976], [-117.271017, 50.513672], [-117.274852, 50.512774], [-117.276641, 50.511796], [-117.278094, 50.511187], [-117.279718, 50.509274], [-117.281046, 50.506389], [-117.281363, 50.504695], [-117.285031, 50.5029], [-117.288869, 50.501633], [-117.290184, 50.500359], [-117.295711, 50.497028], [-117.308054, 50.492311], [-117.316319, 50.489042], [-117.321201, 50.487318], [-117.332132, 50.484817], [-117.342729, 50.483438], [-117.351684, 50.483652], [-117.35613, 50.485201], [-117.365948, 50.486441], [-117.376035, 50.48646], [-117.385734, 50.485894], [-117.397372, 50.484677], [-117.4359, 50.484368], [-117.447958, 50.491857], [-117.451034, 50.493525], [-117.462944, 50.492538], [-117.473278, 50.494485], [-117.480546, 50.49125], [-117.494356, 50.488989], [-117.498918, 50.485235], [-117.496752, 50.477292], [-117.493764, 50.475809], [-117.50161, 50.469946], [-117.501617, 50.466723], [-117.499701, 50.457122], [-117.499742, 50.457145], [-117.499303, 50.456231], [-117.495558, 50.450429], [-117.492268, 50.449108], [-117.489059, 50.448106], [-117.487711, 50.445488], [-117.479464, 50.440145], [-117.474861, 50.436452], [-117.472601, 50.436471], [-117.467008, 50.434498], [-117.46635, 50.43131], [-117.462471, 50.428699], [-117.456139, 50.426415], [-117.454142, 50.425424], [-117.445321, 50.424414], [-117.444113, 50.423805], [-117.438193, 50.42354], [-117.436132, 50.422652], [-117.431148, 50.422388], [-117.429296, 50.421612], [-117.420174, 50.421151], [-117.415959, 50.422042], [-117.414556, 50.425155], [-117.412605, 50.424833], [-117.406268, 50.420928], [-117.403001, 50.419429], [-117.395855, 50.419325], [-117.381957, 50.412274], [-117.379641, 50.411198], [-117.377167, 50.408078], [-117.374413, 50.407547], [-117.364901, 50.40689], [-117.363103, 50.405588], [-117.361479, 50.399725], [-117.358953, 50.396321], [-117.360359, 50.393215], [-117.360206, 50.391979], [-117.366046, 50.388526], [-117.369268, 50.382331], [-117.374599, 50.380122], [-117.374398, 50.376004], [-117.376576, 50.372859], [-117.375115, 50.369252], [-117.374489, 50.368911], [-117.375537, 50.366072], [-117.375397, 50.362448], [-117.374754, 50.359471], [-117.381376, 50.3564], [-117.388158, 50.356183], [-117.394368, 50.355908], [-117.397663, 50.354248], [-117.39963, 50.353801], [-117.399893, 50.353825], [-117.393164, 50.343112], [-117.360981, 50.325663], [-117.362316, 50.321079], [-117.368057, 50.287062], [-117.368276, 50.278206], [-117.362297, 50.265502], [-117.348517, 50.261476], [-117.339142, 50.259338], [-117.317277, 50.265752], [-117.311281, 50.277287], [-117.303552, 50.279907], [-117.290087, 50.280287], [-117.279384, 50.290399], [-117.25684, 50.292196], [-117.235814, 50.294535], [-117.233738, 50.267631], [-117.240676, 50.256187], [-117.221243, 50.253353], [-117.22612, 50.240874], [-117.235126, 50.235601], [-117.259882, 50.237673], [-117.26528, 50.218927], [-117.275117, 50.208872], [-117.245829, 50.195263], [-117.218993, 50.195193], [-117.201149, 50.186464], [-117.209945, 50.17305], [-117.226464, 50.155371], [-117.227378, 50.143987], [-117.236816, 50.139657], [-117.232416, 50.135518], [-117.227627, 50.135499], [-117.208478, 50.134429], [-117.166808, 50.128444], [-117.164535, 50.122147], [-117.168413, 50.111173], [-117.173592, 50.094245], [-117.193648, 50.089004], [-117.19064, 50.082765], [-117.206523, 50.074828], [-117.209887, 50.064553], [-117.212994, 50.060833], [-117.213474, 50.058847], [-117.213278, 50.057187], [-117.212893, 50.055577], [-117.211755, 50.053128], [-117.211791, 50.052534], [-117.211388, 50.051402], [-117.211193, 50.048777], [-117.210665, 50.048032], [-117.208804, 50.046363], [-117.207559, 50.043965], [-117.207581, 50.04374], [-117.206933, 50.042906], [-117.205294, 50.041623], [-117.201947, 50.040254], [-117.201178, 50.040079], [-117.204005, 50.037584], [-117.204591, 50.036691], [-117.204805, 50.035851], [-117.204222, 50.034236], [-117.20073, 50.031801], [-117.197227, 50.030493], [-117.195945, 50.029654], [-117.194658, 50.028518], [-117.189655, 50.025019], [-117.188175, 50.020199], [-117.188224, 50.015672], [-117.186892, 50.004889], [-117.185569, 50.002837], [-117.178898, 49.999514], [-117.183247, 49.993075], [-117.164385, 49.987554], [-117.14397, 49.982454], [-117.132356, 49.968261], [-117.129082, 49.947908], [-117.136318, 49.940072], [-117.130939, 49.931656], [-117.134913, 49.930698], [-117.159291, 49.925333], [-117.168441, 49.925334], [-117.174865, 49.921755], [-117.1742, 49.912586], [-117.181511, 49.908705], [-117.178848, 49.904162], [-117.175695, 49.899668], [-117.174288, 49.895753], [-117.178925, 49.892568], [-117.182932, 49.888562], [-117.183868, 49.885235], [-117.186237, 49.883418], [-117.187517, 49.879914], [-117.185745, 49.875636], [-117.182787, 49.873576], [-117.180543, 49.8709], [-117.185724, 49.868306], [-117.188277, 49.865049], [-117.195184, 49.861927], [-117.195986, 49.861037], [-117.198766, 49.860966], [-117.205164, 49.858276], [-117.211671, 49.859128], [-117.215999, 49.854969], [-117.226866, 49.845717], [-117.228746, 49.843483], [-117.230015, 49.839493], [-117.232139, 49.8301], [-117.228959, 49.824294], [-117.212278, 49.81435], [-117.209615, 49.811285], [-117.204157, 49.801801], [-117.204345, 49.794358], [-117.196501, 49.783154], [-117.195544, 49.779646], [-117.197857, 49.777087], [-117.210824, 49.771129], [-117.225356, 49.759743], [-117.212672, 49.755344], [-117.203122, 49.751849], [-117.19273, 49.743743], [-117.192498, 49.744429], [-117.194052, 49.749067], [-117.191482, 49.754155], [-117.184322, 49.756449], [-117.174725, 49.757057], [-117.157987, 49.751761], [-117.146717, 49.745122], [-117.13992, 49.744756], [-117.128203, 49.736551], [-117.123113, 49.723269], [-117.116654, 49.71169], [-117.112703, 49.704026], [-117.102288, 49.698788], [-117.090281, 49.694391], [-117.081796, 49.692084], [-117.062311, 49.690197], [-117.035449, 49.689994], [-116.998349, 49.69004], [-116.955336, 49.690325], [-116.946738, 49.689928], [-116.923561, 49.690831], [-116.920618, 49.690883], [-116.90652, 49.690836], [-116.89094, 49.690531], [-116.89011, 49.695412], [-116.886221, 49.716173], [-116.88562, 49.733953], [-116.884564, 49.749115], [-116.882481, 49.784132], [-116.880323, 49.791892], [-116.879044, 49.802007], [-116.880982, 49.810071], [-116.885309, 49.869327], [-116.870518, 49.869334], [-116.870466, 49.869743], [-116.862116, 49.870748], [-116.861588, 49.870597], [-116.861024, 49.869874], [-116.857992, 49.869312], [-116.85777, 49.86915], [-116.857255, 49.869176], [-116.856934, 49.869499], [-116.85664, 49.869976], [-116.856473, 49.870092], [-116.856292, 49.870056], [-116.856237, 49.86993], [-116.856448, 49.86921], [-116.852619, 49.868952], [-116.848443, 49.869175], [-116.831843, 49.86929], [-116.820388, 49.870435], [-116.819524, 49.870706], [-116.801682, 49.870512], [-116.784632, 49.870084], [-116.772541, 49.870047], [-116.693256, 49.87006], [-116.69717, 49.874525], [-116.67674, 49.88229], [-116.645636, 49.882594], [-116.622544, 49.897261], [-116.620762, 49.909974], [-116.599798, 49.925295], [-116.584811, 49.929683], [-116.5839, 49.94884], [-116.578833, 49.954625], [-116.565569, 49.952982], [-116.546221, 49.962069], [-116.529261, 49.972751], [-116.510142, 49.984995], [-116.497433, 49.980964], [-116.498485, 49.977784], [-116.471882, 49.966238], [-116.451257, 49.965612], [-116.443116, 49.979287], [-116.442074, 49.98776], [-116.454188, 49.994965], [-116.465822, 50.001431], [-116.469144, 50.013529], [-116.466735, 50.020445], [-116.471438, 50.037911], [-116.482987, 50.046774], [-116.49826, 50.056181], [-116.497038, 50.074467], [-116.49517, 50.093791], [-116.482604, 50.106894], [-116.480112, 50.114699], [-116.467321, 50.115156], [-116.459169, 50.117789], [-116.452138, 50.124214], [-116.449921, 50.133458], [-116.450944, 50.13647], [-116.452462, 50.142252], [-116.453612, 50.155009], [-116.458532, 50.157296], [-116.464047, 50.155791], [-116.475629, 50.159471], [-116.481389, 50.167659], [-116.481344, 50.167723], [-116.482503, 50.167861], [-116.488842, 50.173527], [-116.487968, 50.181688], [-116.49052, 50.190892], [-116.500334, 50.197908], [-116.52571, 50.20431], [-116.547482, 50.205639], [-116.556812, 50.212877], [-116.556643, 50.2226], [-116.55428, 50.236358], [-116.549814, 50.248717], [-116.549462, 50.264684], [-116.554958, 50.283488], [-116.545043, 50.300869], [-116.541849, 50.311358], [-116.540796, 50.319], [-116.55943, 50.317678], [-116.578545, 50.310889], [-116.590877, 50.308417], [-116.602113, 50.311059], [-116.60885, 50.31412], [-116.618188, 50.317513], [-116.615411, 50.323071], [-116.62299, 50.327435], [-116.622012, 50.334555], [-116.624872, 50.338379], [-116.622794, 50.345024], [-116.613803, 50.350179], [-116.620005, 50.357957], [-116.626268, 50.36521], [-116.635058, 50.378538], [-116.631562, 50.390387], [-116.637391, 50.395723], [-116.644571, 50.4124], [-116.65257, 50.420473], [-116.670816, 50.426618], [-116.68323, 50.430478], [-116.691321, 50.443104], [-116.70369, 50.453082], [-116.722436, 50.461509], [-116.704933, 50.479591], [-116.689197, 50.49237], [-116.69919, 50.518497], [-116.67286, 50.530993], [-116.66224, 50.554888], [-116.659532, 50.563737], [-116.667408, 50.568545], [-116.664108, 50.579585], [-116.654134, 50.598603], [-116.631344, 50.597429], [-116.621844, 50.614408], [-116.614392, 50.630851], [-116.603431, 50.625055], [-116.601437, 50.62074], [-116.594122, 50.619338], [-116.586973, 50.626286], [-116.578666, 50.634552], [-116.579617, 50.647276], [-116.602279, 50.653329], [-116.607622, 50.66855], [-116.625432, 50.66572], [-116.646374, 50.669784], [-116.65282, 50.670836], [-116.655667, 50.682211], [-116.667, 50.681482], [-116.678073, 50.672125], [-116.699205, 50.670815], [-116.727312, 50.674507], [-116.744362, 50.678094], [-116.749949, 50.693178], [-116.768955, 50.702078], [-116.780399, 50.69901], [-116.795256, 50.71255], [-116.78857, 50.721605], [-116.79655, 50.729302], [-116.798101, 50.729734], [-116.800246, 50.729911], [-116.802456, 50.729506], [-116.804748, 50.728684], [-116.807839, 50.726921], [-116.809564, 50.726586], [-116.81361, 50.729042], [-116.814991, 50.73163], [-116.816314, 50.732871], [-116.820602, 50.73515], [-116.820962, 50.736134], [-116.817814, 50.740427], [-116.816825, 50.741255], [-116.816192, 50.7425], [-116.817725, 50.743375], [-116.819127, 50.743632], [-116.82309, 50.748039], [-116.826585, 50.748939], [-116.829662, 50.749326], [-116.829506, 50.752432], [-116.827914, 50.754411], [-116.828197, 50.758903], [-116.832096, 50.76071], [-116.837014, 50.761453], [-116.847076, 50.76049], [-116.861085, 50.756685], [-116.871888, 50.760886], [-116.880278, 50.770146], [-116.888825, 50.769336], [-116.889672, 50.768475], [-116.891705, 50.771107], [-116.892886, 50.771021], [-116.893822, 50.770293], [-116.897806, 50.769356], [-116.901024, 50.770374], [-116.906528, 50.771921], [-116.909588, 50.771736], [-116.911723, 50.770947], [-116.913759, 50.770409], [-116.916159, 50.770568], [-116.91839, 50.771564], [-116.920175, 50.773525], [-116.921451, 50.773585], [-116.922018, 50.77796], [-116.921843, 50.779081], [-116.922306, 50.779807], [-116.923851, 50.780559], [-116.924882, 50.780513], [-116.925731, 50.781704], [-116.928572, 50.784066], [-116.927628, 50.786916], [-116.929873, 50.78904], [-116.930082, 50.790342], [-116.929741, 50.791902], [-116.931116, 50.792389], [-116.932947, 50.795951], [-116.932585, 50.796781], [-116.933973, 50.79715], [-116.935403, 50.798414], [-116.941059, 50.799638], [-116.942543, 50.799472], [-116.944665, 50.800157], [-116.947023, 50.801345], [-116.947319, 50.801946], [-116.950073, 50.802238], [-116.951129, 50.801959], [-116.954093, 50.802987], [-116.955171, 50.804117], [-116.955331, 50.804924], [-116.954922, 50.805541], [-116.955765, 50.806026], [-116.957536, 50.807821], [-116.95855, 50.808572], [-116.960353, 50.809172], [-116.963478, 50.809761], [-116.964261, 50.81029], [-116.969714, 50.809698], [-116.971089, 50.810184], [-116.980681, 50.810648], [-116.985119, 50.80905], [-116.986949, 50.808735], [-116.989647, 50.809211], [-116.993209, 50.810477], [-116.995756, 50.811954], [-116.99747, 50.81269], [-116.999451, 50.812335], [-117.003592, 50.813674], [-117.008251, 50.815951], [-117.008838, 50.816589], [-117.010666, 50.817775], [-117.012164, 50.819417], [-117.013599, 50.819716], [-117.015561, 50.819876], [-117.01946, 50.81907], [-117.027048, 50.815133], [-117.032125, 50.815317], [-117.038116, 50.815003], [-117.040906, 50.820039], [-117.040572, 50.821882], [-117.045009, 50.825464], [-117.048372, 50.827376], [-117.050432, 50.829888], [-117.04979, 50.830284], [-117.049717, 50.832115], [-117.045831, 50.835407], [-117.046055, 50.83631], [-117.047991, 50.838628], [-117.046834, 50.846832], [-117.045853, 50.847261], [-117.046077, 50.848165], [-117.044936, 50.848353], [-117.041106, 50.855196], [-117.041532, 50.856414], [-117.043759, 50.858769], [-117.044709, 50.858461], [-117.045734, 50.858812], [-117.0462, 50.858179], [-117.064659, 50.853228], [-117.071318, 50.854607], [-117.075883, 50.855492], [-117.076686, 50.857431], [-117.078974, 50.8596], [-117.082322, 50.861205], [-117.083953, 50.864568], [-117.083611, 50.865564], [-117.079338, 50.869923], [-117.075923, 50.879067], [-117.07595, 50.882854], [-117.074822, 50.883888], [-117.071536, 50.886173], [-117.070051, 50.889426], [-117.069769, 50.891765], [-117.072028, 50.893886], [-117.075186, 50.895882], [-117.075996, 50.898387], [-117.07114, 50.898706], [-117.065129, 50.903862], [-117.065565, 50.90454], [-117.066865, 50.905725], [-117.067398, 50.90683], [-117.065877, 50.908506], [-117.063861, 50.909152], [-117.063407, 50.909838], [-117.065798, 50.913963], [-117.064994, 50.916328], [-117.067522, 50.917075], [-117.068925, 50.918007], [-117.068964, 50.920149], [-117.063318, 50.926284], [-117.059043, 50.928857], [-117.05995, 50.929297], [-117.05701, 50.932395], [-117.056713, 50.933323], [-117.053263, 50.935365], [-117.053918, 50.936382], [-117.048277, 50.940872], [-117.048503, 50.944833], [-117.043523, 50.947024], [-117.042373, 50.94693], [-117.041112, 50.947489], [-117.039167, 50.950041], [-117.038062, 50.954863], [-117.035993, 50.955294], [-117.034291, 50.955459], [-117.033275, 50.95584], [-117.033113, 50.958091], [-117.035907, 50.95911], [-117.037803, 50.96083], [-117.040514, 50.96183], [-117.046832, 50.963617], [-117.048691, 50.965392], [-117.0498, 50.966006], [-117.056562, 50.965748], [-117.058649, 50.965139], [-117.064747, 50.96823], [-117.064978, 50.969698], [-117.066581, 50.971768], [-117.068171, 50.971347], [-117.070304, 50.970272], [-117.071681, 50.970475], [-117.079439, 50.970377], [-117.081351, 50.970041], [-117.083103, 50.969464], [-117.083666, 50.968974], [-117.084967, 50.969197], [-117.088592, 50.969031], [-117.095191, 50.970968], [-117.10593, 50.96798], [-117.108846, 50.967547], [-117.111894, 50.969914], [-117.111448, 50.971165], [-117.110056, 50.972213], [-117.110685, 50.973463], [-117.111513, 50.973641], [-117.113187, 50.975124], [-117.11423, 50.975358], [-117.116155, 50.976265], [-117.117342, 50.976177], [-117.119312, 50.977016], [-117.122364, 50.977738], [-117.123443, 50.977621], [-117.125383, 50.977731], [-117.126108, 50.977084], [-117.128144, 50.9768], [-117.131788, 50.976797], [-117.132535, 50.975918], [-117.136387, 50.974215], [-117.140137, 50.973163], [-117.143495, 50.972726], [-117.147134, 50.973801], [-117.153231, 50.974961], [-117.155233, 50.975847], [-117.156761, 50.977653], [-117.160874, 50.981239], [-117.16208, 50.981316], [-117.162225, 50.986379], [-117.165352, 50.991616], [-117.165239, 50.993516], [-117.164645, 50.994127], [-117.158403, 50.994701], [-117.156477, 50.996175], [-117.15537, 50.996014], [-117.153861, 50.997434], [-117.154472, 50.998377], [-117.149685, 51.001004], [-117.147588, 51.000991], [-117.145376, 51.002994], [-117.138964, 51.005085], [-117.138062, 51.005777], [-117.137068, 51.008818], [-117.133866, 51.013037], [-117.131421, 51.0151], [-117.130133, 51.018104], [-117.130988, 51.022469], [-117.132753, 51.022852], [-117.134824, 51.025082], [-117.135859, 51.026679], [-117.137887, 51.028013], [-117.143283, 51.027149], [-117.147507, 51.025064], [-117.16383, 51.026322], [-117.165243, 51.028499], [-117.160273, 51.036504], [-117.162378, 51.040851], [-117.162671, 51.044345], [-117.172531, 51.045247], [-117.178463, 51.048389], [-117.180296, 51.049694], [-117.185508, 51.052883], [-117.190766, 51.054829], [-117.197396, 51.055243], [-117.198751, 51.05505], [-117.201052, 51.058616], [-117.199641, 51.06114], [-117.199015, 51.063561], [-117.203764, 51.065934], [-117.206906, 51.065685], [-117.210677, 51.066063], [-117.211328, 51.065723], [-117.211356, 51.065781], [-117.216555, 51.062428], [-117.22435, 51.059257], [-117.237185, 51.05727], [-117.264045, 51.054299]], [[-116.920368, 49.912561], [-116.920373, 49.914681], [-116.920346, 49.915395], [-116.92025, 49.915627], [-116.920915, 49.918144], [-116.918717, 49.918483], [-116.917711, 49.918542], [-116.91623, 49.918439], [-116.914905, 49.918716], [-116.913502, 49.918865], [-116.91237, 49.918729], [-116.90651, 49.919255], [-116.905895, 49.919152], [-116.905835, 49.919324], [-116.905598, 49.919368], [-116.905578, 49.919099], [-116.905004, 49.919003], [-116.904258, 49.917052], [-116.904076, 49.915039], [-116.903807, 49.913323], [-116.898179, 49.911668], [-116.896701, 49.908868], [-116.896957, 49.906586], [-116.897296, 49.906309], [-116.897589, 49.905521], [-116.900682, 49.903652], [-116.901798, 49.902653], [-116.901969, 49.901305], [-116.903163, 49.901273], [-116.906996, 49.900837], [-116.907957, 49.900101], [-116.915481, 49.901277], [-116.920081, 49.901301], [-116.919789, 49.904533], [-116.925862, 49.904025], [-116.925699, 49.90185], [-116.947463, 49.902009], [-116.947379, 49.904723], [-116.934306, 49.904479], [-116.932745, 49.904543], [-116.93186, 49.904662], [-116.932033, 49.904291], [-116.930761, 49.904662], [-116.929875, 49.905491], [-116.927708, 49.905541], [-116.925608, 49.904981], [-116.920318, 49.905158], [-116.919817, 49.905049], [-116.92022, 49.907398], [-116.919979, 49.909032], [-116.920765, 49.91015], [-116.920176, 49.91198], [-116.920368, 49.912561]]]]}, "properties": {"name": "Central Kootenay D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay D", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903039", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.13992, 49.744756], [-117.146717, 49.745122], [-117.157987, 49.751761], [-117.174725, 49.757057], [-117.184262, 49.756453], [-117.180473, 49.75255], [-117.174515, 49.74736], [-117.17178, 49.744114], [-117.17189, 49.743997], [-117.171875, 49.743845], [-117.171681, 49.743601], [-117.171609, 49.743072], [-117.171413, 49.742838], [-117.17137, 49.742146], [-117.171202, 49.742011], [-117.170964, 49.741508], [-117.17077, 49.741291], [-117.170769, 49.740932], [-117.169767, 49.739962], [-117.16929, 49.738749], [-117.168998, 49.73828], [-117.169175, 49.737867], [-117.169201, 49.737417], [-117.16999, 49.736795], [-117.169587, 49.736248], [-117.169542, 49.735294], [-117.168969, 49.734189], [-117.168663, 49.733874], [-117.168191, 49.733561], [-117.16791, 49.733227], [-117.167174, 49.732868], [-117.166701, 49.732267], [-117.166603, 49.732042], [-117.166297, 49.731738], [-117.166086, 49.73109], [-117.165697, 49.730758], [-117.165293, 49.730218], [-117.164778, 49.729815], [-117.164305, 49.729617], [-117.163789, 49.72906], [-117.162956, 49.728801], [-117.162913, 49.728253], [-117.162787, 49.728072], [-117.162174, 49.727606], [-117.162188, 49.727381], [-117.162576, 49.727254], [-117.162605, 49.7272], [-117.162506, 49.726904], [-117.162325, 49.726804], [-117.16152, 49.726645], [-117.161353, 49.726536], [-117.16095, 49.726555], [-117.160757, 49.726645], [-117.160174, 49.726511], [-117.160075, 49.726277], [-117.159922, 49.726169], [-117.159661, 49.726129], [-117.158252, 49.725334], [-117.157033, 49.724732], [-117.156156, 49.723738], [-117.154874, 49.722101], [-117.154816, 49.721824], [-117.154523, 49.721292], [-117.153563, 49.720466], [-117.152813, 49.72009], [-117.152578, 49.719766], [-117.15259, 49.719559], [-117.152771, 49.719388], [-117.15277, 49.719253], [-117.152686, 49.718911], [-117.152654, 49.71803], [-117.152514, 49.717698], [-117.152527, 49.717212], [-117.152332, 49.716943], [-117.151901, 49.716647], [-117.151901, 49.716547], [-117.152039, 49.716205], [-117.152411, 49.716043], [-117.152495, 49.715907], [-117.152495, 49.715503], [-117.152382, 49.71508], [-117.152436, 49.714486], [-117.152323, 49.71419], [-117.152501, 49.713452], [-117.152861, 49.712885], [-117.153135, 49.712111], [-117.153716, 49.711723], [-117.153661, 49.7115], [-117.153355, 49.711266], [-117.153267, 49.70998], [-117.153668, 49.709538], [-117.153694, 49.708792], [-117.154316, 49.708197], [-117.154355, 49.707469], [-117.154631, 49.706884], [-117.155114, 49.706513], [-117.155266, 49.706209], [-117.155503, 49.706036], [-117.156376, 49.705918], [-117.156528, 49.705801], [-117.156882, 49.704388], [-117.157105, 49.704217], [-117.157243, 49.704001], [-117.157558, 49.703192], [-117.158583, 49.702263], [-117.158317, 49.701742], [-117.158524, 49.701157], [-117.158535, 49.7005], [-117.158404, 49.698585], [-117.158084, 49.697965], [-117.158082, 49.697668], [-117.15826, 49.697263], [-117.158023, 49.696894], [-117.157953, 49.696383], [-117.157507, 49.696005], [-117.15716, 49.695394], [-117.157032, 49.694657], [-117.156726, 49.694163], [-117.156543, 49.693704], [-117.156502, 49.693371], [-117.156196, 49.693093], [-117.155707, 49.692013], [-117.155094, 49.69161], [-117.154997, 49.691323], [-117.154426, 49.690603], [-117.154243, 49.689651], [-117.153978, 49.689201], [-117.153741, 49.688985], [-117.153518, 49.688473], [-117.152989, 49.687979], [-117.153017, 49.687511], [-117.152739, 49.687322], [-117.15264, 49.687044], [-117.152086, 49.686765], [-117.151946, 49.686596], [-117.151626, 49.686406], [-117.15139, 49.686326], [-117.151305, 49.685714], [-117.150903, 49.685284], [-117.150332, 49.685059], [-117.14975, 49.684971], [-117.149083, 49.684476], [-117.148473, 49.684305], [-117.148041, 49.683982], [-117.147693, 49.683534], [-117.147597, 49.683029], [-117.147192, 49.6825], [-117.147109, 49.682131], [-117.146912, 49.68188], [-117.146801, 49.68152], [-117.146135, 49.680773], [-117.145328, 49.680694], [-117.1439, 49.680057], [-117.143885, 49.679805], [-117.144271, 49.679455], [-117.144201, 49.67895], [-117.143854, 49.678285], [-117.143185, 49.677468], [-117.143099, 49.676874], [-117.142724, 49.676407], [-117.142391, 49.676156], [-117.142058, 49.676002], [-117.14142, 49.675895], [-117.141281, 49.675716], [-117.141252, 49.675509], [-117.14128, 49.67523], [-117.141735, 49.674582], [-117.141762, 49.674403], [-117.141651, 49.674034], [-117.141385, 49.67362], [-117.141386, 49.673342], [-117.141688, 49.672621], [-117.142088, 49.672073], [-117.142227, 49.671721], [-117.14233, 49.669778], [-117.142219, 49.669374], [-117.142025, 49.669078], [-117.142008, 49.668321], [-117.142118, 49.668115], [-117.142339, 49.668042], [-117.142741, 49.668015], [-117.143337, 49.667574], [-117.143278, 49.666899], [-117.143459, 49.666701], [-117.142721, 49.665721], [-117.14272, 49.665371], [-117.143011, 49.665064], [-117.143023, 49.664956], [-117.142481, 49.664274], [-117.142397, 49.663815], [-117.142991, 49.663328], [-117.144194, 49.662743], [-117.144403, 49.662562], [-117.144553, 49.662229], [-117.14476, 49.661987], [-117.144857, 49.661499], [-117.145369, 49.66122], [-117.145437, 49.661085], [-117.145367, 49.660816], [-117.145213, 49.660591], [-117.144783, 49.66024], [-117.144783, 49.659944], [-117.144948, 49.659773], [-117.145128, 49.659728], [-117.145169, 49.659611], [-117.145001, 49.658757], [-117.145483, 49.658369], [-117.145843, 49.657848], [-117.145953, 49.657452], [-117.145883, 49.657029], [-117.146006, 49.656948], [-117.146491, 49.656857], [-117.146782, 49.65674], [-117.146976, 49.656577], [-117.147154, 49.656263], [-117.147278, 49.655758], [-117.147484, 49.655498], [-117.147399, 49.654912], [-117.147552, 49.654724], [-117.147897, 49.65449], [-117.148186, 49.65385], [-117.148031, 49.653158], [-117.147893, 49.652924], [-117.147948, 49.652789], [-117.149109, 49.651772], [-117.149134, 49.651447], [-117.149246, 49.651304], [-117.149853, 49.650871], [-117.149894, 49.650466], [-117.149809, 49.650097], [-117.150126, 49.649468], [-117.150348, 49.649359], [-117.150791, 49.648991], [-117.150941, 49.648657], [-117.151176, 49.648539], [-117.151716, 49.648395], [-117.151908, 49.647406], [-117.152419, 49.647037], [-117.152612, 49.646812], [-117.152665, 49.646559], [-117.153054, 49.64628], [-117.152982, 49.645902], [-117.153008, 49.645399], [-117.153755, 49.644795], [-117.153768, 49.644543], [-117.153559, 49.644228], [-117.153418, 49.643805], [-117.153446, 49.643329], [-117.152722, 49.642566], [-117.152652, 49.642295], [-117.152567, 49.641424], [-117.152591, 49.64064], [-117.15273, 49.64038], [-117.152907, 49.639659], [-117.153114, 49.639381], [-117.153113, 49.638949], [-117.152253, 49.638456], [-117.152115, 49.638303], [-117.152195, 49.638024], [-117.152528, 49.637808], [-117.152513, 49.637268], [-117.152151, 49.636755], [-117.152082, 49.636522], [-117.151706, 49.636198], [-117.151607, 49.635867], [-117.151634, 49.63565], [-117.152214, 49.635065], [-117.152268, 49.634786], [-117.152172, 49.634633], [-117.15184, 49.634454], [-117.151477, 49.633987], [-117.151476, 49.633437], [-117.151295, 49.633186], [-117.150975, 49.632934], [-117.150906, 49.632394], [-117.150794, 49.632152], [-117.150001, 49.631577], [-117.149724, 49.631245], [-117.149764, 49.630507], [-117.149388, 49.630247], [-117.148806, 49.630023], [-117.148805, 49.629583], [-117.148915, 49.629187], [-117.149191, 49.628889], [-117.149356, 49.628493], [-117.149175, 49.62826], [-117.14916, 49.627972], [-117.148869, 49.627729], [-117.148826, 49.627405], [-117.148327, 49.627109], [-117.147534, 49.626283], [-117.147132, 49.626022], [-117.146177, 49.625682], [-117.146242, 49.624971], [-117.146133, 49.624755], [-117.145882, 49.624575], [-117.145535, 49.624477], [-117.144096, 49.62438], [-117.143775, 49.624228], [-117.143429, 49.623959], [-117.142986, 49.623482], [-117.142597, 49.623185], [-117.14261, 49.622764], [-117.142747, 49.622448], [-117.142747, 49.622062], [-117.142438, 49.621486], [-117.142216, 49.621315], [-117.141442, 49.621011], [-117.141108, 49.620786], [-117.140513, 49.620697], [-117.140333, 49.620616], [-117.140193, 49.620499], [-117.140165, 49.620122], [-117.139928, 49.619645], [-117.139582, 49.619421], [-117.13918, 49.61925], [-117.138931, 49.619206], [-117.13875, 49.619188], [-117.138294, 49.61926], [-117.13803, 49.619189], [-117.137599, 49.618785], [-117.137142, 49.618614], [-117.136865, 49.618282], [-117.136683, 49.617886], [-117.136185, 49.617527], [-117.136032, 49.617329], [-117.135919, 49.616987], [-117.135172, 49.616674], [-117.134934, 49.615955], [-117.134587, 49.615536], [-117.12596, 49.6154], [-117.126693, 49.608694], [-117.124871, 49.605034], [-117.124803, 49.601543], [-117.124999, 49.600998], [-117.125207, 49.600878], [-117.125845, 49.600725], [-117.126141, 49.600479], [-117.126285, 49.600189], [-117.126029, 49.599936], [-117.125422, 49.599747], [-117.124266, 49.597488], [-117.126565, 49.596904], [-117.147368, 49.60218], [-117.152616, 49.602574], [-117.155238, 49.602641], [-117.161014, 49.600637], [-117.164995, 49.599137], [-117.167556, 49.597461], [-117.169656, 49.596366], [-117.172891, 49.594536], [-117.177031, 49.593014], [-117.181172, 49.590971], [-117.190304, 49.585717], [-117.19144, 49.585142], [-117.199677, 49.58034], [-117.211219, 49.574768], [-117.21317, 49.573879], [-117.215208, 49.572797], [-117.218438, 49.569516], [-117.226886, 49.566258], [-117.235418, 49.560661], [-117.238698, 49.558292], [-117.245882, 49.553328], [-117.246572, 49.552208], [-117.247279, 49.550515], [-117.248998, 49.547256], [-117.252401, 49.539461], [-117.256154, 49.531592], [-117.257298, 49.529378], [-117.261486, 49.525658], [-117.267376, 49.520655], [-117.271058, 49.518064], [-117.261048, 49.518473], [-117.26162, 49.516866], [-117.261762, 49.513541], [-117.261603, 49.512029], [-117.261676, 49.511084], [-117.26207, 49.510274], [-117.263432, 49.508371], [-117.263821, 49.506527], [-117.264629, 49.505202], [-117.264887, 49.504579], [-117.264793, 49.504559], [-117.265656, 49.503383], [-117.266072, 49.503021], [-117.267169, 49.502309], [-117.268127, 49.500985], [-117.269076, 49.500447], [-117.27175, 49.499231], [-117.27212, 49.498934], [-117.272876, 49.497941], [-117.27333, 49.497644], [-117.273289, 49.493367], [-117.278425, 49.493266], [-117.279122, 49.493322], [-117.280014, 49.492019], [-117.280027, 49.491477], [-117.279802, 49.490213], [-117.279756, 49.48947], [-117.279815, 49.486112], [-117.280008, 49.485645], [-117.28093, 49.484379], [-117.282279, 49.481746], [-117.282599, 49.480837], [-117.282618, 49.477834], [-117.282873, 49.475317], [-117.282877, 49.472863], [-117.287546, 49.47286], [-117.28792, 49.472943], [-117.288094, 49.473232], [-117.289459, 49.47483], [-117.289647, 49.475194], [-117.290769, 49.474441], [-117.290768, 49.474261], [-117.28966, 49.47275], [-117.290096, 49.472727], [-117.289956, 49.472218], [-117.292953, 49.472155], [-117.293021, 49.473579], [-117.296089, 49.473493], [-117.296119, 49.475501], [-117.299567, 49.475492], [-117.299501, 49.474691], [-117.30319, 49.474621], [-117.303546, 49.475226], [-117.303574, 49.476126], [-117.310813, 49.475997], [-117.310946, 49.474597], [-117.314494, 49.479011], [-117.31358, 49.479035], [-117.312007, 49.482775], [-117.311464, 49.482858], [-117.310751, 49.482702], [-117.307514, 49.482287], [-117.307632, 49.485331], [-117.307515, 49.485969], [-117.308039, 49.486391], [-117.309167, 49.486226], [-117.312439, 49.485941], [-117.314217, 49.485998], [-117.315525, 49.485864], [-117.316435, 49.485841], [-117.317614, 49.485843], [-117.318104, 49.4859], [-117.318698, 49.486073], [-117.320644, 49.486888], [-117.32278, 49.487409], [-117.323188, 49.487574], [-117.323465, 49.487717], [-117.324465, 49.488515], [-117.325656, 49.489069], [-117.326429, 49.489248], [-117.327804, 49.489278], [-117.328793, 49.489474], [-117.330035, 49.48959], [-117.330927, 49.489869], [-117.332731, 49.49092], [-117.335274, 49.493242], [-117.335557, 49.493475], [-117.336051, 49.493748], [-117.336589, 49.493874], [-117.337033, 49.493911], [-117.33902, 49.493744], [-117.339327, 49.493779], [-117.339871, 49.49395], [-117.340294, 49.494278], [-117.340831, 49.494969], [-117.340258, 49.494972], [-117.339792, 49.494859], [-117.339241, 49.494835], [-117.338216, 49.494504], [-117.337634, 49.49421], [-117.336488, 49.494131], [-117.335282, 49.493719], [-117.334373, 49.494243], [-117.33958, 49.495704], [-117.341883, 49.497189], [-117.343222, 49.498158], [-117.343918, 49.498556], [-117.346767, 49.499096], [-117.350394, 49.498777], [-117.353987, 49.499324], [-117.359029, 49.500372], [-117.367179, 49.499909], [-117.370029, 49.499677], [-117.37144, 49.498639], [-117.373536, 49.497949], [-117.379112, 49.496286], [-117.382617, 49.492442], [-117.383054, 49.490601], [-117.389902, 49.487419], [-117.398976, 49.486761], [-117.407623, 49.488507], [-117.413164, 49.487568], [-117.417347, 49.485243], [-117.420116, 49.483208], [-117.424005, 49.483067], [-117.4275, 49.483903], [-117.444304, 49.485808], [-117.44858, 49.485159], [-117.451812, 49.482846], [-117.454553, 49.481932], [-117.456703, 49.480858], [-117.457838, 49.479528], [-117.462552, 49.476133], [-117.461615, 49.475367], [-117.461682, 49.475188], [-117.461474, 49.475135], [-117.461485, 49.474704], [-117.461757, 49.474352], [-117.462428, 49.473774], [-117.4627, 49.473412], [-117.462792, 49.472764], [-117.462551, 49.472261], [-117.462521, 49.471902], [-117.463231, 49.471206], [-117.463255, 49.470613], [-117.463689, 49.469981], [-117.463792, 49.469252], [-117.463831, 49.468802], [-117.463567, 49.468678], [-117.463467, 49.468399], [-117.463568, 49.467184], [-117.463342, 49.466762], [-117.458893, 49.466984], [-117.458569, 49.464401], [-117.458477, 49.46095], [-117.458595, 49.459554], [-117.464934, 49.459471], [-117.466525, 49.457732], [-117.466819, 49.457501], [-117.46738, 49.456586], [-117.469936, 49.4555], [-117.47005, 49.451262], [-117.481753, 49.451346], [-117.482733, 49.435921], [-117.515303, 49.435867], [-117.516961, 49.435922], [-117.517442, 49.43493], [-117.51843, 49.433467], [-117.514713, 49.42164], [-117.515012, 49.391971], [-117.52572, 49.391723], [-117.526181, 49.384601], [-117.531939, 49.384364], [-117.531115, 49.377542], [-117.537775, 49.377224], [-117.537545, 49.370379], [-117.543458, 49.369983], [-117.543285, 49.363094], [-117.549281, 49.36296], [-117.549348, 49.356174], [-117.554593, 49.355821], [-117.554937, 49.348706], [-117.490876, 49.348989], [-117.491221, 49.33745], [-117.481993, 49.336714], [-117.470889, 49.336455], [-117.461003, 49.338721], [-117.451441, 49.352678], [-117.44438, 49.356536], [-117.432894, 49.361098], [-117.430538, 49.367159], [-117.430203, 49.374999], [-117.421986, 49.375665], [-117.414393, 49.37995], [-117.413379, 49.382571], [-117.419699, 49.388484], [-117.416925, 49.39353], [-117.405615, 49.396383], [-117.400844, 49.397221], [-117.394066, 49.396113], [-117.390501, 49.39234], [-117.383702, 49.392529], [-117.372775, 49.395876], [-117.348554, 49.407212], [-117.334821, 49.412297], [-117.328513, 49.41077], [-117.3199, 49.410144], [-117.31445, 49.412236], [-117.310181, 49.414915], [-117.306499, 49.418052], [-117.293617, 49.418519], [-117.275932, 49.420715], [-117.272103, 49.420701], [-117.268968, 49.419853], [-117.267005, 49.418524], [-117.262226, 49.415693], [-117.258948, 49.414237], [-117.25519, 49.412991], [-117.250177, 49.41152], [-117.229045, 49.411415], [-117.229224, 49.412925], [-117.22964, 49.436293], [-117.184844, 49.43619], [-117.156723, 49.437707], [-117.148792, 49.438333], [-117.119663, 49.437793], [-117.119094, 49.442178], [-117.117695, 49.448238], [-117.111868, 49.455628], [-117.100882, 49.464349], [-117.08869, 49.470894], [-117.079494, 49.473748], [-117.07521, 49.473512], [-117.068669, 49.472761], [-117.00406, 49.47341], [-116.835455, 49.473853], [-116.805639, 49.474956], [-116.8064, 49.477573], [-116.812212, 49.511089], [-116.81233, 49.523312], [-116.812495, 49.527644], [-116.812482, 49.530588], [-116.812728, 49.532239], [-116.812979, 49.53483], [-116.812909, 49.53614], [-116.813197, 49.538546], [-116.813387, 49.544217], [-116.814525, 49.546313], [-116.819454, 49.556519], [-116.820954, 49.560357], [-116.823258, 49.564474], [-116.826864, 49.572335], [-116.828231, 49.57483], [-116.828902, 49.575748], [-116.829441, 49.576792], [-116.832281, 49.581651], [-116.836379, 49.587954], [-116.837423, 49.589025], [-116.847892, 49.599061], [-116.85969, 49.609785], [-116.865978, 49.613609], [-116.881139, 49.618995], [-116.889284, 49.621642], [-116.901745, 49.626872], [-116.908211, 49.63721], [-116.902368, 49.651278], [-116.902683, 49.652035], [-116.897675, 49.661193], [-116.891953, 49.681621], [-116.89094, 49.690531], [-116.90652, 49.690836], [-116.920618, 49.690883], [-116.923561, 49.690831], [-116.946738, 49.689928], [-116.955336, 49.690325], [-116.998349, 49.69004], [-117.035449, 49.689994], [-117.062311, 49.690197], [-117.081796, 49.692084], [-117.090281, 49.694391], [-117.102288, 49.698788], [-117.112703, 49.704026], [-117.116654, 49.71169], [-117.123113, 49.723269], [-117.128203, 49.736551], [-117.13992, 49.744756]]]]}, "properties": {"name": "Central Kootenay E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay E", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903041", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.162188, 49.727381], [-117.162174, 49.727606], [-117.162787, 49.728072], [-117.162913, 49.728253], [-117.162956, 49.728801], [-117.163789, 49.72906], [-117.164305, 49.729617], [-117.164778, 49.729815], [-117.165293, 49.730218], [-117.165697, 49.730758], [-117.166086, 49.73109], [-117.166297, 49.731738], [-117.166603, 49.732042], [-117.166701, 49.732267], [-117.167174, 49.732868], [-117.16791, 49.733227], [-117.168191, 49.733561], [-117.168663, 49.733874], [-117.169207, 49.734548], [-117.169542, 49.735294], [-117.169587, 49.736248], [-117.16999, 49.736795], [-117.169201, 49.737417], [-117.169175, 49.737867], [-117.168998, 49.73828], [-117.16929, 49.738749], [-117.169767, 49.739962], [-117.170769, 49.740932], [-117.17077, 49.741291], [-117.170964, 49.741508], [-117.171202, 49.742011], [-117.17137, 49.742146], [-117.171413, 49.742838], [-117.171609, 49.743072], [-117.171681, 49.743601], [-117.171875, 49.743845], [-117.17189, 49.743997], [-117.17178, 49.744114], [-117.174515, 49.74736], [-117.180473, 49.75255], [-117.184262, 49.756453], [-117.191482, 49.754155], [-117.194052, 49.749067], [-117.192498, 49.744429], [-117.193806, 49.740494], [-117.197327, 49.722311], [-117.194766, 49.711459], [-117.192535, 49.705183], [-117.19234, 49.702167], [-117.190663, 49.698014], [-117.198069, 49.697305], [-117.206108, 49.700698], [-117.210803, 49.700894], [-117.216314, 49.696092], [-117.23151, 49.699171], [-117.23781, 49.69168], [-117.245837, 49.689973], [-117.255491, 49.684526], [-117.258171, 49.685053], [-117.25856, 49.685907], [-117.268914, 49.691476], [-117.286316, 49.688696], [-117.300331, 49.684033], [-117.316805, 49.67846], [-117.316674, 49.662262], [-117.31459, 49.650579], [-117.318864, 49.64012], [-117.316948, 49.632698], [-117.322627, 49.623962], [-117.326247, 49.623847], [-117.330081, 49.623826], [-117.334628, 49.623646], [-117.342741, 49.620816], [-117.351589, 49.622226], [-117.362141, 49.626979], [-117.376288, 49.624002], [-117.394808, 49.634206], [-117.40299, 49.621505], [-117.429714, 49.609824], [-117.426844, 49.602105], [-117.417419, 49.598334], [-117.415448, 49.586443], [-117.41781, 49.584163], [-117.424164, 49.585236], [-117.434057, 49.588729], [-117.44796, 49.58413], [-117.44823, 49.575385], [-117.458524, 49.578518], [-117.474378, 49.573383], [-117.492354, 49.575733], [-117.503084, 49.574927], [-117.516289, 49.556802], [-117.527769, 49.557067], [-117.538143, 49.550091], [-117.543372, 49.548065], [-117.543555, 49.546874], [-117.544389, 49.543856], [-117.545586, 49.54269], [-117.547634, 49.54231], [-117.549693, 49.541703], [-117.550371, 49.541348], [-117.555167, 49.540688], [-117.556178, 49.539719], [-117.556146, 49.538406], [-117.553849, 49.536335], [-117.554003, 49.535615], [-117.55518, 49.534271], [-117.555144, 49.532886], [-117.553974, 49.530144], [-117.554126, 49.529705], [-117.555448, 49.528838], [-117.555414, 49.528074], [-117.556034, 49.524076], [-117.555271, 49.522764], [-117.554, 49.52189], [-117.552702, 49.520029], [-117.551039, 49.518164], [-117.548379, 49.513343], [-117.546698, 49.511152], [-117.545812, 49.511052], [-117.543661, 49.510522], [-117.543287, 49.509865], [-117.542194, 49.508883], [-117.54198, 49.508111], [-117.542064, 49.506363], [-117.542803, 49.503841], [-117.543032, 49.501311], [-117.542683, 49.499687], [-117.543609, 49.498256], [-117.544386, 49.497881], [-117.544723, 49.497574], [-117.544819, 49.497354], [-117.544484, 49.496645], [-117.544764, 49.496302], [-117.544863, 49.495907], [-117.544635, 49.495364], [-117.545193, 49.494643], [-117.545083, 49.493757], [-117.545207, 49.493098], [-117.545466, 49.492614], [-117.54515, 49.492002], [-117.54471, 49.491654], [-117.544308, 49.491546], [-117.543797, 49.491191], [-117.543583, 49.490885], [-117.543663, 49.489734], [-117.544588, 49.487124], [-117.545026, 49.484418], [-117.544843, 49.483927], [-117.545143, 49.483699], [-117.545118, 49.483524], [-117.544459, 49.483029], [-117.544446, 49.482828], [-117.544616, 49.482467], [-117.545517, 49.481563], [-117.545435, 49.480913], [-117.544494, 49.480583], [-117.54233, 49.480154], [-117.542056, 49.479936], [-117.51679, 49.479865], [-117.517183, 49.47258], [-117.511537, 49.472631], [-117.511689, 49.465615], [-117.505843, 49.465795], [-117.50593, 49.463794], [-117.505846, 49.462801], [-117.505897, 49.462005], [-117.504769, 49.462076], [-117.503142, 49.46242], [-117.502012, 49.462524], [-117.50133, 49.462465], [-117.500083, 49.46208], [-117.498516, 49.462008], [-117.497539, 49.462018], [-117.490853, 49.462506], [-117.489552, 49.462541], [-117.489052, 49.462463], [-117.487156, 49.461886], [-117.484772, 49.460779], [-117.481369, 49.459777], [-117.480552, 49.459623], [-117.478492, 49.459588], [-117.475969, 49.459913], [-117.474404, 49.460224], [-117.473717, 49.460556], [-117.473088, 49.461063], [-117.472753, 49.461501], [-117.472489, 49.462057], [-117.472058, 49.463981], [-117.470916, 49.465776], [-117.47069, 49.46705], [-117.470424, 49.467913], [-117.469989, 49.468891], [-117.469259, 49.469439], [-117.468578, 49.469809], [-117.468267, 49.470093], [-117.468102, 49.470422], [-117.467984, 49.471609], [-117.467839, 49.472128], [-117.467663, 49.472395], [-117.465955, 49.474264], [-117.465589, 49.474764], [-117.464874, 49.476033], [-117.464456, 49.476377], [-117.462552, 49.476133], [-117.457838, 49.479528], [-117.456703, 49.480858], [-117.454553, 49.481932], [-117.451812, 49.482846], [-117.44858, 49.485159], [-117.444304, 49.485808], [-117.4275, 49.483903], [-117.424005, 49.483067], [-117.420116, 49.483208], [-117.417347, 49.485243], [-117.413164, 49.487568], [-117.407623, 49.488507], [-117.398976, 49.486761], [-117.389902, 49.487419], [-117.383054, 49.490601], [-117.382617, 49.492442], [-117.379112, 49.496286], [-117.373536, 49.497949], [-117.37144, 49.498639], [-117.370029, 49.499677], [-117.367179, 49.499909], [-117.359029, 49.500372], [-117.353987, 49.499324], [-117.350394, 49.498777], [-117.346767, 49.499096], [-117.343918, 49.498556], [-117.343222, 49.498158], [-117.341883, 49.497189], [-117.33958, 49.495704], [-117.334314, 49.494227], [-117.330525, 49.491947], [-117.315552, 49.489427], [-117.312336, 49.489028], [-117.310467, 49.490315], [-117.30326, 49.496085], [-117.300857, 49.496749], [-117.294737, 49.499999], [-117.291381, 49.503172], [-117.285341, 49.508491], [-117.284138, 49.509309], [-117.286882, 49.510766], [-117.286664, 49.51093], [-117.286271, 49.511597], [-117.285677, 49.512087], [-117.28533, 49.512249], [-117.286121, 49.513103], [-117.285082, 49.513882], [-117.28588, 49.514262], [-117.28526, 49.514782], [-117.285256, 49.514937], [-117.284097, 49.515686], [-117.284628, 49.516131], [-117.283795, 49.516744], [-117.284449, 49.517061], [-117.285405, 49.516439], [-117.288409, 49.518209], [-117.283074, 49.518208], [-117.281862, 49.517371], [-117.280498, 49.516759], [-117.276241, 49.514317], [-117.274703, 49.515499], [-117.267376, 49.520655], [-117.261486, 49.525658], [-117.257298, 49.529378], [-117.256154, 49.531592], [-117.252401, 49.539461], [-117.248998, 49.547256], [-117.247279, 49.550515], [-117.246572, 49.552208], [-117.245882, 49.553328], [-117.238698, 49.558292], [-117.235418, 49.560661], [-117.226886, 49.566258], [-117.218438, 49.569516], [-117.215208, 49.572797], [-117.21317, 49.573879], [-117.211219, 49.574768], [-117.199677, 49.58034], [-117.19144, 49.585142], [-117.190304, 49.585717], [-117.181172, 49.590971], [-117.177031, 49.593014], [-117.172891, 49.594536], [-117.169656, 49.596366], [-117.167556, 49.597461], [-117.164995, 49.599137], [-117.161014, 49.600637], [-117.155238, 49.602641], [-117.152616, 49.602574], [-117.147368, 49.60218], [-117.126565, 49.596904], [-117.124266, 49.597488], [-117.125422, 49.599747], [-117.126029, 49.599936], [-117.126285, 49.600189], [-117.126141, 49.600479], [-117.125845, 49.600725], [-117.125207, 49.600878], [-117.124999, 49.600998], [-117.124803, 49.601543], [-117.124871, 49.605034], [-117.126693, 49.608694], [-117.12596, 49.6154], [-117.134587, 49.615536], [-117.134934, 49.615955], [-117.135172, 49.616674], [-117.135919, 49.616987], [-117.136032, 49.617329], [-117.136185, 49.617527], [-117.136683, 49.617886], [-117.136865, 49.618282], [-117.137142, 49.618614], [-117.137599, 49.618785], [-117.13803, 49.619189], [-117.138294, 49.61926], [-117.13875, 49.619188], [-117.138931, 49.619206], [-117.13918, 49.61925], [-117.139582, 49.619421], [-117.139928, 49.619645], [-117.140165, 49.620122], [-117.140193, 49.620499], [-117.140333, 49.620616], [-117.140513, 49.620697], [-117.141108, 49.620786], [-117.141442, 49.621011], [-117.142216, 49.621315], [-117.142438, 49.621486], [-117.142747, 49.622062], [-117.142747, 49.622448], [-117.14261, 49.622764], [-117.142597, 49.623185], [-117.142986, 49.623482], [-117.143429, 49.623959], [-117.143775, 49.624228], [-117.144096, 49.62438], [-117.145535, 49.624477], [-117.145882, 49.624575], [-117.146133, 49.624755], [-117.146242, 49.624971], [-117.146177, 49.625682], [-117.147132, 49.626022], [-117.147534, 49.626283], [-117.148327, 49.627109], [-117.148826, 49.627405], [-117.148869, 49.627729], [-117.14916, 49.627972], [-117.149175, 49.62826], [-117.149356, 49.628493], [-117.149191, 49.628889], [-117.148915, 49.629187], [-117.148805, 49.629583], [-117.148806, 49.630023], [-117.149388, 49.630247], [-117.149764, 49.630507], [-117.149724, 49.631245], [-117.150001, 49.631577], [-117.150794, 49.632152], [-117.150906, 49.632394], [-117.150975, 49.632934], [-117.151295, 49.633186], [-117.151476, 49.633437], [-117.151477, 49.633987], [-117.15184, 49.634454], [-117.152172, 49.634633], [-117.152268, 49.634786], [-117.152214, 49.635065], [-117.151634, 49.63565], [-117.151607, 49.635867], [-117.151706, 49.636198], [-117.152082, 49.636522], [-117.152151, 49.636755], [-117.152513, 49.637268], [-117.152528, 49.637808], [-117.152195, 49.638024], [-117.152115, 49.638303], [-117.152253, 49.638456], [-117.153113, 49.638949], [-117.153114, 49.639381], [-117.152907, 49.639659], [-117.15273, 49.64038], [-117.152591, 49.64064], [-117.152567, 49.641424], [-117.152652, 49.642295], [-117.152722, 49.642566], [-117.153446, 49.643329], [-117.153418, 49.643805], [-117.153559, 49.644228], [-117.153768, 49.644543], [-117.153755, 49.644795], [-117.153008, 49.645399], [-117.152982, 49.645902], [-117.153054, 49.64628], [-117.152665, 49.646559], [-117.152612, 49.646812], [-117.152419, 49.647037], [-117.151908, 49.647406], [-117.151716, 49.648395], [-117.151176, 49.648539], [-117.150941, 49.648657], [-117.150791, 49.648991], [-117.150348, 49.649359], [-117.150126, 49.649468], [-117.149809, 49.650097], [-117.149894, 49.650466], [-117.149853, 49.650871], [-117.149246, 49.651304], [-117.149134, 49.651447], [-117.149109, 49.651772], [-117.147948, 49.652789], [-117.147893, 49.652924], [-117.148031, 49.653158], [-117.148186, 49.65385], [-117.147897, 49.65449], [-117.147552, 49.654724], [-117.147399, 49.654912], [-117.147484, 49.655498], [-117.147278, 49.655758], [-117.147154, 49.656263], [-117.146976, 49.656577], [-117.146782, 49.65674], [-117.146491, 49.656857], [-117.146006, 49.656948], [-117.145883, 49.657029], [-117.145953, 49.657452], [-117.145843, 49.657848], [-117.145483, 49.658369], [-117.145001, 49.658757], [-117.145169, 49.659611], [-117.145128, 49.659728], [-117.144948, 49.659773], [-117.144783, 49.659944], [-117.144783, 49.66024], [-117.145213, 49.660591], [-117.145367, 49.660816], [-117.145437, 49.661085], [-117.145369, 49.66122], [-117.144857, 49.661499], [-117.14476, 49.661987], [-117.144553, 49.662229], [-117.144403, 49.662562], [-117.144194, 49.662743], [-117.142991, 49.663328], [-117.142397, 49.663815], [-117.142481, 49.664274], [-117.143023, 49.664956], [-117.143011, 49.665064], [-117.14272, 49.665371], [-117.142721, 49.665721], [-117.143459, 49.666701], [-117.143278, 49.666899], [-117.143337, 49.667574], [-117.142741, 49.668015], [-117.142339, 49.668042], [-117.142118, 49.668115], [-117.142008, 49.668321], [-117.142025, 49.669078], [-117.142219, 49.669374], [-117.14233, 49.669778], [-117.142227, 49.671721], [-117.142088, 49.672073], [-117.141688, 49.672621], [-117.141386, 49.673342], [-117.141385, 49.67362], [-117.141651, 49.674034], [-117.141762, 49.674403], [-117.141735, 49.674582], [-117.14128, 49.67523], [-117.141252, 49.675509], [-117.141281, 49.675716], [-117.14142, 49.675895], [-117.142058, 49.676002], [-117.142391, 49.676156], [-117.142724, 49.676407], [-117.143099, 49.676874], [-117.143185, 49.677468], [-117.143854, 49.678285], [-117.144201, 49.67895], [-117.144271, 49.679455], [-117.143885, 49.679805], [-117.1439, 49.680057], [-117.145328, 49.680694], [-117.146135, 49.680773], [-117.146801, 49.68152], [-117.146912, 49.68188], [-117.147109, 49.682131], [-117.147192, 49.6825], [-117.147597, 49.683029], [-117.147693, 49.683534], [-117.148041, 49.683982], [-117.148473, 49.684305], [-117.149083, 49.684476], [-117.14975, 49.684971], [-117.150332, 49.685059], [-117.150903, 49.685284], [-117.151305, 49.685714], [-117.15139, 49.686326], [-117.151626, 49.686406], [-117.151946, 49.686596], [-117.152086, 49.686765], [-117.15264, 49.687044], [-117.152739, 49.687322], [-117.153017, 49.687511], [-117.152989, 49.687979], [-117.153518, 49.688473], [-117.153741, 49.688985], [-117.153978, 49.689201], [-117.154243, 49.689651], [-117.154426, 49.690603], [-117.154997, 49.691323], [-117.155094, 49.69161], [-117.155609, 49.691934], [-117.155791, 49.692149], [-117.155916, 49.692589], [-117.156196, 49.693093], [-117.156502, 49.693371], [-117.156543, 49.693704], [-117.156726, 49.694163], [-117.157032, 49.694657], [-117.15716, 49.695394], [-117.157368, 49.695826], [-117.157953, 49.696383], [-117.158023, 49.696894], [-117.15826, 49.697263], [-117.158082, 49.697668], [-117.158084, 49.697965], [-117.158404, 49.698585], [-117.158489, 49.699251], [-117.158537, 49.701067], [-117.158317, 49.701742], [-117.158583, 49.702263], [-117.157558, 49.703192], [-117.157243, 49.704001], [-117.157105, 49.704217], [-117.156882, 49.704388], [-117.156528, 49.705801], [-117.156376, 49.705918], [-117.155613, 49.706001], [-117.155404, 49.7061], [-117.155266, 49.706209], [-117.155114, 49.706513], [-117.154631, 49.706884], [-117.154437, 49.70719], [-117.154313, 49.707657], [-117.154316, 49.708197], [-117.153694, 49.708792], [-117.153668, 49.709538], [-117.153267, 49.70998], [-117.153355, 49.711266], [-117.153661, 49.7115], [-117.153716, 49.711723], [-117.153135, 49.712111], [-117.152861, 49.712885], [-117.152501, 49.713452], [-117.152323, 49.71419], [-117.152436, 49.714486], [-117.152382, 49.71508], [-117.152495, 49.715503], [-117.152495, 49.715907], [-117.152411, 49.716043], [-117.152134, 49.716133], [-117.151997, 49.716251], [-117.151901, 49.716647], [-117.152332, 49.716943], [-117.152527, 49.717212], [-117.152514, 49.717698], [-117.152654, 49.71803], [-117.152686, 49.718911], [-117.15277, 49.719253], [-117.152771, 49.719388], [-117.15259, 49.719559], [-117.152578, 49.719766], [-117.152813, 49.72009], [-117.153563, 49.720466], [-117.154523, 49.721292], [-117.154816, 49.721824], [-117.154874, 49.722101], [-117.156156, 49.723738], [-117.157033, 49.724732], [-117.158252, 49.725334], [-117.159661, 49.726129], [-117.159922, 49.726169], [-117.160075, 49.726277], [-117.160174, 49.726511], [-117.160757, 49.726645], [-117.16095, 49.726555], [-117.161353, 49.726536], [-117.16152, 49.726645], [-117.162435, 49.72685], [-117.162547, 49.726958], [-117.162605, 49.7272], [-117.162576, 49.727254], [-117.162188, 49.727381]]]]}, "properties": {"name": "Central Kootenay F", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay F", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903043", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.782705, 49.339155], [-117.785019, 49.33903], [-117.784806, 49.335911], [-117.784177, 49.335847], [-117.782725, 49.3359], [-117.782542, 49.335951], [-117.782415, 49.332609], [-117.771205, 49.332212], [-117.771103, 49.334966], [-117.7658, 49.33477], [-117.763729, 49.334615], [-117.742653, 49.334818], [-117.735617, 49.334823], [-117.735396, 49.332161], [-117.730301, 49.332207], [-117.729703, 49.328376], [-117.719043, 49.32858], [-117.718895, 49.32949], [-117.718844, 49.330748], [-117.700501, 49.330973], [-117.696558, 49.329844], [-117.692806, 49.328852], [-117.691563, 49.328587], [-117.686778, 49.328006], [-117.684016, 49.327729], [-117.681924, 49.327609], [-117.679613, 49.32758], [-117.679077, 49.327624], [-117.678527, 49.327758], [-117.678178, 49.327596], [-117.676774, 49.327567], [-117.67463, 49.327427], [-117.674048, 49.324362], [-117.669193, 49.324299], [-117.668315, 49.324474], [-117.667887, 49.324484], [-117.666155, 49.321545], [-117.665586, 49.320741], [-117.665529, 49.320449], [-117.665658, 49.3203], [-117.665818, 49.32028], [-117.665833, 49.320347], [-117.668664, 49.319882], [-117.669084, 49.31988], [-117.677086, 49.320256], [-117.677308, 49.317137], [-117.682811, 49.317431], [-117.682991, 49.310596], [-117.678265, 49.310379], [-117.678426, 49.300626], [-117.667252, 49.300492], [-117.667182, 49.299462], [-117.665147, 49.299412], [-117.664794, 49.295515], [-117.665287, 49.293202], [-117.666226, 49.293199], [-117.666198, 49.292924], [-117.665287, 49.292624], [-117.665275, 49.291618], [-117.665139, 49.291453], [-117.665602, 49.270454], [-117.665275, 49.267033], [-117.670827, 49.267103], [-117.670794, 49.264915], [-117.665248, 49.264853], [-117.665271, 49.263891], [-117.66502, 49.257613], [-117.670641, 49.257325], [-117.6707, 49.250631], [-117.665738, 49.250297], [-117.665476, 49.248997], [-117.665401, 49.247428], [-117.665536, 49.246434], [-117.664146, 49.246577], [-117.663583, 49.247671], [-117.660727, 49.247592], [-117.659992, 49.247403], [-117.66032, 49.2471], [-117.661176, 49.246761], [-117.663248, 49.246117], [-117.66427, 49.245134], [-117.665186, 49.243424], [-117.664396, 49.242946], [-117.664164, 49.242549], [-117.664177, 49.242188], [-117.664328, 49.241881], [-117.663808, 49.241571], [-117.663283, 49.241503], [-117.662626, 49.241641], [-117.661349, 49.241586], [-117.660786, 49.241653], [-117.660167, 49.241638], [-117.659982, 49.24118], [-117.659802, 49.240983], [-117.65914, 49.240923], [-117.658906, 49.240745], [-117.658902, 49.240485], [-117.659161, 49.240294], [-117.659268, 49.24005], [-117.659236, 49.239754], [-117.659097, 49.239575], [-117.658626, 49.239308], [-117.657737, 49.238656], [-117.65759, 49.237991], [-117.656228, 49.237287], [-117.654406, 49.238607], [-117.651147, 49.241735], [-117.651158, 49.245431], [-117.652912, 49.24998], [-117.653527, 49.250858], [-117.655257, 49.250927], [-117.658467, 49.250878], [-117.658189, 49.251743], [-117.658208, 49.254159], [-117.657473, 49.256161], [-117.657108, 49.256663], [-117.654734, 49.258915], [-117.654184, 49.25967], [-117.648769, 49.259701], [-117.643991, 49.262853], [-117.641498, 49.265398], [-117.641675, 49.274368], [-117.642206, 49.278426], [-117.644849, 49.288938], [-117.644591, 49.290197], [-117.642731, 49.290185], [-117.635691, 49.290382], [-117.634752, 49.286284], [-117.63077, 49.286079], [-117.62798, 49.285876], [-117.627662, 49.286376], [-117.62773, 49.286512], [-117.627552, 49.287917], [-117.627635, 49.289061], [-117.632577, 49.305831], [-117.632598, 49.306557], [-117.63251, 49.306779], [-117.634857, 49.306686], [-117.632577, 49.311117], [-117.63233, 49.312973], [-117.631987, 49.312959], [-117.631883, 49.313106], [-117.630628, 49.316247], [-117.630581, 49.316454], [-117.630915, 49.316401], [-117.630857, 49.316759], [-117.630723, 49.316761], [-117.627807, 49.318218], [-117.625427, 49.318657], [-117.624075, 49.319527], [-117.623562, 49.320181], [-117.617788, 49.319704], [-117.609581, 49.318935], [-117.609311, 49.321739], [-117.609189, 49.324074], [-117.61892, 49.32553], [-117.618271, 49.325933], [-117.616265, 49.327725], [-117.61421, 49.329918], [-117.613372, 49.331018], [-117.616781, 49.33103], [-117.617181, 49.330715], [-117.617777, 49.330051], [-117.619111, 49.32789], [-117.619636, 49.327321], [-117.620236, 49.32688], [-117.621443, 49.326579], [-117.621733, 49.326381], [-117.622708, 49.325226], [-117.62323, 49.323946], [-117.623414, 49.323682], [-117.622863, 49.323642], [-117.623036, 49.323327], [-117.624091, 49.322128], [-117.625723, 49.321], [-117.62755, 49.320306], [-117.628844, 49.319714], [-117.629301, 49.319424], [-117.629917, 49.318876], [-117.630655, 49.317762], [-117.631757, 49.314985], [-117.633793, 49.310244], [-117.637045, 49.303266], [-117.6475, 49.301437], [-117.654283, 49.307119], [-117.655491, 49.308449], [-117.656611, 49.311987], [-117.653302, 49.315998], [-117.651977, 49.318336], [-117.647576, 49.324221], [-117.652132, 49.327988], [-117.654802, 49.328779], [-117.654407, 49.330595], [-117.654788, 49.331332], [-117.655557, 49.332422], [-117.657063, 49.333997], [-117.657653, 49.333978], [-117.658321, 49.33406], [-117.658806, 49.33395], [-117.663032, 49.331866], [-117.663233, 49.33168], [-117.663352, 49.331134], [-117.663224, 49.330895], [-117.663167, 49.33046], [-117.66952, 49.331604], [-117.679099, 49.330544], [-117.684897, 49.330307], [-117.690036, 49.330822], [-117.693151, 49.331464], [-117.704974, 49.334188], [-117.717823, 49.336992], [-117.724637, 49.337998], [-117.736611, 49.339889], [-117.73826, 49.340087], [-117.747405, 49.34087], [-117.751546, 49.340846], [-117.754611, 49.340797], [-117.759526, 49.340573], [-117.763404, 49.340232], [-117.765535, 49.340095], [-117.766041, 49.340127], [-117.772858, 49.339234], [-117.778142, 49.340237], [-117.782705, 49.339155]]], [[[-117.622783, 49.289694], [-117.624955, 49.290183], [-117.627251, 49.286116], [-117.626998, 49.286074], [-117.624751, 49.286072], [-117.622783, 49.289694]]]]}, "properties": {"name": "Castlegar", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Castlegar", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903045", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.390501, 49.39234], [-117.394066, 49.396113], [-117.400844, 49.397221], [-117.405615, 49.396383], [-117.416925, 49.39353], [-117.419699, 49.388484], [-117.413379, 49.382571], [-117.414393, 49.37995], [-117.421986, 49.375665], [-117.430203, 49.374999], [-117.430538, 49.367159], [-117.432894, 49.361098], [-117.44438, 49.356536], [-117.451441, 49.352678], [-117.461003, 49.338721], [-117.470889, 49.336455], [-117.481993, 49.336714], [-117.491221, 49.33745], [-117.492805, 49.275881], [-117.492744, 49.275892], [-117.492152, 49.250081], [-117.49237, 49.244853], [-117.493376, 49.226626], [-117.491881, 49.218161], [-117.493963, 49.175485], [-117.485577, 49.175528], [-117.471949, 49.175713], [-117.472116, 49.171243], [-117.484236, 49.170881], [-117.483856, 49.16441], [-117.494928, 49.16386], [-117.495354, 49.160453], [-117.500454, 49.160356], [-117.500449, 49.158009], [-117.505799, 49.157747], [-117.506041, 49.138816], [-117.510797, 49.13884], [-117.510822, 49.123579], [-117.517111, 49.123635], [-117.516204, 49.088071], [-117.465432, 49.088164], [-117.466627, 49.061139], [-117.467062, 49.055867], [-117.46694, 49.053701], [-117.466218, 49.050454], [-117.468153, 49.046323], [-117.467486, 49.03631], [-117.468578, 49.023139], [-117.469336, 49.004015], [-117.469654, 49.000664], [-117.463323, 49.000617], [-117.437059, 49.000674], [-117.377323, 49.000417], [-117.351497, 49.000391], [-117.319981, 49.000195], [-117.268355, 49.000021], [-117.19985, 49.00005], [-117.015178, 49.000017], [-116.913552, 49.000076], [-116.91385, 49.005612], [-116.909281, 49.008401], [-116.896218, 49.010662], [-116.895791, 49.011245], [-116.885357, 49.028457], [-116.886534, 49.030946], [-116.890534, 49.042681], [-116.902309, 49.045391], [-116.911869, 49.050407], [-116.920806, 49.055576], [-116.919471, 49.056091], [-116.914695, 49.05816], [-116.914524, 49.058191], [-116.921078, 49.062064], [-116.924514, 49.064237], [-116.938959, 49.062601], [-116.950048, 49.061095], [-116.961742, 49.059338], [-116.959418, 49.053308], [-116.966845, 49.051394], [-116.97818, 49.049798], [-116.992769, 49.050462], [-117.002938, 49.055628], [-117.009733, 49.057053], [-117.012981, 49.05639], [-117.015937, 49.055362], [-117.017802, 49.055572], [-117.021322, 49.05171], [-117.02427, 49.05095], [-117.030384, 49.050939], [-117.033652, 49.052465], [-117.041599, 49.056532], [-117.044271, 49.058014], [-117.047017, 49.063066], [-117.054416, 49.069478], [-117.047227, 49.07746], [-117.051809, 49.089099], [-117.054065, 49.091749], [-117.056609, 49.095245], [-117.053349, 49.097446], [-117.052354, 49.099679], [-117.052266, 49.102427], [-117.049809, 49.103536], [-117.047092, 49.104498], [-117.047211, 49.106916], [-117.046381, 49.108887], [-117.04768, 49.113434], [-117.04682, 49.116012], [-117.046294, 49.118199], [-117.044113, 49.119613], [-117.041731, 49.120973], [-117.03855, 49.120425], [-117.035352, 49.120373], [-117.031852, 49.122201], [-117.030203, 49.123405], [-117.029215, 49.125786], [-117.027416, 49.12741], [-117.026202, 49.129039], [-117.026204, 49.131801], [-117.025724, 49.135642], [-117.027292, 49.137596], [-117.026383, 49.139576], [-117.025127, 49.141271], [-117.025641, 49.143135], [-117.029036, 49.147191], [-117.030468, 49.150375], [-117.035256, 49.1544], [-117.038828, 49.156072], [-117.035066, 49.157062], [-117.033206, 49.158098], [-117.031697, 49.159635], [-117.029351, 49.162274], [-117.029392, 49.163988], [-117.031888, 49.165711], [-117.033655, 49.16644], [-117.035214, 49.167973], [-117.03862, 49.168612], [-117.040413, 49.170048], [-117.039166, 49.171793], [-117.038356, 49.174739], [-117.038291, 49.176802], [-117.044687, 49.178344], [-117.046002, 49.179902], [-117.044506, 49.180946], [-117.044684, 49.182772], [-117.045732, 49.186278], [-117.048047, 49.188072], [-117.049834, 49.189756], [-117.049905, 49.190589], [-117.049474, 49.191558], [-117.046749, 49.192934], [-117.046146, 49.195591], [-117.048054, 49.197156], [-117.047591, 49.199413], [-117.046744, 49.200963], [-117.047351, 49.202331], [-117.04408, 49.20347], [-117.045605, 49.204842], [-117.044533, 49.206966], [-117.043075, 49.208895], [-117.040926, 49.210457], [-117.040156, 49.2145], [-117.041027, 49.21618], [-117.042891, 49.217161], [-117.039968, 49.218333], [-117.037223, 49.218859], [-117.035793, 49.219287], [-117.033051, 49.222288], [-117.032524, 49.22486], [-117.033811, 49.229154], [-117.029848, 49.230135], [-117.029924, 49.235718], [-117.030821, 49.237646], [-117.030925, 49.239151], [-117.027428, 49.2421], [-117.023972, 49.243672], [-117.020973, 49.243494], [-117.017964, 49.244432], [-117.015235, 49.245808], [-117.011349, 49.246818], [-117.009759, 49.254141], [-117.021599, 49.262514], [-117.023743, 49.263641], [-117.02456, 49.26471], [-117.026836, 49.266414], [-117.02824, 49.270639], [-117.031458, 49.274626], [-117.033655, 49.276717], [-117.039373, 49.279894], [-117.041048, 49.280578], [-117.041038, 49.286307], [-117.039142, 49.29253], [-117.04679, 49.286678], [-117.061593, 49.283446], [-117.071232, 49.288256], [-117.067942, 49.294054], [-117.068019, 49.296466], [-117.067395, 49.299079], [-117.064518, 49.302886], [-117.063185, 49.305006], [-117.062858, 49.306899], [-117.070947, 49.315804], [-117.071577, 49.321596], [-117.068233, 49.328728], [-117.064539, 49.334746], [-117.064192, 49.341252], [-117.06335, 49.346013], [-117.062206, 49.350209], [-117.053998, 49.364514], [-117.05901, 49.367635], [-117.063372, 49.374038], [-117.063476, 49.382529], [-117.070402, 49.384027], [-117.081951, 49.385501], [-117.090585, 49.382614], [-117.098586, 49.383036], [-117.105878, 49.386971], [-117.105612, 49.402519], [-117.103733, 49.411165], [-117.10036, 49.418183], [-117.104198, 49.423928], [-117.110186, 49.426181], [-117.120669, 49.431446], [-117.121062, 49.432667], [-117.120948, 49.433101], [-117.120093, 49.435015], [-117.119663, 49.437793], [-117.148792, 49.438333], [-117.156723, 49.437707], [-117.184844, 49.43619], [-117.22964, 49.436293], [-117.229224, 49.412925], [-117.229045, 49.411415], [-117.250177, 49.41152], [-117.25519, 49.412991], [-117.258948, 49.414237], [-117.262226, 49.415693], [-117.267005, 49.418524], [-117.268968, 49.419853], [-117.272103, 49.420701], [-117.275932, 49.420715], [-117.293617, 49.418519], [-117.306499, 49.418052], [-117.310181, 49.414915], [-117.31445, 49.412236], [-117.3199, 49.410144], [-117.328513, 49.41077], [-117.334821, 49.412297], [-117.348554, 49.407212], [-117.372775, 49.395876], [-117.383702, 49.392529], [-117.390501, 49.39234]], [[-117.293777, 49.198351], [-117.276132, 49.198485], [-117.274722, 49.199849], [-117.271746, 49.198469], [-117.271791, 49.196122], [-117.271102, 49.193568], [-117.270984, 49.192505], [-117.271291, 49.18991], [-117.270968, 49.181902], [-117.271439, 49.181314], [-117.274877, 49.181263], [-117.274871, 49.180581], [-117.274058, 49.178796], [-117.274337, 49.178762], [-117.275571, 49.178808], [-117.279614, 49.1788], [-117.280191, 49.179272], [-117.28073, 49.180236], [-117.281734, 49.180173], [-117.282359, 49.182442], [-117.283747, 49.186747], [-117.28289, 49.18675], [-117.28236, 49.186983], [-117.281943, 49.1875], [-117.281898, 49.187784], [-117.282026, 49.187988], [-117.283046, 49.188942], [-117.283134, 49.189132], [-117.283015, 49.189452], [-117.283596, 49.189618], [-117.284649, 49.18962], [-117.284715, 49.189829], [-117.286192, 49.189737], [-117.287372, 49.189897], [-117.289531, 49.190647], [-117.290329, 49.191014], [-117.291141, 49.191264], [-117.292579, 49.19115], [-117.293456, 49.191025], [-117.293491, 49.191855], [-117.293018, 49.193953], [-117.294499, 49.194414], [-117.294883, 49.19476], [-117.293777, 49.198351]]]]}, "properties": {"name": "Central Kootenay G", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay G", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903047", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.817353, 50.274609], [-117.81972, 50.273474], [-117.812466, 50.266598], [-117.819587, 50.26676], [-117.822281, 50.265381], [-117.822935, 50.265284], [-117.823429, 50.263087], [-117.823106, 50.261646], [-117.82077, 50.257608], [-117.821048, 50.255566], [-117.82352, 50.254041], [-117.824635, 50.252667], [-117.824837, 50.251503], [-117.826482, 50.249664], [-117.825617, 50.247752], [-117.823344, 50.245432], [-117.820915, 50.24442], [-117.819137, 50.244277], [-117.818583, 50.244098], [-117.817327, 50.24354], [-117.816452, 50.242225], [-117.814184, 50.239664], [-117.810946, 50.238204], [-117.80778, 50.236523], [-117.804665, 50.23618], [-117.802631, 50.236229], [-117.800723, 50.23653], [-117.797409, 50.235448], [-117.796549, 50.234579], [-117.794591, 50.23362], [-117.794331, 50.233264], [-117.794841, 50.232757], [-117.793825, 50.229992], [-117.793948, 50.229332], [-117.793343, 50.228745], [-117.789356, 50.228807], [-117.788331, 50.231698], [-117.787944, 50.232414], [-117.783133, 50.232413], [-117.783123, 50.231541], [-117.779537, 50.23166], [-117.77934, 50.229192], [-117.777165, 50.230648], [-117.773236, 50.2342], [-117.772024, 50.234961], [-117.770757, 50.23536], [-117.770861, 50.236021], [-117.771767, 50.236021], [-117.769436, 50.239816], [-117.770622, 50.239705], [-117.768191, 50.243263], [-117.76877, 50.243241], [-117.769082, 50.243852], [-117.769516, 50.243853], [-117.772634, 50.245298], [-117.776345, 50.245522], [-117.776666, 50.246414], [-117.778903, 50.246476], [-117.77891, 50.245341], [-117.783859, 50.245459], [-117.783872, 50.246354], [-117.790404, 50.246553], [-117.790363, 50.245007], [-117.791481, 50.244999], [-117.791715, 50.244945], [-117.792101, 50.244733], [-117.792564, 50.243985], [-117.793232, 50.243591], [-117.793262, 50.243116], [-117.793352, 50.242969], [-117.79356, 50.24287], [-117.794625, 50.244378], [-117.795181, 50.244914], [-117.796092, 50.245372], [-117.798824, 50.246132], [-117.799448, 50.246405], [-117.800039, 50.246764], [-117.800864, 50.247456], [-117.801643, 50.248544], [-117.802312, 50.248996], [-117.801779, 50.255038], [-117.80115, 50.25539], [-117.80098, 50.256174], [-117.801197, 50.256948], [-117.800958, 50.257539], [-117.800689, 50.257614], [-117.799132, 50.25766], [-117.797152, 50.259045], [-117.793717, 50.260129], [-117.792704, 50.261172], [-117.791972, 50.262142], [-117.79084, 50.262785], [-117.791404, 50.266539], [-117.801687, 50.266097], [-117.808676, 50.266119], [-117.817353, 50.274609]]], [[[-117.691766, 50.298089], [-117.693618, 50.29723], [-117.694456, 50.296982], [-117.694804, 50.296764], [-117.694872, 50.296539], [-117.694824, 50.296269], [-117.694255, 50.295652], [-117.694209, 50.295464], [-117.69429, 50.295202], [-117.693039, 50.295111], [-117.692573, 50.29488], [-117.692066, 50.294712], [-117.691405, 50.294859], [-117.690835, 50.295427], [-117.689867, 50.295483], [-117.688081, 50.295012], [-117.687477, 50.294958], [-117.686584, 50.295257], [-117.685062, 50.295923], [-117.684042, 50.296199], [-117.683723, 50.296497], [-117.68344, 50.296561], [-117.682597, 50.296509], [-117.682854, 50.299045], [-117.686203, 50.298981], [-117.686272, 50.298319], [-117.691766, 50.298089]]]]}, "properties": {"name": "Nakusp", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Nakusp", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903050", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.362316, 50.321079], [-117.360981, 50.325663], [-117.393164, 50.343112], [-117.399893, 50.353825], [-117.403616, 50.354171], [-117.416049, 50.354387], [-117.427956, 50.353209], [-117.433914, 50.351723], [-117.442767, 50.347961], [-117.448716, 50.341834], [-117.454457, 50.331165], [-117.45743, 50.320949], [-117.456376, 50.319958], [-117.455558, 50.317712], [-117.454449, 50.31563], [-117.45472, 50.307979], [-117.457828, 50.303814], [-117.461505, 50.301112], [-117.458457, 50.299517], [-117.456344, 50.296517], [-117.456697, 50.294633], [-117.464465, 50.289457], [-117.465245, 50.284392], [-117.464279, 50.282527], [-117.466703, 50.27693], [-117.478069, 50.267537], [-117.485015, 50.26535], [-117.500323, 50.265107], [-117.500855, 50.266499], [-117.505057, 50.268597], [-117.506347, 50.271319], [-117.504968, 50.273833], [-117.503543, 50.277469], [-117.50567, 50.281244], [-117.514925, 50.280516], [-117.518131, 50.280922], [-117.521805, 50.282823], [-117.522748, 50.284231], [-117.533564, 50.28444], [-117.533618, 50.287501], [-117.53544, 50.289224], [-117.538632, 50.289207], [-117.54158, 50.287036], [-117.543303, 50.283833], [-117.548542, 50.284105], [-117.551451, 50.283478], [-117.555825, 50.281256], [-117.556665, 50.276332], [-117.559516, 50.276617], [-117.562361, 50.276093], [-117.565158, 50.274899], [-117.567104, 50.272232], [-117.568295, 50.268235], [-117.57297, 50.267465], [-117.577453, 50.266406], [-117.581326, 50.263038], [-117.582098, 50.257022], [-117.586536, 50.256911], [-117.591242, 50.255132], [-117.603079, 50.254015], [-117.615468, 50.256488], [-117.624752, 50.257063], [-117.638365, 50.258603], [-117.662417, 50.2438], [-117.666695, 50.241329], [-117.666628, 50.241229], [-117.667945, 50.24044], [-117.67142, 50.235825], [-117.668412, 50.229452], [-117.664666, 50.222893], [-117.66493, 50.215093], [-117.663375, 50.210913], [-117.650552, 50.206505], [-117.64808, 50.196006], [-117.648363, 50.190684], [-117.64736, 50.188932], [-117.64743, 50.187982], [-117.646565, 50.18691], [-117.643343, 50.184311], [-117.652982, 50.182271], [-117.660186, 50.181041], [-117.667778, 50.171541], [-117.674838, 50.171432], [-117.679871, 50.171701], [-117.68045, 50.168527], [-117.677718, 50.168701], [-117.679393, 50.155403], [-117.679237, 50.151282], [-117.678634, 50.140963], [-117.673825, 50.140952], [-117.669787, 50.136523], [-117.665752, 50.136777], [-117.654218, 50.135115], [-117.6479, 50.126728], [-117.636059, 50.1225], [-117.604637, 50.115127], [-117.603655, 50.115042], [-117.59952, 50.113964], [-117.596747, 50.112186], [-117.594014, 50.111926], [-117.591765, 50.111117], [-117.590092, 50.109513], [-117.589822, 50.108921], [-117.591711, 50.105837], [-117.592705, 50.105288], [-117.593513, 50.103979], [-117.594998, 50.103583], [-117.59627, 50.101322], [-117.597964, 50.100949], [-117.603065, 50.100539], [-117.605476, 50.099784], [-117.607204, 50.098976], [-117.607904, 50.098278], [-117.607943, 50.097276], [-117.607177, 50.09624], [-117.607878, 50.093713], [-117.609808, 50.091175], [-117.612442, 50.090269], [-117.614623, 50.090047], [-117.614591, 50.089323], [-117.614143, 50.088759], [-117.612247, 50.084511], [-117.612805, 50.083031], [-117.615863, 50.081027], [-117.618239, 50.08013], [-117.620841, 50.07938], [-117.623244, 50.079108], [-117.624403, 50.07852], [-117.624433, 50.077317], [-117.623794, 50.074552], [-117.622831, 50.072944], [-117.62238, 50.070608], [-117.62094, 50.0686], [-117.617763, 50.066711], [-117.613836, 50.065258], [-117.614283, 50.064248], [-117.612577, 50.059444], [-117.611588, 50.058029], [-117.611359, 50.056383], [-117.612048, 50.055642], [-117.601, 50.051505], [-117.597205, 50.046878], [-117.595605, 50.045715], [-117.590063, 50.043862], [-117.587098, 50.044455], [-117.58286, 50.0438], [-117.582142, 50.043197], [-117.582645, 50.042171], [-117.583397, 50.041285], [-117.5844, 50.040333], [-117.584347, 50.03592], [-117.585665, 50.034459], [-117.583353, 50.033536], [-117.580867, 50.03304], [-117.579121, 50.031097], [-117.576344, 50.029965], [-117.57464, 50.028284], [-117.572677, 50.027096], [-117.572741, 50.025814], [-117.569792, 50.018511], [-117.569905, 50.015823], [-117.569452, 50.010805], [-117.570155, 50.009599], [-117.573798, 50.00977], [-117.577165, 50.009723], [-117.578885, 50.007983], [-117.58051, 50.006985], [-117.580132, 50.000407], [-117.583303, 49.998097], [-117.586499, 49.992576], [-117.587505, 49.991138], [-117.587301, 49.98837], [-117.583015, 49.983482], [-117.583323, 49.981879], [-117.582619, 49.980324], [-117.582368, 49.97837], [-117.583339, 49.974518], [-117.584467, 49.973658], [-117.586485, 49.970992], [-117.591331, 49.969143], [-117.591953, 49.968507], [-117.590667, 49.964499], [-117.588864, 49.961583], [-117.587147, 49.960666], [-117.587754, 49.959908], [-117.588849, 49.959393], [-117.594118, 49.958186], [-117.599497, 49.956652], [-117.602025, 49.95633], [-117.604203, 49.955579], [-117.605502, 49.954587], [-117.608684, 49.953578], [-117.617566, 49.952798], [-117.619267, 49.952705], [-117.62133, 49.953354], [-117.623641, 49.952902], [-117.625223, 49.952336], [-117.625624, 49.950581], [-117.62782, 49.948875], [-117.631623, 49.94723], [-117.631393, 49.945901], [-117.630314, 49.945062], [-117.629179, 49.943942], [-117.629273, 49.942019], [-117.63135, 49.93984], [-117.632085, 49.937507], [-117.633398, 49.935456], [-117.634011, 49.934021], [-117.633461, 49.9327], [-117.631062, 49.930853], [-117.630186, 49.929631], [-117.631057, 49.928388], [-117.632844, 49.926853], [-117.632435, 49.923681], [-117.631654, 49.922306], [-117.631522, 49.920042], [-117.632472, 49.918526], [-117.634132, 49.917193], [-117.638189, 49.915542], [-117.641219, 49.915094], [-117.643241, 49.91573], [-117.652427, 49.914583], [-117.657375, 49.913192], [-117.657785, 49.913122], [-117.658544, 49.913674], [-117.658336, 49.914538], [-117.659011, 49.915748], [-117.659793, 49.91604], [-117.66085, 49.915962], [-117.665308, 49.915208], [-117.672653, 49.91693], [-117.674533, 49.917596], [-117.679766, 49.918399], [-117.685858, 49.918334], [-117.688558, 49.919155], [-117.693068, 49.919164], [-117.694364, 49.919737], [-117.695074, 49.919627], [-117.702955, 49.915291], [-117.703674, 49.914507], [-117.704301, 49.913979], [-117.707306, 49.912612], [-117.709499, 49.912181], [-117.709876, 49.908435], [-117.711686, 49.905174], [-117.710338, 49.902658], [-117.709005, 49.901438], [-117.708071, 49.898955], [-117.707145, 49.898249], [-117.705207, 49.897491], [-117.704706, 49.896248], [-117.704407, 49.89315], [-117.703992, 49.892428], [-117.704563, 49.890345], [-117.708268, 49.887779], [-117.707042, 49.886131], [-117.706778, 49.884655], [-117.710295, 49.881219], [-117.710739, 49.879338], [-117.710869, 49.877084], [-117.710425, 49.875533], [-117.711624, 49.873612], [-117.712027, 49.870885], [-117.711706, 49.870011], [-117.712016, 49.868419], [-117.711736, 49.866822], [-117.711989, 49.866418], [-117.712808, 49.865984], [-117.725359, 49.864271], [-117.727246, 49.865145], [-117.727725, 49.865669], [-117.72902, 49.866241], [-117.731778, 49.866075], [-117.734117, 49.865182], [-117.737939, 49.865144], [-117.740736, 49.86484], [-117.7425, 49.864357], [-117.743366, 49.8637], [-117.743451, 49.86275], [-117.742677, 49.860901], [-117.743193, 49.859325], [-117.744334, 49.857807], [-117.744865, 49.856353], [-117.746606, 49.854561], [-117.747051, 49.853173], [-117.74675, 49.852035], [-117.745097, 49.850137], [-117.744498, 49.84904], [-117.744504, 49.848069], [-117.74506, 49.84724], [-117.746361, 49.845866], [-117.744798, 49.839793], [-117.744428, 49.839138], [-117.744921, 49.838411], [-117.749034, 49.836758], [-117.749473, 49.836046], [-117.749165, 49.835289], [-117.748791, 49.830907], [-117.747862, 49.829607], [-117.745589, 49.827755], [-117.745698, 49.827135], [-117.750928, 49.823444], [-117.753006, 49.821769], [-117.75456, 49.821167], [-117.756548, 49.818674], [-117.758239, 49.817887], [-117.75922, 49.817697], [-117.762059, 49.816779], [-117.76593, 49.816502], [-117.767645, 49.815983], [-117.769397, 49.815328], [-117.773073, 49.814853], [-117.774763, 49.813625], [-117.775757, 49.813475], [-117.778353, 49.814691], [-117.778983, 49.814768], [-117.784818, 49.813186], [-117.787841, 49.812892], [-117.791917, 49.813611], [-117.79327, 49.813614], [-117.799018, 49.812287], [-117.800759, 49.812391], [-117.80163, 49.813836], [-117.801968, 49.816863], [-117.804447, 49.82039], [-117.806826, 49.821666], [-117.807837, 49.823088], [-117.807925, 49.82361], [-117.808815, 49.824161], [-117.812673, 49.824764], [-117.817043, 49.824085], [-117.826073, 49.824331], [-117.829405, 49.824049], [-117.832843, 49.823926], [-117.835814, 49.824567], [-117.837983, 49.826443], [-117.837865, 49.832199], [-117.838362, 49.832649], [-117.841271, 49.831831], [-117.845816, 49.831608], [-117.849292, 49.831832], [-117.85056, 49.832361], [-117.852245, 49.834583], [-117.854604, 49.836448], [-117.856038, 49.837225], [-117.857775, 49.837579], [-117.86694, 49.837532], [-117.870572, 49.836721], [-117.872755, 49.836086], [-117.873145, 49.835596], [-117.872584, 49.831151], [-117.878171, 49.826835], [-117.879159, 49.825291], [-117.879073, 49.82409], [-117.878567, 49.821678], [-117.879465, 49.820876], [-117.880908, 49.820597], [-117.883709, 49.820398], [-117.889666, 49.817708], [-117.892167, 49.817256], [-117.893055, 49.816246], [-117.888995, 49.808033], [-117.886963, 49.805774], [-117.886113, 49.804113], [-117.88613, 49.80073], [-117.88751, 49.800552], [-117.889182, 49.800713], [-117.894413, 49.800251], [-117.899939, 49.798187], [-117.901974, 49.798014], [-117.906836, 49.798752], [-117.909652, 49.798674], [-117.912258, 49.799837], [-117.913445, 49.801313], [-117.914198, 49.80127], [-117.919848, 49.79803], [-117.925602, 49.798831], [-117.929557, 49.798896], [-117.931289, 49.795451], [-117.931988, 49.79348], [-117.931597, 49.789493], [-117.927528, 49.786625], [-117.927498, 49.785219], [-117.929152, 49.783021], [-117.930491, 49.781714], [-117.934448, 49.780132], [-117.938889, 49.780438], [-117.942119, 49.780201], [-117.944529, 49.78049], [-117.946248, 49.780236], [-117.949707, 49.778204], [-117.950574, 49.776776], [-117.953079, 49.775266], [-117.954819, 49.775238], [-117.956141, 49.77478], [-117.956405, 49.773522], [-117.955272, 49.772026], [-117.953981, 49.770488], [-117.950136, 49.76815], [-117.946658, 49.767523], [-117.945853, 49.766904], [-117.944265, 49.759771], [-117.944569, 49.758671], [-117.945524, 49.758443], [-117.94844, 49.756479], [-117.949221, 49.755118], [-117.948705, 49.753279], [-117.946873, 49.751029], [-117.946742, 49.749376], [-117.947149, 49.748332], [-117.948884, 49.746744], [-117.950086, 49.746108], [-117.951221, 49.745956], [-117.953177, 49.746541], [-117.956232, 49.746436], [-117.959628, 49.745771], [-117.962019, 49.744968], [-117.963095, 49.744241], [-117.965163, 49.738102], [-117.96586, 49.737103], [-117.968799, 49.734498], [-117.969127, 49.733433], [-117.968694, 49.732204], [-117.966041, 49.7297], [-117.971169, 49.728417], [-117.975794, 49.726579], [-117.979719, 49.723785], [-117.9832, 49.720115], [-117.989253, 49.715029], [-117.990967, 49.71135], [-117.992088, 49.710783], [-117.99322, 49.709161], [-117.995207, 49.707551], [-117.995839, 49.706448], [-117.995257, 49.705476], [-117.992441, 49.703096], [-117.991717, 49.701617], [-117.991744, 49.699801], [-117.993338, 49.698091], [-117.996081, 49.697026], [-117.998034, 49.696436], [-118.000186, 49.695074], [-118.000803, 49.694438], [-118.002309, 49.694057], [-118.003502, 49.692116], [-118.003427, 49.692115], [-118.002568, 49.690587], [-117.999711, 49.688688], [-117.998906, 49.688483], [-117.998125, 49.687567], [-117.995522, 49.685921], [-117.994345, 49.685658], [-117.992875, 49.683963], [-117.987095, 49.679319], [-117.986775, 49.678219], [-117.99011, 49.676355], [-117.991916, 49.671839], [-117.991008, 49.670608], [-117.987973, 49.668814], [-117.987171, 49.667742], [-117.987215, 49.664699], [-117.992168, 49.661024], [-117.994143, 49.658625], [-117.998448, 49.657839], [-117.999736, 49.657149], [-118.000642, 49.655269], [-118.005947, 49.652495], [-118.005194, 49.651247], [-118.00355, 49.649168], [-118.003233, 49.645091], [-118.002568, 49.643602], [-118.0027, 49.641562], [-118.002108, 49.640431], [-117.998643, 49.639111], [-117.997525, 49.638561], [-117.996039, 49.637088], [-117.999521, 49.630853], [-118.000826, 49.629942], [-117.999421, 49.627472], [-117.996744, 49.624469], [-117.997874, 49.62193], [-118.000371, 49.62106], [-118.001932, 49.62078], [-118.00276, 49.618164], [-118.003916, 49.615293], [-118.003771, 49.613711], [-118.00294, 49.612594], [-118.001723, 49.612018], [-118.001071, 49.610796], [-118.001906, 49.610181], [-118.003379, 49.607409], [-118.006482, 49.604961], [-118.008689, 49.600926], [-118.010072, 49.597774], [-118.010793, 49.590157], [-118.009488, 49.587091], [-118.010949, 49.585919], [-118.013775, 49.58517], [-118.015116, 49.58295], [-118.013755, 49.580793], [-118.014707, 49.576627], [-118.014921, 49.574835], [-118.01602, 49.572007], [-118.015386, 49.570564], [-118.011118, 49.568906], [-118.008929, 49.56812], [-118.007006, 49.567853], [-118.003183, 49.5645], [-117.998782, 49.559661], [-117.996847, 49.559128], [-117.995407, 49.559211], [-117.988805, 49.558159], [-117.986746, 49.558309], [-117.985813, 49.558032], [-117.978053, 49.55363], [-117.976111, 49.552341], [-117.96922, 49.551722], [-117.965229, 49.551714], [-117.963762, 49.552129], [-117.961181, 49.551993], [-117.95886, 49.550757], [-117.957527, 49.549133], [-117.956877, 49.546667], [-117.957312, 49.545949], [-117.95727, 49.544393], [-117.955554, 49.542445], [-117.952776, 49.54077], [-117.951586, 49.540728], [-117.946989, 49.541054], [-117.944223, 49.540268], [-117.938225, 49.536503], [-117.936144, 49.533631], [-117.935139, 49.532996], [-117.931949, 49.532816], [-117.928989, 49.532111], [-117.921874, 49.53239], [-117.919873, 49.532252], [-117.9179, 49.531782], [-117.916095, 49.530941], [-117.909761, 49.529858], [-117.903423, 49.529747], [-117.895966, 49.531057], [-117.89196, 49.53272], [-117.885564, 49.532894], [-117.885799, 49.534714], [-117.883299, 49.538865], [-117.877021, 49.541946], [-117.874018, 49.544244], [-117.870588, 49.545906], [-117.86862, 49.546295], [-117.866039, 49.545506], [-117.864084, 49.544162], [-117.861702, 49.543425], [-117.859134, 49.54328], [-117.847071, 49.53923], [-117.8445, 49.534435], [-117.842577, 49.532815], [-117.840734, 49.531064], [-117.840972, 49.529321], [-117.840725, 49.528337], [-117.83966, 49.527124], [-117.831511, 49.522555], [-117.830828, 49.522531], [-117.830295, 49.521492], [-117.829513, 49.518848], [-117.828448, 49.517635], [-117.825589, 49.515981], [-117.825297, 49.514064], [-117.824376, 49.509731], [-117.823293, 49.508739], [-117.812887, 49.505885], [-117.806558, 49.505638], [-117.800741, 49.506785], [-117.795937, 49.50808], [-117.79497, 49.504786], [-117.792519, 49.50299], [-117.788727, 49.501679], [-117.786093, 49.499611], [-117.783401, 49.499071], [-117.768975, 49.499042], [-117.765966, 49.495296], [-117.763129, 49.494041], [-117.759186, 49.49412], [-117.755716, 49.495039], [-117.75363, 49.496163], [-117.751863, 49.497898], [-117.736951, 49.489527], [-117.734737, 49.486963], [-117.731908, 49.485219], [-117.730877, 49.484671], [-117.72975, 49.481748], [-117.727311, 49.47984], [-117.725945, 49.468265], [-117.722565, 49.46307], [-117.722259, 49.460677], [-117.721712, 49.459753], [-117.721477, 49.456856], [-117.721415, 49.456766], [-117.721971, 49.45564], [-117.718069, 49.451508], [-117.701013, 49.439942], [-117.698509, 49.437735], [-117.694172, 49.434427], [-117.691706, 49.433502], [-117.691588, 49.41814], [-117.669692, 49.418261], [-117.654419, 49.417922], [-117.645861, 49.41879], [-117.623598, 49.41878], [-117.612785, 49.418621], [-117.608148, 49.418477], [-117.601507, 49.418426], [-117.601533, 49.421988], [-117.588522, 49.421791], [-117.581819, 49.421822], [-117.581151, 49.435365], [-117.581382, 49.435767], [-117.578891, 49.435682], [-117.562588, 49.435555], [-117.562793, 49.439216], [-117.547072, 49.439223], [-117.545006, 49.438781], [-117.542623, 49.438779], [-117.542694, 49.440075], [-117.53915, 49.440101], [-117.539152, 49.440223], [-117.531223, 49.440218], [-117.531235, 49.439711], [-117.530456, 49.439705], [-117.530326, 49.439049], [-117.530087, 49.438781], [-117.52974, 49.438566], [-117.528967, 49.438354], [-117.528124, 49.438295], [-117.527889, 49.438305], [-117.527201, 49.438506], [-117.52675, 49.438822], [-117.526271, 49.43905], [-117.525995, 49.439114], [-117.525154, 49.439198], [-117.523581, 49.439224], [-117.52102, 49.439542], [-117.518667, 49.440064], [-117.518211, 49.440004], [-117.518086, 49.439905], [-117.518028, 49.439725], [-117.518135, 49.439419], [-117.518065, 49.439258], [-117.517413, 49.438874], [-117.517426, 49.438784], [-117.517754, 49.438549], [-117.517889, 49.438341], [-117.51807, 49.43709], [-117.518297, 49.436316], [-117.517938, 49.436055], [-117.516961, 49.435922], [-117.515303, 49.435867], [-117.482733, 49.435921], [-117.481753, 49.451346], [-117.490198, 49.451131], [-117.50837, 49.450957], [-117.508523, 49.446678], [-117.514205, 49.446599], [-117.514406, 49.441587], [-117.515895, 49.441673], [-117.516149, 49.442072], [-117.516182, 49.442549], [-117.515991, 49.442802], [-117.515996, 49.443126], [-117.516109, 49.44345], [-117.516288, 49.443521], [-117.516481, 49.443367], [-117.516674, 49.443366], [-117.517572, 49.443605], [-117.517696, 49.443568], [-117.517874, 49.44328], [-117.517565, 49.442913], [-117.517203, 49.442706], [-117.517148, 49.442581], [-117.517546, 49.442273], [-117.518015, 49.442289], [-117.519011, 49.442564], [-117.519796, 49.442949], [-117.522274, 49.442303], [-117.522275, 49.442054], [-117.522672, 49.441792], [-117.522902, 49.441511], [-117.523219, 49.441466], [-117.523526, 49.441698], [-117.523652, 49.441923], [-117.523786, 49.442876], [-117.523506, 49.443811], [-117.522698, 49.44432], [-117.522435, 49.444266], [-117.522172, 49.444123], [-117.521345, 49.444537], [-117.521405, 49.444721], [-117.521338, 49.444909], [-117.520724, 49.445443], [-117.520274, 49.445976], [-117.520082, 49.446094], [-117.519515, 49.446097], [-117.518621, 49.446352], [-117.518275, 49.446201], [-117.51804, 49.446175], [-117.517986, 49.44622], [-117.518843, 49.447638], [-117.519765, 49.448722], [-117.520097, 49.448927], [-117.520336, 49.449205], [-117.520534, 49.449626], [-117.520525, 49.450334], [-117.521611, 49.449887], [-117.52207, 49.450531], [-117.522815, 49.450219], [-117.523269, 49.449957], [-117.523665, 49.449586], [-117.524295, 49.449188], [-117.524853, 49.448655], [-117.524935, 49.448993], [-117.523628, 49.450276], [-117.52405, 49.452097], [-117.522929, 49.455676], [-117.522525, 49.456613], [-117.522239, 49.456974], [-117.521842, 49.457318], [-117.519804, 49.458376], [-117.518622, 49.457796], [-117.518431, 49.45792], [-117.518067, 49.458371], [-117.517519, 49.458505], [-117.517248, 49.458788], [-117.516441, 49.459047], [-117.516196, 49.459237], [-117.515841, 49.459402], [-117.514849, 49.459718], [-117.514811, 49.460568], [-117.5144, 49.460769], [-117.513601, 49.460944], [-117.511638, 49.461104], [-117.509442, 49.461542], [-117.50759, 49.461987], [-117.50699, 49.462035], [-117.505897, 49.462005], [-117.505846, 49.462801], [-117.50593, 49.463794], [-117.505843, 49.465795], [-117.511689, 49.465615], [-117.511537, 49.472631], [-117.517183, 49.47258], [-117.51679, 49.479865], [-117.542056, 49.479936], [-117.54233, 49.480154], [-117.544494, 49.480583], [-117.545435, 49.480913], [-117.545517, 49.481563], [-117.544616, 49.482467], [-117.544446, 49.482828], [-117.544459, 49.483029], [-117.545118, 49.483524], [-117.545143, 49.483699], [-117.544843, 49.483927], [-117.545026, 49.484418], [-117.544588, 49.487124], [-117.543663, 49.489734], [-117.543583, 49.490885], [-117.543797, 49.491191], [-117.544308, 49.491546], [-117.54471, 49.491654], [-117.54515, 49.492002], [-117.545466, 49.492614], [-117.545207, 49.493098], [-117.545083, 49.493757], [-117.545193, 49.494643], [-117.544635, 49.495364], [-117.544863, 49.495907], [-117.544764, 49.496302], [-117.544484, 49.496645], [-117.544819, 49.497354], [-117.544723, 49.497574], [-117.544386, 49.497881], [-117.543609, 49.498256], [-117.542683, 49.499687], [-117.543032, 49.501311], [-117.542803, 49.503841], [-117.542064, 49.506363], [-117.54198, 49.508111], [-117.542194, 49.508883], [-117.543287, 49.509865], [-117.543661, 49.510522], [-117.545812, 49.511052], [-117.546698, 49.511152], [-117.548379, 49.513343], [-117.551039, 49.518164], [-117.552702, 49.520029], [-117.554, 49.52189], [-117.555271, 49.522764], [-117.556034, 49.524076], [-117.555414, 49.528074], [-117.555448, 49.528838], [-117.554126, 49.529705], [-117.553974, 49.530144], [-117.555144, 49.532886], [-117.55518, 49.534271], [-117.554003, 49.535615], [-117.553849, 49.536335], [-117.556146, 49.538406], [-117.556178, 49.539719], [-117.555167, 49.540688], [-117.550371, 49.541348], [-117.549693, 49.541703], [-117.547634, 49.54231], [-117.545586, 49.54269], [-117.544389, 49.543856], [-117.543555, 49.546874], [-117.543372, 49.548065], [-117.538143, 49.550091], [-117.527769, 49.557067], [-117.516289, 49.556802], [-117.503084, 49.574927], [-117.492354, 49.575733], [-117.474378, 49.573383], [-117.458524, 49.578518], [-117.44823, 49.575385], [-117.44796, 49.58413], [-117.434057, 49.588729], [-117.424164, 49.585236], [-117.41781, 49.584163], [-117.415448, 49.586443], [-117.417419, 49.598334], [-117.426844, 49.602105], [-117.429714, 49.609824], [-117.40299, 49.621505], [-117.394808, 49.634206], [-117.376288, 49.624002], [-117.362141, 49.626979], [-117.351589, 49.622226], [-117.342741, 49.620816], [-117.334628, 49.623646], [-117.330081, 49.623826], [-117.326247, 49.623847], [-117.322627, 49.623962], [-117.316948, 49.632698], [-117.318864, 49.64012], [-117.31459, 49.650579], [-117.316674, 49.662262], [-117.316805, 49.67846], [-117.300331, 49.684033], [-117.286316, 49.688696], [-117.268914, 49.691476], [-117.25856, 49.685907], [-117.258171, 49.685053], [-117.255491, 49.684526], [-117.245837, 49.689973], [-117.23781, 49.69168], [-117.23151, 49.699171], [-117.216314, 49.696092], [-117.210803, 49.700894], [-117.206108, 49.700698], [-117.198069, 49.697305], [-117.190663, 49.698014], [-117.19234, 49.702167], [-117.192535, 49.705183], [-117.194766, 49.711459], [-117.197327, 49.722311], [-117.193806, 49.740494], [-117.19273, 49.743743], [-117.203122, 49.751849], [-117.212672, 49.755344], [-117.225356, 49.759743], [-117.210824, 49.771129], [-117.197857, 49.777087], [-117.195544, 49.779646], [-117.196501, 49.783154], [-117.204345, 49.794358], [-117.204157, 49.801801], [-117.209615, 49.811285], [-117.212278, 49.81435], [-117.228959, 49.824294], [-117.232139, 49.8301], [-117.230015, 49.839493], [-117.228746, 49.843483], [-117.226866, 49.845717], [-117.215999, 49.854969], [-117.211671, 49.859128], [-117.205164, 49.858276], [-117.198766, 49.860966], [-117.195986, 49.861037], [-117.195184, 49.861927], [-117.188277, 49.865049], [-117.185724, 49.868306], [-117.180543, 49.8709], [-117.182787, 49.873576], [-117.185745, 49.875636], [-117.187517, 49.879914], [-117.186237, 49.883418], [-117.183868, 49.885235], [-117.182932, 49.888562], [-117.178925, 49.892568], [-117.174288, 49.895753], [-117.175695, 49.899668], [-117.178848, 49.904162], [-117.181511, 49.908705], [-117.1742, 49.912586], [-117.174865, 49.921755], [-117.168441, 49.925334], [-117.159291, 49.925333], [-117.134913, 49.930698], [-117.130939, 49.931656], [-117.136318, 49.940072], [-117.129082, 49.947908], [-117.132356, 49.968261], [-117.14397, 49.982454], [-117.164385, 49.987554], [-117.183247, 49.993075], [-117.178898, 49.999514], [-117.185569, 50.002837], [-117.186892, 50.004889], [-117.188224, 50.015672], [-117.188175, 50.020199], [-117.189655, 50.025019], [-117.194658, 50.028518], [-117.195945, 50.029654], [-117.197227, 50.030493], [-117.20073, 50.031801], [-117.204222, 50.034236], [-117.204805, 50.035851], [-117.204591, 50.036691], [-117.204005, 50.037584], [-117.201178, 50.040079], [-117.201947, 50.040254], [-117.205294, 50.041623], [-117.206933, 50.042906], [-117.207581, 50.04374], [-117.207559, 50.043965], [-117.208804, 50.046363], [-117.210665, 50.048032], [-117.211193, 50.048777], [-117.211388, 50.051402], [-117.211791, 50.052534], [-117.211755, 50.053128], [-117.212893, 50.055577], [-117.213278, 50.057187], [-117.213474, 50.058847], [-117.212994, 50.060833], [-117.209887, 50.064553], [-117.206523, 50.074828], [-117.19064, 50.082765], [-117.193648, 50.089004], [-117.173592, 50.094245], [-117.168413, 50.111173], [-117.164535, 50.122147], [-117.166808, 50.128444], [-117.208478, 50.134429], [-117.227627, 50.135499], [-117.232416, 50.135518], [-117.236816, 50.139657], [-117.227378, 50.143987], [-117.226464, 50.155371], [-117.209945, 50.17305], [-117.201149, 50.186464], [-117.218993, 50.195193], [-117.245829, 50.195263], [-117.275117, 50.208872], [-117.26528, 50.218927], [-117.259882, 50.237673], [-117.235126, 50.235601], [-117.22612, 50.240874], [-117.221243, 50.253353], [-117.240676, 50.256187], [-117.233738, 50.267631], [-117.235814, 50.294535], [-117.25684, 50.292196], [-117.279384, 50.290399], [-117.290087, 50.280287], [-117.303552, 50.279907], [-117.311281, 50.277287], [-117.317277, 50.265752], [-117.339142, 50.259338], [-117.348517, 50.261476], [-117.362297, 50.265502], [-117.368276, 50.278206], [-117.368057, 50.287062], [-117.362316, 50.321079]], [[-117.386838, 49.990427], [-117.383311, 49.994677], [-117.380328, 49.997171], [-117.376951, 49.998558], [-117.374518, 49.996887], [-117.373471, 49.996286], [-117.372979, 49.996435], [-117.372813, 49.996552], [-117.372385, 49.99721], [-117.372093, 49.997516], [-117.372071, 49.998129], [-117.37224, 49.998325], [-117.370713, 49.999156], [-117.369259, 49.999844], [-117.368869, 49.999486], [-117.363877, 49.99968], [-117.364043, 49.997974], [-117.363686, 49.997939], [-117.363441, 50.002189], [-117.358459, 50.002404], [-117.359045, 49.997759], [-117.360588, 49.997462], [-117.357955, 49.997227], [-117.358064, 49.996658], [-117.357489, 49.996566], [-117.356382, 49.995665], [-117.35585, 49.995395], [-117.355001, 49.993221], [-117.35574, 49.993268], [-117.356725, 49.993787], [-117.357242, 49.994331], [-117.357177, 49.994867], [-117.357865, 49.994886], [-117.357831, 49.99361], [-117.360993, 49.99375], [-117.361356, 49.99089], [-117.361865, 49.990656], [-117.362294, 49.990368], [-117.365186, 49.989988], [-117.366872, 49.989468], [-117.37064, 49.989403], [-117.372263, 49.989024], [-117.372421, 49.985107], [-117.370771, 49.983143], [-117.370642, 49.982896], [-117.370567, 49.982569], [-117.370545, 49.981114], [-117.370746, 49.98038], [-117.371555, 49.980381], [-117.37319, 49.980204], [-117.374162, 49.980174], [-117.382045, 49.980901], [-117.385831, 49.984942], [-117.386838, 49.990427]], [[-117.363761, 49.947139], [-117.365679, 49.94903], [-117.366768, 49.951127], [-117.366475, 49.953947], [-117.365226, 49.956145], [-117.364111, 49.957328], [-117.361556, 49.95886], [-117.359724, 49.958014], [-117.359506, 49.95797], [-117.357747, 49.958093], [-117.357212, 49.957894], [-117.356595, 49.95748], [-117.356149, 49.95695], [-117.356141, 49.956469], [-117.35309, 49.954356], [-117.35309, 49.954082], [-117.353372, 49.954082], [-117.353372, 49.953178], [-117.354052, 49.953178], [-117.354069, 49.952812], [-117.353467, 49.952454], [-117.353639, 49.952334], [-117.353094, 49.952008], [-117.354669, 49.950909], [-117.35467, 49.950315], [-117.355413, 49.950315], [-117.355407, 49.948547], [-117.359005, 49.948458], [-117.363352, 49.946829], [-117.363761, 49.947139]], [[-117.474832, 49.768394], [-117.47299, 49.77155], [-117.470828, 49.77276], [-117.467049, 49.772733], [-117.466205, 49.772598], [-117.464525, 49.772208], [-117.463496, 49.766054], [-117.463576, 49.762905], [-117.463282, 49.760996], [-117.472263, 49.761083], [-117.474272, 49.761595], [-117.475323, 49.761402], [-117.474541, 49.762765], [-117.474072, 49.763907], [-117.473341, 49.764893], [-117.47331, 49.765843], [-117.474137, 49.767186], [-117.474521, 49.767623], [-117.474832, 49.768394]]]]}, "properties": {"name": "Central Kootenay H", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay H", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903052", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.608148, 49.418477], [-117.612785, 49.418621], [-117.623598, 49.41878], [-117.645861, 49.41879], [-117.654419, 49.417922], [-117.669692, 49.418261], [-117.692606, 49.418138], [-117.69289, 49.412996], [-117.69326, 49.403504], [-117.691702, 49.403492], [-117.692327, 49.353082], [-117.675517, 49.353039], [-117.674301, 49.352937], [-117.674462, 49.351064], [-117.674089, 49.350879], [-117.674301, 49.349464], [-117.674273, 49.348831], [-117.670458, 49.348573], [-117.664806, 49.348456], [-117.663342, 49.34895], [-117.657548, 49.348573], [-117.658065, 49.339277], [-117.6539, 49.339171], [-117.653317, 49.334471], [-117.653097, 49.333911], [-117.653512, 49.333096], [-117.653807, 49.331132], [-117.654039, 49.328573], [-117.652132, 49.327988], [-117.647576, 49.324221], [-117.651977, 49.318336], [-117.653302, 49.315998], [-117.652118, 49.315574], [-117.644795, 49.314969], [-117.640829, 49.315328], [-117.633346, 49.316714], [-117.631054, 49.316755], [-117.630655, 49.317762], [-117.630188, 49.318523], [-117.629917, 49.318876], [-117.629301, 49.319424], [-117.62837, 49.319963], [-117.625723, 49.321], [-117.624091, 49.322128], [-117.623036, 49.323327], [-117.622863, 49.323642], [-117.623414, 49.323682], [-117.62323, 49.323946], [-117.622708, 49.325226], [-117.621733, 49.326381], [-117.621443, 49.326579], [-117.620236, 49.32688], [-117.619636, 49.327321], [-117.619111, 49.32789], [-117.617777, 49.330051], [-117.617181, 49.330715], [-117.616781, 49.33103], [-117.613372, 49.331018], [-117.612793, 49.331777], [-117.612038, 49.33246], [-117.609151, 49.333995], [-117.607919, 49.334484], [-117.601723, 49.335133], [-117.596497, 49.337676], [-117.593468, 49.340172], [-117.591561, 49.341104], [-117.589815, 49.341534], [-117.588841, 49.342103], [-117.585711, 49.344188], [-117.582389, 49.345989], [-117.580544, 49.347288], [-117.578965, 49.348502], [-117.554937, 49.348706], [-117.554593, 49.355821], [-117.549348, 49.356174], [-117.549281, 49.36296], [-117.543285, 49.363094], [-117.543458, 49.369983], [-117.537545, 49.370379], [-117.537775, 49.377224], [-117.531115, 49.377542], [-117.531939, 49.384364], [-117.526181, 49.384601], [-117.52572, 49.391723], [-117.515012, 49.391971], [-117.514713, 49.42164], [-117.51843, 49.433467], [-117.517442, 49.43493], [-117.516961, 49.435922], [-117.517938, 49.436055], [-117.518297, 49.436316], [-117.51807, 49.43709], [-117.517889, 49.438341], [-117.517754, 49.438549], [-117.517426, 49.438784], [-117.517413, 49.438874], [-117.518065, 49.439258], [-117.518135, 49.439419], [-117.51803, 49.439842], [-117.518211, 49.440004], [-117.518859, 49.440046], [-117.520896, 49.43956], [-117.523581, 49.439224], [-117.525154, 49.439198], [-117.525995, 49.439114], [-117.526271, 49.43905], [-117.52675, 49.438822], [-117.527201, 49.438506], [-117.527889, 49.438305], [-117.528124, 49.438295], [-117.528967, 49.438354], [-117.52974, 49.438566], [-117.530087, 49.438781], [-117.530326, 49.439049], [-117.530456, 49.439705], [-117.531235, 49.439711], [-117.531223, 49.440218], [-117.539152, 49.440223], [-117.53915, 49.440101], [-117.542694, 49.440075], [-117.542623, 49.438779], [-117.545006, 49.438781], [-117.547072, 49.439223], [-117.562793, 49.439216], [-117.562588, 49.435555], [-117.578891, 49.435682], [-117.581382, 49.435767], [-117.581151, 49.435365], [-117.581819, 49.421822], [-117.588522, 49.421791], [-117.601533, 49.421988], [-117.601507, 49.418426], [-117.608148, 49.418477]]]]}, "properties": {"name": "Central Kootenay I", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay I", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903056", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.286224, 49.819888], [-118.297364, 49.823937], [-118.31209, 49.823523], [-118.307118, 49.817634], [-118.306679, 49.815977], [-118.306562, 49.815945], [-118.30519, 49.814635], [-118.304578, 49.812334], [-118.312198, 49.812304], [-118.311042, 49.810389], [-118.309827, 49.809609], [-118.304913, 49.80886], [-118.302888, 49.808116], [-118.301576, 49.805747], [-118.302563, 49.799073], [-118.303442, 49.798137], [-118.3054, 49.797336], [-118.306787, 49.796255], [-118.306269, 49.795718], [-118.296841, 49.795578], [-118.293955, 49.79513], [-118.290313, 49.794016], [-118.288273, 49.791022], [-118.287214, 49.787577], [-118.286732, 49.782081], [-118.287257, 49.778846], [-118.29911, 49.766276], [-118.29843, 49.765832], [-118.297424, 49.766023], [-118.294852, 49.765581], [-118.292734, 49.765697], [-118.28885, 49.763325], [-118.287654, 49.761117], [-118.28769, 49.759831], [-118.289614, 49.75764], [-118.292013, 49.755926], [-118.295848, 49.754539], [-118.297439, 49.753644], [-118.299812, 49.752674], [-118.300151, 49.751498], [-118.300636, 49.750428], [-118.301307, 49.750188], [-118.298926, 49.747239], [-118.295733, 49.744768], [-118.293268, 49.744149], [-118.291292, 49.74447], [-118.288856, 49.743892], [-118.286635, 49.743743], [-118.285323, 49.74326], [-118.284801, 49.74238], [-118.285615, 49.734204], [-118.284213, 49.730236], [-118.282339, 49.72736], [-118.281055, 49.724682], [-118.282437, 49.718789], [-118.283201, 49.718128], [-118.283238, 49.716841], [-118.281738, 49.714962], [-118.280974, 49.714616], [-118.278818, 49.714447], [-118.276646, 49.714921], [-118.275463, 49.714179], [-118.27551, 49.712349], [-118.273915, 49.710105], [-118.273812, 49.708612], [-118.274947, 49.705146], [-118.27548, 49.700011], [-118.276032, 49.698478], [-118.27708, 49.697344], [-118.279519, 49.698365], [-118.280547, 49.697089], [-118.280934, 49.694867], [-118.280373, 49.689235], [-118.28078, 49.682908], [-118.279237, 49.680404], [-118.279156, 49.679839], [-118.278572, 49.678975], [-118.27791, 49.673863], [-118.279377, 49.67089], [-118.278871, 49.669808], [-118.275089, 49.667233], [-118.274375, 49.665323], [-118.275447, 49.658384], [-118.252993, 49.65642], [-118.247561, 49.64918], [-118.246888, 49.64916], [-118.246779, 49.648136], [-118.245743, 49.646755], [-118.241897, 49.636159], [-118.243303, 49.632652], [-118.243565, 49.63166], [-118.246015, 49.628713], [-118.253383, 49.620678], [-118.254436, 49.618896], [-118.254655, 49.617552], [-118.253562, 49.613727], [-118.253422, 49.611525], [-118.253908, 49.610221], [-118.250351, 49.604399], [-118.251932, 49.593245], [-118.250468, 49.585929], [-118.250118, 49.583635], [-118.250175, 49.581939], [-118.249441, 49.578299], [-118.248159, 49.576298], [-118.248054, 49.575587], [-118.247452, 49.574477], [-118.247137, 49.573234], [-118.247328, 49.570958], [-118.246692, 49.568351], [-118.245502, 49.565929], [-118.244893, 49.563586], [-118.244881, 49.561565], [-118.246067, 49.55831], [-118.251056, 49.552324], [-118.25266, 49.552692], [-118.255043, 49.552538], [-118.260548, 49.550542], [-118.261157, 49.549551], [-118.260051, 49.546364], [-118.260662, 49.542485], [-118.261475, 49.539238], [-118.260271, 49.536573], [-118.260817, 49.535823], [-118.264375, 49.533785], [-118.265435, 49.529348], [-118.273556, 49.524897], [-118.275726, 49.51781], [-118.27594, 49.512351], [-118.275795, 49.511983], [-118.276292, 49.511496], [-118.277468, 49.508575], [-118.283506, 49.49941], [-118.285324, 49.497656], [-118.287366, 49.494904], [-118.287681, 49.488838], [-118.287219, 49.48661], [-118.285679, 49.484791], [-118.285427, 49.483093], [-118.284553, 49.480591], [-118.281767, 49.478491], [-118.280452, 49.477001], [-118.280165, 49.475141], [-118.283199, 49.470529], [-118.282731, 49.467959], [-118.281794, 49.466803], [-118.280117, 49.46689], [-118.277857, 49.467339], [-118.276703, 49.466639], [-118.275171, 49.464719], [-118.273143, 49.461738], [-118.270129, 49.458966], [-118.268016, 49.45741], [-118.267101, 49.455953], [-118.263905, 49.453577], [-118.25962, 49.448934], [-118.257052, 49.447705], [-118.255578, 49.44631], [-118.253465, 49.445196], [-118.252836, 49.444492], [-118.253773, 49.443435], [-118.253753, 49.442409], [-118.255934, 49.439863], [-118.256418, 49.436922], [-118.25764, 49.435733], [-118.257935, 49.434174], [-118.260338, 49.431514], [-118.261185, 49.429107], [-118.261202, 49.426485], [-118.26084, 49.423259], [-118.261483, 49.422476], [-118.265642, 49.422037], [-118.265588, 49.421984], [-118.270715, 49.421906], [-118.273729, 49.419602], [-118.262558, 49.412718], [-118.259779, 49.412972], [-118.25965, 49.412804], [-118.260007, 49.40763], [-118.256869, 49.403665], [-118.257113, 49.402703], [-118.266692, 49.398752], [-118.264036, 49.395244], [-118.264497, 49.392634], [-118.264198, 49.388949], [-118.25944, 49.386], [-118.256334, 49.385615], [-118.256096, 49.383103], [-118.251021, 49.378604], [-118.251555, 49.376966], [-118.250204, 49.373978], [-118.250593, 49.369305], [-118.251797, 49.363609], [-118.248996, 49.362533], [-118.238629, 49.357634], [-118.239733, 49.354843], [-118.238688, 49.352066], [-118.239943, 49.349928], [-118.24073, 49.346036], [-118.23876, 49.343921], [-118.238101, 49.341034], [-118.234556, 49.33868], [-118.229959, 49.338637], [-118.226476, 49.33527], [-118.222518, 49.333884], [-118.219027, 49.328533], [-118.219294, 49.328366], [-118.209132, 49.326083], [-118.20776, 49.317291], [-118.206242, 49.30489], [-118.2046, 49.30334], [-118.203742, 49.301445], [-118.207667, 49.2958], [-118.207731, 49.294658], [-118.203901, 49.294009], [-118.203302, 49.292039], [-118.19774, 49.285682], [-118.196992, 49.280233], [-118.189572, 49.280681], [-118.184491, 49.277546], [-118.179546, 49.277005], [-118.176894, 49.274401], [-118.177818, 49.270661], [-118.181397, 49.268887], [-118.181924, 49.266997], [-118.177087, 49.260332], [-118.17713, 49.253174], [-118.176826, 49.249323], [-118.166294, 49.250403], [-118.161003, 49.260699], [-118.157616, 49.263367], [-118.154436, 49.265131], [-118.152835, 49.266239], [-118.151938, 49.267239], [-118.151363, 49.268696], [-118.150287, 49.269816], [-118.150055, 49.271161], [-118.149697, 49.271273], [-118.150122, 49.273649], [-118.145697, 49.2763], [-118.142218, 49.277677], [-118.141196, 49.276242], [-118.134651, 49.268619], [-118.135513, 49.266096], [-118.135874, 49.264001], [-118.127233, 49.263998], [-118.123528, 49.263915], [-118.049951, 49.263497], [-118.033306, 49.263507], [-118.005447, 49.263952], [-117.963845, 49.264225], [-117.944534, 49.264491], [-117.938832, 49.264436], [-117.931347, 49.265304], [-117.926178, 49.265018], [-117.847561, 49.265015], [-117.797294, 49.264893], [-117.786515, 49.264936], [-117.751679, 49.265226], [-117.739955, 49.265391], [-117.729413, 49.265421], [-117.703094, 49.26534], [-117.702878, 49.261559], [-117.702542, 49.252145], [-117.701994, 49.228046], [-117.68632, 49.228275], [-117.685847, 49.224619], [-117.679739, 49.224337], [-117.677197, 49.224504], [-117.675345, 49.224539], [-117.67557, 49.224335], [-117.676852, 49.222473], [-117.678451, 49.219706], [-117.679683, 49.215976], [-117.683617, 49.208532], [-117.681556, 49.207773], [-117.680914, 49.207712], [-117.674083, 49.207722], [-117.674276, 49.175039], [-117.645042, 49.17511], [-117.600063, 49.17536], [-117.583942, 49.174753], [-117.499591, 49.175219], [-117.493963, 49.175485], [-117.491881, 49.218161], [-117.493376, 49.226626], [-117.49237, 49.244853], [-117.492152, 49.250081], [-117.492744, 49.275892], [-117.492805, 49.275881], [-117.490876, 49.348989], [-117.554937, 49.348706], [-117.578965, 49.348502], [-117.580544, 49.347288], [-117.582389, 49.345989], [-117.585711, 49.344188], [-117.588841, 49.342103], [-117.589815, 49.341534], [-117.591561, 49.341104], [-117.593468, 49.340172], [-117.596497, 49.337676], [-117.599076, 49.336402], [-117.601723, 49.335133], [-117.607919, 49.334484], [-117.609151, 49.333995], [-117.612038, 49.33246], [-117.612793, 49.331777], [-117.61421, 49.329918], [-117.616265, 49.327725], [-117.618271, 49.325933], [-117.61892, 49.32553], [-117.609189, 49.324074], [-117.609311, 49.321739], [-117.609581, 49.318935], [-117.617788, 49.319704], [-117.623562, 49.320181], [-117.624075, 49.319527], [-117.625427, 49.318657], [-117.627807, 49.318218], [-117.630723, 49.316761], [-117.630857, 49.316759], [-117.630915, 49.316401], [-117.630581, 49.316454], [-117.630628, 49.316247], [-117.631883, 49.313106], [-117.631987, 49.312959], [-117.63233, 49.312973], [-117.632577, 49.311117], [-117.634857, 49.306686], [-117.63251, 49.306779], [-117.632598, 49.306557], [-117.632577, 49.305831], [-117.627635, 49.289061], [-117.627552, 49.287917], [-117.62773, 49.286512], [-117.627662, 49.286376], [-117.62798, 49.285876], [-117.63077, 49.286079], [-117.634752, 49.286284], [-117.635691, 49.290382], [-117.642731, 49.290185], [-117.644591, 49.290197], [-117.644849, 49.288938], [-117.642206, 49.278426], [-117.641675, 49.274368], [-117.641498, 49.265398], [-117.643991, 49.262853], [-117.648769, 49.259701], [-117.654184, 49.25967], [-117.65447, 49.259227], [-117.655047, 49.258584], [-117.657302, 49.256431], [-117.65763, 49.255856], [-117.65824, 49.253951], [-117.658189, 49.251743], [-117.658467, 49.250878], [-117.655257, 49.250927], [-117.653527, 49.250858], [-117.652912, 49.24998], [-117.651158, 49.245431], [-117.651147, 49.241735], [-117.654406, 49.238607], [-117.656228, 49.237287], [-117.65759, 49.237991], [-117.657737, 49.238656], [-117.658626, 49.239308], [-117.659097, 49.239575], [-117.659236, 49.239754], [-117.659268, 49.24005], [-117.659161, 49.240294], [-117.658902, 49.240485], [-117.658906, 49.240745], [-117.65914, 49.240923], [-117.659802, 49.240983], [-117.659982, 49.24118], [-117.660167, 49.241638], [-117.660786, 49.241653], [-117.661349, 49.241586], [-117.662626, 49.241641], [-117.663283, 49.241503], [-117.663808, 49.241571], [-117.664083, 49.241705], [-117.664328, 49.241881], [-117.664177, 49.242188], [-117.664164, 49.242549], [-117.664396, 49.242946], [-117.665186, 49.243424], [-117.66427, 49.245134], [-117.663248, 49.246117], [-117.661176, 49.246761], [-117.66032, 49.2471], [-117.659992, 49.247403], [-117.660727, 49.247592], [-117.663583, 49.247671], [-117.664146, 49.246577], [-117.665536, 49.246434], [-117.665401, 49.247428], [-117.665476, 49.248997], [-117.665738, 49.250297], [-117.6707, 49.250631], [-117.670641, 49.257325], [-117.66502, 49.257613], [-117.665271, 49.263891], [-117.665248, 49.264853], [-117.670794, 49.264915], [-117.670827, 49.267103], [-117.665275, 49.267033], [-117.665602, 49.270454], [-117.665139, 49.291453], [-117.665275, 49.291618], [-117.665287, 49.292624], [-117.666198, 49.292924], [-117.666226, 49.293199], [-117.665287, 49.293202], [-117.664794, 49.295515], [-117.665147, 49.299412], [-117.667182, 49.299462], [-117.667252, 49.300492], [-117.678426, 49.300626], [-117.678265, 49.310379], [-117.682991, 49.310596], [-117.682811, 49.317431], [-117.677308, 49.317137], [-117.677086, 49.320256], [-117.669084, 49.31988], [-117.668664, 49.319882], [-117.665833, 49.320347], [-117.665818, 49.32028], [-117.665658, 49.3203], [-117.665529, 49.320449], [-117.665586, 49.320741], [-117.666155, 49.321545], [-117.667887, 49.324484], [-117.668315, 49.324474], [-117.669193, 49.324299], [-117.674048, 49.324362], [-117.67463, 49.327427], [-117.676774, 49.327567], [-117.678178, 49.327596], [-117.678527, 49.327758], [-117.679077, 49.327624], [-117.679613, 49.32758], [-117.681924, 49.327609], [-117.684016, 49.327729], [-117.686778, 49.328006], [-117.691563, 49.328587], [-117.692806, 49.328852], [-117.696558, 49.329844], [-117.700501, 49.330973], [-117.718844, 49.330748], [-117.718895, 49.32949], [-117.719043, 49.32858], [-117.729703, 49.328376], [-117.730301, 49.332207], [-117.735396, 49.332161], [-117.735617, 49.334823], [-117.742653, 49.334818], [-117.763729, 49.334615], [-117.7658, 49.33477], [-117.771103, 49.334966], [-117.771205, 49.332212], [-117.782415, 49.332609], [-117.782542, 49.335951], [-117.782725, 49.3359], [-117.784177, 49.335847], [-117.784806, 49.335911], [-117.785019, 49.33903], [-117.782705, 49.339155], [-117.778142, 49.340237], [-117.772858, 49.339234], [-117.766041, 49.340127], [-117.765535, 49.340095], [-117.763404, 49.340232], [-117.759526, 49.340573], [-117.754611, 49.340797], [-117.747405, 49.34087], [-117.73826, 49.340087], [-117.736611, 49.339889], [-117.724637, 49.337998], [-117.717823, 49.336992], [-117.704974, 49.334188], [-117.693151, 49.331464], [-117.690036, 49.330822], [-117.684897, 49.330307], [-117.679099, 49.330544], [-117.66952, 49.331604], [-117.663167, 49.33046], [-117.663224, 49.330895], [-117.663352, 49.331134], [-117.663233, 49.33168], [-117.663032, 49.331866], [-117.658806, 49.33395], [-117.658321, 49.33406], [-117.657653, 49.333978], [-117.657063, 49.333997], [-117.655557, 49.332422], [-117.654602, 49.331028], [-117.654407, 49.330595], [-117.654802, 49.328779], [-117.654037, 49.328573], [-117.653807, 49.331132], [-117.653512, 49.333096], [-117.653097, 49.333911], [-117.653317, 49.334471], [-117.6539, 49.339171], [-117.658065, 49.339277], [-117.657548, 49.348573], [-117.663342, 49.34895], [-117.664806, 49.348456], [-117.670458, 49.348573], [-117.674273, 49.348831], [-117.674301, 49.349464], [-117.674089, 49.350879], [-117.674462, 49.351064], [-117.674301, 49.352937], [-117.675517, 49.353039], [-117.692327, 49.353082], [-117.691702, 49.403492], [-117.69326, 49.403504], [-117.69289, 49.412996], [-117.692606, 49.418138], [-117.691588, 49.41814], [-117.691706, 49.433502], [-117.694172, 49.434427], [-117.698509, 49.437735], [-117.701013, 49.439942], [-117.718069, 49.451508], [-117.721971, 49.45564], [-117.721415, 49.456766], [-117.721477, 49.456856], [-117.721712, 49.459753], [-117.722259, 49.460677], [-117.722565, 49.46307], [-117.725945, 49.468265], [-117.727311, 49.47984], [-117.72975, 49.481748], [-117.730877, 49.484671], [-117.731908, 49.485219], [-117.734737, 49.486963], [-117.736951, 49.489527], [-117.751863, 49.497898], [-117.75363, 49.496163], [-117.755716, 49.495039], [-117.759186, 49.49412], [-117.763129, 49.494041], [-117.765966, 49.495296], [-117.768975, 49.499042], [-117.783401, 49.499071], [-117.786093, 49.499611], [-117.788727, 49.501679], [-117.792519, 49.50299], [-117.79497, 49.504786], [-117.795937, 49.50808], [-117.800741, 49.506785], [-117.806558, 49.505638], [-117.812887, 49.505885], [-117.823293, 49.508739], [-117.824376, 49.509731], [-117.825297, 49.514064], [-117.825589, 49.515981], [-117.828448, 49.517635], [-117.829513, 49.518848], [-117.830295, 49.521492], [-117.830828, 49.522531], [-117.831511, 49.522555], [-117.83966, 49.527124], [-117.840725, 49.528337], [-117.840972, 49.529321], [-117.840734, 49.531064], [-117.842577, 49.532815], [-117.8445, 49.534435], [-117.847071, 49.53923], [-117.859134, 49.54328], [-117.861702, 49.543425], [-117.864084, 49.544162], [-117.866039, 49.545506], [-117.86862, 49.546295], [-117.870588, 49.545906], [-117.874018, 49.544244], [-117.877021, 49.541946], [-117.883299, 49.538865], [-117.885799, 49.534714], [-117.885564, 49.532894], [-117.89196, 49.53272], [-117.895966, 49.531057], [-117.903423, 49.529747], [-117.909761, 49.529858], [-117.916095, 49.530941], [-117.9179, 49.531782], [-117.919873, 49.532252], [-117.921874, 49.53239], [-117.928989, 49.532111], [-117.931949, 49.532816], [-117.935139, 49.532996], [-117.936144, 49.533631], [-117.938225, 49.536503], [-117.944223, 49.540268], [-117.946989, 49.541054], [-117.951586, 49.540728], [-117.952776, 49.54077], [-117.955554, 49.542445], [-117.95727, 49.544393], [-117.957312, 49.545949], [-117.956877, 49.546667], [-117.957527, 49.549133], [-117.95886, 49.550757], [-117.961181, 49.551993], [-117.963762, 49.552129], [-117.965229, 49.551714], [-117.96922, 49.551722], [-117.976111, 49.552341], [-117.978053, 49.55363], [-117.985813, 49.558032], [-117.986746, 49.558309], [-117.988805, 49.558159], [-117.995407, 49.559211], [-117.996847, 49.559128], [-117.998782, 49.559661], [-118.003183, 49.5645], [-118.007006, 49.567853], [-118.008929, 49.56812], [-118.011118, 49.568906], [-118.015386, 49.570564], [-118.01602, 49.572007], [-118.014921, 49.574835], [-118.014707, 49.576627], [-118.013755, 49.580793], [-118.015116, 49.58295], [-118.013775, 49.58517], [-118.010949, 49.585919], [-118.009488, 49.587091], [-118.010793, 49.590157], [-118.010072, 49.597774], [-118.008689, 49.600926], [-118.006482, 49.604961], [-118.003379, 49.607409], [-118.001906, 49.610181], [-118.001071, 49.610796], [-118.001723, 49.612018], [-118.00294, 49.612594], [-118.003771, 49.613711], [-118.003916, 49.615293], [-118.00276, 49.618164], [-118.001932, 49.62078], [-118.000371, 49.62106], [-117.997874, 49.62193], [-117.996744, 49.624469], [-117.999421, 49.627472], [-118.000826, 49.629942], [-117.999521, 49.630853], [-117.996039, 49.637088], [-117.997525, 49.638561], [-117.998643, 49.639111], [-118.002108, 49.640431], [-118.0027, 49.641562], [-118.002568, 49.643602], [-118.003233, 49.645091], [-118.00355, 49.649168], [-118.005194, 49.651247], [-118.005947, 49.652495], [-118.000642, 49.655269], [-117.999736, 49.657149], [-117.998448, 49.657839], [-117.994143, 49.658625], [-117.992168, 49.661024], [-117.987215, 49.664699], [-117.987171, 49.667742], [-117.987973, 49.668814], [-117.991008, 49.670608], [-117.991916, 49.671839], [-117.99011, 49.676355], [-117.986775, 49.678219], [-117.987095, 49.679319], [-117.992875, 49.683963], [-117.994345, 49.685658], [-117.995522, 49.685921], [-117.998125, 49.687567], [-117.998906, 49.688483], [-117.999711, 49.688688], [-118.002568, 49.690587], [-118.003427, 49.692115], [-118.021207, 49.692224], [-118.066952, 49.697543], [-118.077814, 49.70803], [-118.078565, 49.708344], [-118.090645, 49.709542], [-118.099721, 49.702698], [-118.107254, 49.705033], [-118.107674, 49.705633], [-118.114084, 49.713088], [-118.122663, 49.715131], [-118.132532, 49.717658], [-118.136298, 49.718847], [-118.148933, 49.724171], [-118.155395, 49.726405], [-118.157701, 49.731265], [-118.15987, 49.734509], [-118.166782, 49.731856], [-118.175735, 49.727619], [-118.183219, 49.731167], [-118.190661, 49.72776], [-118.193914, 49.71789], [-118.194529, 49.711488], [-118.201196, 49.709098], [-118.212155, 49.70946], [-118.218404, 49.715187], [-118.230599, 49.718298], [-118.230673, 49.724315], [-118.236784, 49.734612], [-118.237671, 49.740558], [-118.235248, 49.746888], [-118.237156, 49.754488], [-118.248072, 49.759873], [-118.255696, 49.762222], [-118.257258, 49.784775], [-118.266728, 49.787113], [-118.263685, 49.795843], [-118.264635, 49.804471], [-118.286224, 49.819888]], [[-117.622783, 49.289694], [-117.624751, 49.286072], [-117.626998, 49.286074], [-117.627251, 49.286116], [-117.624955, 49.290183], [-117.622783, 49.289694]]], [[[-117.633793, 49.310244], [-117.631054, 49.316755], [-117.633346, 49.316714], [-117.640829, 49.315328], [-117.644795, 49.314969], [-117.652118, 49.315574], [-117.653302, 49.315998], [-117.656611, 49.311987], [-117.655491, 49.308449], [-117.654283, 49.307119], [-117.6475, 49.301437], [-117.637045, 49.303266], [-117.633793, 49.310244]]]]}, "properties": {"name": "Central Kootenay J", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay J", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903058", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.128704, 50.680931], [-118.129275, 50.681227], [-118.137275, 50.683428], [-118.145243, 50.684159], [-118.152729, 50.684012], [-118.163477, 50.683537], [-118.168506, 50.683376], [-118.181941, 50.684754], [-118.193121, 50.686762], [-118.201491, 50.688777], [-118.207285, 50.690281], [-118.213518, 50.682557], [-118.21459, 50.682111], [-118.213484, 50.680008], [-118.210373, 50.67916], [-118.203975, 50.676708], [-118.19904, 50.674213], [-118.196369, 50.674666], [-118.1929, 50.673296], [-118.184022, 50.673068], [-118.178621, 50.671725], [-118.174947, 50.66939], [-118.172651, 50.666889], [-118.170742, 50.665449], [-118.176688, 50.664736], [-118.182877, 50.663043], [-118.188011, 50.659489], [-118.195719, 50.657333], [-118.201605, 50.657365], [-118.206331, 50.655385], [-118.20531, 50.653405], [-118.20231, 50.650883], [-118.199807, 50.647418], [-118.199241, 50.644763], [-118.201263, 50.640033], [-118.200184, 50.638801], [-118.198709, 50.637825], [-118.19781, 50.635519], [-118.195985, 50.634203], [-118.192287, 50.633993], [-118.186327, 50.635655], [-118.184108, 50.635762], [-118.180764, 50.635235], [-118.179619, 50.629236], [-118.17811, 50.623376], [-118.1745, 50.620294], [-118.171359, 50.617227], [-118.166193, 50.615382], [-118.162698, 50.611465], [-118.164162, 50.609924], [-118.167638, 50.607638], [-118.16828, 50.60607], [-118.167378, 50.605592], [-118.167045, 50.599769], [-118.16825, 50.594685], [-118.163555, 50.59052], [-118.163326, 50.589854], [-118.168234, 50.586984], [-118.16789, 50.584816], [-118.170666, 50.583017], [-118.176083, 50.581719], [-118.177747, 50.580304], [-118.175537, 50.574422], [-118.169883, 50.570526], [-118.169528, 50.569676], [-118.170717, 50.568905], [-118.173315, 50.564015], [-118.175308, 50.561413], [-118.179943, 50.56015], [-118.180099, 50.559377], [-118.178764, 50.557267], [-118.179668, 50.553582], [-118.182512, 50.550886], [-118.187851, 50.549317], [-118.190003, 50.549443], [-118.198435, 50.552187], [-118.201121, 50.552091], [-118.203884, 50.551607], [-118.204159, 50.550508], [-118.204169, 50.54919], [-118.204865, 50.548703], [-118.20943, 50.548006], [-118.209936, 50.547243], [-118.208696, 50.545108], [-118.209997, 50.543501], [-118.21208, 50.542698], [-118.215308, 50.538067], [-118.205755, 50.533659], [-118.196616, 50.526688], [-118.195171, 50.523613], [-118.195874, 50.52314], [-118.197759, 50.522272], [-118.198852, 50.521386], [-118.199594, 50.520558], [-118.200136, 50.520228], [-118.201735, 50.519795], [-118.203606, 50.519549], [-118.204235, 50.519271], [-118.204879, 50.518498], [-118.205021, 50.51737], [-118.204548, 50.515897], [-118.203619, 50.514816], [-118.203132, 50.513901], [-118.202908, 50.512831], [-118.202079, 50.511803], [-118.20096, 50.510994], [-118.195644, 50.508935], [-118.185606, 50.500663], [-118.177534, 50.499826], [-118.176073, 50.493116], [-118.180148, 50.48866], [-118.184466, 50.484391], [-118.189433, 50.481073], [-118.192166, 50.474648], [-118.193555, 50.474326], [-118.199599, 50.476397], [-118.208274, 50.479106], [-118.213813, 50.478296], [-118.218103, 50.476341], [-118.220638, 50.471144], [-118.219605, 50.469453], [-118.207687, 50.464129], [-118.204307, 50.464334], [-118.205126, 50.46234], [-118.204605, 50.45955], [-118.20448, 50.451303], [-118.211166, 50.44256], [-118.212054, 50.439415], [-118.224999, 50.434426], [-118.226817, 50.43398], [-118.229832, 50.433728], [-118.236609, 50.434185], [-118.236621, 50.434261], [-118.24161, 50.435149], [-118.257624, 50.435376], [-118.262817, 50.434734], [-118.267589, 50.436218], [-118.269748, 50.436018], [-118.27257, 50.434965], [-118.270119, 50.430853], [-118.271233, 50.427341], [-118.272953, 50.421393], [-118.26992, 50.415845], [-118.271443, 50.411418], [-118.274795, 50.406613], [-118.27698, 50.401335], [-118.263059, 50.398869], [-118.25584, 50.398779], [-118.254672, 50.398309], [-118.254751, 50.39722], [-118.256504, 50.39553], [-118.263806, 50.395235], [-118.26995, 50.393256], [-118.278168, 50.392169], [-118.282088, 50.392414], [-118.285807, 50.38784], [-118.291676, 50.386069], [-118.301378, 50.379889], [-118.302216, 50.376587], [-118.310749, 50.371131], [-118.317397, 50.361465], [-118.326898, 50.351999], [-118.327733, 50.348697], [-118.327654, 50.344986], [-118.322653, 50.341732], [-118.317668, 50.340611], [-118.31259, 50.337245], [-118.308288, 50.336197], [-118.30267, 50.337801], [-118.288197, 50.337242], [-118.283083, 50.338969], [-118.275461, 50.339802], [-118.272405, 50.339335], [-118.263725, 50.337123], [-118.260111, 50.334343], [-118.259491, 50.332251], [-118.261611, 50.330192], [-118.261419, 50.328113], [-118.258971, 50.326404], [-118.255255, 50.325589], [-118.267182, 50.318122], [-118.269459, 50.313885], [-118.26789, 50.309528], [-118.268865, 50.305522], [-118.263431, 50.300123], [-118.264463, 50.297701], [-118.269296, 50.294749], [-118.276066, 50.278655], [-118.27429, 50.268893], [-118.26941, 50.259474], [-118.26916, 50.257012], [-118.271394, 50.25332], [-118.271066, 50.251946], [-118.263575, 50.248401], [-118.263539, 50.246546], [-118.265653, 50.244487], [-118.258173, 50.226208], [-118.253386, 50.22263], [-118.248475, 50.221891], [-118.248384, 50.218453], [-118.23872, 50.210856], [-118.236929, 50.206161], [-118.239414, 50.204922], [-118.240731, 50.201066], [-118.239127, 50.196296], [-118.243209, 50.193131], [-118.249274, 50.191947], [-118.252476, 50.190235], [-118.252851, 50.188656], [-118.259846, 50.183056], [-118.263725, 50.181421], [-118.261934, 50.179114], [-118.256839, 50.175332], [-118.252356, 50.169099], [-118.253754, 50.1681], [-118.257867, 50.165594], [-118.266005, 50.162883], [-118.274049, 50.157908], [-118.27517, 50.157721], [-118.278191, 50.156051], [-118.277535, 50.146289], [-118.280153, 50.143122], [-118.284798, 50.14018], [-118.296018, 50.134682], [-118.295614, 50.133184], [-118.291399, 50.131286], [-118.295781, 50.115519], [-118.295699, 50.111121], [-118.294427, 50.108372], [-118.294429, 50.108144], [-118.291934, 50.105475], [-118.291479, 50.102382], [-118.293527, 50.097815], [-118.295965, 50.09639], [-118.298464, 50.095812], [-118.304437, 50.09577], [-118.309168, 50.096479], [-118.315146, 50.097796], [-118.322685, 50.097771], [-118.328972, 50.098634], [-118.338176, 50.100722], [-118.340367, 50.100296], [-118.345425, 50.096662], [-118.349265, 50.09457], [-118.369931, 50.090463], [-118.375392, 50.0905], [-118.378433, 50.089703], [-118.37868, 50.086463], [-118.382859, 50.0821], [-118.383967, 50.077174], [-118.388107, 50.076998], [-118.3983, 50.07876], [-118.398853, 50.062096], [-118.398991, 50.0533], [-118.399764, 50.033423], [-118.456946, 50.033472], [-118.495859, 50.033607], [-118.495891, 50.032579], [-118.492085, 50.030623], [-118.488046, 50.029766], [-118.486705, 50.029709], [-118.476519, 50.02683], [-118.47185, 50.026278], [-118.461476, 50.025666], [-118.45487, 50.023971], [-118.45416, 50.024274], [-118.448115, 50.022615], [-118.440742, 50.018925], [-118.435272, 50.015769], [-118.433845, 50.013817], [-118.431863, 50.009294], [-118.434225, 50.007636], [-118.436828, 50.00522], [-118.439786, 50.004424], [-118.442275, 50.005385], [-118.444756, 50.006447], [-118.446461, 50.006599], [-118.449546, 50.005767], [-118.450579, 50.005717], [-118.45268, 50.005117], [-118.457214, 50.002959], [-118.468941, 50.000736], [-118.471545, 50.000532], [-118.473517, 49.999524], [-118.471111, 49.997705], [-118.470818, 49.996289], [-118.472982, 49.988391], [-118.471977, 49.985727], [-118.470785, 49.984446], [-118.461422, 49.978203], [-118.459217, 49.977114], [-118.448705, 49.973794], [-118.446522, 49.973636], [-118.443756, 49.973744], [-118.442419, 49.975262], [-118.439741, 49.976724], [-118.436738, 49.97749], [-118.433903, 49.978947], [-118.432046, 49.979482], [-118.430673, 49.979385], [-118.426968, 49.976495], [-118.424243, 49.975116], [-118.417673, 49.974056], [-118.415893, 49.973044], [-118.413776, 49.966952], [-118.415687, 49.964888], [-118.419569, 49.963143], [-118.420633, 49.96215], [-118.419041, 49.957983], [-118.418936, 49.95398], [-118.421761, 49.951352], [-118.422527, 49.949706], [-118.422307, 49.94763], [-118.419721, 49.94478], [-118.419189, 49.942031], [-118.415363, 49.93629], [-118.416076, 49.9338], [-118.417366, 49.932693], [-118.418435, 49.931158], [-118.417396, 49.927127], [-118.420194, 49.922589], [-118.4206, 49.919326], [-118.418599, 49.91776], [-118.419362, 49.914446], [-118.418706, 49.913602], [-118.410307, 49.909132], [-118.406939, 49.908329], [-118.39945, 49.908733], [-118.391396, 49.909864], [-118.377387, 49.913637], [-118.376929, 49.913081], [-118.377236, 49.912306], [-118.376694, 49.909073], [-118.375342, 49.907544], [-118.366876, 49.901299], [-118.362107, 49.897114], [-118.358908, 49.894665], [-118.35523, 49.894294], [-118.353591, 49.894567], [-118.353858, 49.893068], [-118.353891, 49.891782], [-118.355638, 49.889222], [-118.358294, 49.886992], [-118.359879, 49.884085], [-118.359334, 49.882621], [-118.360852, 49.880617], [-118.365255, 49.877717], [-118.368471, 49.874639], [-118.370013, 49.874003], [-118.372804, 49.873748], [-118.374845, 49.873952], [-118.378662, 49.872863], [-118.381193, 49.871895], [-118.384239, 49.871567], [-118.384487, 49.871152], [-118.383453, 49.869975], [-118.380523, 49.867475], [-118.37969, 49.865038], [-118.378599, 49.859115], [-118.379305, 49.856705], [-118.381047, 49.854587], [-118.381716, 49.850125], [-118.381211, 49.841507], [-118.381432, 49.838499], [-118.379957, 49.836123], [-118.378888, 49.835005], [-118.378467, 49.834169], [-118.377823, 49.83023], [-118.376428, 49.827193], [-118.374412, 49.82458], [-118.372391, 49.823735], [-118.370424, 49.823858], [-118.368197, 49.823711], [-118.366452, 49.82335], [-118.358378, 49.824853], [-118.346131, 49.824608], [-118.324591, 49.830604], [-118.31223, 49.823689], [-118.31209, 49.823523], [-118.297364, 49.823937], [-118.286224, 49.819888], [-118.264635, 49.804471], [-118.263685, 49.795843], [-118.266728, 49.787113], [-118.257258, 49.784775], [-118.255696, 49.762222], [-118.248072, 49.759873], [-118.237156, 49.754488], [-118.235248, 49.746888], [-118.237671, 49.740558], [-118.236784, 49.734612], [-118.230673, 49.724315], [-118.230599, 49.718298], [-118.218404, 49.715187], [-118.212155, 49.70946], [-118.201196, 49.709098], [-118.194529, 49.711488], [-118.193914, 49.71789], [-118.190661, 49.72776], [-118.183219, 49.731167], [-118.175735, 49.727619], [-118.166782, 49.731856], [-118.15987, 49.734509], [-118.157701, 49.731265], [-118.155395, 49.726405], [-118.148933, 49.724171], [-118.136298, 49.718847], [-118.132532, 49.717658], [-118.122663, 49.715131], [-118.114084, 49.713088], [-118.107674, 49.705633], [-118.107254, 49.705033], [-118.099721, 49.702698], [-118.090645, 49.709542], [-118.078565, 49.708344], [-118.077814, 49.70803], [-118.066952, 49.697543], [-118.021207, 49.692224], [-118.003502, 49.692116], [-118.002309, 49.694057], [-118.000803, 49.694438], [-118.000186, 49.695074], [-117.998034, 49.696436], [-117.996081, 49.697026], [-117.993338, 49.698091], [-117.991744, 49.699801], [-117.991717, 49.701617], [-117.992441, 49.703096], [-117.995257, 49.705476], [-117.995839, 49.706448], [-117.995207, 49.707551], [-117.99322, 49.709161], [-117.992088, 49.710783], [-117.990967, 49.71135], [-117.989253, 49.715029], [-117.9832, 49.720115], [-117.979719, 49.723785], [-117.975794, 49.726579], [-117.971169, 49.728417], [-117.966041, 49.7297], [-117.968694, 49.732204], [-117.969127, 49.733433], [-117.968799, 49.734498], [-117.96586, 49.737103], [-117.965163, 49.738102], [-117.963095, 49.744241], [-117.962019, 49.744968], [-117.959628, 49.745771], [-117.956232, 49.746436], [-117.953177, 49.746541], [-117.951221, 49.745956], [-117.950086, 49.746108], [-117.948884, 49.746744], [-117.947149, 49.748332], [-117.946742, 49.749376], [-117.946873, 49.751029], [-117.948705, 49.753279], [-117.949221, 49.755118], [-117.94844, 49.756479], [-117.945524, 49.758443], [-117.944569, 49.758671], [-117.944265, 49.759771], [-117.945853, 49.766904], [-117.946658, 49.767523], [-117.950136, 49.76815], [-117.953981, 49.770488], [-117.955272, 49.772026], [-117.956405, 49.773522], [-117.956141, 49.77478], [-117.954819, 49.775238], [-117.953079, 49.775266], [-117.950574, 49.776776], [-117.949707, 49.778204], [-117.946248, 49.780236], [-117.944529, 49.78049], [-117.942119, 49.780201], [-117.938889, 49.780438], [-117.934448, 49.780132], [-117.930491, 49.781714], [-117.929152, 49.783021], [-117.927498, 49.785219], [-117.927528, 49.786625], [-117.931597, 49.789493], [-117.931988, 49.79348], [-117.931289, 49.795451], [-117.929557, 49.798896], [-117.925602, 49.798831], [-117.919848, 49.79803], [-117.914198, 49.80127], [-117.913445, 49.801313], [-117.912258, 49.799837], [-117.909652, 49.798674], [-117.906836, 49.798752], [-117.901974, 49.798014], [-117.899939, 49.798187], [-117.894413, 49.800251], [-117.889182, 49.800713], [-117.88751, 49.800552], [-117.88613, 49.80073], [-117.886113, 49.804113], [-117.886963, 49.805774], [-117.888995, 49.808033], [-117.893055, 49.816246], [-117.892167, 49.817256], [-117.889666, 49.817708], [-117.883709, 49.820398], [-117.880908, 49.820597], [-117.879465, 49.820876], [-117.878567, 49.821678], [-117.879073, 49.82409], [-117.879159, 49.825291], [-117.878171, 49.826835], [-117.872584, 49.831151], [-117.873145, 49.835596], [-117.872755, 49.836086], [-117.870572, 49.836721], [-117.86694, 49.837532], [-117.857775, 49.837579], [-117.856038, 49.837225], [-117.854604, 49.836448], [-117.852245, 49.834583], [-117.85056, 49.832361], [-117.849292, 49.831832], [-117.845816, 49.831608], [-117.841271, 49.831831], [-117.838362, 49.832649], [-117.837865, 49.832199], [-117.837983, 49.826443], [-117.835814, 49.824567], [-117.832843, 49.823926], [-117.829405, 49.824049], [-117.826073, 49.824331], [-117.817043, 49.824085], [-117.812673, 49.824764], [-117.808815, 49.824161], [-117.807925, 49.82361], [-117.807837, 49.823088], [-117.806826, 49.821666], [-117.804447, 49.82039], [-117.801968, 49.816863], [-117.80163, 49.813836], [-117.800759, 49.812391], [-117.799018, 49.812287], [-117.79327, 49.813614], [-117.791917, 49.813611], [-117.787841, 49.812892], [-117.784818, 49.813186], [-117.778983, 49.814768], [-117.778353, 49.814691], [-117.775757, 49.813475], [-117.774763, 49.813625], [-117.773073, 49.814853], [-117.769397, 49.815328], [-117.767645, 49.815983], [-117.76593, 49.816502], [-117.762059, 49.816779], [-117.75922, 49.817697], [-117.758239, 49.817887], [-117.756548, 49.818674], [-117.75456, 49.821167], [-117.753006, 49.821769], [-117.750928, 49.823444], [-117.745698, 49.827135], [-117.745589, 49.827755], [-117.747862, 49.829607], [-117.748791, 49.830907], [-117.749165, 49.835289], [-117.749473, 49.836046], [-117.749034, 49.836758], [-117.744921, 49.838411], [-117.744428, 49.839138], [-117.744798, 49.839793], [-117.746361, 49.845866], [-117.74506, 49.84724], [-117.744504, 49.848069], [-117.744498, 49.84904], [-117.745097, 49.850137], [-117.74675, 49.852035], [-117.747051, 49.853173], [-117.746606, 49.854561], [-117.744865, 49.856353], [-117.744334, 49.857807], [-117.743193, 49.859325], [-117.742677, 49.860901], [-117.743451, 49.86275], [-117.743366, 49.8637], [-117.7425, 49.864357], [-117.740736, 49.86484], [-117.737939, 49.865144], [-117.734117, 49.865182], [-117.731778, 49.866075], [-117.72902, 49.866241], [-117.727725, 49.865669], [-117.727246, 49.865145], [-117.725359, 49.864271], [-117.712808, 49.865984], [-117.711989, 49.866418], [-117.711736, 49.866822], [-117.712016, 49.868419], [-117.711706, 49.870011], [-117.712027, 49.870885], [-117.711624, 49.873612], [-117.710425, 49.875533], [-117.710869, 49.877084], [-117.710739, 49.879338], [-117.710295, 49.881219], [-117.706778, 49.884655], [-117.707042, 49.886131], [-117.708268, 49.887779], [-117.704563, 49.890345], [-117.703992, 49.892428], [-117.704407, 49.89315], [-117.704706, 49.896248], [-117.705207, 49.897491], [-117.707145, 49.898249], [-117.708071, 49.898955], [-117.709005, 49.901438], [-117.710338, 49.902658], [-117.711686, 49.905174], [-117.709876, 49.908435], [-117.709499, 49.912181], [-117.707306, 49.912612], [-117.704301, 49.913979], [-117.703674, 49.914507], [-117.702955, 49.915291], [-117.695074, 49.919627], [-117.694364, 49.919737], [-117.693068, 49.919164], [-117.688558, 49.919155], [-117.685858, 49.918334], [-117.679766, 49.918399], [-117.674533, 49.917596], [-117.672653, 49.91693], [-117.665308, 49.915208], [-117.66085, 49.915962], [-117.659793, 49.91604], [-117.659011, 49.915748], [-117.658336, 49.914538], [-117.658544, 49.913674], [-117.657785, 49.913122], [-117.657375, 49.913192], [-117.652427, 49.914583], [-117.643241, 49.91573], [-117.641219, 49.915094], [-117.638189, 49.915542], [-117.634132, 49.917193], [-117.632472, 49.918526], [-117.631522, 49.920042], [-117.631654, 49.922306], [-117.632435, 49.923681], [-117.632844, 49.926853], [-117.631057, 49.928388], [-117.630186, 49.929631], [-117.631062, 49.930853], [-117.633461, 49.9327], [-117.634011, 49.934021], [-117.633398, 49.935456], [-117.632085, 49.937507], [-117.63135, 49.93984], [-117.629273, 49.942019], [-117.629179, 49.943942], [-117.630314, 49.945062], [-117.631393, 49.945901], [-117.631623, 49.94723], [-117.62782, 49.948875], [-117.625624, 49.950581], [-117.625223, 49.952336], [-117.623641, 49.952902], [-117.62133, 49.953354], [-117.619267, 49.952705], [-117.617566, 49.952798], [-117.608684, 49.953578], [-117.605502, 49.954587], [-117.604203, 49.955579], [-117.602025, 49.95633], [-117.599497, 49.956652], [-117.594118, 49.958186], [-117.588849, 49.959393], [-117.587754, 49.959908], [-117.587147, 49.960666], [-117.588864, 49.961583], [-117.590667, 49.964499], [-117.591953, 49.968507], [-117.591331, 49.969143], [-117.586485, 49.970992], [-117.584467, 49.973658], [-117.583339, 49.974518], [-117.582368, 49.97837], [-117.582619, 49.980324], [-117.583323, 49.981879], [-117.583015, 49.983482], [-117.587301, 49.98837], [-117.587505, 49.991138], [-117.586499, 49.992576], [-117.583303, 49.998097], [-117.580132, 50.000407], [-117.58051, 50.006985], [-117.578885, 50.007983], [-117.577165, 50.009723], [-117.573798, 50.00977], [-117.570155, 50.009599], [-117.569452, 50.010805], [-117.569905, 50.015823], [-117.569792, 50.018511], [-117.572741, 50.025814], [-117.572677, 50.027096], [-117.57464, 50.028284], [-117.576344, 50.029965], [-117.579121, 50.031097], [-117.580867, 50.03304], [-117.583353, 50.033536], [-117.585665, 50.034459], [-117.584347, 50.03592], [-117.5844, 50.040333], [-117.583397, 50.041285], [-117.582645, 50.042171], [-117.582142, 50.043197], [-117.58286, 50.0438], [-117.587098, 50.044455], [-117.590063, 50.043862], [-117.595605, 50.045715], [-117.597205, 50.046878], [-117.601, 50.051505], [-117.612048, 50.055642], [-117.611359, 50.056383], [-117.611588, 50.058029], [-117.612577, 50.059444], [-117.614283, 50.064248], [-117.613836, 50.065258], [-117.617763, 50.066711], [-117.62094, 50.0686], [-117.62238, 50.070608], [-117.622831, 50.072944], [-117.623794, 50.074552], [-117.624433, 50.077317], [-117.624403, 50.07852], [-117.623244, 50.079108], [-117.620841, 50.07938], [-117.618239, 50.08013], [-117.615863, 50.081027], [-117.612805, 50.083031], [-117.612247, 50.084511], [-117.614143, 50.088759], [-117.614591, 50.089323], [-117.614623, 50.090047], [-117.612442, 50.090269], [-117.609808, 50.091175], [-117.607878, 50.093713], [-117.607177, 50.09624], [-117.607943, 50.097276], [-117.607904, 50.098278], [-117.607204, 50.098976], [-117.605476, 50.099784], [-117.603065, 50.100539], [-117.597964, 50.100949], [-117.59627, 50.101322], [-117.594998, 50.103583], [-117.593513, 50.103979], [-117.592705, 50.105288], [-117.591711, 50.105837], [-117.589822, 50.108921], [-117.590092, 50.109513], [-117.591765, 50.111117], [-117.594014, 50.111926], [-117.596747, 50.112186], [-117.59952, 50.113964], [-117.603655, 50.115042], [-117.604637, 50.115127], [-117.636059, 50.1225], [-117.6479, 50.126728], [-117.654218, 50.135115], [-117.665752, 50.136777], [-117.669787, 50.136523], [-117.673825, 50.140952], [-117.678634, 50.140963], [-117.679237, 50.151282], [-117.679393, 50.155403], [-117.677718, 50.168701], [-117.68045, 50.168527], [-117.679871, 50.171701], [-117.674838, 50.171432], [-117.667778, 50.171541], [-117.660186, 50.181041], [-117.652982, 50.182271], [-117.643343, 50.184311], [-117.646565, 50.18691], [-117.64743, 50.187982], [-117.64736, 50.188932], [-117.648363, 50.190684], [-117.64808, 50.196006], [-117.650552, 50.206505], [-117.663375, 50.210913], [-117.66493, 50.215093], [-117.664666, 50.222893], [-117.668412, 50.229452], [-117.67142, 50.235825], [-117.667945, 50.24044], [-117.666628, 50.241229], [-117.666695, 50.241329], [-117.662417, 50.2438], [-117.638365, 50.258603], [-117.624752, 50.257063], [-117.615468, 50.256488], [-117.603079, 50.254015], [-117.591242, 50.255132], [-117.586536, 50.256911], [-117.582098, 50.257022], [-117.581326, 50.263038], [-117.577453, 50.266406], [-117.57297, 50.267465], [-117.568295, 50.268235], [-117.567104, 50.272232], [-117.565158, 50.274899], [-117.562361, 50.276093], [-117.559516, 50.276617], [-117.556665, 50.276332], [-117.555825, 50.281256], [-117.551451, 50.283478], [-117.548542, 50.284105], [-117.543303, 50.283833], [-117.54158, 50.287036], [-117.538632, 50.289207], [-117.53544, 50.289224], [-117.533618, 50.287501], [-117.533564, 50.28444], [-117.522748, 50.284231], [-117.521805, 50.282823], [-117.518131, 50.280922], [-117.514925, 50.280516], [-117.50567, 50.281244], [-117.503543, 50.277469], [-117.504968, 50.273833], [-117.506347, 50.271319], [-117.505057, 50.268597], [-117.500855, 50.266499], [-117.500323, 50.265107], [-117.485015, 50.26535], [-117.478069, 50.267537], [-117.466703, 50.27693], [-117.464279, 50.282527], [-117.465245, 50.284392], [-117.464465, 50.289457], [-117.456697, 50.294633], [-117.456344, 50.296517], [-117.458457, 50.299517], [-117.461505, 50.301112], [-117.457828, 50.303814], [-117.45472, 50.307979], [-117.454449, 50.31563], [-117.455558, 50.317712], [-117.456376, 50.319958], [-117.45743, 50.320949], [-117.454457, 50.331165], [-117.448716, 50.341834], [-117.442767, 50.347961], [-117.433914, 50.351723], [-117.427956, 50.353209], [-117.416049, 50.354387], [-117.403616, 50.354171], [-117.39963, 50.353801], [-117.397663, 50.354248], [-117.394368, 50.355908], [-117.388158, 50.356183], [-117.381376, 50.3564], [-117.374754, 50.359471], [-117.375397, 50.362448], [-117.375537, 50.366072], [-117.374489, 50.368911], [-117.375115, 50.369252], [-117.376576, 50.372859], [-117.374398, 50.376004], [-117.374599, 50.380122], [-117.369268, 50.382331], [-117.366046, 50.388526], [-117.360206, 50.391979], [-117.360359, 50.393215], [-117.358953, 50.396321], [-117.361479, 50.399725], [-117.363103, 50.405588], [-117.364901, 50.40689], [-117.374413, 50.407547], [-117.377167, 50.408078], [-117.379641, 50.411198], [-117.381957, 50.412274], [-117.395855, 50.419325], [-117.403001, 50.419429], [-117.406268, 50.420928], [-117.412605, 50.424833], [-117.414556, 50.425155], [-117.415959, 50.422042], [-117.420174, 50.421151], [-117.429296, 50.421612], [-117.431148, 50.422388], [-117.436132, 50.422652], [-117.438193, 50.42354], [-117.444113, 50.423805], [-117.445321, 50.424414], [-117.454142, 50.425424], [-117.456139, 50.426415], [-117.462471, 50.428699], [-117.46635, 50.43131], [-117.467008, 50.434498], [-117.472601, 50.436471], [-117.474861, 50.436452], [-117.479464, 50.440145], [-117.487711, 50.445488], [-117.489059, 50.448106], [-117.492268, 50.449108], [-117.495558, 50.450429], [-117.499303, 50.456231], [-117.499742, 50.457145], [-117.504787, 50.459873], [-117.507854, 50.460416], [-117.510899, 50.461195], [-117.514202, 50.463971], [-117.517004, 50.468148], [-117.521484, 50.470661], [-117.523331, 50.473145], [-117.527985, 50.475783], [-117.537014, 50.480101], [-117.546002, 50.483282], [-117.550225, 50.484198], [-117.545484, 50.489741], [-117.549423, 50.496941], [-117.555758, 50.499926], [-117.558806, 50.502312], [-117.564274, 50.50266], [-117.570982, 50.504853], [-117.57347, 50.502909], [-117.576847, 50.502562], [-117.58201, 50.502992], [-117.585277, 50.504226], [-117.587022, 50.507888], [-117.59016, 50.510135], [-117.592863, 50.51388], [-117.596154, 50.516085], [-117.597725, 50.51922], [-117.605442, 50.523436], [-117.608089, 50.53191], [-117.611996, 50.537167], [-117.615863, 50.5437], [-117.622274, 50.544765], [-117.637696, 50.548601], [-117.641667, 50.544293], [-117.644786, 50.541944], [-117.645464, 50.539457], [-117.644574, 50.537054], [-117.644728, 50.535401], [-117.648741, 50.532232], [-117.656091, 50.534822], [-117.662086, 50.533525], [-117.666359, 50.53316], [-117.671111, 50.532434], [-117.673772, 50.53343], [-117.676467, 50.538214], [-117.682857, 50.539109], [-117.687283, 50.538701], [-117.689225, 50.539435], [-117.691651, 50.541416], [-117.694257, 50.545131], [-117.703248, 50.547729], [-117.717362, 50.548806], [-117.72336, 50.549116], [-117.730211, 50.549883], [-117.734053, 50.551014], [-117.740674, 50.554376], [-117.74685, 50.555212], [-117.753392, 50.55445], [-117.758274, 50.553109], [-117.762936, 50.550906], [-117.793209, 50.55058], [-117.800117, 50.549023], [-117.805104, 50.547304], [-117.818364, 50.541001], [-117.849891, 50.542387], [-117.856983, 50.527858], [-117.893999, 50.528249], [-117.902865, 50.528231], [-117.902685, 50.529379], [-117.902013, 50.53164], [-117.901808, 50.533191], [-117.909082, 50.533057], [-117.926104, 50.530616], [-117.952049, 50.531947], [-117.977926, 50.532846], [-117.979434, 50.535461], [-117.979076, 50.537563], [-117.979432, 50.538735], [-117.984781, 50.538527], [-117.98868, 50.541363], [-117.994343, 50.548101], [-118.000918, 50.584358], [-118.007655, 50.609068], [-118.00511, 50.629691], [-118.006808, 50.639051], [-118.01128, 50.644469], [-118.013819, 50.65312], [-118.017526, 50.65464], [-118.039337, 50.663284], [-118.055379, 50.663511], [-118.06838, 50.666543], [-118.071643, 50.678198], [-118.069605, 50.688392], [-118.076602, 50.693254], [-118.10192, 50.687755], [-118.123266, 50.681227], [-118.128704, 50.680931]], [[-117.81972, 50.273474], [-117.817353, 50.274609], [-117.808676, 50.266119], [-117.801687, 50.266097], [-117.791404, 50.266539], [-117.79084, 50.262785], [-117.791972, 50.262142], [-117.792704, 50.261172], [-117.793717, 50.260129], [-117.797152, 50.259045], [-117.799132, 50.25766], [-117.800689, 50.257614], [-117.800958, 50.257539], [-117.801197, 50.256948], [-117.80098, 50.256174], [-117.80115, 50.25539], [-117.801779, 50.255038], [-117.802312, 50.248996], [-117.801643, 50.248544], [-117.800864, 50.247456], [-117.800466, 50.247082], [-117.799448, 50.246405], [-117.798368, 50.245984], [-117.796092, 50.245372], [-117.795181, 50.244914], [-117.794625, 50.244378], [-117.79356, 50.24287], [-117.793352, 50.242969], [-117.793262, 50.243116], [-117.793232, 50.243591], [-117.792564, 50.243985], [-117.792101, 50.244733], [-117.791715, 50.244945], [-117.791481, 50.244999], [-117.790363, 50.245007], [-117.790404, 50.246553], [-117.783872, 50.246354], [-117.783859, 50.245459], [-117.77891, 50.245341], [-117.778903, 50.246476], [-117.776666, 50.246414], [-117.776345, 50.245522], [-117.772634, 50.245298], [-117.769516, 50.243853], [-117.769082, 50.243852], [-117.76877, 50.243241], [-117.768191, 50.243263], [-117.770622, 50.239705], [-117.769436, 50.239816], [-117.771767, 50.236021], [-117.770861, 50.236021], [-117.770757, 50.23536], [-117.772024, 50.234961], [-117.773236, 50.2342], [-117.777165, 50.230648], [-117.77934, 50.229192], [-117.779537, 50.23166], [-117.783123, 50.231541], [-117.783133, 50.232413], [-117.787944, 50.232414], [-117.788331, 50.231698], [-117.789356, 50.228807], [-117.793343, 50.228745], [-117.793948, 50.229332], [-117.793825, 50.229992], [-117.794841, 50.232757], [-117.794331, 50.233264], [-117.794591, 50.23362], [-117.796549, 50.234579], [-117.797409, 50.235448], [-117.800723, 50.23653], [-117.802631, 50.236229], [-117.804665, 50.23618], [-117.80778, 50.236523], [-117.810946, 50.238204], [-117.814184, 50.239664], [-117.816452, 50.242225], [-117.817327, 50.24354], [-117.818583, 50.244098], [-117.819137, 50.244277], [-117.820915, 50.24442], [-117.823344, 50.245432], [-117.825617, 50.247752], [-117.826482, 50.249664], [-117.824837, 50.251503], [-117.824635, 50.252667], [-117.82352, 50.254041], [-117.821048, 50.255566], [-117.82077, 50.257608], [-117.823106, 50.261646], [-117.823429, 50.263087], [-117.822935, 50.265284], [-117.822281, 50.265381], [-117.819587, 50.26676], [-117.812466, 50.266598], [-117.81972, 50.273474]], [[-117.691785, 50.298089], [-117.686272, 50.298319], [-117.686203, 50.298981], [-117.682854, 50.299045], [-117.682597, 50.296509], [-117.68344, 50.296561], [-117.683723, 50.296497], [-117.684042, 50.296199], [-117.685062, 50.295923], [-117.686584, 50.295257], [-117.687477, 50.294958], [-117.688081, 50.295012], [-117.689867, 50.295483], [-117.690835, 50.295427], [-117.691405, 50.294859], [-117.692066, 50.294712], [-117.692573, 50.29488], [-117.693039, 50.295111], [-117.69429, 50.295202], [-117.694209, 50.295464], [-117.694255, 50.295652], [-117.694824, 50.296269], [-117.694846, 50.296673], [-117.694694, 50.296854], [-117.694456, 50.296982], [-117.69373, 50.297184], [-117.691785, 50.298089]]]]}, "properties": {"name": "Central Kootenay K", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Central Kootenay K", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903060", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.5685, 49.101158], [-116.56898, 49.101177], [-116.569158, 49.101296], [-116.569252, 49.101593], [-116.569222, 49.101808], [-116.568593, 49.102664], [-116.569193, 49.102696], [-116.606831, 49.102654], [-116.606813, 49.088184], [-116.60868, 49.088174], [-116.608455, 49.088043], [-116.607283, 49.08686], [-116.605659, 49.086043], [-116.605711, 49.088185], [-116.575722, 49.088199], [-116.57419, 49.088246], [-116.573417, 49.088935], [-116.572308, 49.089597], [-116.570598, 49.09037], [-116.568738, 49.090396], [-116.567682, 49.090022], [-116.565622, 49.088806], [-116.565265, 49.088747], [-116.564417, 49.08916], [-116.561522, 49.088964], [-116.562089, 49.089551], [-116.562018, 49.090744], [-116.561409, 49.091345], [-116.560362, 49.091961], [-116.559714, 49.092444], [-116.559532, 49.092974], [-116.558896, 49.093575], [-116.557728, 49.094038], [-116.557056, 49.094197], [-116.55564, 49.094804], [-116.555418, 49.094992], [-116.555252, 49.095251], [-116.555234, 49.095764], [-116.555313, 49.096089], [-116.556114, 49.096929], [-116.557092, 49.097697], [-116.557514, 49.098194], [-116.557701, 49.098661], [-116.557736, 49.099453], [-116.557988, 49.100255], [-116.558447, 49.101058], [-116.559206, 49.101897], [-116.560253, 49.102791], [-116.560909, 49.103055], [-116.562619, 49.103304], [-116.564867, 49.103204], [-116.56561, 49.102911], [-116.567279, 49.101612], [-116.568158, 49.101202], [-116.5685, 49.101158]]]]}, "properties": {"name": "Lower Kootenay 1C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Lower Kootenay 1C", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903805", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.579174, 49.165821], [-116.579161, 49.16592], [-116.579393, 49.175752], [-116.587788, 49.175767], [-116.587631, 49.178188], [-116.587662, 49.180931], [-116.5878, 49.183008], [-116.589959, 49.183006], [-116.590579, 49.180401], [-116.593358, 49.17861], [-116.593347, 49.175094], [-116.591638, 49.174806], [-116.589711, 49.174142], [-116.589223, 49.172805], [-116.589821, 49.17126], [-116.591429, 49.169635], [-116.592433, 49.168898], [-116.597647, 49.165798], [-116.60003, 49.163741], [-116.601759, 49.161601], [-116.602873, 49.159473], [-116.603631, 49.156916], [-116.596058, 49.15694], [-116.597752, 49.160552], [-116.585171, 49.160566], [-116.585032, 49.160849], [-116.584814, 49.162324], [-116.584563, 49.162827], [-116.584396, 49.162979], [-116.583942, 49.163266], [-116.582538, 49.1638], [-116.581973, 49.164076], [-116.579174, 49.165821]]]]}, "properties": {"name": "Lower Kootenay 5", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Lower Kootenay 5", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903806", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.502433, 49.05695], [-116.510781, 49.056942], [-116.510936, 49.0656], [-116.51116, 49.065765], [-116.511232, 49.065902], [-116.511286, 49.068945], [-116.511367, 49.069127], [-116.511681, 49.069349], [-116.512766, 49.069395], [-116.513064, 49.069464], [-116.513357, 49.069666], [-116.522389, 49.069338], [-116.522443, 49.069501], [-116.524501, 49.069489], [-116.562449, 49.069974], [-116.561611, 49.068559], [-116.561343, 49.067748], [-116.561173, 49.066921], [-116.5611, 49.065832], [-116.560858, 49.065192], [-116.560657, 49.064967], [-116.559799, 49.06436], [-116.559171, 49.06407], [-116.557532, 49.063687], [-116.556616, 49.063601], [-116.554794, 49.063694], [-116.550578, 49.063776], [-116.547809, 49.063981], [-116.547275, 49.06407], [-116.545042, 49.064159], [-116.544634, 49.064122], [-116.542337, 49.063808], [-116.542078, 49.06368], [-116.541518, 49.063524], [-116.540725, 49.063432], [-116.539729, 49.062969], [-116.538726, 49.062012], [-116.538459, 49.061218], [-116.538476, 49.060841], [-116.538948, 49.060186], [-116.539328, 49.059018], [-116.540427, 49.057071], [-116.541772, 49.055233], [-116.542339, 49.05464], [-116.543158, 49.053384], [-116.544653, 49.051618], [-116.546309, 49.049925], [-116.547412, 49.048912], [-116.54754, 49.048553], [-116.547775, 49.048248], [-116.548069, 49.047431], [-116.547909, 49.047043], [-116.54749, 49.046638], [-116.54651, 49.046066], [-116.546114, 49.045957], [-116.545746, 49.045757], [-116.543684, 49.045282], [-116.543096, 49.045198], [-116.541964, 49.044897], [-116.54117, 49.044822], [-116.540459, 49.044656], [-116.539968, 49.044601], [-116.538148, 49.044504], [-116.534917, 49.044627], [-116.533684, 49.044936], [-116.532958, 49.045041], [-116.532146, 49.04538], [-116.531544, 49.045475], [-116.531225, 49.045834], [-116.530662, 49.046111], [-116.530087, 49.046072], [-116.529841, 49.046108], [-116.529417, 49.046052], [-116.529401, 49.046232], [-116.529016, 49.046383], [-116.528658, 49.046679], [-116.528188, 49.04727], [-116.527676, 49.047691], [-116.527265, 49.047905], [-116.526468, 49.048109], [-116.52588, 49.048179], [-116.525511, 49.048123], [-116.525253, 49.047951], [-116.525006, 49.047941], [-116.524718, 49.048003], [-116.524461, 49.047795], [-116.524255, 49.047794], [-116.524174, 49.047713], [-116.524109, 49.047344], [-116.524014, 49.047263], [-116.52359, 49.047116], [-116.523443, 49.046864], [-116.522802, 49.046538], [-116.522723, 49.046196], [-116.522463, 49.046222], [-116.522339, 49.046481], [-116.522106, 49.046247], [-116.522016, 49.045841], [-116.522012, 49.044816], [-116.521128, 49.042771], [-116.52097, 49.042194], [-116.519894, 49.040166], [-116.519529, 49.039759], [-116.519407, 49.039498], [-116.519014, 49.039163], [-116.518691, 49.038749], [-116.518365, 49.038513], [-116.518242, 49.038296], [-116.517455, 49.037672], [-116.517145, 49.037293], [-116.517087, 49.036249], [-116.517157, 49.036158], [-116.514418, 49.036843], [-116.512945, 49.036976], [-116.511432, 49.036972], [-116.511986, 49.052975], [-116.502375, 49.052874], [-116.502433, 49.05695]]]]}, "properties": {"name": "Creston 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Creston 1", "economic_region_id": "5940", "census_division_code": "5903", "census_subdivision_code": "5903807", "regional_district_aka_census_division": "Central Kootenay"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.540046, 49.121711], [-117.543648, 49.124408], [-117.546112, 49.123831], [-117.544864, 49.120268], [-117.546441, 49.120317], [-117.547692, 49.120471], [-117.549519, 49.120432], [-117.554496, 49.11798], [-117.556512, 49.116927], [-117.557591, 49.116099], [-117.554795, 49.114206], [-117.554954, 49.114003], [-117.554737, 49.113838], [-117.557681, 49.11074], [-117.559998, 49.106148], [-117.560331, 49.106928], [-117.56146, 49.106728], [-117.567043, 49.099797], [-117.563859, 49.098256], [-117.564402, 49.097684], [-117.562354, 49.097208], [-117.561275, 49.09841], [-117.560313, 49.09925], [-117.56015, 49.099766], [-117.559898, 49.100098], [-117.557372, 49.102414], [-117.555894, 49.102086], [-117.554152, 49.101495], [-117.55377, 49.101522], [-117.552667, 49.101065], [-117.550936, 49.102963], [-117.550586, 49.104303], [-117.55026, 49.104315], [-117.549421, 49.104579], [-117.549133, 49.104975], [-117.549994, 49.105526], [-117.549512, 49.105977], [-117.545285, 49.104262], [-117.539486, 49.110295], [-117.542281, 49.112745], [-117.536991, 49.115281], [-117.539034, 49.116637], [-117.538741, 49.117268], [-117.53848, 49.117413], [-117.538332, 49.117584], [-117.538419, 49.118026], [-117.538326, 49.118259], [-117.538438, 49.11844], [-117.538737, 49.11828], [-117.539147, 49.118573], [-117.541162, 49.117566], [-117.541692, 49.118154], [-117.541177, 49.118368], [-117.541745, 49.118973], [-117.541529, 49.119105], [-117.54043, 49.11801], [-117.539513, 49.118481], [-117.540122, 49.119001], [-117.539444, 49.119329], [-117.541694, 49.120911], [-117.540046, 49.121711]]]]}, "properties": {"name": "Fruitvale", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Fruitvale", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905005", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.583271, 49.081498], [-117.58335, 49.084338], [-117.5942, 49.084606], [-117.594177, 49.080196], [-117.595746, 49.079657], [-117.596718, 49.079023], [-117.598225, 49.076815], [-117.598907, 49.076007], [-117.599692, 49.075788], [-117.600257, 49.075866], [-117.600883, 49.075398], [-117.601637, 49.076131], [-117.601966, 49.075775], [-117.60337, 49.075855], [-117.604607, 49.074748], [-117.604311, 49.073806], [-117.602501, 49.072842], [-117.602102, 49.072513], [-117.599921, 49.072418], [-117.598089, 49.073381], [-117.594275, 49.073862], [-117.598093, 49.070126], [-117.597991, 49.070118], [-117.597665, 49.070201], [-117.597164, 49.070618], [-117.596002, 49.070857], [-117.595757, 49.071029], [-117.595696, 49.071534], [-117.595317, 49.071868], [-117.594548, 49.071854], [-117.594, 49.071696], [-117.593465, 49.071618], [-117.592281, 49.072234], [-117.5922, 49.072317], [-117.592122, 49.072694], [-117.591945, 49.072813], [-117.590986, 49.072719], [-117.590221, 49.072867], [-117.589948, 49.072948], [-117.589393, 49.0735], [-117.589052, 49.073646], [-117.588792, 49.073666], [-117.588105, 49.073416], [-117.587379, 49.073321], [-117.586845, 49.073478], [-117.58662, 49.07399], [-117.585951, 49.074264], [-117.585686, 49.074895], [-117.585194, 49.075077], [-117.584722, 49.075638], [-117.584435, 49.075721], [-117.584064, 49.075687], [-117.58333, 49.07605], [-117.582633, 49.076224], [-117.581857, 49.076498], [-117.581816, 49.076597], [-117.581872, 49.076651], [-117.582216, 49.076837], [-117.582163, 49.077035], [-117.581906, 49.077154], [-117.581467, 49.077229], [-117.581131, 49.077589], [-117.580761, 49.077726], [-117.580479, 49.078123], [-117.580278, 49.078152], [-117.582194, 49.074844], [-117.580147, 49.075971], [-117.578983, 49.077209], [-117.577738, 49.0778], [-117.583271, 49.081498]]]]}, "properties": {"name": "Montrose", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Montrose", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905009", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.711429, 49.132028], [-117.723789, 49.131968], [-117.724049, 49.146526], [-117.734475, 49.146555], [-117.735394, 49.144886], [-117.737161, 49.140642], [-117.736427, 49.136059], [-117.736561, 49.133915], [-117.73595, 49.128962], [-117.735915, 49.123634], [-117.733135, 49.119848], [-117.728831, 49.117869], [-117.730667, 49.117714], [-117.733332, 49.117603], [-117.735884, 49.118615], [-117.736685, 49.119082], [-117.739634, 49.12151], [-117.741938, 49.12051], [-117.741278, 49.119811], [-117.748422, 49.119985], [-117.748395, 49.114855], [-117.748292, 49.114571], [-117.748254, 49.113824], [-117.748388, 49.113468], [-117.748384, 49.112788], [-117.748854, 49.112871], [-117.748909, 49.11274], [-117.74885, 49.112471], [-117.748153, 49.111815], [-117.747531, 49.098849], [-117.745422, 49.098697], [-117.745325, 49.098161], [-117.744683, 49.096468], [-117.743513, 49.096855], [-117.741632, 49.097079], [-117.740898, 49.09698], [-117.74029, 49.096737], [-117.739936, 49.096296], [-117.739939, 49.095736], [-117.740668, 49.094897], [-117.740227, 49.094945], [-117.739496, 49.095037], [-117.739028, 49.095165], [-117.73834, 49.095501], [-117.738555, 49.09558], [-117.738031, 49.0961], [-117.737647, 49.096707], [-117.737693, 49.09698], [-117.737845, 49.097205], [-117.738323, 49.097462], [-117.737927, 49.097929], [-117.737508, 49.098117], [-117.736999, 49.097788], [-117.736485, 49.098324], [-117.735719, 49.098644], [-117.734663, 49.09881], [-117.733491, 49.098757], [-117.733751, 49.098554], [-117.733351, 49.098493], [-117.732929, 49.09871], [-117.731865, 49.098525], [-117.731205, 49.098796], [-117.73092, 49.098773], [-117.730772, 49.098322], [-117.730279, 49.098927], [-117.728825, 49.10114], [-117.728747, 49.100864], [-117.72893, 49.09776], [-117.728554, 49.096845], [-117.728573, 49.096486], [-117.729617, 49.09606], [-117.729548, 49.095951], [-117.73225, 49.095041], [-117.732537, 49.093433], [-117.735774, 49.091565], [-117.736235, 49.093746], [-117.741816, 49.091782], [-117.743081, 49.090925], [-117.743806, 49.090527], [-117.743876, 49.088024], [-117.747832, 49.088058], [-117.747826, 49.087217], [-117.748458, 49.087225], [-117.748378, 49.086847], [-117.747656, 49.086122], [-117.747732, 49.081188], [-117.7592, 49.081146], [-117.759241, 49.059103], [-117.737273, 49.058919], [-117.737106, 49.044314], [-117.725961, 49.044267], [-117.725757, 49.029898], [-117.711854, 49.029799], [-117.711889, 49.028058], [-117.708, 49.02807], [-117.707901, 49.029703], [-117.704293, 49.029699], [-117.704308, 49.033291], [-117.709766, 49.033418], [-117.709943, 49.044093], [-117.715213, 49.044081], [-117.71537, 49.087694], [-117.718204, 49.08773], [-117.718209, 49.088759], [-117.71091, 49.088491], [-117.694198, 49.088923], [-117.693957, 49.093035], [-117.694072, 49.093641], [-117.694321, 49.09431], [-117.685465, 49.095353], [-117.676376, 49.095199], [-117.670304, 49.094943], [-117.663743, 49.095363], [-117.655033, 49.095759], [-117.651545, 49.095104], [-117.649632, 49.093946], [-117.64845, 49.092071], [-117.646661, 49.090868], [-117.64232, 49.089159], [-117.639376, 49.087921], [-117.631693, 49.085959], [-117.628475, 49.085233], [-117.62544, 49.084085], [-117.621701, 49.082113], [-117.617622, 49.079469], [-117.614923, 49.076995], [-117.61324, 49.074541], [-117.612905, 49.073574], [-117.611266, 49.074992], [-117.611179, 49.075683], [-117.610543, 49.077068], [-117.608361, 49.077068], [-117.610222, 49.078079], [-117.610917, 49.078569], [-117.611328, 49.078944], [-117.61211, 49.078949], [-117.612308, 49.080172], [-117.612971, 49.088257], [-117.617974, 49.088209], [-117.618531, 49.092204], [-117.631128, 49.092238], [-117.631375, 49.096065], [-117.641605, 49.095763], [-117.641794, 49.103439], [-117.668239, 49.103271], [-117.67119, 49.103374], [-117.671535, 49.110869], [-117.679298, 49.110994], [-117.683974, 49.111008], [-117.699237, 49.110292], [-117.70435, 49.110232], [-117.70412, 49.10525], [-117.706844, 49.106204], [-117.708969, 49.107776], [-117.710137, 49.109037], [-117.710801, 49.110807], [-117.711204, 49.121169], [-117.711429, 49.132028]]]]}, "properties": {"name": "Trail", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Trail", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905014", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.745325, 49.098161], [-117.745422, 49.098697], [-117.747531, 49.098849], [-117.747708, 49.102252], [-117.757839, 49.097869], [-117.762107, 49.095169], [-117.755035, 49.09058], [-117.75467, 49.090061], [-117.754802, 49.089474], [-117.75464, 49.08783], [-117.753455, 49.087793], [-117.752018, 49.088003], [-117.749912, 49.088148], [-117.749413, 49.087999], [-117.747832, 49.088058], [-117.743876, 49.088024], [-117.743806, 49.090527], [-117.743081, 49.090925], [-117.741816, 49.091782], [-117.736235, 49.093746], [-117.735774, 49.091565], [-117.732537, 49.093433], [-117.73225, 49.095041], [-117.729548, 49.095951], [-117.729617, 49.09606], [-117.728573, 49.096486], [-117.728554, 49.096845], [-117.72893, 49.09776], [-117.728747, 49.100864], [-117.728825, 49.10114], [-117.730279, 49.098927], [-117.730772, 49.098322], [-117.73092, 49.098773], [-117.731205, 49.098796], [-117.731865, 49.098525], [-117.732929, 49.09871], [-117.733351, 49.098493], [-117.733751, 49.098554], [-117.733491, 49.098757], [-117.734663, 49.09881], [-117.735719, 49.098644], [-117.736485, 49.098324], [-117.736999, 49.097788], [-117.737508, 49.098117], [-117.737927, 49.097929], [-117.738323, 49.097462], [-117.737845, 49.097205], [-117.737693, 49.09698], [-117.737647, 49.096707], [-117.738031, 49.0961], [-117.738555, 49.09558], [-117.73834, 49.095501], [-117.739028, 49.095165], [-117.739496, 49.095037], [-117.740668, 49.094897], [-117.739939, 49.095736], [-117.739936, 49.096296], [-117.74029, 49.096737], [-117.740898, 49.09698], [-117.741632, 49.097079], [-117.742254, 49.097012], [-117.743513, 49.096855], [-117.744683, 49.096468], [-117.745325, 49.098161]]]]}, "properties": {"name": "Warfield", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Warfield", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905018", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.806795, 49.123238], [-117.813531, 49.123482], [-117.815203, 49.124512], [-117.817682, 49.127891], [-117.823324, 49.135996], [-117.825049, 49.138085], [-117.827775, 49.140034], [-117.830306, 49.141036], [-117.83426, 49.141707], [-117.837535, 49.145291], [-117.837368, 49.152861], [-117.833802, 49.155991], [-117.833186, 49.158817], [-117.833951, 49.161753], [-117.83768, 49.164707], [-117.842881, 49.165599], [-117.847251, 49.166725], [-117.849375, 49.167889], [-117.849756, 49.169415], [-117.853887, 49.177387], [-117.856072, 49.179606], [-117.857207, 49.180937], [-117.861067, 49.183509], [-117.86434, 49.184739], [-117.866923, 49.186092], [-117.895488, 49.186162], [-117.895071, 49.161831], [-117.882043, 49.096514], [-117.86111, 49.087775], [-117.860882, 49.087776], [-117.842182, 49.080073], [-117.835771, 49.080616], [-117.835176, 49.079729], [-117.834925, 49.080276], [-117.834019, 49.081239], [-117.83382, 49.081949], [-117.833633, 49.08219], [-117.833208, 49.082469], [-117.833004, 49.082495], [-117.832809, 49.082455], [-117.832599, 49.08228], [-117.832291, 49.081716], [-117.832082, 49.080947], [-117.831693, 49.080639], [-117.83124, 49.080021], [-117.83068, 49.079058], [-117.830484, 49.078853], [-117.830184, 49.078697], [-117.828798, 49.078321], [-117.827379, 49.077678], [-117.826976, 49.077648], [-117.826588, 49.077755], [-117.826295, 49.077914], [-117.825988, 49.07751], [-117.825485, 49.077752], [-117.824583, 49.077224], [-117.82568, 49.066375], [-117.808333, 49.066833], [-117.803839, 49.066236], [-117.799758, 49.066385], [-117.799802, 49.064261], [-117.796869, 49.064389], [-117.796602, 49.064052], [-117.796194, 49.064669], [-117.789582, 49.063271], [-117.79042, 49.061541], [-117.788783, 49.061527], [-117.788867, 49.060773], [-117.782176, 49.061007], [-117.78127, 49.06305], [-117.769779, 49.063774], [-117.769574, 49.067532], [-117.77757, 49.067034], [-117.77757, 49.068414], [-117.772902, 49.07173], [-117.772134, 49.071771], [-117.771464, 49.072271], [-117.770574, 49.073156], [-117.768959, 49.075908], [-117.768659, 49.080531], [-117.771091, 49.080565], [-117.771523, 49.08012], [-117.772165, 49.079643], [-117.775278, 49.077882], [-117.775771, 49.07772], [-117.777814, 49.0774], [-117.778552, 49.077157], [-117.77903, 49.076907], [-117.779397, 49.076636], [-117.780178, 49.075749], [-117.780755, 49.075419], [-117.780816, 49.076032], [-117.78078, 49.080781], [-117.777927, 49.080806], [-117.778095, 49.083813], [-117.779306, 49.083778], [-117.779601, 49.083644], [-117.78078, 49.084633], [-117.781028, 49.087926], [-117.789294, 49.088115], [-117.799585, 49.087897], [-117.803572, 49.087935], [-117.803441, 49.095334], [-117.8039, 49.097695], [-117.805619, 49.100327], [-117.805107, 49.102671], [-117.809687, 49.102195], [-117.809424, 49.103131], [-117.811704, 49.102995], [-117.811608, 49.10604], [-117.815229, 49.106002], [-117.815285, 49.106648], [-117.816213, 49.106889], [-117.816644, 49.10689], [-117.817113, 49.106825], [-117.817566, 49.10666], [-117.817833, 49.106449], [-117.818075, 49.106018], [-117.818249, 49.105889], [-117.819102, 49.106399], [-117.819348, 49.106608], [-117.819698, 49.107146], [-117.819749, 49.107497], [-117.81961, 49.108088], [-117.818609, 49.109234], [-117.818117, 49.110381], [-117.818319, 49.112662], [-117.824743, 49.112799], [-117.824639, 49.116733], [-117.806889, 49.116693], [-117.806795, 49.123238]]]]}, "properties": {"name": "Rossland", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Rossland", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905023", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.471949, 49.175713], [-117.485577, 49.175528], [-117.493963, 49.175485], [-117.499591, 49.175219], [-117.583942, 49.174753], [-117.600063, 49.17536], [-117.645042, 49.17511], [-117.674276, 49.175039], [-117.674083, 49.207722], [-117.680914, 49.207712], [-117.681556, 49.207773], [-117.683617, 49.208532], [-117.701025, 49.202877], [-117.701463, 49.20269], [-117.703178, 49.201672], [-117.708384, 49.197697], [-117.71096, 49.194178], [-117.713416, 49.189408], [-117.713176, 49.18755], [-117.712585, 49.184643], [-117.714133, 49.180737], [-117.716881, 49.174537], [-117.716434, 49.172577], [-117.719135, 49.167945], [-117.720413, 49.16666], [-117.721513, 49.164899], [-117.721889, 49.162402], [-117.723006, 49.160941], [-117.728868, 49.153749], [-117.730349, 49.151456], [-117.733311, 49.148669], [-117.734475, 49.146555], [-117.724049, 49.146526], [-117.723789, 49.131968], [-117.711429, 49.132028], [-117.711204, 49.121169], [-117.710801, 49.110807], [-117.710137, 49.109037], [-117.708969, 49.107776], [-117.706844, 49.106204], [-117.70412, 49.10525], [-117.70435, 49.110232], [-117.699237, 49.110292], [-117.683974, 49.111008], [-117.679298, 49.110994], [-117.671535, 49.110869], [-117.67119, 49.103374], [-117.668239, 49.103271], [-117.641794, 49.103439], [-117.641605, 49.095763], [-117.631375, 49.096065], [-117.631128, 49.092238], [-117.618531, 49.092204], [-117.617974, 49.088209], [-117.612971, 49.088257], [-117.612308, 49.080172], [-117.61211, 49.078949], [-117.611328, 49.078944], [-117.610917, 49.078569], [-117.610222, 49.078079], [-117.608361, 49.077068], [-117.610543, 49.077068], [-117.611179, 49.075683], [-117.611266, 49.074992], [-117.612905, 49.073574], [-117.612007, 49.070845], [-117.613448, 49.066777], [-117.614018, 49.063862], [-117.615209, 49.06143], [-117.616445, 49.057589], [-117.616255, 49.056227], [-117.614772, 49.05243], [-117.614032, 49.049305], [-117.613534, 49.046475], [-117.613657, 49.04347], [-117.614845, 49.039992], [-117.616399, 49.036185], [-117.615242, 49.034128], [-117.608166, 49.030733], [-117.605168, 49.028003], [-117.603789, 49.022727], [-117.605019, 49.01948], [-117.607199, 49.015255], [-117.611837, 49.01215], [-117.619621, 49.007793], [-117.626076, 49.004726], [-117.630684, 49.002277], [-117.631992, 49.000815], [-117.490121, 49.000659], [-117.469654, 49.000664], [-117.469336, 49.004015], [-117.468578, 49.023139], [-117.467486, 49.03631], [-117.468153, 49.046323], [-117.466218, 49.050454], [-117.46694, 49.053701], [-117.467062, 49.055867], [-117.466627, 49.061139], [-117.465432, 49.088164], [-117.516204, 49.088071], [-117.517111, 49.123635], [-117.510822, 49.123579], [-117.510797, 49.13884], [-117.506041, 49.138816], [-117.505799, 49.157747], [-117.500449, 49.158009], [-117.500454, 49.160356], [-117.495354, 49.160453], [-117.494928, 49.16386], [-117.483856, 49.16441], [-117.484236, 49.170881], [-117.472116, 49.171243], [-117.471949, 49.175713]], [[-117.546112, 49.123831], [-117.543648, 49.124408], [-117.540046, 49.121711], [-117.541694, 49.120911], [-117.539444, 49.119329], [-117.540122, 49.119001], [-117.539513, 49.118481], [-117.54043, 49.11801], [-117.541529, 49.119105], [-117.541745, 49.118973], [-117.541177, 49.118368], [-117.541692, 49.118154], [-117.541162, 49.117566], [-117.539147, 49.118573], [-117.538737, 49.11828], [-117.538438, 49.11844], [-117.538326, 49.118259], [-117.538419, 49.118026], [-117.538332, 49.117584], [-117.53848, 49.117413], [-117.538741, 49.117268], [-117.539034, 49.116637], [-117.536991, 49.115281], [-117.542281, 49.112745], [-117.539486, 49.110295], [-117.545285, 49.104262], [-117.549512, 49.105977], [-117.549994, 49.105526], [-117.549133, 49.104975], [-117.549421, 49.104579], [-117.55026, 49.104315], [-117.550586, 49.104303], [-117.550936, 49.102963], [-117.552667, 49.101065], [-117.55377, 49.101522], [-117.554152, 49.101495], [-117.555894, 49.102086], [-117.557372, 49.102414], [-117.559898, 49.100098], [-117.56015, 49.099766], [-117.560313, 49.09925], [-117.561275, 49.09841], [-117.562354, 49.097208], [-117.564402, 49.097684], [-117.563859, 49.098256], [-117.567043, 49.099797], [-117.56146, 49.106728], [-117.560331, 49.106928], [-117.559998, 49.106148], [-117.557681, 49.11074], [-117.554737, 49.113838], [-117.554954, 49.114003], [-117.554795, 49.114206], [-117.557591, 49.116099], [-117.556512, 49.116927], [-117.554496, 49.11798], [-117.549519, 49.120432], [-117.547692, 49.120471], [-117.546441, 49.120317], [-117.544864, 49.120268], [-117.546112, 49.123831]], [[-117.5942, 49.084606], [-117.58335, 49.084338], [-117.583271, 49.081498], [-117.577738, 49.0778], [-117.578983, 49.077209], [-117.580147, 49.075971], [-117.582194, 49.074844], [-117.580278, 49.078152], [-117.580479, 49.078123], [-117.580653, 49.077826], [-117.580761, 49.077726], [-117.581131, 49.077589], [-117.581345, 49.077302], [-117.581467, 49.077229], [-117.582054, 49.077108], [-117.582163, 49.077035], [-117.582216, 49.076837], [-117.581872, 49.076651], [-117.581816, 49.076597], [-117.581857, 49.076498], [-117.582633, 49.076224], [-117.58333, 49.07605], [-117.584064, 49.075687], [-117.584435, 49.075721], [-117.584722, 49.075638], [-117.585194, 49.075077], [-117.585686, 49.074895], [-117.585951, 49.074264], [-117.58662, 49.07399], [-117.586845, 49.073478], [-117.587379, 49.073321], [-117.588105, 49.073416], [-117.588792, 49.073666], [-117.589052, 49.073646], [-117.589393, 49.0735], [-117.589948, 49.072948], [-117.590221, 49.072867], [-117.590986, 49.072719], [-117.591945, 49.072813], [-117.592122, 49.072694], [-117.5922, 49.072317], [-117.592281, 49.072234], [-117.593465, 49.071618], [-117.594, 49.071696], [-117.594548, 49.071854], [-117.595317, 49.071868], [-117.595696, 49.071534], [-117.595757, 49.071029], [-117.596002, 49.070857], [-117.597164, 49.070618], [-117.597665, 49.070201], [-117.598093, 49.070126], [-117.594275, 49.073862], [-117.598089, 49.073381], [-117.599921, 49.072418], [-117.602102, 49.072513], [-117.602501, 49.072842], [-117.604311, 49.073806], [-117.604607, 49.074748], [-117.60337, 49.075855], [-117.601966, 49.075775], [-117.601637, 49.076131], [-117.600883, 49.075398], [-117.600257, 49.075866], [-117.599692, 49.075788], [-117.598907, 49.076007], [-117.598225, 49.076815], [-117.596718, 49.079023], [-117.595746, 49.079657], [-117.594177, 49.080196], [-117.5942, 49.084606]]]]}, "properties": {"name": "Kootenay Boundary A", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kootenay Boundary A", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905026", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.702542, 49.252145], [-117.702878, 49.261559], [-117.703094, 49.26534], [-117.729413, 49.265421], [-117.739955, 49.265391], [-117.751679, 49.265226], [-117.786515, 49.264936], [-117.797294, 49.264893], [-117.847561, 49.265015], [-117.926178, 49.265018], [-117.931347, 49.265304], [-117.938832, 49.264436], [-117.944534, 49.264491], [-117.963845, 49.264225], [-118.005447, 49.263952], [-118.033306, 49.263507], [-118.049951, 49.263497], [-118.123528, 49.263915], [-118.127233, 49.263998], [-118.135815, 49.264001], [-118.134967, 49.262975], [-118.135305, 49.261733], [-118.135587, 49.256782], [-118.135379, 49.254404], [-118.13429, 49.250105], [-118.134393, 49.249497], [-118.133797, 49.247429], [-118.133338, 49.24534], [-118.133147, 49.243486], [-118.133068, 49.242086], [-118.133201, 49.240637], [-118.133973, 49.237025], [-118.13397, 49.233978], [-118.132639, 49.230513], [-118.133096, 49.228898], [-118.132572, 49.226711], [-118.131513, 49.223175], [-118.131116, 49.222808], [-118.12967, 49.221966], [-118.128199, 49.220364], [-118.128, 49.219979], [-118.128113, 49.219439], [-118.127962, 49.218677], [-118.123721, 49.214281], [-118.119472, 49.209362], [-118.117471, 49.206244], [-118.117222, 49.205489], [-118.116743, 49.202284], [-118.116381, 49.201367], [-118.114568, 49.198671], [-118.114226, 49.197412], [-118.113681, 49.196975], [-118.112124, 49.194691], [-118.110522, 49.19101], [-118.109554, 49.189826], [-118.109504, 49.189548], [-118.109767, 49.189132], [-118.111303, 49.188239], [-118.111454, 49.18777], [-118.111299, 49.187161], [-118.110959, 49.186805], [-118.108986, 49.186134], [-118.108608, 49.185887], [-118.107829, 49.185059], [-118.107451, 49.183384], [-118.107242, 49.182793], [-118.106899, 49.182339], [-118.099641, 49.176457], [-118.099213, 49.175923], [-118.098773, 49.174912], [-118.098746, 49.173], [-118.098507, 49.172329], [-118.096937, 49.170225], [-118.095868, 49.168377], [-118.095437, 49.16722], [-118.089153, 49.167184], [-118.089099, 49.152384], [-118.064047, 49.152181], [-118.064246, 49.151994], [-118.046025, 49.15206], [-118.052439, 49.148253], [-118.05758, 49.143945], [-118.056407, 49.143567], [-118.055524, 49.142917], [-118.055288, 49.142141], [-118.055209, 49.141743], [-118.055325, 49.140806], [-118.055294, 49.13937], [-118.055871, 49.138301], [-118.056053, 49.137466], [-118.05579, 49.135675], [-118.054679, 49.133706], [-118.053899, 49.131823], [-118.054468, 49.129492], [-118.054867, 49.127179], [-118.054363, 49.125578], [-118.05289, 49.121667], [-118.051538, 49.117661], [-118.051231, 49.115943], [-118.051872, 49.114554], [-118.053656, 49.112956], [-118.055252, 49.111351], [-118.055951, 49.109494], [-118.0539, 49.106231], [-118.053276, 49.104724], [-118.053632, 49.103598], [-118.054429, 49.102586], [-118.058751, 49.098869], [-118.059051, 49.097518], [-118.058691, 49.095997], [-118.057344, 49.094638], [-118.05555, 49.093707], [-118.054386, 49.093318], [-118.053828, 49.091913], [-118.055074, 49.089778], [-118.056827, 49.088549], [-118.057056, 49.087345], [-118.05711, 49.085351], [-118.055249, 49.081749], [-118.0561, 49.078649], [-118.057686, 49.070432], [-118.056692, 49.063005], [-118.057704, 49.053599], [-118.057145, 49.051639], [-118.056337, 49.050156], [-118.053125, 49.047516], [-118.048333, 49.044935], [-118.048424, 49.042403], [-118.049488, 49.04012], [-118.049205, 49.037036], [-118.049801, 49.03436], [-118.05107, 49.031491], [-118.051811, 49.030652], [-118.054363, 49.030009], [-118.055368, 49.029703], [-118.056254, 49.029342], [-118.056622, 49.028872], [-118.056697, 49.027987], [-118.057231, 49.02634], [-118.05795, 49.025692], [-118.059158, 49.02514], [-118.059582, 49.024723], [-118.059757, 49.024307], [-118.059809, 49.023717], [-118.059313, 49.02191], [-118.057185, 49.018387], [-118.056485, 49.016989], [-118.056959, 49.015646], [-118.059138, 49.014174], [-118.061281, 49.013006], [-118.062677, 49.011793], [-118.063486, 49.010229], [-118.063877, 49.008667], [-118.063889, 49.007879], [-118.063533, 49.006453], [-118.063582, 49.005184], [-118.064098, 49.0039], [-118.064279, 49.002829], [-118.063826, 49.001704], [-118.062139, 49.000346], [-118.062164, 49.000292], [-118.001882, 49.000355], [-117.88608, 49.00051], [-117.804622, 49.000595], [-117.758493, 49.000637], [-117.631992, 49.000815], [-117.630684, 49.002277], [-117.626076, 49.004726], [-117.619621, 49.007793], [-117.611837, 49.01215], [-117.607199, 49.015255], [-117.605019, 49.01948], [-117.603789, 49.022727], [-117.605168, 49.028003], [-117.608166, 49.030733], [-117.615242, 49.034128], [-117.616399, 49.036185], [-117.614845, 49.039992], [-117.613657, 49.04347], [-117.613534, 49.046475], [-117.614032, 49.049305], [-117.614772, 49.05243], [-117.616255, 49.056227], [-117.616445, 49.057589], [-117.615209, 49.06143], [-117.614018, 49.063862], [-117.613448, 49.066777], [-117.612007, 49.070845], [-117.61324, 49.074541], [-117.614923, 49.076995], [-117.617622, 49.079469], [-117.621701, 49.082113], [-117.62544, 49.084085], [-117.628475, 49.085233], [-117.631693, 49.085959], [-117.639376, 49.087921], [-117.64232, 49.089159], [-117.646661, 49.090868], [-117.64845, 49.092071], [-117.649632, 49.093946], [-117.651545, 49.095104], [-117.655033, 49.095759], [-117.663743, 49.095363], [-117.670304, 49.094943], [-117.676376, 49.095199], [-117.685465, 49.095353], [-117.694321, 49.09431], [-117.694072, 49.093641], [-117.693957, 49.093035], [-117.694198, 49.088923], [-117.71091, 49.088491], [-117.718209, 49.088759], [-117.718204, 49.08773], [-117.71537, 49.087694], [-117.715213, 49.044081], [-117.709943, 49.044093], [-117.709766, 49.033418], [-117.704308, 49.033291], [-117.704293, 49.029699], [-117.707901, 49.029703], [-117.708, 49.02807], [-117.711889, 49.028058], [-117.711854, 49.029799], [-117.725757, 49.029898], [-117.725961, 49.044267], [-117.737106, 49.044314], [-117.737273, 49.058919], [-117.759241, 49.059103], [-117.7592, 49.081146], [-117.747732, 49.081188], [-117.747656, 49.086122], [-117.748378, 49.086847], [-117.748458, 49.087225], [-117.747826, 49.087217], [-117.747832, 49.088058], [-117.749413, 49.087999], [-117.749912, 49.088148], [-117.752018, 49.088003], [-117.753455, 49.087793], [-117.75464, 49.08783], [-117.754802, 49.089474], [-117.75467, 49.090061], [-117.755035, 49.09058], [-117.762107, 49.095169], [-117.757839, 49.097869], [-117.747708, 49.102252], [-117.748153, 49.111815], [-117.74885, 49.112471], [-117.748909, 49.11274], [-117.748854, 49.112871], [-117.748384, 49.112788], [-117.748388, 49.113468], [-117.748254, 49.113824], [-117.748292, 49.114571], [-117.748395, 49.114855], [-117.748422, 49.119985], [-117.741278, 49.119811], [-117.741938, 49.12051], [-117.739634, 49.12151], [-117.736685, 49.119082], [-117.735884, 49.118615], [-117.733332, 49.117603], [-117.730667, 49.117714], [-117.728831, 49.117869], [-117.733135, 49.119848], [-117.735915, 49.123634], [-117.73595, 49.128962], [-117.736561, 49.133915], [-117.736427, 49.136059], [-117.737161, 49.140642], [-117.735394, 49.144886], [-117.733311, 49.148669], [-117.730349, 49.151456], [-117.728868, 49.153749], [-117.723006, 49.160941], [-117.721889, 49.162402], [-117.721513, 49.164899], [-117.720413, 49.16666], [-117.719135, 49.167945], [-117.716434, 49.172577], [-117.716881, 49.174537], [-117.714133, 49.180737], [-117.712585, 49.184643], [-117.713176, 49.18755], [-117.713416, 49.189408], [-117.71096, 49.194178], [-117.708384, 49.197697], [-117.703178, 49.201672], [-117.701463, 49.20269], [-117.701025, 49.202877], [-117.683617, 49.208532], [-117.679683, 49.215976], [-117.678451, 49.219706], [-117.676852, 49.222473], [-117.67557, 49.224335], [-117.675345, 49.224539], [-117.677197, 49.224504], [-117.679739, 49.224337], [-117.685847, 49.224619], [-117.68632, 49.228275], [-117.701994, 49.228046], [-117.702542, 49.252145]], [[-117.895071, 49.161831], [-117.895488, 49.186162], [-117.866923, 49.186092], [-117.86434, 49.184739], [-117.861067, 49.183509], [-117.857207, 49.180937], [-117.856072, 49.179606], [-117.853887, 49.177387], [-117.849756, 49.169415], [-117.849375, 49.167889], [-117.847251, 49.166725], [-117.842881, 49.165599], [-117.83768, 49.164707], [-117.833951, 49.161753], [-117.833186, 49.158817], [-117.833802, 49.155991], [-117.837368, 49.152861], [-117.837535, 49.145291], [-117.83426, 49.141707], [-117.830306, 49.141036], [-117.827775, 49.140034], [-117.825049, 49.138085], [-117.823324, 49.135996], [-117.817682, 49.127891], [-117.815203, 49.124512], [-117.813531, 49.123482], [-117.806795, 49.123238], [-117.806889, 49.116693], [-117.824639, 49.116733], [-117.824743, 49.112799], [-117.818319, 49.112662], [-117.818117, 49.110381], [-117.818609, 49.109234], [-117.81961, 49.108088], [-117.819749, 49.107497], [-117.819698, 49.107146], [-117.819348, 49.106608], [-117.819102, 49.106399], [-117.818249, 49.105889], [-117.818075, 49.106018], [-117.817833, 49.106449], [-117.817566, 49.10666], [-117.817113, 49.106825], [-117.816644, 49.10689], [-117.816213, 49.106889], [-117.815285, 49.106648], [-117.815229, 49.106002], [-117.811608, 49.10604], [-117.811704, 49.102995], [-117.809424, 49.103131], [-117.809687, 49.102195], [-117.805107, 49.102671], [-117.805619, 49.100327], [-117.8039, 49.097695], [-117.803441, 49.095334], [-117.803572, 49.087935], [-117.799585, 49.087897], [-117.789294, 49.088115], [-117.781028, 49.087926], [-117.78078, 49.084633], [-117.779601, 49.083644], [-117.779306, 49.083778], [-117.778095, 49.083813], [-117.777927, 49.080806], [-117.78078, 49.080781], [-117.780816, 49.076032], [-117.780755, 49.075419], [-117.780178, 49.075749], [-117.779397, 49.076636], [-117.77903, 49.076907], [-117.778552, 49.077157], [-117.777814, 49.0774], [-117.775771, 49.07772], [-117.775278, 49.077882], [-117.772165, 49.079643], [-117.771523, 49.08012], [-117.771091, 49.080565], [-117.768659, 49.080531], [-117.768959, 49.075908], [-117.770574, 49.073156], [-117.771464, 49.072271], [-117.772134, 49.071771], [-117.772902, 49.07173], [-117.77757, 49.068414], [-117.77757, 49.067034], [-117.769574, 49.067532], [-117.769779, 49.063774], [-117.78127, 49.06305], [-117.782176, 49.061007], [-117.788867, 49.060773], [-117.788783, 49.061527], [-117.79042, 49.061541], [-117.789582, 49.063271], [-117.796194, 49.064669], [-117.796602, 49.064052], [-117.796869, 49.064389], [-117.799802, 49.064261], [-117.799758, 49.066385], [-117.803839, 49.066236], [-117.808333, 49.066833], [-117.82568, 49.066375], [-117.824583, 49.077224], [-117.825485, 49.077752], [-117.825988, 49.07751], [-117.826295, 49.077914], [-117.826588, 49.077755], [-117.826976, 49.077648], [-117.827379, 49.077678], [-117.828798, 49.078321], [-117.830184, 49.078697], [-117.830484, 49.078853], [-117.83068, 49.079058], [-117.83124, 49.080021], [-117.831693, 49.080639], [-117.832082, 49.080947], [-117.832291, 49.081716], [-117.832599, 49.08228], [-117.832809, 49.082455], [-117.833004, 49.082495], [-117.833208, 49.082469], [-117.833633, 49.08219], [-117.83382, 49.081949], [-117.834019, 49.081239], [-117.834925, 49.080276], [-117.835176, 49.079729], [-117.835771, 49.080616], [-117.842182, 49.080073], [-117.860882, 49.087776], [-117.86111, 49.087775], [-117.882043, 49.096514], [-117.895071, 49.161831]]]]}, "properties": {"name": "Kootenay Boundary B / Lower Columbia-Old-Glory", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kootenay Boundary B / Lower Columbia-Old-Glory", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905030", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.451687, 49.05194], [-118.451755, 49.050295], [-118.454746, 49.05094], [-118.455292, 49.049933], [-118.455976, 49.048412], [-118.454956, 49.047563], [-118.454733, 49.047458], [-118.453909, 49.046812], [-118.453659, 49.046716], [-118.453371, 49.046701], [-118.452935, 49.046797], [-118.452239, 49.046824], [-118.451954, 49.046953], [-118.449784, 49.04708], [-118.449331, 49.047049], [-118.449218, 49.046996], [-118.448823, 49.047029], [-118.447739, 49.046889], [-118.447368, 49.046729], [-118.447136, 49.044514], [-118.447174, 49.037525], [-118.448012, 49.03746], [-118.44818, 49.036556], [-118.452792, 49.036597], [-118.457709, 49.037333], [-118.460388, 49.036926], [-118.460515, 49.036714], [-118.460692, 49.036581], [-118.460956, 49.036515], [-118.475042, 49.03655], [-118.474725, 49.022232], [-118.474804, 49.01943], [-118.473378, 49.018544], [-118.471238, 49.017024], [-118.469314, 49.016019], [-118.467574, 49.015443], [-118.466625, 49.015306], [-118.465283, 49.015219], [-118.464018, 49.015479], [-118.463386, 49.015867], [-118.461368, 49.017264], [-118.460578, 49.017692], [-118.45943, 49.018978], [-118.458528, 49.01982], [-118.457535, 49.020491], [-118.456565, 49.020589], [-118.45584, 49.020316], [-118.455659, 49.019819], [-118.456301, 49.017081], [-118.456165, 49.014692], [-118.452591, 49.014611], [-118.444265, 49.014747], [-118.445286, 49.017628], [-118.445201, 49.018807], [-118.443404, 49.018833], [-118.441793, 49.018759], [-118.441594, 49.018837], [-118.441381, 49.019235], [-118.441075, 49.019469], [-118.439897, 49.020142], [-118.439029, 49.020455], [-118.437206, 49.020761], [-118.436376, 49.021055], [-118.435892, 49.021337], [-118.435532, 49.021633], [-118.435339, 49.021841], [-118.435103, 49.022297], [-118.43475, 49.022162], [-118.433594, 49.021437], [-118.433111, 49.021226], [-118.431836, 49.020863], [-118.430573, 49.020789], [-118.430603, 49.016306], [-118.441607, 49.016062], [-118.44161, 49.014721], [-118.419689, 49.01467], [-118.41969, 49.016901], [-118.423097, 49.016962], [-118.423047, 49.01788], [-118.421938, 49.0179], [-118.422206, 49.019289], [-118.423158, 49.019149], [-118.42331, 49.019399], [-118.425272, 49.0202], [-118.425308, 49.020874], [-118.427265, 49.020888], [-118.427052, 49.023961], [-118.424377, 49.02372], [-118.419681, 49.022804], [-118.419583, 49.023357], [-118.419508, 49.029273], [-118.424476, 49.029377], [-118.424582, 49.033207], [-118.424184, 49.036753], [-118.427612, 49.036703], [-118.428545, 49.037763], [-118.428984, 49.037418], [-118.429615, 49.051456], [-118.451687, 49.05194]]]]}, "properties": {"name": "Grand Forks", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Grand Forks", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905032", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.844237, 49.018442], [-118.844183, 49.013565], [-118.844539, 49.011735], [-118.842766, 49.010113], [-118.841382, 49.009235], [-118.839712, 49.0087], [-118.837621, 49.009326], [-118.835843, 49.009379], [-118.833709, 49.009664], [-118.833808, 49.0089], [-118.833739, 49.003093], [-118.850152, 49.003441], [-118.850332, 49.000186], [-118.74993, 49.000189], [-118.750363, 49.007754], [-118.755815, 49.007819], [-118.756396, 49.015245], [-118.772596, 49.015293], [-118.772704, 49.017901], [-118.785952, 49.017811], [-118.785937, 49.018378], [-118.844237, 49.018442]]]]}, "properties": {"name": "Midway", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Midway", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905037", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.683584, 49.108166], [-118.683815, 49.103988], [-118.683694, 49.096102], [-118.683669, 49.084968], [-118.683485, 49.082946], [-118.683557, 49.080251], [-118.683417, 49.080152], [-118.683643, 49.079948], [-118.683416, 49.079614], [-118.67792, 49.079629], [-118.673254, 49.079837], [-118.67354, 49.0883], [-118.673062, 49.090267], [-118.673059, 49.092272], [-118.674226, 49.095264], [-118.673244, 49.096222], [-118.673007, 49.098202], [-118.672984, 49.098856], [-118.673183, 49.10022], [-118.67305, 49.108522], [-118.677964, 49.108438], [-118.678323, 49.108236], [-118.683584, 49.108166]]]]}, "properties": {"name": "Greenwood", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Greenwood", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905042", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.189572, 49.280681], [-118.196992, 49.280233], [-118.19774, 49.285682], [-118.203302, 49.292039], [-118.203901, 49.294009], [-118.207731, 49.294658], [-118.207667, 49.2958], [-118.203742, 49.301445], [-118.2046, 49.30334], [-118.206242, 49.30489], [-118.20776, 49.317291], [-118.209132, 49.326083], [-118.219294, 49.328366], [-118.224369, 49.325154], [-118.23407, 49.321486], [-118.245396, 49.315889], [-118.249752, 49.312329], [-118.253493, 49.305409], [-118.257273, 49.296605], [-118.264674, 49.286536], [-118.272651, 49.28025], [-118.279106, 49.276488], [-118.286069, 49.274445], [-118.29536, 49.271096], [-118.30299, 49.26574], [-118.303522, 49.265277], [-118.304262, 49.258463], [-118.309672, 49.244771], [-118.319215, 49.242112], [-118.318233, 49.233044], [-118.314212, 49.232615], [-118.313377, 49.217245], [-118.335862, 49.217441], [-118.33589, 49.206768], [-118.335825, 49.203289], [-118.339443, 49.20304], [-118.339913, 49.199456], [-118.337134, 49.193223], [-118.346049, 49.188429], [-118.347404, 49.186482], [-118.348448, 49.180578], [-118.348745, 49.175203], [-118.345891, 49.169603], [-118.345395, 49.168488], [-118.351298, 49.155588], [-118.349685, 49.14373], [-118.343557, 49.134909], [-118.335445, 49.127433], [-118.334241, 49.114351], [-118.331704, 49.103495], [-118.332413, 49.101785], [-118.334945, 49.093381], [-118.332771, 49.09016], [-118.33121, 49.086146], [-118.337804, 49.079613], [-118.334879, 49.07065], [-118.32847, 49.055684], [-118.311807, 49.050472], [-118.297393, 49.037863], [-118.298542, 49.033318], [-118.29893, 49.007735], [-118.29893, 49.006047], [-118.297963, 49.005743], [-118.297812, 49.000161], [-118.270034, 49.000152], [-118.244275, 49.000201], [-118.230205, 49.000309], [-118.230078, 49.00018], [-118.22971, 49.000092], [-118.225125, 49.000123], [-118.22464, 49.000172], [-118.154352, 49.00018], [-118.062164, 49.000292], [-118.062139, 49.000346], [-118.063826, 49.001704], [-118.064279, 49.002829], [-118.064098, 49.0039], [-118.063582, 49.005184], [-118.063533, 49.006453], [-118.063889, 49.007879], [-118.063877, 49.008667], [-118.063486, 49.010229], [-118.062677, 49.011793], [-118.061281, 49.013006], [-118.059138, 49.014174], [-118.056959, 49.015646], [-118.056485, 49.016989], [-118.057185, 49.018387], [-118.059313, 49.02191], [-118.059809, 49.023717], [-118.059757, 49.024307], [-118.059582, 49.024723], [-118.059158, 49.02514], [-118.05795, 49.025692], [-118.057231, 49.02634], [-118.056697, 49.027987], [-118.056622, 49.028872], [-118.056254, 49.029342], [-118.055368, 49.029703], [-118.054363, 49.030009], [-118.051811, 49.030652], [-118.05107, 49.031491], [-118.049801, 49.03436], [-118.049205, 49.037036], [-118.049488, 49.04012], [-118.048424, 49.042403], [-118.048333, 49.044935], [-118.053125, 49.047516], [-118.056337, 49.050156], [-118.057145, 49.051639], [-118.057704, 49.053599], [-118.056692, 49.063005], [-118.057686, 49.070432], [-118.0561, 49.078649], [-118.055249, 49.081749], [-118.05711, 49.085351], [-118.057056, 49.087345], [-118.056827, 49.088549], [-118.055074, 49.089778], [-118.053828, 49.091913], [-118.054386, 49.093318], [-118.05555, 49.093707], [-118.057344, 49.094638], [-118.058691, 49.095997], [-118.059051, 49.097518], [-118.058751, 49.098869], [-118.054429, 49.102586], [-118.053632, 49.103598], [-118.053276, 49.104724], [-118.0539, 49.106231], [-118.055951, 49.109494], [-118.055252, 49.111351], [-118.053656, 49.112956], [-118.051872, 49.114554], [-118.051231, 49.115943], [-118.051538, 49.117661], [-118.05289, 49.121667], [-118.054363, 49.125578], [-118.054867, 49.127179], [-118.054468, 49.129492], [-118.053899, 49.131823], [-118.054679, 49.133706], [-118.05579, 49.135675], [-118.056053, 49.137466], [-118.055871, 49.138301], [-118.055294, 49.13937], [-118.055325, 49.140806], [-118.055209, 49.141743], [-118.055288, 49.142141], [-118.055524, 49.142917], [-118.056407, 49.143567], [-118.05758, 49.143945], [-118.052439, 49.148253], [-118.046025, 49.15206], [-118.064246, 49.151994], [-118.064047, 49.152181], [-118.089099, 49.152384], [-118.089153, 49.167184], [-118.095437, 49.16722], [-118.095868, 49.168377], [-118.096937, 49.170225], [-118.098507, 49.172329], [-118.098746, 49.173], [-118.098773, 49.174912], [-118.099213, 49.175923], [-118.099641, 49.176457], [-118.106899, 49.182339], [-118.107242, 49.182793], [-118.107451, 49.183384], [-118.107829, 49.185059], [-118.108608, 49.185887], [-118.108986, 49.186134], [-118.110959, 49.186805], [-118.111299, 49.187161], [-118.111454, 49.18777], [-118.111303, 49.188239], [-118.109767, 49.189132], [-118.109504, 49.189548], [-118.109554, 49.189826], [-118.110522, 49.19101], [-118.112124, 49.194691], [-118.113681, 49.196975], [-118.114226, 49.197412], [-118.114568, 49.198671], [-118.116381, 49.201367], [-118.116743, 49.202284], [-118.117222, 49.205489], [-118.117471, 49.206244], [-118.119472, 49.209362], [-118.123721, 49.214281], [-118.127962, 49.218677], [-118.128113, 49.219439], [-118.128, 49.219979], [-118.128199, 49.220364], [-118.12967, 49.221966], [-118.131116, 49.222808], [-118.131513, 49.223175], [-118.132572, 49.226711], [-118.133096, 49.228898], [-118.132639, 49.230513], [-118.13397, 49.233978], [-118.133973, 49.237025], [-118.133201, 49.240637], [-118.133068, 49.242086], [-118.133147, 49.243486], [-118.133338, 49.24534], [-118.133797, 49.247429], [-118.134393, 49.249497], [-118.13429, 49.250105], [-118.135379, 49.254404], [-118.135587, 49.256782], [-118.135305, 49.261733], [-118.134967, 49.262975], [-118.135815, 49.264001], [-118.135874, 49.264001], [-118.135513, 49.266096], [-118.134651, 49.268619], [-118.141196, 49.276242], [-118.142218, 49.277677], [-118.145697, 49.2763], [-118.150122, 49.273649], [-118.149697, 49.271273], [-118.150055, 49.271161], [-118.150287, 49.269816], [-118.151363, 49.268696], [-118.151938, 49.267239], [-118.152835, 49.266239], [-118.154436, 49.265131], [-118.157616, 49.263367], [-118.161003, 49.260699], [-118.166294, 49.250403], [-118.176826, 49.249323], [-118.17713, 49.253174], [-118.177087, 49.260332], [-118.181924, 49.266997], [-118.181397, 49.268887], [-118.177818, 49.270661], [-118.176894, 49.274401], [-118.179546, 49.277005], [-118.184491, 49.277546], [-118.189572, 49.280681]]]]}, "properties": {"name": "Kootenay Boundary C / Christina Lake", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kootenay Boundary C / Christina Lake", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905050", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.3054, 49.797336], [-118.303442, 49.798137], [-118.302563, 49.799073], [-118.301576, 49.805747], [-118.302888, 49.808116], [-118.304913, 49.80886], [-118.309827, 49.809609], [-118.311042, 49.810389], [-118.312198, 49.812304], [-118.320862, 49.81224], [-118.382617, 49.812099], [-118.510217, 49.812556], [-118.510399, 49.811437], [-118.510241, 49.809605], [-118.509461, 49.80752], [-118.50802, 49.805769], [-118.508707, 49.80355], [-118.510209, 49.799939], [-118.511646, 49.798803], [-118.512777, 49.795299], [-118.51233, 49.790808], [-118.510826, 49.785755], [-118.511447, 49.783121], [-118.511994, 49.781664], [-118.511251, 49.778991], [-118.510035, 49.776598], [-118.508743, 49.775383], [-118.506441, 49.775612], [-118.5036, 49.775708], [-118.50053, 49.775149], [-118.497832, 49.774482], [-118.497062, 49.773693], [-118.497609, 49.772236], [-118.498027, 49.76995], [-118.49685, 49.764082], [-118.496758, 49.759778], [-118.498037, 49.75681], [-118.500971, 49.754952], [-118.502583, 49.752465], [-118.503723, 49.750259], [-118.504363, 49.744445], [-118.505419, 49.739231], [-118.509631, 49.738589], [-118.515735, 49.738121], [-118.521819, 49.737947], [-118.524882, 49.738214], [-118.527472, 49.738762], [-118.531684, 49.738119], [-118.535004, 49.735859], [-118.537131, 49.733799], [-118.539739, 49.729868], [-118.543048, 49.723424], [-118.545284, 49.719599], [-118.551271, 49.716709], [-118.555882, 49.714073], [-118.55779, 49.71186], [-118.560227, 49.707688], [-118.568695, 49.70422], [-118.571501, 49.699941], [-118.572432, 49.698082], [-118.57217, 49.696425], [-118.570629, 49.69485], [-118.557256, 49.685871], [-118.562841, 49.682085], [-118.565507, 49.681455], [-118.568866, 49.679903], [-118.571819, 49.679045], [-118.575655, 49.678508], [-118.575864, 49.67657], [-118.573932, 49.67251], [-118.572762, 49.670827], [-118.569672, 49.669268], [-118.565794, 49.664328], [-118.567999, 49.662388], [-118.569785, 49.662735], [-118.572348, 49.662279], [-118.57648, 49.659923], [-118.581866, 49.657781], [-118.585757, 49.656361], [-118.585877, 49.651416], [-118.579654, 49.64759], [-118.582176, 49.641948], [-118.581082, 49.638295], [-118.579292, 49.63636], [-118.578875, 49.633174], [-118.590909, 49.627317], [-118.588703, 49.620805], [-118.589807, 49.619489], [-118.593685, 49.617669], [-118.594068, 49.616273], [-118.587844, 49.612647], [-118.585641, 49.608423], [-118.583568, 49.606021], [-118.58664, 49.604001], [-118.588534, 49.601887], [-118.58815, 49.59871], [-118.586434, 49.595203], [-118.586387, 49.591215], [-118.589488, 49.587611], [-118.594189, 49.586994], [-118.595838, 49.590003], [-118.601363, 49.592185], [-118.603248, 49.594254], [-118.60843, 49.594653], [-118.60779, 49.592407], [-118.605681, 49.589301], [-118.609994, 49.586496], [-118.610838, 49.583823], [-118.611022, 49.581483], [-118.612297, 49.579115], [-118.618104, 49.577678], [-118.618762, 49.575058], [-118.620467, 49.572997], [-118.621438, 49.569858], [-118.622318, 49.56789], [-118.622003, 49.566122], [-118.621237, 49.564343], [-118.620101, 49.56267], [-118.620401, 49.561154], [-118.622789, 49.558468], [-118.628882, 49.561788], [-118.63209, 49.561593], [-118.636808, 49.56068], [-118.64035, 49.55838], [-118.642574, 49.555453], [-118.644686, 49.55399], [-118.644822, 49.552235], [-118.64799, 49.546462], [-118.653122, 49.543563], [-118.656599, 49.543435], [-118.658563, 49.542731], [-118.657958, 49.541191], [-118.656934, 49.538056], [-118.654166, 49.535286], [-118.65484, 49.530088], [-118.660219, 49.530137], [-118.66607, 49.527318], [-118.665931, 49.519137], [-118.670623, 49.517223], [-118.673975, 49.517562], [-118.677922, 49.51586], [-118.682552, 49.513532], [-118.687038, 49.513257], [-118.692676, 49.514964], [-118.692122, 49.511549], [-118.692968, 49.507587], [-118.691838, 49.504626], [-118.695857, 49.499463], [-118.699504, 49.494407], [-118.701765, 49.490895], [-118.701321, 49.489594], [-118.699632, 49.488085], [-118.698967, 49.486133], [-118.699715, 49.48463], [-118.698535, 49.483544], [-118.697171, 49.482513], [-118.695765, 49.482068], [-118.692328, 49.478637], [-118.687401, 49.478519], [-118.685026, 49.47535], [-118.684672, 49.472879], [-118.679682, 49.471054], [-118.683955, 49.469832], [-118.686288, 49.469021], [-118.687888, 49.465842], [-118.689814, 49.463142], [-118.688619, 49.461059], [-118.68741, 49.457979], [-118.688321, 49.456716], [-118.696411, 49.455551], [-118.69784, 49.456007], [-118.700956, 49.454397], [-118.704092, 49.453787], [-118.705809, 49.451432], [-118.710853, 49.450203], [-118.712401, 49.448899], [-118.713938, 49.438159], [-118.711893, 49.434179], [-118.708455, 49.43204], [-118.710416, 49.430044], [-118.712775, 49.42636], [-118.71217, 49.42482], [-118.709813, 49.42265], [-118.706709, 49.418408], [-118.704984, 49.416195], [-118.706804, 49.413668], [-118.710504, 49.40972], [-118.714103, 49.405386], [-118.71714, 49.400607], [-118.715646, 49.397861], [-118.713999, 49.393639], [-118.710493, 49.386781], [-118.708981, 49.38495], [-118.709456, 49.383428], [-118.715951, 49.376838], [-118.710167, 49.37456], [-118.705976, 49.374585], [-118.702208, 49.37202], [-118.699561, 49.371776], [-118.689012, 49.365277], [-118.68027, 49.368026], [-118.668947, 49.374142], [-118.65592, 49.374719], [-118.641339, 49.367018], [-118.641593, 49.35805], [-118.639702, 49.352194], [-118.636332, 49.348858], [-118.63478, 49.346575], [-118.631902, 49.345256], [-118.62627, 49.343446], [-118.615467, 49.340339], [-118.614203, 49.336532], [-118.614061, 49.334701], [-118.617316, 49.332022], [-118.616623, 49.329056], [-118.616378, 49.327399], [-118.615277, 49.325129], [-118.615238, 49.323124], [-118.613646, 49.321429], [-118.612953, 49.31976], [-118.61369, 49.318248], [-118.613241, 49.316939], [-118.611141, 49.316113], [-118.61002, 49.314137], [-118.609103, 49.311813], [-118.608982, 49.309688], [-118.606596, 49.307793], [-118.598339, 49.302431], [-118.593348, 49.301874], [-118.594413, 49.299547], [-118.592254, 49.297011], [-118.589258, 49.296158], [-118.586365, 49.293836], [-118.587512, 49.29163], [-118.587371, 49.289799], [-118.586843, 49.28837], [-118.587477, 49.287033], [-118.588355, 49.279074], [-118.589035, 49.274557], [-118.588489, 49.27083], [-118.587553, 49.2688], [-118.590415, 49.266524], [-118.593728, 49.262965], [-118.594914, 49.260171], [-118.591903, 49.254429], [-118.592825, 49.251568], [-118.594092, 49.25019], [-118.595972, 49.249065], [-118.596486, 49.245604], [-118.59612, 49.244415], [-118.599658, 49.236327], [-118.602272, 49.234987], [-118.603906, 49.233502], [-118.60889, 49.231756], [-118.611096, 49.231111], [-118.613731, 49.226885], [-118.617447, 49.225222], [-118.620161, 49.222412], [-118.622427, 49.218293], [-118.621777, 49.214741], [-118.619335, 49.212433], [-118.616964, 49.209745], [-118.616171, 49.206954], [-118.615276, 49.205632], [-118.61316, 49.203805], [-118.611574, 49.202111], [-118.611589, 49.202019], [-118.60299, 49.193291], [-118.602894, 49.193306], [-118.600215, 49.183775], [-118.593491, 49.187039], [-118.582617, 49.187373], [-118.582462, 49.186555], [-118.5823, 49.18357], [-118.592225, 49.175694], [-118.56464, 49.175542], [-118.563678, 49.16703], [-118.56361, 49.167031], [-118.563279, 49.149443], [-118.563457, 49.146312], [-118.563288, 49.143882], [-118.566756, 49.143652], [-118.568377, 49.143624], [-118.568543, 49.142708], [-118.568662, 49.136454], [-118.591406, 49.136299], [-118.591176, 49.128938], [-118.622733, 49.128562], [-118.622703, 49.125848], [-118.631348, 49.125747], [-118.631351, 49.101065], [-118.631049, 49.094473], [-118.630716, 49.078146], [-118.614452, 49.078232], [-118.614301, 49.071225], [-118.615698, 49.071215], [-118.615843, 49.07131], [-118.615995, 49.071308], [-118.61608, 49.071212], [-118.630689, 49.071061], [-118.631017, 49.058717], [-118.631052, 49.044492], [-118.631153, 49.038051], [-118.627113, 49.037993], [-118.626795, 49.038029], [-118.625163, 49.037966], [-118.625014, 49.041483], [-118.603596, 49.041358], [-118.603605, 49.034513], [-118.603774, 49.034302], [-118.604207, 49.034153], [-118.60947, 49.034197], [-118.611917, 49.034164], [-118.612414, 49.033768], [-118.613079, 49.032675], [-118.613473, 49.03118], [-118.61446, 49.028355], [-118.615662, 49.027199], [-118.617225, 49.026288], [-118.618685, 49.025605], [-118.620096, 49.023781], [-118.621115, 49.02289], [-118.620908, 49.020952], [-118.621106, 49.020049], [-118.613295, 49.016434], [-118.61142, 49.01569], [-118.609946, 49.014153], [-118.609089, 49.012265], [-118.607551, 49.010634], [-118.603487, 49.008057], [-118.599279, 49.005015], [-118.595722, 49.002802], [-118.592248, 49.000961], [-118.591082, 49.000073], [-118.500003, 48.999998], [-118.477676, 49.000024], [-118.449652, 49.000194], [-118.444101, 49.000192], [-118.435355, 49.00006], [-118.419954, 49.000068], [-118.409057, 49.000157], [-118.404876, 49.000074], [-118.376554, 49.000079], [-118.366166, 49.000169], [-118.297812, 49.000161], [-118.297963, 49.005743], [-118.29893, 49.006047], [-118.29893, 49.007735], [-118.298542, 49.033318], [-118.297393, 49.037863], [-118.311807, 49.050472], [-118.32847, 49.055684], [-118.334879, 49.07065], [-118.337804, 49.079613], [-118.33121, 49.086146], [-118.332771, 49.09016], [-118.334945, 49.093381], [-118.332413, 49.101785], [-118.331704, 49.103495], [-118.334241, 49.114351], [-118.335445, 49.127433], [-118.343557, 49.134909], [-118.349685, 49.14373], [-118.351298, 49.155588], [-118.345395, 49.168488], [-118.345891, 49.169603], [-118.348745, 49.175203], [-118.348448, 49.180578], [-118.347404, 49.186482], [-118.346049, 49.188429], [-118.337134, 49.193223], [-118.339913, 49.199456], [-118.339443, 49.20304], [-118.335825, 49.203289], [-118.33589, 49.206768], [-118.335862, 49.217441], [-118.313377, 49.217245], [-118.314212, 49.232615], [-118.318233, 49.233044], [-118.319215, 49.242112], [-118.309672, 49.244771], [-118.304262, 49.258463], [-118.303522, 49.265277], [-118.30299, 49.26574], [-118.29536, 49.271096], [-118.286069, 49.274445], [-118.279106, 49.276488], [-118.272651, 49.28025], [-118.264674, 49.286536], [-118.257273, 49.296605], [-118.253493, 49.305409], [-118.249752, 49.312329], [-118.245396, 49.315889], [-118.23407, 49.321486], [-118.224369, 49.325154], [-118.219027, 49.328533], [-118.222518, 49.333884], [-118.226476, 49.33527], [-118.229959, 49.338637], [-118.234556, 49.33868], [-118.238101, 49.341034], [-118.23876, 49.343921], [-118.24073, 49.346036], [-118.239943, 49.349928], [-118.238688, 49.352066], [-118.239733, 49.354843], [-118.238629, 49.357634], [-118.248996, 49.362533], [-118.251797, 49.363609], [-118.250593, 49.369305], [-118.250204, 49.373978], [-118.251555, 49.376966], [-118.251021, 49.378604], [-118.256096, 49.383103], [-118.256334, 49.385615], [-118.25944, 49.386], [-118.264198, 49.388949], [-118.264497, 49.392634], [-118.264036, 49.395244], [-118.266692, 49.398752], [-118.257113, 49.402703], [-118.256869, 49.403665], [-118.260007, 49.40763], [-118.25965, 49.412804], [-118.259779, 49.412972], [-118.262558, 49.412718], [-118.273729, 49.419602], [-118.270715, 49.421906], [-118.265588, 49.421984], [-118.265642, 49.422037], [-118.261483, 49.422476], [-118.26084, 49.423259], [-118.261202, 49.426485], [-118.261185, 49.429107], [-118.260338, 49.431514], [-118.257935, 49.434174], [-118.25764, 49.435733], [-118.256418, 49.436922], [-118.255934, 49.439863], [-118.253753, 49.442409], [-118.253773, 49.443435], [-118.252836, 49.444492], [-118.253465, 49.445196], [-118.255578, 49.44631], [-118.257052, 49.447705], [-118.25962, 49.448934], [-118.263905, 49.453577], [-118.267101, 49.455953], [-118.268016, 49.45741], [-118.270129, 49.458966], [-118.273143, 49.461738], [-118.275171, 49.464719], [-118.276703, 49.466639], [-118.277857, 49.467339], [-118.280117, 49.46689], [-118.281794, 49.466803], [-118.282731, 49.467959], [-118.283199, 49.470529], [-118.280165, 49.475141], [-118.280452, 49.477001], [-118.281767, 49.478491], [-118.284553, 49.480591], [-118.285427, 49.483093], [-118.285679, 49.484791], [-118.287219, 49.48661], [-118.287681, 49.488838], [-118.287366, 49.494904], [-118.285324, 49.497656], [-118.283506, 49.49941], [-118.277468, 49.508575], [-118.276292, 49.511496], [-118.275795, 49.511983], [-118.27594, 49.512351], [-118.275726, 49.51781], [-118.273556, 49.524897], [-118.265435, 49.529348], [-118.264375, 49.533785], [-118.260817, 49.535823], [-118.260271, 49.536573], [-118.261475, 49.539238], [-118.260662, 49.542485], [-118.260051, 49.546364], [-118.261157, 49.549551], [-118.260548, 49.550542], [-118.255043, 49.552538], [-118.25266, 49.552692], [-118.251056, 49.552324], [-118.246067, 49.55831], [-118.244881, 49.561565], [-118.244893, 49.563586], [-118.245502, 49.565929], [-118.246692, 49.568351], [-118.247328, 49.570958], [-118.247137, 49.573234], [-118.247452, 49.574477], [-118.248054, 49.575587], [-118.248159, 49.576298], [-118.249441, 49.578299], [-118.250175, 49.581939], [-118.250118, 49.583635], [-118.250468, 49.585929], [-118.251932, 49.593245], [-118.250351, 49.604399], [-118.253908, 49.610221], [-118.253422, 49.611525], [-118.253562, 49.613727], [-118.254655, 49.617552], [-118.254436, 49.618896], [-118.253383, 49.620678], [-118.246015, 49.628713], [-118.243565, 49.63166], [-118.243303, 49.632652], [-118.241897, 49.636159], [-118.245743, 49.646755], [-118.246779, 49.648136], [-118.246888, 49.64916], [-118.247561, 49.64918], [-118.252993, 49.65642], [-118.275447, 49.658384], [-118.274375, 49.665323], [-118.275089, 49.667233], [-118.278871, 49.669808], [-118.279377, 49.67089], [-118.27791, 49.673863], [-118.278572, 49.678975], [-118.279156, 49.679839], [-118.279237, 49.680404], [-118.28078, 49.682908], [-118.280373, 49.689235], [-118.280934, 49.694867], [-118.280547, 49.697089], [-118.279519, 49.698365], [-118.27708, 49.697344], [-118.276032, 49.698478], [-118.27548, 49.700011], [-118.274947, 49.705146], [-118.273812, 49.708612], [-118.273915, 49.710105], [-118.27551, 49.712349], [-118.275463, 49.714179], [-118.276646, 49.714921], [-118.278818, 49.714447], [-118.280974, 49.714616], [-118.281738, 49.714962], [-118.283238, 49.716841], [-118.283201, 49.718128], [-118.282437, 49.718789], [-118.281055, 49.724682], [-118.282339, 49.72736], [-118.284213, 49.730236], [-118.285615, 49.734204], [-118.284801, 49.74238], [-118.285323, 49.74326], [-118.286635, 49.743743], [-118.288856, 49.743892], [-118.291292, 49.74447], [-118.293268, 49.744149], [-118.295733, 49.744768], [-118.298926, 49.747239], [-118.301307, 49.750188], [-118.300636, 49.750428], [-118.300151, 49.751498], [-118.299812, 49.752674], [-118.297439, 49.753644], [-118.295848, 49.754539], [-118.292013, 49.755926], [-118.289614, 49.75764], [-118.28769, 49.759831], [-118.287654, 49.761117], [-118.28885, 49.763325], [-118.292734, 49.765697], [-118.294852, 49.765581], [-118.297424, 49.766023], [-118.29843, 49.765832], [-118.29911, 49.766276], [-118.287257, 49.778846], [-118.286732, 49.782081], [-118.287214, 49.787577], [-118.288273, 49.791022], [-118.290313, 49.794016], [-118.293955, 49.79513], [-118.296841, 49.795578], [-118.306269, 49.795718], [-118.306787, 49.796255], [-118.3054, 49.797336]], [[-118.451687, 49.05194], [-118.429615, 49.051456], [-118.428984, 49.037418], [-118.428545, 49.037763], [-118.427612, 49.036703], [-118.424184, 49.036753], [-118.424582, 49.033207], [-118.424476, 49.029377], [-118.419508, 49.029273], [-118.419583, 49.023357], [-118.419681, 49.022804], [-118.424377, 49.02372], [-118.427052, 49.023961], [-118.427265, 49.020888], [-118.425308, 49.020874], [-118.425272, 49.0202], [-118.42331, 49.019399], [-118.423158, 49.019149], [-118.422206, 49.019289], [-118.421938, 49.0179], [-118.423047, 49.01788], [-118.423097, 49.016962], [-118.41969, 49.016901], [-118.419689, 49.01467], [-118.44161, 49.014721], [-118.441607, 49.016062], [-118.430603, 49.016306], [-118.430573, 49.020789], [-118.431836, 49.020863], [-118.433111, 49.021226], [-118.433594, 49.021437], [-118.43475, 49.022162], [-118.435103, 49.022297], [-118.435339, 49.021841], [-118.435532, 49.021633], [-118.435892, 49.021337], [-118.436376, 49.021055], [-118.437206, 49.020761], [-118.439029, 49.020455], [-118.439897, 49.020142], [-118.441075, 49.019469], [-118.441381, 49.019235], [-118.441594, 49.018837], [-118.441793, 49.018759], [-118.443404, 49.018833], [-118.445201, 49.018807], [-118.445286, 49.017628], [-118.444265, 49.014747], [-118.452591, 49.014611], [-118.456165, 49.014692], [-118.456301, 49.017081], [-118.455659, 49.019819], [-118.45584, 49.020316], [-118.456565, 49.020589], [-118.457535, 49.020491], [-118.458528, 49.01982], [-118.45943, 49.018978], [-118.460578, 49.017692], [-118.461368, 49.017264], [-118.463386, 49.015867], [-118.464018, 49.015479], [-118.465283, 49.015219], [-118.466625, 49.015306], [-118.467574, 49.015443], [-118.469314, 49.016019], [-118.471238, 49.017024], [-118.473378, 49.018544], [-118.474804, 49.01943], [-118.474725, 49.022232], [-118.475042, 49.03655], [-118.460956, 49.036515], [-118.460692, 49.036581], [-118.460515, 49.036714], [-118.460388, 49.036926], [-118.457709, 49.037333], [-118.452792, 49.036597], [-118.44818, 49.036556], [-118.448012, 49.03746], [-118.447174, 49.037525], [-118.447136, 49.044514], [-118.447368, 49.046729], [-118.447739, 49.046889], [-118.448823, 49.047029], [-118.449218, 49.046996], [-118.449331, 49.047049], [-118.449784, 49.04708], [-118.451954, 49.046953], [-118.452239, 49.046824], [-118.452935, 49.046797], [-118.453371, 49.046701], [-118.453659, 49.046716], [-118.453909, 49.046812], [-118.454733, 49.047458], [-118.454956, 49.047563], [-118.455976, 49.048412], [-118.455292, 49.049933], [-118.454746, 49.05094], [-118.451755, 49.050295], [-118.451687, 49.05194]]]]}, "properties": {"name": "Kootenay Boundary D / Rural Grand Forks", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kootenay Boundary D / Rural Grand Forks", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905052", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.110346, 49.792322], [-119.115727, 49.790946], [-119.122063, 49.795549], [-119.133617, 49.799345], [-119.153855, 49.799514], [-119.151684, 49.792653], [-119.152377, 49.77006], [-119.152736, 49.764004], [-119.164018, 49.763862], [-119.16375, 49.757829], [-119.18536, 49.758226], [-119.198862, 49.754681], [-119.201607, 49.753628], [-119.202061, 49.753252], [-119.198411, 49.746955], [-119.199785, 49.742137], [-119.206867, 49.737253], [-119.220186, 49.739239], [-119.22856, 49.735151], [-119.238815, 49.738992], [-119.251405, 49.741086], [-119.262942, 49.74478], [-119.269123, 49.739317], [-119.271825, 49.730213], [-119.286593, 49.726308], [-119.295685, 49.715191], [-119.311492, 49.705715], [-119.323091, 49.698128], [-119.325872, 49.697064], [-119.331829, 49.698453], [-119.339904, 49.694884], [-119.342769, 49.694931], [-119.347852, 49.693644], [-119.347936, 49.692266], [-119.355112, 49.689482], [-119.361573, 49.68668], [-119.365304, 49.684002], [-119.368454, 49.681494], [-119.369276, 49.679672], [-119.372771, 49.678646], [-119.375911, 49.679031], [-119.371929, 49.672003], [-119.372096, 49.667586], [-119.371814, 49.663012], [-119.372192, 49.659041], [-119.373678, 49.65583], [-119.372834, 49.654045], [-119.370349, 49.652169], [-119.367114, 49.650805], [-119.364257, 49.648929], [-119.359628, 49.645297], [-119.356288, 49.64224], [-119.35252, 49.638242], [-119.350361, 49.636085], [-119.349868, 49.634241], [-119.350651, 49.631712], [-119.352112, 49.62647], [-119.355192, 49.620888], [-119.356191, 49.619933], [-119.358651, 49.617885], [-119.358136, 49.616219], [-119.355623, 49.613478], [-119.352236, 49.610926], [-119.350876, 49.609332], [-119.350256, 49.607989], [-119.349863, 49.606651], [-119.351727, 49.604709], [-119.353576, 49.603062], [-119.357708, 49.600221], [-119.360366, 49.598768], [-119.363173, 49.597052], [-119.363823, 49.595765], [-119.362791, 49.594473], [-119.361411, 49.593795], [-119.357068, 49.594151], [-119.35465, 49.59422], [-119.349795, 49.593855], [-119.34811, 49.592904], [-119.348314, 49.58753], [-119.347749, 49.585006], [-119.346367, 49.581963], [-119.341517, 49.57593], [-119.336843, 49.570975], [-119.335919, 49.569374], [-119.335939, 49.567996], [-119.338454, 49.56292], [-119.339259, 49.558422], [-119.338427, 49.556793], [-119.33644, 49.556055], [-119.333394, 49.556038], [-119.332056, 49.547921], [-119.330607, 49.544022], [-119.327888, 49.539132], [-119.322581, 49.535164], [-119.322942, 49.533325], [-119.321785, 49.530459], [-119.319244, 49.531308], [-119.314546, 49.531649], [-119.311227, 49.530771], [-119.309808, 49.529102], [-119.309624, 49.527281], [-119.308688, 49.525973], [-119.303406, 49.523445], [-119.30208, 49.521748], [-119.302506, 49.518591], [-119.303065, 49.517343], [-119.304008, 49.511941], [-119.305319, 49.509243], [-119.307132, 49.507408], [-119.3099, 49.505039], [-119.302637, 49.505009], [-119.301764, 49.503434], [-119.300803, 49.503643], [-119.300591, 49.495747], [-119.300446, 49.473738], [-119.300531, 49.4189], [-119.300363, 49.385706], [-119.295642, 49.384165], [-119.294254, 49.383103], [-119.292953, 49.382547], [-119.29043, 49.38283], [-119.286799, 49.383858], [-119.283, 49.387356], [-119.281733, 49.387617], [-119.276954, 49.386507], [-119.274122, 49.385582], [-119.272211, 49.384676], [-119.269603, 49.383684], [-119.262943, 49.382604], [-119.262074, 49.382273], [-119.26003, 49.379515], [-119.258752, 49.378479], [-119.256807, 49.375483], [-119.254624, 49.372896], [-119.253255, 49.371499], [-119.251393, 49.368767], [-119.251293, 49.367206], [-119.251913, 49.366117], [-119.257299, 49.360568], [-119.258317, 49.358586], [-119.259652, 49.352667], [-119.260442, 49.350313], [-119.259918, 49.349294], [-119.25943, 49.348643], [-119.256949, 49.34639], [-119.254495, 49.345313], [-119.250339, 49.343922], [-119.246535, 49.343424], [-119.236399, 49.341408], [-119.233703, 49.341334], [-119.231554, 49.341593], [-119.229378, 49.342334], [-119.22767, 49.342608], [-119.22623, 49.342914], [-119.224071, 49.342902], [-119.222249, 49.343016], [-119.21931, 49.343804], [-119.217419, 49.344691], [-119.215943, 49.345206], [-119.214529, 49.345899], [-119.213148, 49.346028], [-119.206903, 49.344031], [-119.205165, 49.343392], [-119.202598, 49.341947], [-119.20202, 49.339315], [-119.203409, 49.337113], [-119.204666, 49.333568], [-119.206248, 49.33103], [-119.207617, 49.328004], [-119.208139, 49.326738], [-119.207888, 49.325391], [-119.205782, 49.323928], [-119.201288, 49.322068], [-119.186878, 49.316763], [-119.177385, 49.312287], [-119.175644, 49.311188], [-119.175043, 49.310026], [-119.175537, 49.308453], [-119.178111, 49.306046], [-119.180399, 49.304279], [-119.182437, 49.302234], [-119.186821, 49.298246], [-119.18936, 49.296755], [-119.202818, 49.29119], [-119.206518, 49.289106], [-119.209136, 49.287905], [-119.213356, 49.285698], [-119.220585, 49.276098], [-119.221969, 49.273541], [-119.222687, 49.269646], [-119.225126, 49.265107], [-119.228672, 49.263049], [-119.23291, 49.255321], [-119.230849, 49.246939], [-119.237389, 49.238943], [-119.233827, 49.23644], [-119.228452, 49.233132], [-119.222796, 49.230183], [-119.219983, 49.228979], [-119.216124, 49.2251], [-119.212917, 49.222442], [-119.210568, 49.221374], [-119.206002, 49.21967], [-119.202742, 49.218599], [-119.198095, 49.216448], [-119.195944, 49.215988], [-119.192474, 49.216229], [-119.186927, 49.216964], [-119.180478, 49.218313], [-119.179144, 49.216156], [-119.176248, 49.21525], [-119.178433, 49.213442], [-119.180913, 49.210561], [-119.181565, 49.207528], [-119.180984, 49.204436], [-119.189114, 49.198332], [-119.19724, 49.199218], [-119.211401, 49.197481], [-119.217221, 49.194613], [-119.217903, 49.193741], [-119.220794, 49.184886], [-119.221769, 49.184292], [-119.228932, 49.183029], [-119.235678, 49.179641], [-119.242357, 49.16948], [-119.254368, 49.165669], [-119.254775, 49.165236], [-119.255979, 49.161885], [-119.256255, 49.159977], [-119.257074, 49.156408], [-119.259346, 49.153591], [-119.261333, 49.152044], [-119.263296, 49.146594], [-119.263458, 49.143916], [-119.263409, 49.140696], [-119.267807, 49.139369], [-119.27534, 49.137749], [-119.284589, 49.13484], [-119.284987, 49.133476], [-119.28278, 49.131357], [-119.279625, 49.127629], [-119.276268, 49.122836], [-119.271771, 49.118091], [-119.270425, 49.115654], [-119.271466, 49.113918], [-119.277109, 49.110379], [-119.277042, 49.107192], [-119.276807, 49.107137], [-119.273482, 49.101122], [-119.274036, 49.100361], [-119.277619, 49.100044], [-119.28384, 49.100645], [-119.288036, 49.100556], [-119.292455, 49.097553], [-119.291778, 49.093068], [-119.290221, 49.089264], [-119.291119, 49.087567], [-119.294747, 49.087058], [-119.297462, 49.08641], [-119.298647, 49.083439], [-119.300386, 49.081783], [-119.301826, 49.073252], [-119.302025, 49.049048], [-119.301478, 49.011974], [-119.301514, 49.008071], [-119.295173, 49.00796], [-119.294928, 49.000045], [-119.250005, 48.999998], [-119.008486, 49.000008], [-118.999075, 49.000105], [-118.964094, 49.000192], [-118.946755, 49.000134], [-118.850332, 49.000186], [-118.850152, 49.003441], [-118.833739, 49.003093], [-118.833808, 49.0089], [-118.833709, 49.009664], [-118.835843, 49.009379], [-118.837621, 49.009326], [-118.839712, 49.0087], [-118.841382, 49.009235], [-118.842766, 49.010113], [-118.844539, 49.011735], [-118.844183, 49.013565], [-118.844237, 49.018442], [-118.785937, 49.018378], [-118.785952, 49.017811], [-118.772704, 49.017901], [-118.772596, 49.015293], [-118.756396, 49.015245], [-118.755815, 49.007819], [-118.750363, 49.007754], [-118.74993, 49.000189], [-118.680337, 49.000168], [-118.611741, 49.000184], [-118.606139, 49.000077], [-118.591082, 49.000073], [-118.592248, 49.000961], [-118.595722, 49.002802], [-118.599279, 49.005015], [-118.603487, 49.008057], [-118.607551, 49.010634], [-118.609089, 49.012265], [-118.609946, 49.014153], [-118.61142, 49.01569], [-118.613295, 49.016434], [-118.621106, 49.020049], [-118.620908, 49.020952], [-118.621115, 49.02289], [-118.620096, 49.023781], [-118.618685, 49.025605], [-118.617225, 49.026288], [-118.615662, 49.027199], [-118.61446, 49.028355], [-118.613473, 49.03118], [-118.613079, 49.032675], [-118.612414, 49.033768], [-118.611917, 49.034164], [-118.60947, 49.034197], [-118.604207, 49.034153], [-118.603774, 49.034302], [-118.603605, 49.034513], [-118.603596, 49.041358], [-118.625014, 49.041483], [-118.625163, 49.037966], [-118.626795, 49.038029], [-118.627113, 49.037993], [-118.631153, 49.038051], [-118.631052, 49.044492], [-118.631017, 49.058717], [-118.630689, 49.071061], [-118.61608, 49.071212], [-118.615995, 49.071308], [-118.615843, 49.07131], [-118.615698, 49.071215], [-118.614301, 49.071225], [-118.614452, 49.078232], [-118.630716, 49.078146], [-118.631049, 49.094473], [-118.631351, 49.101065], [-118.631348, 49.125747], [-118.622703, 49.125848], [-118.622733, 49.128562], [-118.591176, 49.128938], [-118.591406, 49.136299], [-118.568662, 49.136454], [-118.568543, 49.142708], [-118.568377, 49.143624], [-118.566756, 49.143652], [-118.563288, 49.143882], [-118.563457, 49.146312], [-118.563279, 49.149443], [-118.56361, 49.167031], [-118.563678, 49.16703], [-118.56464, 49.175542], [-118.592225, 49.175694], [-118.5823, 49.18357], [-118.582462, 49.186555], [-118.582617, 49.187373], [-118.593491, 49.187039], [-118.600215, 49.183775], [-118.602894, 49.193306], [-118.60299, 49.193291], [-118.611589, 49.202019], [-118.611574, 49.202111], [-118.61316, 49.203805], [-118.615276, 49.205632], [-118.616171, 49.206954], [-118.616964, 49.209745], [-118.619335, 49.212433], [-118.621777, 49.214741], [-118.622427, 49.218293], [-118.620161, 49.222412], [-118.617447, 49.225222], [-118.613731, 49.226885], [-118.611096, 49.231111], [-118.60889, 49.231756], [-118.603906, 49.233502], [-118.602272, 49.234987], [-118.599658, 49.236327], [-118.59612, 49.244415], [-118.596486, 49.245604], [-118.595972, 49.249065], [-118.594092, 49.25019], [-118.592825, 49.251568], [-118.591903, 49.254429], [-118.594914, 49.260171], [-118.593728, 49.262965], [-118.590415, 49.266524], [-118.587553, 49.2688], [-118.588489, 49.27083], [-118.589035, 49.274557], [-118.588355, 49.279074], [-118.587477, 49.287033], [-118.586843, 49.28837], [-118.587371, 49.289799], [-118.587512, 49.29163], [-118.586365, 49.293836], [-118.589258, 49.296158], [-118.592254, 49.297011], [-118.594413, 49.299547], [-118.593348, 49.301874], [-118.598339, 49.302431], [-118.606596, 49.307793], [-118.608982, 49.309688], [-118.609103, 49.311813], [-118.61002, 49.314137], [-118.611141, 49.316113], [-118.613241, 49.316939], [-118.61369, 49.318248], [-118.612953, 49.31976], [-118.613646, 49.321429], [-118.615238, 49.323124], [-118.615277, 49.325129], [-118.616378, 49.327399], [-118.616623, 49.329056], [-118.617316, 49.332022], [-118.614061, 49.334701], [-118.614203, 49.336532], [-118.615467, 49.340339], [-118.62627, 49.343446], [-118.631902, 49.345256], [-118.63478, 49.346575], [-118.636332, 49.348858], [-118.639702, 49.352194], [-118.641593, 49.35805], [-118.641339, 49.367018], [-118.65592, 49.374719], [-118.668947, 49.374142], [-118.68027, 49.368026], [-118.689012, 49.365277], [-118.699561, 49.371776], [-118.702208, 49.37202], [-118.705976, 49.374585], [-118.710167, 49.37456], [-118.715951, 49.376838], [-118.709456, 49.383428], [-118.708981, 49.38495], [-118.710493, 49.386781], [-118.713999, 49.393639], [-118.715646, 49.397861], [-118.71714, 49.400607], [-118.714103, 49.405386], [-118.710504, 49.40972], [-118.706804, 49.413668], [-118.704984, 49.416195], [-118.706709, 49.418408], [-118.709813, 49.42265], [-118.71217, 49.42482], [-118.712775, 49.42636], [-118.710416, 49.430044], [-118.708455, 49.43204], [-118.711893, 49.434179], [-118.713938, 49.438159], [-118.712401, 49.448899], [-118.710853, 49.450203], [-118.705809, 49.451432], [-118.704092, 49.453787], [-118.700956, 49.454397], [-118.69784, 49.456007], [-118.696411, 49.455551], [-118.688321, 49.456716], [-118.68741, 49.457979], [-118.688619, 49.461059], [-118.689814, 49.463142], [-118.687888, 49.465842], [-118.686288, 49.469021], [-118.683955, 49.469832], [-118.679682, 49.471054], [-118.684672, 49.472879], [-118.685026, 49.47535], [-118.687401, 49.478519], [-118.692328, 49.478637], [-118.695765, 49.482068], [-118.697171, 49.482513], [-118.698535, 49.483544], [-118.699715, 49.48463], [-118.698967, 49.486133], [-118.699632, 49.488085], [-118.701321, 49.489594], [-118.701765, 49.490895], [-118.699504, 49.494407], [-118.695857, 49.499463], [-118.691838, 49.504626], [-118.692968, 49.507587], [-118.692122, 49.511549], [-118.692676, 49.514964], [-118.687038, 49.513257], [-118.682552, 49.513532], [-118.677922, 49.51586], [-118.673975, 49.517562], [-118.670623, 49.517223], [-118.665931, 49.519137], [-118.66607, 49.527318], [-118.660219, 49.530137], [-118.65484, 49.530088], [-118.654166, 49.535286], [-118.656934, 49.538056], [-118.657958, 49.541191], [-118.658563, 49.542731], [-118.656599, 49.543435], [-118.653122, 49.543563], [-118.64799, 49.546462], [-118.644822, 49.552235], [-118.644686, 49.55399], [-118.642574, 49.555453], [-118.64035, 49.55838], [-118.636808, 49.56068], [-118.63209, 49.561593], [-118.628882, 49.561788], [-118.622789, 49.558468], [-118.620401, 49.561154], [-118.620101, 49.56267], [-118.621237, 49.564343], [-118.622003, 49.566122], [-118.622318, 49.56789], [-118.621438, 49.569858], [-118.620467, 49.572997], [-118.618762, 49.575058], [-118.618104, 49.577678], [-118.612297, 49.579115], [-118.611022, 49.581483], [-118.610838, 49.583823], [-118.609994, 49.586496], [-118.605681, 49.589301], [-118.60779, 49.592407], [-118.60843, 49.594653], [-118.603248, 49.594254], [-118.601363, 49.592185], [-118.595838, 49.590003], [-118.594189, 49.586994], [-118.589488, 49.587611], [-118.586387, 49.591215], [-118.586434, 49.595203], [-118.58815, 49.59871], [-118.588534, 49.601887], [-118.58664, 49.604001], [-118.583568, 49.606021], [-118.585641, 49.608423], [-118.587844, 49.612647], [-118.594068, 49.616273], [-118.593685, 49.617669], [-118.589807, 49.619489], [-118.588703, 49.620805], [-118.590909, 49.627317], [-118.578875, 49.633174], [-118.579292, 49.63636], [-118.581082, 49.638295], [-118.582176, 49.641948], [-118.579654, 49.64759], [-118.585877, 49.651416], [-118.585757, 49.656361], [-118.581866, 49.657781], [-118.57648, 49.659923], [-118.572348, 49.662279], [-118.569785, 49.662735], [-118.567999, 49.662388], [-118.565794, 49.664328], [-118.569672, 49.669268], [-118.572762, 49.670827], [-118.573932, 49.67251], [-118.575864, 49.67657], [-118.575655, 49.678508], [-118.571819, 49.679045], [-118.568866, 49.679903], [-118.565507, 49.681455], [-118.562841, 49.682085], [-118.557256, 49.685871], [-118.570629, 49.69485], [-118.57217, 49.696425], [-118.572432, 49.698082], [-118.571501, 49.699941], [-118.568695, 49.70422], [-118.560227, 49.707688], [-118.55779, 49.71186], [-118.555882, 49.714073], [-118.551271, 49.716709], [-118.545284, 49.719599], [-118.543048, 49.723424], [-118.539739, 49.729868], [-118.537131, 49.733799], [-118.535004, 49.735859], [-118.531684, 49.738119], [-118.527472, 49.738762], [-118.524882, 49.738214], [-118.521819, 49.737947], [-118.515735, 49.738121], [-118.509631, 49.738589], [-118.505419, 49.739231], [-118.504363, 49.744445], [-118.503723, 49.750259], [-118.502583, 49.752465], [-118.500971, 49.754952], [-118.498037, 49.75681], [-118.496758, 49.759778], [-118.49685, 49.764082], [-118.498027, 49.76995], [-118.497609, 49.772236], [-118.497062, 49.773693], [-118.497832, 49.774482], [-118.50053, 49.775149], [-118.5036, 49.775708], [-118.506441, 49.775612], [-118.508743, 49.775383], [-118.510035, 49.776598], [-118.511251, 49.778991], [-118.511994, 49.781664], [-118.511447, 49.783121], [-118.510826, 49.785755], [-118.51233, 49.790808], [-118.512777, 49.795299], [-118.511646, 49.798803], [-118.510209, 49.799939], [-118.508707, 49.80355], [-118.50802, 49.805769], [-118.509461, 49.80752], [-118.510241, 49.809605], [-118.510399, 49.811437], [-118.510217, 49.812556], [-118.554402, 49.812658], [-118.597824, 49.812552], [-118.703923, 49.812761], [-118.980635, 49.812274], [-119.050631, 49.812221], [-119.055686, 49.812321], [-119.058426, 49.807344], [-119.065504, 49.798213], [-119.078143, 49.798727], [-119.085536, 49.799092], [-119.099644, 49.793222], [-119.110346, 49.792322]], [[-118.67792, 49.079629], [-118.683416, 49.079614], [-118.683643, 49.079948], [-118.683417, 49.080152], [-118.683557, 49.080251], [-118.683485, 49.082946], [-118.683669, 49.084968], [-118.683694, 49.096102], [-118.683815, 49.103988], [-118.683584, 49.108166], [-118.678323, 49.108236], [-118.677964, 49.108438], [-118.67305, 49.108522], [-118.673183, 49.10022], [-118.672984, 49.098856], [-118.673007, 49.098202], [-118.673244, 49.096222], [-118.674226, 49.095264], [-118.673059, 49.092272], [-118.673062, 49.090267], [-118.67354, 49.0883], [-118.673254, 49.079837], [-118.67792, 49.079629]]]]}, "properties": {"name": "Kootenay Boundary E / West Boundary", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Kootenay", "census_subdivision": "Kootenay Boundary E / West Boundary", "economic_region_id": "5940", "census_division_code": "5905", "census_subdivision_code": "5905054", "regional_district_aka_census_division": "Kootenay Boundary"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.505641, 49.044358], [-119.501592, 49.036193], [-119.496982, 49.028352], [-119.493691, 49.020853], [-119.494908, 49.019012], [-119.496253, 49.017921], [-119.492293, 49.013017], [-119.491888, 49.013136], [-119.490148, 49.01018], [-119.488935, 49.007359], [-119.487063, 49.007528], [-119.484851, 49.005428], [-119.483934, 49.005828], [-119.478141, 49.006183], [-119.475379, 49.006699], [-119.475216, 49.00785], [-119.475595, 49.008634], [-119.476913, 49.01083], [-119.477469, 49.013366], [-119.477527, 49.014397], [-119.477652, 49.014838], [-119.477812, 49.01511], [-119.478472, 49.01547], [-119.480837, 49.017016], [-119.480284, 49.018734], [-119.480232, 49.023683], [-119.480159, 49.023914], [-119.47984, 49.024082], [-119.479529, 49.024118], [-119.474431, 49.024219], [-119.474625, 49.02414], [-119.474753, 49.024003], [-119.474765, 49.023672], [-119.474682, 49.02333], [-119.474463, 49.022939], [-119.474014, 49.022473], [-119.469513, 49.019368], [-119.468692, 49.018844], [-119.46734, 49.01827], [-119.466963, 49.018053], [-119.46639, 49.017564], [-119.46623, 49.017351], [-119.46458, 49.013427], [-119.464455, 49.01274], [-119.461839, 49.013274], [-119.461621, 49.013362], [-119.461014, 49.014024], [-119.459877, 49.014289], [-119.459992, 49.014474], [-119.460356, 49.014573], [-119.45968, 49.016692], [-119.460898, 49.018166], [-119.460868, 49.019589], [-119.461816, 49.020539], [-119.461489, 49.021247], [-119.461898, 49.021937], [-119.462779, 49.022489], [-119.465241, 49.022945], [-119.465667, 49.023304], [-119.46554, 49.023607], [-119.464921, 49.023785], [-119.463707, 49.023909], [-119.459581, 49.024667], [-119.460895, 49.026439], [-119.46059, 49.026544], [-119.459958, 49.026286], [-119.459087, 49.026023], [-119.439973, 49.020468], [-119.438954, 49.019837], [-119.439108, 49.018623], [-119.442691, 49.011082], [-119.442839, 49.010635], [-119.439646, 49.010373], [-119.437703, 49.010293], [-119.437217, 49.010814], [-119.43715, 49.010966], [-119.435083, 49.011169], [-119.43515, 49.01288], [-119.434598, 49.013008], [-119.434526, 49.012588], [-119.43398, 49.012705], [-119.434097, 49.013083], [-119.433861, 49.013579], [-119.433444, 49.013847], [-119.43364, 49.014963], [-119.432531, 49.014906], [-119.432298, 49.014804], [-119.432113, 49.014639], [-119.433205, 49.01693], [-119.433345, 49.01692], [-119.433258, 49.019147], [-119.43308, 49.019923], [-119.43325, 49.020598], [-119.433193, 49.020809], [-119.432912, 49.021214], [-119.433247, 49.021978], [-119.432916, 49.022574], [-119.432335, 49.022813], [-119.432677, 49.023412], [-119.431598, 49.025188], [-119.431082, 49.027032], [-119.431113, 49.027675], [-119.432675, 49.027833], [-119.43825, 49.027967], [-119.438177, 49.02868], [-119.438512, 49.028687], [-119.43848, 49.029001], [-119.438689, 49.029017], [-119.438575, 49.029936], [-119.439188, 49.029945], [-119.43917, 49.030341], [-119.440022, 49.030379], [-119.440443, 49.029811], [-119.441191, 49.029839], [-119.441188, 49.030691], [-119.435414, 49.030711], [-119.436464, 49.034391], [-119.436588, 49.035506], [-119.437017, 49.036322], [-119.443455, 49.036378], [-119.443457, 49.036763], [-119.447524, 49.036752], [-119.448479, 49.035242], [-119.449903, 49.032648], [-119.450985, 49.03157], [-119.451766, 49.030988], [-119.454481, 49.03008], [-119.456867, 49.029578], [-119.458174, 49.029837], [-119.458869, 49.030575], [-119.459035, 49.033984], [-119.461108, 49.035819], [-119.462504, 49.038342], [-119.464469, 49.040835], [-119.463351, 49.041448], [-119.463273, 49.042028], [-119.463495, 49.042471], [-119.463773, 49.042789], [-119.464784, 49.043395], [-119.465721, 49.043827], [-119.466762, 49.04418], [-119.468918, 49.04465], [-119.470927, 49.04477], [-119.473627, 49.041503], [-119.472058, 49.041092], [-119.47174, 49.04096], [-119.471319, 49.040717], [-119.470669, 49.040022], [-119.474124, 49.038018], [-119.476082, 49.037217], [-119.476466, 49.037197], [-119.477066, 49.0373], [-119.477352, 49.037263], [-119.477973, 49.036947], [-119.478589, 49.037401], [-119.481151, 49.036309], [-119.480104, 49.035231], [-119.482363, 49.034128], [-119.483101, 49.033849], [-119.483824, 49.033653], [-119.48399, 49.033801], [-119.484557, 49.034732], [-119.48484, 49.034924], [-119.48534, 49.035085], [-119.485761, 49.0353], [-119.486257, 49.035901], [-119.486784, 49.036296], [-119.486859, 49.036447], [-119.486704, 49.036918], [-119.48674, 49.037096], [-119.486991, 49.037434], [-119.487989, 49.03769], [-119.488467, 49.037978], [-119.488508, 49.038255], [-119.488266, 49.038854], [-119.488261, 49.039304], [-119.48863, 49.039593], [-119.488867, 49.039678], [-119.489674, 49.039687], [-119.490158, 49.039497], [-119.49049, 49.039561], [-119.490933, 49.03993], [-119.492517, 49.040976], [-119.493863, 49.041991], [-119.497069, 49.039306], [-119.505641, 49.044358]]]]}, "properties": {"name": "Osoyoos", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Osoyoos", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907005", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.824789, 49.211118], [-119.837038, 49.211074], [-119.837374, 49.208799], [-119.837272, 49.208721], [-119.837377, 49.202646], [-119.837266, 49.202493], [-119.837119, 49.202451], [-119.837215, 49.201811], [-119.837149, 49.200788], [-119.835192, 49.200658], [-119.831158, 49.199594], [-119.830349, 49.199154], [-119.828183, 49.198388], [-119.826587, 49.198317], [-119.824659, 49.198738], [-119.823432, 49.198609], [-119.822542, 49.198248], [-119.821377, 49.198643], [-119.819358, 49.199878], [-119.819113, 49.200259], [-119.818915, 49.200776], [-119.818684, 49.200886], [-119.818066, 49.201587], [-119.817203, 49.202351], [-119.816163, 49.202951], [-119.814809, 49.203374], [-119.814976, 49.20523], [-119.814883, 49.208486], [-119.812669, 49.208558], [-119.812636, 49.210473], [-119.813257, 49.212375], [-119.813304, 49.213023], [-119.815094, 49.213047], [-119.816138, 49.21318], [-119.819006, 49.212714], [-119.818966, 49.211075], [-119.824789, 49.211118]]]]}, "properties": {"name": "Keremeos", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Keremeos", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907009", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.54929, 49.203291], [-119.549532, 49.203697], [-119.549657, 49.203777], [-119.550512, 49.203079], [-119.551548, 49.201842], [-119.552223, 49.200559], [-119.552339, 49.200168], [-119.552543, 49.199049], [-119.55255, 49.198103], [-119.552225, 49.196878], [-119.551634, 49.195287], [-119.555807, 49.196691], [-119.555753, 49.196352], [-119.55538, 49.195525], [-119.553116, 49.192201], [-119.552725, 49.192304], [-119.552387, 49.191228], [-119.553311, 49.190623], [-119.553648, 49.190289], [-119.553354, 49.189896], [-119.556838, 49.186841], [-119.558647, 49.187596], [-119.560926, 49.185625], [-119.559114, 49.184809], [-119.560928, 49.183186], [-119.560652, 49.182916], [-119.5628, 49.181785], [-119.563856, 49.180676], [-119.566507, 49.178794], [-119.567684, 49.17917], [-119.568301, 49.179231], [-119.569713, 49.179211], [-119.569728, 49.179527], [-119.572527, 49.179687], [-119.573565, 49.180051], [-119.574441, 49.179883], [-119.576319, 49.175792], [-119.57545, 49.175575], [-119.574951, 49.174932], [-119.574968, 49.174819], [-119.571752, 49.17443], [-119.571687, 49.173905], [-119.570664, 49.174155], [-119.569966, 49.174407], [-119.564955, 49.170975], [-119.564303, 49.171442], [-119.563262, 49.172036], [-119.563061, 49.172195], [-119.562907, 49.172562], [-119.561874, 49.172339], [-119.561798, 49.172692], [-119.560752, 49.172442], [-119.561007, 49.172072], [-119.55675, 49.170878], [-119.552995, 49.168076], [-119.551105, 49.16905], [-119.550758, 49.169322], [-119.5484, 49.173179], [-119.546978, 49.172848], [-119.546608, 49.171947], [-119.546179, 49.17132], [-119.545545, 49.170635], [-119.544676, 49.170014], [-119.542484, 49.169929], [-119.541307, 49.170076], [-119.54031, 49.170537], [-119.53904, 49.170907], [-119.539133, 49.172433], [-119.54013, 49.17555], [-119.539616, 49.17592], [-119.537042, 49.175943], [-119.537023, 49.178283], [-119.537118, 49.179216], [-119.536887, 49.184026], [-119.536943, 49.18449], [-119.537378, 49.184511], [-119.537339, 49.190199], [-119.535, 49.18943], [-119.535009, 49.190113], [-119.537354, 49.190695], [-119.537324, 49.194052], [-119.537016, 49.193974], [-119.53657, 49.194101], [-119.536225, 49.194056], [-119.535803, 49.194118], [-119.535142, 49.194376], [-119.534999, 49.194514], [-119.534971, 49.194758], [-119.535054, 49.195034], [-119.535422, 49.195513], [-119.535961, 49.196121], [-119.536605, 49.196673], [-119.53729, 49.197555], [-119.537354, 49.199598], [-119.537195, 49.204575], [-119.538846, 49.204345], [-119.539109, 49.204767], [-119.542078, 49.204055], [-119.542914, 49.203769], [-119.54489, 49.202727], [-119.545207, 49.20298], [-119.545757, 49.203246], [-119.547291, 49.204163], [-119.54906, 49.203176], [-119.54929, 49.203291]]]]}, "properties": {"name": "Oliver", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Oliver", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907014", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.606369, 49.113816], [-119.607166, 49.113826], [-119.609465, 49.114016], [-119.609803, 49.113954], [-119.610526, 49.113939], [-119.630927, 49.114102], [-119.631339, 49.117687], [-119.637103, 49.117489], [-119.637048, 49.1213], [-119.669627, 49.120931], [-119.670376, 49.108017], [-119.670624, 49.099296], [-119.648542, 49.099115], [-119.648266, 49.088192], [-119.637324, 49.087897], [-119.637003, 49.083221], [-119.636878, 49.073689], [-119.626567, 49.073468], [-119.626348, 49.055629], [-119.626129, 49.000079], [-119.535987, 49.000038], [-119.456482, 49.000136], [-119.441884, 49.000055], [-119.294928, 49.000045], [-119.295173, 49.00796], [-119.301514, 49.008071], [-119.301478, 49.011974], [-119.302025, 49.049048], [-119.301826, 49.073252], [-119.300386, 49.081783], [-119.298647, 49.083439], [-119.297462, 49.08641], [-119.294747, 49.087058], [-119.291119, 49.087567], [-119.290221, 49.089264], [-119.291778, 49.093068], [-119.292455, 49.097553], [-119.288036, 49.100556], [-119.28384, 49.100645], [-119.277619, 49.100044], [-119.274036, 49.100361], [-119.273482, 49.101122], [-119.276807, 49.107137], [-119.277042, 49.107192], [-119.277109, 49.110379], [-119.271466, 49.113918], [-119.270425, 49.115654], [-119.271771, 49.118091], [-119.276268, 49.122836], [-119.279625, 49.127629], [-119.28278, 49.131357], [-119.284987, 49.133476], [-119.284589, 49.13484], [-119.27534, 49.137749], [-119.267807, 49.139369], [-119.263409, 49.140696], [-119.263458, 49.143916], [-119.263296, 49.146594], [-119.261333, 49.152044], [-119.259346, 49.153591], [-119.257074, 49.156408], [-119.256255, 49.159977], [-119.255979, 49.161885], [-119.261262, 49.159565], [-119.261733, 49.158422], [-119.262563, 49.157389], [-119.263194, 49.156791], [-119.263715, 49.156475], [-119.264542, 49.156261], [-119.265239, 49.155897], [-119.265841, 49.155246], [-119.267362, 49.154326], [-119.267739, 49.154165], [-119.268393, 49.154071], [-119.269145, 49.153751], [-119.270224, 49.15364], [-119.27068, 49.153685], [-119.271141, 49.153595], [-119.271342, 49.15351], [-119.272344, 49.152635], [-119.273067, 49.152234], [-119.273344, 49.151986], [-119.274297, 49.151517], [-119.274609, 49.151151], [-119.27449, 49.150659], [-119.274546, 49.150361], [-119.27476, 49.150267], [-119.27554, 49.150233], [-119.275756, 49.150157], [-119.276219, 49.149447], [-119.276591, 49.149242], [-119.277226, 49.149012], [-119.27733, 49.148876], [-119.277295, 49.148139], [-119.277573, 49.1479], [-119.277656, 49.147601], [-119.278452, 49.147063], [-119.278536, 49.145856], [-119.279544, 49.145153], [-119.280036, 49.14507], [-119.283043, 49.144858], [-119.283277, 49.144881], [-119.28385, 49.14513], [-119.284537, 49.145153], [-119.284972, 49.145063], [-119.285755, 49.144795], [-119.286103, 49.144608], [-119.286185, 49.144328], [-119.286121, 49.143844], [-119.286027, 49.143566], [-119.285811, 49.14332], [-119.285823, 49.143013], [-119.286084, 49.142739], [-119.287186, 49.142203], [-119.28782, 49.141723], [-119.288412, 49.14145], [-119.288544, 49.14133], [-119.288638, 49.141014], [-119.288673, 49.140258], [-119.288596, 49.139188], [-119.2897, 49.137583], [-119.289838, 49.136671], [-119.289874, 49.136599], [-119.290157, 49.136459], [-119.290259, 49.135998], [-119.290957, 49.1354], [-119.292403, 49.134615], [-119.292464, 49.134146], [-119.292568, 49.134027], [-119.292781, 49.133933], [-119.292922, 49.133686], [-119.293809, 49.133319], [-119.294343, 49.133011], [-119.295031, 49.132772], [-119.29534, 49.132335], [-119.295377, 49.131956], [-119.295904, 49.131779], [-119.295834, 49.131145], [-119.295745, 49.131047], [-119.296049, 49.130601], [-119.299337, 49.128749], [-119.308508, 49.123316], [-119.321266, 49.116909], [-119.326586, 49.113847], [-119.342266, 49.114022], [-119.357945, 49.111406], [-119.357886, 49.11182], [-119.357721, 49.112121], [-119.357097, 49.112565], [-119.356332, 49.11286], [-119.356126, 49.113133], [-119.356105, 49.113558], [-119.356299, 49.113922], [-119.357069, 49.114572], [-119.35697, 49.116203], [-119.357187, 49.117044], [-119.357316, 49.117167], [-119.358733, 49.117857], [-119.359012, 49.11796], [-119.36012, 49.118181], [-119.36239, 49.118934], [-119.364134, 49.119295], [-119.365008, 49.119826], [-119.365204, 49.119903], [-119.365657, 49.119938], [-119.366719, 49.120321], [-119.368396, 49.120423], [-119.36938, 49.120393], [-119.370043, 49.120487], [-119.370654, 49.120672], [-119.371518, 49.121222], [-119.372499, 49.121993], [-119.373181, 49.121925], [-119.373625, 49.122023], [-119.373976, 49.122206], [-119.374265, 49.122479], [-119.374629, 49.122651], [-119.374942, 49.122888], [-119.375712, 49.12325], [-119.376268, 49.123688], [-119.377904, 49.124373], [-119.379262, 49.124651], [-119.380273, 49.124596], [-119.380964, 49.124725], [-119.381403, 49.124742], [-119.382332, 49.12467], [-119.383432, 49.124413], [-119.384183, 49.124379], [-119.38598, 49.124692], [-119.386244, 49.124768], [-119.386543, 49.124996], [-119.386751, 49.125037], [-119.387259, 49.125063], [-119.388241, 49.125239], [-119.389078, 49.125268], [-119.389811, 49.125396], [-119.390056, 49.125652], [-119.390707, 49.125773], [-119.391056, 49.125929], [-119.3912, 49.12606], [-119.391257, 49.126374], [-119.391463, 49.126658], [-119.392572, 49.127525], [-119.392867, 49.127959], [-119.393337, 49.128293], [-119.394684, 49.128652], [-119.395582, 49.129073], [-119.395998, 49.129163], [-119.397113, 49.129275], [-119.398477, 49.12913], [-119.39934, 49.128843], [-119.399599, 49.128818], [-119.400277, 49.128931], [-119.400908, 49.12925], [-119.401201, 49.129325], [-119.40531, 49.129258], [-119.406917, 49.129305], [-119.407473, 49.129213], [-119.408474, 49.128904], [-119.408849, 49.128761], [-119.409366, 49.128381], [-119.409921, 49.128226], [-119.410551, 49.127942], [-119.411859, 49.127744], [-119.412667, 49.127737], [-119.414015, 49.127565], [-119.414716, 49.127299], [-119.415076, 49.127092], [-119.416591, 49.125819], [-119.41685, 49.125517], [-119.417318, 49.125265], [-119.417832, 49.124605], [-119.418291, 49.124425], [-119.419668, 49.123694], [-119.420964, 49.123308], [-119.421826, 49.123271], [-119.422297, 49.123082], [-119.422895, 49.12271], [-119.423997, 49.12256], [-119.424619, 49.122377], [-119.4249, 49.122209], [-119.425345, 49.121767], [-119.425491, 49.121152], [-119.425921, 49.120666], [-119.426375, 49.120423], [-119.427315, 49.120052], [-119.429097, 49.11978], [-119.430247, 49.119712], [-119.430882, 49.119797], [-119.431709, 49.120176], [-119.432357, 49.120576], [-119.433126, 49.120884], [-119.433544, 49.120992], [-119.437551, 49.121105], [-119.438323, 49.12117], [-119.440442, 49.121089], [-119.441174, 49.120894], [-119.442062, 49.12083], [-119.442522, 49.120982], [-119.442938, 49.121343], [-119.443952, 49.122472], [-119.444263, 49.122663], [-119.445243, 49.123083], [-119.445615, 49.123382], [-119.446422, 49.123634], [-119.447443, 49.123775], [-119.448852, 49.12379], [-119.449265, 49.073237], [-119.44912, 49.066671], [-119.42187, 49.066596], [-119.421521, 49.036359], [-119.423737, 49.036626], [-119.429559, 49.036828], [-119.437204, 49.036677], [-119.436588, 49.035506], [-119.436464, 49.034391], [-119.435185, 49.029905], [-119.435356, 49.02788], [-119.432675, 49.027833], [-119.431113, 49.027675], [-119.431082, 49.027032], [-119.431598, 49.025188], [-119.432677, 49.023412], [-119.432335, 49.022813], [-119.432916, 49.022574], [-119.433247, 49.021978], [-119.432912, 49.021214], [-119.433193, 49.020809], [-119.43325, 49.020598], [-119.43308, 49.019923], [-119.433258, 49.019147], [-119.433345, 49.01692], [-119.433205, 49.01693], [-119.432113, 49.014639], [-119.432298, 49.014804], [-119.432531, 49.014906], [-119.43364, 49.014963], [-119.433444, 49.013847], [-119.433861, 49.013579], [-119.434097, 49.013083], [-119.43398, 49.012705], [-119.434526, 49.012588], [-119.434598, 49.013008], [-119.43515, 49.01288], [-119.435083, 49.011169], [-119.43715, 49.010966], [-119.437217, 49.010814], [-119.437703, 49.010293], [-119.439646, 49.010373], [-119.442839, 49.010635], [-119.442691, 49.011082], [-119.439108, 49.018623], [-119.438954, 49.019837], [-119.439973, 49.020468], [-119.459087, 49.026023], [-119.459958, 49.026286], [-119.46059, 49.026544], [-119.460895, 49.026439], [-119.459581, 49.024667], [-119.463707, 49.023909], [-119.464921, 49.023785], [-119.46554, 49.023607], [-119.465667, 49.023304], [-119.465241, 49.022945], [-119.462779, 49.022489], [-119.461898, 49.021937], [-119.461489, 49.021247], [-119.461816, 49.020539], [-119.460868, 49.019589], [-119.460898, 49.018166], [-119.45968, 49.016692], [-119.460356, 49.014573], [-119.459992, 49.014474], [-119.459877, 49.014289], [-119.461014, 49.014024], [-119.461621, 49.013362], [-119.461839, 49.013274], [-119.464455, 49.01274], [-119.46458, 49.013427], [-119.46623, 49.017351], [-119.46639, 49.017564], [-119.466963, 49.018053], [-119.46734, 49.01827], [-119.468692, 49.018844], [-119.469513, 49.019368], [-119.474014, 49.022473], [-119.474463, 49.022939], [-119.474682, 49.02333], [-119.474765, 49.023672], [-119.474753, 49.024003], [-119.474625, 49.02414], [-119.474431, 49.024219], [-119.47984, 49.024082], [-119.480159, 49.023914], [-119.480232, 49.023683], [-119.480284, 49.018734], [-119.480837, 49.017016], [-119.478472, 49.01547], [-119.477812, 49.01511], [-119.477652, 49.014838], [-119.477527, 49.014397], [-119.477469, 49.013366], [-119.476913, 49.01083], [-119.475595, 49.008634], [-119.475216, 49.00785], [-119.475379, 49.006699], [-119.478141, 49.006183], [-119.483934, 49.005828], [-119.484851, 49.005428], [-119.487063, 49.007528], [-119.488935, 49.007359], [-119.490148, 49.01018], [-119.491888, 49.013136], [-119.492293, 49.013017], [-119.496253, 49.017921], [-119.494908, 49.019012], [-119.493691, 49.020853], [-119.496982, 49.028352], [-119.501592, 49.036193], [-119.505641, 49.044358], [-119.497069, 49.039306], [-119.493863, 49.041991], [-119.492517, 49.040976], [-119.490933, 49.03993], [-119.49049, 49.039561], [-119.490158, 49.039497], [-119.489674, 49.039687], [-119.488867, 49.039678], [-119.48863, 49.039593], [-119.488261, 49.039304], [-119.488225, 49.039161], [-119.488266, 49.038854], [-119.488508, 49.038255], [-119.488467, 49.037978], [-119.487989, 49.03769], [-119.486991, 49.037434], [-119.48674, 49.037096], [-119.486704, 49.036918], [-119.486859, 49.036447], [-119.486784, 49.036296], [-119.486257, 49.035901], [-119.485761, 49.0353], [-119.48534, 49.035085], [-119.48484, 49.034924], [-119.484557, 49.034732], [-119.48399, 49.033801], [-119.483824, 49.033653], [-119.483101, 49.033849], [-119.482363, 49.034128], [-119.480104, 49.035231], [-119.481151, 49.036309], [-119.478589, 49.037401], [-119.477973, 49.036947], [-119.477352, 49.037263], [-119.477066, 49.0373], [-119.476466, 49.037197], [-119.476082, 49.037217], [-119.474124, 49.038018], [-119.470669, 49.040022], [-119.471319, 49.040717], [-119.47174, 49.04096], [-119.472058, 49.041092], [-119.473627, 49.041503], [-119.470927, 49.04477], [-119.468918, 49.04465], [-119.466762, 49.04418], [-119.465721, 49.043827], [-119.464784, 49.043395], [-119.463773, 49.042789], [-119.463495, 49.042471], [-119.463273, 49.042028], [-119.463351, 49.041448], [-119.464469, 49.040835], [-119.462504, 49.038342], [-119.461108, 49.035819], [-119.459035, 49.033984], [-119.458869, 49.030575], [-119.458174, 49.029837], [-119.456867, 49.029578], [-119.454481, 49.03008], [-119.451766, 49.030988], [-119.450985, 49.03157], [-119.449903, 49.032648], [-119.448479, 49.035242], [-119.447524, 49.036752], [-119.445068, 49.036785], [-119.444876, 49.037281], [-119.444414, 49.037902], [-119.444169, 49.038456], [-119.444149, 49.038925], [-119.443812, 49.040137], [-119.444014, 49.040593], [-119.443826, 49.041504], [-119.443666, 49.041894], [-119.443767, 49.042568], [-119.443856, 49.042709], [-119.444709, 49.04334], [-119.444699, 49.043699], [-119.445018, 49.044098], [-119.445388, 49.044351], [-119.446197, 49.044639], [-119.446352, 49.044744], [-119.446516, 49.04501], [-119.446741, 49.045159], [-119.446707, 49.045285], [-119.447214, 49.045886], [-119.447697, 49.046767], [-119.448308, 49.047248], [-119.448952, 49.047541], [-119.450384, 49.047996], [-119.451802, 49.048155], [-119.452749, 49.048494], [-119.453318, 49.048933], [-119.453916, 49.049126], [-119.454584, 49.050183], [-119.455017, 49.050623], [-119.455512, 49.050972], [-119.456194, 49.051174], [-119.456675, 49.0512], [-119.459488, 49.051078], [-119.461145, 49.050826], [-119.461599, 49.050843], [-119.461767, 49.050948], [-119.461801, 49.051073], [-119.461792, 49.052297], [-119.461861, 49.052564], [-119.462054, 49.052866], [-119.461989, 49.052931], [-119.46178, 49.052864], [-119.461664, 49.052461], [-119.461562, 49.052347], [-119.461315, 49.052315], [-119.461235, 49.052354], [-119.461116, 49.052463], [-119.461033, 49.052735], [-119.461179, 49.052876], [-119.4614, 49.053493], [-119.461572, 49.053624], [-119.462635, 49.054096], [-119.464028, 49.054605], [-119.464599, 49.054531], [-119.464768, 49.054627], [-119.464948, 49.054631], [-119.465925, 49.054484], [-119.466058, 49.05441], [-119.466082, 49.054319], [-119.465996, 49.054258], [-119.465568, 49.054187], [-119.465551, 49.054133], [-119.466027, 49.054033], [-119.466171, 49.053895], [-119.465897, 49.05363], [-119.464708, 49.053395], [-119.464396, 49.053438], [-119.463918, 49.053745], [-119.463657, 49.053749], [-119.463135, 49.053402], [-119.462593, 49.053242], [-119.462572, 49.053117], [-119.463755, 49.053227], [-119.46485, 49.053221], [-119.46587, 49.053091], [-119.466473, 49.052835], [-119.466572, 49.052878], [-119.466629, 49.053218], [-119.466832, 49.053457], [-119.466834, 49.053737], [-119.467018, 49.053885], [-119.465808, 49.056286], [-119.465584, 49.057551], [-119.465647, 49.057702], [-119.465832, 49.057851], [-119.465983, 49.058397], [-119.466314, 49.05875], [-119.466769, 49.05909], [-119.467255, 49.059782], [-119.467916, 49.060137], [-119.469225, 49.060586], [-119.470794, 49.061002], [-119.471618, 49.061056], [-119.471985, 49.061013], [-119.472238, 49.061141], [-119.47286, 49.061245], [-119.474321, 49.061197], [-119.475068, 49.061369], [-119.475333, 49.061705], [-119.475686, 49.061932], [-119.475574, 49.06241], [-119.47572, 49.062884], [-119.476002, 49.06305], [-119.476431, 49.063156], [-119.476251, 49.064205], [-119.476306, 49.065301], [-119.476526, 49.066169], [-119.476763, 49.066515], [-119.477364, 49.067033], [-119.478623, 49.067851], [-119.479808, 49.068302], [-119.4816, 49.068516], [-119.48198, 49.068732], [-119.482507, 49.068848], [-119.482837, 49.068912], [-119.484597, 49.069037], [-119.484925, 49.069011], [-119.485003, 49.068947], [-119.485566, 49.068962], [-119.486151, 49.068868], [-119.487987, 49.068352], [-119.488886, 49.068017], [-119.489875, 49.067806], [-119.490833, 49.067777], [-119.492058, 49.067634], [-119.492828, 49.067707], [-119.494053, 49.067564], [-119.495119, 49.067523], [-119.497025, 49.068111], [-119.496919, 49.068177], [-119.496123, 49.068158], [-119.495865, 49.068217], [-119.495033, 49.06881], [-119.494683, 49.068944], [-119.494476, 49.068905], [-119.49446, 49.068842], [-119.49452, 49.068697], [-119.494744, 49.068511], [-119.494701, 49.068467], [-119.493647, 49.068221], [-119.493415, 49.068234], [-119.493831, 49.068585], [-119.493999, 49.06895], [-119.493417, 49.069332], [-119.493106, 49.069698], [-119.493049, 49.069934], [-119.493117, 49.070473], [-119.493384, 49.07088], [-119.493942, 49.071102], [-119.494683, 49.071139], [-119.496111, 49.070928], [-119.49654, 49.071001], [-119.496686, 49.070917], [-119.496891, 49.070903], [-119.497902, 49.071123], [-119.498628, 49.071135], [-119.498827, 49.071293], [-119.499652, 49.071618], [-119.500601, 49.071713], [-119.502659, 49.071227], [-119.50307, 49.071254], [-119.503464, 49.071183], [-119.504081, 49.070918], [-119.504757, 49.070481], [-119.504904, 49.070433], [-119.505192, 49.070444], [-119.505581, 49.070273], [-119.50583, 49.070296], [-119.506501, 49.070595], [-119.507071, 49.070494], [-119.50751, 49.070484], [-119.50816, 49.070874], [-119.50826, 49.070971], [-119.5082, 49.07117], [-119.508241, 49.071413], [-119.507952, 49.071662], [-119.507879, 49.071834], [-119.507995, 49.072237], [-119.508107, 49.072278], [-119.508504, 49.07227], [-119.5087, 49.072384], [-119.508949, 49.072674], [-119.508907, 49.073233], [-119.509149, 49.073669], [-119.509579, 49.074064], [-119.509588, 49.074235], [-119.509291, 49.074574], [-119.509211, 49.074892], [-119.509236, 49.075116], [-119.509522, 49.075658], [-119.509594, 49.076259], [-119.510207, 49.076732], [-119.510905, 49.076987], [-119.511273, 49.077222], [-119.511633, 49.077295], [-119.512619, 49.077133], [-119.515833, 49.080417], [-119.515371, 49.094701], [-119.526176, 49.094347], [-119.534161, 49.095807], [-119.54286, 49.095481], [-119.550025, 49.101136], [-119.557144, 49.107591], [-119.559413, 49.106644], [-119.560015, 49.10665], [-119.560282, 49.106539], [-119.560894, 49.105995], [-119.561897, 49.105566], [-119.560727, 49.10464], [-119.558629, 49.103449], [-119.557051, 49.102275], [-119.556095, 49.101195], [-119.55583, 49.100543], [-119.552997, 49.091586], [-119.552534, 49.09036], [-119.551991, 49.089633], [-119.551068, 49.088923], [-119.547117, 49.084876], [-119.546403, 49.084404], [-119.546093, 49.081184], [-119.559221, 49.081288], [-119.559742, 49.090433], [-119.564527, 49.095781], [-119.570109, 49.095871], [-119.570301, 49.092251], [-119.578029, 49.092008], [-119.5818, 49.09195], [-119.59319, 49.092258], [-119.592988, 49.094628], [-119.604036, 49.094628], [-119.604115, 49.114417], [-119.604844, 49.114525], [-119.605048, 49.114485], [-119.605683, 49.114056], [-119.606045, 49.113887], [-119.606369, 49.113816]]]]}, "properties": {"name": "Okanagan-Similkameen A", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen A", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907022", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.538405, 49.381392], [-120.537327, 49.383682], [-120.546974, 49.385181], [-120.546226, 49.383757], [-120.544908, 49.382696], [-120.543492, 49.382067], [-120.541438, 49.381257], [-120.541242, 49.380917], [-120.541486, 49.380493], [-120.542429, 49.380031], [-120.544464, 49.379534], [-120.546077, 49.378732], [-120.547624, 49.377842], [-120.548913, 49.377507], [-120.548628, 49.375751], [-120.552466, 49.375935], [-120.553605, 49.371232], [-120.553076, 49.370908], [-120.549613, 49.370606], [-120.549122, 49.367136], [-120.548873, 49.3668], [-120.552063, 49.361901], [-120.552268, 49.36093], [-120.551914, 49.359985], [-120.555257, 49.359192], [-120.552998, 49.356022], [-120.550082, 49.353407], [-120.561325, 49.352174], [-120.561622, 49.34517], [-120.563072, 49.344525], [-120.563655, 49.34185], [-120.565842, 49.342073], [-120.568172, 49.336405], [-120.5625, 49.335152], [-120.564051, 49.334203], [-120.564884, 49.333228], [-120.564832, 49.332635], [-120.562638, 49.327892], [-120.548241, 49.329553], [-120.541762, 49.321555], [-120.545066, 49.321581], [-120.543778, 49.314511], [-120.550485, 49.307922], [-120.553581, 49.307934], [-120.55349, 49.304191], [-120.547186, 49.303739], [-120.546417, 49.303361], [-120.544035, 49.288452], [-120.54302, 49.288444], [-120.541643, 49.28822], [-120.539341, 49.285517], [-120.538355, 49.286093], [-120.534508, 49.285529], [-120.535114, 49.281576], [-120.532504, 49.280093], [-120.533696, 49.279386], [-120.530447, 49.277311], [-120.527511, 49.277979], [-120.526473, 49.27712], [-120.521424, 49.279839], [-120.504209, 49.27783], [-120.503808, 49.285477], [-120.499974, 49.286294], [-120.501058, 49.29677], [-120.504711, 49.296935], [-120.50417, 49.301526], [-120.503312, 49.301731], [-120.50232, 49.306531], [-120.503008, 49.306644], [-120.502789, 49.307439], [-120.503395, 49.307577], [-120.50313, 49.31063], [-120.50252, 49.310625], [-120.503094, 49.316315], [-120.504017, 49.316881], [-120.503746, 49.320876], [-120.501973, 49.320771], [-120.502098, 49.319106], [-120.498911, 49.319227], [-120.498513, 49.32083], [-120.493863, 49.321265], [-120.494533, 49.32844], [-120.496599, 49.327566], [-120.497535, 49.328526], [-120.498309, 49.328503], [-120.499191, 49.327708], [-120.501637, 49.328265], [-120.502306, 49.335589], [-120.500456, 49.334769], [-120.49888, 49.336154], [-120.494232, 49.334149], [-120.493866, 49.334265], [-120.493237, 49.333873], [-120.492772, 49.334315], [-120.489857, 49.332206], [-120.48254, 49.331635], [-120.482475, 49.334758], [-120.485206, 49.334783], [-120.485301, 49.336747], [-120.488845, 49.339248], [-120.489537, 49.338808], [-120.491906, 49.340941], [-120.491764, 49.341208], [-120.492795, 49.34199], [-120.493544, 49.343157], [-120.493861, 49.343279], [-120.495278, 49.345196], [-120.494934, 49.346412], [-120.492427, 49.348792], [-120.491412, 49.349651], [-120.484075, 49.353494], [-120.479156, 49.352979], [-120.478187, 49.356879], [-120.485099, 49.357484], [-120.488975, 49.36291], [-120.465605, 49.359768], [-120.463309, 49.373788], [-120.494606, 49.377406], [-120.494785, 49.381925], [-120.497562, 49.384374], [-120.496897, 49.38701], [-120.524323, 49.390578], [-120.526656, 49.382023], [-120.530652, 49.382644], [-120.531693, 49.380337], [-120.538405, 49.381392]]], [[[-120.503345, 49.458003], [-120.503094, 49.458565], [-120.503685, 49.458381], [-120.503815, 49.457867], [-120.502516, 49.457622], [-120.502492, 49.457742], [-120.501457, 49.45756], [-120.501359, 49.457737], [-120.501193, 49.457712], [-120.501069, 49.457942], [-120.502249, 49.458365], [-120.502815, 49.457912], [-120.503345, 49.458003]]], [[[-120.486057, 49.48054], [-120.485706, 49.481223], [-120.48633, 49.482084], [-120.48669, 49.483815], [-120.501756, 49.484177], [-120.50332, 49.484128], [-120.503567, 49.478908], [-120.503552, 49.475004], [-120.507689, 49.475237], [-120.518361, 49.469528], [-120.518987, 49.469772], [-120.519357, 49.469856], [-120.520758, 49.469999], [-120.521008, 49.469758], [-120.523226, 49.469948], [-120.522999, 49.470207], [-120.523485, 49.470333], [-120.523846, 49.470077], [-120.523335, 49.469765], [-120.521203, 49.469598], [-120.521998, 49.469084], [-120.528056, 49.469295], [-120.527774, 49.46805], [-120.527878, 49.467171], [-120.526371, 49.466853], [-120.525304, 49.46578], [-120.524019, 49.464158], [-120.522503, 49.463244], [-120.522234, 49.463317], [-120.521544, 49.462796], [-120.521112, 49.462367], [-120.520504, 49.461938], [-120.521938, 49.461374], [-120.522232, 49.461916], [-120.522942, 49.462328], [-120.524156, 49.462885], [-120.524594, 49.463496], [-120.525028, 49.463658], [-120.525456, 49.463937], [-120.525876, 49.464091], [-120.527073, 49.464971], [-120.527642, 49.465199], [-120.528272, 49.465564], [-120.528525, 49.465757], [-120.528791, 49.466213], [-120.529338, 49.46662], [-120.529822, 49.466847], [-120.529984, 49.467479], [-120.530009, 49.469182], [-120.532705, 49.469122], [-120.535912, 49.469238], [-120.53628, 49.46274], [-120.541892, 49.462734], [-120.541849, 49.458234], [-120.541972, 49.455416], [-120.538716, 49.455371], [-120.538481, 49.455537], [-120.537239, 49.455935], [-120.535788, 49.456218], [-120.534993, 49.456246], [-120.534077, 49.456058], [-120.532953, 49.455987], [-120.531124, 49.455409], [-120.530643, 49.455342], [-120.52982, 49.455402], [-120.528504, 49.455855], [-120.527968, 49.455963], [-120.526216, 49.456023], [-120.525999, 49.456099], [-120.526178, 49.455632], [-120.527377, 49.45527], [-120.528106, 49.454982], [-120.530172, 49.454397], [-120.532107, 49.453961], [-120.533848, 49.453829], [-120.534268, 49.453675], [-120.534972, 49.45306], [-120.535441, 49.452473], [-120.535724, 49.451643], [-120.534527, 49.450965], [-120.533588, 49.450309], [-120.533138, 49.449887], [-120.532563, 49.449066], [-120.532234, 49.448312], [-120.532164, 49.447871], [-120.527659, 49.449197], [-120.526353, 49.449088], [-120.527683, 49.448651], [-120.527436, 49.448299], [-120.527953, 49.448275], [-120.528045, 49.44759], [-120.528341, 49.447599], [-120.529128, 49.445356], [-120.529388, 49.444818], [-120.529879, 49.44426], [-120.529976, 49.443396], [-120.5309, 49.443467], [-120.531362, 49.44315], [-120.532076, 49.442775], [-120.533264, 49.442315], [-120.535739, 49.441412], [-120.537004, 49.441156], [-120.532651, 49.440731], [-120.529535, 49.440768], [-120.529128, 49.44251], [-120.528205, 49.443834], [-120.526938, 49.445032], [-120.525597, 49.44593], [-120.524053, 49.445779], [-120.523766, 49.445917], [-120.522582, 49.446277], [-120.520482, 49.447599], [-120.518994, 49.449346], [-120.51795, 49.450093], [-120.517113, 49.450384], [-120.5136, 49.45125], [-120.512959, 49.451381], [-120.511099, 49.451558], [-120.510094, 49.451827], [-120.509157, 49.452269], [-120.508002, 49.453169], [-120.506935, 49.45448], [-120.505698, 49.455685], [-120.505127, 49.456811], [-120.504138, 49.457859], [-120.503971, 49.458601], [-120.50347, 49.458742], [-120.502891, 49.459055], [-120.498317, 49.461149], [-120.498515, 49.460983], [-120.496687, 49.459849], [-120.495945, 49.460068], [-120.495916, 49.451292], [-120.498737, 49.449958], [-120.498491, 49.449103], [-120.492526, 49.449192], [-120.491834, 49.449164], [-120.491502, 49.453406], [-120.480553, 49.453794], [-120.477105, 49.455672], [-120.476951, 49.457231], [-120.473054, 49.457018], [-120.473262, 49.457881], [-120.473625, 49.458111], [-120.473688, 49.458355], [-120.473676, 49.458586], [-120.473084, 49.459773], [-120.476449, 49.461553], [-120.47862, 49.462073], [-120.479498, 49.461979], [-120.479964, 49.461863], [-120.48118, 49.4614], [-120.481142, 49.46183], [-120.479331, 49.462634], [-120.478755, 49.462761], [-120.481282, 49.465262], [-120.481625, 49.465228], [-120.482408, 49.465361], [-120.482421, 49.466028], [-120.48088, 49.466041], [-120.481254, 49.466671], [-120.480846, 49.466687], [-120.482217, 49.46903], [-120.482489, 49.469014], [-120.482484, 49.469293], [-120.484364, 49.469275], [-120.484688, 49.469229], [-120.484759, 49.469163], [-120.486413, 49.469315], [-120.486164, 49.473121], [-120.484498, 49.473186], [-120.484674, 49.47579], [-120.48447, 49.47809], [-120.486057, 49.48054]]]]}, "properties": {"name": "Princeton", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Princeton", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907024", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.791582, 49.195991], [-119.791276, 49.193877], [-119.791, 49.189895], [-119.789484, 49.190007], [-119.789097, 49.183826], [-119.787153, 49.184292], [-119.786735, 49.179858], [-119.786418, 49.171231], [-119.781536, 49.171416], [-119.780381, 49.169795], [-119.773968, 49.169865], [-119.773741, 49.167617], [-119.782479, 49.167552], [-119.782412, 49.131107], [-119.782489, 49.113389], [-119.760894, 49.113417], [-119.760836, 49.116648], [-119.760896, 49.117378], [-119.760748, 49.120072], [-119.760827, 49.120902], [-119.760763, 49.121454], [-119.760727, 49.130464], [-119.760586, 49.135517], [-119.759127, 49.135577], [-119.756733, 49.13584], [-119.756539, 49.135328], [-119.754799, 49.135161], [-119.754819, 49.135626], [-119.755704, 49.13682], [-119.75359, 49.136686], [-119.753831, 49.137408], [-119.754002, 49.137549], [-119.754511, 49.137815], [-119.75558, 49.138058], [-119.75575, 49.138154], [-119.756004, 49.138526], [-119.756002, 49.138732], [-119.755867, 49.139024], [-119.755981, 49.139309], [-119.755989, 49.13974], [-119.756107, 49.139873], [-119.756482, 49.139954], [-119.75653, 49.140069], [-119.756262, 49.140698], [-119.756197, 49.141751], [-119.756065, 49.142168], [-119.739298, 49.14251], [-119.738669, 49.135019], [-119.717049, 49.135399], [-119.717028, 49.113261], [-119.714667, 49.113278], [-119.714627, 49.096956], [-119.720893, 49.096979], [-119.738718, 49.096896], [-119.747704, 49.096957], [-119.74769, 49.102128], [-119.749402, 49.102146], [-119.749037, 49.09805], [-119.75656, 49.09772], [-119.757619, 49.094791], [-119.757867, 49.094738], [-119.758212, 49.09455], [-119.75883, 49.094094], [-119.759517, 49.093879], [-119.760423, 49.093921], [-119.761844, 49.093815], [-119.762543, 49.094104], [-119.762688, 49.094218], [-119.763175, 49.094351], [-119.764664, 49.094522], [-119.766608, 49.094502], [-119.768329, 49.094667], [-119.76868, 49.094821], [-119.769054, 49.095127], [-119.769981, 49.095312], [-119.770228, 49.095549], [-119.770337, 49.095554], [-119.770694, 49.095808], [-119.771046, 49.095952], [-119.771828, 49.096221], [-119.772548, 49.096366], [-119.772884, 49.09652], [-119.774043, 49.096654], [-119.774854, 49.096949], [-119.77558, 49.096923], [-119.776228, 49.096997], [-119.776527, 49.096971], [-119.77671, 49.09704], [-119.777203, 49.097037], [-119.777554, 49.096974], [-119.777916, 49.09683], [-119.778135, 49.096825], [-119.778282, 49.096749], [-119.779523, 49.096638], [-119.779774, 49.096722], [-119.780241, 49.096756], [-119.782162, 49.096773], [-119.782497, 49.096909], [-119.783281, 49.096944], [-119.784061, 49.096457], [-119.784841, 49.096214], [-119.785498, 49.095936], [-119.786193, 49.094903], [-119.786363, 49.094737], [-119.786976, 49.094435], [-119.787183, 49.094204], [-119.787276, 49.093924], [-119.787525, 49.093701], [-119.787869, 49.093513], [-119.788487, 49.093039], [-119.789117, 49.092781], [-119.789319, 49.092471], [-119.789891, 49.091944], [-119.789923, 49.091763], [-119.789844, 49.091594], [-119.790439, 49.090968], [-119.791019, 49.090558], [-119.791723, 49.090172], [-119.792248, 49.089988], [-119.792747, 49.089346], [-119.79328, 49.089081], [-119.793354, 49.088972], [-119.794299, 49.088472], [-119.794998, 49.08824], [-119.795625, 49.088161], [-119.795996, 49.087955], [-119.796587, 49.087733], [-119.797617, 49.087537], [-119.798949, 49.086867], [-119.799383, 49.086784], [-119.799674, 49.086614], [-119.80031, 49.085969], [-119.800904, 49.085828], [-119.801779, 49.085817], [-119.802454, 49.085368], [-119.802785, 49.084947], [-119.802985, 49.084843], [-119.803298, 49.084799], [-119.803836, 49.084858], [-119.804135, 49.084806], [-119.80445, 49.084582], [-119.804765, 49.084098], [-119.805255, 49.084049], [-119.805626, 49.084077], [-119.805802, 49.084027], [-119.806597, 49.08355], [-119.806922, 49.083253], [-119.80746, 49.083078], [-119.808007, 49.082795], [-119.808252, 49.082295], [-119.808515, 49.082081], [-119.809155, 49.081795], [-119.809276, 49.081504], [-119.809444, 49.081338], [-119.80987, 49.08113], [-119.810437, 49.080955], [-119.810768, 49.080775], [-119.810868, 49.080601], [-119.811132, 49.080433], [-119.812074, 49.080114], [-119.812368, 49.079747], [-119.812632, 49.079569], [-119.813173, 49.079448], [-119.813681, 49.079239], [-119.81406, 49.078932], [-119.814367, 49.078528], [-119.814653, 49.078279], [-119.815836, 49.077611], [-119.81657, 49.077052], [-119.816984, 49.076854], [-119.817895, 49.076742], [-119.818068, 49.076638], [-119.818389, 49.07628], [-119.8192, 49.076107], [-119.819813, 49.075795], [-119.820232, 49.075668], [-119.820603, 49.075218], [-119.821035, 49.074866], [-119.821633, 49.074527], [-119.821845, 49.07419], [-119.822528, 49.07366], [-119.822997, 49.073495], [-119.823233, 49.07331], [-119.824128, 49.073134], [-119.82437, 49.072831], [-119.824953, 49.072475], [-119.825873, 49.072273], [-119.826181, 49.071932], [-119.826441, 49.071917], [-119.826936, 49.071707], [-119.827113, 49.071703], [-119.827739, 49.071391], [-119.828794, 49.071149], [-119.829633, 49.070742], [-119.829984, 49.070642], [-119.830463, 49.070631], [-119.832083, 49.069755], [-119.83226, 49.069515], [-119.832621, 49.069336], [-119.832856, 49.069132], [-119.833164, 49.069008], [-119.834295, 49.068899], [-119.834872, 49.068957], [-119.835708, 49.068946], [-119.836219, 49.068789], [-119.836695, 49.068499], [-119.837198, 49.068413], [-119.840909, 49.065695], [-119.843401, 49.063966], [-119.85484, 49.05776], [-119.865455, 49.051227], [-119.871145, 49.048509], [-119.87274, 49.047555], [-119.884538, 49.046545], [-119.893014, 49.041207], [-119.892203, 49.035961], [-119.895565, 49.033964], [-119.909559, 49.02261], [-119.910084, 49.017644], [-119.918481, 49.013109], [-119.927595, 49.010625], [-119.935566, 49.007002], [-119.944701, 49.003798], [-119.946237, 49.000155], [-119.918124, 49.000094], [-119.87876, 49.000094], [-119.747951, 49.00009], [-119.747296, 49.000027], [-119.74664, 49.000034], [-119.746518, 49.000089], [-119.736885, 49.000081], [-119.734958, 49.059101], [-119.732148, 49.05901], [-119.72976, 49.080591], [-119.710646, 49.079586], [-119.710339, 49.079382], [-119.710017, 49.079004], [-119.710089, 49.078794], [-119.711778, 49.077612], [-119.712361, 49.077293], [-119.71369, 49.076262], [-119.715297, 49.074858], [-119.71618, 49.073982], [-119.716584, 49.073324], [-119.716725, 49.072908], [-119.716713, 49.072466], [-119.716587, 49.071902], [-119.71619, 49.070887], [-119.716265, 49.07074], [-119.716193, 49.070437], [-119.715692, 49.069792], [-119.714703, 49.068987], [-119.713571, 49.068564], [-119.712574, 49.068363], [-119.70901, 49.068041], [-119.708234, 49.067862], [-119.707853, 49.067664], [-119.707619, 49.067409], [-119.707734, 49.066983], [-119.707693, 49.06647], [-119.707805, 49.066036], [-119.708199, 49.065451], [-119.708492, 49.064293], [-119.708986, 49.063319], [-119.709422, 49.062786], [-119.709711, 49.062564], [-119.709884, 49.062218], [-119.710157, 49.061941], [-119.711631, 49.061097], [-119.712445, 49.060457], [-119.713097, 49.060379], [-119.713557, 49.060009], [-119.714311, 49.05954], [-119.715715, 49.058905], [-119.716856, 49.058266], [-119.717312, 49.057824], [-119.718087, 49.056455], [-119.718565, 49.055941], [-119.718209, 49.055454], [-119.718115, 49.055466], [-119.717695, 49.055061], [-119.717392, 49.054528], [-119.717043, 49.05416], [-119.717031, 49.053655], [-119.716481, 49.053389], [-119.715518, 49.052801], [-119.715302, 49.052347], [-119.715434, 49.051993], [-119.715555, 49.051207], [-119.715229, 49.050739], [-119.714934, 49.050106], [-119.714775, 49.049965], [-119.714336, 49.049689], [-119.713845, 49.049492], [-119.713252, 49.049381], [-119.712367, 49.049483], [-119.711574, 49.049736], [-119.709131, 49.049379], [-119.708714, 49.049263], [-119.708517, 49.049151], [-119.708226, 49.048347], [-119.70816, 49.04735], [-119.708233, 49.046953], [-119.708418, 49.046355], [-119.708575, 49.04618], [-119.708843, 49.046084], [-119.708951, 49.044813], [-119.710141, 49.043777], [-119.710377, 49.043367], [-119.710267, 49.043333], [-119.710305, 49.043027], [-119.710878, 49.042249], [-119.711501, 49.042125], [-119.711572, 49.041917], [-119.711605, 49.041026], [-119.711146, 49.040118], [-119.710071, 49.03946], [-119.709467, 49.039187], [-119.708538, 49.038201], [-119.70776, 49.037733], [-119.707451, 49.037362], [-119.707436, 49.036833], [-119.707523, 49.03664], [-119.707819, 49.036319], [-119.709011, 49.035581], [-119.709424, 49.035112], [-119.709987, 49.034666], [-119.710669, 49.033598], [-119.711278, 49.032244], [-119.711468, 49.031969], [-119.711525, 49.03123], [-119.711277, 49.030704], [-119.711015, 49.030414], [-119.710085, 49.029922], [-119.709045, 49.029669], [-119.708414, 49.029629], [-119.707144, 49.028931], [-119.706496, 49.028837], [-119.705204, 49.028958], [-119.704547, 49.028964], [-119.703666, 49.029111], [-119.70277, 49.029753], [-119.701379, 49.030613], [-119.700937, 49.030777], [-119.700079, 49.030851], [-119.699434, 49.03083], [-119.699267, 49.030753], [-119.69913, 49.030486], [-119.699145, 49.030261], [-119.699361, 49.029716], [-119.70024, 49.028508], [-119.700836, 49.027135], [-119.700933, 49.026395], [-119.700838, 49.025912], [-119.700867, 49.025452], [-119.700745, 49.024213], [-119.700464, 49.023032], [-119.699878, 49.021831], [-119.699134, 49.021211], [-119.698693, 49.020662], [-119.698324, 49.020429], [-119.697722, 49.019416], [-119.697542, 49.018836], [-119.697671, 49.018465], [-119.697813, 49.018308], [-119.698847, 49.017671], [-119.698855, 49.01734], [-119.699197, 49.017087], [-119.699606, 49.016548], [-119.700028, 49.01625], [-119.700336, 49.016126], [-119.701812, 49.015848], [-119.702235, 49.015856], [-119.702655, 49.015793], [-119.703026, 49.015801], [-119.704036, 49.016029], [-119.705308, 49.016026], [-119.707267, 49.015801], [-119.707907, 49.015525], [-119.707945, 49.0152], [-119.708174, 49.014646], [-119.708093, 49.014162], [-119.707921, 49.013762], [-119.707521, 49.013204], [-119.706948, 49.012705], [-119.706509, 49.012167], [-119.705746, 49.010969], [-119.704308, 49.010455], [-119.703768, 49.010332], [-119.703472, 49.010169], [-119.703193, 49.009797], [-119.702694, 49.009691], [-119.701992, 49.00933], [-119.701531, 49.00891], [-119.701365, 49.008373], [-119.701089, 49.008047], [-119.70127, 49.006864], [-119.702263, 49.006273], [-119.702295, 49.00584], [-119.701654, 49.005379], [-119.701665, 49.005083], [-119.702446, 49.004344], [-119.702503, 49.004396], [-119.702508, 49.005435], [-119.702714, 49.005228], [-119.702921, 49.004765], [-119.702978, 49.003828], [-119.703177, 49.002941], [-119.703448, 49.002377], [-119.703559, 49.001915], [-119.703539, 49.001044], [-119.70301, 49.000048], [-119.626129, 49.000079], [-119.626348, 49.055629], [-119.626567, 49.073468], [-119.636878, 49.073689], [-119.637003, 49.083221], [-119.637324, 49.087897], [-119.648266, 49.088192], [-119.648542, 49.099115], [-119.670624, 49.099296], [-119.670376, 49.108017], [-119.669627, 49.120931], [-119.670402, 49.135058], [-119.670953, 49.182437], [-119.676484, 49.182429], [-119.67639, 49.19649], [-119.716989, 49.196771], [-119.731474, 49.196351], [-119.748857, 49.196608], [-119.753308, 49.196463], [-119.775889, 49.196548], [-119.776266, 49.196474], [-119.781511, 49.196519], [-119.782226, 49.196462], [-119.789454, 49.196327], [-119.790126, 49.19622], [-119.790893, 49.195978], [-119.791582, 49.195991]], [[-119.737591, 49.18845], [-119.737626, 49.190904], [-119.736372, 49.191018], [-119.73502, 49.191382], [-119.731654, 49.192534], [-119.726465, 49.192896], [-119.726386, 49.174753], [-119.735871, 49.174873], [-119.73771, 49.174994], [-119.737816, 49.177466], [-119.737591, 49.18845]]]]}, "properties": {"name": "Okanagan-Similkameen B", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen B", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907026", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.614018, 49.298984], [-119.626708, 49.29914], [-119.670455, 49.299459], [-119.670055, 49.277595], [-119.675554, 49.277732], [-119.676247, 49.222133], [-119.676484, 49.182429], [-119.670953, 49.182437], [-119.670402, 49.135058], [-119.669627, 49.120931], [-119.637048, 49.1213], [-119.637103, 49.117489], [-119.631339, 49.117687], [-119.630927, 49.114102], [-119.610526, 49.113939], [-119.609803, 49.113954], [-119.609465, 49.114016], [-119.606561, 49.113811], [-119.606045, 49.113887], [-119.605683, 49.114056], [-119.605048, 49.114485], [-119.604844, 49.114525], [-119.604115, 49.114417], [-119.604036, 49.094628], [-119.592988, 49.094628], [-119.59319, 49.092258], [-119.5818, 49.09195], [-119.578029, 49.092008], [-119.570301, 49.092251], [-119.570109, 49.095871], [-119.564527, 49.095781], [-119.559742, 49.090433], [-119.559221, 49.081288], [-119.546093, 49.081184], [-119.546403, 49.084404], [-119.547117, 49.084876], [-119.551068, 49.088923], [-119.551991, 49.089633], [-119.552534, 49.09036], [-119.552997, 49.091586], [-119.55583, 49.100543], [-119.556095, 49.101195], [-119.557051, 49.102275], [-119.558629, 49.103449], [-119.560727, 49.10464], [-119.561897, 49.105566], [-119.560894, 49.105995], [-119.560282, 49.106539], [-119.560015, 49.10665], [-119.559413, 49.106644], [-119.557144, 49.107591], [-119.550025, 49.101136], [-119.54286, 49.095481], [-119.534161, 49.095807], [-119.526176, 49.094347], [-119.526473, 49.109469], [-119.537385, 49.109896], [-119.537454, 49.124871], [-119.548698, 49.124978], [-119.5487, 49.131583], [-119.560023, 49.131771], [-119.559434, 49.150637], [-119.559422, 49.153697], [-119.555388, 49.153905], [-119.553708, 49.154106], [-119.536558, 49.153971], [-119.537077, 49.15768], [-119.537042, 49.175943], [-119.539616, 49.17592], [-119.54013, 49.17555], [-119.539133, 49.172433], [-119.53904, 49.170907], [-119.54031, 49.170537], [-119.541307, 49.170076], [-119.542484, 49.169929], [-119.544676, 49.170014], [-119.545545, 49.170635], [-119.546179, 49.17132], [-119.546608, 49.171947], [-119.546978, 49.172848], [-119.5484, 49.173179], [-119.550758, 49.169322], [-119.551105, 49.16905], [-119.552995, 49.168076], [-119.55675, 49.170878], [-119.561007, 49.172072], [-119.560752, 49.172442], [-119.561798, 49.172692], [-119.561874, 49.172339], [-119.562907, 49.172562], [-119.563061, 49.172195], [-119.563262, 49.172036], [-119.564303, 49.171442], [-119.564955, 49.170975], [-119.569966, 49.174407], [-119.570664, 49.174155], [-119.571687, 49.173905], [-119.571752, 49.17443], [-119.574968, 49.174819], [-119.574951, 49.174932], [-119.57545, 49.175575], [-119.576319, 49.175792], [-119.574441, 49.179883], [-119.573565, 49.180051], [-119.572527, 49.179687], [-119.569728, 49.179527], [-119.569713, 49.179211], [-119.568301, 49.179231], [-119.567684, 49.17917], [-119.566507, 49.178794], [-119.563856, 49.180676], [-119.5628, 49.181785], [-119.560652, 49.182916], [-119.560928, 49.183186], [-119.559114, 49.184809], [-119.560926, 49.185625], [-119.558647, 49.187596], [-119.556838, 49.186841], [-119.553354, 49.189896], [-119.553648, 49.190289], [-119.553311, 49.190623], [-119.552387, 49.191228], [-119.552725, 49.192304], [-119.553116, 49.192201], [-119.55538, 49.195525], [-119.555753, 49.196352], [-119.555807, 49.196691], [-119.551634, 49.195287], [-119.552225, 49.196878], [-119.55255, 49.198103], [-119.552543, 49.199049], [-119.55243, 49.19978], [-119.552223, 49.200559], [-119.551548, 49.201842], [-119.550812, 49.202749], [-119.550107, 49.203448], [-119.549657, 49.203777], [-119.549532, 49.203697], [-119.54929, 49.203291], [-119.54906, 49.203176], [-119.547291, 49.204163], [-119.545757, 49.203246], [-119.545207, 49.20298], [-119.54489, 49.202727], [-119.542914, 49.203769], [-119.542078, 49.204055], [-119.539109, 49.204767], [-119.538846, 49.204345], [-119.537195, 49.204575], [-119.537292, 49.230156], [-119.53721, 49.231996], [-119.537381, 49.234881], [-119.537294, 49.237045], [-119.537307, 49.240855], [-119.533125, 49.240823], [-119.529883, 49.240911], [-119.523929, 49.240719], [-119.520088, 49.24084], [-119.448827, 49.240755], [-119.448695, 49.194473], [-119.449665, 49.169241], [-119.448852, 49.12379], [-119.447443, 49.123775], [-119.446422, 49.123634], [-119.445615, 49.123382], [-119.445243, 49.123083], [-119.444263, 49.122663], [-119.443952, 49.122472], [-119.442938, 49.121343], [-119.442522, 49.120982], [-119.442062, 49.12083], [-119.441174, 49.120894], [-119.440442, 49.121089], [-119.438323, 49.12117], [-119.437551, 49.121105], [-119.433544, 49.120992], [-119.433126, 49.120884], [-119.432357, 49.120576], [-119.431709, 49.120176], [-119.430882, 49.119797], [-119.430247, 49.119712], [-119.429097, 49.11978], [-119.427315, 49.120052], [-119.426375, 49.120423], [-119.425921, 49.120666], [-119.425491, 49.121152], [-119.425345, 49.121767], [-119.4249, 49.122209], [-119.424619, 49.122377], [-119.423997, 49.12256], [-119.422895, 49.12271], [-119.422297, 49.123082], [-119.421826, 49.123271], [-119.420964, 49.123308], [-119.419668, 49.123694], [-119.418291, 49.124425], [-119.417832, 49.124605], [-119.417318, 49.125265], [-119.41685, 49.125517], [-119.416591, 49.125819], [-119.415076, 49.127092], [-119.414716, 49.127299], [-119.414015, 49.127565], [-119.412667, 49.127737], [-119.411859, 49.127744], [-119.410551, 49.127942], [-119.409921, 49.128226], [-119.409366, 49.128381], [-119.408849, 49.128761], [-119.408474, 49.128904], [-119.407473, 49.129213], [-119.406917, 49.129305], [-119.40531, 49.129258], [-119.401201, 49.129325], [-119.400908, 49.12925], [-119.400277, 49.128931], [-119.399599, 49.128818], [-119.39934, 49.128843], [-119.398477, 49.12913], [-119.397318, 49.129263], [-119.395998, 49.129163], [-119.395582, 49.129073], [-119.394684, 49.128652], [-119.393337, 49.128293], [-119.393124, 49.12817], [-119.392867, 49.127959], [-119.392572, 49.127525], [-119.391347, 49.126534], [-119.3912, 49.12606], [-119.391056, 49.125929], [-119.390707, 49.125773], [-119.390056, 49.125652], [-119.389811, 49.125396], [-119.389078, 49.125268], [-119.388241, 49.125239], [-119.387259, 49.125063], [-119.386751, 49.125037], [-119.386543, 49.124996], [-119.386244, 49.124768], [-119.38598, 49.124692], [-119.384183, 49.124379], [-119.383432, 49.124413], [-119.382332, 49.12467], [-119.381403, 49.124742], [-119.380964, 49.124725], [-119.380273, 49.124596], [-119.379262, 49.124651], [-119.377904, 49.124373], [-119.376268, 49.123688], [-119.375712, 49.12325], [-119.374942, 49.122888], [-119.374629, 49.122651], [-119.374265, 49.122479], [-119.373976, 49.122206], [-119.373625, 49.122023], [-119.373181, 49.121925], [-119.372499, 49.121993], [-119.371518, 49.121222], [-119.370654, 49.120672], [-119.370043, 49.120487], [-119.36938, 49.120393], [-119.368396, 49.120423], [-119.366719, 49.120321], [-119.365657, 49.119938], [-119.365204, 49.119903], [-119.365008, 49.119826], [-119.364134, 49.119295], [-119.36239, 49.118934], [-119.36012, 49.118181], [-119.359012, 49.11796], [-119.358733, 49.117857], [-119.357316, 49.117167], [-119.357187, 49.117044], [-119.35697, 49.116203], [-119.357069, 49.114572], [-119.356299, 49.113922], [-119.356105, 49.113558], [-119.356126, 49.113133], [-119.356332, 49.11286], [-119.357097, 49.112565], [-119.357721, 49.112121], [-119.357886, 49.11182], [-119.357945, 49.111406], [-119.342266, 49.114022], [-119.326586, 49.113847], [-119.321266, 49.116909], [-119.308508, 49.123316], [-119.299337, 49.128749], [-119.296049, 49.130601], [-119.295745, 49.131047], [-119.295834, 49.131145], [-119.295904, 49.131779], [-119.295377, 49.131956], [-119.29534, 49.132335], [-119.295031, 49.132772], [-119.294343, 49.133011], [-119.293809, 49.133319], [-119.292922, 49.133686], [-119.292781, 49.133933], [-119.292568, 49.134027], [-119.292464, 49.134146], [-119.292403, 49.134615], [-119.290957, 49.1354], [-119.290259, 49.135998], [-119.290157, 49.136459], [-119.289874, 49.136599], [-119.289838, 49.136671], [-119.2897, 49.137583], [-119.288596, 49.139188], [-119.288673, 49.140258], [-119.288638, 49.141014], [-119.288544, 49.14133], [-119.288412, 49.14145], [-119.28782, 49.141723], [-119.287186, 49.142203], [-119.286084, 49.142739], [-119.285823, 49.143013], [-119.285811, 49.14332], [-119.286089, 49.14371], [-119.286185, 49.144328], [-119.286103, 49.144608], [-119.285971, 49.144711], [-119.284972, 49.145063], [-119.284537, 49.145153], [-119.28385, 49.14513], [-119.283277, 49.144881], [-119.283043, 49.144858], [-119.280036, 49.14507], [-119.279544, 49.145153], [-119.278536, 49.145856], [-119.278452, 49.147063], [-119.277656, 49.147601], [-119.277573, 49.1479], [-119.277295, 49.148139], [-119.27733, 49.148876], [-119.277226, 49.149012], [-119.276591, 49.149242], [-119.276219, 49.149447], [-119.275756, 49.150157], [-119.27554, 49.150233], [-119.27476, 49.150267], [-119.274546, 49.150361], [-119.27449, 49.150659], [-119.274609, 49.151151], [-119.274297, 49.151517], [-119.273344, 49.151986], [-119.273067, 49.152234], [-119.272344, 49.152635], [-119.271342, 49.15351], [-119.271141, 49.153595], [-119.27068, 49.153685], [-119.270224, 49.15364], [-119.269145, 49.153751], [-119.268393, 49.154071], [-119.267739, 49.154165], [-119.267362, 49.154326], [-119.265841, 49.155246], [-119.265239, 49.155897], [-119.264542, 49.156261], [-119.263715, 49.156475], [-119.263194, 49.156791], [-119.262563, 49.157389], [-119.261733, 49.158422], [-119.261262, 49.159565], [-119.255979, 49.161885], [-119.254775, 49.165236], [-119.254368, 49.165669], [-119.242357, 49.16948], [-119.235678, 49.179641], [-119.228932, 49.183029], [-119.221769, 49.184292], [-119.220794, 49.184886], [-119.217903, 49.193741], [-119.217221, 49.194613], [-119.211401, 49.197481], [-119.19724, 49.199218], [-119.189114, 49.198332], [-119.180984, 49.204436], [-119.181565, 49.207528], [-119.180913, 49.210561], [-119.178433, 49.213442], [-119.176248, 49.21525], [-119.179144, 49.216156], [-119.180478, 49.218313], [-119.186927, 49.216964], [-119.192474, 49.216229], [-119.195944, 49.215988], [-119.198095, 49.216448], [-119.202742, 49.218599], [-119.206002, 49.21967], [-119.210568, 49.221374], [-119.212917, 49.222442], [-119.216124, 49.2251], [-119.219983, 49.228979], [-119.222796, 49.230183], [-119.228452, 49.233132], [-119.233827, 49.23644], [-119.237389, 49.238943], [-119.230849, 49.246939], [-119.23291, 49.255321], [-119.228672, 49.263049], [-119.225126, 49.265107], [-119.222687, 49.269646], [-119.221969, 49.273541], [-119.220585, 49.276098], [-119.213356, 49.285698], [-119.209136, 49.287905], [-119.206518, 49.289106], [-119.202818, 49.29119], [-119.18936, 49.296755], [-119.186821, 49.298246], [-119.182437, 49.302234], [-119.180399, 49.304279], [-119.178111, 49.306046], [-119.175537, 49.308453], [-119.175043, 49.310026], [-119.175644, 49.311188], [-119.177385, 49.312287], [-119.186878, 49.316763], [-119.201288, 49.322068], [-119.205782, 49.323928], [-119.207888, 49.325391], [-119.208139, 49.326738], [-119.207617, 49.328004], [-119.206248, 49.33103], [-119.204666, 49.333568], [-119.203409, 49.337113], [-119.20202, 49.339315], [-119.202598, 49.341947], [-119.205165, 49.343392], [-119.206903, 49.344031], [-119.214397, 49.331186], [-119.215327, 49.330313], [-119.215438, 49.330024], [-119.215493, 49.329428], [-119.215996, 49.328087], [-119.216407, 49.327405], [-119.21697, 49.326755], [-119.217486, 49.325999], [-119.217941, 49.32509], [-119.218251, 49.324635], [-119.218535, 49.323883], [-119.21899, 49.323307], [-119.219128, 49.322719], [-119.219681, 49.321872], [-119.21993, 49.321265], [-119.220818, 49.320204], [-119.220735, 49.318955], [-119.220489, 49.318384], [-119.220517, 49.31779], [-119.220799, 49.317344], [-119.220868, 49.317018], [-119.220812, 49.316723], [-119.220694, 49.316545], [-119.220496, 49.315164], [-119.220496, 49.314876], [-119.220618, 49.31455], [-119.220537, 49.314254], [-119.220644, 49.313919], [-119.220623, 49.313739], [-119.220146, 49.311976], [-119.220089, 49.311375], [-119.219652, 49.310492], [-119.219297, 49.309357], [-119.219368, 49.308438], [-119.219266, 49.306785], [-119.219006, 49.306195], [-119.218696, 49.305779], [-119.217788, 49.305121], [-119.217476, 49.302474], [-119.217538, 49.301718], [-119.217879, 49.301323], [-119.217988, 49.301007], [-119.217857, 49.300541], [-119.217817, 49.299966], [-119.217973, 49.298245], [-119.218348, 49.297374], [-119.218278, 49.296737], [-119.218499, 49.295526], [-119.218367, 49.294135], [-119.218823, 49.292974], [-119.219086, 49.291486], [-119.219703, 49.290214], [-119.219856, 49.289644], [-119.219776, 49.289088], [-119.220033, 49.288354], [-119.220227, 49.288072], [-119.220288, 49.287631], [-119.220531, 49.287202], [-119.220987, 49.286637], [-119.221519, 49.285637], [-119.22172, 49.284903], [-119.222401, 49.284134], [-119.222484, 49.283828], [-119.222795, 49.283416], [-119.22276, 49.282931], [-119.222849, 49.282777], [-119.223326, 49.282398], [-119.223712, 49.281509], [-119.224482, 49.280551], [-119.224563, 49.280243], [-119.224563, 49.279614], [-119.225195, 49.27898], [-119.225622, 49.278108], [-119.226131, 49.277802], [-119.226165, 49.277621], [-119.225858, 49.27724], [-119.225637, 49.276597], [-119.225636, 49.275939], [-119.225835, 49.275486], [-119.225964, 49.275331], [-119.226312, 49.275118], [-119.226521, 49.27487], [-119.226598, 49.274724], [-119.226617, 49.274257], [-119.226755, 49.273967], [-119.227912, 49.272775], [-119.228064, 49.272457], [-119.228192, 49.271689], [-119.228359, 49.271389], [-119.228172, 49.27062], [-119.228385, 49.270147], [-119.228713, 49.26979], [-119.22876, 49.269646], [-119.228748, 49.269348], [-119.228311, 49.268197], [-119.22842, 49.267565], [-119.22885, 49.26671], [-119.228746, 49.266245], [-119.228778, 49.266074], [-119.229256, 49.26539], [-119.229851, 49.264856], [-119.229952, 49.264674], [-119.229948, 49.264252], [-119.230128, 49.263979], [-119.231016, 49.263415], [-119.23105, 49.263079], [-119.23114, 49.262951], [-119.231764, 49.262462], [-119.232339, 49.261753], [-119.232429, 49.26138], [-119.233053, 49.260575], [-119.233192, 49.260284], [-119.234108, 49.259898], [-119.234296, 49.259786], [-119.234393, 49.259515], [-119.234814, 49.259399], [-119.234974, 49.259296], [-119.235223, 49.259013], [-119.235262, 49.258661], [-119.23534, 49.25857], [-119.236834, 49.257858], [-119.23698, 49.257711], [-119.237373, 49.256687], [-119.237371, 49.256354], [-119.237721, 49.255915], [-119.238115, 49.255773], [-119.239659, 49.255599], [-119.241331, 49.25517], [-119.242304, 49.255106], [-119.242916, 49.254941], [-119.243162, 49.254928], [-119.244569, 49.255332], [-119.244971, 49.255136], [-119.245477, 49.255072], [-119.247201, 49.255227], [-119.248012, 49.255518], [-119.248966, 49.255624], [-119.24996, 49.25601], [-119.250164, 49.255998], [-119.250729, 49.255726], [-119.251071, 49.255673], [-119.25148, 49.255341], [-119.251883, 49.255127], [-119.252166, 49.254707], [-119.253153, 49.25432], [-119.253366, 49.254172], [-119.254408, 49.254106], [-119.25476, 49.254297], [-119.255214, 49.254324], [-119.255661, 49.254459], [-119.256983, 49.254244], [-119.257205, 49.254276], [-119.257645, 49.254573], [-119.258076, 49.254692], [-119.258246, 49.254814], [-119.258518, 49.25505], [-119.259017, 49.255716], [-119.259199, 49.255821], [-119.259435, 49.255861], [-119.259848, 49.256177], [-119.260287, 49.25615], [-119.260715, 49.256519], [-119.261366, 49.256902], [-119.261576, 49.256979], [-119.26247, 49.257016], [-119.262944, 49.257151], [-119.263156, 49.257281], [-119.264316, 49.25742], [-119.264786, 49.257744], [-119.266084, 49.258178], [-119.266553, 49.258222], [-119.266759, 49.258191], [-119.267048, 49.257933], [-119.269491, 49.25784], [-119.271323, 49.257346], [-119.272138, 49.256844], [-119.27268, 49.256663], [-119.272902, 49.256398], [-119.273098, 49.255854], [-119.273213, 49.255726], [-119.273897, 49.255334], [-119.275333, 49.255189], [-119.27568, 49.254956], [-119.276293, 49.255134], [-119.276784, 49.255043], [-119.277437, 49.255201], [-119.277975, 49.255227], [-119.278309, 49.25504], [-119.27854, 49.254657], [-119.279016, 49.254549], [-119.279952, 49.254593], [-119.281015, 49.254384], [-119.281838, 49.254646], [-119.283127, 49.254009], [-119.283537, 49.25365], [-119.284616, 49.253521], [-119.284832, 49.253445], [-119.285005, 49.253297], [-119.285137, 49.252881], [-119.285282, 49.252735], [-119.285801, 49.252688], [-119.286494, 49.252504], [-119.286713, 49.2525], [-119.28691, 49.252585], [-119.287186, 49.252598], [-119.287361, 49.252522], [-119.287506, 49.252393], [-119.287642, 49.252075], [-119.288014, 49.251808], [-119.288612, 49.251949], [-119.288831, 49.251944], [-119.290109, 49.251658], [-119.291724, 49.2515], [-119.291959, 49.251504], [-119.292348, 49.251641], [-119.292583, 49.251662], [-119.293144, 49.250996], [-119.293637, 49.250671], [-119.293868, 49.250621], [-119.294515, 49.250617], [-119.295153, 49.25046], [-119.295107, 49.250362], [-119.295181, 49.250181], [-119.295691, 49.250225], [-119.296156, 49.250171], [-119.296781, 49.249998], [-119.297298, 49.24959], [-119.2975, 49.249505], [-119.298389, 49.249425], [-119.29876, 49.249102], [-119.300671, 49.248812], [-119.301045, 49.248616], [-119.301349, 49.248664], [-119.301716, 49.248845], [-119.302161, 49.248953], [-119.302345, 49.249067], [-119.302693, 49.249456], [-119.302901, 49.249523], [-119.30312, 49.249502], [-119.303281, 49.249408], [-119.303339, 49.2492], [-119.303527, 49.249062], [-119.303989, 49.24898], [-119.304394, 49.249124], [-119.30499, 49.249527], [-119.305211, 49.24954], [-119.30556, 49.249362], [-119.306023, 49.249264], [-119.306271, 49.249285], [-119.306702, 49.249421], [-119.307212, 49.249725], [-119.307447, 49.24973], [-119.308547, 49.249456], [-119.30921, 49.24955], [-119.309623, 49.249533], [-119.309997, 49.249337], [-119.310792, 49.249581], [-119.311012, 49.249559], [-119.311447, 49.249479], [-119.312053, 49.249214], [-119.312509, 49.249251], [-119.31294, 49.249386], [-119.313836, 49.249439], [-119.314523, 49.249399], [-119.314711, 49.249341], [-119.315033, 49.248876], [-119.315251, 49.248827], [-119.315668, 49.248935], [-119.315915, 49.248931], [-119.316757, 49.248697], [-119.317672, 49.248572], [-119.318063, 49.248716], [-119.318818, 49.248683], [-119.319769, 49.248754], [-119.320005, 49.248829], [-119.32049, 49.249207], [-119.320768, 49.249282], [-119.321698, 49.249174], [-119.322469, 49.249177], [-119.322678, 49.249244], [-119.323264, 49.249718], [-119.324125, 49.249935], [-119.324616, 49.249871], [-119.324949, 49.249603], [-119.325137, 49.249537], [-119.326038, 49.24968], [-119.326221, 49.249758], [-119.326446, 49.250175], [-119.326588, 49.250299], [-119.326837, 49.250339], [-119.327527, 49.250379], [-119.327991, 49.250333], [-119.328773, 49.249998], [-119.329678, 49.250255], [-119.330567, 49.250722], [-119.331483, 49.250912], [-119.33206, 49.251214], [-119.332281, 49.251263], [-119.333466, 49.251293], [-119.334606, 49.251585], [-119.335127, 49.251567], [-119.335365, 49.251651], [-119.335751, 49.252238], [-119.336077, 49.252483], [-119.3363, 49.252532], [-119.337185, 49.252362], [-119.337531, 49.25239], [-119.33792, 49.252787], [-119.33826, 49.253014], [-119.339256, 49.253111], [-119.3397, 49.253227], [-119.34004, 49.253437], [-119.340262, 49.253495], [-119.3412, 49.253566], [-119.341526, 49.253767], [-119.341823, 49.254219], [-119.342316, 49.254506], [-119.342553, 49.254555], [-119.34303, 49.254492], [-119.344268, 49.254494], [-119.344663, 49.25471], [-119.344764, 49.254834], [-119.344803, 49.255338], [-119.34585, 49.255963], [-119.346255, 49.256136], [-119.347105, 49.256073], [-119.347698, 49.256385], [-119.347932, 49.256425], [-119.348232, 49.256356], [-119.34904, 49.25598], [-119.350169, 49.255201], [-119.351101, 49.25511], [-119.351631, 49.254713], [-119.351904, 49.254672], [-119.352362, 49.25477], [-119.352841, 49.254724], [-119.354099, 49.254267], [-119.354845, 49.254395], [-119.355034, 49.254328], [-119.355407, 49.254069], [-119.35564, 49.254019], [-119.355798, 49.2539], [-119.3562, 49.253405], [-119.356444, 49.253319], [-119.357153, 49.253458], [-119.357775, 49.253292], [-119.358432, 49.25291], [-119.358854, 49.252568], [-119.359142, 49.252527], [-119.359883, 49.252215], [-119.360496, 49.251806], [-119.360698, 49.251766], [-119.360979, 49.251859], [-119.361418, 49.251842], [-119.361945, 49.251651], [-119.362423, 49.251605], [-119.362582, 49.251511], [-119.362823, 49.251074], [-119.363216, 49.250923], [-119.36367, 49.250976], [-119.364591, 49.250966], [-119.365257, 49.250809], [-119.365722, 49.250772], [-119.366044, 49.250577], [-119.366522, 49.250513], [-119.366743, 49.250265], [-119.367987, 49.249826], [-119.368134, 49.249724], [-119.368285, 49.249469], [-119.368488, 49.249375], [-119.369439, 49.249463], [-119.370091, 49.249586], [-119.370323, 49.249553], [-119.370483, 49.249425], [-119.370557, 49.249252], [-119.37081, 49.249067], [-119.371504, 49.248935], [-119.372366, 49.248603], [-119.373368, 49.248564], [-119.373498, 49.248418], [-119.373553, 49.24812], [-119.373764, 49.247962], [-119.374118, 49.247874], [-119.374366, 49.247878], [-119.375033, 49.248045], [-119.376557, 49.247699], [-119.377051, 49.247697], [-119.377824, 49.248077], [-119.378746, 49.248103], [-119.379005, 49.248043], [-119.379832, 49.247559], [-119.380298, 49.247486], [-119.380581, 49.247372], [-119.381089, 49.24738], [-119.382031, 49.247226], [-119.382684, 49.247392], [-119.38347, 49.247744], [-119.383626, 49.24785], [-119.383965, 49.248301], [-119.384129, 49.248298], [-119.384369, 49.247888], [-119.384556, 49.247721], [-119.384811, 49.247636], [-119.385059, 49.247657], [-119.385726, 49.248085], [-119.386418, 49.248196], [-119.386812, 49.248376], [-119.387182, 49.248657], [-119.38756, 49.248758], [-119.388011, 49.249036], [-119.388903, 49.249269], [-119.389696, 49.249998], [-119.390058, 49.250127], [-119.390596, 49.25018], [-119.390948, 49.250621], [-119.391432, 49.250719], [-119.392038, 49.251031], [-119.392234, 49.251063], [-119.39245, 49.251004], [-119.393123, 49.25099], [-119.393558, 49.2509], [-119.394174, 49.250581], [-119.394492, 49.250593], [-119.394952, 49.250745], [-119.39525, 49.250956], [-119.395473, 49.251023], [-119.395847, 49.25106], [-119.396353, 49.250986], [-119.397669, 49.251796], [-119.397865, 49.251854], [-119.398479, 49.251779], [-119.399289, 49.25178], [-119.40014, 49.252285], [-119.400937, 49.252601], [-119.401525, 49.252525], [-119.402195, 49.252755], [-119.40243, 49.252786], [-119.402811, 49.252696], [-119.403078, 49.252492], [-119.403362, 49.252424], [-119.404792, 49.252727], [-119.405393, 49.252642], [-119.405793, 49.252688], [-119.406407, 49.252856], [-119.407388, 49.252961], [-119.407974, 49.253146], [-119.408304, 49.253185], [-119.409111, 49.253078], [-119.409456, 49.253098], [-119.41067, 49.253468], [-119.411064, 49.253676], [-119.411202, 49.253692], [-119.412089, 49.253538], [-119.412597, 49.253509], [-119.413015, 49.253374], [-119.413976, 49.253373], [-119.414887, 49.253165], [-119.416177, 49.253398], [-119.416633, 49.253415], [-119.417218, 49.253035], [-119.41843, 49.253108], [-119.419009, 49.253411], [-119.419786, 49.253583], [-119.420171, 49.253566], [-119.420603, 49.253404], [-119.421233, 49.253364], [-119.421747, 49.253219], [-119.422233, 49.253262], [-119.422863, 49.253222], [-119.423746, 49.253608], [-119.424332, 49.254036], [-119.424802, 49.254126], [-119.42594, 49.254625], [-119.426218, 49.254672], [-119.426863, 49.254659], [-119.427397, 49.254916], [-119.427957, 49.255094], [-119.428782, 49.255122], [-119.429191, 49.25532], [-119.430292, 49.255649], [-119.431028, 49.255489], [-119.431248, 49.255493], [-119.43167, 49.255691], [-119.431884, 49.255893], [-119.43261, 49.256094], [-119.433092, 49.256389], [-119.433781, 49.256447], [-119.434249, 49.256734], [-119.434783, 49.256939], [-119.435446, 49.257024], [-119.436237, 49.25688], [-119.436795, 49.257067], [-119.437217, 49.257292], [-119.437935, 49.25734], [-119.438311, 49.25744], [-119.438653, 49.257387], [-119.439409, 49.257128], [-119.440016, 49.257161], [-119.440808, 49.257325], [-119.441423, 49.257546], [-119.441678, 49.257711], [-119.441912, 49.258011], [-119.442335, 49.258209], [-119.442845, 49.258226], [-119.443414, 49.258078], [-119.44409, 49.25811], [-119.444636, 49.258008], [-119.445115, 49.257988], [-119.445473, 49.258035], [-119.445936, 49.258215], [-119.446185, 49.258218], [-119.44666, 49.258091], [-119.447165, 49.258035], [-119.44746, 49.258147], [-119.447551, 49.25836], [-119.447763, 49.258454], [-119.448829, 49.258315], [-119.449803, 49.258591], [-119.450162, 49.258619], [-119.450889, 49.258568], [-119.451456, 49.258646], [-119.451873, 49.258457], [-119.452215, 49.258441], [-119.45237, 49.258491], [-119.453096, 49.259007], [-119.4538, 49.259064], [-119.454395, 49.258871], [-119.455577, 49.258846], [-119.455769, 49.258869], [-119.456053, 49.259034], [-119.456317, 49.259397], [-119.456601, 49.259562], [-119.457719, 49.259646], [-119.457895, 49.259616], [-119.458298, 49.259418], [-119.458735, 49.259373], [-119.459288, 49.259433], [-119.460103, 49.259767], [-119.460378, 49.259787], [-119.460902, 49.259525], [-119.46193, 49.259448], [-119.463419, 49.259552], [-119.464057, 49.25978], [-119.479498, 49.259428], [-119.479999, 49.262882], [-119.500808, 49.262753], [-119.503774, 49.262943], [-119.503917, 49.269888], [-119.514915, 49.26985], [-119.514914, 49.277419], [-119.519008, 49.277151], [-119.521067, 49.274227], [-119.521765, 49.274081], [-119.523603, 49.273942], [-119.525208, 49.273628], [-119.525503, 49.273468], [-119.526049, 49.272863], [-119.526341, 49.272676], [-119.526897, 49.272494], [-119.527551, 49.27239], [-119.528418, 49.272416], [-119.528651, 49.272367], [-119.528913, 49.272587], [-119.529129, 49.272658], [-119.529145, 49.272903], [-119.529461, 49.273581], [-119.554173, 49.27382], [-119.553958, 49.282302], [-119.580445, 49.28244], [-119.580641, 49.283983], [-119.613903, 49.284809], [-119.614018, 49.298984]]]]}, "properties": {"name": "Okanagan-Similkameen C", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen C", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907028", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.794086, 49.712409], [-119.794228, 49.708263], [-119.805654, 49.708259], [-119.805983, 49.70116], [-119.794569, 49.700979], [-119.794392, 49.693806], [-119.788875, 49.693559], [-119.789035, 49.683177], [-119.748538, 49.656539], [-119.737393, 49.656567], [-119.737201, 49.6529], [-119.731581, 49.652847], [-119.731746, 49.649431], [-119.741589, 49.64883], [-119.741063, 49.644938], [-119.734969, 49.645211], [-119.734505, 49.641484], [-119.720426, 49.641975], [-119.720322, 49.638705], [-119.714547, 49.638502], [-119.714299, 49.624233], [-119.716259, 49.616091], [-119.727236, 49.615968], [-119.727114, 49.60942], [-119.736751, 49.609057], [-119.736732, 49.608647], [-119.740198, 49.608403], [-119.749204, 49.608033], [-119.749755, 49.61269], [-119.763727, 49.612173], [-119.763126, 49.599465], [-119.763453, 49.598505], [-119.761461, 49.597959], [-119.748671, 49.598239], [-119.748601, 49.594089], [-119.748769, 49.58808], [-119.749072, 49.585757], [-119.734983, 49.58555], [-119.734519, 49.585098], [-119.734305, 49.584986], [-119.733701, 49.58482], [-119.733428, 49.584638], [-119.733334, 49.584442], [-119.733448, 49.584241], [-119.734157, 49.583829], [-119.734214, 49.583593], [-119.733997, 49.583203], [-119.732774, 49.582593], [-119.732523, 49.582555], [-119.732359, 49.582603], [-119.732199, 49.582714], [-119.73206, 49.582943], [-119.731951, 49.582963], [-119.73139, 49.582851], [-119.730601, 49.582834], [-119.729759, 49.582619], [-119.729439, 49.58259], [-119.728735, 49.582616], [-119.728255, 49.582708], [-119.727951, 49.582688], [-119.727647, 49.58248], [-119.72776, 49.582009], [-119.727361, 49.581775], [-119.725608, 49.581385], [-119.724604, 49.580978], [-119.723558, 49.580823], [-119.722992, 49.580619], [-119.722971, 49.580485], [-119.723168, 49.580075], [-119.723373, 49.57927], [-119.722251, 49.57801], [-119.722116, 49.577779], [-119.721603, 49.577296], [-119.721486, 49.576705], [-119.721645, 49.575794], [-119.72106, 49.57425], [-119.720651, 49.573864], [-119.720287, 49.573766], [-119.719645, 49.57369], [-119.719195, 49.573548], [-119.718904, 49.573267], [-119.717517, 49.572994], [-119.717134, 49.572787], [-119.717036, 49.572555], [-119.717182, 49.572182], [-119.717114, 49.571941], [-119.717265, 49.571164], [-119.717258, 49.570813], [-119.716295, 49.570161], [-119.716001, 49.569332], [-119.716028, 49.56907], [-119.716271, 49.568714], [-119.716286, 49.568506], [-119.716105, 49.568223], [-119.714766, 49.567516], [-119.714301, 49.567122], [-119.713916, 49.566663], [-119.713899, 49.56635], [-119.713731, 49.56584], [-119.71391, 49.565314], [-119.713873, 49.564883], [-119.713515, 49.564191], [-119.713347, 49.563393], [-119.713108, 49.562832], [-119.713421, 49.561962], [-119.71313, 49.561707], [-119.712962, 49.561207], [-119.712943, 49.560821], [-119.713016, 49.560424], [-119.713403, 49.559659], [-119.713479, 49.559287], [-119.71372, 49.558896], [-119.714062, 49.558581], [-119.714234, 49.558191], [-119.714166, 49.55794], [-119.713741, 49.557285], [-119.713991, 49.557018], [-119.714035, 49.556838], [-119.713692, 49.556386], [-119.713872, 49.555896], [-119.713839, 49.555816], [-119.713739, 49.555755], [-119.713614, 49.55547], [-119.713264, 49.555406], [-119.713077, 49.555285], [-119.713016, 49.554899], [-119.712823, 49.554436], [-119.71284, 49.554238], [-119.713198, 49.553707], [-119.713118, 49.553278], [-119.713208, 49.552907], [-119.712966, 49.552508], [-119.712618, 49.552227], [-119.712381, 49.551693], [-119.712133, 49.551457], [-119.711603, 49.551145], [-119.711416, 49.550511], [-119.711148, 49.550167], [-119.71074, 49.550014], [-119.709169, 49.550114], [-119.708363, 49.550034], [-119.708024, 49.549924], [-119.707645, 49.549556], [-119.707344, 49.549365], [-119.706995, 49.549346], [-119.706771, 49.549261], [-119.706317, 49.549308], [-119.705546, 49.549145], [-119.705147, 49.548912], [-119.705023, 49.548691], [-119.704911, 49.54863], [-119.704589, 49.548593], [-119.703619, 49.548301], [-119.703061, 49.547945], [-119.702841, 49.547949], [-119.701731, 49.548399], [-119.700792, 49.548673], [-119.699866, 49.548648], [-119.699215, 49.548403], [-119.699005, 49.548381], [-119.698232, 49.548624], [-119.697646, 49.549051], [-119.697293, 49.549141], [-119.696007, 49.549144], [-119.694794, 49.548695], [-119.694386, 49.548597], [-119.694026, 49.548587], [-119.692877, 49.548804], [-119.692496, 49.54892], [-119.692162, 49.549125], [-119.691989, 49.549993], [-119.692042, 49.55046], [-119.692317, 49.551182], [-119.692388, 49.551712], [-119.69286, 49.552519], [-119.69282, 49.552826], [-119.692424, 49.553123], [-119.692366, 49.553323], [-119.692461, 49.553572], [-119.692288, 49.553918], [-119.692568, 49.554263], [-119.692496, 49.554443], [-119.692253, 49.554566], [-119.691707, 49.554704], [-119.690941, 49.555083], [-119.690468, 49.555526], [-119.690141, 49.556135], [-119.689967, 49.556248], [-119.689363, 49.556081], [-119.688912, 49.556174], [-119.688559, 49.556047], [-119.688184, 49.556019], [-119.687928, 49.556115], [-119.687432, 49.556667], [-119.686913, 49.557057], [-119.687013, 49.557594], [-119.686995, 49.558035], [-119.686841, 49.558255], [-119.686348, 49.558599], [-119.686197, 49.558873], [-119.686317, 49.559041], [-119.686617, 49.559213], [-119.686629, 49.559403], [-119.686427, 49.559524], [-119.68601, 49.559488], [-119.685492, 49.559609], [-119.684547, 49.560296], [-119.683872, 49.560599], [-119.682882, 49.561459], [-119.682635, 49.561492], [-119.682521, 49.561441], [-119.681624, 49.560706], [-119.681359, 49.560667], [-119.680449, 49.560724], [-119.680059, 49.56067], [-119.67993, 49.5606], [-119.67969, 49.560237], [-119.679443, 49.560036], [-119.679003, 49.55984], [-119.678443, 49.559448], [-119.678103, 49.559528], [-119.677843, 49.559831], [-119.677483, 49.559848], [-119.677337, 49.559707], [-119.677328, 49.559555], [-119.678188, 49.559085], [-119.678278, 49.558948], [-119.678238, 49.558742], [-119.677586, 49.558199], [-119.676897, 49.557748], [-119.67659, 49.557404], [-119.676476, 49.557362], [-119.675964, 49.557373], [-119.675865, 49.557322], [-119.675761, 49.556937], [-119.675561, 49.556806], [-119.675323, 49.556758], [-119.67508, 49.556845], [-119.674979, 49.557036], [-119.674514, 49.557389], [-119.674553, 49.557864], [-119.675074, 49.558527], [-119.674981, 49.558871], [-119.674731, 49.559094], [-119.674339, 49.559254], [-119.6739, 49.55931], [-119.672735, 49.559004], [-119.672304, 49.55896], [-119.671278, 49.559425], [-119.67069, 49.559546], [-119.670155, 49.559864], [-119.669839, 49.559908], [-119.669519, 49.55988], [-119.668806, 49.559743], [-119.668564, 49.559884], [-119.66851, 49.560388], [-119.668788, 49.560679], [-119.668824, 49.56084], [-119.66809, 49.561063], [-119.667902, 49.561176], [-119.6677, 49.561523], [-119.667473, 49.561681], [-119.667227, 49.56175], [-119.66695, 49.561747], [-119.666178, 49.561503], [-119.665496, 49.561456], [-119.664483, 49.561624], [-119.663661, 49.56202], [-119.663412, 49.562522], [-119.66333, 49.563044], [-119.66322, 49.563083], [-119.66216, 49.563161], [-119.661385, 49.563422], [-119.660273, 49.563295], [-119.659583, 49.563338], [-119.659113, 49.563591], [-119.658703, 49.563672], [-119.658324, 49.563835], [-119.65772, 49.563939], [-119.657359, 49.563902], [-119.657186, 49.563762], [-119.657014, 49.563423], [-119.65693, 49.563372], [-119.656807, 49.563393], [-119.656563, 49.563497], [-119.656467, 49.563778], [-119.656038, 49.564265], [-119.655905, 49.564628], [-119.655659, 49.564957], [-119.654733, 49.565716], [-119.654292, 49.565947], [-119.653154, 49.565301], [-119.652381, 49.564719], [-119.651584, 49.563923], [-119.65003, 49.562598], [-119.648481, 49.560538], [-119.647679, 49.559635], [-119.647147, 49.558903], [-119.646838, 49.558089], [-119.638134, 49.55803], [-119.635607, 49.557823], [-119.636056, 49.559744], [-119.635758, 49.560625], [-119.634874, 49.561193], [-119.633355, 49.561621], [-119.631079, 49.561679], [-119.628134, 49.561354], [-119.626641, 49.561591], [-119.623529, 49.562732], [-119.621964, 49.562911], [-119.621191, 49.56321], [-119.620064, 49.566051], [-119.619566, 49.56784], [-119.618153, 49.569431], [-119.617165, 49.570673], [-119.616529, 49.572042], [-119.616911, 49.57294], [-119.617778, 49.573792], [-119.621977, 49.575735], [-119.623247, 49.577195], [-119.623864, 49.578153], [-119.627957, 49.581183], [-119.630891, 49.582042], [-119.635142, 49.583729], [-119.638604, 49.584799], [-119.640589, 49.584995], [-119.641894, 49.585321], [-119.642681, 49.586052], [-119.643165, 49.58689], [-119.643938, 49.590119], [-119.645439, 49.593097], [-119.645167, 49.594372], [-119.64506, 49.59538], [-119.64542, 49.596014], [-119.647158, 49.597364], [-119.649243, 49.600022], [-119.65032, 49.602195], [-119.649547, 49.603456], [-119.649433, 49.603988], [-119.648924, 49.60509], [-119.648057, 49.605992], [-119.647701, 49.606878], [-119.647699, 49.607499], [-119.648215, 49.607979], [-119.651263, 49.612366], [-119.65282, 49.613685], [-119.655294, 49.614889], [-119.656006, 49.615894], [-119.656077, 49.617582], [-119.65545, 49.618994], [-119.65598, 49.621683], [-119.656463, 49.622188], [-119.657601, 49.622739], [-119.66097, 49.625381], [-119.660344, 49.627852], [-119.660653, 49.628816], [-119.66127, 49.629688], [-119.662682, 49.629748], [-119.668119, 49.628998], [-119.67283, 49.631639], [-119.673407, 49.632767], [-119.674185, 49.633996], [-119.678925, 49.637361], [-119.679102, 49.638285], [-119.680526, 49.640051], [-119.681961, 49.641488], [-119.683626, 49.643752], [-119.684189, 49.645045], [-119.685042, 49.646576], [-119.686271, 49.647585], [-119.687041, 49.648653], [-119.690165, 49.650552], [-119.690244, 49.652399], [-119.690931, 49.653004], [-119.693392, 49.652897], [-119.703351, 49.652755], [-119.703512, 49.654086], [-119.709457, 49.653998], [-119.709762, 49.660351], [-119.720282, 49.660183], [-119.721062, 49.678875], [-119.743581, 49.67866], [-119.761182, 49.67944], [-119.761434, 49.683445], [-119.766923, 49.683411], [-119.767008, 49.690405], [-119.771525, 49.690585], [-119.771748, 49.712441], [-119.794086, 49.712409]]]]}, "properties": {"name": "Summerland", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Summerland", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907035", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.541623, 49.52409], [-119.542066, 49.540616], [-119.547347, 49.540929], [-119.54755, 49.550333], [-119.547521, 49.555603], [-119.567128, 49.555564], [-119.582552, 49.555267], [-119.581905, 49.554523], [-119.580711, 49.551786], [-119.581463, 49.546554], [-119.579904, 49.540591], [-119.58105, 49.539254], [-119.581632, 49.53792], [-119.58153, 49.536486], [-119.580747, 49.535783], [-119.579399, 49.535012], [-119.576503, 49.534315], [-119.575266, 49.533733], [-119.574223, 49.531969], [-119.57407, 49.530297], [-119.575266, 49.52956], [-119.576787, 49.528186], [-119.577363, 49.526977], [-119.578861, 49.526133], [-119.580789, 49.524933], [-119.58153, 49.523171], [-119.58561, 49.51501], [-119.585687, 49.510898], [-119.585463, 49.509519], [-119.58756, 49.508298], [-119.594227, 49.507584], [-119.598632, 49.505934], [-119.601062, 49.505238], [-119.60557, 49.50508], [-119.610386, 49.505445], [-119.613461, 49.501231], [-119.613672, 49.501303], [-119.614455, 49.500178], [-119.614888, 49.499755], [-119.615246, 49.499216], [-119.615819, 49.498582], [-119.616126, 49.498089], [-119.61678, 49.496662], [-119.616942, 49.496065], [-119.617067, 49.49501], [-119.616939, 49.493933], [-119.616801, 49.493423], [-119.616021, 49.491731], [-119.615591, 49.491193], [-119.614613, 49.490216], [-119.612881, 49.489049], [-119.612286, 49.488758], [-119.611342, 49.488139], [-119.609021, 49.486833], [-119.607778, 49.486035], [-119.606269, 49.485214], [-119.604442, 49.484085], [-119.602805, 49.483169], [-119.601917, 49.482587], [-119.601109, 49.482172], [-119.599906, 49.481345], [-119.599326, 49.480836], [-119.5989, 49.48035], [-119.598395, 49.47966], [-119.598377, 49.479589], [-119.598588, 49.479422], [-119.598572, 49.479368], [-119.598253, 49.479087], [-119.598059, 49.478795], [-119.59786, 49.478188], [-119.594798, 49.466993], [-119.594691, 49.466285], [-119.594785, 49.465194], [-119.596277, 49.458637], [-119.597154, 49.457997], [-119.597146, 49.458232], [-119.597597, 49.457984], [-119.598002, 49.457852], [-119.598541, 49.457846], [-119.599128, 49.458047], [-119.599594, 49.458118], [-119.600214, 49.457809], [-119.59882, 49.475217], [-119.601525, 49.475203], [-119.603167, 49.474747], [-119.604887, 49.475293], [-119.604353, 49.472751], [-119.604257, 49.471764], [-119.604386, 49.470836], [-119.604653, 49.4701], [-119.605163, 49.468084], [-119.608167, 49.454617], [-119.606845, 49.454947], [-119.605008, 49.451978], [-119.603624, 49.452302], [-119.600668, 49.452601], [-119.600226, 49.457096], [-119.599361, 49.456987], [-119.596937, 49.457162], [-119.59689, 49.457355], [-119.596041, 49.457361], [-119.595296, 49.457454], [-119.594582, 49.457633], [-119.594271, 49.45817], [-119.594071, 49.458215], [-119.59398, 49.457781], [-119.594057, 49.457419], [-119.595138, 49.456711], [-119.595237, 49.456512], [-119.595217, 49.456143], [-119.594572, 49.45568], [-119.593813, 49.45541], [-119.593637, 49.455225], [-119.593241, 49.455045], [-119.592787, 49.455074], [-119.592181, 49.455626], [-119.592055, 49.455566], [-119.591818, 49.455274], [-119.591845, 49.454716], [-119.592193, 49.454286], [-119.592409, 49.454191], [-119.5936, 49.454227], [-119.59405, 49.454136], [-119.594288, 49.453978], [-119.594393, 49.453832], [-119.594394, 49.45359], [-119.594085, 49.452452], [-119.59682, 49.452229], [-119.597454, 49.452427], [-119.598976, 49.451624], [-119.599132, 49.449502], [-119.597813, 49.449436], [-119.591091, 49.450135], [-119.589339, 49.450511], [-119.586689, 49.450753], [-119.586404, 49.450418], [-119.586373, 49.449344], [-119.587161, 49.44781], [-119.587506, 49.446169], [-119.586835, 49.444328], [-119.585756, 49.443332], [-119.585282, 49.442152], [-119.585396, 49.440703], [-119.584842, 49.439668], [-119.583686, 49.439206], [-119.583408, 49.438238], [-119.583766, 49.436744], [-119.582831, 49.434532], [-119.582994, 49.43373], [-119.583791, 49.431951], [-119.583905, 49.430051], [-119.583033, 49.428571], [-119.581162, 49.426012], [-119.579156, 49.424936], [-119.579135, 49.423618], [-119.574038, 49.423634], [-119.567981, 49.423794], [-119.568442, 49.447246], [-119.559299, 49.447681], [-119.560036, 49.460824], [-119.549266, 49.460792], [-119.549224, 49.463994], [-119.54862, 49.476026], [-119.548638, 49.477829], [-119.54841, 49.482734], [-119.547451, 49.483383], [-119.544727, 49.484279], [-119.542897, 49.485425], [-119.540657, 49.486385], [-119.539547, 49.486943], [-119.538184, 49.487823], [-119.536906, 49.489114], [-119.536119, 49.49371], [-119.536041, 49.496125], [-119.535241, 49.496527], [-119.534955, 49.496764], [-119.515593, 49.496632], [-119.515088, 49.500653], [-119.530621, 49.500537], [-119.530489, 49.503289], [-119.530534, 49.5039], [-119.53045, 49.504102], [-119.5302, 49.518095], [-119.532552, 49.519419], [-119.533976, 49.519419], [-119.535707, 49.519305], [-119.540048, 49.519302], [-119.541366, 49.519252], [-119.541623, 49.52409]], [[-119.592938, 49.472276], [-119.594234, 49.472303], [-119.595636, 49.472113], [-119.596488, 49.475311], [-119.594634, 49.475176], [-119.594213, 49.474997], [-119.59282, 49.473584], [-119.591621, 49.472936], [-119.59189, 49.472664], [-119.592204, 49.472478], [-119.592558, 49.47234], [-119.592938, 49.472276]]]]}, "properties": {"name": "Penticton", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Penticton", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907041", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.530489, 49.50408], [-119.530621, 49.500537], [-119.515088, 49.500653], [-119.515593, 49.496632], [-119.534955, 49.496764], [-119.535241, 49.496527], [-119.536041, 49.496125], [-119.536119, 49.49371], [-119.536906, 49.489114], [-119.538184, 49.487823], [-119.539547, 49.486943], [-119.540657, 49.486385], [-119.542897, 49.485425], [-119.544727, 49.484279], [-119.547451, 49.483383], [-119.54841, 49.482734], [-119.548638, 49.477829], [-119.54862, 49.476026], [-119.549224, 49.463994], [-119.549266, 49.460792], [-119.560036, 49.460824], [-119.559299, 49.447681], [-119.568442, 49.447246], [-119.567981, 49.423794], [-119.573915, 49.423636], [-119.577904, 49.423629], [-119.587951, 49.421129], [-119.582172, 49.41039], [-119.579386, 49.402473], [-119.575853, 49.396484], [-119.571877, 49.389498], [-119.570599, 49.384318], [-119.571008, 49.381391], [-119.571326, 49.380476], [-119.574048, 49.374369], [-119.576607, 49.369189], [-119.575775, 49.363997], [-119.574272, 49.358104], [-119.591473, 49.356174], [-119.585702, 49.334084], [-119.57875, 49.334929], [-119.578082, 49.332799], [-119.577824, 49.332328], [-119.577106, 49.331516], [-119.576663, 49.331211], [-119.576286, 49.330824], [-119.575098, 49.329969], [-119.574176, 49.32917], [-119.573084, 49.328008], [-119.571626, 49.326718], [-119.570924, 49.325933], [-119.570654, 49.325768], [-119.570217, 49.325328], [-119.569045, 49.323941], [-119.568212, 49.323286], [-119.567546, 49.322899], [-119.567162, 49.32177], [-119.566081, 49.320523], [-119.5646, 49.318577], [-119.563601, 49.316359], [-119.561321, 49.314783], [-119.557717, 49.313105], [-119.556393, 49.312057], [-119.553661, 49.310114], [-119.547429, 49.305011], [-119.545773, 49.294546], [-119.548324, 49.294338], [-119.546357, 49.281131], [-119.541121, 49.281085], [-119.54152, 49.273698], [-119.529461, 49.273581], [-119.529145, 49.272903], [-119.529129, 49.272658], [-119.528913, 49.272587], [-119.528651, 49.272367], [-119.528418, 49.272416], [-119.52725, 49.272423], [-119.526341, 49.272676], [-119.526049, 49.272863], [-119.525503, 49.273468], [-119.525208, 49.273628], [-119.523603, 49.273942], [-119.521765, 49.274081], [-119.521067, 49.274227], [-119.519008, 49.277151], [-119.514914, 49.277419], [-119.514915, 49.26985], [-119.503917, 49.269888], [-119.503774, 49.262943], [-119.500808, 49.262753], [-119.479999, 49.262882], [-119.479498, 49.259428], [-119.464057, 49.25978], [-119.463419, 49.259552], [-119.46193, 49.259448], [-119.460902, 49.259525], [-119.460378, 49.259787], [-119.460103, 49.259767], [-119.459288, 49.259433], [-119.458735, 49.259373], [-119.458298, 49.259418], [-119.457895, 49.259616], [-119.457719, 49.259646], [-119.456601, 49.259562], [-119.456317, 49.259397], [-119.456053, 49.259034], [-119.455769, 49.258869], [-119.455577, 49.258846], [-119.454395, 49.258871], [-119.4538, 49.259064], [-119.453096, 49.259007], [-119.45237, 49.258491], [-119.452215, 49.258441], [-119.451873, 49.258457], [-119.451456, 49.258646], [-119.450889, 49.258568], [-119.450162, 49.258619], [-119.449803, 49.258591], [-119.448829, 49.258315], [-119.447763, 49.258454], [-119.447551, 49.25836], [-119.44746, 49.258147], [-119.447165, 49.258035], [-119.44666, 49.258091], [-119.446185, 49.258218], [-119.445936, 49.258215], [-119.445473, 49.258035], [-119.445115, 49.257988], [-119.444636, 49.258008], [-119.44409, 49.25811], [-119.443414, 49.258078], [-119.442845, 49.258226], [-119.442335, 49.258209], [-119.441912, 49.258011], [-119.441678, 49.257711], [-119.441423, 49.257546], [-119.440808, 49.257325], [-119.440016, 49.257161], [-119.439409, 49.257128], [-119.438653, 49.257387], [-119.438311, 49.25744], [-119.437935, 49.25734], [-119.437217, 49.257292], [-119.436795, 49.257067], [-119.436237, 49.25688], [-119.435446, 49.257024], [-119.434783, 49.256939], [-119.434249, 49.256734], [-119.433781, 49.256447], [-119.433092, 49.256389], [-119.43261, 49.256094], [-119.431884, 49.255893], [-119.43167, 49.255691], [-119.431248, 49.255493], [-119.431028, 49.255489], [-119.430292, 49.255649], [-119.429191, 49.25532], [-119.428782, 49.255122], [-119.427957, 49.255094], [-119.427397, 49.254916], [-119.426863, 49.254659], [-119.426218, 49.254672], [-119.42594, 49.254625], [-119.424802, 49.254126], [-119.424332, 49.254036], [-119.423746, 49.253608], [-119.422863, 49.253222], [-119.422233, 49.253262], [-119.421747, 49.253219], [-119.421233, 49.253364], [-119.420603, 49.253404], [-119.420171, 49.253566], [-119.419786, 49.253583], [-119.419009, 49.253411], [-119.41843, 49.253108], [-119.417218, 49.253035], [-119.416633, 49.253415], [-119.416177, 49.253398], [-119.414887, 49.253165], [-119.413976, 49.253373], [-119.413015, 49.253374], [-119.412597, 49.253509], [-119.412089, 49.253538], [-119.411202, 49.253692], [-119.411064, 49.253676], [-119.41067, 49.253468], [-119.409456, 49.253098], [-119.409111, 49.253078], [-119.408304, 49.253185], [-119.407974, 49.253146], [-119.407388, 49.252961], [-119.406407, 49.252856], [-119.405793, 49.252688], [-119.405393, 49.252642], [-119.404792, 49.252727], [-119.403362, 49.252424], [-119.403078, 49.252492], [-119.402811, 49.252696], [-119.40243, 49.252786], [-119.402195, 49.252755], [-119.401525, 49.252525], [-119.400937, 49.252601], [-119.40014, 49.252285], [-119.399289, 49.25178], [-119.398479, 49.251779], [-119.397865, 49.251854], [-119.397669, 49.251796], [-119.396353, 49.250986], [-119.395847, 49.25106], [-119.395473, 49.251023], [-119.39525, 49.250956], [-119.394952, 49.250745], [-119.394492, 49.250593], [-119.394174, 49.250581], [-119.393558, 49.2509], [-119.393123, 49.25099], [-119.39245, 49.251004], [-119.392234, 49.251063], [-119.392038, 49.251031], [-119.391432, 49.250719], [-119.390948, 49.250621], [-119.390596, 49.25018], [-119.390058, 49.250127], [-119.389696, 49.249998], [-119.388903, 49.249269], [-119.388011, 49.249036], [-119.38756, 49.248758], [-119.387182, 49.248657], [-119.386812, 49.248376], [-119.386418, 49.248196], [-119.385726, 49.248085], [-119.385059, 49.247657], [-119.384811, 49.247636], [-119.384556, 49.247721], [-119.384369, 49.247888], [-119.384129, 49.248298], [-119.383965, 49.248301], [-119.383626, 49.24785], [-119.38347, 49.247744], [-119.382684, 49.247392], [-119.382031, 49.247226], [-119.381089, 49.24738], [-119.380581, 49.247372], [-119.380298, 49.247486], [-119.379832, 49.247559], [-119.379005, 49.248043], [-119.378746, 49.248103], [-119.377824, 49.248077], [-119.377051, 49.247697], [-119.376557, 49.247699], [-119.375033, 49.248045], [-119.374366, 49.247878], [-119.374118, 49.247874], [-119.373764, 49.247962], [-119.373553, 49.24812], [-119.373498, 49.248418], [-119.373368, 49.248564], [-119.372366, 49.248603], [-119.371504, 49.248935], [-119.37081, 49.249067], [-119.370557, 49.249252], [-119.370483, 49.249425], [-119.370323, 49.249553], [-119.370091, 49.249586], [-119.369439, 49.249463], [-119.368488, 49.249375], [-119.368285, 49.249469], [-119.368134, 49.249724], [-119.367987, 49.249826], [-119.366743, 49.250265], [-119.366522, 49.250513], [-119.366044, 49.250577], [-119.365722, 49.250772], [-119.365257, 49.250809], [-119.364591, 49.250966], [-119.36367, 49.250976], [-119.363216, 49.250923], [-119.362823, 49.251074], [-119.362582, 49.251511], [-119.362423, 49.251605], [-119.361945, 49.251651], [-119.361418, 49.251842], [-119.360979, 49.251859], [-119.360698, 49.251766], [-119.360496, 49.251806], [-119.359883, 49.252215], [-119.359142, 49.252527], [-119.358854, 49.252568], [-119.358432, 49.25291], [-119.357775, 49.253292], [-119.357153, 49.253458], [-119.356444, 49.253319], [-119.3562, 49.253405], [-119.355798, 49.2539], [-119.35564, 49.254019], [-119.355407, 49.254069], [-119.355034, 49.254328], [-119.354845, 49.254395], [-119.354099, 49.254267], [-119.352841, 49.254724], [-119.352362, 49.25477], [-119.351904, 49.254672], [-119.351631, 49.254713], [-119.351101, 49.25511], [-119.350169, 49.255201], [-119.34904, 49.25598], [-119.348232, 49.256356], [-119.347932, 49.256425], [-119.347698, 49.256385], [-119.347105, 49.256073], [-119.346255, 49.256136], [-119.34585, 49.255963], [-119.344803, 49.255338], [-119.344764, 49.254834], [-119.344663, 49.25471], [-119.344268, 49.254494], [-119.34303, 49.254492], [-119.342553, 49.254555], [-119.342316, 49.254506], [-119.341823, 49.254219], [-119.341526, 49.253767], [-119.3412, 49.253566], [-119.340262, 49.253495], [-119.34004, 49.253437], [-119.3397, 49.253227], [-119.339256, 49.253111], [-119.33826, 49.253014], [-119.33792, 49.252787], [-119.337531, 49.25239], [-119.337185, 49.252362], [-119.3363, 49.252532], [-119.336077, 49.252483], [-119.335751, 49.252238], [-119.335365, 49.251651], [-119.335127, 49.251567], [-119.334606, 49.251585], [-119.333466, 49.251293], [-119.332281, 49.251263], [-119.33206, 49.251214], [-119.331483, 49.250912], [-119.330567, 49.250722], [-119.329678, 49.250255], [-119.328773, 49.249998], [-119.327991, 49.250333], [-119.327527, 49.250379], [-119.326837, 49.250339], [-119.326588, 49.250299], [-119.326446, 49.250175], [-119.326221, 49.249758], [-119.326038, 49.24968], [-119.325137, 49.249537], [-119.324949, 49.249603], [-119.324616, 49.249871], [-119.324125, 49.249935], [-119.323264, 49.249718], [-119.322678, 49.249244], [-119.322469, 49.249177], [-119.321698, 49.249174], [-119.320768, 49.249282], [-119.32049, 49.249207], [-119.320005, 49.248829], [-119.319769, 49.248754], [-119.318818, 49.248683], [-119.318063, 49.248716], [-119.317672, 49.248572], [-119.316757, 49.248697], [-119.315915, 49.248931], [-119.315668, 49.248935], [-119.315251, 49.248827], [-119.315033, 49.248876], [-119.314711, 49.249341], [-119.314523, 49.249399], [-119.313836, 49.249439], [-119.31294, 49.249386], [-119.312509, 49.249251], [-119.312053, 49.249214], [-119.311447, 49.249479], [-119.311012, 49.249559], [-119.310792, 49.249581], [-119.309997, 49.249337], [-119.309623, 49.249533], [-119.30921, 49.24955], [-119.308547, 49.249456], [-119.307447, 49.24973], [-119.307212, 49.249725], [-119.306702, 49.249421], [-119.306271, 49.249285], [-119.306023, 49.249264], [-119.30556, 49.249362], [-119.305211, 49.24954], [-119.30499, 49.249527], [-119.304394, 49.249124], [-119.303989, 49.24898], [-119.303527, 49.249062], [-119.303339, 49.2492], [-119.303281, 49.249408], [-119.30312, 49.249502], [-119.302901, 49.249523], [-119.302693, 49.249456], [-119.302345, 49.249067], [-119.302161, 49.248953], [-119.301716, 49.248845], [-119.301349, 49.248664], [-119.301045, 49.248616], [-119.300671, 49.248812], [-119.29876, 49.249102], [-119.298389, 49.249425], [-119.2975, 49.249505], [-119.297298, 49.24959], [-119.296781, 49.249998], [-119.296156, 49.250171], [-119.295691, 49.250225], [-119.295181, 49.250181], [-119.295107, 49.250362], [-119.295153, 49.25046], [-119.294515, 49.250617], [-119.293868, 49.250621], [-119.293637, 49.250671], [-119.293144, 49.250996], [-119.292583, 49.251662], [-119.292348, 49.251641], [-119.291959, 49.251504], [-119.291724, 49.2515], [-119.290109, 49.251658], [-119.288831, 49.251944], [-119.288612, 49.251949], [-119.288014, 49.251808], [-119.287642, 49.252075], [-119.287506, 49.252393], [-119.287361, 49.252522], [-119.287186, 49.252598], [-119.28691, 49.252585], [-119.286713, 49.2525], [-119.286494, 49.252504], [-119.285801, 49.252688], [-119.285282, 49.252735], [-119.285137, 49.252881], [-119.285005, 49.253297], [-119.284832, 49.253445], [-119.284616, 49.253521], [-119.283537, 49.25365], [-119.283127, 49.254009], [-119.281838, 49.254646], [-119.281015, 49.254384], [-119.279952, 49.254593], [-119.279016, 49.254549], [-119.27854, 49.254657], [-119.278309, 49.25504], [-119.277975, 49.255227], [-119.277437, 49.255201], [-119.276784, 49.255043], [-119.276293, 49.255134], [-119.27568, 49.254956], [-119.275333, 49.255189], [-119.273897, 49.255334], [-119.273213, 49.255726], [-119.273098, 49.255854], [-119.272902, 49.256398], [-119.27268, 49.256663], [-119.272138, 49.256844], [-119.271323, 49.257346], [-119.269491, 49.25784], [-119.267048, 49.257933], [-119.266759, 49.258191], [-119.266553, 49.258222], [-119.266084, 49.258178], [-119.264786, 49.257744], [-119.264316, 49.25742], [-119.263156, 49.257281], [-119.262944, 49.257151], [-119.26247, 49.257016], [-119.261576, 49.256979], [-119.261366, 49.256902], [-119.260715, 49.256519], [-119.260287, 49.25615], [-119.259848, 49.256177], [-119.259435, 49.255861], [-119.259199, 49.255821], [-119.259017, 49.255716], [-119.258518, 49.25505], [-119.258246, 49.254814], [-119.258076, 49.254692], [-119.257645, 49.254573], [-119.257205, 49.254276], [-119.256983, 49.254244], [-119.255661, 49.254459], [-119.255214, 49.254324], [-119.25476, 49.254297], [-119.254408, 49.254106], [-119.253366, 49.254172], [-119.253153, 49.25432], [-119.252166, 49.254707], [-119.251883, 49.255127], [-119.25148, 49.255341], [-119.251071, 49.255673], [-119.250729, 49.255726], [-119.250164, 49.255998], [-119.24996, 49.25601], [-119.248742, 49.255566], [-119.247804, 49.255468], [-119.247437, 49.255277], [-119.247201, 49.255227], [-119.245477, 49.255072], [-119.244971, 49.255136], [-119.244569, 49.255332], [-119.243162, 49.254928], [-119.242697, 49.254982], [-119.242304, 49.255106], [-119.241331, 49.25517], [-119.239659, 49.255599], [-119.237884, 49.255822], [-119.237721, 49.255915], [-119.237371, 49.256354], [-119.237373, 49.256687], [-119.23698, 49.257711], [-119.236834, 49.257858], [-119.23534, 49.25857], [-119.235262, 49.258661], [-119.235223, 49.259013], [-119.234974, 49.259296], [-119.234814, 49.259399], [-119.234393, 49.259515], [-119.234296, 49.259786], [-119.234108, 49.259898], [-119.233192, 49.260284], [-119.233053, 49.260575], [-119.232429, 49.26138], [-119.232339, 49.261753], [-119.231764, 49.262462], [-119.23114, 49.262951], [-119.23105, 49.263079], [-119.231016, 49.263415], [-119.230128, 49.263979], [-119.229948, 49.264252], [-119.229952, 49.264674], [-119.229851, 49.264856], [-119.229256, 49.26539], [-119.228778, 49.266074], [-119.228746, 49.266245], [-119.22885, 49.26671], [-119.22842, 49.267565], [-119.228311, 49.268197], [-119.228748, 49.269348], [-119.22876, 49.269646], [-119.228713, 49.26979], [-119.228385, 49.270147], [-119.228172, 49.27062], [-119.228359, 49.271389], [-119.228192, 49.271689], [-119.228064, 49.272457], [-119.227912, 49.272775], [-119.226755, 49.273967], [-119.226617, 49.274257], [-119.226598, 49.274724], [-119.226521, 49.27487], [-119.226312, 49.275118], [-119.225964, 49.275331], [-119.225835, 49.275486], [-119.225636, 49.275939], [-119.225637, 49.276597], [-119.225858, 49.27724], [-119.226165, 49.277621], [-119.226131, 49.277802], [-119.225622, 49.278108], [-119.225195, 49.27898], [-119.224563, 49.279614], [-119.224563, 49.280243], [-119.224482, 49.280551], [-119.223712, 49.281509], [-119.223326, 49.282398], [-119.222849, 49.282777], [-119.22276, 49.282931], [-119.222795, 49.283416], [-119.222484, 49.283828], [-119.222401, 49.284134], [-119.22172, 49.284903], [-119.221595, 49.28549], [-119.220987, 49.286637], [-119.220531, 49.287202], [-119.220288, 49.287631], [-119.220227, 49.288072], [-119.219872, 49.288771], [-119.219767, 49.289169], [-119.219856, 49.289644], [-119.219788, 49.289925], [-119.219655, 49.29035], [-119.219086, 49.291486], [-119.218823, 49.292974], [-119.218367, 49.294135], [-119.218499, 49.295526], [-119.218278, 49.296737], [-119.218348, 49.297374], [-119.217973, 49.298245], [-119.217817, 49.299966], [-119.217857, 49.300541], [-119.217988, 49.301007], [-119.217879, 49.301323], [-119.217538, 49.301718], [-119.217476, 49.302474], [-119.217788, 49.305121], [-119.218696, 49.305779], [-119.219006, 49.306195], [-119.219266, 49.306785], [-119.219368, 49.308438], [-119.219297, 49.309357], [-119.219652, 49.310492], [-119.220089, 49.311375], [-119.220146, 49.311976], [-119.220623, 49.313739], [-119.220644, 49.313919], [-119.220537, 49.314254], [-119.220618, 49.31455], [-119.220496, 49.314876], [-119.220496, 49.315164], [-119.220694, 49.316545], [-119.220812, 49.316723], [-119.220868, 49.317018], [-119.220799, 49.317344], [-119.220517, 49.31779], [-119.220489, 49.318384], [-119.220735, 49.318955], [-119.220818, 49.320204], [-119.21993, 49.321265], [-119.219681, 49.321872], [-119.219128, 49.322719], [-119.21899, 49.323307], [-119.218535, 49.323883], [-119.218251, 49.324635], [-119.217941, 49.32509], [-119.217486, 49.325999], [-119.21697, 49.326755], [-119.216407, 49.327405], [-119.215996, 49.328087], [-119.215493, 49.329428], [-119.215438, 49.330024], [-119.215327, 49.330313], [-119.214397, 49.331186], [-119.206903, 49.344031], [-119.213148, 49.346028], [-119.214529, 49.345899], [-119.215943, 49.345206], [-119.217419, 49.344691], [-119.21931, 49.343804], [-119.222249, 49.343016], [-119.224071, 49.342902], [-119.22623, 49.342914], [-119.22767, 49.342608], [-119.229378, 49.342334], [-119.231554, 49.341593], [-119.233703, 49.341334], [-119.236399, 49.341408], [-119.246535, 49.343424], [-119.250339, 49.343922], [-119.254495, 49.345313], [-119.256949, 49.34639], [-119.25943, 49.348643], [-119.259918, 49.349294], [-119.260442, 49.350313], [-119.259652, 49.352667], [-119.258317, 49.358586], [-119.257299, 49.360568], [-119.251913, 49.366117], [-119.251293, 49.367206], [-119.251393, 49.368767], [-119.253255, 49.371499], [-119.254624, 49.372896], [-119.256807, 49.375483], [-119.258752, 49.378479], [-119.26003, 49.379515], [-119.262074, 49.382273], [-119.262943, 49.382604], [-119.269603, 49.383684], [-119.272211, 49.384676], [-119.274122, 49.385582], [-119.276954, 49.386507], [-119.281733, 49.387617], [-119.283, 49.387356], [-119.286799, 49.383858], [-119.29043, 49.38283], [-119.292953, 49.382547], [-119.294254, 49.383103], [-119.295642, 49.384165], [-119.300363, 49.385706], [-119.300531, 49.4189], [-119.300446, 49.473738], [-119.300591, 49.495747], [-119.300803, 49.503644], [-119.301764, 49.503434], [-119.302637, 49.505009], [-119.336492, 49.505199], [-119.372292, 49.504974], [-119.530489, 49.50408]]]]}, "properties": {"name": "Okanagan-Similkameen D", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen D", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907047", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.900142, 49.471702], [-119.915136, 49.471593], [-119.915104, 49.469219], [-119.913672, 49.468658], [-119.911363, 49.466529], [-119.910117, 49.466579], [-119.907354, 49.465592], [-119.906365, 49.464226], [-119.904527, 49.463456], [-119.902937, 49.464445], [-119.899755, 49.465493], [-119.896234, 49.408927], [-119.894761, 49.402795], [-119.895193, 49.391661], [-119.896228, 49.391754], [-119.897898, 49.392188], [-119.900134, 49.394345], [-119.901904, 49.396392], [-119.903431, 49.397566], [-119.905143, 49.397924], [-119.906798, 49.397667], [-119.907735, 49.397758], [-119.909136, 49.39916], [-119.910674, 49.401153], [-119.911366, 49.402647], [-119.912446, 49.404274], [-119.915134, 49.404774], [-119.917403, 49.403759], [-119.919142, 49.40335], [-119.91988, 49.403566], [-119.920861, 49.404654], [-119.922518, 49.405472], [-119.924233, 49.404627], [-119.925866, 49.402733], [-119.928505, 49.402362], [-119.929498, 49.401993], [-119.931767, 49.400978], [-119.934863, 49.400871], [-119.935583, 49.401698], [-119.937235, 49.403846], [-119.934946, 49.381405], [-119.940633, 49.381232], [-119.940675, 49.375401], [-119.93195, 49.375121], [-119.932288, 49.369831], [-119.894322, 49.371514], [-119.891156, 49.314356], [-119.856855, 49.314129], [-119.841882, 49.31408], [-119.841841, 49.310219], [-119.827994, 49.310084], [-119.797666, 49.309602], [-119.797483, 49.301261], [-119.754, 49.300889], [-119.740862, 49.299619], [-119.71312, 49.299722], [-119.626708, 49.29914], [-119.614018, 49.298984], [-119.613903, 49.284809], [-119.580641, 49.283983], [-119.580445, 49.28244], [-119.553958, 49.282302], [-119.554173, 49.27382], [-119.54152, 49.273698], [-119.541121, 49.281085], [-119.546357, 49.281131], [-119.548324, 49.294338], [-119.545773, 49.294546], [-119.547429, 49.305011], [-119.553661, 49.310114], [-119.556393, 49.312057], [-119.557717, 49.313105], [-119.561321, 49.314783], [-119.563601, 49.316359], [-119.5646, 49.318577], [-119.566081, 49.320523], [-119.567162, 49.32177], [-119.567546, 49.322899], [-119.568212, 49.323286], [-119.569045, 49.323941], [-119.570217, 49.325328], [-119.570654, 49.325768], [-119.570924, 49.325933], [-119.571626, 49.326718], [-119.573084, 49.328008], [-119.574176, 49.32917], [-119.575098, 49.329969], [-119.576286, 49.330824], [-119.576663, 49.331211], [-119.577106, 49.331516], [-119.577824, 49.332328], [-119.578082, 49.332799], [-119.57875, 49.334929], [-119.585702, 49.334084], [-119.591473, 49.356174], [-119.574272, 49.358104], [-119.575775, 49.363997], [-119.576607, 49.369189], [-119.574048, 49.374369], [-119.571326, 49.380476], [-119.571008, 49.381391], [-119.570599, 49.384318], [-119.571877, 49.389498], [-119.575853, 49.396484], [-119.579386, 49.402473], [-119.582172, 49.41039], [-119.587951, 49.421129], [-119.577904, 49.423629], [-119.579135, 49.423618], [-119.579156, 49.424936], [-119.581162, 49.426012], [-119.583033, 49.428571], [-119.583905, 49.430051], [-119.583791, 49.431951], [-119.582994, 49.43373], [-119.582831, 49.434532], [-119.583766, 49.436744], [-119.583408, 49.438238], [-119.583686, 49.439206], [-119.584842, 49.439668], [-119.585396, 49.440703], [-119.585282, 49.442152], [-119.585756, 49.443332], [-119.586835, 49.444328], [-119.587506, 49.446169], [-119.587161, 49.44781], [-119.586373, 49.449344], [-119.586404, 49.450418], [-119.586689, 49.450753], [-119.589339, 49.450511], [-119.591091, 49.450135], [-119.597813, 49.449436], [-119.599132, 49.449502], [-119.598976, 49.451624], [-119.597454, 49.452427], [-119.597851, 49.45245], [-119.598857, 49.452409], [-119.602475, 49.451959], [-119.60588, 49.451369], [-119.60731, 49.451013], [-119.607875, 49.450721], [-119.607746, 49.450365], [-119.607908, 49.450307], [-119.608158, 49.450355], [-119.608404, 49.450278], [-119.608667, 49.450038], [-119.608686, 49.449381], [-119.608517, 49.448521], [-119.608783, 49.447832], [-119.609002, 49.447653], [-119.609208, 49.447659], [-119.609648, 49.446995], [-119.60992, 49.446734], [-119.611005, 49.446091], [-119.612038, 49.445599], [-119.612735, 49.445142], [-119.613026, 49.444709], [-119.613155, 49.444226], [-119.612989, 49.442098], [-119.613096, 49.441629], [-119.613497, 49.44107], [-119.614434, 49.440243], [-119.614675, 49.439678], [-119.614691, 49.439423], [-119.61459, 49.439085], [-119.613982, 49.438005], [-119.613806, 49.43707], [-119.613161, 49.435408], [-119.613037, 49.434253], [-119.612859, 49.433865], [-119.61247, 49.433478], [-119.610413, 49.432215], [-119.610209, 49.43206], [-119.609878, 49.431625], [-119.609792, 49.431293], [-119.609793, 49.430208], [-119.609652, 49.429827], [-119.609376, 49.429496], [-119.608239, 49.428513], [-119.606955, 49.426681], [-119.606839, 49.426251], [-119.606897, 49.425259], [-119.606837, 49.425005], [-119.60604, 49.423119], [-119.605901, 49.42316], [-119.606006, 49.419571], [-119.605933, 49.412967], [-119.606034, 49.411855], [-119.605947, 49.393123], [-119.605176, 49.392063], [-119.60523, 49.389641], [-119.605538, 49.385629], [-119.605527, 49.380977], [-119.612466, 49.380799], [-119.623669, 49.380731], [-119.679797, 49.380726], [-119.679753, 49.366333], [-119.680116, 49.366255], [-119.68079, 49.366231], [-119.681467, 49.366009], [-119.683116, 49.365944], [-119.683566, 49.365825], [-119.68394, 49.365619], [-119.684558, 49.365613], [-119.685235, 49.365381], [-119.685886, 49.365421], [-119.686194, 49.36527], [-119.686291, 49.365102], [-119.690823, 49.365182], [-119.690968, 49.360958], [-119.699158, 49.360736], [-119.698709, 49.395107], [-119.713025, 49.395249], [-119.720721, 49.395245], [-119.720456, 49.41222], [-119.720544, 49.412938], [-119.720464, 49.413232], [-119.720449, 49.424225], [-119.720245, 49.431488], [-119.73953, 49.431749], [-119.739276, 49.444581], [-119.738953, 49.471469], [-119.900142, 49.471702]]]]}, "properties": {"name": "Okanagan-Similkameen I", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen I", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907048", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.515396, 49.727902], [-119.517368, 49.734051], [-119.51932, 49.741301], [-119.518812, 49.743372], [-119.519027, 49.752902], [-119.521041, 49.752972], [-119.556325, 49.75314], [-119.55663, 49.760184], [-119.58685, 49.759907], [-119.660993, 49.759003], [-119.697096, 49.760737], [-119.697462, 49.77516], [-119.716191, 49.767591], [-119.719558, 49.765247], [-119.727211, 49.756269], [-119.732982, 49.74871], [-119.736956, 49.743361], [-119.740466, 49.736555], [-119.741973, 49.731497], [-119.741581, 49.724819], [-119.740644, 49.723031], [-119.738203, 49.720013], [-119.725482, 49.709388], [-119.719654, 49.70443], [-119.710351, 49.696162], [-119.70264, 49.689739], [-119.697814, 49.685554], [-119.694665, 49.681974], [-119.691002, 49.677367], [-119.68297, 49.666662], [-119.681892, 49.665466], [-119.678849, 49.662372], [-119.675828, 49.659664], [-119.674021, 49.657848], [-119.672984, 49.657168], [-119.671966, 49.656175], [-119.668352, 49.652994], [-119.665988, 49.651011], [-119.664077, 49.649532], [-119.663079, 49.648875], [-119.656627, 49.643705], [-119.652137, 49.640574], [-119.648834, 49.638064], [-119.645808, 49.636011], [-119.644827, 49.635126], [-119.642514, 49.633446], [-119.637169, 49.625395], [-119.634284, 49.621199], [-119.63103, 49.616753], [-119.62767, 49.612553], [-119.625585, 49.609166], [-119.625263, 49.607177], [-119.625261, 49.605743], [-119.625745, 49.602256], [-119.625612, 49.601676], [-119.616102, 49.590576], [-119.608211, 49.580999], [-119.605393, 49.577206], [-119.604422, 49.575537], [-119.603509, 49.573653], [-119.60333, 49.572112], [-119.603329, 49.569715], [-119.603581, 49.566461], [-119.603725, 49.562814], [-119.60356, 49.556661], [-119.603334, 49.552699], [-119.602746, 49.54961], [-119.600597, 49.542717], [-119.598385, 49.536022], [-119.596976, 49.532719], [-119.596131, 49.529871], [-119.596894, 49.524382], [-119.599155, 49.51783], [-119.609974, 49.50598], [-119.610386, 49.505445], [-119.60557, 49.50508], [-119.601062, 49.505238], [-119.598632, 49.505934], [-119.594227, 49.507584], [-119.58756, 49.508298], [-119.585463, 49.509519], [-119.585687, 49.510898], [-119.58561, 49.51501], [-119.58153, 49.523171], [-119.580789, 49.524933], [-119.578861, 49.526133], [-119.577363, 49.526977], [-119.576787, 49.528186], [-119.575266, 49.52956], [-119.57407, 49.530297], [-119.574223, 49.531969], [-119.575266, 49.533733], [-119.576503, 49.534315], [-119.579399, 49.535012], [-119.580747, 49.535783], [-119.58153, 49.536486], [-119.581632, 49.53792], [-119.58105, 49.539254], [-119.579904, 49.540591], [-119.581463, 49.546554], [-119.580711, 49.551786], [-119.581905, 49.554523], [-119.582552, 49.555267], [-119.567128, 49.555564], [-119.547521, 49.555603], [-119.54755, 49.550333], [-119.547347, 49.540929], [-119.542066, 49.540616], [-119.541623, 49.52409], [-119.541366, 49.519252], [-119.540048, 49.519302], [-119.535707, 49.519305], [-119.533976, 49.519419], [-119.532552, 49.519419], [-119.5302, 49.518095], [-119.53045, 49.504102], [-119.372292, 49.504974], [-119.336492, 49.505199], [-119.3099, 49.505039], [-119.307132, 49.507408], [-119.305319, 49.509243], [-119.304008, 49.511941], [-119.303065, 49.517343], [-119.302506, 49.518591], [-119.30208, 49.521748], [-119.303406, 49.523445], [-119.308688, 49.525973], [-119.309624, 49.527281], [-119.309808, 49.529102], [-119.311227, 49.530771], [-119.314546, 49.531649], [-119.319244, 49.531308], [-119.321785, 49.530459], [-119.322942, 49.533325], [-119.322581, 49.535164], [-119.327888, 49.539132], [-119.330607, 49.544022], [-119.332056, 49.547921], [-119.333394, 49.556038], [-119.33644, 49.556055], [-119.338427, 49.556793], [-119.339259, 49.558422], [-119.338454, 49.56292], [-119.335939, 49.567996], [-119.335919, 49.569374], [-119.336843, 49.570975], [-119.341517, 49.57593], [-119.346367, 49.581963], [-119.347749, 49.585006], [-119.348314, 49.58753], [-119.34811, 49.592904], [-119.349795, 49.593855], [-119.35465, 49.59422], [-119.357068, 49.594151], [-119.361411, 49.593795], [-119.362791, 49.594473], [-119.363823, 49.595765], [-119.363173, 49.597052], [-119.360366, 49.598768], [-119.357708, 49.600221], [-119.353576, 49.603062], [-119.351727, 49.604709], [-119.349863, 49.606651], [-119.350256, 49.607989], [-119.350876, 49.609332], [-119.352236, 49.610926], [-119.355623, 49.613478], [-119.358136, 49.616219], [-119.358651, 49.617885], [-119.356191, 49.619933], [-119.355192, 49.620888], [-119.352112, 49.62647], [-119.350651, 49.631712], [-119.349868, 49.634241], [-119.350361, 49.636085], [-119.35252, 49.638242], [-119.356288, 49.64224], [-119.359628, 49.645297], [-119.364257, 49.648929], [-119.367114, 49.650805], [-119.370349, 49.652169], [-119.372834, 49.654045], [-119.373678, 49.65583], [-119.372192, 49.659041], [-119.371814, 49.663012], [-119.372096, 49.667586], [-119.371929, 49.672003], [-119.375911, 49.679031], [-119.381985, 49.679807], [-119.390416, 49.681886], [-119.401155, 49.683285], [-119.405527, 49.684049], [-119.410751, 49.683313], [-119.418268, 49.680658], [-119.420236, 49.67805], [-119.420875, 49.67651], [-119.42278, 49.675273], [-119.427039, 49.675386], [-119.4301, 49.679745], [-119.434758, 49.685789], [-119.442173, 49.69022], [-119.446787, 49.691254], [-119.448002, 49.700372], [-119.453904, 49.702277], [-119.45632, 49.712485], [-119.456294, 49.718589], [-119.458769, 49.725468], [-119.480312, 49.744707], [-119.485903, 49.746391], [-119.501306, 49.730464], [-119.510821, 49.725378], [-119.515396, 49.727902]]]]}, "properties": {"name": "Okanagan-Similkameen E", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen E", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907049", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.837, 49.765657], [-119.860089, 49.765952], [-119.902585, 49.766638], [-119.979538, 49.766249], [-119.979939, 49.729757], [-119.979591, 49.710394], [-119.998322, 49.710944], [-119.998326, 49.703884], [-120.004009, 49.703909], [-120.003469, 49.696465], [-119.975197, 49.696214], [-119.975101, 49.693181], [-119.97498, 49.680902], [-119.975201, 49.667631], [-119.98991, 49.66467], [-119.992173, 49.666069], [-119.997215, 49.667568], [-120.000908, 49.669623], [-120.007122, 49.671524], [-120.013997, 49.672224], [-120.019002, 49.672166], [-120.022093, 49.671791], [-120.027025, 49.670332], [-120.030254, 49.670246], [-120.034121, 49.671534], [-120.037628, 49.673931], [-120.040662, 49.677282], [-120.042117, 49.678072], [-120.047582, 49.67754], [-120.050253, 49.678291], [-120.051978, 49.678048], [-120.053929, 49.676313], [-120.055427, 49.673959], [-120.060128, 49.671383], [-120.059518, 49.66655], [-120.060192, 49.66407], [-120.065276, 49.662419], [-120.06885, 49.661705], [-120.074757, 49.66018], [-120.084332, 49.653078], [-120.0904, 49.650175], [-120.095284, 49.647254], [-120.09923, 49.646143], [-120.096619, 49.643955], [-120.094645, 49.641379], [-120.087633, 49.638389], [-120.086261, 49.636742], [-120.086578, 49.63351], [-120.086775, 49.632333], [-120.086333, 49.630398], [-120.08474, 49.629562], [-120.081892, 49.629903], [-120.077431, 49.631058], [-120.075492, 49.630752], [-120.073349, 49.628387], [-120.071454, 49.626582], [-120.068361, 49.625146], [-120.066033, 49.624642], [-120.065649, 49.623008], [-120.066046, 49.62177], [-120.064904, 49.617768], [-120.061486, 49.613885], [-120.059801, 49.611697], [-120.055657, 49.61016], [-120.051499, 49.610164], [-120.04925, 49.610324], [-120.046796, 49.608532], [-120.042103, 49.607693], [-120.039545, 49.606093], [-120.040413, 49.604497], [-120.039933, 49.60284], [-120.038363, 49.601254], [-120.037459, 49.599462], [-120.035971, 49.597747], [-120.034287, 49.596261], [-120.031616, 49.594838], [-120.030901, 49.593203], [-120.032445, 49.592117], [-120.033121, 49.588392], [-120.034444, 49.58517], [-120.037664, 49.583323], [-120.041202, 49.581801], [-120.042902, 49.580106], [-120.043056, 49.578414], [-120.046635, 49.575606], [-120.048464, 49.57297], [-120.047729, 49.571286], [-120.040668, 49.569058], [-120.040353, 49.5656], [-120.032878, 49.566041], [-120.024988, 49.556061], [-120.022278, 49.55425], [-120.022222, 49.552629], [-120.025583, 49.55086], [-120.028158, 49.549032], [-120.029175, 49.547748], [-120.02928, 49.545717], [-120.028008, 49.544337], [-120.027156, 49.542926], [-120.030001, 49.541868], [-120.033137, 49.541082], [-120.034534, 49.539565], [-120.033216, 49.536108], [-120.032859, 49.53546], [-120.033309, 49.528835], [-120.033288, 49.521513], [-120.028246, 49.51855], [-120.001084, 49.505826], [-119.98945, 49.507425], [-119.982607, 49.512245], [-119.973318, 49.517241], [-119.962189, 49.523838], [-119.949626, 49.528883], [-119.933937, 49.519519], [-119.930851, 49.51872], [-119.929508, 49.516785], [-119.927654, 49.516149], [-119.92042, 49.517047], [-119.917472, 49.514395], [-119.915316, 49.510534], [-119.914554, 49.507572], [-119.911537, 49.503674], [-119.908097, 49.500088], [-119.907841, 49.497694], [-119.908411, 49.494142], [-119.908729, 49.491391], [-119.907628, 49.486302], [-119.904791, 49.485969], [-119.90372, 49.485514], [-119.903527, 49.483463], [-119.901856, 49.481926], [-119.9007, 49.481146], [-119.900142, 49.471702], [-119.738953, 49.471469], [-119.738845, 49.478948], [-119.749943, 49.478959], [-119.748982, 49.500601], [-119.767859, 49.500768], [-119.76675, 49.513826], [-119.766858, 49.514787], [-119.777323, 49.51491], [-119.776669, 49.539049], [-119.776055, 49.565833], [-119.753723, 49.565958], [-119.753235, 49.58358], [-119.759237, 49.583793], [-119.759138, 49.587522], [-119.757915, 49.587541], [-119.757977, 49.594888], [-119.763513, 49.595174], [-119.763453, 49.598505], [-119.763126, 49.599465], [-119.763727, 49.612173], [-119.749755, 49.61269], [-119.749204, 49.608033], [-119.740198, 49.608403], [-119.736732, 49.608647], [-119.736751, 49.609057], [-119.727114, 49.60942], [-119.727236, 49.615968], [-119.716259, 49.616091], [-119.714299, 49.624233], [-119.714547, 49.638502], [-119.720322, 49.638705], [-119.720426, 49.641975], [-119.734505, 49.641484], [-119.734969, 49.645211], [-119.741063, 49.644938], [-119.741589, 49.64883], [-119.731746, 49.649431], [-119.731581, 49.652847], [-119.737201, 49.6529], [-119.737393, 49.656567], [-119.748538, 49.656539], [-119.789035, 49.683177], [-119.788875, 49.693559], [-119.794392, 49.693806], [-119.794569, 49.700979], [-119.805983, 49.70116], [-119.805654, 49.708259], [-119.794228, 49.708263], [-119.794086, 49.712409], [-119.835912, 49.712624], [-119.837, 49.765657]]], [[[-119.634038, 49.508082], [-119.636563, 49.508077], [-119.636936, 49.517443], [-119.648607, 49.517107], [-119.6485, 49.506341], [-119.648622, 49.501311], [-119.643557, 49.501233], [-119.634021, 49.50078], [-119.634038, 49.508082]]], [[[-119.603392, 49.568777], [-119.60333, 49.572112], [-119.603509, 49.573653], [-119.604422, 49.575537], [-119.605393, 49.577206], [-119.608211, 49.580999], [-119.616102, 49.590576], [-119.625612, 49.601676], [-119.625745, 49.602256], [-119.625261, 49.605743], [-119.625263, 49.607177], [-119.625585, 49.609166], [-119.62767, 49.612553], [-119.63103, 49.616753], [-119.634284, 49.621199], [-119.637169, 49.625395], [-119.642514, 49.633446], [-119.644827, 49.635126], [-119.645808, 49.636011], [-119.648834, 49.638064], [-119.652137, 49.640574], [-119.656627, 49.643705], [-119.663079, 49.648875], [-119.664077, 49.649532], [-119.665988, 49.651011], [-119.668352, 49.652994], [-119.671966, 49.656175], [-119.672984, 49.657168], [-119.674021, 49.657848], [-119.675828, 49.659664], [-119.678849, 49.662372], [-119.681892, 49.665466], [-119.68297, 49.666662], [-119.691002, 49.677367], [-119.694665, 49.681974], [-119.697814, 49.685554], [-119.70264, 49.689739], [-119.710351, 49.696162], [-119.719654, 49.70443], [-119.728671, 49.712061], [-119.742076, 49.711514], [-119.754477, 49.711425], [-119.771748, 49.712441], [-119.771525, 49.690585], [-119.767008, 49.690405], [-119.766923, 49.683411], [-119.761434, 49.683445], [-119.761182, 49.67944], [-119.743581, 49.67866], [-119.721062, 49.678875], [-119.720282, 49.660183], [-119.709762, 49.660351], [-119.709457, 49.653998], [-119.703512, 49.654086], [-119.703351, 49.652755], [-119.693392, 49.652897], [-119.690931, 49.653004], [-119.690244, 49.652399], [-119.690165, 49.650552], [-119.687041, 49.648653], [-119.686271, 49.647585], [-119.685042, 49.646576], [-119.684189, 49.645045], [-119.683626, 49.643752], [-119.681961, 49.641488], [-119.680526, 49.640051], [-119.679102, 49.638285], [-119.678925, 49.637361], [-119.674185, 49.633996], [-119.673407, 49.632767], [-119.67283, 49.631639], [-119.668119, 49.628998], [-119.662682, 49.629748], [-119.66127, 49.629688], [-119.660653, 49.628816], [-119.660344, 49.627852], [-119.66097, 49.625381], [-119.657601, 49.622739], [-119.656463, 49.622188], [-119.65598, 49.621683], [-119.65545, 49.618994], [-119.656077, 49.617582], [-119.656006, 49.615894], [-119.655294, 49.614889], [-119.65282, 49.613685], [-119.651263, 49.612366], [-119.648215, 49.607979], [-119.647699, 49.607499], [-119.647701, 49.606878], [-119.648057, 49.605992], [-119.648924, 49.60509], [-119.649433, 49.603988], [-119.649547, 49.603456], [-119.65032, 49.602195], [-119.649243, 49.600022], [-119.647158, 49.597364], [-119.64542, 49.596014], [-119.64506, 49.59538], [-119.645167, 49.594372], [-119.645439, 49.593097], [-119.643938, 49.590119], [-119.643165, 49.58689], [-119.642681, 49.586052], [-119.641894, 49.585321], [-119.640589, 49.584995], [-119.638604, 49.584799], [-119.635142, 49.583729], [-119.630891, 49.582042], [-119.627957, 49.581183], [-119.623864, 49.578153], [-119.623247, 49.577195], [-119.621977, 49.575735], [-119.617778, 49.573792], [-119.616911, 49.57294], [-119.616529, 49.572042], [-119.617165, 49.570673], [-119.618153, 49.569431], [-119.619566, 49.56784], [-119.620064, 49.566051], [-119.621191, 49.56321], [-119.621964, 49.562911], [-119.623529, 49.562732], [-119.626641, 49.561591], [-119.628134, 49.561354], [-119.631079, 49.561679], [-119.633355, 49.561621], [-119.634874, 49.561193], [-119.635758, 49.560625], [-119.636056, 49.559744], [-119.635607, 49.557823], [-119.638134, 49.55803], [-119.646838, 49.558089], [-119.647147, 49.558903], [-119.647679, 49.559635], [-119.648481, 49.560538], [-119.65003, 49.562598], [-119.651584, 49.563923], [-119.652381, 49.564719], [-119.653154, 49.565301], [-119.654292, 49.565947], [-119.654733, 49.565716], [-119.655659, 49.564957], [-119.655905, 49.564628], [-119.656038, 49.564265], [-119.656467, 49.563778], [-119.656563, 49.563497], [-119.656807, 49.563393], [-119.65693, 49.563372], [-119.657014, 49.563423], [-119.657186, 49.563762], [-119.657359, 49.563902], [-119.65772, 49.563939], [-119.658324, 49.563835], [-119.658703, 49.563672], [-119.659113, 49.563591], [-119.659583, 49.563338], [-119.660273, 49.563295], [-119.661385, 49.563422], [-119.66216, 49.563161], [-119.66322, 49.563083], [-119.66333, 49.563044], [-119.663412, 49.562522], [-119.663661, 49.56202], [-119.664154, 49.561745], [-119.664624, 49.551264], [-119.647721, 49.556789], [-119.648463, 49.553952], [-119.647039, 49.552109], [-119.645924, 49.552149], [-119.645529, 49.551542], [-119.645216, 49.551224], [-119.643506, 49.550167], [-119.642342, 49.549528], [-119.641346, 49.550147], [-119.640879, 49.550028], [-119.64065, 49.550027], [-119.640442, 49.549926], [-119.640205, 49.549685], [-119.640105, 49.549404], [-119.639291, 49.548904], [-119.638577, 49.548277], [-119.638248, 49.548091], [-119.637173, 49.547244], [-119.636853, 49.546872], [-119.636718, 49.54653], [-119.635937, 49.546243], [-119.635249, 49.545721], [-119.634874, 49.545102], [-119.634062, 49.54462], [-119.633408, 49.543495], [-119.63237, 49.542727], [-119.632003, 49.542209], [-119.631494, 49.541785], [-119.631416, 49.541641], [-119.631427, 49.541125], [-119.63126, 49.54063], [-119.63118, 49.540451], [-119.630863, 49.540249], [-119.630599, 49.539757], [-119.629415, 49.539418], [-119.628951, 49.538821], [-119.628559, 49.538748], [-119.628231, 49.5386], [-119.628221, 49.538428], [-119.628004, 49.538261], [-119.627641, 49.537734], [-119.62714, 49.537229], [-119.626596, 49.536818], [-119.624709, 49.537405], [-119.624722, 49.536912], [-119.624599, 49.53642], [-119.62437, 49.53602], [-119.623885, 49.535473], [-119.622958, 49.534676], [-119.620954, 49.533129], [-119.620224, 49.532408], [-119.618947, 49.53151], [-119.618537, 49.531349], [-119.618227, 49.530987], [-119.618168, 49.530655], [-119.618346, 49.530084], [-119.618333, 49.529617], [-119.61813, 49.528902], [-119.617842, 49.528692], [-119.617833, 49.52854], [-119.618012, 49.528275], [-119.617542, 49.526972], [-119.617406, 49.526222], [-119.621075, 49.526014], [-119.620849, 49.525691], [-119.620693, 49.525164], [-119.620711, 49.524966], [-119.621161, 49.524326], [-119.622247, 49.523464], [-119.622384, 49.523219], [-119.622471, 49.522772], [-119.626969, 49.522701], [-119.628748, 49.521367], [-119.628747, 49.519356], [-119.628135, 49.519373], [-119.62595, 49.516613], [-119.626077, 49.513738], [-119.631406, 49.513796], [-119.631431, 49.508385], [-119.632935, 49.50842], [-119.63275, 49.506162], [-119.631201, 49.506111], [-119.63052, 49.503531], [-119.630775, 49.49997], [-119.632555, 49.500017], [-119.63252, 49.498734], [-119.630856, 49.498768], [-119.630822, 49.490288], [-119.624869, 49.490139], [-119.620312, 49.4903], [-119.620221, 49.50853], [-119.616491, 49.508643], [-119.615812, 49.507247], [-119.615314, 49.50696], [-119.615205, 49.506728], [-119.614135, 49.506133], [-119.614484, 49.505926], [-119.614537, 49.505079], [-119.614286, 49.504797], [-119.613599, 49.504345], [-119.613764, 49.504072], [-119.613407, 49.503837], [-119.613398, 49.503423], [-119.612716, 49.502809], [-119.613251, 49.501951], [-119.613746, 49.501417], [-119.613672, 49.501303], [-119.613461, 49.501231], [-119.609974, 49.50598], [-119.599155, 49.51783], [-119.596894, 49.524382], [-119.596131, 49.529871], [-119.596976, 49.532719], [-119.598385, 49.536022], [-119.600597, 49.542717], [-119.602746, 49.54961], [-119.603334, 49.552699], [-119.60356, 49.556661], [-119.603725, 49.562814], [-119.603581, 49.566461], [-119.603392, 49.568777]]]]}, "properties": {"name": "Okanagan-Similkameen F", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen F", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907051", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.134057, 49.632605], [-120.137483, 49.634398], [-120.146369, 49.633571], [-120.165087, 49.627368], [-120.174157, 49.620169], [-120.158655, 49.606098], [-120.157812, 49.598559], [-120.165276, 49.591709], [-120.169585, 49.583589], [-120.162548, 49.579005], [-120.161042, 49.577221], [-120.157389, 49.570037], [-120.162647, 49.568162], [-120.163687, 49.56709], [-120.160655, 49.561402], [-120.160161, 49.559554], [-120.165651, 49.555529], [-120.165636, 49.551812], [-120.169415, 49.548926], [-120.170086, 49.546009], [-120.175323, 49.541156], [-120.173756, 49.538999], [-120.174422, 49.537531], [-120.18114, 49.533784], [-120.186161, 49.532203], [-120.18986, 49.530662], [-120.196381, 49.525592], [-120.196105, 49.524419], [-120.197307, 49.52316], [-120.197218, 49.52092], [-120.194591, 49.517833], [-120.193211, 49.514611], [-120.194137, 49.51218], [-120.192414, 49.510071], [-120.188901, 49.50814], [-120.187551, 49.506545], [-120.185426, 49.502296], [-120.186583, 49.499918], [-120.182587, 49.498639], [-120.179034, 49.496643], [-120.17745, 49.496334], [-120.177207, 49.496228], [-120.17334, 49.487878], [-120.17855, 49.478324], [-120.174872, 49.471042], [-120.17243, 49.467704], [-120.169869, 49.465968], [-120.168349, 49.46439], [-120.168556, 49.460105], [-120.168521, 49.453965], [-120.167615, 49.449423], [-120.169192, 49.446762], [-120.169717, 49.446085], [-120.17049, 49.442023], [-120.166331, 49.438175], [-120.168493, 49.433762], [-120.173195, 49.431653], [-120.185681, 49.429422], [-120.195289, 49.427833], [-120.209709, 49.425277], [-120.214484, 49.423393], [-120.224637, 49.419523], [-120.225982, 49.416294], [-120.22654, 49.415774], [-120.226726, 49.401503], [-120.226334, 49.399611], [-120.226646, 49.3991], [-120.226965, 49.363326], [-120.226825, 49.340795], [-120.233875, 49.335984], [-120.24107, 49.32903], [-120.25097, 49.328897], [-120.25895, 49.330985], [-120.272561, 49.325233], [-120.273828, 49.324498], [-120.274161, 49.323178], [-120.268854, 49.317107], [-120.268742, 49.315589], [-120.272745, 49.30981], [-120.272392, 49.30749], [-120.275384, 49.303851], [-120.2753, 49.302526], [-120.272492, 49.301515], [-120.272763, 49.29845], [-120.272572, 49.297035], [-120.271326, 49.295502], [-120.272472, 49.292917], [-120.271699, 49.289382], [-120.275672, 49.284967], [-120.275462, 49.28193], [-120.275438, 49.280453], [-120.270429, 49.272849], [-120.266438, 49.271907], [-120.266046, 49.271355], [-120.26605, 49.270207], [-120.26527, 49.270114], [-120.262146, 49.266304], [-120.262955, 49.264837], [-120.262118, 49.262604], [-120.261745, 49.260969], [-120.267952, 49.256468], [-120.266711, 49.255711], [-120.265981, 49.255064], [-120.262982, 49.249434], [-120.261186, 49.249054], [-120.255382, 49.240091], [-120.249528, 49.233489], [-120.248058, 49.229023], [-120.247639, 49.226523], [-120.249482, 49.220006], [-120.251654, 49.216287], [-120.253595, 49.214059], [-120.257014, 49.21231], [-120.260105, 49.212351], [-120.263216, 49.213127], [-120.264959, 49.216422], [-120.268156, 49.220744], [-120.271336, 49.223825], [-120.277112, 49.226865], [-120.288801, 49.232227], [-120.295942, 49.234972], [-120.300526, 49.234273], [-120.308503, 49.230682], [-120.31432, 49.230807], [-120.318733, 49.233027], [-120.326196, 49.239109], [-120.331635, 49.243872], [-120.338408, 49.246736], [-120.340625, 49.247119], [-120.344001, 49.246496], [-120.350321, 49.244103], [-120.351081, 49.243054], [-120.352683, 49.237892], [-120.354676, 49.237265], [-120.362353, 49.240114], [-120.370452, 49.239454], [-120.374083, 49.239391], [-120.377267, 49.238995], [-120.382842, 49.239568], [-120.385316, 49.239599], [-120.387841, 49.239141], [-120.389437, 49.239651], [-120.39203, 49.239846], [-120.393789, 49.238346], [-120.398078, 49.236116], [-120.400398, 49.235655], [-120.402705, 49.235738], [-120.40485, 49.235737], [-120.407968, 49.236374], [-120.411735, 49.237482], [-120.413882, 49.237345], [-120.415464, 49.236576], [-120.415848, 49.235576], [-120.415369, 49.233837], [-120.414275, 49.231143], [-120.414538, 49.229979], [-120.413601, 49.228181], [-120.412167, 49.226135], [-120.41, 49.224421], [-120.408846, 49.223299], [-120.409066, 49.222217], [-120.41321, 49.218546], [-120.414196, 49.217356], [-120.414088, 49.215092], [-120.41332, 49.21263], [-120.411119, 49.211027], [-120.40734, 49.205867], [-120.408396, 49.20337], [-120.407826, 49.201185], [-120.412477, 49.201335], [-120.415961, 49.201583], [-120.420422, 49.200915], [-120.422807, 49.200228], [-120.428653, 49.198918], [-120.431136, 49.197524], [-120.430936, 49.196337], [-120.427856, 49.194944], [-120.426192, 49.193375], [-120.424423, 49.19096], [-120.424791, 49.187667], [-120.421274, 49.183709], [-120.42171, 49.181071], [-120.422854, 49.180101], [-120.427896, 49.177559], [-120.425973, 49.17374], [-120.424501, 49.172853], [-120.418358, 49.171346], [-120.416849, 49.170268], [-120.411181, 49.168004], [-120.412089, 49.166432], [-120.413172, 49.166224], [-120.414806, 49.165504], [-120.419827, 49.158034], [-120.423899, 49.154041], [-120.42448, 49.152167], [-120.424086, 49.150297], [-120.422303, 49.148427], [-120.418996, 49.147984], [-120.415794, 49.146562], [-120.414587, 49.144916], [-120.415496, 49.143209], [-120.417863, 49.141243], [-120.418333, 49.140621], [-120.415378, 49.137432], [-120.416842, 49.127351], [-120.419172, 49.124524], [-120.421138, 49.123431], [-120.424088, 49.122702], [-120.433851, 49.122319], [-120.441616, 49.122565], [-120.443111, 49.122228], [-120.44458, 49.121157], [-120.444129, 49.116239], [-120.444904, 49.112283], [-120.439334, 49.108379], [-120.436558, 49.10602], [-120.432481, 49.101137], [-120.433989, 49.100121], [-120.441557, 49.097728], [-120.442238, 49.096704], [-120.440984, 49.095009], [-120.441996, 49.091653], [-120.444477, 49.089452], [-120.4474, 49.087853], [-120.455738, 49.084001], [-120.457317, 49.081274], [-120.455658, 49.079034], [-120.4529, 49.077951], [-120.448237, 49.076663], [-120.443901, 49.070178], [-120.44089, 49.062632], [-120.440423, 49.061027], [-120.441024, 49.059757], [-120.443321, 49.058423], [-120.447867, 49.056107], [-120.453977, 49.053971], [-120.456553, 49.050929], [-120.460199, 49.050179], [-120.460458, 49.049558], [-120.458851, 49.049055], [-120.457307, 49.049478], [-120.455697, 49.049112], [-120.453984, 49.047631], [-120.450184, 49.045902], [-120.444626, 49.043955], [-120.437949, 49.042025], [-120.436302, 49.041467], [-120.43513, 49.033071], [-120.433766, 49.032897], [-120.431514, 49.031519], [-120.429818, 49.029224], [-120.425422, 49.025222], [-120.420555, 49.022111], [-120.416859, 49.018359], [-120.414695, 49.01682], [-120.405189, 49.010694], [-120.403925, 49.007589], [-120.402549, 49.000078], [-120.369969, 49.000082], [-119.946237, 49.000155], [-119.944701, 49.003798], [-119.935566, 49.007002], [-119.927595, 49.010625], [-119.918481, 49.013109], [-119.910084, 49.017644], [-119.909559, 49.02261], [-119.895565, 49.033964], [-119.892203, 49.035961], [-119.893014, 49.041207], [-119.884538, 49.046545], [-119.87274, 49.047555], [-119.871145, 49.048509], [-119.865455, 49.051227], [-119.85484, 49.05776], [-119.843401, 49.063966], [-119.840909, 49.065695], [-119.837198, 49.068413], [-119.836695, 49.068499], [-119.836219, 49.068789], [-119.835708, 49.068946], [-119.834872, 49.068957], [-119.834295, 49.068899], [-119.833164, 49.069008], [-119.832856, 49.069132], [-119.832621, 49.069336], [-119.83226, 49.069515], [-119.832083, 49.069755], [-119.830463, 49.070631], [-119.829984, 49.070642], [-119.829633, 49.070742], [-119.828794, 49.071149], [-119.827739, 49.071391], [-119.827113, 49.071703], [-119.826936, 49.071707], [-119.826441, 49.071917], [-119.826181, 49.071932], [-119.825873, 49.072273], [-119.824953, 49.072475], [-119.82437, 49.072831], [-119.824128, 49.073134], [-119.823233, 49.07331], [-119.822997, 49.073495], [-119.822528, 49.07366], [-119.821845, 49.07419], [-119.821633, 49.074527], [-119.821035, 49.074866], [-119.820603, 49.075218], [-119.820232, 49.075668], [-119.819813, 49.075795], [-119.8192, 49.076107], [-119.818389, 49.07628], [-119.818068, 49.076638], [-119.817895, 49.076742], [-119.816984, 49.076854], [-119.81657, 49.077052], [-119.815836, 49.077611], [-119.814653, 49.078279], [-119.814367, 49.078528], [-119.81406, 49.078932], [-119.813681, 49.079239], [-119.813173, 49.079448], [-119.812632, 49.079569], [-119.812368, 49.079747], [-119.812074, 49.080114], [-119.811132, 49.080433], [-119.810868, 49.080601], [-119.810768, 49.080775], [-119.810437, 49.080955], [-119.80987, 49.08113], [-119.809444, 49.081338], [-119.809276, 49.081504], [-119.809155, 49.081795], [-119.808515, 49.082081], [-119.808252, 49.082295], [-119.808007, 49.082795], [-119.80746, 49.083078], [-119.806922, 49.083253], [-119.806597, 49.08355], [-119.805802, 49.084027], [-119.805626, 49.084077], [-119.805255, 49.084049], [-119.804765, 49.084098], [-119.80445, 49.084582], [-119.804135, 49.084806], [-119.803836, 49.084858], [-119.803298, 49.084799], [-119.802985, 49.084843], [-119.802785, 49.084947], [-119.802454, 49.085368], [-119.801779, 49.085817], [-119.800904, 49.085828], [-119.80031, 49.085969], [-119.799674, 49.086614], [-119.799383, 49.086784], [-119.798949, 49.086867], [-119.797617, 49.087537], [-119.796587, 49.087733], [-119.795996, 49.087955], [-119.795625, 49.088161], [-119.794998, 49.08824], [-119.794299, 49.088472], [-119.793354, 49.088972], [-119.79328, 49.089081], [-119.792747, 49.089346], [-119.792248, 49.089988], [-119.791723, 49.090172], [-119.791019, 49.090558], [-119.790439, 49.090968], [-119.789844, 49.091594], [-119.789923, 49.091763], [-119.789891, 49.091944], [-119.789319, 49.092471], [-119.789117, 49.092781], [-119.788487, 49.093039], [-119.787869, 49.093513], [-119.787525, 49.093701], [-119.787276, 49.093924], [-119.787183, 49.094204], [-119.786976, 49.094435], [-119.786363, 49.094737], [-119.786193, 49.094903], [-119.785704, 49.095707], [-119.785433, 49.095983], [-119.784061, 49.096457], [-119.783281, 49.096944], [-119.782497, 49.096909], [-119.782162, 49.096773], [-119.780241, 49.096756], [-119.779774, 49.096722], [-119.779523, 49.096638], [-119.778282, 49.096749], [-119.778135, 49.096825], [-119.777916, 49.09683], [-119.777554, 49.096974], [-119.777203, 49.097037], [-119.77671, 49.09704], [-119.776527, 49.096971], [-119.776228, 49.096997], [-119.77558, 49.096923], [-119.774854, 49.096949], [-119.774043, 49.096654], [-119.772884, 49.09652], [-119.772548, 49.096366], [-119.771828, 49.096221], [-119.771046, 49.095952], [-119.770694, 49.095808], [-119.770337, 49.095554], [-119.770228, 49.095549], [-119.769981, 49.095312], [-119.769054, 49.095127], [-119.76868, 49.094821], [-119.768329, 49.094667], [-119.766608, 49.094502], [-119.764664, 49.094522], [-119.763175, 49.094351], [-119.762688, 49.094218], [-119.762543, 49.094104], [-119.761844, 49.093815], [-119.760423, 49.093921], [-119.759517, 49.093879], [-119.75883, 49.094094], [-119.758212, 49.09455], [-119.757867, 49.094738], [-119.757619, 49.094791], [-119.75656, 49.09772], [-119.749037, 49.09805], [-119.749402, 49.102146], [-119.760623, 49.102248], [-119.760894, 49.113417], [-119.782489, 49.113389], [-119.782412, 49.131107], [-119.782479, 49.167552], [-119.773741, 49.167617], [-119.773968, 49.169865], [-119.780381, 49.169795], [-119.781536, 49.171416], [-119.786418, 49.171231], [-119.786735, 49.179858], [-119.787153, 49.184292], [-119.789097, 49.183826], [-119.789484, 49.190007], [-119.791, 49.189895], [-119.791276, 49.193877], [-119.791582, 49.195991], [-119.790893, 49.195978], [-119.790126, 49.19622], [-119.789454, 49.196327], [-119.782226, 49.196462], [-119.781511, 49.196519], [-119.776266, 49.196474], [-119.775889, 49.196548], [-119.753308, 49.196463], [-119.748857, 49.196608], [-119.731474, 49.196351], [-119.716989, 49.196771], [-119.67639, 49.19649], [-119.676247, 49.222133], [-119.675554, 49.277732], [-119.670055, 49.277595], [-119.670455, 49.299459], [-119.71312, 49.299722], [-119.740862, 49.299619], [-119.754, 49.300889], [-119.797483, 49.301261], [-119.797666, 49.309602], [-119.827994, 49.310084], [-119.841841, 49.310219], [-119.841882, 49.31408], [-119.856855, 49.314129], [-119.891156, 49.314356], [-119.894322, 49.371514], [-119.932288, 49.369831], [-119.93195, 49.375121], [-119.940675, 49.375401], [-119.940633, 49.381232], [-119.934946, 49.381405], [-119.937235, 49.403846], [-119.935583, 49.401698], [-119.934863, 49.400871], [-119.931767, 49.400978], [-119.929498, 49.401993], [-119.928505, 49.402362], [-119.925866, 49.402733], [-119.924233, 49.404627], [-119.922518, 49.405472], [-119.920861, 49.404654], [-119.91988, 49.403566], [-119.919142, 49.40335], [-119.917403, 49.403759], [-119.915134, 49.404774], [-119.912446, 49.404274], [-119.911366, 49.402647], [-119.910674, 49.401153], [-119.909136, 49.39916], [-119.907735, 49.397758], [-119.906798, 49.397667], [-119.905143, 49.397924], [-119.903431, 49.397566], [-119.901904, 49.396392], [-119.900134, 49.394345], [-119.897898, 49.392188], [-119.896228, 49.391754], [-119.895193, 49.391661], [-119.894761, 49.402795], [-119.896234, 49.408927], [-119.899755, 49.465493], [-119.902937, 49.464445], [-119.904527, 49.463456], [-119.906365, 49.464226], [-119.907354, 49.465592], [-119.910117, 49.466579], [-119.911363, 49.466529], [-119.913672, 49.468658], [-119.915104, 49.469219], [-119.915136, 49.471593], [-119.900142, 49.471702], [-119.9007, 49.481146], [-119.901856, 49.481926], [-119.903527, 49.483463], [-119.90372, 49.485514], [-119.904791, 49.485969], [-119.907628, 49.486302], [-119.908729, 49.491391], [-119.908411, 49.494142], [-119.907841, 49.497694], [-119.908097, 49.500088], [-119.911537, 49.503674], [-119.914554, 49.507572], [-119.915316, 49.510534], [-119.917472, 49.514395], [-119.92042, 49.517047], [-119.927654, 49.516149], [-119.929508, 49.516785], [-119.930851, 49.51872], [-119.933937, 49.519519], [-119.949626, 49.528883], [-119.962189, 49.523838], [-119.973318, 49.517241], [-119.982607, 49.512245], [-119.98945, 49.507425], [-120.001084, 49.505826], [-120.028246, 49.51855], [-120.033288, 49.521513], [-120.033309, 49.528835], [-120.032859, 49.53546], [-120.033216, 49.536108], [-120.034534, 49.539565], [-120.033137, 49.541082], [-120.030001, 49.541868], [-120.027156, 49.542926], [-120.028008, 49.544337], [-120.02928, 49.545717], [-120.029175, 49.547748], [-120.028158, 49.549032], [-120.025583, 49.55086], [-120.022222, 49.552629], [-120.022278, 49.55425], [-120.024988, 49.556061], [-120.032878, 49.566041], [-120.040353, 49.5656], [-120.040668, 49.569058], [-120.047729, 49.571286], [-120.048464, 49.57297], [-120.046635, 49.575606], [-120.043056, 49.578414], [-120.042902, 49.580106], [-120.041202, 49.581801], [-120.037664, 49.583323], [-120.034444, 49.58517], [-120.033121, 49.588392], [-120.032445, 49.592117], [-120.030901, 49.593203], [-120.031616, 49.594838], [-120.034287, 49.596261], [-120.035971, 49.597747], [-120.037459, 49.599462], [-120.038363, 49.601254], [-120.039933, 49.60284], [-120.040413, 49.604497], [-120.039545, 49.606093], [-120.042103, 49.607693], [-120.046796, 49.608532], [-120.04925, 49.610324], [-120.051499, 49.610164], [-120.055657, 49.61016], [-120.059801, 49.611697], [-120.061486, 49.613885], [-120.064904, 49.617768], [-120.066046, 49.62177], [-120.065649, 49.623008], [-120.066033, 49.624642], [-120.068361, 49.625146], [-120.071454, 49.626582], [-120.073349, 49.628387], [-120.075492, 49.630752], [-120.077431, 49.631058], [-120.081892, 49.629903], [-120.08474, 49.629562], [-120.086333, 49.630398], [-120.086775, 49.632333], [-120.086578, 49.63351], [-120.086261, 49.636742], [-120.087633, 49.638389], [-120.094645, 49.641379], [-120.096619, 49.643955], [-120.09923, 49.646143], [-120.10009, 49.646002], [-120.105008, 49.644176], [-120.109369, 49.642771], [-120.116145, 49.639934], [-120.12092, 49.638964], [-120.126649, 49.637325], [-120.129707, 49.632443], [-120.131366, 49.631556], [-120.134057, 49.632605]], [[-120.122709, 49.366299], [-120.12248, 49.38961], [-120.078011, 49.389487], [-120.077951, 49.35953], [-120.078424, 49.356915], [-120.079804, 49.357008], [-120.079901, 49.356551], [-120.080674, 49.356112], [-120.080762, 49.355637], [-120.080699, 49.355216], [-120.078546, 49.354781], [-120.078502, 49.353997], [-120.079017, 49.353641], [-120.07963, 49.352838], [-120.080044, 49.352579], [-120.080321, 49.352315], [-120.080444, 49.352103], [-120.080599, 49.351134], [-120.080497, 49.350737], [-120.080149, 49.350341], [-120.080222, 49.350019], [-120.080513, 49.349579], [-120.080094, 49.349279], [-120.07991, 49.348991], [-120.0796, 49.347833], [-120.078933, 49.346066], [-120.078509, 49.34552], [-120.07775, 49.344965], [-120.076923, 49.344751], [-120.076159, 49.344711], [-120.07439, 49.344938], [-120.073434, 49.344915], [-120.071217, 49.344459], [-120.070367, 49.34414], [-120.06814, 49.343619], [-120.06724, 49.343231], [-120.067133, 49.343084], [-120.066627, 49.343359], [-120.06711, 49.344272], [-120.066848, 49.34821], [-120.039435, 49.34789], [-120.039555, 49.343694], [-120.041093, 49.322586], [-120.029984, 49.322383], [-120.030619, 49.309221], [-120.029069, 49.305352], [-120.031433, 49.306], [-120.032844, 49.306092], [-120.032722, 49.305443], [-120.032047, 49.304536], [-120.031931, 49.303966], [-120.031769, 49.303683], [-120.031652, 49.302671], [-120.031753, 49.301909], [-120.03223, 49.301499], [-120.03255, 49.300779], [-120.03261, 49.300213], [-120.032456, 49.299813], [-120.032469, 49.299346], [-120.033188, 49.297925], [-120.033403, 49.297318], [-120.034222, 49.295855], [-120.034473, 49.295088], [-120.034716, 49.291721], [-120.034522, 49.29105], [-120.03389, 49.289918], [-120.033604, 49.288714], [-120.033922, 49.288236], [-120.034758, 49.287375], [-120.034874, 49.286119], [-120.034994, 49.285726], [-120.035282, 49.285283], [-120.036461, 49.283956], [-120.036639, 49.283519], [-120.036653, 49.283052], [-120.03653, 49.282796], [-120.03608, 49.282524], [-120.035235, 49.282161], [-120.034895, 49.281874], [-120.034797, 49.281663], [-120.034809, 49.279864], [-120.035135, 49.278118], [-120.034518, 49.27715], [-120.034458, 49.276778], [-120.03476, 49.275878], [-120.035329, 49.274885], [-120.035365, 49.274264], [-120.035235, 49.273901], [-120.034717, 49.273142], [-120.034347, 49.272888], [-120.033918, 49.272734], [-120.032878, 49.271934], [-120.031612, 49.270812], [-120.031113, 49.270197], [-120.030289, 49.268564], [-120.030311, 49.267045], [-120.030063, 49.266633], [-120.029477, 49.266304], [-120.028072, 49.265881], [-120.026473, 49.265515], [-120.026308, 49.265269], [-120.026308, 49.264127], [-120.026135, 49.263806], [-120.024401, 49.262682], [-120.023135, 49.26202], [-120.020829, 49.26107], [-120.019628, 49.260453], [-120.017654, 49.259224], [-120.017167, 49.258653], [-120.016896, 49.257891], [-120.016986, 49.255725], [-120.017432, 49.254703], [-120.018052, 49.254016], [-120.018538, 49.253237], [-120.018793, 49.252407], [-120.019182, 49.251689], [-120.019198, 49.251418], [-120.019111, 49.251263], [-120.018567, 49.250709], [-120.018013, 49.249867], [-120.017523, 49.249567], [-120.016637, 49.249194], [-120.016028, 49.249043], [-120.015137, 49.24901], [-120.01362, 49.249107], [-120.012758, 49.249038], [-120.010717, 49.24869], [-120.009951, 49.248417], [-120.0095, 49.248127], [-120.007709, 49.247288], [-120.005874, 49.246297], [-120.005128, 49.245656], [-120.004675, 49.244744], [-120.004334, 49.243369], [-120.003935, 49.241091], [-120.0036, 49.240054], [-120.003048, 49.240079], [-120.002981, 49.239667], [-120.002707, 49.239127], [-120.002395, 49.238808], [-120.001625, 49.238336], [-120.000877, 49.238022], [-120.000087, 49.237787], [-119.998796, 49.238028], [-119.998653, 49.238001], [-119.99749, 49.237626], [-119.995481, 49.237129], [-119.995114, 49.236968], [-119.995037, 49.236836], [-119.995041, 49.236223], [-119.994983, 49.236154], [-119.993534, 49.235624], [-119.993057, 49.235214], [-119.991931, 49.23454], [-119.991429, 49.234427], [-119.99095, 49.234467], [-119.989783, 49.234003], [-119.988935, 49.233881], [-119.985841, 49.233133], [-119.983992, 49.23255], [-119.983158, 49.232357], [-119.982761, 49.232187], [-119.981732, 49.231502], [-119.981266, 49.231299], [-119.980621, 49.230874], [-119.979847, 49.229877], [-119.977619, 49.227543], [-119.976339, 49.226567], [-119.975079, 49.225961], [-119.973979, 49.225711], [-119.973134, 49.225606], [-119.972144, 49.225569], [-119.970597, 49.225663], [-119.969919, 49.225824], [-119.969117, 49.226177], [-119.968398, 49.226574], [-119.967951, 49.226919], [-119.967813, 49.226895], [-119.967426, 49.226636], [-119.966655, 49.226349], [-119.965062, 49.225914], [-119.963531, 49.225358], [-119.962564, 49.224798], [-119.961441, 49.223937], [-119.96043, 49.222649], [-119.959773, 49.222225], [-119.958918, 49.22151], [-119.958075, 49.22061], [-119.958641, 49.220257], [-119.957792, 49.219423], [-119.957288, 49.219032], [-119.956168, 49.218431], [-119.955029, 49.218019], [-119.954882, 49.218059], [-119.955073, 49.218297], [-119.955108, 49.218404], [-119.955028, 49.218434], [-119.954344, 49.21827], [-119.95354, 49.217922], [-119.953107, 49.217565], [-119.952429, 49.217232], [-119.952182, 49.217256], [-119.951305, 49.217521], [-119.950069, 49.217984], [-119.949296, 49.218364], [-119.947642, 49.218963], [-119.944109, 49.219369], [-119.943594, 49.21948], [-119.943086, 49.21952], [-119.942397, 49.219439], [-119.94157, 49.219415], [-119.941078, 49.219455], [-119.940086, 49.219391], [-119.936242, 49.219435], [-119.935056, 49.219338], [-119.933786, 49.218993], [-119.93304, 49.218716], [-119.931785, 49.218172], [-119.931214, 49.217807], [-119.929757, 49.217081], [-119.927911, 49.21584], [-119.926607, 49.214658], [-119.926208, 49.214434], [-119.925301, 49.213711], [-119.924033, 49.212925], [-119.923399, 49.212653], [-119.922224, 49.212322], [-119.920959, 49.211805], [-119.919529, 49.21133], [-119.917759, 49.21088], [-119.916516, 49.210757], [-119.915474, 49.210801], [-119.91438, 49.210992], [-119.914315, 49.210799], [-119.9143, 49.208984], [-119.928541, 49.208649], [-119.928653, 49.211431], [-119.950586, 49.211939], [-119.978667, 49.211871], [-119.978948, 49.199161], [-120.022719, 49.199373], [-120.022609, 49.216109], [-120.022251, 49.244556], [-120.089092, 49.244913], [-120.089137, 49.256083], [-120.089354, 49.273138], [-120.043815, 49.273551], [-120.044013, 49.302461], [-120.044986, 49.302458], [-120.045499, 49.317866], [-120.059374, 49.317886], [-120.059693, 49.32659], [-120.07061, 49.327228], [-120.070471, 49.335926], [-120.080844, 49.33645], [-120.081508, 49.343392], [-120.089874, 49.343333], [-120.090234, 49.348594], [-120.100716, 49.34862], [-120.100661, 49.350129], [-120.11132, 49.350398], [-120.111679, 49.358312], [-120.110811, 49.358386], [-120.110391, 49.358518], [-120.109776, 49.358648], [-120.109432, 49.358657], [-120.109068, 49.358773], [-120.107835, 49.358877], [-120.107306, 49.358981], [-120.106383, 49.358967], [-120.105726, 49.358906], [-120.105442, 49.358809], [-120.104388, 49.358711], [-120.103838, 49.358921], [-120.102311, 49.359352], [-120.10195, 49.359396], [-120.100973, 49.359349], [-120.10027, 49.35978], [-120.100769, 49.360589], [-120.10057, 49.366662], [-120.122709, 49.366299]], [[-119.913759, 49.211763], [-119.915624, 49.211474], [-119.916417, 49.211417], [-119.917244, 49.211459], [-119.917882, 49.21156], [-119.919972, 49.212073], [-119.922996, 49.213067], [-119.923394, 49.213274], [-119.924006, 49.213635], [-119.925139, 49.21448], [-119.926007, 49.215196], [-119.926879, 49.216037], [-119.928356, 49.217062], [-119.930061, 49.218026], [-119.931835, 49.218764], [-119.932039, 49.223018], [-119.925775, 49.223081], [-119.907376, 49.223], [-119.907256, 49.212936], [-119.908944, 49.212784], [-119.91066, 49.212533], [-119.913759, 49.211763]], [[-119.823432, 49.198609], [-119.824659, 49.198738], [-119.826587, 49.198317], [-119.828183, 49.198388], [-119.830349, 49.199154], [-119.831158, 49.199594], [-119.835192, 49.200658], [-119.837149, 49.200788], [-119.837215, 49.201811], [-119.837119, 49.202451], [-119.837266, 49.202493], [-119.837377, 49.202646], [-119.837272, 49.208721], [-119.837374, 49.208799], [-119.837038, 49.211074], [-119.824789, 49.211118], [-119.818966, 49.211075], [-119.819006, 49.212714], [-119.816138, 49.21318], [-119.815094, 49.213047], [-119.813304, 49.213023], [-119.813257, 49.212375], [-119.812636, 49.210473], [-119.812669, 49.208558], [-119.814883, 49.208486], [-119.814976, 49.20523], [-119.814809, 49.203374], [-119.816163, 49.202951], [-119.817203, 49.202351], [-119.818066, 49.201587], [-119.818684, 49.200886], [-119.818915, 49.200776], [-119.819113, 49.200259], [-119.819358, 49.199878], [-119.821377, 49.198643], [-119.822542, 49.198248], [-119.823432, 49.198609]]]]}, "properties": {"name": "Okanagan-Similkameen G", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen G", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907053", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.948457, 49.760578], [-120.949742, 49.750795], [-120.954678, 49.746815], [-120.959595, 49.744114], [-120.960588, 49.738658], [-120.960465, 49.734113], [-120.956757, 49.725923], [-120.954854, 49.719064], [-120.954201, 49.711974], [-120.955118, 49.709324], [-120.956434, 49.708546], [-120.956205, 49.707374], [-120.960554, 49.697825], [-120.961626, 49.6961], [-120.962413, 49.673457], [-120.958689, 49.673532], [-120.957974, 49.671695], [-120.957078, 49.670192], [-120.957715, 49.669028], [-120.959502, 49.666813], [-120.96127, 49.662265], [-120.960284, 49.660928], [-120.959314, 49.659036], [-120.960339, 49.656373], [-120.962149, 49.653325], [-120.963943, 49.650833], [-120.96382, 49.649222], [-120.962663, 49.64794], [-120.96032, 49.646487], [-120.959605, 49.644651], [-120.959507, 49.642206], [-120.962749, 49.640499], [-120.967898, 49.635697], [-120.970642, 49.62844], [-120.967904, 49.625358], [-120.966574, 49.623476], [-120.964005, 49.621376], [-120.963197, 49.620634], [-120.962627, 49.619432], [-120.962866, 49.617741], [-120.962679, 49.613802], [-120.967088, 49.610777], [-120.968322, 49.609306], [-120.970359, 49.608269], [-120.972816, 49.608099], [-120.975632, 49.609505], [-120.976697, 49.610934], [-120.983581, 49.611961], [-120.985147, 49.609537], [-120.986853, 49.608376], [-120.989647, 49.606943], [-120.991732, 49.605352], [-120.993676, 49.602807], [-120.993391, 49.601821], [-120.992203, 49.600125], [-120.990729, 49.598675], [-120.990111, 49.597719], [-120.991814, 49.597328], [-120.993604, 49.597677], [-120.997428, 49.597606], [-120.999986, 49.597233], [-121.00206, 49.597042], [-121.002666, 49.59684], [-121.004904, 49.595148], [-121.006397, 49.594454], [-121.010721, 49.594602], [-121.013428, 49.594175], [-121.018641, 49.593056], [-121.023452, 49.591629], [-121.026304, 49.590063], [-121.029288, 49.588892], [-121.034231, 49.58764], [-121.037886, 49.586909], [-121.036694, 49.58511], [-121.03637, 49.584014], [-121.036586, 49.582745], [-121.038428, 49.580956], [-121.041493, 49.578339], [-121.042714, 49.57773], [-121.042997, 49.576549], [-121.042137, 49.575189], [-121.040938, 49.574047], [-121.040149, 49.572337], [-121.040637, 49.570981], [-121.040932, 49.568705], [-121.040266, 49.568046], [-121.036371, 49.567772], [-121.035232, 49.567375], [-121.036984, 49.56147], [-121.038864, 49.556178], [-121.039017, 49.554603], [-121.037484, 49.553241], [-121.035896, 49.550915], [-121.037874, 49.548864], [-121.047342, 49.546709], [-121.048296, 49.545749], [-121.04939, 49.544307], [-121.049481, 49.542206], [-121.050527, 49.538926], [-121.049832, 49.534896], [-121.047713, 49.531869], [-121.048816, 49.529552], [-121.050784, 49.528377], [-121.052079, 49.52698], [-121.054385, 49.525587], [-121.057893, 49.525555], [-121.060056, 49.525081], [-121.064367, 49.526104], [-121.069974, 49.525072], [-121.072619, 49.52346], [-121.076004, 49.521939], [-121.079191, 49.519935], [-121.080556, 49.518188], [-121.08206, 49.515959], [-121.081877, 49.514164], [-121.08002, 49.511708], [-121.076156, 49.507709], [-121.075706, 49.505341], [-121.073237, 49.503186], [-121.074125, 49.501699], [-121.074084, 49.498763], [-121.073441, 49.495474], [-121.071171, 49.493802], [-121.069434, 49.492614], [-121.067973, 49.490682], [-121.064958, 49.489796], [-121.063972, 49.487383], [-121.062136, 49.482294], [-121.059344, 49.479043], [-121.056546, 49.476449], [-121.051122, 49.47481], [-121.050931, 49.47367], [-121.053778, 49.471225], [-121.062159, 49.466781], [-121.065734, 49.465739], [-121.068967, 49.465354], [-121.0724, 49.465232], [-121.076033, 49.465373], [-121.079936, 49.465427], [-121.081418, 49.465168], [-121.081705, 49.463109], [-121.080134, 49.458373], [-121.081217, 49.457587], [-121.084054, 49.456018], [-121.085746, 49.454708], [-121.087711, 49.452873], [-121.088936, 49.451167], [-121.089456, 49.448818], [-121.089572, 49.446381], [-121.0901, 49.44512], [-121.090617, 49.442336], [-121.094148, 49.440436], [-121.099269, 49.441084], [-121.098367, 49.3924], [-121.097991, 49.35642], [-121.098045, 49.353906], [-121.075253, 49.353127], [-121.076923, 49.349892], [-121.087946, 49.348013], [-121.096506, 49.34923], [-121.101775, 49.348593], [-121.098135, 49.345614], [-121.095386, 49.343161], [-121.09405, 49.342278], [-121.093588, 49.341004], [-121.092725, 49.339421], [-121.090785, 49.338624], [-121.08845, 49.336641], [-121.086982, 49.335582], [-121.085448, 49.334217], [-121.084451, 49.332677], [-121.082452, 49.330695], [-121.08065, 49.329416], [-121.078376, 49.328617], [-121.076433, 49.328477], [-121.074824, 49.328557], [-121.072206, 49.32907], [-121.071262, 49.329809], [-121.06837, 49.331065], [-121.066754, 49.332019], [-121.062855, 49.333488], [-121.058098, 49.333159], [-121.055015, 49.333057], [-121.052537, 49.332651], [-121.049655, 49.332593], [-121.047315, 49.331706], [-121.045244, 49.330732], [-121.043714, 49.328926], [-121.04087, 49.323386], [-121.042353, 49.32181], [-121.042965, 49.320407], [-121.041495, 49.319787], [-121.039359, 49.318505], [-121.035821, 49.316691], [-121.03529, 49.315987], [-121.034829, 49.314713], [-121.034444, 49.31221], [-121.033314, 49.310933], [-121.029724, 49.307057], [-121.026122, 49.304935], [-121.02432, 49.304093], [-121.021979, 49.303644], [-121.021038, 49.303945], [-121.019358, 49.304592], [-121.018151, 49.304761], [-121.016135, 49.305407], [-121.013047, 49.306179], [-121.011437, 49.306476], [-121.008741, 49.308211], [-121.007452, 49.31004], [-121.004144, 49.312733], [-120.997418, 49.313673], [-121.000164, 49.310046], [-121.001418, 49.27824], [-120.998387, 49.277908], [-120.997054, 49.278073], [-120.996789, 49.278042], [-120.996708, 49.275251], [-120.992286, 49.272902], [-120.981214, 49.271503], [-120.967162, 49.274109], [-120.956014, 49.275339], [-120.944354, 49.270642], [-120.936121, 49.275976], [-120.931715, 49.281961], [-120.929422, 49.28373], [-120.927527, 49.286493], [-120.923101, 49.291703], [-120.918268, 49.299718], [-120.917296, 49.300892], [-120.914186, 49.302745], [-120.912152, 49.303565], [-120.90579, 49.305674], [-120.886521, 49.304349], [-120.869861, 49.303318], [-120.86795, 49.302711], [-120.861769, 49.298168], [-120.858704, 49.296018], [-120.855464, 49.295227], [-120.849345, 49.294831], [-120.839064, 49.295063], [-120.828045, 49.295045], [-120.823972, 49.29497], [-120.819455, 49.293567], [-120.816349, 49.289205], [-120.814566, 49.287116], [-120.812067, 49.284431], [-120.812719, 49.279629], [-120.8151, 49.276612], [-120.819153, 49.271933], [-120.820627, 49.26912], [-120.818846, 49.263365], [-120.816789, 49.258304], [-120.818002, 49.251242], [-120.820766, 49.247322], [-120.823386, 49.246222], [-120.83292, 49.244807], [-120.838201, 49.24337], [-120.843693, 49.242039], [-120.845782, 49.240762], [-120.84842, 49.234021], [-120.847169, 49.228095], [-120.84795, 49.225244], [-120.846886, 49.221339], [-120.847385, 49.219705], [-120.850599, 49.217632], [-120.857734, 49.211958], [-120.859587, 49.208242], [-120.864453, 49.20555], [-120.868875, 49.204387], [-120.8736, 49.204512], [-120.878153, 49.205818], [-120.887767, 49.210519], [-120.895266, 49.214514], [-120.894813, 49.212492], [-120.893985, 49.210678], [-120.89252, 49.208895], [-120.891278, 49.206174], [-120.893841, 49.196867], [-120.894405, 49.191861], [-120.894041, 49.189214], [-120.892774, 49.186679], [-120.890967, 49.184261], [-120.887579, 49.181645], [-120.882394, 49.178783], [-120.881115, 49.17743], [-120.882535, 49.17609], [-120.903184, 49.175138], [-120.905172, 49.174556], [-120.905433, 49.173706], [-120.903446, 49.172905], [-120.899579, 49.171208], [-120.896363, 49.169302], [-120.895725, 49.168449], [-120.893204, 49.165554], [-120.891459, 49.164057], [-120.889025, 49.162958], [-120.881605, 49.159199], [-120.878429, 49.157104], [-120.875953, 49.153666], [-120.869938, 49.148485], [-120.866088, 49.145724], [-120.863975, 49.143552], [-120.864397, 49.141475], [-120.864247, 49.139113], [-120.86078, 49.137464], [-120.858503, 49.135491], [-120.857984, 49.133953], [-120.859643, 49.130773], [-120.863474, 49.126422], [-120.867961, 49.122771], [-120.874393, 49.120344], [-120.878167, 49.11832], [-120.886358, 49.117411], [-120.889146, 49.116346], [-120.891695, 49.114361], [-120.89383, 49.113621], [-120.897065, 49.112736], [-120.904186, 49.114107], [-120.905978, 49.115064], [-120.909816, 49.116956], [-120.91432, 49.117105], [-120.918641, 49.114377], [-120.922917, 49.112307], [-120.925993, 49.111149], [-120.929826, 49.108547], [-120.935193, 49.108653], [-120.936966, 49.108028], [-120.939402, 49.106135], [-120.941831, 49.104831], [-120.944216, 49.104186], [-120.952255, 49.103672], [-120.965511, 49.103778], [-120.965637, 49.099287], [-120.963112, 49.094835], [-120.954139, 49.092729], [-120.95218, 49.091744], [-120.94883, 49.089152], [-120.945512, 49.089086], [-120.942833, 49.088807], [-120.934986, 49.087027], [-120.926633, 49.086], [-120.921761, 49.084053], [-120.91627, 49.080157], [-120.912156, 49.078512], [-120.902677, 49.077284], [-120.898713, 49.077509], [-120.897099, 49.078036], [-120.895078, 49.07816], [-120.893826, 49.0777], [-120.892646, 49.076672], [-120.892608, 49.076136], [-120.890286, 49.073922], [-120.887257, 49.069493], [-120.88372, 49.066455], [-120.880774, 49.063652], [-120.873177, 49.05813], [-120.868668, 49.05271], [-120.852215, 49.044401], [-120.83688, 49.044722], [-120.832391, 49.042253], [-120.83028, 49.034152], [-120.827535, 49.029761], [-120.825699, 49.025463], [-120.832322, 49.016461], [-120.839259, 49.008423], [-120.846565, 49.011118], [-120.848153, 49.008849], [-120.848408, 49.000077], [-120.748605, 49.000002], [-120.516206, 49.000021], [-120.402549, 49.000078], [-120.403925, 49.007589], [-120.405189, 49.010694], [-120.414695, 49.01682], [-120.416859, 49.018359], [-120.420555, 49.022111], [-120.425422, 49.025222], [-120.429818, 49.029224], [-120.431514, 49.031519], [-120.433766, 49.032897], [-120.43513, 49.033071], [-120.436302, 49.041467], [-120.437949, 49.042025], [-120.444626, 49.043955], [-120.450184, 49.045902], [-120.453984, 49.047631], [-120.455697, 49.049112], [-120.457307, 49.049478], [-120.458851, 49.049055], [-120.460458, 49.049558], [-120.460199, 49.050179], [-120.456553, 49.050929], [-120.453977, 49.053971], [-120.447867, 49.056107], [-120.443321, 49.058423], [-120.441024, 49.059757], [-120.440423, 49.061027], [-120.44089, 49.062632], [-120.443901, 49.070178], [-120.448237, 49.076663], [-120.4529, 49.077951], [-120.455658, 49.079034], [-120.457317, 49.081274], [-120.455738, 49.084001], [-120.4474, 49.087853], [-120.444477, 49.089452], [-120.441996, 49.091653], [-120.440984, 49.095009], [-120.442238, 49.096704], [-120.441557, 49.097728], [-120.433989, 49.100121], [-120.432481, 49.101137], [-120.436558, 49.10602], [-120.439334, 49.108379], [-120.444904, 49.112283], [-120.444129, 49.116239], [-120.44458, 49.121157], [-120.443111, 49.122228], [-120.441616, 49.122565], [-120.433851, 49.122319], [-120.424088, 49.122702], [-120.421138, 49.123431], [-120.419172, 49.124524], [-120.416842, 49.127351], [-120.415378, 49.137432], [-120.418333, 49.140621], [-120.417863, 49.141243], [-120.415496, 49.143209], [-120.414587, 49.144916], [-120.415794, 49.146562], [-120.418996, 49.147984], [-120.422303, 49.148427], [-120.424086, 49.150297], [-120.42448, 49.152167], [-120.423899, 49.154041], [-120.419827, 49.158034], [-120.414806, 49.165504], [-120.413172, 49.166224], [-120.412089, 49.166432], [-120.411181, 49.168004], [-120.416849, 49.170268], [-120.418358, 49.171346], [-120.424501, 49.172853], [-120.425973, 49.17374], [-120.427896, 49.177559], [-120.422854, 49.180101], [-120.42171, 49.181071], [-120.421274, 49.183709], [-120.424791, 49.187667], [-120.424423, 49.19096], [-120.426192, 49.193375], [-120.427856, 49.194944], [-120.430936, 49.196337], [-120.431136, 49.197524], [-120.428653, 49.198918], [-120.422807, 49.200228], [-120.420422, 49.200915], [-120.415961, 49.201583], [-120.412477, 49.201335], [-120.407826, 49.201185], [-120.408396, 49.20337], [-120.40734, 49.205867], [-120.411119, 49.211027], [-120.41332, 49.21263], [-120.414088, 49.215092], [-120.414196, 49.217356], [-120.41321, 49.218546], [-120.409066, 49.222217], [-120.408846, 49.223299], [-120.41, 49.224421], [-120.412167, 49.226135], [-120.413601, 49.228181], [-120.414538, 49.229979], [-120.414275, 49.231143], [-120.415369, 49.233837], [-120.415848, 49.235576], [-120.415464, 49.236576], [-120.413882, 49.237345], [-120.411735, 49.237482], [-120.407968, 49.236374], [-120.40485, 49.235737], [-120.402705, 49.235738], [-120.400398, 49.235655], [-120.398078, 49.236116], [-120.393789, 49.238346], [-120.39203, 49.239846], [-120.389437, 49.239651], [-120.387841, 49.239141], [-120.385316, 49.239599], [-120.382842, 49.239568], [-120.377267, 49.238995], [-120.374083, 49.239391], [-120.370452, 49.239454], [-120.362353, 49.240114], [-120.354676, 49.237265], [-120.352683, 49.237892], [-120.351081, 49.243054], [-120.350321, 49.244103], [-120.344001, 49.246496], [-120.340625, 49.247119], [-120.338408, 49.246736], [-120.331635, 49.243872], [-120.326196, 49.239109], [-120.318733, 49.233027], [-120.31432, 49.230807], [-120.308503, 49.230682], [-120.300526, 49.234273], [-120.295942, 49.234972], [-120.288801, 49.232227], [-120.277112, 49.226865], [-120.271336, 49.223825], [-120.268156, 49.220744], [-120.264959, 49.216422], [-120.263216, 49.213127], [-120.260105, 49.212351], [-120.257014, 49.21231], [-120.253595, 49.214059], [-120.251654, 49.216287], [-120.249482, 49.220006], [-120.247639, 49.226523], [-120.248058, 49.229023], [-120.249528, 49.233489], [-120.255382, 49.240091], [-120.261186, 49.249054], [-120.262982, 49.249434], [-120.265981, 49.255064], [-120.266711, 49.255711], [-120.267952, 49.256468], [-120.261745, 49.260969], [-120.262118, 49.262604], [-120.262955, 49.264837], [-120.262146, 49.266304], [-120.26527, 49.270114], [-120.26605, 49.270207], [-120.266046, 49.271355], [-120.266438, 49.271907], [-120.270429, 49.272849], [-120.275438, 49.280453], [-120.275462, 49.28193], [-120.275672, 49.284967], [-120.271699, 49.289382], [-120.272472, 49.292917], [-120.271326, 49.295502], [-120.272572, 49.297035], [-120.272763, 49.29845], [-120.272492, 49.301515], [-120.2753, 49.302526], [-120.275384, 49.303851], [-120.272392, 49.30749], [-120.272745, 49.30981], [-120.268742, 49.315589], [-120.268854, 49.317107], [-120.274161, 49.323178], [-120.273828, 49.324498], [-120.272561, 49.325233], [-120.25895, 49.330985], [-120.25097, 49.328897], [-120.24107, 49.32903], [-120.233875, 49.335984], [-120.226825, 49.340795], [-120.226965, 49.363326], [-120.226646, 49.3991], [-120.226334, 49.399611], [-120.226504, 49.40043], [-120.231599, 49.401439], [-120.231675, 49.406155], [-120.226652, 49.405996], [-120.22654, 49.415774], [-120.225982, 49.416294], [-120.224637, 49.419523], [-120.214484, 49.423393], [-120.209709, 49.425277], [-120.195289, 49.427833], [-120.185681, 49.429422], [-120.173195, 49.431653], [-120.168493, 49.433762], [-120.166331, 49.438175], [-120.17049, 49.442023], [-120.169717, 49.446085], [-120.169192, 49.446762], [-120.167615, 49.449423], [-120.168521, 49.453965], [-120.168556, 49.460105], [-120.168349, 49.46439], [-120.169869, 49.465968], [-120.17243, 49.467704], [-120.174872, 49.471042], [-120.17855, 49.478324], [-120.17334, 49.487878], [-120.177207, 49.496228], [-120.17745, 49.496334], [-120.179034, 49.496643], [-120.182587, 49.498639], [-120.186583, 49.499918], [-120.185426, 49.502296], [-120.187551, 49.506545], [-120.188901, 49.50814], [-120.192414, 49.510071], [-120.194137, 49.51218], [-120.193211, 49.514611], [-120.194591, 49.517833], [-120.197218, 49.52092], [-120.197307, 49.52316], [-120.196105, 49.524419], [-120.196381, 49.525592], [-120.18986, 49.530662], [-120.186161, 49.532203], [-120.18114, 49.533784], [-120.174422, 49.537531], [-120.173756, 49.538999], [-120.175323, 49.541156], [-120.170086, 49.546009], [-120.169415, 49.548926], [-120.165636, 49.551812], [-120.165651, 49.555529], [-120.160161, 49.559554], [-120.160655, 49.561402], [-120.163687, 49.56709], [-120.162647, 49.568162], [-120.157389, 49.570037], [-120.161042, 49.577221], [-120.162548, 49.579005], [-120.169585, 49.583589], [-120.165276, 49.591709], [-120.157812, 49.598559], [-120.158655, 49.606098], [-120.174157, 49.620169], [-120.165087, 49.627368], [-120.146369, 49.633571], [-120.137483, 49.634398], [-120.134057, 49.632605], [-120.131366, 49.631556], [-120.129707, 49.632443], [-120.126649, 49.637325], [-120.12092, 49.638964], [-120.116145, 49.639934], [-120.109369, 49.642771], [-120.105008, 49.644176], [-120.10009, 49.646002], [-120.09923, 49.646143], [-120.095284, 49.647254], [-120.0904, 49.650175], [-120.084332, 49.653078], [-120.074757, 49.66018], [-120.06885, 49.661705], [-120.065276, 49.662419], [-120.060192, 49.66407], [-120.059518, 49.66655], [-120.060128, 49.671383], [-120.055427, 49.673959], [-120.053929, 49.676313], [-120.051978, 49.678048], [-120.050253, 49.678291], [-120.047582, 49.67754], [-120.042117, 49.678072], [-120.040662, 49.677282], [-120.037628, 49.673931], [-120.034121, 49.671534], [-120.030254, 49.670246], [-120.027025, 49.670332], [-120.022093, 49.671791], [-120.019002, 49.672166], [-120.013997, 49.672224], [-120.007122, 49.671524], [-120.000908, 49.669623], [-119.997215, 49.667568], [-119.992173, 49.666069], [-119.98991, 49.66467], [-119.975201, 49.667631], [-119.97498, 49.680902], [-119.975101, 49.693181], [-119.975197, 49.696214], [-120.003469, 49.696465], [-120.004009, 49.703909], [-119.998326, 49.703884], [-119.998322, 49.710944], [-119.979591, 49.710394], [-119.979939, 49.729757], [-119.979538, 49.766249], [-119.979896, 49.766449], [-119.979495, 49.773201], [-119.979549, 49.773221], [-119.978681, 49.776681], [-119.984429, 49.781337], [-119.984327, 49.789631], [-119.977558, 49.793319], [-119.978093, 49.801887], [-119.972239, 49.806624], [-119.969102, 49.810422], [-119.967014, 49.812207], [-119.968799, 49.819583], [-119.977963, 49.825197], [-119.983649, 49.830224], [-119.991652, 49.833882], [-120.006048, 49.837234], [-120.013473, 49.839405], [-120.017059, 49.844715], [-120.030798, 49.852993], [-120.038914, 49.856583], [-120.046541, 49.857028], [-120.054833, 49.855615], [-120.054804, 49.855704], [-120.056937, 49.853465], [-120.058593, 49.851958], [-120.059993, 49.850816], [-120.06209, 49.849507], [-120.06418, 49.847678], [-120.06677, 49.842938], [-120.068328, 49.839751], [-120.073263, 49.835907], [-120.07953, 49.834559], [-120.081622, 49.836366], [-120.082684, 49.838839], [-120.090063, 49.842645], [-120.094582, 49.844528], [-120.097517, 49.84424], [-120.098956, 49.843509], [-120.107313, 49.843828], [-120.111979, 49.843634], [-120.118388, 49.844094], [-120.11998, 49.844843], [-120.123259, 49.84946], [-120.125159, 49.847931], [-120.128177, 49.845917], [-120.130178, 49.845828], [-120.134019, 49.848222], [-120.136135, 49.850575], [-120.143493, 49.85413], [-120.146816, 49.85473], [-120.149353, 49.855762], [-120.151841, 49.857525], [-120.154713, 49.860512], [-120.157006, 49.863197], [-120.161141, 49.865258], [-120.164348, 49.865082], [-120.16679, 49.864475], [-120.168918, 49.863441], [-120.170683, 49.861711], [-120.17229, 49.85946], [-120.17391, 49.857633], [-120.176244, 49.856678], [-120.181074, 49.856193], [-120.184933, 49.85729], [-120.187295, 49.858563], [-120.19464, 49.860159], [-120.198192, 49.860446], [-120.203877, 49.859412], [-120.20662, 49.858711], [-120.210253, 49.859306], [-120.213394, 49.860529], [-120.214164, 49.871165], [-120.214829, 49.87468], [-120.21485, 49.875913], [-120.213001, 49.879015], [-120.212827, 49.881788], [-120.214136, 49.886237], [-120.224815, 49.892637], [-120.228717, 49.895923], [-120.238383, 49.89573], [-120.247191, 49.896586], [-120.258296, 49.894491], [-120.262766, 49.889031], [-120.268433, 49.887945], [-120.283528, 49.892048], [-120.294506, 49.896429], [-120.296993, 49.896887], [-120.303645, 49.898547], [-120.307843, 49.899964], [-120.320414, 49.905242], [-120.328789, 49.911307], [-120.330065, 49.912012], [-120.333644, 49.911724], [-120.337091, 49.910763], [-120.340468, 49.909205], [-120.343398, 49.907546], [-120.347618, 49.905824], [-120.35446, 49.904629], [-120.362039, 49.903921], [-120.363351, 49.903185], [-120.364316, 49.901276], [-120.364183, 49.896226], [-120.36337, 49.893107], [-120.363767, 49.891537], [-120.366714, 49.88911], [-120.371406, 49.888045], [-120.373858, 49.886879], [-120.374313, 49.88529], [-120.374037, 49.883539], [-120.390152, 49.873891], [-120.386797, 49.866029], [-120.386648, 49.858556], [-120.390467, 49.853508], [-120.388643, 49.849112], [-120.389274, 49.84891], [-120.391406, 49.846143], [-120.393709, 49.842224], [-120.396792, 49.83787], [-120.400418, 49.837307], [-120.407498, 49.837236], [-120.411158, 49.83504], [-120.413819, 49.832393], [-120.41653, 49.830207], [-120.419208, 49.826695], [-120.419639, 49.824315], [-120.419641, 49.822642], [-120.421748, 49.819452], [-120.423879, 49.817766], [-120.432923, 49.814586], [-120.445349, 49.81061], [-120.485716, 49.772232], [-120.50036, 49.77176], [-120.505677, 49.771976], [-120.53062, 49.7725], [-120.573416, 49.772878], [-120.573609, 49.770552], [-120.603773, 49.77077], [-120.604338, 49.749579], [-120.633963, 49.749816], [-120.652559, 49.749645], [-120.658251, 49.749692], [-120.670191, 49.749927], [-120.693161, 49.749881], [-120.692955, 49.7473], [-120.704374, 49.746904], [-120.704471, 49.749558], [-120.71278, 49.749557], [-120.734267, 49.749693], [-120.755837, 49.749754], [-120.75989, 49.749725], [-120.76064, 49.759868], [-120.761827, 49.75981], [-120.772344, 49.759956], [-120.771796, 49.76339], [-120.798747, 49.763653], [-120.832366, 49.763768], [-120.832802, 49.760144], [-120.834156, 49.760072], [-120.881536, 49.760602], [-120.919531, 49.760846], [-120.919535, 49.76081], [-120.948457, 49.760578]], [[-120.50332, 49.484128], [-120.501756, 49.484177], [-120.48669, 49.483815], [-120.48633, 49.482084], [-120.485706, 49.481223], [-120.486057, 49.48054], [-120.48447, 49.47809], [-120.484674, 49.47579], [-120.484498, 49.473183], [-120.486164, 49.473121], [-120.486413, 49.469315], [-120.484759, 49.469163], [-120.484688, 49.469229], [-120.484364, 49.469275], [-120.482484, 49.469293], [-120.482489, 49.469014], [-120.482217, 49.46903], [-120.480846, 49.466687], [-120.481254, 49.466671], [-120.48088, 49.466041], [-120.482421, 49.466028], [-120.482408, 49.465361], [-120.481625, 49.465228], [-120.481282, 49.465262], [-120.478755, 49.462761], [-120.479331, 49.462634], [-120.481142, 49.46183], [-120.48118, 49.4614], [-120.479964, 49.461863], [-120.479498, 49.461979], [-120.47862, 49.462073], [-120.476449, 49.461553], [-120.473084, 49.459773], [-120.473676, 49.458586], [-120.473688, 49.458355], [-120.473625, 49.458111], [-120.473262, 49.457881], [-120.473054, 49.457018], [-120.476951, 49.457231], [-120.477105, 49.455672], [-120.480553, 49.453794], [-120.491502, 49.453406], [-120.491834, 49.449164], [-120.492526, 49.449192], [-120.498491, 49.449103], [-120.498737, 49.449958], [-120.495916, 49.451292], [-120.495945, 49.460068], [-120.496687, 49.459849], [-120.498515, 49.460983], [-120.498317, 49.461149], [-120.502891, 49.459055], [-120.50347, 49.458742], [-120.503971, 49.458601], [-120.504138, 49.457859], [-120.505127, 49.456811], [-120.505698, 49.455685], [-120.506935, 49.45448], [-120.508002, 49.453169], [-120.509157, 49.452269], [-120.510094, 49.451827], [-120.511099, 49.451558], [-120.512959, 49.451381], [-120.5136, 49.45125], [-120.517113, 49.450384], [-120.51795, 49.450093], [-120.518994, 49.449346], [-120.520482, 49.447599], [-120.522582, 49.446277], [-120.523766, 49.445917], [-120.524053, 49.445779], [-120.525597, 49.44593], [-120.526938, 49.445032], [-120.528205, 49.443834], [-120.529128, 49.44251], [-120.529535, 49.440768], [-120.532651, 49.440731], [-120.537004, 49.441156], [-120.535739, 49.441412], [-120.533264, 49.442315], [-120.532076, 49.442775], [-120.531362, 49.44315], [-120.5309, 49.443467], [-120.529976, 49.443396], [-120.529879, 49.44426], [-120.529388, 49.444818], [-120.529128, 49.445356], [-120.528341, 49.447599], [-120.528045, 49.44759], [-120.527953, 49.448275], [-120.527436, 49.448299], [-120.527683, 49.448651], [-120.526353, 49.449088], [-120.527659, 49.449197], [-120.532164, 49.447871], [-120.532234, 49.448312], [-120.532563, 49.449066], [-120.533138, 49.449887], [-120.533588, 49.450309], [-120.534527, 49.450965], [-120.535724, 49.451643], [-120.535441, 49.452473], [-120.534972, 49.45306], [-120.534268, 49.453675], [-120.533848, 49.453829], [-120.532107, 49.453961], [-120.530172, 49.454397], [-120.528106, 49.454982], [-120.527377, 49.45527], [-120.526178, 49.455632], [-120.525999, 49.456099], [-120.526216, 49.456023], [-120.527968, 49.455963], [-120.528504, 49.455855], [-120.52982, 49.455402], [-120.530643, 49.455342], [-120.531124, 49.455409], [-120.532953, 49.455987], [-120.534077, 49.456058], [-120.534993, 49.456246], [-120.535788, 49.456218], [-120.537239, 49.455935], [-120.538481, 49.455537], [-120.538716, 49.455371], [-120.541972, 49.455416], [-120.541849, 49.458234], [-120.541892, 49.462734], [-120.53628, 49.46274], [-120.535912, 49.469238], [-120.532705, 49.469122], [-120.530009, 49.469182], [-120.529984, 49.467479], [-120.529899, 49.466956], [-120.529822, 49.466847], [-120.529338, 49.46662], [-120.528791, 49.466213], [-120.528472, 49.465693], [-120.527642, 49.465199], [-120.527073, 49.464971], [-120.525876, 49.464091], [-120.525456, 49.463937], [-120.525028, 49.463658], [-120.524594, 49.463496], [-120.524156, 49.462885], [-120.522942, 49.462328], [-120.522232, 49.461916], [-120.521938, 49.461374], [-120.520504, 49.461938], [-120.521112, 49.462367], [-120.521544, 49.462796], [-120.522234, 49.463317], [-120.522503, 49.463244], [-120.524019, 49.464158], [-120.525304, 49.46578], [-120.526371, 49.466853], [-120.527878, 49.467171], [-120.527774, 49.46805], [-120.528056, 49.469295], [-120.521998, 49.469084], [-120.521203, 49.469598], [-120.523335, 49.469765], [-120.523846, 49.470077], [-120.523485, 49.470333], [-120.522999, 49.470207], [-120.523226, 49.469948], [-120.521008, 49.469758], [-120.520758, 49.469999], [-120.519357, 49.469856], [-120.518987, 49.469772], [-120.518361, 49.469528], [-120.507689, 49.475237], [-120.503552, 49.475004], [-120.503567, 49.478908], [-120.50332, 49.484128]], [[-120.501457, 49.45756], [-120.502492, 49.457742], [-120.502516, 49.457622], [-120.503815, 49.457867], [-120.503685, 49.458381], [-120.503094, 49.458565], [-120.503345, 49.458003], [-120.502815, 49.457912], [-120.502249, 49.458365], [-120.501069, 49.457942], [-120.501193, 49.457712], [-120.501359, 49.457737], [-120.501457, 49.45756]], [[-120.541486, 49.380493], [-120.541242, 49.380917], [-120.541438, 49.381257], [-120.543492, 49.382067], [-120.544908, 49.382696], [-120.546226, 49.383757], [-120.546974, 49.385181], [-120.537327, 49.383682], [-120.538405, 49.381392], [-120.531693, 49.380337], [-120.530652, 49.382644], [-120.526656, 49.382023], [-120.524323, 49.390578], [-120.496897, 49.38701], [-120.497562, 49.384374], [-120.494785, 49.381925], [-120.494606, 49.377406], [-120.463309, 49.373788], [-120.465605, 49.359768], [-120.488975, 49.36291], [-120.485099, 49.357484], [-120.478187, 49.356879], [-120.479156, 49.352979], [-120.484075, 49.353494], [-120.491412, 49.349651], [-120.492427, 49.348792], [-120.494934, 49.346412], [-120.495278, 49.345196], [-120.493861, 49.343279], [-120.493544, 49.343157], [-120.492795, 49.34199], [-120.491764, 49.341208], [-120.491906, 49.340941], [-120.489537, 49.338808], [-120.488845, 49.339248], [-120.485301, 49.336747], [-120.485206, 49.334783], [-120.482475, 49.334758], [-120.48254, 49.331635], [-120.489857, 49.332206], [-120.492772, 49.334315], [-120.493237, 49.333873], [-120.493866, 49.334265], [-120.494232, 49.334149], [-120.49888, 49.336154], [-120.500456, 49.334769], [-120.502306, 49.335589], [-120.501637, 49.328265], [-120.499191, 49.327708], [-120.498309, 49.328503], [-120.497535, 49.328526], [-120.496599, 49.327566], [-120.494533, 49.32844], [-120.493863, 49.321265], [-120.498513, 49.32083], [-120.498911, 49.319227], [-120.502098, 49.319106], [-120.501973, 49.320771], [-120.503746, 49.320876], [-120.504017, 49.316881], [-120.503094, 49.316315], [-120.50252, 49.310625], [-120.50313, 49.31063], [-120.503395, 49.307577], [-120.502789, 49.307439], [-120.503008, 49.306644], [-120.50232, 49.306531], [-120.503312, 49.301731], [-120.50417, 49.301526], [-120.504711, 49.296935], [-120.501058, 49.29677], [-120.499974, 49.286294], [-120.503808, 49.285477], [-120.504209, 49.27783], [-120.521424, 49.279839], [-120.526473, 49.27712], [-120.527511, 49.277979], [-120.530447, 49.277311], [-120.533696, 49.279386], [-120.532504, 49.280093], [-120.535114, 49.281576], [-120.534508, 49.285529], [-120.538355, 49.286093], [-120.539341, 49.285517], [-120.541643, 49.28822], [-120.54302, 49.288444], [-120.544035, 49.288452], [-120.546417, 49.303361], [-120.547186, 49.303739], [-120.55349, 49.304191], [-120.553581, 49.307934], [-120.550485, 49.307922], [-120.543778, 49.314511], [-120.545066, 49.321581], [-120.541762, 49.321555], [-120.548241, 49.329553], [-120.562638, 49.327892], [-120.564832, 49.332635], [-120.564884, 49.333228], [-120.564051, 49.334203], [-120.5625, 49.335152], [-120.568172, 49.336405], [-120.565842, 49.342073], [-120.563655, 49.34185], [-120.563072, 49.344525], [-120.561622, 49.34517], [-120.561325, 49.352174], [-120.550082, 49.353407], [-120.552998, 49.356022], [-120.555257, 49.359192], [-120.551914, 49.359985], [-120.552268, 49.36093], [-120.552063, 49.361901], [-120.548873, 49.3668], [-120.549122, 49.367136], [-120.549613, 49.370606], [-120.553076, 49.370908], [-120.553605, 49.371232], [-120.552466, 49.375935], [-120.548628, 49.375751], [-120.548913, 49.377507], [-120.547624, 49.377842], [-120.546077, 49.378732], [-120.544464, 49.379534], [-120.542429, 49.380031], [-120.541486, 49.380493]]]]}, "properties": {"name": "Okanagan-Similkameen H", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan-Similkameen H", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907055", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.739298, 49.14251], [-119.756065, 49.142168], [-119.756197, 49.141751], [-119.756262, 49.140698], [-119.75653, 49.140069], [-119.756482, 49.139954], [-119.756107, 49.139873], [-119.755989, 49.13974], [-119.755981, 49.139309], [-119.755867, 49.139024], [-119.756002, 49.138732], [-119.756004, 49.138526], [-119.75575, 49.138154], [-119.75558, 49.138058], [-119.754511, 49.137815], [-119.754002, 49.137549], [-119.753831, 49.137408], [-119.75359, 49.136686], [-119.755704, 49.13682], [-119.754819, 49.135626], [-119.754799, 49.135161], [-119.756539, 49.135328], [-119.756733, 49.13584], [-119.759127, 49.135577], [-119.760586, 49.135517], [-119.760753, 49.128135], [-119.760763, 49.121454], [-119.760827, 49.120902], [-119.760748, 49.120072], [-119.760896, 49.117378], [-119.760836, 49.116648], [-119.760894, 49.113417], [-119.760623, 49.102248], [-119.74769, 49.102128], [-119.747704, 49.096957], [-119.738718, 49.096896], [-119.720893, 49.096979], [-119.714627, 49.096956], [-119.714667, 49.113278], [-119.717028, 49.113261], [-119.717049, 49.135399], [-119.738669, 49.135019], [-119.739298, 49.14251]]]]}, "properties": {"name": "Lower Similkameen 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lower Similkameen 2", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907801", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.448827, 49.240746], [-119.520088, 49.24084], [-119.523929, 49.240719], [-119.529883, 49.240911], [-119.533125, 49.240823], [-119.537307, 49.240855], [-119.537294, 49.237045], [-119.537381, 49.234881], [-119.53721, 49.231996], [-119.537292, 49.230156], [-119.537179, 49.205127], [-119.53735, 49.199872], [-119.53729, 49.197555], [-119.536605, 49.196673], [-119.535961, 49.196121], [-119.535422, 49.195513], [-119.535054, 49.195034], [-119.534971, 49.194758], [-119.534999, 49.194514], [-119.535142, 49.194376], [-119.535803, 49.194118], [-119.536225, 49.194056], [-119.53657, 49.194101], [-119.537016, 49.193974], [-119.537324, 49.194052], [-119.537347, 49.193512], [-119.537354, 49.190695], [-119.535009, 49.190113], [-119.535, 49.18943], [-119.537339, 49.190199], [-119.537378, 49.184511], [-119.536943, 49.18449], [-119.536887, 49.184026], [-119.537118, 49.179216], [-119.537023, 49.178283], [-119.537077, 49.15768], [-119.536558, 49.153971], [-119.553708, 49.154106], [-119.555388, 49.153905], [-119.559422, 49.153697], [-119.559434, 49.150637], [-119.560023, 49.131771], [-119.5487, 49.131583], [-119.548698, 49.124978], [-119.537454, 49.124871], [-119.537385, 49.109896], [-119.526473, 49.109469], [-119.526176, 49.094347], [-119.515371, 49.094701], [-119.515833, 49.080417], [-119.512619, 49.077133], [-119.511633, 49.077295], [-119.511273, 49.077222], [-119.510905, 49.076987], [-119.510207, 49.076732], [-119.509594, 49.076259], [-119.509522, 49.075658], [-119.509236, 49.075116], [-119.509211, 49.074892], [-119.509291, 49.074574], [-119.509588, 49.074235], [-119.509579, 49.074064], [-119.509149, 49.073669], [-119.508907, 49.073233], [-119.508949, 49.072674], [-119.5087, 49.072384], [-119.508504, 49.07227], [-119.508107, 49.072278], [-119.507995, 49.072237], [-119.507879, 49.071834], [-119.507952, 49.071662], [-119.508241, 49.071413], [-119.5082, 49.07117], [-119.50826, 49.070971], [-119.50816, 49.070874], [-119.50751, 49.070484], [-119.507071, 49.070494], [-119.506501, 49.070595], [-119.50583, 49.070296], [-119.505581, 49.070273], [-119.505192, 49.070444], [-119.504904, 49.070433], [-119.504757, 49.070481], [-119.504081, 49.070918], [-119.503464, 49.071183], [-119.50307, 49.071254], [-119.502659, 49.071227], [-119.500601, 49.071713], [-119.499652, 49.071618], [-119.498827, 49.071293], [-119.498628, 49.071135], [-119.497902, 49.071123], [-119.496891, 49.070903], [-119.496686, 49.070917], [-119.49654, 49.071001], [-119.496111, 49.070928], [-119.494683, 49.071139], [-119.493942, 49.071102], [-119.493384, 49.07088], [-119.493117, 49.070473], [-119.493049, 49.069934], [-119.493106, 49.069698], [-119.493417, 49.069332], [-119.493999, 49.06895], [-119.493831, 49.068585], [-119.493415, 49.068234], [-119.493647, 49.068221], [-119.494701, 49.068467], [-119.494744, 49.068511], [-119.49452, 49.068697], [-119.49446, 49.068842], [-119.494476, 49.068905], [-119.494683, 49.068944], [-119.495033, 49.06881], [-119.495865, 49.068217], [-119.496123, 49.068158], [-119.496919, 49.068177], [-119.497025, 49.068111], [-119.495119, 49.067523], [-119.494053, 49.067564], [-119.492828, 49.067707], [-119.492058, 49.067634], [-119.490833, 49.067777], [-119.489875, 49.067806], [-119.488886, 49.068017], [-119.487987, 49.068352], [-119.486151, 49.068868], [-119.485566, 49.068962], [-119.485003, 49.068947], [-119.484925, 49.069011], [-119.484597, 49.069037], [-119.482837, 49.068912], [-119.482507, 49.068848], [-119.48198, 49.068732], [-119.4816, 49.068516], [-119.479808, 49.068302], [-119.478623, 49.067851], [-119.477364, 49.067033], [-119.476763, 49.066515], [-119.476526, 49.066169], [-119.476306, 49.065301], [-119.476251, 49.064205], [-119.476431, 49.063156], [-119.476002, 49.06305], [-119.47572, 49.062884], [-119.475574, 49.06241], [-119.475686, 49.061932], [-119.475333, 49.061705], [-119.475068, 49.061369], [-119.474321, 49.061197], [-119.47286, 49.061245], [-119.472238, 49.061141], [-119.471985, 49.061013], [-119.471618, 49.061056], [-119.470794, 49.061002], [-119.469225, 49.060586], [-119.467916, 49.060137], [-119.467255, 49.059782], [-119.466769, 49.05909], [-119.466314, 49.05875], [-119.465983, 49.058397], [-119.465832, 49.057851], [-119.465647, 49.057702], [-119.465584, 49.057551], [-119.465808, 49.056286], [-119.467018, 49.053885], [-119.466834, 49.053737], [-119.466832, 49.053457], [-119.466629, 49.053218], [-119.466572, 49.052878], [-119.466473, 49.052835], [-119.46587, 49.053091], [-119.46485, 49.053221], [-119.463755, 49.053227], [-119.462572, 49.053117], [-119.462593, 49.053242], [-119.463135, 49.053402], [-119.463657, 49.053749], [-119.463918, 49.053745], [-119.464396, 49.053438], [-119.464708, 49.053395], [-119.465897, 49.05363], [-119.466171, 49.053895], [-119.466027, 49.054033], [-119.465551, 49.054133], [-119.465568, 49.054187], [-119.465996, 49.054258], [-119.466082, 49.054319], [-119.466058, 49.05441], [-119.465925, 49.054484], [-119.464948, 49.054631], [-119.464768, 49.054627], [-119.464599, 49.054531], [-119.464274, 49.054601], [-119.463959, 49.05459], [-119.462635, 49.054096], [-119.461572, 49.053624], [-119.4614, 49.053493], [-119.461179, 49.052876], [-119.461033, 49.052735], [-119.461116, 49.052463], [-119.461235, 49.052354], [-119.461315, 49.052315], [-119.461562, 49.052347], [-119.461664, 49.052461], [-119.46178, 49.052864], [-119.461989, 49.052931], [-119.462054, 49.052866], [-119.461861, 49.052564], [-119.461792, 49.052297], [-119.461801, 49.051073], [-119.461767, 49.050948], [-119.461599, 49.050843], [-119.461145, 49.050826], [-119.460074, 49.051019], [-119.457891, 49.051165], [-119.456318, 49.05119], [-119.455848, 49.051092], [-119.455302, 49.050851], [-119.454584, 49.050183], [-119.453916, 49.049126], [-119.453318, 49.048933], [-119.452749, 49.048494], [-119.451968, 49.048196], [-119.450384, 49.047996], [-119.448952, 49.047541], [-119.448308, 49.047248], [-119.447697, 49.046767], [-119.447214, 49.045886], [-119.446707, 49.045285], [-119.446741, 49.045159], [-119.446516, 49.04501], [-119.446352, 49.044744], [-119.446197, 49.044639], [-119.445682, 49.044488], [-119.445018, 49.044098], [-119.444699, 49.043699], [-119.444709, 49.04334], [-119.443856, 49.042709], [-119.443767, 49.042568], [-119.443666, 49.041894], [-119.443826, 49.041504], [-119.444014, 49.040593], [-119.443812, 49.040137], [-119.444149, 49.038925], [-119.444169, 49.038456], [-119.444414, 49.037902], [-119.444876, 49.037281], [-119.445068, 49.036785], [-119.443457, 49.036763], [-119.443455, 49.036378], [-119.437017, 49.036322], [-119.437204, 49.036677], [-119.429559, 49.036828], [-119.423737, 49.036626], [-119.421537, 49.036358], [-119.42187, 49.066596], [-119.44912, 49.066671], [-119.449265, 49.073237], [-119.448852, 49.12379], [-119.449665, 49.169241], [-119.448695, 49.194473], [-119.448827, 49.240746]]], [[[-119.441155, 49.030691], [-119.441191, 49.029839], [-119.440443, 49.029811], [-119.440022, 49.030379], [-119.43917, 49.030341], [-119.439188, 49.029945], [-119.438575, 49.029936], [-119.438689, 49.029017], [-119.43848, 49.029001], [-119.438512, 49.028687], [-119.438177, 49.02868], [-119.43825, 49.027967], [-119.435356, 49.02788], [-119.435185, 49.029905], [-119.435414, 49.030711], [-119.441155, 49.030691]]]]}, "properties": {"name": "Osoyoos 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Osoyoos 1", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907802", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.748601, 49.594089], [-119.748671, 49.598239], [-119.761461, 49.597959], [-119.763453, 49.598505], [-119.763513, 49.595174], [-119.757977, 49.594888], [-119.757915, 49.587541], [-119.759138, 49.587522], [-119.759237, 49.583793], [-119.753235, 49.58358], [-119.753723, 49.565958], [-119.776055, 49.565833], [-119.776669, 49.539049], [-119.777323, 49.51491], [-119.766858, 49.514787], [-119.76675, 49.513826], [-119.767859, 49.500768], [-119.748982, 49.500601], [-119.749943, 49.478959], [-119.738845, 49.478948], [-119.739276, 49.444581], [-119.73953, 49.431749], [-119.720245, 49.431488], [-119.720449, 49.424225], [-119.720464, 49.413232], [-119.720544, 49.412938], [-119.720456, 49.41222], [-119.720721, 49.395245], [-119.713025, 49.395249], [-119.698709, 49.395107], [-119.699158, 49.360736], [-119.690968, 49.360958], [-119.690823, 49.365182], [-119.686291, 49.365102], [-119.686194, 49.36527], [-119.685886, 49.365421], [-119.685235, 49.365381], [-119.684558, 49.365613], [-119.68394, 49.365619], [-119.683566, 49.365825], [-119.683116, 49.365944], [-119.681467, 49.366009], [-119.68079, 49.366231], [-119.680116, 49.366255], [-119.679753, 49.366333], [-119.679797, 49.380726], [-119.623669, 49.380731], [-119.612466, 49.380799], [-119.605527, 49.380977], [-119.605538, 49.385629], [-119.60523, 49.389641], [-119.605176, 49.392063], [-119.605947, 49.393123], [-119.606034, 49.411855], [-119.605933, 49.412967], [-119.606006, 49.419571], [-119.605901, 49.42316], [-119.60604, 49.423119], [-119.606837, 49.425005], [-119.606897, 49.425259], [-119.606839, 49.426251], [-119.606955, 49.426681], [-119.608239, 49.428513], [-119.609376, 49.429496], [-119.609652, 49.429827], [-119.609793, 49.430208], [-119.609792, 49.431293], [-119.609878, 49.431625], [-119.610209, 49.43206], [-119.610413, 49.432215], [-119.61247, 49.433478], [-119.612859, 49.433865], [-119.613037, 49.434253], [-119.613161, 49.435408], [-119.613806, 49.43707], [-119.613982, 49.438005], [-119.61459, 49.439085], [-119.614691, 49.439423], [-119.614675, 49.439678], [-119.614434, 49.440243], [-119.613497, 49.44107], [-119.613096, 49.441629], [-119.612989, 49.442098], [-119.613155, 49.444226], [-119.613026, 49.444709], [-119.612735, 49.445142], [-119.612038, 49.445599], [-119.611005, 49.446091], [-119.60992, 49.446734], [-119.609648, 49.446995], [-119.609208, 49.447659], [-119.609002, 49.447653], [-119.608783, 49.447832], [-119.608517, 49.448521], [-119.608686, 49.449381], [-119.608667, 49.450038], [-119.608404, 49.450278], [-119.608158, 49.450355], [-119.607908, 49.450307], [-119.607746, 49.450365], [-119.607883, 49.450623], [-119.607797, 49.450795], [-119.607122, 49.451071], [-119.60588, 49.451369], [-119.602475, 49.451959], [-119.600817, 49.452175], [-119.598638, 49.452432], [-119.597534, 49.452439], [-119.59682, 49.452229], [-119.594085, 49.452452], [-119.594394, 49.45359], [-119.594355, 49.453904], [-119.59405, 49.454136], [-119.593859, 49.454195], [-119.593144, 49.454238], [-119.59267, 49.454176], [-119.592288, 49.45423], [-119.591845, 49.454716], [-119.591786, 49.455186], [-119.591995, 49.455505], [-119.592181, 49.455626], [-119.592787, 49.455074], [-119.593241, 49.455045], [-119.593637, 49.455225], [-119.593813, 49.45541], [-119.594572, 49.45568], [-119.595217, 49.456143], [-119.595237, 49.456512], [-119.595138, 49.456711], [-119.594057, 49.457419], [-119.59398, 49.457781], [-119.594071, 49.458215], [-119.594271, 49.45817], [-119.594582, 49.457633], [-119.595296, 49.457454], [-119.596041, 49.457361], [-119.59689, 49.457355], [-119.596937, 49.457162], [-119.599361, 49.456987], [-119.600226, 49.457096], [-119.600668, 49.452601], [-119.603624, 49.452302], [-119.605008, 49.451978], [-119.606845, 49.454947], [-119.608167, 49.454617], [-119.605163, 49.468084], [-119.604653, 49.4701], [-119.604386, 49.470836], [-119.604257, 49.471764], [-119.604353, 49.472751], [-119.604887, 49.475293], [-119.603167, 49.474747], [-119.601525, 49.475203], [-119.59882, 49.475217], [-119.600214, 49.457809], [-119.599594, 49.458118], [-119.599128, 49.458047], [-119.598541, 49.457846], [-119.598002, 49.457852], [-119.597597, 49.457984], [-119.597146, 49.458232], [-119.597154, 49.457997], [-119.596277, 49.458637], [-119.594785, 49.465194], [-119.5947, 49.466474], [-119.595971, 49.471438], [-119.596296, 49.472618], [-119.596516, 49.473127], [-119.596635, 49.473825], [-119.597376, 49.476327], [-119.597527, 49.477089], [-119.598059, 49.478795], [-119.598253, 49.479087], [-119.598572, 49.479368], [-119.598588, 49.479422], [-119.598377, 49.479589], [-119.598395, 49.47966], [-119.5989, 49.48035], [-119.599326, 49.480836], [-119.599906, 49.481345], [-119.601109, 49.482172], [-119.601917, 49.482587], [-119.602805, 49.483169], [-119.604442, 49.484085], [-119.606269, 49.485214], [-119.607778, 49.486035], [-119.609021, 49.486833], [-119.611342, 49.488139], [-119.613825, 49.489649], [-119.614613, 49.490216], [-119.615166, 49.490743], [-119.616158, 49.491953], [-119.616801, 49.493423], [-119.617002, 49.494328], [-119.617061, 49.495208], [-119.61678, 49.496662], [-119.616126, 49.498089], [-119.615819, 49.498582], [-119.615246, 49.499216], [-119.614888, 49.499755], [-119.614311, 49.500362], [-119.613997, 49.500909], [-119.613672, 49.501303], [-119.613746, 49.501417], [-119.613251, 49.501951], [-119.612716, 49.502809], [-119.613398, 49.503423], [-119.613407, 49.503837], [-119.613764, 49.504072], [-119.613599, 49.504345], [-119.614286, 49.504797], [-119.614537, 49.505079], [-119.614484, 49.505926], [-119.614135, 49.506133], [-119.615205, 49.506728], [-119.615314, 49.50696], [-119.615812, 49.507247], [-119.616491, 49.508643], [-119.620221, 49.50853], [-119.620312, 49.4903], [-119.624869, 49.490139], [-119.630822, 49.490288], [-119.630856, 49.498768], [-119.63252, 49.498734], [-119.632555, 49.500017], [-119.630775, 49.49997], [-119.63052, 49.503531], [-119.631201, 49.506111], [-119.63275, 49.506162], [-119.632935, 49.50842], [-119.631431, 49.508385], [-119.631406, 49.513796], [-119.626077, 49.513738], [-119.62595, 49.516613], [-119.628135, 49.519373], [-119.628747, 49.519356], [-119.628748, 49.521367], [-119.626969, 49.522701], [-119.622471, 49.522772], [-119.622384, 49.523219], [-119.622247, 49.523464], [-119.621161, 49.524326], [-119.620711, 49.524966], [-119.620693, 49.525164], [-119.620849, 49.525691], [-119.621075, 49.526014], [-119.617406, 49.526222], [-119.617542, 49.526972], [-119.618012, 49.528275], [-119.617833, 49.52854], [-119.617842, 49.528692], [-119.61813, 49.528902], [-119.618333, 49.529617], [-119.618346, 49.530084], [-119.618168, 49.530655], [-119.618227, 49.530987], [-119.618537, 49.531349], [-119.618947, 49.53151], [-119.620224, 49.532408], [-119.620954, 49.533129], [-119.622958, 49.534676], [-119.623885, 49.535473], [-119.62437, 49.53602], [-119.624599, 49.53642], [-119.624722, 49.536912], [-119.624709, 49.537405], [-119.626596, 49.536818], [-119.62714, 49.537229], [-119.627641, 49.537734], [-119.628004, 49.538261], [-119.628221, 49.538428], [-119.628231, 49.5386], [-119.628559, 49.538748], [-119.628951, 49.538821], [-119.629415, 49.539418], [-119.630599, 49.539757], [-119.630863, 49.540249], [-119.63118, 49.540451], [-119.63126, 49.54063], [-119.631427, 49.541125], [-119.631416, 49.541641], [-119.631494, 49.541785], [-119.632003, 49.542209], [-119.63237, 49.542727], [-119.633408, 49.543495], [-119.634062, 49.54462], [-119.634874, 49.545102], [-119.635249, 49.545721], [-119.635937, 49.546243], [-119.636718, 49.54653], [-119.636853, 49.546872], [-119.637173, 49.547244], [-119.638248, 49.548091], [-119.638577, 49.548277], [-119.639291, 49.548904], [-119.640105, 49.549404], [-119.640205, 49.549685], [-119.640442, 49.549926], [-119.64065, 49.550027], [-119.640879, 49.550028], [-119.641346, 49.550147], [-119.642342, 49.549528], [-119.643506, 49.550167], [-119.645216, 49.551224], [-119.645529, 49.551542], [-119.645924, 49.552149], [-119.647039, 49.552109], [-119.648463, 49.553952], [-119.647721, 49.556789], [-119.664624, 49.551264], [-119.664154, 49.561745], [-119.664674, 49.561583], [-119.665496, 49.561456], [-119.666178, 49.561503], [-119.66695, 49.561747], [-119.667227, 49.56175], [-119.667473, 49.561681], [-119.6677, 49.561523], [-119.667902, 49.561176], [-119.66809, 49.561063], [-119.668824, 49.56084], [-119.668788, 49.560679], [-119.66851, 49.560388], [-119.668564, 49.559884], [-119.668806, 49.559743], [-119.669519, 49.55988], [-119.669839, 49.559908], [-119.670155, 49.559864], [-119.67069, 49.559546], [-119.671278, 49.559425], [-119.672304, 49.55896], [-119.672735, 49.559004], [-119.6739, 49.55931], [-119.674339, 49.559254], [-119.674731, 49.559094], [-119.674981, 49.558871], [-119.675074, 49.558527], [-119.674553, 49.557864], [-119.674514, 49.557389], [-119.674979, 49.557036], [-119.67508, 49.556845], [-119.675323, 49.556758], [-119.675561, 49.556806], [-119.675761, 49.556937], [-119.675865, 49.557322], [-119.675964, 49.557373], [-119.676476, 49.557362], [-119.67659, 49.557404], [-119.676897, 49.557748], [-119.677586, 49.558199], [-119.678238, 49.558742], [-119.678278, 49.558948], [-119.678188, 49.559085], [-119.677328, 49.559555], [-119.677337, 49.559707], [-119.677483, 49.559848], [-119.677843, 49.559831], [-119.678103, 49.559528], [-119.678443, 49.559448], [-119.679003, 49.55984], [-119.679443, 49.560036], [-119.67969, 49.560237], [-119.67993, 49.5606], [-119.680059, 49.56067], [-119.680449, 49.560724], [-119.681359, 49.560667], [-119.681624, 49.560706], [-119.682521, 49.561441], [-119.682635, 49.561492], [-119.682882, 49.561459], [-119.683872, 49.560599], [-119.684547, 49.560296], [-119.685492, 49.559609], [-119.68601, 49.559488], [-119.686427, 49.559524], [-119.686629, 49.559403], [-119.686617, 49.559213], [-119.686317, 49.559041], [-119.686197, 49.558873], [-119.686348, 49.558599], [-119.686841, 49.558255], [-119.686995, 49.558035], [-119.687013, 49.557594], [-119.686913, 49.557057], [-119.687432, 49.556667], [-119.687928, 49.556115], [-119.688184, 49.556019], [-119.688559, 49.556047], [-119.688912, 49.556174], [-119.689363, 49.556081], [-119.689967, 49.556248], [-119.690141, 49.556135], [-119.690468, 49.555526], [-119.690941, 49.555083], [-119.691707, 49.554704], [-119.692253, 49.554566], [-119.692496, 49.554443], [-119.692568, 49.554263], [-119.692288, 49.553918], [-119.692461, 49.553572], [-119.692366, 49.553323], [-119.692424, 49.553123], [-119.69282, 49.552826], [-119.69286, 49.552519], [-119.692388, 49.551712], [-119.692317, 49.551182], [-119.692042, 49.55046], [-119.691989, 49.549993], [-119.692162, 49.549125], [-119.692496, 49.54892], [-119.692877, 49.548804], [-119.694026, 49.548587], [-119.694386, 49.548597], [-119.694794, 49.548695], [-119.696007, 49.549144], [-119.697293, 49.549141], [-119.697646, 49.549051], [-119.698232, 49.548624], [-119.699005, 49.548381], [-119.699215, 49.548403], [-119.699866, 49.548648], [-119.700792, 49.548673], [-119.701731, 49.548399], [-119.702841, 49.547949], [-119.703061, 49.547945], [-119.703619, 49.548301], [-119.704589, 49.548593], [-119.704911, 49.54863], [-119.705023, 49.548691], [-119.705147, 49.548912], [-119.705546, 49.549145], [-119.706317, 49.549308], [-119.706771, 49.549261], [-119.706995, 49.549346], [-119.707344, 49.549365], [-119.707645, 49.549556], [-119.708024, 49.549924], [-119.708363, 49.550034], [-119.709169, 49.550114], [-119.71074, 49.550014], [-119.711062, 49.550105], [-119.711416, 49.550511], [-119.711603, 49.551145], [-119.712133, 49.551457], [-119.712381, 49.551693], [-119.712618, 49.552227], [-119.712966, 49.552508], [-119.713208, 49.552907], [-119.713118, 49.553278], [-119.713198, 49.553707], [-119.71284, 49.554238], [-119.712823, 49.554436], [-119.713016, 49.554899], [-119.713077, 49.555285], [-119.713264, 49.555406], [-119.713614, 49.55547], [-119.713739, 49.555755], [-119.713839, 49.555816], [-119.713872, 49.555896], [-119.713692, 49.556386], [-119.714035, 49.556838], [-119.713991, 49.557018], [-119.713741, 49.557285], [-119.714166, 49.55794], [-119.714234, 49.558191], [-119.714062, 49.558581], [-119.71372, 49.558896], [-119.713479, 49.559287], [-119.713403, 49.559659], [-119.713016, 49.560424], [-119.712943, 49.560821], [-119.712962, 49.561207], [-119.71313, 49.561707], [-119.713421, 49.561962], [-119.713108, 49.562832], [-119.713347, 49.563393], [-119.713515, 49.564191], [-119.713873, 49.564883], [-119.71391, 49.565314], [-119.713731, 49.56584], [-119.713899, 49.56635], [-119.713916, 49.566663], [-119.714301, 49.567122], [-119.714766, 49.567516], [-119.716105, 49.568223], [-119.716286, 49.568506], [-119.716271, 49.568714], [-119.716028, 49.56907], [-119.716001, 49.569332], [-119.716295, 49.570161], [-119.717258, 49.570813], [-119.717265, 49.571164], [-119.717114, 49.571941], [-119.717182, 49.572182], [-119.717036, 49.572555], [-119.717134, 49.572787], [-119.717517, 49.572994], [-119.718904, 49.573267], [-119.719195, 49.573548], [-119.719645, 49.57369], [-119.720287, 49.573766], [-119.720651, 49.573864], [-119.72106, 49.57425], [-119.721645, 49.575794], [-119.721486, 49.576705], [-119.721603, 49.577296], [-119.722116, 49.577779], [-119.722251, 49.57801], [-119.723373, 49.57927], [-119.723168, 49.580075], [-119.722971, 49.580485], [-119.722992, 49.580619], [-119.723558, 49.580823], [-119.724604, 49.580978], [-119.725608, 49.581385], [-119.727361, 49.581775], [-119.72776, 49.582009], [-119.727647, 49.58248], [-119.727951, 49.582688], [-119.728255, 49.582708], [-119.728735, 49.582616], [-119.729439, 49.58259], [-119.729759, 49.582619], [-119.730601, 49.582834], [-119.73139, 49.582851], [-119.731951, 49.582963], [-119.73206, 49.582943], [-119.732199, 49.582714], [-119.732359, 49.582603], [-119.732523, 49.582555], [-119.732774, 49.582593], [-119.733997, 49.583203], [-119.734214, 49.583593], [-119.734157, 49.583829], [-119.733448, 49.584241], [-119.733334, 49.584442], [-119.733428, 49.584638], [-119.733701, 49.58482], [-119.734305, 49.584986], [-119.734519, 49.585098], [-119.734983, 49.58555], [-119.749072, 49.585757], [-119.748769, 49.58808], [-119.748601, 49.594089]], [[-119.648607, 49.517107], [-119.636936, 49.517443], [-119.636563, 49.508077], [-119.634038, 49.508082], [-119.634021, 49.50078], [-119.643557, 49.501233], [-119.648622, 49.501311], [-119.6485, 49.506341], [-119.648607, 49.517107]]], [[[-119.59237, 49.472413], [-119.59189, 49.472664], [-119.591621, 49.472936], [-119.59282, 49.473584], [-119.594213, 49.474997], [-119.594634, 49.475176], [-119.596488, 49.475311], [-119.595636, 49.472113], [-119.594234, 49.472303], [-119.592938, 49.472276], [-119.59237, 49.472413]]]]}, "properties": {"name": "Penticton 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Penticton 1", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907803", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.711778, 49.077612], [-119.710037, 49.078841], [-119.710049, 49.079056], [-119.710339, 49.079382], [-119.710646, 49.079586], [-119.72976, 49.080591], [-119.732148, 49.05901], [-119.734958, 49.059101], [-119.736885, 49.000081], [-119.70301, 49.000048], [-119.703539, 49.001044], [-119.703559, 49.001915], [-119.703448, 49.002377], [-119.703177, 49.002941], [-119.702978, 49.003828], [-119.702921, 49.004765], [-119.702714, 49.005228], [-119.702508, 49.005435], [-119.702503, 49.004396], [-119.702446, 49.004344], [-119.701665, 49.005083], [-119.701654, 49.005379], [-119.702295, 49.00584], [-119.702263, 49.006273], [-119.70127, 49.006864], [-119.701089, 49.008047], [-119.701365, 49.008373], [-119.701531, 49.00891], [-119.701992, 49.00933], [-119.702694, 49.009691], [-119.703193, 49.009797], [-119.703472, 49.010169], [-119.703768, 49.010332], [-119.704308, 49.010455], [-119.705746, 49.010969], [-119.706509, 49.012167], [-119.706948, 49.012705], [-119.707521, 49.013204], [-119.707921, 49.013762], [-119.708093, 49.014162], [-119.708174, 49.014646], [-119.707945, 49.0152], [-119.707907, 49.015525], [-119.707267, 49.015801], [-119.705308, 49.016026], [-119.704036, 49.016029], [-119.703026, 49.015801], [-119.702655, 49.015793], [-119.702235, 49.015856], [-119.701812, 49.015848], [-119.700336, 49.016126], [-119.700028, 49.01625], [-119.699606, 49.016548], [-119.699197, 49.017087], [-119.698855, 49.01734], [-119.698847, 49.017671], [-119.697813, 49.018308], [-119.697671, 49.018465], [-119.697542, 49.018836], [-119.697722, 49.019416], [-119.698324, 49.020429], [-119.698693, 49.020662], [-119.699134, 49.021211], [-119.699878, 49.021831], [-119.700464, 49.023032], [-119.700745, 49.024213], [-119.700867, 49.025452], [-119.700838, 49.025912], [-119.700933, 49.026395], [-119.700836, 49.027135], [-119.70024, 49.028508], [-119.699361, 49.029716], [-119.699145, 49.030261], [-119.69913, 49.030486], [-119.699267, 49.030753], [-119.699434, 49.03083], [-119.700079, 49.030851], [-119.700937, 49.030777], [-119.701379, 49.030613], [-119.70277, 49.029753], [-119.703666, 49.029111], [-119.704547, 49.028964], [-119.705204, 49.028958], [-119.706496, 49.028837], [-119.707144, 49.028931], [-119.708414, 49.029629], [-119.709045, 49.029669], [-119.710085, 49.029922], [-119.711015, 49.030414], [-119.711277, 49.030704], [-119.711525, 49.03123], [-119.711468, 49.031969], [-119.711278, 49.032244], [-119.710669, 49.033598], [-119.709987, 49.034666], [-119.709424, 49.035112], [-119.709011, 49.035581], [-119.707819, 49.036319], [-119.707523, 49.03664], [-119.707436, 49.036833], [-119.707451, 49.037362], [-119.70776, 49.037733], [-119.708538, 49.038201], [-119.709467, 49.039187], [-119.710071, 49.03946], [-119.711146, 49.040118], [-119.711605, 49.041026], [-119.711572, 49.041917], [-119.711501, 49.042125], [-119.710878, 49.042249], [-119.710305, 49.043027], [-119.710267, 49.043333], [-119.710377, 49.043367], [-119.710141, 49.043777], [-119.708951, 49.044813], [-119.708843, 49.046084], [-119.708575, 49.04618], [-119.708418, 49.046355], [-119.708233, 49.046953], [-119.70816, 49.04735], [-119.708226, 49.048347], [-119.708517, 49.049151], [-119.708714, 49.049263], [-119.709131, 49.049379], [-119.711574, 49.049736], [-119.712367, 49.049483], [-119.713252, 49.049381], [-119.713845, 49.049492], [-119.714336, 49.049689], [-119.714775, 49.049965], [-119.714934, 49.050106], [-119.715229, 49.050739], [-119.715555, 49.051207], [-119.715434, 49.051993], [-119.715302, 49.052347], [-119.715518, 49.052801], [-119.716481, 49.053389], [-119.717031, 49.053655], [-119.717043, 49.05416], [-119.717392, 49.054528], [-119.717695, 49.055061], [-119.718115, 49.055466], [-119.718209, 49.055454], [-119.718565, 49.055941], [-119.718087, 49.056455], [-119.717312, 49.057824], [-119.716856, 49.058266], [-119.715715, 49.058905], [-119.714311, 49.05954], [-119.713557, 49.060009], [-119.713097, 49.060379], [-119.712445, 49.060457], [-119.711631, 49.061097], [-119.710157, 49.061941], [-119.709884, 49.062218], [-119.709711, 49.062564], [-119.709422, 49.062786], [-119.708986, 49.063319], [-119.708492, 49.064293], [-119.708199, 49.065451], [-119.707771, 49.066136], [-119.707693, 49.06647], [-119.707734, 49.066983], [-119.707619, 49.067409], [-119.708037, 49.067776], [-119.708414, 49.06792], [-119.70901, 49.068041], [-119.712574, 49.068363], [-119.713571, 49.068564], [-119.714183, 49.068765], [-119.714703, 49.068987], [-119.71516, 49.069319], [-119.715808, 49.069906], [-119.716238, 49.070535], [-119.716265, 49.07074], [-119.71619, 49.070887], [-119.716587, 49.071902], [-119.716738, 49.072664], [-119.716584, 49.073324], [-119.71618, 49.073982], [-119.714827, 49.075291], [-119.71369, 49.076262], [-119.712361, 49.077293], [-119.711778, 49.077612]]]]}, "properties": {"name": "Chopaka 7 & 8", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Chopaka 7 & 8", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907805", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.736372, 49.191018], [-119.737626, 49.190904], [-119.737591, 49.18845], [-119.737816, 49.177466], [-119.73771, 49.174994], [-119.735871, 49.174873], [-119.726386, 49.174753], [-119.726465, 49.192896], [-119.731654, 49.192534], [-119.73502, 49.191382], [-119.736372, 49.191018]]]]}, "properties": {"name": "Blind Creek 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Blind Creek 6", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907806", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.078011, 49.389487], [-120.12248, 49.38961], [-120.122709, 49.366299], [-120.10057, 49.366662], [-120.100769, 49.360589], [-120.10027, 49.35978], [-120.100973, 49.359349], [-120.10195, 49.359396], [-120.102311, 49.359352], [-120.103838, 49.358921], [-120.104388, 49.358711], [-120.105442, 49.358809], [-120.105726, 49.358906], [-120.106383, 49.358967], [-120.107306, 49.358981], [-120.107835, 49.358877], [-120.109068, 49.358773], [-120.109432, 49.358657], [-120.109776, 49.358648], [-120.110391, 49.358518], [-120.110811, 49.358386], [-120.111679, 49.358312], [-120.11132, 49.350398], [-120.100661, 49.350129], [-120.100716, 49.34862], [-120.090234, 49.348594], [-120.089874, 49.343333], [-120.081508, 49.343392], [-120.080844, 49.33645], [-120.070471, 49.335926], [-120.07061, 49.327228], [-120.059693, 49.32659], [-120.059374, 49.317886], [-120.045499, 49.317866], [-120.044986, 49.302458], [-120.031652, 49.302678], [-120.031769, 49.303683], [-120.031931, 49.303966], [-120.032047, 49.304536], [-120.032722, 49.305443], [-120.032844, 49.306092], [-120.031433, 49.306], [-120.029069, 49.305352], [-120.030619, 49.309221], [-120.029984, 49.322383], [-120.041093, 49.322586], [-120.039555, 49.343694], [-120.039435, 49.34789], [-120.066848, 49.34821], [-120.06711, 49.344272], [-120.066627, 49.343359], [-120.067133, 49.343084], [-120.06724, 49.343231], [-120.06814, 49.343619], [-120.070367, 49.34414], [-120.071217, 49.344459], [-120.073434, 49.344915], [-120.07439, 49.344938], [-120.076159, 49.344711], [-120.076923, 49.344751], [-120.07775, 49.344965], [-120.078509, 49.34552], [-120.078933, 49.346066], [-120.0796, 49.347833], [-120.07991, 49.348991], [-120.080094, 49.349279], [-120.080513, 49.349579], [-120.080222, 49.350019], [-120.080149, 49.350341], [-120.08051, 49.350764], [-120.080599, 49.351342], [-120.080444, 49.352103], [-120.080321, 49.352315], [-120.080044, 49.352579], [-120.07963, 49.352838], [-120.079017, 49.353641], [-120.078502, 49.353997], [-120.078546, 49.354781], [-120.080699, 49.355216], [-120.080762, 49.355637], [-120.080674, 49.356112], [-120.079901, 49.356551], [-120.079804, 49.357008], [-120.078424, 49.356915], [-120.077951, 49.35953], [-120.078011, 49.389487]]]]}, "properties": {"name": "Chuchuwayha 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Chuchuwayha 2", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907807", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.907376, 49.223], [-119.925775, 49.223081], [-119.932039, 49.223018], [-119.931835, 49.218764], [-119.930061, 49.218026], [-119.928356, 49.217062], [-119.926879, 49.216037], [-119.926007, 49.215196], [-119.925139, 49.21448], [-119.924006, 49.213635], [-119.922996, 49.213067], [-119.922131, 49.212819], [-119.920138, 49.212123], [-119.9188, 49.21177], [-119.917244, 49.211459], [-119.916129, 49.211424], [-119.913759, 49.211763], [-119.912147, 49.212127], [-119.91066, 49.212533], [-119.908944, 49.212784], [-119.907256, 49.212936], [-119.907376, 49.223]]]]}, "properties": {"name": "Alexis 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Alexis 9", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907808", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.034458, 49.276778], [-120.034518, 49.27715], [-120.035135, 49.278118], [-120.034809, 49.279864], [-120.034807, 49.281735], [-120.035235, 49.282161], [-120.03608, 49.282524], [-120.03653, 49.282796], [-120.036653, 49.283052], [-120.036639, 49.283519], [-120.036461, 49.283956], [-120.035282, 49.285283], [-120.034994, 49.285726], [-120.034874, 49.286119], [-120.034758, 49.287375], [-120.033922, 49.288236], [-120.033604, 49.288714], [-120.03389, 49.289918], [-120.034522, 49.29105], [-120.034716, 49.291721], [-120.034473, 49.295088], [-120.034222, 49.295855], [-120.033403, 49.297318], [-120.033188, 49.297925], [-120.032469, 49.299346], [-120.032456, 49.299813], [-120.03261, 49.300213], [-120.03255, 49.300779], [-120.03223, 49.301499], [-120.031753, 49.301909], [-120.031652, 49.302678], [-120.044013, 49.302461], [-120.043815, 49.273551], [-120.089354, 49.273138], [-120.089137, 49.256083], [-120.089092, 49.244913], [-120.022251, 49.244556], [-120.022609, 49.216109], [-120.022719, 49.199373], [-119.978948, 49.199161], [-119.978667, 49.211871], [-119.950586, 49.211939], [-119.928653, 49.211431], [-119.928541, 49.208649], [-119.9143, 49.208984], [-119.914315, 49.210799], [-119.91438, 49.210992], [-119.915474, 49.210801], [-119.916516, 49.210757], [-119.917759, 49.21088], [-119.919529, 49.21133], [-119.920959, 49.211805], [-119.922224, 49.212322], [-119.923399, 49.212653], [-119.924033, 49.212925], [-119.925301, 49.213711], [-119.926208, 49.214434], [-119.926607, 49.214658], [-119.927911, 49.21584], [-119.929757, 49.217081], [-119.931214, 49.217807], [-119.931785, 49.218172], [-119.93304, 49.218716], [-119.933786, 49.218993], [-119.935056, 49.219338], [-119.936242, 49.219435], [-119.940086, 49.219391], [-119.941078, 49.219455], [-119.94157, 49.219415], [-119.942397, 49.219439], [-119.943086, 49.21952], [-119.943594, 49.21948], [-119.944109, 49.219369], [-119.947642, 49.218963], [-119.949296, 49.218364], [-119.950069, 49.217984], [-119.951305, 49.217521], [-119.952182, 49.217256], [-119.952429, 49.217232], [-119.953107, 49.217565], [-119.95354, 49.217922], [-119.954344, 49.21827], [-119.955028, 49.218434], [-119.955108, 49.218404], [-119.955073, 49.218297], [-119.954882, 49.218059], [-119.955029, 49.218019], [-119.955339, 49.218119], [-119.956168, 49.218431], [-119.956901, 49.21879], [-119.957792, 49.219423], [-119.958641, 49.220257], [-119.958075, 49.22061], [-119.958918, 49.22151], [-119.959773, 49.222225], [-119.96043, 49.222649], [-119.961441, 49.223937], [-119.961687, 49.224146], [-119.962564, 49.224798], [-119.963531, 49.225358], [-119.965062, 49.225914], [-119.966655, 49.226349], [-119.967426, 49.226636], [-119.967813, 49.226895], [-119.967951, 49.226919], [-119.968398, 49.226574], [-119.969117, 49.226177], [-119.969919, 49.225824], [-119.970597, 49.225663], [-119.972144, 49.225569], [-119.973134, 49.225606], [-119.973979, 49.225711], [-119.975079, 49.225961], [-119.976339, 49.226567], [-119.977619, 49.227543], [-119.979847, 49.229877], [-119.980621, 49.230874], [-119.981266, 49.231299], [-119.981732, 49.231502], [-119.982761, 49.232187], [-119.983158, 49.232357], [-119.983992, 49.23255], [-119.985841, 49.233133], [-119.988935, 49.233881], [-119.989783, 49.234003], [-119.99095, 49.234467], [-119.991429, 49.234427], [-119.991931, 49.23454], [-119.993057, 49.235214], [-119.993534, 49.235624], [-119.994983, 49.236154], [-119.995041, 49.236223], [-119.995037, 49.236836], [-119.995114, 49.236968], [-119.995481, 49.237129], [-119.99749, 49.237626], [-119.998653, 49.238001], [-119.998796, 49.238028], [-120.000087, 49.237787], [-120.000877, 49.238022], [-120.001625, 49.238336], [-120.002395, 49.238808], [-120.002707, 49.239127], [-120.002981, 49.239667], [-120.003048, 49.240079], [-120.0036, 49.240054], [-120.003935, 49.241091], [-120.004334, 49.243369], [-120.004675, 49.244744], [-120.005128, 49.245656], [-120.005874, 49.246297], [-120.007709, 49.247288], [-120.0095, 49.248127], [-120.009951, 49.248417], [-120.010717, 49.24869], [-120.012758, 49.249038], [-120.01362, 49.249107], [-120.015137, 49.24901], [-120.016028, 49.249043], [-120.016637, 49.249194], [-120.017523, 49.249567], [-120.018013, 49.249867], [-120.018567, 49.250709], [-120.019111, 49.251263], [-120.019198, 49.251418], [-120.019182, 49.251689], [-120.018793, 49.252407], [-120.018538, 49.253237], [-120.018052, 49.254016], [-120.017432, 49.254703], [-120.016986, 49.255725], [-120.016896, 49.257891], [-120.017167, 49.258653], [-120.017654, 49.259224], [-120.019628, 49.260453], [-120.020829, 49.26107], [-120.023135, 49.26202], [-120.024401, 49.262682], [-120.026135, 49.263806], [-120.026308, 49.264127], [-120.026308, 49.265269], [-120.026473, 49.265515], [-120.028072, 49.265881], [-120.029477, 49.266304], [-120.030063, 49.266633], [-120.030311, 49.267045], [-120.030289, 49.268564], [-120.031113, 49.270197], [-120.031612, 49.270812], [-120.032878, 49.271934], [-120.033918, 49.272734], [-120.034347, 49.272888], [-120.034717, 49.273142], [-120.035284, 49.273992], [-120.035365, 49.274264], [-120.035329, 49.274885], [-120.03476, 49.275878], [-120.034458, 49.276778]]]]}, "properties": {"name": "Ashnola 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Ashnola 10", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907809", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.226726, 49.401503], [-120.226652, 49.405996], [-120.231675, 49.406155], [-120.231599, 49.401439], [-120.226504, 49.40043], [-120.226726, 49.401503]]]]}, "properties": {"name": "Lulu 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lulu 5", "economic_region_id": "5930", "census_division_code": "5907", "census_subdivision_code": "5907850", "regional_district_aka_census_division": "Okanagan-Similkameen"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.436497, 49.429424], [-121.438222, 49.430602], [-121.447007, 49.429856], [-121.447699, 49.425336], [-121.448859, 49.414629], [-121.458743, 49.414158], [-121.458896, 49.403407], [-121.469888, 49.403074], [-121.469827, 49.388396], [-121.480843, 49.388099], [-121.481015, 49.382484], [-121.503335, 49.382204], [-121.503352, 49.37604], [-121.503085, 49.375392], [-121.503179, 49.374176], [-121.508413, 49.373685], [-121.513223, 49.372594], [-121.518254, 49.371233], [-121.52864, 49.367118], [-121.536624, 49.36598], [-121.545829, 49.36605], [-121.547552, 49.365952], [-121.552823, 49.365287], [-121.561921, 49.364787], [-121.564157, 49.364391], [-121.567537, 49.362679], [-121.573467, 49.360759], [-121.575674, 49.359618], [-121.574396, 49.358231], [-121.5732, 49.357183], [-121.573262, 49.356985], [-121.574265, 49.356062], [-121.574728, 49.35534], [-121.574833, 49.354981], [-121.574813, 49.354756], [-121.574387, 49.353788], [-121.574788, 49.352747], [-121.52356, 49.353233], [-121.50296, 49.353573], [-121.502515, 49.361427], [-121.501023, 49.361354], [-121.501014, 49.361448], [-121.483585, 49.361651], [-121.483999, 49.359544], [-121.483872, 49.354086], [-121.476295, 49.353631], [-121.476192, 49.351915], [-121.475464, 49.351592], [-121.474941, 49.350997], [-121.474987, 49.35049], [-121.473825, 49.350398], [-121.473383, 49.350416], [-121.473196, 49.34832], [-121.471162, 49.348436], [-121.47115, 49.348635], [-121.470502, 49.349527], [-121.470261, 49.350124], [-121.465486, 49.350117], [-121.465559, 49.353468], [-121.45639, 49.353784], [-121.45684, 49.358138], [-121.446592, 49.358233], [-121.447277, 49.366017], [-121.447426, 49.366729], [-121.436719, 49.366935], [-121.418058, 49.367566], [-121.408447, 49.367789], [-121.402002, 49.367818], [-121.401878, 49.368598], [-121.399087, 49.369826], [-121.40162, 49.372248], [-121.401538, 49.37303], [-121.399525, 49.371744], [-121.396969, 49.370949], [-121.39611, 49.371029], [-121.395436, 49.370669], [-121.393996, 49.370741], [-121.393253, 49.370519], [-121.392393, 49.369757], [-121.390047, 49.369316], [-121.389025, 49.369257], [-121.387865, 49.36977], [-121.384428, 49.369786], [-121.383963, 49.370006], [-121.380921, 49.369251], [-121.379806, 49.369297], [-121.379671, 49.375062], [-121.371089, 49.374889], [-121.370915, 49.375531], [-121.370253, 49.376661], [-121.369143, 49.377338], [-121.362332, 49.38003], [-121.360187, 49.38052], [-121.357889, 49.380809], [-121.358591, 49.381093], [-121.358487, 49.381197], [-121.357109, 49.381396], [-121.356801, 49.381409], [-121.356027, 49.381318], [-121.355297, 49.381039], [-121.354764, 49.381051], [-121.353335, 49.381275], [-121.351886, 49.381188], [-121.355488, 49.389209], [-121.362975, 49.389695], [-121.386226, 49.38956], [-121.391441, 49.389292], [-121.391052, 49.390369], [-121.390736, 49.396373], [-121.400054, 49.396822], [-121.412861, 49.397591], [-121.41236, 49.399513], [-121.419152, 49.399926], [-121.41917, 49.400377], [-121.429522, 49.400421], [-121.425813, 49.402938], [-121.419876, 49.404988], [-121.418768, 49.406347], [-121.418977, 49.407825], [-121.419336, 49.409342], [-121.421998, 49.412968], [-121.425981, 49.417063], [-121.426147, 49.417554], [-121.426781, 49.417565], [-121.436848, 49.418922], [-121.437723, 49.418693], [-121.436839, 49.420452], [-121.436824, 49.424717], [-121.432838, 49.424614], [-121.430728, 49.424657], [-121.434149, 49.429861], [-121.435306, 49.429861], [-121.436239, 49.429436], [-121.436497, 49.429424]], [[-121.460937, 49.391855], [-121.461186, 49.400521], [-121.455711, 49.400415], [-121.449009, 49.400397], [-121.448931, 49.397427], [-121.444767, 49.397231], [-121.445905, 49.396669], [-121.446063, 49.396508], [-121.446142, 49.396168], [-121.446226, 49.396134], [-121.447007, 49.396288], [-121.447741, 49.396162], [-121.448305, 49.395306], [-121.449761, 49.393715], [-121.450978, 49.39268], [-121.451734, 49.39234], [-121.453631, 49.392041], [-121.454288, 49.39177], [-121.454568, 49.391576], [-121.455274, 49.391382], [-121.456866, 49.391607], [-121.459237, 49.390909], [-121.4594, 49.39022], [-121.461145, 49.389996], [-121.460937, 49.391855]], [[-121.443776, 49.397989], [-121.440897, 49.398012], [-121.44134, 49.397623], [-121.442045, 49.397175], [-121.443386, 49.396994], [-121.443866, 49.39701], [-121.443776, 49.397989]], [[-121.454498, 49.386009], [-121.454509, 49.386676], [-121.453508, 49.38668], [-121.453666, 49.386114], [-121.454498, 49.386009]], [[-121.447004, 49.37405], [-121.447711, 49.373962], [-121.448054, 49.373957], [-121.448575, 49.374044], [-121.450022, 49.37401], [-121.450254, 49.374112], [-121.450465, 49.374394], [-121.450345, 49.374681], [-121.449317, 49.375827], [-121.449172, 49.376076], [-121.44886, 49.377251], [-121.448673, 49.377464], [-121.448506, 49.377516], [-121.448002, 49.377365], [-121.446756, 49.376279], [-121.446164, 49.375353], [-121.44609, 49.375082], [-121.446126, 49.37483], [-121.446302, 49.374464], [-121.446656, 49.374162], [-121.447004, 49.37405]], [[-121.394042, 49.385253], [-121.393858, 49.385834], [-121.392414, 49.385778], [-121.392491, 49.383704], [-121.391729, 49.381523], [-121.394819, 49.381566], [-121.396631, 49.382086], [-121.39689, 49.383513], [-121.395826, 49.383613], [-121.39479, 49.38408], [-121.394042, 49.385253]]]]}, "properties": {"name": "Hope", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Hope", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909009", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.196325, 50.11068], [-122.198275, 50.110484], [-122.204513, 50.110671], [-122.210894, 50.108703], [-122.222198, 50.110818], [-122.229915, 50.110512], [-122.230522, 50.109095], [-122.234639, 50.10688], [-122.23887, 50.102437], [-122.242279, 50.096017], [-122.244584, 50.093915], [-122.254519, 50.09184], [-122.271175, 50.085831], [-122.274692, 50.084055], [-122.278171, 50.080102], [-122.279035, 50.077625], [-122.278305, 50.071727], [-122.279392, 50.069054], [-122.281844, 50.066902], [-122.285208, 50.065176], [-122.288328, 50.062436], [-122.289188, 50.059717], [-122.288836, 50.051525], [-122.272609, 50.04857], [-122.260616, 50.043288], [-122.255331, 50.035291], [-122.256312, 50.024018], [-122.261045, 50.016971], [-122.257991, 50.010373], [-122.261393, 50.003055], [-122.25809, 49.998921], [-122.256831, 49.994105], [-122.254721, 49.991002], [-122.249619, 49.984613], [-122.249387, 49.979694], [-122.256694, 49.976791], [-122.262707, 49.975508], [-122.264955, 49.97496], [-122.268385, 49.970439], [-122.271292, 49.963101], [-122.258619, 49.953743], [-122.252108, 49.948727], [-122.240065, 49.940811], [-122.237412, 49.936822], [-122.235375, 49.926107], [-122.226517, 49.920048], [-122.207936, 49.912238], [-122.190736, 49.910604], [-122.18122, 49.908173], [-122.169453, 49.909534], [-122.163667, 49.909391], [-122.15933, 49.906817], [-122.154862, 49.90173], [-122.146446, 49.89126], [-122.137217, 49.886115], [-122.135294, 49.883956], [-122.13282, 49.877353], [-122.13071, 49.873552], [-122.124189, 49.866837], [-122.112472, 49.857166], [-122.104714, 49.84843], [-122.096721, 49.846221], [-122.094797, 49.843819], [-122.092036, 49.840844], [-122.087433, 49.839333], [-122.078708, 49.837854], [-122.07621, 49.836617], [-122.069568, 49.831543], [-122.06149, 49.835566], [-122.052148, 49.837537], [-122.043005, 49.835545], [-122.046573, 49.831907], [-122.049321, 49.829221], [-122.046912, 49.822428], [-122.039273, 49.817053], [-122.03256, 49.816202], [-122.019757, 49.816124], [-122.011911, 49.818911], [-122.001552, 49.820201], [-122.001519, 49.820326], [-121.992022, 49.820198], [-121.991011, 49.822478], [-121.99081, 49.826496], [-121.989367, 49.829892], [-121.987683, 49.832274], [-121.982479, 49.834244], [-121.978606, 49.835285], [-121.968678, 49.836511], [-121.966165, 49.83856], [-121.965228, 49.840936], [-121.966849, 49.844411], [-121.969952, 49.846908], [-121.972613, 49.849795], [-121.970702, 49.85213], [-121.965416, 49.858986], [-121.960349, 49.860422], [-121.954896, 49.858522], [-121.947975, 49.855955], [-121.941176, 49.856626], [-121.935734, 49.858063], [-121.931428, 49.86046], [-121.929697, 49.865164], [-121.926591, 49.867893], [-121.92279, 49.869028], [-121.917257, 49.8694], [-121.914498, 49.870191], [-121.912054, 49.872092], [-121.909301, 49.873367], [-121.905825, 49.873726], [-121.897782, 49.871161], [-121.89502, 49.871709], [-121.887986, 49.871846], [-121.875914, 49.870125], [-121.873151, 49.870673], [-121.870927, 49.872378], [-121.870896, 49.875911], [-121.86935, 49.878], [-121.867487, 49.878736], [-121.863227, 49.879292], [-121.858075, 49.880384], [-121.840195, 49.872016], [-121.835162, 49.870397], [-121.8367, 49.867586], [-121.843309, 49.863349], [-121.845448, 49.860824], [-121.844154, 49.858946], [-121.836787, 49.856034], [-121.828836, 49.854286], [-121.822178, 49.854416], [-121.817026, 49.855264], [-121.813269, 49.853832], [-121.809, 49.850082], [-121.80438, 49.844931], [-121.800164, 49.842437], [-121.793342, 49.840922], [-121.790285, 49.841807], [-121.787172, 49.844531], [-121.785222, 49.851362], [-121.783736, 49.852337], [-121.779707, 49.85342], [-121.778008, 49.855556], [-121.778023, 49.857008], [-121.78046, 49.861304], [-121.77565, 49.866648], [-121.775518, 49.868391], [-121.77285, 49.870967], [-121.769195, 49.87229], [-121.760808, 49.871892], [-121.758016, 49.869535], [-121.755496, 49.864421], [-121.758518, 49.852275], [-121.756707, 49.850687], [-121.754299, 49.85092], [-121.754424, 49.850823], [-121.752266, 49.85136], [-121.749194, 49.85134], [-121.741724, 49.851132], [-121.736212, 49.85071], [-121.731547, 49.850181], [-121.729153, 49.848993], [-121.72653, 49.845991], [-121.725539, 49.841854], [-121.725738, 49.840416], [-121.727627, 49.838595], [-121.728301, 49.837087], [-121.727255, 49.835585], [-121.72517, 49.833266], [-121.721394, 49.83133], [-121.720268, 49.829726], [-121.717817, 49.827956], [-121.714614, 49.824888], [-121.712698, 49.823629], [-121.712474, 49.82233], [-121.71395, 49.821675], [-121.718284, 49.821112], [-121.723401, 49.819349], [-121.72972, 49.816076], [-121.731333, 49.813058], [-121.731732, 49.80765], [-121.731955, 49.803201], [-121.730922, 49.800194], [-121.729208, 49.79784], [-121.725854, 49.795423], [-121.720272, 49.792194], [-121.713301, 49.793455], [-121.709813, 49.793742], [-121.707004, 49.793034], [-121.705458, 49.791569], [-121.704614, 49.7888], [-121.70443, 49.785858], [-121.70525, 49.782844], [-121.708239, 49.780063], [-121.704807, 49.774327], [-121.70564, 49.772853], [-121.707795, 49.771545], [-121.71339, 49.77074], [-121.714016, 49.769848], [-121.714923, 49.764747], [-121.711411, 49.759081], [-121.711826, 49.752168], [-121.708996, 49.748724], [-121.708929, 49.747116], [-121.710236, 49.745572], [-121.718766, 49.7426], [-121.725553, 49.739771], [-121.729916, 49.737566], [-121.73297, 49.736563], [-121.733806, 49.735602], [-121.73274, 49.73458], [-121.729875, 49.73312], [-121.719458, 49.728611], [-121.717492, 49.727704], [-121.707406, 49.720251], [-121.699485, 49.715577], [-121.697379, 49.707153], [-121.697446, 49.705985], [-121.6988, 49.704959], [-121.701047, 49.702592], [-121.701448, 49.701583], [-121.691669, 49.701751], [-121.562568, 49.702687], [-121.510595, 49.703096], [-121.45599, 49.702798], [-121.42811, 49.702691], [-121.411455, 49.702548], [-121.410511, 49.702728], [-121.409202, 49.703147], [-121.404215, 49.702799], [-121.400065, 49.7027], [-121.378052, 49.70266], [-121.347789, 49.702342], [-121.294288, 49.701525], [-121.186408, 49.700495], [-121.144408, 49.700156], [-121.146777, 49.701817], [-121.148799, 49.704041], [-121.150088, 49.706346], [-121.151798, 49.707746], [-121.15339, 49.707537], [-121.15529, 49.709184], [-121.154773, 49.709964], [-121.154443, 49.711403], [-121.155826, 49.714038], [-121.155363, 49.716135], [-121.157581, 49.717782], [-121.16204, 49.717568], [-121.165214, 49.719214], [-121.167614, 49.722343], [-121.170545, 49.722007], [-121.172646, 49.722252], [-121.174163, 49.724022], [-121.175881, 49.724391], [-121.178049, 49.723683], [-121.181923, 49.725823], [-121.185709, 49.726602], [-121.188615, 49.730595], [-121.191407, 49.73257], [-121.192158, 49.734793], [-121.193679, 49.736151], [-121.193018, 49.739441], [-121.1932, 49.740922], [-121.19689, 49.74199], [-121.198093, 49.743348], [-121.197251, 49.745156], [-121.195321, 49.747208], [-121.197116, 49.75079], [-121.197152, 49.754781], [-121.198678, 49.755521], [-121.200706, 49.757744], [-121.202578, 49.764329], [-121.203335, 49.765729], [-121.210774, 49.770007], [-121.211274, 49.771695], [-121.210428, 49.774121], [-121.21178, 49.777331], [-121.211832, 49.779265], [-121.208941, 49.781314], [-121.206445, 49.783665], [-121.203962, 49.788098], [-121.202369, 49.790583], [-121.190701, 49.797371], [-121.187767, 49.798529], [-121.183368, 49.805447], [-121.184842, 49.807979], [-121.187469, 49.809727], [-121.188273, 49.813045], [-121.183807, 49.819051], [-121.180233, 49.821866], [-121.176793, 49.821534], [-121.168311, 49.82273], [-121.163913, 49.82281], [-121.155189, 49.821398], [-121.151871, 49.822472], [-121.147911, 49.82541], [-121.145774, 49.825739], [-121.136338, 49.826103], [-121.124357, 49.825637], [-121.118999, 49.826335], [-121.10936, 49.829346], [-121.103416, 49.833233], [-121.103254, 49.835098], [-121.110492, 49.839517], [-121.113181, 49.842178], [-121.116639, 49.845008], [-121.117343, 49.84613], [-121.114083, 49.847907], [-121.105587, 49.850754], [-121.098877, 49.853645], [-121.091974, 49.856493], [-121.089502, 49.854712], [-121.086631, 49.854708], [-121.087077, 49.856534], [-121.088868, 49.859484], [-121.093223, 49.862857], [-121.094949, 49.865723], [-121.09659, 49.871413], [-121.098052, 49.873327], [-121.100042, 49.872591], [-121.104155, 49.870253], [-121.107793, 49.867088], [-121.110419, 49.866975], [-121.112081, 49.867479], [-121.119061, 49.867427], [-121.124383, 49.86625], [-121.128461, 49.863452], [-121.131117, 49.862339], [-121.14105, 49.861562], [-121.143705, 49.860239], [-121.147058, 49.859827], [-121.152937, 49.860213], [-121.159072, 49.859851], [-121.160501, 49.859888], [-121.166526, 49.860244], [-121.169785, 49.861014], [-121.172633, 49.862042], [-121.172849, 49.864522], [-121.173758, 49.86611], [-121.173357, 49.868156], [-121.172029, 49.871163], [-121.171599, 49.873381], [-121.170045, 49.875538], [-121.166423, 49.878286], [-121.164269, 49.881254], [-121.161443, 49.883548], [-121.159389, 49.884357], [-121.157517, 49.885602], [-121.157145, 49.886711], [-121.157632, 49.887445], [-121.158734, 49.887686], [-121.160084, 49.887452], [-121.163371, 49.885958], [-121.165058, 49.885666], [-121.167907, 49.885793], [-121.169689, 49.884927], [-121.171369, 49.883034], [-121.173514, 49.882842], [-121.181511, 49.8831], [-121.18638, 49.884063], [-121.196115, 49.886779], [-121.197936, 49.887556], [-121.200104, 49.889878], [-121.204143, 49.891847], [-121.206192, 49.893317], [-121.208181, 49.894114], [-121.213392, 49.894225], [-121.216732, 49.894589], [-121.220165, 49.894478], [-121.22279, 49.893415], [-121.226234, 49.890437], [-121.227593, 49.887731], [-121.228832, 49.884175], [-121.230647, 49.882261], [-121.232486, 49.882166], [-121.235396, 49.882667], [-121.237223, 49.881662], [-121.238484, 49.880221], [-121.240447, 49.879592], [-121.243421, 49.879083], [-121.249492, 49.877335], [-121.258057, 49.876836], [-121.260449, 49.876267], [-121.262691, 49.874116], [-121.262391, 49.872436], [-121.263252, 49.871369], [-121.26552, 49.87074], [-121.272842, 49.870812], [-121.278691, 49.871851], [-121.281663, 49.871539], [-121.284696, 49.8719], [-121.286043, 49.872259], [-121.289962, 49.874066], [-121.291307, 49.876789], [-121.291451, 49.876791], [-121.292282, 49.878152], [-121.294031, 49.879194], [-121.296064, 49.880144], [-121.297719, 49.881828], [-121.299751, 49.883543], [-121.301264, 49.884126], [-121.305238, 49.884223], [-121.311911, 49.882613], [-121.315128, 49.882647], [-121.317824, 49.882773], [-121.320047, 49.884273], [-121.321088, 49.885314], [-121.321371, 49.886752], [-121.320284, 49.888862], [-121.317873, 49.891401], [-121.316691, 49.893389], [-121.316975, 49.894368], [-121.318205, 49.895195], [-121.320144, 49.897704], [-121.324268, 49.899419], [-121.323805, 49.900915], [-121.319551, 49.902591], [-121.315434, 49.906838], [-121.31636, 49.909232], [-121.315805, 49.911805], [-121.312844, 49.912763], [-121.299898, 49.911273], [-121.293884, 49.913665], [-121.292217, 49.916297], [-121.289532, 49.918211], [-121.287491, 49.925151], [-121.286564, 49.926946], [-121.287209, 49.931076], [-121.286649, 49.93664], [-121.286554, 49.94041], [-121.288356, 49.94514], [-121.287985, 49.947054], [-121.284556, 49.949507], [-121.282702, 49.951899], [-121.282423, 49.953635], [-121.28455, 49.957586], [-121.283622, 49.95968], [-121.280842, 49.961176], [-121.272785, 49.961833], [-121.269173, 49.962251], [-121.267782, 49.963747], [-121.271391, 49.968419], [-121.271478, 49.972728], [-121.268883, 49.973864], [-121.268881, 49.97566], [-121.275087, 49.980993], [-121.277681, 49.982553], [-121.277958, 49.984408], [-121.273043, 49.98674], [-121.27332, 49.988596], [-121.277815, 49.991115], [-121.281154, 49.991838], [-121.28384, 49.995312], [-121.292557, 49.99999], [-121.29236, 50.002149], [-121.289949, 50.003226], [-121.288279, 50.004662], [-121.287906, 50.007774], [-121.290501, 50.011129], [-121.302005, 50.017006], [-121.303211, 50.018863], [-121.303674, 50.020659], [-121.31017, 50.024855], [-121.318107, 50.028214], [-121.319221, 50.030848], [-121.321263, 50.032286], [-121.325163, 50.033128], [-121.328321, 50.037799], [-121.328043, 50.039535], [-121.325259, 50.041032], [-121.323217, 50.043785], [-121.324425, 50.04624], [-121.322754, 50.047677], [-121.319227, 50.048516], [-121.316535, 50.050132], [-121.315328, 50.052466], [-121.338208, 50.052551], [-121.375226, 50.052542], [-121.443459, 50.052354], [-121.526167, 50.052187], [-121.542682, 50.052408], [-121.543707, 50.052296], [-121.546012, 50.052194], [-121.55192, 50.052154], [-121.559538, 50.052248], [-121.564979, 50.052228], [-121.57573, 50.050832], [-121.590133, 50.049589], [-121.598701, 50.045836], [-121.609751, 50.041882], [-121.617308, 50.045499], [-121.626085, 50.050907], [-121.628968, 50.051973], [-121.632156, 50.051959], [-121.635327, 50.053625], [-121.635636, 50.057571], [-121.637038, 50.058763], [-121.641031, 50.058214], [-121.649966, 50.060102], [-121.65341, 50.060929], [-121.655567, 50.063374], [-121.661249, 50.064972], [-121.659688, 50.06713], [-121.65728, 50.067914], [-121.654614, 50.071331], [-121.657624, 50.075748], [-121.656987, 50.077304], [-121.658027, 50.079514], [-121.662223, 50.080996], [-121.666266, 50.080805], [-121.670996, 50.079116], [-121.675731, 50.078324], [-121.681592, 50.078664], [-121.686868, 50.075598], [-121.690211, 50.075108], [-121.695702, 50.075868], [-121.698578, 50.075081], [-121.702667, 50.074947], [-121.704817, 50.076196], [-121.706914, 50.08181], [-121.714579, 50.086208], [-121.726208, 50.086764], [-121.731055, 50.087883], [-121.737146, 50.08792], [-121.748982, 50.090506], [-121.750672, 50.092054], [-121.753465, 50.092342], [-121.758763, 50.091963], [-121.767757, 50.089176], [-121.777792, 50.088297], [-121.779473, 50.088948], [-121.786071, 50.088442], [-121.790835, 50.090335], [-121.793622, 50.090024], [-121.801197, 50.085147], [-121.808152, 50.083323], [-121.814145, 50.082937], [-121.817012, 50.081549], [-121.822864, 50.080983], [-121.829251, 50.078442], [-121.836507, 50.078767], [-121.838727, 50.07774], [-121.842355, 50.077902], [-121.848007, 50.0762], [-121.849391, 50.075296], [-121.84853, 50.073029], [-121.852849, 50.068762], [-121.848335, 50.063643], [-121.848506, 50.062387], [-121.853209, 50.059195], [-121.85534, 50.058646], [-121.855791, 50.057448], [-121.85091, 50.05275], [-121.851735, 50.05173], [-121.853404, 50.051482], [-121.855622, 50.050455], [-121.856342, 50.048419], [-121.858455, 50.046375], [-121.862919, 50.046712], [-121.866095, 50.048071], [-121.869287, 50.050626], [-121.872782, 50.051505], [-121.878342, 50.05028], [-121.880771, 50.051284], [-121.886712, 50.050834], [-121.892082, 50.049371], [-121.895802, 50.04965], [-121.900402, 50.053093], [-121.902446, 50.053022], [-121.903828, 50.052118], [-121.908679, 50.053527], [-121.910369, 50.054773], [-121.910519, 50.058779], [-121.912506, 50.061279], [-121.912627, 50.063192], [-121.918108, 50.069501], [-121.919906, 50.071763], [-121.924743, 50.071975], [-121.927937, 50.074229], [-121.934861, 50.07413], [-121.936088, 50.075378], [-121.935745, 50.077294], [-121.939581, 50.078886], [-121.944509, 50.078918], [-121.948034, 50.078359], [-121.950656, 50.079599], [-121.952191, 50.0827], [-121.950605, 50.088331], [-121.953431, 50.090706], [-121.956316, 50.090809], [-121.957694, 50.089605], [-121.957743, 50.086435], [-121.959392, 50.084691], [-121.964476, 50.082568], [-121.969865, 50.082296], [-121.972393, 50.083417], [-121.974063, 50.083167], [-121.976271, 50.081539], [-121.981177, 50.080074], [-121.984816, 50.080828], [-121.986296, 50.080341], [-121.990318, 50.08187], [-121.992311, 50.084369], [-121.997658, 50.084335], [-121.998902, 50.08648], [-122.001151, 50.087542], [-122.004685, 50.087579], [-122.005584, 50.085481], [-122.010399, 50.084193], [-122.018218, 50.084621], [-122.023631, 50.08584], [-122.026292, 50.089172], [-122.029872, 50.091899], [-122.031487, 50.093921], [-122.036418, 50.093948], [-122.039788, 50.095241], [-122.04113, 50.097504], [-122.042176, 50.098813], [-122.044886, 50.099572], [-122.052131, 50.104246], [-122.053674, 50.107346], [-122.056967, 50.109416], [-122.055901, 50.112175], [-122.05632, 50.114744], [-122.058254, 50.116285], [-122.061712, 50.117098], [-122.06737, 50.121245], [-122.066092, 50.12257], [-122.068103, 50.125666], [-122.07007, 50.12637], [-122.079701, 50.12349], [-122.083753, 50.120949], [-122.087206, 50.121462], [-122.089279, 50.122882], [-122.095922, 50.124748], [-122.099079, 50.124306], [-122.100079, 50.122923], [-122.103225, 50.121883], [-122.10441, 50.120438], [-122.104283, 50.118526], [-122.106477, 50.116297], [-122.114237, 50.113128], [-122.115538, 50.107737], [-122.116367, 50.107312], [-122.128578, 50.110867], [-122.131118, 50.112282], [-122.132312, 50.111436], [-122.13697, 50.111699], [-122.145864, 50.109655], [-122.150641, 50.111232], [-122.153218, 50.114442], [-122.159361, 50.114512], [-122.163424, 50.112865], [-122.170033, 50.112931], [-122.176016, 50.109593], [-122.178712, 50.109451], [-122.181241, 50.110267], [-122.189972, 50.109477], [-122.196325, 50.11068]], [[-121.504997, 50.014635], [-121.502471, 50.014409], [-121.501905, 50.003362], [-121.501874, 50.000841], [-121.50267, 49.995786], [-121.50342, 49.993139], [-121.503509, 49.990074], [-121.510609, 49.989318], [-121.510557, 49.989503], [-121.510431, 49.98951], [-121.510475, 49.989879], [-121.510222, 49.990433], [-121.509833, 49.990841], [-121.509696, 49.991227], [-121.510065, 49.99187], [-121.510069, 49.992238], [-121.510261, 49.992754], [-121.510258, 49.993329], [-121.510411, 49.993764], [-121.510004, 49.993866], [-121.509989, 49.99391], [-121.510189, 49.994201], [-121.510543, 49.994521], [-121.510604, 49.994738], [-121.510811, 49.994839], [-121.511354, 49.995305], [-121.511568, 49.995595], [-121.511612, 49.995991], [-121.512016, 49.996528], [-121.512747, 49.997176], [-121.513044, 49.997548], [-121.513658, 49.997969], [-121.513991, 49.998036], [-121.515258, 49.999042], [-121.51629, 50.000499], [-121.516675, 50.001126], [-121.517089, 50.002201], [-121.517515, 50.002899], [-121.517523, 50.003078], [-121.51795, 50.003705], [-121.518097, 50.004346], [-121.518415, 50.004484], [-121.518445, 50.005267], [-121.518606, 50.005485], [-121.518849, 50.006234], [-121.519147, 50.006545], [-121.519477, 50.006693], [-121.519174, 50.007462], [-121.519291, 50.008166], [-121.519428, 50.008284], [-121.519717, 50.009358], [-121.519838, 50.009533], [-121.516288, 50.00905], [-121.505079, 50.009225], [-121.504997, 50.014635]], [[-121.495629, 49.994294], [-121.484693, 49.994078], [-121.484268, 49.984551], [-121.498069, 49.984681], [-121.4987, 49.985278], [-121.499496, 49.986262], [-121.50197, 49.985837], [-121.503413, 49.987552], [-121.500681, 49.988159], [-121.499813, 49.98678], [-121.495175, 49.986554], [-121.495629, 49.994294]], [[-121.497451, 49.979245], [-121.4991, 49.978651], [-121.498768, 49.973891], [-121.498837, 49.972152], [-121.496457, 49.971639], [-121.493376, 49.971802], [-121.490769, 49.972536], [-121.487774, 49.97273], [-121.485935, 49.973567], [-121.483878, 49.973902], [-121.482097, 49.974368], [-121.479831, 49.974511], [-121.478536, 49.974413], [-121.477973, 49.967637], [-121.477824, 49.964381], [-121.480493, 49.964296], [-121.480437, 49.958864], [-121.486216, 49.958946], [-121.486465, 49.964284], [-121.486109, 49.964277], [-121.486231, 49.964835], [-121.499464, 49.964685], [-121.499564, 49.965058], [-121.500053, 49.965794], [-121.500666, 49.966193], [-121.501519, 49.966554], [-121.50218, 49.966889], [-121.502424, 49.967078], [-121.503068, 49.967841], [-121.504087, 49.969644], [-121.504795, 49.971784], [-121.504911, 49.973217], [-121.505154, 49.973747], [-121.50617, 49.97348], [-121.506564, 49.974276], [-121.50678, 49.97454], [-121.506839, 49.974829], [-121.507094, 49.975165], [-121.507557, 49.975567], [-121.507823, 49.975948], [-121.50787, 49.976254], [-121.50807, 49.976526], [-121.508018, 49.977785], [-121.508248, 49.978453], [-121.508293, 49.979237], [-121.497451, 49.979245]], [[-121.472492, 49.931354], [-121.483435, 49.93211], [-121.483399, 49.941225], [-121.483828, 49.949013], [-121.48387, 49.951743], [-121.484534, 49.954139], [-121.483767, 49.953627], [-121.483301, 49.953394], [-121.482064, 49.95238], [-121.480978, 49.951026], [-121.480464, 49.950506], [-121.479578, 49.949011], [-121.478117, 49.947598], [-121.477558, 49.946736], [-121.477647, 49.946557], [-121.477431, 49.946383], [-121.476963, 49.945738], [-121.476848, 49.945395], [-121.476212, 49.944784], [-121.475841, 49.94459], [-121.475523, 49.944056], [-121.475146, 49.943691], [-121.475093, 49.943133], [-121.474748, 49.942562], [-121.474302, 49.94216], [-121.474207, 49.941609], [-121.474074, 49.941455], [-121.473853, 49.941371], [-121.473621, 49.941162], [-121.473382, 49.940853], [-121.47327, 49.940391], [-121.472963, 49.939983], [-121.472848, 49.939612], [-121.472532, 49.939043], [-121.472544, 49.938655], [-121.472358, 49.938383], [-121.471568, 49.937779], [-121.471348, 49.937264], [-121.470414, 49.936396], [-121.468668, 49.935259], [-121.467914, 49.934861], [-121.467439, 49.934414], [-121.466752, 49.934072], [-121.466645, 49.933964], [-121.466418, 49.933205], [-121.465938, 49.932974], [-121.46519, 49.932424], [-121.464529, 49.932118], [-121.464005, 49.931517], [-121.463996, 49.931356], [-121.463586, 49.930685], [-121.462439, 49.929492], [-121.462297, 49.929188], [-121.472492, 49.931354]], [[-121.448612, 49.909094], [-121.449117, 49.909543], [-121.449855, 49.910462], [-121.45063, 49.911963], [-121.448938, 49.912003], [-121.43823, 49.911933], [-121.438215, 49.909019], [-121.448612, 49.909094]], [[-121.458221, 49.85973], [-121.458492, 49.879733], [-121.457193, 49.87971], [-121.452394, 49.879321], [-121.447057, 49.879029], [-121.444251, 49.878791], [-121.444179, 49.877735], [-121.444897, 49.876206], [-121.446061, 49.874611], [-121.446777, 49.873992], [-121.447243, 49.873324], [-121.447714, 49.872521], [-121.448362, 49.870991], [-121.448886, 49.8707], [-121.448877, 49.870089], [-121.449104, 49.869588], [-121.449067, 49.86894], [-121.448826, 49.868685], [-121.449167, 49.868447], [-121.449579, 49.867346], [-121.449941, 49.866892], [-121.450061, 49.866587], [-121.450516, 49.86911], [-121.452432, 49.868919], [-121.451939, 49.866497], [-121.451631, 49.865457], [-121.451694, 49.864264], [-121.451139, 49.862261], [-121.45107, 49.85996], [-121.458221, 49.85973]], [[-121.433677, 49.840884], [-121.432979, 49.841028], [-121.431881, 49.841014], [-121.431449, 49.840585], [-121.430972, 49.839878], [-121.430794, 49.839794], [-121.429759, 49.839923], [-121.429026, 49.840238], [-121.428267, 49.840298], [-121.42778, 49.839778], [-121.429703, 49.839107], [-121.429796, 49.838693], [-121.431453, 49.835631], [-121.431635, 49.83472], [-121.43155, 49.834257], [-121.430879, 49.835714], [-121.430205, 49.83491], [-121.430255, 49.834242], [-121.430895, 49.833479], [-121.426794, 49.833472], [-121.426754, 49.82259], [-121.42925, 49.822649], [-121.428766, 49.824557], [-121.429336, 49.828198], [-121.430165, 49.828096], [-121.429635, 49.825418], [-121.43025, 49.825364], [-121.430227, 49.824721], [-121.430412, 49.824083], [-121.430483, 49.825343], [-121.430793, 49.826886], [-121.431274, 49.82835], [-121.431679, 49.829165], [-121.431733, 49.829642], [-121.431865, 49.829878], [-121.432563, 49.830616], [-121.433564, 49.831475], [-121.434183, 49.832158], [-121.434886, 49.832761], [-121.435666, 49.83404], [-121.436027, 49.834477], [-121.436368, 49.834715], [-121.436439, 49.83504], [-121.436216, 49.835549], [-121.436161, 49.835927], [-121.436426, 49.836784], [-121.436992, 49.837773], [-121.437071, 49.838349], [-121.437006, 49.83861], [-121.435481, 49.8402], [-121.435225, 49.840358], [-121.434466, 49.840573], [-121.433677, 49.840884]]]]}, "properties": {"name": "Fraser Valley A", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley A", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909014", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.409202, 49.703147], [-121.410511, 49.702728], [-121.411455, 49.702548], [-121.42811, 49.702691], [-121.45599, 49.702798], [-121.510595, 49.703096], [-121.562568, 49.702687], [-121.691669, 49.701751], [-121.701448, 49.701583], [-121.698962, 49.700607], [-121.695903, 49.698779], [-121.694562, 49.696885], [-121.694236, 49.695782], [-121.692477, 49.694544], [-121.68659, 49.693966], [-121.68409, 49.692799], [-121.684363, 49.690417], [-121.690092, 49.684288], [-121.693951, 49.676442], [-121.700688, 49.670928], [-121.702519, 49.667988], [-121.700161, 49.664614], [-121.698756, 49.6611], [-121.698653, 49.658237], [-121.694145, 49.65727], [-121.692779, 49.654216], [-121.686976, 49.645687], [-121.68564, 49.637644], [-121.684762, 49.635477], [-121.685916, 49.63332], [-121.685162, 49.632011], [-121.680577, 49.628678], [-121.679683, 49.623611], [-121.67785, 49.620064], [-121.671408, 49.616044], [-121.658604, 49.617638], [-121.651208, 49.620392], [-121.64596, 49.623863], [-121.644162, 49.624276], [-121.6414, 49.623281], [-121.638307, 49.620494], [-121.635976, 49.620393], [-121.627734, 49.623764], [-121.625618, 49.62428], [-121.618302, 49.623218], [-121.613198, 49.620399], [-121.610331, 49.619437], [-121.607613, 49.616959], [-121.600296, 49.615552], [-121.597403, 49.614383], [-121.596436, 49.612454], [-121.59378, 49.611078], [-121.586047, 49.610668], [-121.578682, 49.609878], [-121.56903, 49.607162], [-121.563896, 49.607368], [-121.562349, 49.605542], [-121.556249, 49.603306], [-121.550499, 49.602033], [-121.548531, 49.600345], [-121.548214, 49.59207], [-121.546068, 49.587074], [-121.546146, 49.582557], [-121.540883, 49.577977], [-121.539441, 49.575428], [-121.539456, 49.573566], [-121.540662, 49.572046], [-121.544247, 49.571206], [-121.547512, 49.56961], [-121.550562, 49.567395], [-121.555409, 49.565621], [-121.564109, 49.564037], [-121.566058, 49.563306], [-121.567001, 49.562131], [-121.56509, 49.560858], [-121.562799, 49.558069], [-121.560845, 49.546144], [-121.561457, 49.542832], [-121.560807, 49.540282], [-121.559519, 49.537251], [-121.56045, 49.53418], [-121.559644, 49.532113], [-121.55466, 49.529085], [-121.554706, 49.52812], [-121.557335, 49.526561], [-121.560794, 49.523], [-121.561834, 49.520585], [-121.561092, 49.516208], [-121.563028, 49.513756], [-121.565286, 49.512232], [-121.570025, 49.51118], [-121.576347, 49.510465], [-121.57199, 49.50637], [-121.571869, 49.503992], [-121.570644, 49.502408], [-121.570153, 49.500065], [-121.571081, 49.4982], [-121.56936, 49.496385], [-121.572195, 49.486491], [-121.581296, 49.487732], [-121.593158, 49.490117], [-121.600829, 49.495863], [-121.610114, 49.499528], [-121.618745, 49.501742], [-121.625143, 49.496542], [-121.629272, 49.489553], [-121.636821, 49.483501], [-121.646648, 49.474044], [-121.660585, 49.468001], [-121.658688, 49.461938], [-121.647824, 49.457984], [-121.645814, 49.452302], [-121.654271, 49.447053], [-121.665584, 49.437867], [-121.674199, 49.432602], [-121.683799, 49.423933], [-121.695869, 49.421764], [-121.699365, 49.415793], [-121.698024, 49.407364], [-121.711555, 49.401056], [-121.718331, 49.39148], [-121.708398, 49.385553], [-121.699573, 49.382216], [-121.698081, 49.377555], [-121.695937, 49.374223], [-121.692377, 49.36803], [-121.691845, 49.36672], [-121.691154, 49.365643], [-121.690309, 49.362516], [-121.689601, 49.360591], [-121.627213, 49.362487], [-121.620038, 49.362728], [-121.617952, 49.362888], [-121.617752, 49.36251], [-121.617437, 49.361526], [-121.617448, 49.361085], [-121.617554, 49.360762], [-121.617823, 49.360496], [-121.618314, 49.360187], [-121.618413, 49.36008], [-121.618432, 49.359901], [-121.617742, 49.358929], [-121.617381, 49.358583], [-121.617097, 49.358436], [-121.616722, 49.358522], [-121.616158, 49.358496], [-121.615929, 49.358268], [-121.616005, 49.358072], [-121.616536, 49.357754], [-121.61699, 49.35731], [-121.617066, 49.357095], [-121.616972, 49.356915], [-121.616643, 49.356928], [-121.61603, 49.357137], [-121.615515, 49.357125], [-121.614594, 49.356852], [-121.60985, 49.356821], [-121.608109, 49.356993], [-121.604011, 49.357019], [-121.603657, 49.356767], [-121.608273, 49.353517], [-121.607952, 49.353228], [-121.605808, 49.354746], [-121.605907, 49.35481], [-121.603387, 49.356575], [-121.603175, 49.356424], [-121.603925, 49.355696], [-121.604184, 49.355267], [-121.60441, 49.354631], [-121.604351, 49.354216], [-121.603909, 49.353852], [-121.603724, 49.353526], [-121.603822, 49.3535], [-121.604094, 49.35362], [-121.604507, 49.353661], [-121.604968, 49.353423], [-121.60542, 49.352997], [-121.605687, 49.352839], [-121.605936, 49.352725], [-121.60645, 49.352631], [-121.606704, 49.352392], [-121.606816, 49.351835], [-121.607177, 49.351294], [-121.605139, 49.351333], [-121.604012, 49.351261], [-121.606566, 49.348804], [-121.609358, 49.346746], [-121.615906, 49.342257], [-121.618881, 49.33804], [-121.622853, 49.331774], [-121.623686, 49.328979], [-121.627195, 49.324373], [-121.627478, 49.323865], [-121.627629, 49.322351], [-121.628546, 49.320632], [-121.629473, 49.319752], [-121.632459, 49.317989], [-121.634599, 49.316932], [-121.637701, 49.315815], [-121.639063, 49.31565], [-121.647206, 49.317526], [-121.654163, 49.318019], [-121.660043, 49.31621], [-121.662278, 49.315249], [-121.666776, 49.312301], [-121.66784, 49.311215], [-121.670935, 49.30722], [-121.672073, 49.304188], [-121.668569, 49.297424], [-121.668642, 49.29641], [-121.664219, 49.296169], [-121.661823, 49.296223], [-121.659301, 49.296531], [-121.659296, 49.29851], [-121.65954, 49.299584], [-121.65994, 49.300632], [-121.6606, 49.301602], [-121.660896, 49.302892], [-121.660907, 49.304476], [-121.660659, 49.305551], [-121.659917, 49.306488], [-121.659089, 49.307153], [-121.658478, 49.307857], [-121.657303, 49.308518], [-121.655573, 49.308957], [-121.653957, 49.309135], [-121.652157, 49.30959], [-121.651565, 49.30962], [-121.651263, 49.30958], [-121.650705, 49.309304], [-121.649192, 49.308324], [-121.648293, 49.307512], [-121.646745, 49.305749], [-121.646125, 49.305248], [-121.645625, 49.304963], [-121.64445, 49.304615], [-121.643833, 49.304581], [-121.642398, 49.305231], [-121.641816, 49.30543], [-121.641665, 49.305373], [-121.642991, 49.304093], [-121.643893, 49.303388], [-121.646036, 49.302237], [-121.652335, 49.299862], [-121.653023, 49.299479], [-121.654109, 49.298609], [-121.65564, 49.29699], [-121.6568, 49.295879], [-121.656273, 49.295978], [-121.646773, 49.295797], [-121.607701, 49.295401], [-121.525523, 49.295985], [-121.501947, 49.296011], [-121.502642, 49.267084], [-121.501552, 49.172093], [-121.497504, 49.171287], [-121.493132, 49.170865], [-121.490276, 49.168358], [-121.489943, 49.16663], [-121.490895, 49.165289], [-121.489872, 49.163563], [-121.487558, 49.16299], [-121.484546, 49.162796], [-121.483601, 49.162076], [-121.483031, 49.160749], [-121.485392, 49.155821], [-121.487827, 49.154093], [-121.492422, 49.153375], [-121.494065, 49.15255], [-121.49544, 49.151376], [-121.497816, 49.150022], [-121.499874, 49.149417], [-121.50035, 49.14881], [-121.498657, 49.146919], [-121.492199, 49.144411], [-121.485811, 49.142834], [-121.483921, 49.141588], [-121.482978, 49.139901], [-121.482626, 49.138406], [-121.482016, 49.137543], [-121.47959, 49.139786], [-121.475756, 49.140449], [-121.472081, 49.141385], [-121.468994, 49.143733], [-121.465304, 49.145745], [-121.461785, 49.146628], [-121.458379, 49.148431], [-121.457269, 49.150332], [-121.455941, 49.152142], [-121.452972, 49.152906], [-121.448969, 49.153349], [-121.441216, 49.153728], [-121.431435, 49.156681], [-121.430313, 49.156439], [-121.423643, 49.151188], [-121.420437, 49.147708], [-121.418041, 49.146577], [-121.413569, 49.145769], [-121.411273, 49.144703], [-121.408546, 49.137327], [-121.408852, 49.134951], [-121.409663, 49.133236], [-121.409438, 49.131262], [-121.408244, 49.129184], [-121.404145, 49.126534], [-121.403536, 49.124638], [-121.404661, 49.120105], [-121.405057, 49.115651], [-121.40496, 49.113651], [-121.405344, 49.111119], [-121.407008, 49.108326], [-121.409747, 49.101], [-121.409778, 49.099104], [-121.408883, 49.097287], [-121.40636, 49.095728], [-121.403731, 49.094675], [-121.401083, 49.094244], [-121.395096, 49.093704], [-121.393196, 49.09199], [-121.391221, 49.088886], [-121.390761, 49.086991], [-121.392377, 49.081874], [-121.393008, 49.079472], [-121.392309, 49.077135], [-121.390114, 49.07568], [-121.387053, 49.075546], [-121.384802, 49.076732], [-121.383636, 49.077597], [-121.381365, 49.078499], [-121.376171, 49.079189], [-121.370908, 49.079594], [-121.363681, 49.079621], [-121.361488, 49.080173], [-121.35814, 49.081603], [-121.355767, 49.083344], [-121.353568, 49.086545], [-121.352734, 49.088365], [-121.350753, 49.09464], [-121.349406, 49.09624], [-121.345611, 49.097604], [-121.343042, 49.096173], [-121.341174, 49.094821], [-121.338092, 49.093817], [-121.335207, 49.093591], [-121.332145, 49.093649], [-121.331137, 49.092714], [-121.331485, 49.08987], [-121.3328, 49.087844], [-121.333436, 49.085767], [-121.331456, 49.08239], [-121.328215, 49.079881], [-121.324037, 49.076786], [-121.322395, 49.074565], [-121.32038, 49.072499], [-121.31934, 49.070161], [-121.319001, 49.068161], [-121.317401, 49.067095], [-121.316217, 49.066768], [-121.314616, 49.064923], [-121.313598, 49.063196], [-121.308249, 49.060501], [-121.306236, 49.060056], [-121.30432, 49.058379], [-121.30034, 49.053013], [-121.299806, 49.051403], [-121.299801, 49.048482], [-121.299672, 49.047858], [-121.30087, 49.046392], [-121.303012, 49.044678], [-121.308083, 49.041444], [-121.30928, 49.039652], [-121.306696, 49.038584], [-121.303618, 49.03881], [-121.30135, 49.038156], [-121.29921, 49.036959], [-121.29633, 49.036084], [-121.289999, 49.032608], [-121.28779, 49.032162], [-121.285158, 49.031288], [-121.285629, 49.030613], [-121.291309, 49.029479], [-121.296614, 49.029085], [-121.296173, 49.024035], [-121.298006, 49.019907], [-121.297314, 49.018154], [-121.290907, 49.015742], [-121.287931, 49.01519], [-121.283365, 49.015787], [-121.278413, 49.016653], [-121.274508, 49.017083], [-121.271434, 49.015494], [-121.268891, 49.013633], [-121.268693, 49.011816], [-121.269505, 49.006598], [-121.271115, 49.003666], [-121.272117, 49.002394], [-121.272923, 49.000022], [-121.25, 48.999995], [-121.0, 49.0], [-120.848408, 49.000077], [-120.848153, 49.008849], [-120.846565, 49.011118], [-120.839259, 49.008423], [-120.832322, 49.016461], [-120.825699, 49.025463], [-120.827535, 49.029761], [-120.83028, 49.034152], [-120.832391, 49.042253], [-120.83688, 49.044722], [-120.852215, 49.044401], [-120.868668, 49.05271], [-120.873177, 49.05813], [-120.880774, 49.063652], [-120.88372, 49.066455], [-120.887257, 49.069493], [-120.890286, 49.073922], [-120.892608, 49.076136], [-120.892646, 49.076672], [-120.893826, 49.0777], [-120.895078, 49.07816], [-120.897099, 49.078036], [-120.898713, 49.077509], [-120.902677, 49.077284], [-120.912156, 49.078512], [-120.91627, 49.080157], [-120.921761, 49.084053], [-120.926633, 49.086], [-120.934986, 49.087027], [-120.942833, 49.088807], [-120.945512, 49.089086], [-120.94883, 49.089152], [-120.95218, 49.091744], [-120.954139, 49.092729], [-120.963112, 49.094835], [-120.965637, 49.099287], [-120.965511, 49.103778], [-120.952255, 49.103672], [-120.944216, 49.104186], [-120.941831, 49.104831], [-120.939402, 49.106135], [-120.936966, 49.108028], [-120.935193, 49.108653], [-120.929826, 49.108547], [-120.925993, 49.111149], [-120.922917, 49.112307], [-120.918641, 49.114377], [-120.91432, 49.117105], [-120.909816, 49.116956], [-120.905978, 49.115064], [-120.904186, 49.114107], [-120.897065, 49.112736], [-120.89383, 49.113621], [-120.891695, 49.114361], [-120.889146, 49.116346], [-120.886358, 49.117411], [-120.878167, 49.11832], [-120.874393, 49.120344], [-120.867961, 49.122771], [-120.863474, 49.126422], [-120.859643, 49.130773], [-120.857984, 49.133953], [-120.858503, 49.135491], [-120.86078, 49.137464], [-120.864247, 49.139113], [-120.864397, 49.141475], [-120.863975, 49.143552], [-120.866088, 49.145724], [-120.869938, 49.148485], [-120.875953, 49.153666], [-120.878429, 49.157104], [-120.881605, 49.159199], [-120.889025, 49.162958], [-120.891459, 49.164057], [-120.893204, 49.165554], [-120.895725, 49.168449], [-120.896363, 49.169302], [-120.899579, 49.171208], [-120.903446, 49.172905], [-120.905433, 49.173706], [-120.905172, 49.174556], [-120.903184, 49.175138], [-120.882535, 49.17609], [-120.881115, 49.17743], [-120.882394, 49.178783], [-120.887579, 49.181645], [-120.890967, 49.184261], [-120.892774, 49.186679], [-120.894041, 49.189214], [-120.894405, 49.191861], [-120.893841, 49.196867], [-120.891278, 49.206174], [-120.89252, 49.208895], [-120.893985, 49.210678], [-120.894813, 49.212492], [-120.895266, 49.214514], [-120.887767, 49.210519], [-120.878153, 49.205818], [-120.8736, 49.204512], [-120.868875, 49.204387], [-120.864453, 49.20555], [-120.859587, 49.208242], [-120.857734, 49.211958], [-120.850599, 49.217632], [-120.847385, 49.219705], [-120.846886, 49.221339], [-120.84795, 49.225244], [-120.847169, 49.228095], [-120.84842, 49.234021], [-120.845782, 49.240762], [-120.843693, 49.242039], [-120.838201, 49.24337], [-120.83292, 49.244807], [-120.823386, 49.246222], [-120.820766, 49.247322], [-120.818002, 49.251242], [-120.816789, 49.258304], [-120.818846, 49.263365], [-120.820627, 49.26912], [-120.819153, 49.271933], [-120.8151, 49.276612], [-120.812719, 49.279629], [-120.812067, 49.284431], [-120.814566, 49.287116], [-120.816349, 49.289205], [-120.819455, 49.293567], [-120.823972, 49.29497], [-120.828045, 49.295045], [-120.839064, 49.295063], [-120.849345, 49.294831], [-120.855464, 49.295227], [-120.858704, 49.296018], [-120.861769, 49.298168], [-120.86795, 49.302711], [-120.869861, 49.303318], [-120.886521, 49.304349], [-120.90579, 49.305674], [-120.912152, 49.303565], [-120.914186, 49.302745], [-120.917296, 49.300892], [-120.918268, 49.299718], [-120.923101, 49.291703], [-120.927527, 49.286493], [-120.929422, 49.28373], [-120.931715, 49.281961], [-120.936121, 49.275976], [-120.944354, 49.270642], [-120.956014, 49.275339], [-120.967162, 49.274109], [-120.981214, 49.271503], [-120.992286, 49.272902], [-120.996708, 49.275251], [-120.996789, 49.278042], [-120.997054, 49.278073], [-120.998387, 49.277908], [-121.001418, 49.27824], [-121.000164, 49.310046], [-120.997418, 49.313673], [-121.004144, 49.312733], [-121.007452, 49.31004], [-121.008741, 49.308211], [-121.011437, 49.306476], [-121.013047, 49.306179], [-121.016135, 49.305407], [-121.018151, 49.304761], [-121.019358, 49.304592], [-121.021038, 49.303945], [-121.021979, 49.303644], [-121.02432, 49.304093], [-121.026122, 49.304935], [-121.029724, 49.307057], [-121.033314, 49.310933], [-121.034444, 49.31221], [-121.034829, 49.314713], [-121.03529, 49.315987], [-121.035821, 49.316691], [-121.039359, 49.318505], [-121.041495, 49.319787], [-121.042965, 49.320407], [-121.042353, 49.32181], [-121.04087, 49.323386], [-121.043714, 49.328926], [-121.045244, 49.330732], [-121.047315, 49.331706], [-121.049655, 49.332593], [-121.052537, 49.332651], [-121.055015, 49.333057], [-121.058098, 49.333159], [-121.062855, 49.333488], [-121.066754, 49.332019], [-121.06837, 49.331065], [-121.071262, 49.329809], [-121.072206, 49.32907], [-121.074824, 49.328557], [-121.076433, 49.328477], [-121.078376, 49.328617], [-121.08065, 49.329416], [-121.082452, 49.330695], [-121.084451, 49.332677], [-121.085448, 49.334217], [-121.086982, 49.335582], [-121.08845, 49.336641], [-121.090785, 49.338624], [-121.092725, 49.339421], [-121.093588, 49.341004], [-121.09405, 49.342278], [-121.095386, 49.343161], [-121.098135, 49.345614], [-121.101775, 49.348593], [-121.096506, 49.34923], [-121.087946, 49.348013], [-121.076923, 49.349892], [-121.075253, 49.353127], [-121.098045, 49.353906], [-121.097991, 49.35642], [-121.098367, 49.3924], [-121.099269, 49.441084], [-121.094148, 49.440436], [-121.090617, 49.442336], [-121.0901, 49.44512], [-121.089572, 49.446381], [-121.089456, 49.448818], [-121.088936, 49.451167], [-121.087711, 49.452873], [-121.085746, 49.454708], [-121.084054, 49.456018], [-121.081217, 49.457587], [-121.080134, 49.458373], [-121.081705, 49.463109], [-121.081418, 49.465168], [-121.079936, 49.465427], [-121.076033, 49.465373], [-121.0724, 49.465232], [-121.068967, 49.465354], [-121.065734, 49.465739], [-121.062159, 49.466781], [-121.053778, 49.471225], [-121.050931, 49.47367], [-121.051122, 49.47481], [-121.056546, 49.476449], [-121.059344, 49.479043], [-121.062136, 49.482294], [-121.063972, 49.487383], [-121.064958, 49.489796], [-121.067973, 49.490682], [-121.069434, 49.492614], [-121.071171, 49.493802], [-121.073441, 49.495474], [-121.074084, 49.498763], [-121.074125, 49.501699], [-121.073237, 49.503186], [-121.075706, 49.505341], [-121.076156, 49.507709], [-121.08002, 49.511708], [-121.081877, 49.514164], [-121.08206, 49.515959], [-121.080556, 49.518188], [-121.079191, 49.519935], [-121.076004, 49.521939], [-121.072619, 49.52346], [-121.069974, 49.525072], [-121.064367, 49.526104], [-121.060056, 49.525081], [-121.057893, 49.525555], [-121.054385, 49.525587], [-121.052079, 49.52698], [-121.050784, 49.528377], [-121.048816, 49.529552], [-121.047713, 49.531869], [-121.049832, 49.534896], [-121.050527, 49.538926], [-121.049481, 49.542206], [-121.04939, 49.544307], [-121.048296, 49.545749], [-121.047342, 49.546709], [-121.037874, 49.548864], [-121.035896, 49.550915], [-121.037484, 49.553241], [-121.039017, 49.554603], [-121.038864, 49.556178], [-121.036984, 49.56147], [-121.035232, 49.567375], [-121.036371, 49.567772], [-121.040266, 49.568046], [-121.040932, 49.568705], [-121.040637, 49.570981], [-121.040149, 49.572337], [-121.040938, 49.574047], [-121.042137, 49.575189], [-121.042997, 49.576549], [-121.042714, 49.57773], [-121.041493, 49.578339], [-121.038428, 49.580956], [-121.036586, 49.582745], [-121.03637, 49.584014], [-121.036694, 49.58511], [-121.037886, 49.586909], [-121.034231, 49.58764], [-121.029288, 49.588892], [-121.026304, 49.590063], [-121.023452, 49.591629], [-121.018641, 49.593056], [-121.013428, 49.594175], [-121.010721, 49.594602], [-121.006397, 49.594454], [-121.004904, 49.595148], [-121.002666, 49.59684], [-121.00206, 49.597042], [-120.999986, 49.597233], [-120.997428, 49.597606], [-120.993604, 49.597677], [-120.991814, 49.597328], [-120.990111, 49.597719], [-120.990729, 49.598675], [-120.992203, 49.600125], [-120.993391, 49.601821], [-120.993676, 49.602807], [-120.991732, 49.605352], [-120.989647, 49.606943], [-120.986853, 49.608376], [-120.985147, 49.609537], [-120.983581, 49.611961], [-120.976697, 49.610934], [-120.975632, 49.609505], [-120.972816, 49.608099], [-120.970359, 49.608269], [-120.968322, 49.609306], [-120.967088, 49.610777], [-120.962679, 49.613802], [-120.962866, 49.617741], [-120.962627, 49.619432], [-120.963197, 49.620634], [-120.964005, 49.621376], [-120.966574, 49.623476], [-120.967904, 49.625358], [-120.970642, 49.62844], [-120.967898, 49.635697], [-120.962749, 49.640499], [-120.959507, 49.642206], [-120.959605, 49.644651], [-120.96032, 49.646487], [-120.962663, 49.64794], [-120.96382, 49.649222], [-120.963943, 49.650833], [-120.962149, 49.653325], [-120.960339, 49.656373], [-120.959314, 49.659036], [-120.960284, 49.660928], [-120.96127, 49.662265], [-120.959502, 49.666813], [-120.957715, 49.669028], [-120.957078, 49.670192], [-120.957974, 49.671695], [-120.958689, 49.673532], [-120.962413, 49.673457], [-120.985078, 49.673266], [-120.985316, 49.658461], [-121.007152, 49.658513], [-121.007163, 49.656807], [-121.00669, 49.656357], [-121.007166, 49.656281], [-121.007556, 49.644426], [-121.018695, 49.644147], [-121.018828, 49.636994], [-121.051882, 49.636899], [-121.052354, 49.630878], [-121.055373, 49.631184], [-121.059132, 49.632057], [-121.060169, 49.631522], [-121.061798, 49.628512], [-121.063295, 49.626957], [-121.06545, 49.626129], [-121.069006, 49.626059], [-121.071946, 49.62518], [-121.076247, 49.625004], [-121.08139, 49.62553], [-121.086261, 49.626512], [-121.08791, 49.627189], [-121.089811, 49.627248], [-121.092213, 49.626475], [-121.094368, 49.625512], [-121.099536, 49.625391], [-121.10107, 49.624696], [-121.103808, 49.622739], [-121.105194, 49.622527], [-121.106812, 49.621267], [-121.10723, 49.619789], [-121.111423, 49.615818], [-121.120044, 49.610351], [-121.121783, 49.60979], [-121.125743, 49.61093], [-121.125609, 49.612113], [-121.125769, 49.612115], [-121.125316, 49.613561], [-121.125243, 49.615984], [-121.126725, 49.618978], [-121.128089, 49.620253], [-121.135152, 49.622521], [-121.136738, 49.622267], [-121.141646, 49.619975], [-121.147881, 49.619249], [-121.149652, 49.61872], [-121.15203, 49.618296], [-121.155837, 49.617152], [-121.157378, 49.617877], [-121.160666, 49.619946], [-121.16169, 49.620859], [-121.163098, 49.623578], [-121.162947, 49.62607], [-121.168796, 49.634365], [-121.169318, 49.635312], [-121.168938, 49.636634], [-121.165712, 49.641424], [-121.165863, 49.642576], [-121.166567, 49.643849], [-121.16762, 49.644624], [-121.170794, 49.64836], [-121.169988, 49.64982], [-121.166322, 49.650999], [-121.161826, 49.653517], [-121.159926, 49.654063], [-121.156049, 49.65488], [-121.148503, 49.661122], [-121.146747, 49.661712], [-121.144268, 49.661817], [-121.142778, 49.662553], [-121.141041, 49.664354], [-121.139712, 49.664781], [-121.137854, 49.664863], [-121.13623, 49.665856], [-121.133332, 49.66683], [-121.132293, 49.667463], [-121.131566, 49.668854], [-121.131165, 49.670933], [-121.129928, 49.673045], [-121.125907, 49.675236], [-121.12234, 49.676895], [-121.120694, 49.67708], [-121.118752, 49.677745], [-121.119144, 49.678348], [-121.122553, 49.678666], [-121.125688, 49.680444], [-121.128183, 49.682856], [-121.129243, 49.684423], [-121.131499, 49.686956], [-121.133503, 49.687854], [-121.134899, 49.68882], [-121.134382, 49.693615], [-121.135725, 49.694512], [-121.137441, 49.695204], [-121.138832, 49.696771], [-121.140682, 49.697033], [-121.142157, 49.698102], [-121.144061, 49.700154], [-121.186408, 49.700495], [-121.294288, 49.701525], [-121.347789, 49.702342], [-121.378052, 49.70266], [-121.400065, 49.7027], [-121.404215, 49.702799], [-121.409202, 49.703147]], [[-121.417524, 49.666108], [-121.41662, 49.666618], [-121.415666, 49.666982], [-121.415345, 49.667068], [-121.414428, 49.667163], [-121.413861, 49.667129], [-121.413495, 49.666844], [-121.412911, 49.666072], [-121.412506, 49.665716], [-121.41262, 49.665609], [-121.412528, 49.665483], [-121.411386, 49.665179], [-121.410583, 49.664781], [-121.410143, 49.664254], [-121.409522, 49.663695], [-121.409392, 49.663504], [-121.409256, 49.662955], [-121.40867, 49.66265], [-121.408202, 49.662526], [-121.407606, 49.662167], [-121.407283, 49.661821], [-121.406912, 49.660925], [-121.405812, 49.659363], [-121.405183, 49.658671], [-121.404327, 49.657309], [-121.403889, 49.656755], [-121.403081, 49.655124], [-121.405775, 49.65526], [-121.405745, 49.654475], [-121.406095, 49.653131], [-121.40701, 49.651511], [-121.409544, 49.651493], [-121.409543, 49.655266], [-121.423237, 49.65544], [-121.423052, 49.661201], [-121.422223, 49.661818], [-121.421857, 49.662362], [-121.421784, 49.662919], [-121.421852, 49.663442], [-121.421744, 49.664187], [-121.421628, 49.664348], [-121.421205, 49.66453], [-121.420347, 49.664518], [-121.419856, 49.664709], [-121.419381, 49.665233], [-121.418799, 49.665658], [-121.417524, 49.666108]], [[-121.39543, 49.626605], [-121.39544, 49.629907], [-121.398623, 49.62993], [-121.398374, 49.63597], [-121.397814, 49.635766], [-121.397602, 49.635547], [-121.39703, 49.635215], [-121.394923, 49.634413], [-121.394342, 49.634009], [-121.393387, 49.633511], [-121.392185, 49.632593], [-121.391436, 49.631792], [-121.391233, 49.631276], [-121.390953, 49.630886], [-121.390721, 49.63037], [-121.390424, 49.628936], [-121.390574, 49.628569], [-121.391381, 49.627599], [-121.391691, 49.627019], [-121.392483, 49.626411], [-121.39543, 49.626605]], [[-121.425521, 49.560793], [-121.426784, 49.560649], [-121.426194, 49.562836], [-121.425689, 49.563133], [-121.424963, 49.56327], [-121.424971, 49.563147], [-121.424119, 49.563132], [-121.423275, 49.563367], [-121.422718, 49.563415], [-121.422116, 49.563382], [-121.421288, 49.563201], [-121.42024, 49.562808], [-121.419989, 49.56263], [-121.419792, 49.562199], [-121.419835, 49.562127], [-121.42047, 49.561777], [-121.421224, 49.561499], [-121.422046, 49.56134], [-121.423542, 49.561261], [-121.423872, 49.561293], [-121.425521, 49.560793]], [[-121.419934, 49.516033], [-121.425128, 49.516494], [-121.425499, 49.521747], [-121.425437, 49.529793], [-121.423391, 49.529869], [-121.421761, 49.529589], [-121.420786, 49.528328], [-121.420126, 49.527365], [-121.41971, 49.526559], [-121.419328, 49.525151], [-121.418931, 49.524173], [-121.418606, 49.52398], [-121.418542, 49.523763], [-121.418158, 49.523263], [-121.418196, 49.522984], [-121.418415, 49.522618], [-121.418394, 49.522403], [-121.418123, 49.522228], [-121.417746, 49.521486], [-121.417398, 49.521121], [-121.416964, 49.520495], [-121.416692, 49.520293], [-121.416176, 49.519647], [-121.415659, 49.519334], [-121.414932, 49.518353], [-121.414791, 49.518027], [-121.414749, 49.517594], [-121.414642, 49.517512], [-121.414578, 49.517305], [-121.414739, 49.517027], [-121.415217, 49.516782], [-121.415276, 49.516684], [-121.415262, 49.516252], [-121.414928, 49.51538], [-121.419934, 49.516033]], [[-121.430162, 49.468283], [-121.43203, 49.468201], [-121.431536, 49.473653], [-121.427288, 49.473532], [-121.418824, 49.473403], [-121.419481, 49.472055], [-121.419489, 49.470314], [-121.420014, 49.468488], [-121.430162, 49.468283]], [[-121.438355, 49.457617], [-121.431324, 49.457495], [-121.427426, 49.457554], [-121.427262, 49.443013], [-121.427889, 49.4425], [-121.429503, 49.44084], [-121.430186, 49.439752], [-121.430714, 49.439174], [-121.431167, 49.438802], [-121.432476, 49.437974], [-121.433467, 49.437197], [-121.433907, 49.436771], [-121.434438, 49.436111], [-121.434999, 49.434968], [-121.436236, 49.432925], [-121.439023, 49.432339], [-121.441808, 49.432358], [-121.441651, 49.436306], [-121.441797, 49.44089], [-121.440721, 49.455583], [-121.438267, 49.455465], [-121.438355, 49.457617]], [[-121.438222, 49.430602], [-121.436497, 49.429424], [-121.436239, 49.429436], [-121.435306, 49.429861], [-121.434149, 49.429861], [-121.430728, 49.424657], [-121.432838, 49.424614], [-121.436824, 49.424717], [-121.436839, 49.420452], [-121.437723, 49.418693], [-121.436848, 49.418922], [-121.426781, 49.417565], [-121.426147, 49.417554], [-121.425981, 49.417063], [-121.421998, 49.412968], [-121.419336, 49.409342], [-121.418977, 49.407825], [-121.418768, 49.406347], [-121.419876, 49.404988], [-121.425813, 49.402938], [-121.429522, 49.400421], [-121.41917, 49.400377], [-121.419152, 49.399926], [-121.41236, 49.399513], [-121.412861, 49.397591], [-121.400054, 49.396822], [-121.390736, 49.396373], [-121.391052, 49.390369], [-121.391441, 49.389292], [-121.386226, 49.38956], [-121.362975, 49.389695], [-121.355488, 49.389209], [-121.351886, 49.381188], [-121.353335, 49.381275], [-121.354764, 49.381051], [-121.355297, 49.381039], [-121.356027, 49.381318], [-121.356801, 49.381409], [-121.357109, 49.381396], [-121.358487, 49.381197], [-121.358591, 49.381093], [-121.357889, 49.380809], [-121.360187, 49.38052], [-121.362332, 49.38003], [-121.369143, 49.377338], [-121.370253, 49.376661], [-121.370915, 49.375531], [-121.371089, 49.374889], [-121.379671, 49.375062], [-121.379806, 49.369297], [-121.380921, 49.369251], [-121.383963, 49.370006], [-121.384428, 49.369786], [-121.387865, 49.36977], [-121.389025, 49.369257], [-121.390047, 49.369316], [-121.392393, 49.369757], [-121.393253, 49.370519], [-121.393996, 49.370741], [-121.395436, 49.370669], [-121.39611, 49.371029], [-121.396969, 49.370949], [-121.399525, 49.371744], [-121.401538, 49.37303], [-121.40162, 49.372248], [-121.399087, 49.369826], [-121.401878, 49.368598], [-121.402002, 49.367818], [-121.408447, 49.367789], [-121.418058, 49.367566], [-121.436719, 49.366935], [-121.447426, 49.366729], [-121.447277, 49.366017], [-121.446592, 49.358233], [-121.45684, 49.358138], [-121.45639, 49.353784], [-121.465559, 49.353468], [-121.465486, 49.350117], [-121.470261, 49.350124], [-121.470502, 49.349527], [-121.47115, 49.348635], [-121.471162, 49.348436], [-121.473196, 49.34832], [-121.473383, 49.350416], [-121.473825, 49.350398], [-121.474987, 49.35049], [-121.474941, 49.350997], [-121.475464, 49.351592], [-121.476192, 49.351915], [-121.476295, 49.353631], [-121.483872, 49.354086], [-121.483999, 49.359544], [-121.483585, 49.361651], [-121.501014, 49.361448], [-121.501023, 49.361354], [-121.502515, 49.361427], [-121.50296, 49.353573], [-121.52356, 49.353233], [-121.574788, 49.352747], [-121.574387, 49.353788], [-121.574813, 49.354756], [-121.574833, 49.354981], [-121.574728, 49.35534], [-121.574265, 49.356062], [-121.573262, 49.356985], [-121.5732, 49.357183], [-121.574396, 49.358231], [-121.575674, 49.359618], [-121.573467, 49.360759], [-121.567537, 49.362679], [-121.564157, 49.364391], [-121.561921, 49.364787], [-121.552823, 49.365287], [-121.547552, 49.365952], [-121.545829, 49.36605], [-121.536624, 49.36598], [-121.52864, 49.367118], [-121.518254, 49.371233], [-121.513223, 49.372594], [-121.508413, 49.373685], [-121.503179, 49.374176], [-121.503085, 49.375392], [-121.503352, 49.37604], [-121.503335, 49.382204], [-121.481015, 49.382484], [-121.480843, 49.388099], [-121.469827, 49.388396], [-121.469888, 49.403074], [-121.458896, 49.403407], [-121.458743, 49.414158], [-121.448859, 49.414629], [-121.447699, 49.425336], [-121.447007, 49.429856], [-121.438222, 49.430602]], [[-121.652471, 49.2984], [-121.653533, 49.297569], [-121.654141, 49.296772], [-121.654287, 49.297191], [-121.654027, 49.297615], [-121.652228, 49.298808], [-121.652225, 49.29893], [-121.651364, 49.299337], [-121.650221, 49.299708], [-121.649316, 49.299944], [-121.648176, 49.30009], [-121.652471, 49.2984]], [[-121.647814, 49.300332], [-121.647003, 49.300651], [-121.645297, 49.301574], [-121.645183, 49.301515], [-121.644756, 49.301964], [-121.644339, 49.302057], [-121.644127, 49.301935], [-121.644819, 49.301488], [-121.647738, 49.300158], [-121.647814, 49.300332]], [[-121.602826, 49.34523], [-121.597253, 49.341863], [-121.592335, 49.338748], [-121.593195, 49.338208], [-121.5922, 49.337106], [-121.596167, 49.332801], [-121.618321, 49.332808], [-121.617785, 49.333842], [-121.617296, 49.334601], [-121.616865, 49.335756], [-121.616098, 49.337077], [-121.615406, 49.338176], [-121.614735, 49.339004], [-121.613943, 49.340236], [-121.612585, 49.341578], [-121.611682, 49.342368], [-121.609936, 49.343733], [-121.609212, 49.344461], [-121.605549, 49.347045], [-121.602826, 49.34523]], [[-121.532966, 49.368104], [-121.534002, 49.367973], [-121.535135, 49.367897], [-121.536381, 49.367661], [-121.538729, 49.36742], [-121.546945, 49.367236], [-121.550201, 49.366998], [-121.551255, 49.366832], [-121.553209, 49.366875], [-121.556558, 49.366799], [-121.557828, 49.36668], [-121.560957, 49.366188], [-121.561585, 49.366349], [-121.562952, 49.366212], [-121.564144, 49.365967], [-121.565457, 49.365821], [-121.566068, 49.36564], [-121.566239, 49.365472], [-121.566334, 49.365076], [-121.566577, 49.364747], [-121.567252, 49.364251], [-121.569165, 49.363357], [-121.569943, 49.363098], [-121.571413, 49.362727], [-121.571626, 49.365457], [-121.57198, 49.372765], [-121.566476, 49.372701], [-121.566376, 49.376355], [-121.560672, 49.376557], [-121.560572, 49.380211], [-121.556436, 49.380431], [-121.525427, 49.380346], [-121.50568, 49.378419], [-121.505507, 49.375866], [-121.504988, 49.375568], [-121.506408, 49.375408], [-121.50892, 49.375262], [-121.509514, 49.375135], [-121.511574, 49.374513], [-121.513405, 49.37406], [-121.518273, 49.373007], [-121.520762, 49.372238], [-121.522574, 49.371506], [-121.526724, 49.370012], [-121.528099, 49.369633], [-121.530273, 49.368824], [-121.532966, 49.368104]], [[-121.582958, 49.359612], [-121.58467, 49.35915], [-121.585791, 49.358921], [-121.588761, 49.358668], [-121.58975, 49.358725], [-121.590653, 49.35897], [-121.59204, 49.359131], [-121.592613, 49.359274], [-121.593499, 49.359608], [-121.595034, 49.359861], [-121.595236, 49.359999], [-121.596015, 49.35972], [-121.59683, 49.359327], [-121.597042, 49.361896], [-121.593843, 49.361994], [-121.594138, 49.365854], [-121.591538, 49.365802], [-121.591538, 49.367539], [-121.582958, 49.359612]]], [[[-121.392414, 49.385778], [-121.393858, 49.385834], [-121.394042, 49.385253], [-121.39479, 49.38408], [-121.395826, 49.383613], [-121.39689, 49.383513], [-121.396631, 49.382086], [-121.394819, 49.381566], [-121.391729, 49.381523], [-121.392491, 49.383704], [-121.392414, 49.385778]]], [[[-121.446656, 49.374162], [-121.446389, 49.374347], [-121.446126, 49.37483], [-121.44609, 49.375082], [-121.44636, 49.375733], [-121.446756, 49.376279], [-121.448002, 49.377365], [-121.448506, 49.377516], [-121.448673, 49.377464], [-121.44886, 49.377251], [-121.449172, 49.376076], [-121.449317, 49.375827], [-121.450418, 49.374555], [-121.450465, 49.374394], [-121.450374, 49.374222], [-121.450022, 49.37401], [-121.448575, 49.374044], [-121.448054, 49.373957], [-121.447504, 49.373967], [-121.446656, 49.374162]]], [[[-121.453508, 49.38668], [-121.454509, 49.386676], [-121.454498, 49.386009], [-121.453666, 49.386114], [-121.453508, 49.38668]]], [[[-121.441849, 49.397262], [-121.440897, 49.398012], [-121.443776, 49.397989], [-121.443866, 49.39701], [-121.442806, 49.397041], [-121.442198, 49.397132], [-121.441849, 49.397262]]]]}, "properties": {"name": "Fraser Valley B", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley B", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909016", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.926395, 49.225591], [-121.934453, 49.224624], [-121.935399, 49.222906], [-121.935153, 49.220301], [-121.935662, 49.218775], [-121.937077, 49.21765], [-121.938947, 49.216991], [-121.940199, 49.216653], [-121.94281, 49.216175], [-121.944909, 49.215588], [-121.946769, 49.215822], [-121.948406, 49.215677], [-121.952203, 49.214441], [-121.953064, 49.214569], [-121.956737, 49.213236], [-121.960406, 49.212141], [-121.964746, 49.209611], [-121.967362, 49.208161], [-121.971706, 49.207195], [-121.975705, 49.205654], [-121.980777, 49.201395], [-121.980725, 49.199132], [-121.981577, 49.196582], [-121.986567, 49.193826], [-121.98746, 49.192991], [-121.988375, 49.19158], [-121.995552, 49.185865], [-121.998835, 49.184498], [-122.000168, 49.184461], [-122.004161, 49.184956], [-122.00852, 49.184861], [-122.021691, 49.181426], [-122.026068, 49.177834], [-122.03205, 49.171535], [-122.034698, 49.169626], [-122.036705, 49.167785], [-122.039591, 49.164701], [-122.040733, 49.163675], [-122.042026, 49.162942], [-122.045522, 49.160587], [-122.050088, 49.156192], [-122.054722, 49.153102], [-122.058893, 49.15181], [-122.060529, 49.151804], [-122.064585, 49.149196], [-122.067384, 49.149564], [-122.074052, 49.149483], [-122.084438, 49.149], [-122.085008, 49.149146], [-122.097269, 49.150178], [-122.112941, 49.148608], [-122.124795, 49.145173], [-122.123909, 49.141519], [-122.122103, 49.141193], [-122.119489, 49.140991], [-122.113536, 49.140054], [-122.108609, 49.139574], [-122.103692, 49.139449], [-122.099327, 49.139562], [-122.097747, 49.139242], [-122.096577, 49.138756], [-122.095613, 49.1379], [-122.095001, 49.136754], [-122.095283, 49.133451], [-122.096703, 49.130448], [-122.097974, 49.128237], [-122.098975, 49.126995], [-122.098342, 49.126408], [-122.097697, 49.125355], [-122.097139, 49.124143], [-122.080126, 49.106026], [-122.080379, 49.101893], [-122.080419, 49.089335], [-122.081098, 49.089332], [-122.081092, 49.089186], [-122.080475, 49.088181], [-122.080352, 49.060359], [-122.074974, 49.060364], [-122.075702, 49.059164], [-122.075962, 49.058858], [-122.07263, 49.057943], [-122.07291, 49.056156], [-122.072859, 49.052883], [-122.072562, 49.045519], [-122.056727, 49.045539], [-122.028654, 49.045664], [-122.028609, 49.047222], [-122.029017, 49.065443], [-122.029031, 49.081982], [-122.02889, 49.084303], [-122.028961, 49.089318], [-122.018006, 49.08932], [-122.017897, 49.089235], [-122.020285, 49.088538], [-122.023482, 49.087177], [-122.02349, 49.085794], [-122.01243, 49.085786], [-122.012356, 49.087481], [-122.007002, 49.08751], [-122.007404, 49.079905], [-121.997786, 49.079886], [-121.997724, 49.079081], [-121.996395, 49.079075], [-121.996295, 49.078222], [-121.989162, 49.078307], [-121.985091, 49.078292], [-121.985019, 49.082036], [-121.981367, 49.082116], [-121.981153, 49.085701], [-121.979449, 49.085681], [-121.979458, 49.089159], [-121.975842, 49.089215], [-121.97243, 49.089185], [-121.973173, 49.093046], [-121.971794, 49.093049], [-121.968229, 49.092768], [-121.961941, 49.092828], [-121.95989, 49.092667], [-121.955131, 49.092779], [-121.952949, 49.092649], [-121.951344, 49.092981], [-121.948564, 49.092868], [-121.946245, 49.093048], [-121.941268, 49.093054], [-121.94085, 49.089845], [-121.939011, 49.089813], [-121.930308, 49.090368], [-121.930067, 49.089243], [-121.924926, 49.089663], [-121.914981, 49.08849], [-121.90776, 49.088531], [-121.908031, 49.091936], [-121.904715, 49.091904], [-121.903839, 49.091141], [-121.901893, 49.090872], [-121.901628, 49.090156], [-121.899797, 49.08985], [-121.900948, 49.088616], [-121.900507, 49.087909], [-121.898525, 49.088117], [-121.89653, 49.08753], [-121.894953, 49.087903], [-121.886891, 49.08772], [-121.87946, 49.088312], [-121.876988, 49.088818], [-121.867743, 49.088148], [-121.863664, 49.088494], [-121.863715, 49.087599], [-121.853037, 49.08843], [-121.842722, 49.0884], [-121.842088, 49.088138], [-121.836865, 49.088385], [-121.836996, 49.084741], [-121.836968, 49.080767], [-121.831294, 49.080742], [-121.830974, 49.084985], [-121.817756, 49.085101], [-121.817933, 49.085663], [-121.818015, 49.091786], [-121.807974, 49.091499], [-121.801318, 49.091457], [-121.791172, 49.091612], [-121.790799, 49.096524], [-121.790309, 49.110434], [-121.790053, 49.112491], [-121.789163, 49.115966], [-121.787832, 49.122224], [-121.790383, 49.151373], [-121.785272, 49.151296], [-121.785472, 49.157545], [-121.79037, 49.157388], [-121.790394, 49.161202], [-121.786181, 49.161439], [-121.785769, 49.167885], [-121.785883, 49.171079], [-121.785789, 49.17506], [-121.781303, 49.174988], [-121.780634, 49.178717], [-121.77703, 49.178613], [-121.776699, 49.180094], [-121.781836, 49.180283], [-121.781437, 49.183807], [-121.78239, 49.187603], [-121.787916, 49.187463], [-121.788144, 49.190204], [-121.788135, 49.194523], [-121.788071, 49.194698], [-121.788376, 49.199382], [-121.788352, 49.200308], [-121.788995, 49.201837], [-121.789463, 49.201619], [-121.790492, 49.201612], [-121.791038, 49.201789], [-121.791471, 49.202026], [-121.793631, 49.203443], [-121.794341, 49.204299], [-121.794358, 49.204807], [-121.794038, 49.205463], [-121.792749, 49.205726], [-121.791025, 49.205694], [-121.789235, 49.205938], [-121.788299, 49.206909], [-121.790905, 49.207796], [-121.793031, 49.209042], [-121.795413, 49.210785], [-121.801662, 49.214032], [-121.806777, 49.21402], [-121.814968, 49.215046], [-121.818334, 49.215057], [-121.821273, 49.215617], [-121.826111, 49.216927], [-121.827288, 49.217652], [-121.831057, 49.219747], [-121.833912, 49.222895], [-121.836439, 49.224981], [-121.837802, 49.226799], [-121.839972, 49.228498], [-121.843002, 49.228739], [-121.845108, 49.2287], [-121.849511, 49.226314], [-121.850557, 49.224832], [-121.854172, 49.222482], [-121.862655, 49.22085], [-121.875318, 49.220657], [-121.880642, 49.220834], [-121.884034, 49.221418], [-121.892036, 49.223348], [-121.894795, 49.223334], [-121.900155, 49.223494], [-121.906737, 49.223886], [-121.916607, 49.223872], [-121.926395, 49.225591]], [[-121.96075, 49.193009], [-121.96039, 49.193167], [-121.959976, 49.193254], [-121.958616, 49.193287], [-121.957754, 49.193162], [-121.955663, 49.192702], [-121.955038, 49.192381], [-121.9542, 49.19178], [-121.953514, 49.191091], [-121.953132, 49.190359], [-121.95312, 49.189621], [-121.953222, 49.189396], [-121.954009, 49.188494], [-121.954704, 49.188114], [-121.955436, 49.187851], [-121.956954, 49.187505], [-121.95819, 49.187364], [-121.960043, 49.186777], [-121.96032, 49.186582], [-121.960476, 49.18635], [-121.960504, 49.185702], [-121.960285, 49.185071], [-121.959909, 49.184618], [-121.959639, 49.184417], [-121.958986, 49.184105], [-121.955338, 49.18338], [-121.952827, 49.182554], [-121.953399, 49.182611], [-121.953786, 49.182449], [-121.954624, 49.182378], [-121.955636, 49.182397], [-121.957483, 49.182281], [-121.958861, 49.182302], [-121.959548, 49.182175], [-121.960174, 49.181912], [-121.961153, 49.181342], [-121.962081, 49.181065], [-121.962659, 49.180629], [-121.963206, 49.179904], [-121.963697, 49.179686], [-121.964075, 49.179747], [-121.963976, 49.178503], [-121.964503, 49.178383], [-121.966334, 49.178311], [-121.966996, 49.178224], [-121.968969, 49.178212], [-121.969434, 49.178108], [-121.969781, 49.176732], [-121.969474, 49.176533], [-121.969484, 49.17197], [-121.988415, 49.171663], [-121.98817, 49.170695], [-121.987973, 49.169251], [-121.987126, 49.167632], [-121.98007, 49.167662], [-121.978373, 49.167772], [-121.972255, 49.167922], [-121.974024, 49.16552], [-121.974111, 49.165307], [-121.974392, 49.164175], [-121.974424, 49.16343], [-121.974282, 49.16314], [-121.974278, 49.162671], [-121.97459, 49.162143], [-121.975054, 49.161553], [-121.975628, 49.160992], [-121.976816, 49.159995], [-121.977578, 49.159598], [-121.97917, 49.159007], [-121.975105, 49.158545], [-121.973325, 49.158203], [-121.972361, 49.158572], [-121.971603, 49.158661], [-121.970736, 49.158626], [-121.967856, 49.157302], [-121.967878, 49.157037], [-121.968209, 49.15695], [-121.968446, 49.156791], [-121.96933, 49.155189], [-121.969478, 49.154721], [-121.969303, 49.153838], [-121.969506, 49.153095], [-121.970179, 49.152529], [-121.971929, 49.152289], [-121.972179, 49.152342], [-121.972525, 49.152589], [-121.972657, 49.15278], [-121.972821, 49.153555], [-121.973003, 49.153944], [-121.972932, 49.15414], [-121.973104, 49.154377], [-121.973536, 49.154749], [-121.974473, 49.155172], [-121.974814, 49.155273], [-121.975115, 49.155294], [-121.9755, 49.155243], [-121.975595, 49.155288], [-121.976255, 49.155258], [-121.976935, 49.15487], [-121.977312, 49.154522], [-121.977574, 49.153977], [-121.97764, 49.153637], [-121.977533, 49.153121], [-121.976605, 49.152185], [-121.976368, 49.152061], [-121.975068, 49.151658], [-121.974402, 49.151315], [-121.974178, 49.15094], [-121.974185, 49.150698], [-121.974319, 49.150484], [-121.974735, 49.150193], [-121.975411, 49.150074], [-121.97595, 49.149782], [-121.976759, 49.149499], [-121.977482, 49.149401], [-121.978456, 49.149498], [-121.979603, 49.149882], [-121.980657, 49.149949], [-121.981316, 49.149814], [-121.981829, 49.14952], [-121.982102, 49.149207], [-121.982246, 49.148239], [-121.981957, 49.147771], [-121.981825, 49.14733], [-121.982182, 49.146946], [-121.982807, 49.146668], [-121.983515, 49.146517], [-121.983908, 49.146538], [-121.984753, 49.14683], [-121.985162, 49.147068], [-121.985991, 49.14731], [-121.98667, 49.148434], [-121.986746, 49.149012], [-121.986587, 49.149498], [-121.985385, 49.150617], [-121.984432, 49.151066], [-121.982293, 49.15187], [-121.982022, 49.152201], [-121.982059, 49.152621], [-121.981852, 49.153295], [-121.981902, 49.153665], [-121.982293, 49.154072], [-121.983331, 49.154406], [-121.984932, 49.154702], [-121.985686, 49.155095], [-121.985888, 49.155411], [-121.985988, 49.155915], [-121.985871, 49.156391], [-121.985088, 49.1576], [-121.984688, 49.15841], [-121.98471, 49.158896], [-121.985033, 49.159612], [-121.985354, 49.159692], [-121.987856, 49.159308], [-121.990531, 49.158042], [-121.991173, 49.157976], [-121.992417, 49.158012], [-121.99284, 49.158282], [-121.993117, 49.158589], [-121.993451, 49.159184], [-121.993468, 49.159419], [-121.993359, 49.159727], [-121.992473, 49.160914], [-121.992265, 49.161707], [-121.992376, 49.161937], [-121.995066, 49.161778], [-121.998471, 49.161881], [-121.998658, 49.158443], [-122.006943, 49.158084], [-122.00711, 49.165055], [-122.006266, 49.165147], [-122.006118, 49.166268], [-122.004925, 49.166938], [-122.006181, 49.167935], [-122.006726, 49.167774], [-122.009612, 49.170281], [-122.007963, 49.171835], [-122.007035, 49.174171], [-122.005631, 49.17568], [-122.002135, 49.178406], [-122.000289, 49.179375], [-121.99636, 49.179798], [-121.996087, 49.179748], [-121.993681, 49.179731], [-121.988477, 49.179121], [-121.985605, 49.178979], [-121.983805, 49.179067], [-121.981354, 49.179433], [-121.980909, 49.179288], [-121.980057, 49.179309], [-121.979323, 49.17947], [-121.977416, 49.180091], [-121.977088, 49.180001], [-121.976242, 49.17994], [-121.974639, 49.180041], [-121.974178, 49.180317], [-121.973001, 49.180648], [-121.973268, 49.187183], [-121.971993, 49.187972], [-121.970655, 49.188555], [-121.968778, 49.189079], [-121.968063, 49.189801], [-121.967589, 49.190165], [-121.966867, 49.190581], [-121.965883, 49.191023], [-121.965123, 49.191231], [-121.963874, 49.191904], [-121.961375, 49.192609], [-121.96075, 49.193009]], [[-121.991155, 49.151354], [-121.990753, 49.151255], [-121.985847, 49.150742], [-121.986666, 49.149706], [-121.987023, 49.149066], [-121.987072, 49.148168], [-121.987854, 49.148209], [-121.98792, 49.148049], [-121.988623, 49.148028], [-121.989166, 49.148071], [-121.989407, 49.14821], [-121.990181, 49.148209], [-121.990941, 49.148114], [-121.99195, 49.14786], [-121.993756, 49.14785], [-121.994246, 49.148], [-121.995179, 49.148719], [-121.99558, 49.148745], [-121.996267, 49.14919], [-121.995813, 49.149417], [-121.995696, 49.149549], [-121.994898, 49.151388], [-121.994758, 49.151872], [-121.991155, 49.151354]], [[-121.83816, 49.183308], [-121.82708, 49.183189], [-121.827179, 49.175972], [-121.830421, 49.176032], [-121.830229, 49.170583], [-121.831492, 49.170991], [-121.83362, 49.172082], [-121.833892, 49.172166], [-121.834568, 49.172642], [-121.834983, 49.17304], [-121.835418, 49.173847], [-121.83559, 49.174055], [-121.83609, 49.174402], [-121.837409, 49.174901], [-121.838265, 49.17508], [-121.83816, 49.183308]], [[-121.938494, 49.141761], [-121.937967, 49.140221], [-121.935853, 49.138127], [-121.935834, 49.135435], [-121.932516, 49.134918], [-121.932061, 49.134796], [-121.933274, 49.132811], [-121.933981, 49.130961], [-121.93426, 49.131334], [-121.934796, 49.13162], [-121.935644, 49.131544], [-121.93611, 49.131828], [-121.936909, 49.131946], [-121.937163, 49.132033], [-121.937645, 49.13201], [-121.937879, 49.131849], [-121.938413, 49.131719], [-121.939061, 49.131805], [-121.940178, 49.132199], [-121.940149, 49.132293], [-121.940857, 49.132437], [-121.94256, 49.13303], [-121.942937, 49.133224], [-121.943699, 49.134123], [-121.944515, 49.134859], [-121.945083, 49.135275], [-121.945349, 49.135146], [-121.953914, 49.135259], [-121.953977, 49.138095], [-121.948099, 49.138097], [-121.947828, 49.138896], [-121.947417, 49.139318], [-121.947115, 49.139491], [-121.946177, 49.139781], [-121.945253, 49.139764], [-121.94469, 49.139689], [-121.944109, 49.139716], [-121.942396, 49.140103], [-121.942082, 49.14024], [-121.94179, 49.140442], [-121.941461, 49.140806], [-121.94102, 49.141611], [-121.941105, 49.141894], [-121.938494, 49.141761]], [[-121.962269, 49.135025], [-121.959556, 49.135035], [-121.959878, 49.134387], [-121.95993, 49.133121], [-121.9608, 49.133084], [-121.962141, 49.132805], [-121.963394, 49.133374], [-121.965313, 49.134058], [-121.96722, 49.134606], [-121.967831, 49.134726], [-121.968631, 49.136217], [-121.968799, 49.136216], [-121.968864, 49.136772], [-121.968767, 49.137363], [-121.968864, 49.137871], [-121.9623, 49.137999], [-121.962269, 49.135025]], [[-121.962558, 49.118403], [-121.958562, 49.118414], [-121.95796, 49.118489], [-121.944744, 49.118524], [-121.944775, 49.120069], [-121.943197, 49.120073], [-121.943309, 49.123022], [-121.942747, 49.123028], [-121.942776, 49.124414], [-121.938369, 49.124397], [-121.938424, 49.124012], [-121.93908, 49.124009], [-121.939352, 49.123142], [-121.93856, 49.123051], [-121.938801, 49.121195], [-121.940464, 49.121196], [-121.940459, 49.120516], [-121.939353, 49.120454], [-121.939547, 49.119758], [-121.938942, 49.118538], [-121.929462, 49.118488], [-121.929571, 49.108882], [-121.940255, 49.108715], [-121.940677, 49.108892], [-121.948847, 49.105575], [-121.953857, 49.103378], [-121.958384, 49.101476], [-121.95893, 49.102168], [-121.959665, 49.102077], [-121.960506, 49.102299], [-121.960808, 49.102633], [-121.960193, 49.103448], [-121.959341, 49.10346], [-121.958314, 49.103965], [-121.95928, 49.104706], [-121.958932, 49.105053], [-121.958156, 49.104644], [-121.957141, 49.104404], [-121.956332, 49.104364], [-121.955019, 49.104591], [-121.951518, 49.106582], [-121.94776, 49.108075], [-121.946385, 49.10947], [-121.954793, 49.109236], [-121.954804, 49.109497], [-121.955048, 49.1095], [-121.955066, 49.109855], [-121.953677, 49.109876], [-121.953619, 49.111296], [-121.962589, 49.111279], [-121.962558, 49.118403]]], [[[-121.948192, 49.111294], [-121.949857, 49.111295], [-121.949805, 49.110296], [-121.948171, 49.110294], [-121.948192, 49.111294]]], [[[-121.939485, 49.118544], [-121.939782, 49.118917], [-121.939872, 49.119236], [-121.939869, 49.118536], [-121.939485, 49.118544]]]]}, "properties": {"name": "Chilliwack", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Chilliwack", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909020", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.799179, 49.313888], [-121.801735, 49.311928], [-121.805208, 49.30842], [-121.80853, 49.305758], [-121.813934, 49.304116], [-121.813782, 49.301997], [-121.797018, 49.301877], [-121.795077, 49.288861], [-121.783852, 49.288674], [-121.783664, 49.284826], [-121.788912, 49.284767], [-121.788628, 49.280684], [-121.783025, 49.280517], [-121.777524, 49.280534], [-121.766033, 49.280432], [-121.766226, 49.294171], [-121.766565, 49.299126], [-121.770729, 49.299208], [-121.77101, 49.304366], [-121.771412, 49.309359], [-121.773026, 49.309548], [-121.799179, 49.313888]]]]}, "properties": {"name": "Harrison Hot Springs", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Harrison Hot Springs", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909027", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.617138, 49.358445], [-121.617582, 49.358747], [-121.618329, 49.359683], [-121.618432, 49.359901], [-121.618413, 49.36008], [-121.618314, 49.360187], [-121.617823, 49.360496], [-121.617554, 49.360762], [-121.617448, 49.361085], [-121.617437, 49.361526], [-121.617752, 49.36251], [-121.617952, 49.362888], [-121.620038, 49.362728], [-121.627213, 49.362487], [-121.689601, 49.360591], [-121.689613, 49.360632], [-121.708568, 49.361316], [-121.710702, 49.36149], [-121.720676, 49.360732], [-121.745641, 49.359065], [-121.752256, 49.3592], [-121.765242, 49.359363], [-121.763878, 49.333988], [-121.796752, 49.315346], [-121.799179, 49.313888], [-121.773026, 49.309548], [-121.771412, 49.309359], [-121.77101, 49.304366], [-121.770729, 49.299208], [-121.766565, 49.299126], [-121.766226, 49.294171], [-121.766033, 49.280432], [-121.777524, 49.280534], [-121.783025, 49.280517], [-121.788628, 49.280684], [-121.788912, 49.284767], [-121.783664, 49.284826], [-121.783852, 49.288674], [-121.795077, 49.288861], [-121.797018, 49.301877], [-121.813782, 49.301997], [-121.813934, 49.304116], [-121.816627, 49.303507], [-121.822514, 49.302393], [-121.824674, 49.301824], [-121.829558, 49.300252], [-121.839498, 49.298795], [-121.845638, 49.299825], [-121.850462, 49.299066], [-121.86006, 49.296937], [-121.865521, 49.297504], [-121.874529, 49.295469], [-121.877655, 49.295347], [-121.882958, 49.29372], [-121.884325, 49.293433], [-121.885385, 49.293121], [-121.888929, 49.291387], [-121.892598, 49.290432], [-121.894263, 49.289588], [-121.904932, 49.285942], [-121.9085, 49.283833], [-121.915862, 49.277172], [-121.914109, 49.276424], [-121.91427, 49.275872], [-121.914198, 49.272811], [-121.91459, 49.27154], [-121.914842, 49.271169], [-121.915561, 49.269431], [-121.91542, 49.267972], [-121.917544, 49.266782], [-121.918919, 49.266105], [-121.91969, 49.265071], [-121.924658, 49.26375], [-121.927231, 49.263489], [-121.929185, 49.262648], [-121.93013, 49.262348], [-121.930691, 49.261853], [-121.932173, 49.258119], [-121.932269, 49.256444], [-121.933573, 49.254598], [-121.936219, 49.25231], [-121.941708, 49.249611], [-121.946356, 49.248151], [-121.954601, 49.244807], [-121.957635, 49.243999], [-121.962447, 49.242108], [-121.964869, 49.240644], [-121.966264, 49.238247], [-121.964637, 49.235346], [-121.96217, 49.234342], [-121.96005, 49.23383], [-121.957639, 49.233415], [-121.950922, 49.233285], [-121.948966, 49.232878], [-121.94741, 49.231811], [-121.94663, 49.230822], [-121.94659, 49.228907], [-121.944985, 49.228341], [-121.944648, 49.22665], [-121.944392, 49.226021], [-121.943603, 49.222912], [-121.944577, 49.217925], [-121.944909, 49.215588], [-121.94281, 49.216175], [-121.940199, 49.216653], [-121.938947, 49.216991], [-121.937077, 49.21765], [-121.935662, 49.218775], [-121.935153, 49.220301], [-121.935399, 49.222906], [-121.934453, 49.224624], [-121.926395, 49.225591], [-121.916607, 49.223872], [-121.906737, 49.223886], [-121.900155, 49.223494], [-121.894795, 49.223334], [-121.892036, 49.223348], [-121.884034, 49.221418], [-121.880642, 49.220834], [-121.875318, 49.220657], [-121.862655, 49.22085], [-121.854172, 49.222482], [-121.850557, 49.224832], [-121.849511, 49.226314], [-121.845108, 49.2287], [-121.843002, 49.228739], [-121.839972, 49.228498], [-121.837802, 49.226799], [-121.836439, 49.224981], [-121.833912, 49.222895], [-121.831057, 49.219747], [-121.827288, 49.217652], [-121.826111, 49.216927], [-121.821273, 49.215617], [-121.818334, 49.215057], [-121.814968, 49.215046], [-121.806777, 49.21402], [-121.801662, 49.214032], [-121.795413, 49.210785], [-121.793031, 49.209042], [-121.790905, 49.207796], [-121.786625, 49.206339], [-121.784727, 49.205929], [-121.777151, 49.205314], [-121.772936, 49.204617], [-121.77003, 49.205168], [-121.762255, 49.207056], [-121.75741, 49.207772], [-121.754378, 49.208706], [-121.74692, 49.210569], [-121.745153, 49.211626], [-121.740256, 49.212827], [-121.737338, 49.213173], [-121.735976, 49.213116], [-121.733058, 49.214032], [-121.732087, 49.214435], [-121.731097, 49.21517], [-121.728389, 49.217606], [-121.723952, 49.220679], [-121.715512, 49.227569], [-121.712835, 49.231599], [-121.711245, 49.23609], [-121.710879, 49.239254], [-121.710198, 49.243699], [-121.703224, 49.249538], [-121.698102, 49.251994], [-121.696686, 49.253254], [-121.694395, 49.254788], [-121.69162, 49.257706], [-121.69075, 49.259244], [-121.690386, 49.259541], [-121.689521, 49.2599], [-121.689727, 49.261278], [-121.687683, 49.262254], [-121.684439, 49.26565], [-121.679216, 49.272186], [-121.678232, 49.276228], [-121.678787, 49.27953], [-121.679225, 49.28083], [-121.677942, 49.282755], [-121.677771, 49.283178], [-121.677306, 49.285685], [-121.675631, 49.288294], [-121.675474, 49.289006], [-121.670892, 49.292423], [-121.668926, 49.29421], [-121.668689, 49.295741], [-121.668569, 49.297424], [-121.672073, 49.304188], [-121.670935, 49.30722], [-121.66784, 49.311215], [-121.666776, 49.312301], [-121.662278, 49.315249], [-121.660043, 49.31621], [-121.654163, 49.318019], [-121.647206, 49.317526], [-121.639063, 49.31565], [-121.637701, 49.315815], [-121.634599, 49.316932], [-121.632459, 49.317989], [-121.629473, 49.319752], [-121.628546, 49.320632], [-121.627629, 49.322351], [-121.627478, 49.323865], [-121.627195, 49.324373], [-121.623686, 49.328979], [-121.622853, 49.331774], [-121.618881, 49.33804], [-121.615906, 49.342257], [-121.609358, 49.346746], [-121.606566, 49.348804], [-121.604012, 49.351261], [-121.605139, 49.351333], [-121.607177, 49.351294], [-121.608272, 49.349991], [-121.609627, 49.348847], [-121.613146, 49.346568], [-121.61424, 49.345974], [-121.615964, 49.347207], [-121.616791, 49.347559], [-121.61771, 49.347732], [-121.617957, 49.356326], [-121.613455, 49.356515], [-121.615515, 49.357125], [-121.61603, 49.357137], [-121.616643, 49.356928], [-121.616972, 49.356915], [-121.617066, 49.357095], [-121.61699, 49.35731], [-121.616536, 49.357754], [-121.616005, 49.358072], [-121.615929, 49.358268], [-121.616158, 49.358496], [-121.616722, 49.358522], [-121.617138, 49.358445]], [[-121.67569, 49.31303], [-121.674783, 49.312885], [-121.674266, 49.312689], [-121.672253, 49.312581], [-121.671002, 49.312778], [-121.669586, 49.312779], [-121.669157, 49.312856], [-121.670167, 49.312121], [-121.672045, 49.310298], [-121.672877, 49.309039], [-121.673487, 49.307868], [-121.6742, 49.305924], [-121.67459, 49.305191], [-121.675554, 49.304104], [-121.675948, 49.303794], [-121.676226, 49.303671], [-121.678357, 49.303282], [-121.678816, 49.303018], [-121.679448, 49.302556], [-121.679957, 49.302049], [-121.681028, 49.300542], [-121.681252, 49.299906], [-121.681145, 49.298258], [-121.681242, 49.296127], [-121.681378, 49.295724], [-121.681747, 49.295261], [-121.681956, 49.294652], [-121.682416, 49.293901], [-121.682798, 49.293528], [-121.683624, 49.292988], [-121.684469, 49.292225], [-121.684884, 49.2916], [-121.68508, 49.290955], [-121.684964, 49.290151], [-121.684732, 49.289592], [-121.684262, 49.289136], [-121.683481, 49.288543], [-121.683084, 49.287972], [-121.682641, 49.287049], [-121.68256, 49.286454], [-121.682594, 49.285726], [-121.683165, 49.284429], [-121.683801, 49.283752], [-121.684852, 49.282936], [-121.6864, 49.282163], [-121.687747, 49.281637], [-121.689813, 49.280986], [-121.690733, 49.280511], [-121.692879, 49.280041], [-121.694318, 49.279635], [-121.6974, 49.278544], [-121.698417, 49.277971], [-121.698794, 49.277823], [-121.699915, 49.277034], [-121.700846, 49.276119], [-121.701579, 49.274931], [-121.701915, 49.274125], [-121.702047, 49.273334], [-121.701949, 49.271742], [-121.70174, 49.270345], [-121.701563, 49.26974], [-121.700633, 49.267966], [-121.700104, 49.267169], [-121.699131, 49.266015], [-121.698293, 49.265457], [-121.696245, 49.263402], [-121.695517, 49.262358], [-121.695071, 49.261535], [-121.694914, 49.260679], [-121.695017, 49.25942], [-121.69534, 49.258632], [-121.696047, 49.25739], [-121.69663, 49.256595], [-121.69714, 49.256044], [-121.697408, 49.256272], [-121.697093, 49.258346], [-121.697383, 49.25987], [-121.698514, 49.259315], [-121.698242, 49.258521], [-121.698438, 49.257857], [-121.699065, 49.256516], [-121.699247, 49.255842], [-121.699203, 49.255402], [-121.698985, 49.254859], [-121.699624, 49.25456], [-121.699698, 49.254408], [-121.700334, 49.254235], [-121.701031, 49.253902], [-121.700995, 49.253659], [-121.701152, 49.253471], [-121.701376, 49.25333], [-121.701678, 49.253243], [-121.702997, 49.25334], [-121.704214, 49.253542], [-121.704586, 49.253555], [-121.705715, 49.253397], [-121.706049, 49.253283], [-121.707392, 49.251823], [-121.708581, 49.251035], [-121.708974, 49.250689], [-121.709436, 49.249849], [-121.70962, 49.249654], [-121.710259, 49.249363], [-121.710813, 49.249217], [-121.712054, 49.249069], [-121.713291, 49.249091], [-121.71411, 49.249271], [-121.714571, 49.249474], [-121.714799, 49.249665], [-121.714983, 49.250081], [-121.715262, 49.25039], [-121.715979, 49.250282], [-121.716492, 49.250081], [-121.717625, 49.249392], [-121.717976, 49.24909], [-121.718063, 49.24891], [-121.717946, 49.248127], [-121.717828, 49.247882], [-121.717255, 49.247174], [-121.717197, 49.246778], [-121.717291, 49.246168], [-121.725298, 49.242144], [-121.733123, 49.248453], [-121.733943, 49.248809], [-121.734641, 49.249723], [-121.735182, 49.249803], [-121.735723, 49.250454], [-121.737508, 49.252048], [-121.738001, 49.252683], [-121.739835, 49.254089], [-121.741148, 49.255389], [-121.742052, 49.256101], [-121.742343, 49.2565], [-121.742443, 49.256906], [-121.742665, 49.257349], [-121.743332, 49.258139], [-121.742623, 49.258941], [-121.741707, 49.259704], [-121.740125, 49.260648], [-121.738946, 49.261519], [-121.73766, 49.262876], [-121.736788, 49.264131], [-121.736327, 49.264993], [-121.735901, 49.267538], [-121.735309, 49.268416], [-121.734662, 49.269792], [-121.734928, 49.270218], [-121.734679, 49.270809], [-121.734702, 49.271034], [-121.735023, 49.27137], [-121.736096, 49.27185], [-121.736972, 49.272021], [-121.738277, 49.272036], [-121.73894, 49.271909], [-121.739358, 49.271688], [-121.739729, 49.271692], [-121.739988, 49.271803], [-121.740201, 49.272048], [-121.740381, 49.273157], [-121.739393, 49.273966], [-121.736961, 49.275094], [-121.735092, 49.275459], [-121.732708, 49.276227], [-121.73085, 49.277533], [-121.730418, 49.277681], [-121.728321, 49.27814], [-121.72818, 49.278289], [-121.726901, 49.278943], [-121.724916, 49.280331], [-121.723643, 49.281442], [-121.722279, 49.283485], [-121.722214, 49.28391], [-121.722363, 49.284294], [-121.720861, 49.286098], [-121.719431, 49.289099], [-121.719345, 49.289436], [-121.719419, 49.289831], [-121.719653, 49.290448], [-121.719997, 49.290621], [-121.720312, 49.292654], [-121.720127, 49.293128], [-121.719698, 49.293349], [-121.718513, 49.294712], [-121.718189, 49.294863], [-121.717219, 49.295759], [-121.716556, 49.296931], [-121.716685, 49.297318], [-121.716651, 49.297543], [-121.71655, 49.297713], [-121.716155, 49.298059], [-121.715741, 49.298314], [-121.714453, 49.298829], [-121.710089, 49.29994], [-121.707454, 49.300293], [-121.704375, 49.300443], [-121.703048, 49.3001], [-121.701213, 49.299944], [-121.69909, 49.300079], [-121.69799, 49.300406], [-121.697109, 49.301606], [-121.696064, 49.30261], [-121.695615, 49.302956], [-121.694414, 49.303609], [-121.689939, 49.305312], [-121.689132, 49.305698], [-121.688241, 49.30604], [-121.687674, 49.306185], [-121.686885, 49.305926], [-121.685075, 49.306397], [-121.68276, 49.307693], [-121.682351, 49.307691], [-121.682019, 49.307759], [-121.680881, 49.308132], [-121.679708, 49.309324], [-121.679248, 49.310039], [-121.678637, 49.310787], [-121.678214, 49.311124], [-121.677725, 49.311398], [-121.677298, 49.311977], [-121.676889, 49.312369], [-121.676733, 49.312484], [-121.676347, 49.312597], [-121.67569, 49.31303]], [[-121.933771, 49.233665], [-121.93198, 49.233217], [-121.925159, 49.232114], [-121.921956, 49.231661], [-121.921063, 49.231467], [-121.920893, 49.231373], [-121.920906, 49.231292], [-121.921432, 49.229982], [-121.921541, 49.229856], [-121.922355, 49.229999], [-121.923815, 49.229957], [-121.924568, 49.229784], [-121.926447, 49.229168], [-121.927307, 49.229087], [-121.928547, 49.229131], [-121.929894, 49.229257], [-121.930559, 49.229388], [-121.931377, 49.229369], [-121.932322, 49.229137], [-121.938879, 49.229153], [-121.941684, 49.2293], [-121.942537, 49.229543], [-121.942978, 49.229888], [-121.94379, 49.231032], [-121.945096, 49.232183], [-121.946021, 49.232916], [-121.947322, 49.233625], [-121.949611, 49.234214], [-121.951195, 49.234377], [-121.953098, 49.234467], [-121.952666, 49.236209], [-121.952347, 49.236214], [-121.95115, 49.236134], [-121.949233, 49.235872], [-121.941747, 49.234616], [-121.941323, 49.234764], [-121.940698, 49.234742], [-121.933771, 49.233665]], [[-121.765662, 49.214781], [-121.765577, 49.222324], [-121.762488, 49.222656], [-121.752797, 49.222368], [-121.752824, 49.218801], [-121.746671, 49.219142], [-121.747535, 49.218568], [-121.749342, 49.217158], [-121.751988, 49.214577], [-121.752493, 49.214223], [-121.753589, 49.21375], [-121.754223, 49.213612], [-121.754895, 49.213629], [-121.755581, 49.213725], [-121.756534, 49.214006], [-121.757436, 49.214177], [-121.758892, 49.214176], [-121.759844, 49.213979], [-121.762191, 49.212969], [-121.762369, 49.213006], [-121.762677, 49.213315], [-121.76239, 49.213736], [-121.761722, 49.214106], [-121.760908, 49.214341], [-121.760599, 49.214572], [-121.761913, 49.214217], [-121.763597, 49.213308], [-121.764322, 49.212803], [-121.765293, 49.212481], [-121.766073, 49.212083], [-121.765662, 49.214781]]]]}, "properties": {"name": "Kent", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Kent", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909032", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.655709, 49.29448], [-121.658233, 49.293016], [-121.65895, 49.29351], [-121.658338, 49.293912], [-121.657246, 49.294431], [-121.657162, 49.294366], [-121.656652, 49.294652], [-121.656293, 49.294995], [-121.655921, 49.294976], [-121.654569, 49.295946], [-121.656273, 49.295978], [-121.6568, 49.295879], [-121.657578, 49.295312], [-121.658795, 49.294601], [-121.6594, 49.294662], [-121.659301, 49.296531], [-121.661823, 49.296223], [-121.664219, 49.296169], [-121.668642, 49.29641], [-121.668926, 49.29421], [-121.670892, 49.292423], [-121.675474, 49.289006], [-121.675631, 49.288294], [-121.677306, 49.285685], [-121.677771, 49.283178], [-121.677942, 49.282755], [-121.679225, 49.28083], [-121.678787, 49.27953], [-121.678232, 49.276228], [-121.679216, 49.272186], [-121.684439, 49.26565], [-121.687683, 49.262254], [-121.689727, 49.261278], [-121.689521, 49.2599], [-121.690386, 49.259541], [-121.69075, 49.259244], [-121.69162, 49.257706], [-121.694395, 49.254788], [-121.696686, 49.253254], [-121.698102, 49.251994], [-121.703224, 49.249538], [-121.710198, 49.243699], [-121.710879, 49.239254], [-121.711245, 49.23609], [-121.712835, 49.231599], [-121.715512, 49.227569], [-121.723952, 49.220679], [-121.728389, 49.217606], [-121.731097, 49.21517], [-121.732087, 49.214435], [-121.733058, 49.214032], [-121.735976, 49.213116], [-121.737338, 49.213173], [-121.740256, 49.212827], [-121.745153, 49.211626], [-121.74692, 49.210569], [-121.754378, 49.208706], [-121.75741, 49.207772], [-121.762255, 49.207056], [-121.77003, 49.205168], [-121.772936, 49.204617], [-121.777151, 49.205314], [-121.784727, 49.205929], [-121.786625, 49.206339], [-121.788299, 49.206909], [-121.789235, 49.205938], [-121.791025, 49.205694], [-121.792749, 49.205726], [-121.794038, 49.205463], [-121.794358, 49.204807], [-121.794341, 49.204299], [-121.794071, 49.203905], [-121.793631, 49.203443], [-121.791471, 49.202026], [-121.791038, 49.201789], [-121.790492, 49.201612], [-121.789463, 49.201619], [-121.788995, 49.201837], [-121.788352, 49.200308], [-121.787981, 49.200246], [-121.787663, 49.200052], [-121.787266, 49.19994], [-121.786411, 49.199535], [-121.785694, 49.199149], [-121.784863, 49.198845], [-121.784208, 49.198712], [-121.782414, 49.198585], [-121.781792, 49.198651], [-121.781214, 49.198806], [-121.780759, 49.198854], [-121.780412, 49.199031], [-121.778919, 49.199563], [-121.778154, 49.199395], [-121.7773, 49.19997], [-121.777063, 49.200066], [-121.773881, 49.20113], [-121.773484, 49.201382], [-121.773449, 49.201587], [-121.771755, 49.202252], [-121.770905, 49.202884], [-121.770232, 49.203179], [-121.769704, 49.20326], [-121.769353, 49.203425], [-121.767736, 49.203867], [-121.76683, 49.204175], [-121.765892, 49.2044], [-121.764256, 49.205021], [-121.763482, 49.205247], [-121.762087, 49.205573], [-121.760584, 49.205845], [-121.75714, 49.20633], [-121.754843, 49.206503], [-121.753276, 49.206495], [-121.751606, 49.206386], [-121.748795, 49.206636], [-121.749482, 49.205755], [-121.749598, 49.200908], [-121.750516, 49.199975], [-121.751738, 49.199428], [-121.752752, 49.198486], [-121.753723, 49.198191], [-121.754394, 49.197861], [-121.7541, 49.197417], [-121.753916, 49.195944], [-121.755517, 49.19496], [-121.757494, 49.194148], [-121.758893, 49.194195], [-121.759122, 49.193669], [-121.758835, 49.192747], [-121.759641, 49.191538], [-121.763959, 49.191561], [-121.775217, 49.191349], [-121.77801, 49.190839], [-121.777306, 49.187691], [-121.78239, 49.187603], [-121.781437, 49.183807], [-121.781836, 49.180283], [-121.776699, 49.180094], [-121.77703, 49.178613], [-121.780634, 49.178717], [-121.781303, 49.174988], [-121.785789, 49.17506], [-121.785883, 49.171079], [-121.785769, 49.167885], [-121.786181, 49.161439], [-121.790394, 49.161202], [-121.79037, 49.157388], [-121.785472, 49.157545], [-121.785272, 49.151296], [-121.790383, 49.151373], [-121.787832, 49.122224], [-121.789163, 49.115966], [-121.790053, 49.112491], [-121.790309, 49.110434], [-121.789298, 49.109866], [-121.787041, 49.107528], [-121.784697, 49.106049], [-121.782247, 49.105699], [-121.779939, 49.10434], [-121.777474, 49.104789], [-121.774441, 49.105467], [-121.770967, 49.10565], [-121.768625, 49.106701], [-121.76704, 49.10799], [-121.764398, 49.108877], [-121.761939, 49.110668], [-121.76076, 49.113071], [-121.760796, 49.118365], [-121.763392, 49.123618], [-121.763629, 49.125548], [-121.763631, 49.127177], [-121.765074, 49.128288], [-121.76532, 49.129342], [-121.764399, 49.130598], [-121.755657, 49.135328], [-121.750247, 49.138353], [-121.748438, 49.140096], [-121.747439, 49.143916], [-121.746336, 49.145308], [-121.746602, 49.146982], [-121.748574, 49.149659], [-121.748645, 49.151303], [-121.745007, 49.154185], [-121.742927, 49.15605], [-121.740275, 49.15873], [-121.738924, 49.159294], [-121.735187, 49.160275], [-121.729395, 49.160089], [-121.726368, 49.15953], [-121.722987, 49.159183], [-121.72076, 49.159358], [-121.716785, 49.15936], [-121.7143, 49.159053], [-121.710445, 49.159733], [-121.707753, 49.160648], [-121.70631, 49.161242], [-121.705523, 49.166041], [-121.704527, 49.16781], [-121.699352, 49.173488], [-121.695465, 49.17815], [-121.693816, 49.181234], [-121.689792, 49.183633], [-121.685117, 49.185115], [-121.683365, 49.185756], [-121.682248, 49.186846], [-121.680509, 49.184669], [-121.676035, 49.182382], [-121.675108, 49.181106], [-121.673007, 49.179728], [-121.671283, 49.179509], [-121.668146, 49.179476], [-121.666188, 49.178731], [-121.665581, 49.177197], [-121.664983, 49.173511], [-121.664401, 49.172233], [-121.660519, 49.172278], [-121.657632, 49.171672], [-121.653482, 49.169277], [-121.645519, 49.166942], [-121.641642, 49.167514], [-121.639809, 49.168124], [-121.637541, 49.168991], [-121.635581, 49.169436], [-121.633534, 49.169021], [-121.631829, 49.168153], [-121.625976, 49.168702], [-121.621899, 49.170435], [-121.619994, 49.170577], [-121.618883, 49.169135], [-121.618411, 49.166652], [-121.617015, 49.165588], [-121.614806, 49.164812], [-121.611763, 49.162804], [-121.607651, 49.162546], [-121.602933, 49.160754], [-121.601069, 49.159977], [-121.596421, 49.160368], [-121.59488, 49.159861], [-121.593083, 49.158647], [-121.590023, 49.157587], [-121.58844, 49.157773], [-121.586841, 49.15921], [-121.57898, 49.163728], [-121.571412, 49.171472], [-121.565138, 49.175064], [-121.562918, 49.176669], [-121.561296, 49.180248], [-121.559142, 49.181265], [-121.558114, 49.182323], [-121.557722, 49.185931], [-121.557064, 49.187471], [-121.557589, 49.1907], [-121.557233, 49.192632], [-121.555872, 49.193933], [-121.556146, 49.197433], [-121.550662, 49.203406], [-121.548723, 49.204105], [-121.546195, 49.204187], [-121.54332, 49.203969], [-121.537324, 49.204784], [-121.532284, 49.205943], [-121.518427, 49.207168], [-121.51562, 49.206662], [-121.51326, 49.205463], [-121.511959, 49.200617], [-121.514157, 49.196353], [-121.515889, 49.194559], [-121.521448, 49.19145], [-121.523189, 49.188918], [-121.522081, 49.187475], [-121.514732, 49.181347], [-121.513155, 49.180341], [-121.511999, 49.177859], [-121.509836, 49.176765], [-121.507032, 49.176409], [-121.505122, 49.175419], [-121.503739, 49.17354], [-121.501664, 49.172115], [-121.501552, 49.172093], [-121.502642, 49.267084], [-121.501947, 49.296011], [-121.525523, 49.295985], [-121.607701, 49.295401], [-121.646773, 49.295797], [-121.654569, 49.295946], [-121.655709, 49.29448]], [[-121.6598, 49.293749], [-121.659211, 49.294182], [-121.658622, 49.294469], [-121.658379, 49.294267], [-121.65922, 49.293745], [-121.659687, 49.293546], [-121.6598, 49.293749]], [[-121.732162, 49.20771], [-121.731836, 49.208888], [-121.730388, 49.209763], [-121.728929, 49.210502], [-121.727437, 49.211377], [-121.726798, 49.211657], [-121.725816, 49.211944], [-121.724836, 49.212095], [-121.72349, 49.21216], [-121.719944, 49.211744], [-121.719273, 49.211719], [-121.717552, 49.211861], [-121.716957, 49.212035], [-121.716055, 49.212007], [-121.715121, 49.211842], [-121.714518, 49.21181], [-121.714345, 49.211654], [-121.71427, 49.211338], [-121.713778, 49.211199], [-121.713689, 49.210918], [-121.713447, 49.210744], [-121.712942, 49.21064], [-121.712793, 49.210558], [-121.712731, 49.210287], [-121.712459, 49.210203], [-121.71217, 49.210227], [-121.711761, 49.210142], [-121.711495, 49.210291], [-121.710704, 49.21035], [-121.706579, 49.20675], [-121.708711, 49.205241], [-121.709982, 49.205619], [-121.711118, 49.205509], [-121.71349, 49.203519], [-121.714855, 49.201598], [-121.716173, 49.199932], [-121.719259, 49.199814], [-121.720201, 49.199661], [-121.720731, 49.198978], [-121.732162, 49.20771]]]]}, "properties": {"name": "Fraser Valley D", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley D", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909034", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.018006, 49.08932], [-122.028961, 49.089318], [-122.02889, 49.084303], [-122.029031, 49.081982], [-122.029017, 49.065443], [-122.028609, 49.047222], [-122.028654, 49.045664], [-122.072562, 49.045487], [-122.083439, 49.045636], [-122.083579, 49.038278], [-122.091303, 49.038437], [-122.094431, 49.038442], [-122.094644, 49.036496], [-122.094689, 49.03249], [-122.094603, 49.024883], [-122.094331, 49.016597], [-122.101554, 49.016585], [-122.116973, 49.016369], [-122.116956, 49.006916], [-122.116775, 49.002236], [-121.995867, 49.000006], [-121.854628, 49.000075], [-121.854676, 49.000687], [-121.854059, 49.000952], [-121.853991, 49.001577], [-121.854103, 49.002542], [-121.855175, 49.002991], [-121.85778, 49.00376], [-121.859823, 49.004197], [-121.862643, 49.004693], [-121.86499, 49.006149], [-121.865485, 49.006944], [-121.86633, 49.008664], [-121.867902, 49.01022], [-121.869563, 49.011625], [-121.870868, 49.012523], [-121.87261, 49.014249], [-121.872521, 49.01544], [-121.871234, 49.016006], [-121.868369, 49.016634], [-121.865137, 49.018279], [-121.864476, 49.019782], [-121.863725, 49.021957], [-121.864469, 49.02323], [-121.865167, 49.024759], [-121.870958, 49.028995], [-121.871711, 49.030125], [-121.875027, 49.033071], [-121.877725, 49.034845], [-121.877873, 49.039574], [-121.878957, 49.041021], [-121.880218, 49.04225], [-121.883437, 49.04403], [-121.885795, 49.045172], [-121.887173, 49.045999], [-121.888559, 49.046366], [-121.889819, 49.047024], [-121.891311, 49.048961], [-121.891839, 49.050113], [-121.891972, 49.050995], [-121.893254, 49.05226], [-121.894416, 49.053116], [-121.894773, 49.054765], [-121.894871, 49.056226], [-121.895916, 49.057729], [-121.896993, 49.058425], [-121.897743, 49.059662], [-121.942559, 49.061414], [-121.941249, 49.074347], [-121.950811, 49.07454], [-121.953318, 49.074708], [-121.964367, 49.074912], [-121.964644, 49.074973], [-121.966254, 49.074934], [-121.973434, 49.074967], [-121.972884, 49.0858], [-121.972333, 49.089185], [-121.975842, 49.089215], [-121.979458, 49.089159], [-121.979449, 49.085681], [-121.981153, 49.085701], [-121.981367, 49.082116], [-121.985019, 49.082036], [-121.985091, 49.078292], [-121.989162, 49.078307], [-121.996295, 49.078222], [-121.996395, 49.079075], [-121.997724, 49.079081], [-121.997786, 49.079886], [-122.007404, 49.079905], [-122.007002, 49.08751], [-122.012356, 49.087481], [-122.01243, 49.085786], [-122.02349, 49.085794], [-122.023482, 49.087177], [-122.020285, 49.088538], [-122.017897, 49.089235], [-122.018006, 49.08932]]]]}, "properties": {"name": "Fraser Valley H", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley H", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909035", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.682248, 49.186846], [-121.683365, 49.185756], [-121.685117, 49.185115], [-121.689792, 49.183633], [-121.693816, 49.181234], [-121.695465, 49.17815], [-121.699352, 49.173488], [-121.704527, 49.16781], [-121.705523, 49.166041], [-121.70631, 49.161242], [-121.707753, 49.160648], [-121.710445, 49.159733], [-121.7143, 49.159053], [-121.716785, 49.15936], [-121.72076, 49.159358], [-121.722987, 49.159183], [-121.726368, 49.15953], [-121.729395, 49.160089], [-121.735187, 49.160275], [-121.738924, 49.159294], [-121.740275, 49.15873], [-121.742927, 49.15605], [-121.745007, 49.154185], [-121.748645, 49.151303], [-121.748574, 49.149659], [-121.746602, 49.146982], [-121.746336, 49.145308], [-121.747439, 49.143916], [-121.748438, 49.140096], [-121.750247, 49.138353], [-121.755657, 49.135328], [-121.764399, 49.130598], [-121.76532, 49.129342], [-121.765074, 49.128288], [-121.763631, 49.127177], [-121.763629, 49.125548], [-121.763392, 49.123618], [-121.760796, 49.118365], [-121.76076, 49.113071], [-121.761939, 49.110668], [-121.764398, 49.108877], [-121.76704, 49.10799], [-121.768625, 49.106701], [-121.770967, 49.10565], [-121.774441, 49.105467], [-121.777474, 49.104789], [-121.779939, 49.10434], [-121.782247, 49.105699], [-121.784697, 49.106049], [-121.787041, 49.107528], [-121.789298, 49.109866], [-121.790308, 49.110433], [-121.790799, 49.096524], [-121.791172, 49.091612], [-121.801318, 49.091457], [-121.807974, 49.091499], [-121.818015, 49.091786], [-121.817933, 49.085663], [-121.817756, 49.085101], [-121.830974, 49.084985], [-121.831294, 49.080742], [-121.836968, 49.080767], [-121.836996, 49.084741], [-121.836865, 49.088385], [-121.842088, 49.088138], [-121.842722, 49.0884], [-121.853037, 49.08843], [-121.863715, 49.087599], [-121.863664, 49.088494], [-121.867743, 49.088148], [-121.876988, 49.088818], [-121.87946, 49.088312], [-121.886891, 49.08772], [-121.894953, 49.087903], [-121.89653, 49.08753], [-121.898525, 49.088117], [-121.900507, 49.087909], [-121.900948, 49.088616], [-121.899797, 49.08985], [-121.901628, 49.090156], [-121.901893, 49.090872], [-121.903839, 49.091141], [-121.904715, 49.091904], [-121.908031, 49.091936], [-121.90776, 49.088531], [-121.914981, 49.08849], [-121.924926, 49.089663], [-121.930067, 49.089243], [-121.930308, 49.090368], [-121.939011, 49.089813], [-121.94085, 49.089845], [-121.941003, 49.087601], [-121.940562, 49.085473], [-121.940642, 49.08116], [-121.940772, 49.07919], [-121.942559, 49.061414], [-121.897743, 49.059662], [-121.896993, 49.058425], [-121.895916, 49.057729], [-121.894871, 49.056226], [-121.894773, 49.054765], [-121.894416, 49.053116], [-121.893254, 49.05226], [-121.891972, 49.050995], [-121.891839, 49.050113], [-121.891311, 49.048961], [-121.889819, 49.047024], [-121.888559, 49.046366], [-121.887173, 49.045999], [-121.885795, 49.045172], [-121.883437, 49.04403], [-121.880218, 49.04225], [-121.878957, 49.041021], [-121.877873, 49.039574], [-121.877725, 49.034845], [-121.875027, 49.033071], [-121.871711, 49.030125], [-121.870958, 49.028995], [-121.865167, 49.024759], [-121.864469, 49.02323], [-121.863725, 49.021957], [-121.864476, 49.019782], [-121.865137, 49.018279], [-121.868369, 49.016634], [-121.871234, 49.016006], [-121.872521, 49.01544], [-121.87261, 49.014249], [-121.870868, 49.012523], [-121.869563, 49.011625], [-121.867902, 49.01022], [-121.86633, 49.008664], [-121.865485, 49.006944], [-121.86499, 49.006149], [-121.862643, 49.004693], [-121.859823, 49.004197], [-121.85778, 49.00376], [-121.855175, 49.002991], [-121.854103, 49.002542], [-121.853991, 49.001577], [-121.854059, 49.000952], [-121.854676, 49.000687], [-121.854628, 49.000075], [-121.75, 48.999993], [-121.499997, 48.999994], [-121.272923, 49.000022], [-121.272117, 49.002394], [-121.271115, 49.003666], [-121.269505, 49.006598], [-121.268693, 49.011816], [-121.268891, 49.013633], [-121.271434, 49.015494], [-121.274508, 49.017083], [-121.278413, 49.016653], [-121.283365, 49.015787], [-121.287931, 49.01519], [-121.290907, 49.015742], [-121.297314, 49.018154], [-121.298006, 49.019907], [-121.296173, 49.024035], [-121.296614, 49.029085], [-121.291309, 49.029479], [-121.285629, 49.030613], [-121.285158, 49.031288], [-121.28779, 49.032162], [-121.289999, 49.032608], [-121.29633, 49.036084], [-121.29921, 49.036959], [-121.30135, 49.038156], [-121.303618, 49.03881], [-121.306696, 49.038584], [-121.30928, 49.039652], [-121.308083, 49.041444], [-121.303012, 49.044678], [-121.30087, 49.046392], [-121.299672, 49.047858], [-121.299801, 49.048482], [-121.299806, 49.051403], [-121.30034, 49.053013], [-121.30432, 49.058379], [-121.306236, 49.060056], [-121.308249, 49.060501], [-121.313598, 49.063196], [-121.314616, 49.064923], [-121.316217, 49.066768], [-121.317401, 49.067095], [-121.319001, 49.068161], [-121.31934, 49.070161], [-121.32038, 49.072499], [-121.322395, 49.074565], [-121.324037, 49.076786], [-121.328215, 49.079881], [-121.331456, 49.08239], [-121.333436, 49.085767], [-121.3328, 49.087844], [-121.331485, 49.08987], [-121.331137, 49.092714], [-121.332145, 49.093649], [-121.335207, 49.093591], [-121.338092, 49.093817], [-121.341174, 49.094821], [-121.343042, 49.096173], [-121.345611, 49.097604], [-121.349406, 49.09624], [-121.350753, 49.09464], [-121.352734, 49.088365], [-121.353568, 49.086545], [-121.355767, 49.083344], [-121.35814, 49.081603], [-121.361488, 49.080173], [-121.363681, 49.079621], [-121.370908, 49.079594], [-121.376171, 49.079189], [-121.381365, 49.078499], [-121.383636, 49.077597], [-121.384802, 49.076732], [-121.387053, 49.075546], [-121.390114, 49.07568], [-121.392309, 49.077135], [-121.393008, 49.079472], [-121.392377, 49.081874], [-121.390761, 49.086991], [-121.391221, 49.088886], [-121.393196, 49.09199], [-121.395096, 49.093704], [-121.401083, 49.094244], [-121.403731, 49.094675], [-121.40636, 49.095728], [-121.408883, 49.097287], [-121.409778, 49.099104], [-121.409747, 49.101], [-121.407008, 49.108326], [-121.405344, 49.111119], [-121.40496, 49.113651], [-121.405057, 49.115651], [-121.404661, 49.120105], [-121.403536, 49.124638], [-121.404145, 49.126534], [-121.408244, 49.129184], [-121.409438, 49.131262], [-121.409663, 49.133236], [-121.408852, 49.134951], [-121.408546, 49.137327], [-121.411273, 49.144703], [-121.413569, 49.145769], [-121.418041, 49.146577], [-121.420437, 49.147708], [-121.423643, 49.151188], [-121.430313, 49.156439], [-121.431435, 49.156681], [-121.441216, 49.153728], [-121.448969, 49.153349], [-121.452972, 49.152906], [-121.455941, 49.152142], [-121.457269, 49.150332], [-121.458379, 49.148431], [-121.461785, 49.146628], [-121.465304, 49.145745], [-121.468994, 49.143733], [-121.472081, 49.141385], [-121.475756, 49.140449], [-121.47959, 49.139786], [-121.482016, 49.137543], [-121.482626, 49.138406], [-121.482978, 49.139901], [-121.483921, 49.141588], [-121.485811, 49.142834], [-121.492199, 49.144411], [-121.498657, 49.146919], [-121.50035, 49.14881], [-121.499874, 49.149417], [-121.497816, 49.150022], [-121.49544, 49.151376], [-121.494065, 49.15255], [-121.492422, 49.153375], [-121.487827, 49.154093], [-121.485392, 49.155821], [-121.483031, 49.160749], [-121.483601, 49.162076], [-121.484546, 49.162796], [-121.487558, 49.16299], [-121.489872, 49.163563], [-121.490895, 49.165289], [-121.489943, 49.16663], [-121.490276, 49.168358], [-121.493132, 49.170865], [-121.497504, 49.171287], [-121.501664, 49.172115], [-121.503739, 49.17354], [-121.505122, 49.175419], [-121.507032, 49.176409], [-121.509836, 49.176765], [-121.511999, 49.177859], [-121.513155, 49.180341], [-121.514732, 49.181347], [-121.522081, 49.187475], [-121.523189, 49.188918], [-121.521448, 49.19145], [-121.515889, 49.194559], [-121.514157, 49.196353], [-121.511959, 49.200617], [-121.51326, 49.205463], [-121.51562, 49.206662], [-121.518427, 49.207168], [-121.532284, 49.205943], [-121.537324, 49.204784], [-121.54332, 49.203969], [-121.546195, 49.204187], [-121.548723, 49.204105], [-121.550662, 49.203406], [-121.556146, 49.197433], [-121.555872, 49.193933], [-121.557233, 49.192632], [-121.557589, 49.1907], [-121.557064, 49.187471], [-121.557722, 49.185931], [-121.558114, 49.182323], [-121.559142, 49.181265], [-121.561296, 49.180248], [-121.562918, 49.176669], [-121.565138, 49.175064], [-121.571412, 49.171472], [-121.57898, 49.163728], [-121.586841, 49.15921], [-121.58844, 49.157773], [-121.590023, 49.157587], [-121.593083, 49.158647], [-121.59488, 49.159861], [-121.596421, 49.160368], [-121.601069, 49.159977], [-121.602933, 49.160754], [-121.607651, 49.162546], [-121.611763, 49.162804], [-121.614806, 49.164812], [-121.617015, 49.165588], [-121.618411, 49.166652], [-121.618883, 49.169135], [-121.619994, 49.170577], [-121.621899, 49.170435], [-121.625976, 49.168702], [-121.631829, 49.168153], [-121.633534, 49.169021], [-121.635581, 49.169436], [-121.637541, 49.168991], [-121.639809, 49.168124], [-121.641642, 49.167514], [-121.645519, 49.166942], [-121.653482, 49.169277], [-121.657632, 49.171672], [-121.660519, 49.172278], [-121.664401, 49.172233], [-121.664983, 49.173511], [-121.665581, 49.177197], [-121.666188, 49.178731], [-121.668146, 49.179476], [-121.671283, 49.179509], [-121.673007, 49.179728], [-121.675108, 49.181106], [-121.676035, 49.182382], [-121.680509, 49.184669], [-121.682248, 49.186846]]]]}, "properties": {"name": "Fraser Valley E", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley E", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909036", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.733962, 50.151296], [-122.739103, 50.147861], [-122.742402, 50.144199], [-122.741244, 50.140347], [-122.743529, 50.137876], [-122.749124, 50.140235], [-122.76228, 50.133237], [-122.764358, 50.136149], [-122.766905, 50.137625], [-122.768627, 50.138105], [-122.772493, 50.135947], [-122.777013, 50.13378], [-122.780632, 50.13213], [-122.788287, 50.131138], [-122.789692, 50.130073], [-122.790116, 50.129043], [-122.789425, 50.126144], [-122.789357, 50.123101], [-122.791198, 50.116071], [-122.792264, 50.109645], [-122.792975, 50.107291], [-122.793173, 50.105728], [-122.793118, 50.105589], [-122.794574, 50.102255], [-122.800739, 50.096413], [-122.805797, 50.087102], [-122.802842, 50.078368], [-122.802853, 50.066762], [-122.801855, 50.061431], [-122.80062, 50.057351], [-122.803921, 50.055923], [-122.802059, 50.055198], [-122.800179, 50.053935], [-122.79717, 50.051425], [-122.793234, 50.047396], [-122.79175, 50.045454], [-122.791378, 50.043067], [-122.791842, 50.041103], [-122.782336, 50.038285], [-122.773351, 50.036589], [-122.765988, 50.029375], [-122.764784, 50.02327], [-122.745853, 50.017327], [-122.743215, 50.017096], [-122.742085, 50.016737], [-122.740606, 50.016782], [-122.736299, 50.018034], [-122.727622, 50.022496], [-122.724372, 50.023818], [-122.72149, 50.024369], [-122.719822, 50.024264], [-122.717447, 50.023701], [-122.707461, 50.02269], [-122.703234, 50.022407], [-122.697894, 50.022395], [-122.694546, 50.022781], [-122.689894, 50.024121], [-122.68603, 50.024897], [-122.683216, 50.02502], [-122.681096, 50.024665], [-122.679453, 50.022645], [-122.678906, 50.019716], [-122.679175, 50.01533], [-122.680954, 50.009519], [-122.686864, 50.002632], [-122.684634, 49.999684], [-122.683623, 49.997825], [-122.683493, 49.993359], [-122.680567, 49.986889], [-122.680304, 49.981234], [-122.68097, 49.979183], [-122.682138, 49.977338], [-122.686895, 49.972935], [-122.690917, 49.970498], [-122.700309, 49.965436], [-122.712355, 49.959741], [-122.718403, 49.956771], [-122.721256, 49.955213], [-122.723665, 49.95428], [-122.726197, 49.954112], [-122.733048, 49.953917], [-122.737523, 49.953674], [-122.74223, 49.952491], [-122.752522, 49.949769], [-122.757901, 49.949001], [-122.761228, 49.947967], [-122.763215, 49.946315], [-122.765487, 49.943378], [-122.766716, 49.940799], [-122.767831, 49.938751], [-122.768524, 49.935636], [-122.767404, 49.931214], [-122.758894, 49.92752], [-122.755926, 49.924512], [-122.752748, 49.91852], [-122.751779, 49.913705], [-122.746156, 49.908065], [-122.74547, 49.907659], [-122.748828, 49.903965], [-122.746162, 49.896432], [-122.746569, 49.891422], [-122.739216, 49.891649], [-122.730226, 49.890487], [-122.719933, 49.892033], [-122.714526, 49.890951], [-122.709675, 49.888706], [-122.708032, 49.887387], [-122.699529, 49.879627], [-122.692343, 49.876974], [-122.676915, 49.873879], [-122.665242, 49.872746], [-122.657027, 49.873216], [-122.645974, 49.87372], [-122.639119, 49.872341], [-122.626757, 49.876518], [-122.611953, 49.875051], [-122.601489, 49.876275], [-122.595037, 49.878913], [-122.586462, 49.878073], [-122.579353, 49.873229], [-122.578156, 49.87212], [-122.578672, 49.87024], [-122.584798, 49.866979], [-122.591773, 49.863847], [-122.599402, 49.863528], [-122.608469, 49.86102], [-122.611341, 49.856643], [-122.612357, 49.85214], [-122.61213, 49.848625], [-122.608469, 49.842685], [-122.610682, 49.838049], [-122.616221, 49.835059], [-122.621927, 49.835685], [-122.626525, 49.83861], [-122.626523, 49.838544], [-122.630576, 49.838188], [-122.634471, 49.835485], [-122.642343, 49.836555], [-122.651761, 49.836902], [-122.66089, 49.828277], [-122.664843, 49.823777], [-122.662278, 49.81913], [-122.654183, 49.818927], [-122.647071, 49.814652], [-122.641919, 49.812067], [-122.637372, 49.805729], [-122.648028, 49.795994], [-122.648454, 49.794273], [-122.647863, 49.790926], [-122.648841, 49.787636], [-122.64854, 49.785768], [-122.647397, 49.783988], [-122.642977, 49.78155], [-122.639174, 49.775749], [-122.638797, 49.775286], [-122.633826, 49.774416], [-122.626038, 49.776079], [-122.620375, 49.776232], [-122.614997, 49.777863], [-122.608367, 49.777949], [-122.602542, 49.776776], [-122.584632, 49.78286], [-122.551566, 49.782261], [-122.546299, 49.783653], [-122.541873, 49.78082], [-122.526133, 49.778672], [-122.520637, 49.780533], [-122.516794, 49.78458], [-122.509968, 49.784047], [-122.503175, 49.779107], [-122.495572, 49.779095], [-122.484925, 49.777785], [-122.480495, 49.772304], [-122.470051, 49.76679], [-122.453847, 49.749777], [-122.447509, 49.749854], [-122.443845, 49.755744], [-122.431054, 49.757742], [-122.42224, 49.754261], [-122.418105, 49.748167], [-122.422497, 49.747202], [-122.424255, 49.742476], [-122.430686, 49.74108], [-122.431889, 49.7337], [-122.425636, 49.725482], [-122.419477, 49.726272], [-122.41709, 49.720364], [-122.421022, 49.714388], [-122.424146, 49.713333], [-122.443099, 49.71468], [-122.444555, 49.714454], [-122.451484, 49.715637], [-122.457672, 49.713545], [-122.467809, 49.706278], [-122.472491, 49.699576], [-122.475105, 49.694502], [-122.468502, 49.687333], [-122.466619, 49.684979], [-122.470393, 49.681344], [-122.471642, 49.677973], [-122.475323, 49.676621], [-122.47086, 49.673826], [-122.464463, 49.669057], [-122.462234, 49.667483], [-122.460914, 49.664865], [-122.460831, 49.661829], [-122.461731, 49.658254], [-122.461574, 49.657082], [-122.460137, 49.654708], [-122.456005, 49.65192], [-122.454364, 49.648901], [-122.455286, 49.646136], [-122.455714, 49.64354], [-122.45446, 49.641002], [-122.448438, 49.637425], [-122.445781, 49.635993], [-122.429618, 49.638771], [-122.41239, 49.641299], [-122.402919, 49.64016], [-122.398518, 49.634009], [-122.388846, 49.62714], [-122.380958, 49.625636], [-122.366151, 49.621963], [-122.356909, 49.621409], [-122.345059, 49.621326], [-122.342015, 49.627147], [-122.340383, 49.634734], [-122.344521, 49.64109], [-122.3451, 49.644566], [-122.345699, 49.648852], [-122.349475, 49.652985], [-122.350124, 49.656744], [-122.348686, 49.659269], [-122.342266, 49.662249], [-122.333375, 49.663714], [-122.327496, 49.663246], [-122.31973, 49.662087], [-122.307824, 49.662328], [-122.296818, 49.663292], [-122.288254, 49.662003], [-122.28274, 49.657647], [-122.280846, 49.650344], [-122.281961, 49.643862], [-122.285524, 49.638085], [-122.289124, 49.631175], [-122.289881, 49.628579], [-122.293005, 49.619793], [-122.293755, 49.61384], [-122.292758, 49.610817], [-122.288832, 49.60766], [-122.278851, 49.603592], [-122.270913, 49.601891], [-122.260052, 49.600259], [-122.253696, 49.599755], [-122.253313, 49.599273], [-122.252388, 49.596532], [-122.252228, 49.594754], [-122.25022, 49.590749], [-122.244927, 49.587442], [-122.236823, 49.586508], [-122.220921, 49.58739], [-122.211816, 49.589136], [-122.202059, 49.589471], [-122.193434, 49.590442], [-122.185865, 49.594318], [-122.178324, 49.599612], [-122.17474, 49.600819], [-122.164842, 49.606599], [-122.158159, 49.60844], [-122.155049, 49.608468], [-122.151714, 49.606434], [-122.147361, 49.603113], [-122.140361, 49.601393], [-122.131035, 49.601676], [-122.116535, 49.604715], [-122.108509, 49.608023], [-122.102989, 49.60896], [-122.094009, 49.607799], [-122.092226, 49.605346], [-122.09112, 49.602362], [-122.090971, 49.600786], [-122.093362, 49.598261], [-122.094315, 49.595504], [-122.092028, 49.59261], [-122.087798, 49.588841], [-122.082034, 49.586298], [-122.077768, 49.584066], [-122.073777, 49.58337], [-122.071752, 49.581201], [-122.070624, 49.576599], [-122.072182, 49.572625], [-122.080023, 49.564219], [-122.081263, 49.559843], [-122.078609, 49.55311], [-122.078011, 49.546605], [-122.080495, 49.54222], [-122.086005, 49.540281], [-122.093323, 49.538451], [-122.106368, 49.53298], [-122.112294, 49.529985], [-122.115656, 49.526321], [-122.121071, 49.522682], [-122.127453, 49.517398], [-122.131043, 49.51264], [-122.133244, 49.50672], [-122.134491, 49.500507], [-122.126791, 49.490685], [-122.127028, 49.487327], [-122.132713, 49.483951], [-122.139405, 49.482251], [-122.138752, 49.476808], [-122.146834, 49.468876], [-122.145275, 49.464577], [-122.147166, 49.458214], [-122.142187, 49.448433], [-122.139912, 49.444978], [-122.142846, 49.439153], [-122.15038, 49.436691], [-122.153893, 49.433601], [-122.158803, 49.426262], [-122.165515, 49.422495], [-122.171057, 49.415503], [-122.17313, 49.409378], [-122.181788, 49.403426], [-122.183826, 49.397274], [-122.16732, 49.372485], [-122.152835, 49.365861], [-122.15969, 49.361105], [-122.167115, 49.356239], [-122.169952, 49.35248], [-122.170852, 49.349615], [-122.171094, 49.347032], [-122.170469, 49.346142], [-122.168524, 49.343818], [-122.165592, 49.340072], [-122.165962, 49.336713], [-122.166891, 49.333166], [-122.163796, 49.327858], [-122.16192, 49.324334], [-122.161246, 49.321444], [-122.156107, 49.319596], [-122.151379, 49.317149], [-122.146068, 49.313281], [-122.140185, 49.312722], [-122.134669, 49.313619], [-122.131824, 49.316299], [-122.131058, 49.318584], [-122.130616, 49.319933], [-122.13099, 49.324897], [-122.129688, 49.328816], [-122.126179, 49.33258], [-122.121799, 49.33548], [-122.114994, 49.335973], [-122.11115, 49.334644], [-122.106196, 49.333464], [-122.103054, 49.332585], [-122.098748, 49.333067], [-122.098245, 49.333321], [-122.097827, 49.333715], [-122.097258, 49.334098], [-122.096872, 49.334213], [-122.094843, 49.334327], [-122.093041, 49.335062], [-122.090012, 49.334801], [-122.086723, 49.332196], [-122.085349, 49.328018], [-122.08527, 49.325028], [-122.084405, 49.322826], [-122.079673, 49.319313], [-122.078717, 49.317664], [-122.076997, 49.316386], [-122.073386, 49.315624], [-122.069982, 49.314678], [-122.065616, 49.311623], [-122.059251, 49.307383], [-122.057481, 49.306294], [-122.053206, 49.304802], [-122.048006, 49.303377], [-122.044294, 49.30207], [-122.042205, 49.301021], [-122.040869, 49.300219], [-122.038808, 49.298126], [-122.033237, 49.29327], [-122.029471, 49.291069], [-122.020419, 49.285208], [-122.016371, 49.283245], [-122.014537, 49.279955], [-122.00572, 49.279366], [-122.015193, 49.274365], [-122.018517, 49.269766], [-122.028299, 49.266925], [-122.036213, 49.262292], [-122.043445, 49.260912], [-122.04397, 49.260852], [-122.044189, 49.261021], [-122.044642, 49.261088], [-122.045095, 49.260723], [-122.052995, 49.259816], [-122.060305, 49.256751], [-122.062156, 49.25144], [-122.072807, 49.238781], [-122.069798, 49.234047], [-122.075569, 49.23205], [-122.081995, 49.229928], [-122.092587, 49.228606], [-122.092987, 49.227602], [-122.095737, 49.22446], [-122.098064, 49.223183], [-122.103893, 49.220848], [-122.107141, 49.219465], [-122.108492, 49.218066], [-122.110271, 49.215128], [-122.111102, 49.213473], [-122.115135, 49.207844], [-122.122376, 49.201997], [-122.12768, 49.198173], [-122.08195, 49.197783], [-122.076745, 49.197837], [-122.072296, 49.197804], [-122.061719, 49.197058], [-122.061798, 49.193474], [-122.061685, 49.190292], [-122.056876, 49.192542], [-122.053888, 49.194513], [-122.053538, 49.19507], [-122.052307, 49.195654], [-122.052006, 49.196044], [-122.051799, 49.196114], [-122.051729, 49.196212], [-122.051643, 49.196392], [-122.051708, 49.196554], [-122.051652, 49.196644], [-122.051043, 49.196963], [-122.050525, 49.197459], [-122.050177, 49.197637], [-122.046452, 49.198761], [-122.043296, 49.199301], [-122.042572, 49.199115], [-122.041434, 49.198992], [-122.037361, 49.199825], [-122.037922, 49.202284], [-122.037951, 49.206376], [-122.027468, 49.2065], [-122.027294, 49.211656], [-122.018867, 49.211782], [-122.018967, 49.215546], [-122.0108, 49.215692], [-122.010908, 49.210433], [-122.011598, 49.209689], [-122.009122, 49.208593], [-122.004861, 49.207321], [-122.003741, 49.206832], [-122.00352, 49.206569], [-122.003595, 49.206178], [-122.003352, 49.205872], [-122.001972, 49.205133], [-122.001251, 49.204964], [-121.999034, 49.20513], [-121.997806, 49.205572], [-121.995767, 49.206027], [-121.994677, 49.205748], [-121.99311, 49.206486], [-121.992019, 49.206726], [-121.99024, 49.206748], [-121.989548, 49.206353], [-121.988809, 49.206415], [-121.986019, 49.206831], [-121.978936, 49.207531], [-121.974011, 49.207997], [-121.971873, 49.208095], [-121.970263, 49.207986], [-121.969394, 49.207709], [-121.967362, 49.208161], [-121.964746, 49.209611], [-121.960406, 49.212141], [-121.956737, 49.213236], [-121.953064, 49.214569], [-121.952203, 49.214441], [-121.948406, 49.215677], [-121.946769, 49.215822], [-121.944909, 49.215588], [-121.944577, 49.217925], [-121.943603, 49.222912], [-121.944392, 49.226021], [-121.944648, 49.22665], [-121.944985, 49.228341], [-121.94659, 49.228907], [-121.94663, 49.230822], [-121.94741, 49.231811], [-121.948966, 49.232878], [-121.950922, 49.233285], [-121.957639, 49.233415], [-121.96005, 49.23383], [-121.96217, 49.234342], [-121.964637, 49.235346], [-121.966264, 49.238247], [-121.964869, 49.240644], [-121.962447, 49.242108], [-121.957635, 49.243999], [-121.954601, 49.244807], [-121.946356, 49.248151], [-121.941708, 49.249611], [-121.936219, 49.25231], [-121.933573, 49.254598], [-121.932269, 49.256444], [-121.932173, 49.258119], [-121.930691, 49.261853], [-121.93013, 49.262348], [-121.929185, 49.262648], [-121.927231, 49.263489], [-121.924658, 49.26375], [-121.91969, 49.265071], [-121.918919, 49.266105], [-121.917544, 49.266782], [-121.91542, 49.267972], [-121.915561, 49.269431], [-121.914842, 49.271169], [-121.91459, 49.27154], [-121.914198, 49.272811], [-121.91427, 49.275872], [-121.914109, 49.276424], [-121.915862, 49.277172], [-121.916707, 49.276502], [-121.92331, 49.276378], [-121.937012, 49.280419], [-121.928247, 49.295065], [-121.928322, 49.301798], [-121.929114, 49.301822], [-121.931213, 49.301007], [-121.928029, 49.304178], [-121.927884, 49.309506], [-121.916738, 49.308879], [-121.903782, 49.30924], [-121.889666, 49.308445], [-121.888147, 49.308288], [-121.886967, 49.308653], [-121.885132, 49.308951], [-121.883509, 49.309102], [-121.882004, 49.309331], [-121.881175, 49.309322], [-121.881084, 49.308969], [-121.883619, 49.306793], [-121.885123, 49.305217], [-121.88601, 49.304761], [-121.888031, 49.303416], [-121.888338, 49.303055], [-121.888477, 49.301818], [-121.887717, 49.300579], [-121.885694, 49.294111], [-121.887462, 49.293064], [-121.892598, 49.290432], [-121.888929, 49.291387], [-121.885385, 49.293121], [-121.884325, 49.293433], [-121.882958, 49.29372], [-121.877655, 49.295347], [-121.874529, 49.295469], [-121.865521, 49.297504], [-121.86006, 49.296937], [-121.850462, 49.299066], [-121.845638, 49.299825], [-121.839498, 49.298795], [-121.829558, 49.300252], [-121.824674, 49.301824], [-121.822514, 49.302393], [-121.816627, 49.303507], [-121.813934, 49.304116], [-121.80853, 49.305758], [-121.805208, 49.30842], [-121.801735, 49.311928], [-121.799179, 49.313888], [-121.796752, 49.315346], [-121.763878, 49.333988], [-121.765242, 49.359363], [-121.752256, 49.3592], [-121.745641, 49.359065], [-121.720676, 49.360732], [-121.710702, 49.36149], [-121.708568, 49.361316], [-121.689613, 49.360632], [-121.690309, 49.362516], [-121.691154, 49.365643], [-121.691845, 49.36672], [-121.692377, 49.36803], [-121.695937, 49.374223], [-121.698081, 49.377555], [-121.699573, 49.382216], [-121.708398, 49.385553], [-121.718331, 49.39148], [-121.711555, 49.401056], [-121.698024, 49.407364], [-121.699365, 49.415793], [-121.695869, 49.421764], [-121.683799, 49.423933], [-121.674199, 49.432602], [-121.665584, 49.437867], [-121.654271, 49.447053], [-121.645814, 49.452302], [-121.647824, 49.457984], [-121.658688, 49.461938], [-121.660585, 49.468001], [-121.646648, 49.474044], [-121.636821, 49.483501], [-121.629272, 49.489553], [-121.625143, 49.496542], [-121.618745, 49.501742], [-121.610114, 49.499528], [-121.600829, 49.495863], [-121.593158, 49.490117], [-121.581296, 49.487732], [-121.572195, 49.486491], [-121.56936, 49.496385], [-121.571081, 49.4982], [-121.570153, 49.500065], [-121.570644, 49.502408], [-121.571869, 49.503992], [-121.57199, 49.50637], [-121.576347, 49.510465], [-121.570025, 49.51118], [-121.565286, 49.512232], [-121.563028, 49.513756], [-121.561092, 49.516208], [-121.561834, 49.520585], [-121.560794, 49.523], [-121.557335, 49.526561], [-121.554706, 49.52812], [-121.55466, 49.529085], [-121.559644, 49.532113], [-121.56045, 49.53418], [-121.559519, 49.537251], [-121.560807, 49.540282], [-121.561457, 49.542832], [-121.560845, 49.546144], [-121.562799, 49.558069], [-121.56509, 49.560858], [-121.567001, 49.562131], [-121.566058, 49.563306], [-121.564109, 49.564037], [-121.555409, 49.565621], [-121.550562, 49.567395], [-121.547512, 49.56961], [-121.544247, 49.571206], [-121.540662, 49.572046], [-121.539456, 49.573566], [-121.539441, 49.575428], [-121.540883, 49.577977], [-121.546146, 49.582557], [-121.546068, 49.587074], [-121.548214, 49.59207], [-121.548531, 49.600345], [-121.550499, 49.602033], [-121.556249, 49.603306], [-121.562349, 49.605542], [-121.563896, 49.607368], [-121.56903, 49.607162], [-121.578682, 49.609878], [-121.586047, 49.610668], [-121.59378, 49.611078], [-121.596436, 49.612454], [-121.597403, 49.614383], [-121.600296, 49.615552], [-121.607613, 49.616959], [-121.610331, 49.619437], [-121.613198, 49.620399], [-121.618302, 49.623218], [-121.625618, 49.62428], [-121.627734, 49.623764], [-121.635976, 49.620393], [-121.638307, 49.620494], [-121.6414, 49.623281], [-121.644162, 49.624276], [-121.64596, 49.623863], [-121.651208, 49.620392], [-121.658604, 49.617638], [-121.671408, 49.616044], [-121.67785, 49.620064], [-121.679683, 49.623611], [-121.680577, 49.628678], [-121.685162, 49.632011], [-121.685916, 49.63332], [-121.684762, 49.635477], [-121.68564, 49.637644], [-121.686976, 49.645687], [-121.692779, 49.654216], [-121.694145, 49.65727], [-121.698653, 49.658237], [-121.698756, 49.6611], [-121.700161, 49.664614], [-121.702519, 49.667988], [-121.700688, 49.670928], [-121.693951, 49.676442], [-121.690092, 49.684288], [-121.684363, 49.690417], [-121.68409, 49.692799], [-121.68659, 49.693966], [-121.692477, 49.694544], [-121.694236, 49.695782], [-121.694562, 49.696885], [-121.695903, 49.698779], [-121.698962, 49.700607], [-121.701448, 49.701583], [-121.701047, 49.702592], [-121.6988, 49.704959], [-121.697446, 49.705985], [-121.697379, 49.707153], [-121.699485, 49.715577], [-121.707406, 49.720251], [-121.717492, 49.727704], [-121.719458, 49.728611], [-121.729875, 49.73312], [-121.73274, 49.73458], [-121.733806, 49.735602], [-121.73297, 49.736563], [-121.729916, 49.737566], [-121.725553, 49.739771], [-121.718766, 49.7426], [-121.710236, 49.745572], [-121.708929, 49.747116], [-121.708996, 49.748724], [-121.711826, 49.752168], [-121.711411, 49.759081], [-121.714923, 49.764747], [-121.714016, 49.769848], [-121.71339, 49.77074], [-121.707795, 49.771545], [-121.70564, 49.772853], [-121.704807, 49.774327], [-121.708239, 49.780063], [-121.70525, 49.782844], [-121.70443, 49.785858], [-121.704614, 49.7888], [-121.705458, 49.791569], [-121.707004, 49.793034], [-121.709813, 49.793742], [-121.713301, 49.793455], [-121.720272, 49.792194], [-121.725854, 49.795423], [-121.729208, 49.79784], [-121.730922, 49.800194], [-121.731955, 49.803201], [-121.731732, 49.80765], [-121.731333, 49.813058], [-121.72972, 49.816076], [-121.723401, 49.819349], [-121.718284, 49.821112], [-121.71395, 49.821675], [-121.712474, 49.82233], [-121.712698, 49.823629], [-121.714614, 49.824888], [-121.717817, 49.827956], [-121.720268, 49.829726], [-121.721394, 49.83133], [-121.72517, 49.833266], [-121.727255, 49.835585], [-121.728301, 49.837087], [-121.727627, 49.838595], [-121.725738, 49.840416], [-121.725539, 49.841854], [-121.72653, 49.845991], [-121.729153, 49.848993], [-121.731547, 49.850181], [-121.736212, 49.85071], [-121.741724, 49.851132], [-121.749194, 49.85134], [-121.752266, 49.85136], [-121.754424, 49.850823], [-121.754299, 49.85092], [-121.756707, 49.850687], [-121.758518, 49.852275], [-121.755496, 49.864421], [-121.758016, 49.869535], [-121.760808, 49.871892], [-121.769195, 49.87229], [-121.77285, 49.870967], [-121.775518, 49.868391], [-121.77565, 49.866648], [-121.78046, 49.861304], [-121.778023, 49.857008], [-121.778008, 49.855556], [-121.779707, 49.85342], [-121.783736, 49.852337], [-121.785222, 49.851362], [-121.787172, 49.844531], [-121.790285, 49.841807], [-121.793342, 49.840922], [-121.800164, 49.842437], [-121.80438, 49.844931], [-121.809, 49.850082], [-121.813269, 49.853832], [-121.817026, 49.855264], [-121.822178, 49.854416], [-121.828836, 49.854286], [-121.836787, 49.856034], [-121.844154, 49.858946], [-121.845448, 49.860824], [-121.843309, 49.863349], [-121.8367, 49.867586], [-121.835162, 49.870397], [-121.840195, 49.872016], [-121.858075, 49.880384], [-121.863227, 49.879292], [-121.867487, 49.878736], [-121.86935, 49.878], [-121.870896, 49.875911], [-121.870927, 49.872378], [-121.873151, 49.870673], [-121.875914, 49.870125], [-121.887986, 49.871846], [-121.89502, 49.871709], [-121.897782, 49.871161], [-121.905825, 49.873726], [-121.909301, 49.873367], [-121.912054, 49.872092], [-121.914498, 49.870191], [-121.917257, 49.8694], [-121.92279, 49.869028], [-121.926591, 49.867893], [-121.929697, 49.865164], [-121.931428, 49.86046], [-121.935734, 49.858063], [-121.941176, 49.856626], [-121.947975, 49.855955], [-121.954896, 49.858522], [-121.960349, 49.860422], [-121.965416, 49.858986], [-121.970702, 49.85213], [-121.972613, 49.849795], [-121.969952, 49.846908], [-121.966849, 49.844411], [-121.965228, 49.840936], [-121.966165, 49.83856], [-121.968678, 49.836511], [-121.978606, 49.835285], [-121.982479, 49.834244], [-121.987683, 49.832274], [-121.989367, 49.829892], [-121.99081, 49.826496], [-121.991011, 49.822478], [-121.992022, 49.820198], [-122.001519, 49.820326], [-122.001552, 49.820201], [-122.011911, 49.818911], [-122.019757, 49.816124], [-122.03256, 49.816202], [-122.039273, 49.817053], [-122.046912, 49.822428], [-122.049321, 49.829221], [-122.046573, 49.831907], [-122.043005, 49.835545], [-122.052148, 49.837537], [-122.06149, 49.835566], [-122.069568, 49.831543], [-122.07621, 49.836617], [-122.078708, 49.837854], [-122.087433, 49.839333], [-122.092036, 49.840844], [-122.094797, 49.843819], [-122.096721, 49.846221], [-122.104714, 49.84843], [-122.112472, 49.857166], [-122.124189, 49.866837], [-122.13071, 49.873552], [-122.13282, 49.877353], [-122.135294, 49.883956], [-122.137217, 49.886115], [-122.146446, 49.89126], [-122.154862, 49.90173], [-122.15933, 49.906817], [-122.163667, 49.909391], [-122.169453, 49.909534], [-122.18122, 49.908173], [-122.190736, 49.910604], [-122.207936, 49.912238], [-122.226517, 49.920048], [-122.235375, 49.926107], [-122.237412, 49.936822], [-122.240065, 49.940811], [-122.252108, 49.948727], [-122.258619, 49.953743], [-122.271292, 49.963101], [-122.268385, 49.970439], [-122.264955, 49.97496], [-122.262707, 49.975508], [-122.256694, 49.976791], [-122.249387, 49.979694], [-122.249619, 49.984613], [-122.254721, 49.991002], [-122.256831, 49.994105], [-122.25809, 49.998921], [-122.261393, 50.003055], [-122.257991, 50.010373], [-122.261045, 50.016971], [-122.256312, 50.024018], [-122.255331, 50.035291], [-122.260616, 50.043288], [-122.272609, 50.04857], [-122.288836, 50.051525], [-122.289188, 50.059717], [-122.288328, 50.062436], [-122.285208, 50.065176], [-122.281844, 50.066902], [-122.279392, 50.069054], [-122.278305, 50.071727], [-122.279035, 50.077625], [-122.278171, 50.080102], [-122.274692, 50.084055], [-122.271175, 50.085831], [-122.254519, 50.09184], [-122.244584, 50.093915], [-122.242279, 50.096017], [-122.23887, 50.102437], [-122.234639, 50.10688], [-122.230522, 50.109095], [-122.229448, 50.111703], [-122.2275, 50.113472], [-122.224866, 50.115544], [-122.223418, 50.116922], [-122.222981, 50.118114], [-122.222665, 50.118443], [-122.221975, 50.118598], [-122.221381, 50.11887], [-122.221248, 50.119138], [-122.221767, 50.119639], [-122.222329, 50.120049], [-122.222917, 50.121648], [-122.224862, 50.124066], [-122.226016, 50.126223], [-122.227091, 50.126837], [-122.228249, 50.126975], [-122.231646, 50.125995], [-122.236108, 50.125184], [-122.238468, 50.125371], [-122.243135, 50.126453], [-122.244332, 50.126243], [-122.245519, 50.125597], [-122.246454, 50.125181], [-122.248111, 50.124929], [-122.250824, 50.124399], [-122.25293, 50.123549], [-122.255939, 50.1218], [-122.25844, 50.123444], [-122.356993, 50.12405], [-122.405867, 50.123336], [-122.51885, 50.123741], [-122.522168, 50.12384], [-122.522318, 50.123209], [-122.522895, 50.12187], [-122.524467, 50.120419], [-122.525564, 50.11995], [-122.526783, 50.11927], [-122.527229, 50.119523], [-122.527703, 50.119697], [-122.527785, 50.119768], [-122.527728, 50.120002], [-122.52844, 50.120032], [-122.529165, 50.120403], [-122.529303, 50.120422], [-122.529822, 50.120316], [-122.530507, 50.120409], [-122.532872, 50.120319], [-122.532704, 50.121923], [-122.532073, 50.123803], [-122.551151, 50.123819], [-122.573832, 50.123497], [-122.638225, 50.123263], [-122.637998, 50.127804], [-122.651752, 50.131237], [-122.658436, 50.134931], [-122.659291, 50.140382], [-122.659916, 50.143148], [-122.671367, 50.144171], [-122.681997, 50.144196], [-122.693024, 50.144298], [-122.701045, 50.144777], [-122.707509, 50.145781], [-122.713652, 50.148806], [-122.717206, 50.152707], [-122.725639, 50.153683], [-122.733962, 50.151296]], [[-122.22243, 49.773746], [-122.222421, 49.774294], [-122.221841, 49.7743], [-122.221897, 49.773751], [-122.22243, 49.773746]], [[-122.542212, 50.049057], [-122.542657, 50.05512], [-122.542045, 50.05511], [-122.541581, 50.054932], [-122.541359, 50.054914], [-122.539626, 50.054978], [-122.538663, 50.054867], [-122.537799, 50.054549], [-122.537429, 50.053873], [-122.536945, 50.053384], [-122.535899, 50.0516], [-122.535279, 50.050851], [-122.534241, 50.049777], [-122.533626, 50.048822], [-122.542212, 50.049057]], [[-122.459308, 49.990089], [-122.458905, 49.991906], [-122.456002, 49.991802], [-122.45605, 49.989266], [-122.456262, 49.98798], [-122.455066, 49.988152], [-122.445855, 49.988347], [-122.445816, 49.984402], [-122.448552, 49.984339], [-122.451407, 49.984189], [-122.453368, 49.984181], [-122.455445, 49.987177], [-122.455899, 49.987683], [-122.459308, 49.990089]], [[-122.402883, 49.935192], [-122.381045, 49.936343], [-122.37872, 49.929993], [-122.387972, 49.929489], [-122.388258, 49.926922], [-122.388482, 49.926969], [-122.388813, 49.927132], [-122.38946, 49.928239], [-122.391108, 49.929364], [-122.392764, 49.930177], [-122.393357, 49.930268], [-122.39463, 49.931129], [-122.39804, 49.932406], [-122.399998, 49.932965], [-122.400875, 49.933131], [-122.401567, 49.93344], [-122.401815, 49.933631], [-122.401967, 49.933875], [-122.402371, 49.934928], [-122.402883, 49.935192]], [[-122.008497, 49.232586], [-122.008528, 49.233565], [-122.00835, 49.237428], [-122.00786, 49.246269], [-122.002368, 49.246644], [-121.981076, 49.246115], [-121.980892, 49.244992], [-121.982329, 49.244818], [-121.987096, 49.244409], [-121.989397, 49.244103], [-121.994397, 49.243241], [-121.995721, 49.242533], [-121.995822, 49.242282], [-121.995933, 49.240907], [-121.995976, 49.240817], [-121.996533, 49.240426], [-121.996604, 49.24031], [-121.996572, 49.239878], [-121.996811, 49.239583], [-121.996707, 49.23933], [-121.997067, 49.239146], [-121.997139, 49.239037], [-121.997132, 49.238668], [-121.997247, 49.238417], [-121.997132, 49.237985], [-121.997526, 49.237547], [-121.997386, 49.236997], [-121.997667, 49.236685], [-121.997603, 49.236433], [-121.997954, 49.236067], [-121.998159, 49.235421], [-121.998445, 49.234875], [-121.998869, 49.234303], [-121.999288, 49.233982], [-121.999599, 49.233247], [-121.999568, 49.23311], [-121.999297, 49.232924], [-122.000066, 49.232851], [-122.000174, 49.232615], [-122.000791, 49.232491], [-122.004082, 49.232793], [-122.005449, 49.232812], [-122.005977, 49.23276], [-122.007168, 49.232506], [-122.008393, 49.232059], [-122.008497, 49.232586]], [[-122.418481, 49.944068], [-122.420429, 49.945516], [-122.420606, 49.94577], [-122.42066, 49.946066], [-122.420702, 49.947128], [-122.420644, 49.947352], [-122.419555, 49.948669], [-122.419466, 49.948974], [-122.419544, 49.949551], [-122.420459, 49.951093], [-122.422113, 49.952985], [-122.420075, 49.952947], [-122.403454, 49.952066], [-122.403, 49.934905], [-122.418179, 49.934659], [-122.418481, 49.944068]], [[-122.201591, 49.765136], [-122.201187, 49.764387], [-122.200582, 49.763969], [-122.198945, 49.761356], [-122.198137, 49.760421], [-122.196933, 49.759535], [-122.19574, 49.759209], [-122.194255, 49.759061], [-122.192706, 49.759459], [-122.190084, 49.760537], [-122.18843, 49.760567], [-122.188164, 49.760858], [-122.187595, 49.760846], [-122.186669, 49.76023], [-122.18629, 49.759833], [-122.185143, 49.759331], [-122.182144, 49.758844], [-122.181256, 49.758899], [-122.180685, 49.759171], [-122.180209, 49.759249], [-122.17966, 49.758976], [-122.178489, 49.758912], [-122.177673, 49.75846], [-122.176877, 49.758189], [-122.17424, 49.75644], [-122.173068, 49.755489], [-122.171468, 49.754521], [-122.16902, 49.754829], [-122.169415, 49.756469], [-122.169912, 49.757457], [-122.169989, 49.758013], [-122.15258, 49.758259], [-122.151668, 49.758863], [-122.15121, 49.759642], [-122.15148, 49.760867], [-122.151614, 49.761039], [-122.152025, 49.761401], [-122.154211, 49.762615], [-122.154342, 49.763065], [-122.153968, 49.764708], [-122.154056, 49.765185], [-122.154358, 49.765439], [-122.156331, 49.766074], [-122.157198, 49.766548], [-122.158937, 49.767991], [-122.159222, 49.768407], [-122.158966, 49.76881], [-122.159509, 49.770235], [-122.159862, 49.770733], [-122.160467, 49.771114], [-122.158899, 49.771181], [-122.148955, 49.771046], [-122.148582, 49.765954], [-122.143048, 49.76603], [-122.143336, 49.754204], [-122.147183, 49.752674], [-122.150689, 49.751557], [-122.155638, 49.751021], [-122.168439, 49.751106], [-122.167687, 49.750829], [-122.167447, 49.750644], [-122.167056, 49.750483], [-122.18015, 49.750189], [-122.180549, 49.753817], [-122.202852, 49.753729], [-122.201591, 49.765136]]]]}, "properties": {"name": "Fraser Valley C", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley C", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909048", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.3404, 49.103921], [-122.341044, 49.103867], [-122.342277, 49.103634], [-122.34258, 49.103667], [-122.343252, 49.103864], [-122.343765, 49.103927], [-122.351839, 49.103888], [-122.352032, 49.103824], [-122.357752, 49.103707], [-122.359136, 49.103772], [-122.359546, 49.103918], [-122.359964, 49.103963], [-122.359625, 49.109013], [-122.359672, 49.11775], [-122.359893, 49.119187], [-122.372773, 49.128214], [-122.387243, 49.138008], [-122.388584, 49.140463], [-122.391426, 49.143895], [-122.393645, 49.146742], [-122.395082, 49.148338], [-122.399585, 49.151864], [-122.40127, 49.153059], [-122.41262, 49.159996], [-122.414484, 49.161575], [-122.4164, 49.164008], [-122.417024, 49.164585], [-122.418318, 49.165502], [-122.419849, 49.166379], [-122.42253, 49.167628], [-122.42582, 49.168832], [-122.435664, 49.170605], [-122.441363, 49.171303], [-122.444832, 49.171637], [-122.451073, 49.171942], [-122.456845, 49.171768], [-122.461496, 49.171328], [-122.461326, 49.16531], [-122.461425, 49.164479], [-122.461403, 49.160345], [-122.461158, 49.154441], [-122.461194, 49.151067], [-122.46142, 49.150787], [-122.461244, 49.149526], [-122.461015, 49.146628], [-122.460748, 49.132513], [-122.460465, 49.127495], [-122.460669, 49.118263], [-122.460526, 49.110728], [-122.460561, 49.105174], [-122.460447, 49.103493], [-122.460534, 49.095145], [-122.460227, 49.089349], [-122.460235, 49.088215], [-122.459574, 49.080424], [-122.459586, 49.078782], [-122.460007, 49.074996], [-122.459793, 49.066056], [-122.459781, 49.055003], [-122.459715, 49.054486], [-122.459779, 49.054128], [-122.459768, 49.028338], [-122.459409, 49.026097], [-122.459869, 49.025509], [-122.45993, 49.024535], [-122.45973, 49.016899], [-122.45917, 49.002257], [-122.360181, 49.00236], [-122.339865, 49.002176], [-122.327052, 49.002236], [-122.320063, 49.002453], [-122.315746, 49.002419], [-122.293546, 49.002459], [-122.271575, 49.002294], [-122.249101, 49.002353], [-122.234463, 49.00225], [-122.222545, 49.002398], [-122.220999, 49.002337], [-122.213867, 49.002291], [-122.159177, 49.002396], [-122.156204, 49.002334], [-122.143309, 49.002268], [-122.116775, 49.002212], [-122.116956, 49.006916], [-122.116973, 49.016369], [-122.101554, 49.016585], [-122.094331, 49.016597], [-122.094603, 49.024883], [-122.094689, 49.03249], [-122.094644, 49.036496], [-122.094431, 49.038442], [-122.091303, 49.038437], [-122.083579, 49.038278], [-122.083439, 49.045636], [-122.072562, 49.045487], [-122.072859, 49.052883], [-122.07291, 49.056156], [-122.07263, 49.057943], [-122.075962, 49.058858], [-122.075702, 49.059164], [-122.074974, 49.060364], [-122.080352, 49.060359], [-122.080475, 49.088181], [-122.081092, 49.089186], [-122.081098, 49.089332], [-122.080419, 49.089335], [-122.080379, 49.101893], [-122.080126, 49.106026], [-122.097139, 49.124143], [-122.097697, 49.125355], [-122.098342, 49.126408], [-122.098975, 49.126995], [-122.097974, 49.128237], [-122.096703, 49.130448], [-122.095529, 49.132932], [-122.100115, 49.132816], [-122.100191, 49.131384], [-122.102679, 49.131387], [-122.102791, 49.129999], [-122.105324, 49.12994], [-122.106005, 49.124146], [-122.108728, 49.124083], [-122.108944, 49.122071], [-122.111858, 49.121971], [-122.11211, 49.11834], [-122.115404, 49.118289], [-122.115849, 49.110946], [-122.115768, 49.107784], [-122.117704, 49.107304], [-122.119228, 49.107091], [-122.12051, 49.106745], [-122.12203, 49.10612], [-122.123558, 49.105212], [-122.124731, 49.104076], [-122.12539, 49.10215], [-122.126922, 49.100604], [-122.12795, 49.099375], [-122.128515, 49.098834], [-122.129331, 49.098258], [-122.130337, 49.097668], [-122.130741, 49.0975], [-122.13202, 49.097078], [-122.134107, 49.096898], [-122.14184, 49.096889], [-122.14715, 49.096794], [-122.152824, 49.096871], [-122.161205, 49.096846], [-122.161214, 49.096589], [-122.184813, 49.096553], [-122.184416, 49.104163], [-122.161852, 49.10417], [-122.161747, 49.113528], [-122.174261, 49.113549], [-122.173763, 49.119346], [-122.184903, 49.119252], [-122.185319, 49.124812], [-122.173525, 49.125056], [-122.173618, 49.132024], [-122.169774, 49.132171], [-122.169682, 49.134151], [-122.165009, 49.134362], [-122.164944, 49.135539], [-122.159397, 49.135757], [-122.159451, 49.138568], [-122.158175, 49.138775], [-122.155708, 49.139415], [-122.15484, 49.139741], [-122.152573, 49.140768], [-122.152134, 49.140801], [-122.15093, 49.140719], [-122.149705, 49.140738], [-122.149984, 49.143904], [-122.152133, 49.14382], [-122.152637, 49.143737], [-122.153879, 49.14339], [-122.159054, 49.141184], [-122.166298, 49.140116], [-122.181508, 49.138234], [-122.196592, 49.131692], [-122.201245, 49.13078], [-122.21249, 49.130746], [-122.215647, 49.130939], [-122.22024, 49.13144], [-122.224171, 49.132388], [-122.227739, 49.133553], [-122.231005, 49.134895], [-122.241264, 49.139812], [-122.249701, 49.143192], [-122.255911, 49.14505], [-122.257515, 49.145261], [-122.259575, 49.145196], [-122.26188, 49.144734], [-122.264517, 49.14356], [-122.267944, 49.141568], [-122.271164, 49.139816], [-122.281882, 49.134814], [-122.289241, 49.131269], [-122.294638, 49.128972], [-122.299161, 49.126777], [-122.307142, 49.122433], [-122.311905, 49.120481], [-122.313471, 49.120062], [-122.315477, 49.119807], [-122.316887, 49.118663], [-122.318123, 49.117555], [-122.325112, 49.112792], [-122.327239, 49.111527], [-122.327948, 49.111228], [-122.336059, 49.109342], [-122.338426, 49.109053], [-122.338419, 49.107195], [-122.338503, 49.105816], [-122.33846, 49.103917], [-122.3404, 49.103921]], [[-122.207135, 49.056975], [-122.207282, 49.060426], [-122.201312, 49.060728], [-122.194799, 49.060592], [-122.194474, 49.060714], [-122.194405, 49.060803], [-122.191506, 49.060798], [-122.191565, 49.057753], [-122.182897, 49.05755], [-122.182803, 49.056321], [-122.183318, 49.055651], [-122.182976, 49.053555], [-122.182957, 49.052699], [-122.182971, 49.047632], [-122.183223, 49.046686], [-122.183652, 49.046403], [-122.18463, 49.045979], [-122.190009, 49.045814], [-122.189941, 49.040519], [-122.194446, 49.040653], [-122.194378, 49.040764], [-122.194469, 49.044324], [-122.196758, 49.04429], [-122.199812, 49.047441], [-122.200573, 49.047837], [-122.200625, 49.048061], [-122.203273, 49.05041], [-122.204669, 49.051859], [-122.206273, 49.053264], [-122.206299, 49.054952], [-122.203544, 49.056532], [-122.202308, 49.05703], [-122.200979, 49.05743], [-122.199762, 49.057599], [-122.198781, 49.057548], [-122.198249, 49.057694], [-122.197873, 49.057721], [-122.197857, 49.057626], [-122.196955, 49.057585], [-122.196345, 49.057495], [-122.19328, 49.056561], [-122.193026, 49.057391], [-122.194034, 49.05845], [-122.19599, 49.059818], [-122.196521, 49.059548], [-122.196615, 49.058185], [-122.197495, 49.058497], [-122.199006, 49.058653], [-122.20034, 49.058534], [-122.202159, 49.058135], [-122.204098, 49.057515], [-122.205274, 49.056871], [-122.205138, 49.056699], [-122.20658, 49.055849], [-122.207135, 49.056975]]]]}, "properties": {"name": "Abbotsford", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Abbotsford", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909052", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.409982, 49.352951], [-122.409886, 49.332736], [-122.408883, 49.297805], [-122.408656, 49.293363], [-122.40916, 49.264271], [-122.424302, 49.26408], [-122.424142, 49.243551], [-122.424434, 49.235621], [-122.424352, 49.228368], [-122.424515, 49.220378], [-122.423995, 49.219189], [-122.424255, 49.205069], [-122.424417, 49.204715], [-122.424244, 49.203669], [-122.424326, 49.198318], [-122.423804, 49.191104], [-122.41579, 49.191379], [-122.415734, 49.191103], [-122.413297, 49.191205], [-122.413299, 49.190964], [-122.413486, 49.190729], [-122.410714, 49.187375], [-122.411937, 49.186643], [-122.41372, 49.185934], [-122.415054, 49.185258], [-122.417294, 49.183624], [-122.419044, 49.182118], [-122.421985, 49.183512], [-122.42212, 49.183683], [-122.421962, 49.184259], [-122.424599, 49.184504], [-122.424853, 49.182046], [-122.425118, 49.180303], [-122.425228, 49.180159], [-122.425191, 49.179963], [-122.424802, 49.178963], [-122.421939, 49.176693], [-122.422253, 49.174959], [-122.422452, 49.174712], [-122.422323, 49.174418], [-122.422513, 49.173526], [-122.42582, 49.168832], [-122.42253, 49.167628], [-122.419849, 49.166379], [-122.418318, 49.165502], [-122.417024, 49.164585], [-122.4164, 49.164008], [-122.414484, 49.161575], [-122.41262, 49.159996], [-122.40127, 49.153059], [-122.399585, 49.151864], [-122.395082, 49.148338], [-122.393645, 49.146742], [-122.391426, 49.143895], [-122.388584, 49.140463], [-122.387243, 49.138008], [-122.372773, 49.128214], [-122.359893, 49.119187], [-122.355881, 49.116151], [-122.350408, 49.113051], [-122.343615, 49.109543], [-122.341901, 49.109082], [-122.338426, 49.109053], [-122.336059, 49.109342], [-122.327948, 49.111228], [-122.327239, 49.111527], [-122.325112, 49.112792], [-122.318123, 49.117555], [-122.316887, 49.118663], [-122.315477, 49.119807], [-122.313471, 49.120062], [-122.311905, 49.120481], [-122.307142, 49.122433], [-122.299161, 49.126777], [-122.294638, 49.128972], [-122.289241, 49.131269], [-122.281882, 49.134814], [-122.271164, 49.139816], [-122.267944, 49.141568], [-122.264517, 49.14356], [-122.26188, 49.144734], [-122.259575, 49.145196], [-122.257515, 49.145261], [-122.255911, 49.14505], [-122.249701, 49.143192], [-122.247288, 49.145243], [-122.245708, 49.145799], [-122.243807, 49.145678], [-122.242413, 49.145399], [-122.241908, 49.145221], [-122.239209, 49.143789], [-122.236949, 49.14317], [-122.235997, 49.14306], [-122.235255, 49.143144], [-122.234719, 49.143278], [-122.234136, 49.143826], [-122.233398, 49.143963], [-122.231801, 49.143969], [-122.228192, 49.144181], [-122.227691, 49.144392], [-122.2256, 49.145668], [-122.225113, 49.146235], [-122.224923, 49.146655], [-122.225076, 49.147207], [-122.225967, 49.148466], [-122.226327, 49.149272], [-122.226109, 49.149981], [-122.225394, 49.150552], [-122.225293, 49.150761], [-122.22569, 49.151555], [-122.225916, 49.151753], [-122.226331, 49.15193], [-122.228598, 49.151654], [-122.229322, 49.151664], [-122.229976, 49.151545], [-122.231647, 49.150662], [-122.232404, 49.150442], [-122.23295, 49.150409], [-122.233423, 49.150536], [-122.234088, 49.151358], [-122.234055, 49.151643], [-122.233706, 49.152293], [-122.233706, 49.152533], [-122.234064, 49.15311], [-122.234187, 49.154154], [-122.235031, 49.155556], [-122.236209, 49.156866], [-122.243341, 49.162224], [-122.2478, 49.169715], [-122.248828, 49.173563], [-122.249053, 49.174804], [-122.248911, 49.17636], [-122.253755, 49.176488], [-122.269975, 49.176643], [-122.270261, 49.182969], [-122.269279, 49.186602], [-122.27013, 49.19339], [-122.270461, 49.193756], [-122.270848, 49.193983], [-122.270936, 49.194141], [-122.270881, 49.194274], [-122.270423, 49.194558], [-122.270257, 49.195416], [-122.27021, 49.210058], [-122.27026, 49.215792], [-122.27042, 49.220831], [-122.27025, 49.233302], [-122.270563, 49.251822], [-122.27104, 49.263802], [-122.274376, 49.264009], [-122.274364, 49.270978], [-122.2739, 49.274814], [-122.273148, 49.283114], [-122.276825, 49.288855], [-122.277495, 49.289742], [-122.283877, 49.294981], [-122.292675, 49.302434], [-122.294048, 49.303879], [-122.294819, 49.3054], [-122.294999, 49.306586], [-122.298365, 49.312712], [-122.294431, 49.323952], [-122.295277, 49.32555], [-122.296024, 49.329077], [-122.296675, 49.336371], [-122.298599, 49.343033], [-122.298739, 49.344775], [-122.299137, 49.345916], [-122.301676, 49.349037], [-122.302182, 49.350327], [-122.302438, 49.353923], [-122.301005, 49.355824], [-122.319073, 49.354878], [-122.321492, 49.354667], [-122.33281, 49.353987], [-122.360522, 49.353423], [-122.363963, 49.361001], [-122.373742, 49.358581], [-122.37127, 49.353262], [-122.409982, 49.352951]]]]}, "properties": {"name": "Mission", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Mission", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909056", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.936483, 49.917408], [-122.9437, 49.913135], [-122.950734, 49.911163], [-122.954567, 49.904468], [-122.962013, 49.902577], [-122.964495, 49.899706], [-122.965754, 49.897032], [-122.969116, 49.88893], [-122.973893, 49.882799], [-122.980498, 49.880901], [-122.985344, 49.877342], [-122.985889, 49.875644], [-122.987027, 49.872996], [-123.002481, 49.856107], [-123.000365, 49.85446], [-122.996395, 49.854335], [-122.995493, 49.85465], [-122.989214, 49.8576], [-122.985243, 49.857475], [-122.979154, 49.84688], [-122.975516, 49.842881], [-122.971886, 49.839129], [-122.964654, 49.834995], [-122.953474, 49.833609], [-122.948063, 49.833608], [-122.944635, 49.83367], [-122.924909, 49.831988], [-122.916238, 49.830355], [-122.907415, 49.826392], [-122.901945, 49.824653], [-122.892103, 49.826316], [-122.887722, 49.827336], [-122.884366, 49.827246], [-122.880551, 49.826995], [-122.877748, 49.824413], [-122.874773, 49.82337], [-122.872208, 49.821957], [-122.873671, 49.818478], [-122.88041, 49.811374], [-122.886879, 49.804819], [-122.889913, 49.801954], [-122.88983, 49.798772], [-122.887045, 49.794451], [-122.882724, 49.790428], [-122.874073, 49.781926], [-122.867881, 49.776022], [-122.86759, 49.775663], [-122.871436, 49.770472], [-122.855794, 49.75618], [-122.855033, 49.754735], [-122.854265, 49.750861], [-122.85441, 49.748138], [-122.855337, 49.743462], [-122.855946, 49.742774], [-122.850395, 49.741043], [-122.8465, 49.73718], [-122.842238, 49.734363], [-122.834688, 49.729904], [-122.832208, 49.725975], [-122.830975, 49.722623], [-122.828381, 49.719487], [-122.825002, 49.715867], [-122.81696, 49.714081], [-122.81423, 49.711244], [-122.813553, 49.700648], [-122.815701, 49.698136], [-122.815314, 49.696309], [-122.816997, 49.694967], [-122.823652, 49.690745], [-122.830252, 49.68621], [-122.837939, 49.681286], [-122.845679, 49.676502], [-122.852452, 49.671509], [-122.853856, 49.66596], [-122.847493, 49.663873], [-122.84189, 49.661159], [-122.836861, 49.660186], [-122.831254, 49.658087], [-122.831152, 49.657958], [-122.830073, 49.652033], [-122.825835, 49.648392], [-122.828359, 49.643045], [-122.825662, 49.639174], [-122.821236, 49.635797], [-122.821011, 49.631971], [-122.815769, 49.627776], [-122.809104, 49.625757], [-122.811386, 49.619233], [-122.827746, 49.612805], [-122.849417, 49.613649], [-122.852109, 49.608042], [-122.846266, 49.605162], [-122.840909, 49.602887], [-122.835602, 49.599657], [-122.83324, 49.596704], [-122.83158, 49.594388], [-122.832308, 49.590146], [-122.827085, 49.587054], [-122.819814, 49.577462], [-122.81611, 49.572354], [-122.80781, 49.572293], [-122.808186, 49.572707], [-122.801725, 49.572534], [-122.795652, 49.57314], [-122.779908, 49.574276], [-122.750756, 49.573921], [-122.750482, 49.573817], [-122.749436, 49.573598], [-122.747453, 49.573887], [-122.700111, 49.573555], [-122.698197, 49.571284], [-122.692748, 49.568843], [-122.6899, 49.56289], [-122.683166, 49.553478], [-122.659129, 49.541085], [-122.655447, 49.539649], [-122.647779, 49.539085], [-122.638813, 49.53924], [-122.629891, 49.540408], [-122.62477, 49.540591], [-122.613755, 49.540709], [-122.608167, 49.541703], [-122.608207, 49.540656], [-122.608045, 49.539806], [-122.607684, 49.539531], [-122.606605, 49.539715], [-122.605346, 49.53924], [-122.604548, 49.537607], [-122.604133, 49.536253], [-122.602322, 49.524466], [-122.596354, 49.515408], [-122.594534, 49.512772], [-122.588571, 49.501293], [-122.587452, 49.498374], [-122.582637, 49.491649], [-122.581712, 49.490579], [-122.577144, 49.487797], [-122.575278, 49.486793], [-122.57288, 49.485895], [-122.558584, 49.483056], [-122.540256, 49.476312], [-122.532974, 49.47253], [-122.527877, 49.466539], [-122.527243, 49.465353], [-122.526861, 49.462348], [-122.52719, 49.46022], [-122.528133, 49.457869], [-122.529141, 49.456283], [-122.532266, 49.45064], [-122.534071, 49.445972], [-122.535214, 49.443484], [-122.542628, 49.431866], [-122.54454, 49.429784], [-122.550082, 49.42345], [-122.552387, 49.420409], [-122.555521, 49.415943], [-122.5624, 49.393139], [-122.563166, 49.391435], [-122.585307, 49.365165], [-122.59053, 49.359102], [-122.591124, 49.358609], [-122.597195, 49.355527], [-122.603316, 49.353126], [-122.57925, 49.352238], [-122.575419, 49.352432], [-122.558011, 49.352724], [-122.520888, 49.353126], [-122.454154, 49.353595], [-122.409982, 49.352951], [-122.37127, 49.353262], [-122.373742, 49.358581], [-122.363963, 49.361001], [-122.360522, 49.353423], [-122.33281, 49.353987], [-122.321492, 49.354667], [-122.319073, 49.354878], [-122.301005, 49.355824], [-122.302438, 49.353923], [-122.302182, 49.350327], [-122.301676, 49.349037], [-122.299137, 49.345916], [-122.298739, 49.344775], [-122.298599, 49.343033], [-122.296675, 49.336371], [-122.296024, 49.329077], [-122.295277, 49.32555], [-122.294431, 49.323952], [-122.298365, 49.312712], [-122.294999, 49.306586], [-122.294819, 49.3054], [-122.294048, 49.303879], [-122.292675, 49.302434], [-122.283877, 49.294981], [-122.277495, 49.289742], [-122.276825, 49.288855], [-122.273148, 49.283114], [-122.2739, 49.274814], [-122.274364, 49.270978], [-122.274376, 49.264009], [-122.27104, 49.263802], [-122.270563, 49.251822], [-122.27025, 49.233302], [-122.27042, 49.220831], [-122.27026, 49.215792], [-122.27021, 49.210058], [-122.270257, 49.195416], [-122.270423, 49.194558], [-122.270881, 49.194274], [-122.270936, 49.194141], [-122.270848, 49.193983], [-122.270461, 49.193756], [-122.27013, 49.19339], [-122.269279, 49.186602], [-122.270261, 49.182969], [-122.269975, 49.176643], [-122.253755, 49.176488], [-122.248911, 49.17636], [-122.235448, 49.176262], [-122.227948, 49.176258], [-122.224185, 49.175937], [-122.217233, 49.175608], [-122.217058, 49.174962], [-122.203091, 49.175163], [-122.202792, 49.18844], [-122.202435, 49.198576], [-122.153548, 49.198454], [-122.12768, 49.198173], [-122.122376, 49.201997], [-122.115135, 49.207844], [-122.111102, 49.213473], [-122.110271, 49.215128], [-122.108492, 49.218066], [-122.107141, 49.219465], [-122.103893, 49.220848], [-122.098064, 49.223183], [-122.095737, 49.22446], [-122.092987, 49.227602], [-122.092587, 49.228606], [-122.081995, 49.229928], [-122.075569, 49.23205], [-122.069798, 49.234047], [-122.072807, 49.238781], [-122.062156, 49.25144], [-122.060305, 49.256751], [-122.052995, 49.259816], [-122.045095, 49.260723], [-122.044642, 49.261088], [-122.044189, 49.261021], [-122.04397, 49.260852], [-122.043445, 49.260912], [-122.036213, 49.262292], [-122.028299, 49.266925], [-122.018517, 49.269766], [-122.015193, 49.274365], [-122.00572, 49.279366], [-122.014537, 49.279955], [-122.016371, 49.283245], [-122.020419, 49.285208], [-122.029471, 49.291069], [-122.033237, 49.29327], [-122.038808, 49.298126], [-122.040869, 49.300219], [-122.042205, 49.301021], [-122.044294, 49.30207], [-122.048006, 49.303377], [-122.053206, 49.304802], [-122.057481, 49.306294], [-122.059251, 49.307383], [-122.065616, 49.311623], [-122.069982, 49.314678], [-122.073386, 49.315624], [-122.076997, 49.316386], [-122.078717, 49.317664], [-122.079673, 49.319313], [-122.084405, 49.322826], [-122.08527, 49.325028], [-122.085349, 49.328018], [-122.086723, 49.332196], [-122.090012, 49.334801], [-122.093041, 49.335062], [-122.094843, 49.334327], [-122.096872, 49.334213], [-122.097258, 49.334098], [-122.097827, 49.333715], [-122.098245, 49.333321], [-122.098748, 49.333067], [-122.103054, 49.332585], [-122.106196, 49.333464], [-122.11115, 49.334644], [-122.114994, 49.335973], [-122.121799, 49.33548], [-122.126179, 49.33258], [-122.129688, 49.328816], [-122.13099, 49.324897], [-122.130616, 49.319933], [-122.131058, 49.318584], [-122.131824, 49.316299], [-122.134669, 49.313619], [-122.140185, 49.312722], [-122.146068, 49.313281], [-122.151379, 49.317149], [-122.156107, 49.319596], [-122.161246, 49.321444], [-122.16192, 49.324334], [-122.163796, 49.327858], [-122.166891, 49.333166], [-122.165962, 49.336713], [-122.165592, 49.340072], [-122.168524, 49.343818], [-122.170469, 49.346142], [-122.171094, 49.347032], [-122.170852, 49.349615], [-122.169952, 49.35248], [-122.167115, 49.356239], [-122.15969, 49.361105], [-122.152835, 49.365861], [-122.16732, 49.372485], [-122.183826, 49.397274], [-122.181788, 49.403426], [-122.17313, 49.409378], [-122.171057, 49.415503], [-122.165515, 49.422495], [-122.158803, 49.426262], [-122.153893, 49.433601], [-122.15038, 49.436691], [-122.142846, 49.439153], [-122.139912, 49.444978], [-122.142187, 49.448433], [-122.147166, 49.458214], [-122.145275, 49.464577], [-122.146834, 49.468876], [-122.138752, 49.476808], [-122.139405, 49.482251], [-122.132713, 49.483951], [-122.127028, 49.487327], [-122.126791, 49.490685], [-122.134491, 49.500507], [-122.133244, 49.50672], [-122.131043, 49.51264], [-122.127453, 49.517398], [-122.121071, 49.522682], [-122.115656, 49.526321], [-122.112294, 49.529985], [-122.106368, 49.53298], [-122.093323, 49.538451], [-122.086005, 49.540281], [-122.080495, 49.54222], [-122.078011, 49.546605], [-122.078609, 49.55311], [-122.081263, 49.559843], [-122.080023, 49.564219], [-122.072182, 49.572625], [-122.070624, 49.576599], [-122.071752, 49.581201], [-122.073777, 49.58337], [-122.077768, 49.584066], [-122.082034, 49.586298], [-122.087798, 49.588841], [-122.092028, 49.59261], [-122.094315, 49.595504], [-122.093362, 49.598261], [-122.090971, 49.600786], [-122.09112, 49.602362], [-122.092226, 49.605346], [-122.094009, 49.607799], [-122.102989, 49.60896], [-122.108509, 49.608023], [-122.116535, 49.604715], [-122.131035, 49.601676], [-122.140361, 49.601393], [-122.147361, 49.603113], [-122.151714, 49.606434], [-122.155049, 49.608468], [-122.158159, 49.60844], [-122.164842, 49.606599], [-122.17474, 49.600819], [-122.178324, 49.599612], [-122.185865, 49.594318], [-122.193434, 49.590442], [-122.202059, 49.589471], [-122.211816, 49.589136], [-122.220921, 49.58739], [-122.236823, 49.586508], [-122.244927, 49.587442], [-122.25022, 49.590749], [-122.252228, 49.594754], [-122.252388, 49.596532], [-122.253313, 49.599273], [-122.253696, 49.599755], [-122.260052, 49.600259], [-122.270913, 49.601891], [-122.278851, 49.603592], [-122.288832, 49.60766], [-122.292758, 49.610817], [-122.293755, 49.61384], [-122.293005, 49.619793], [-122.289881, 49.628579], [-122.289124, 49.631175], [-122.285524, 49.638085], [-122.281961, 49.643862], [-122.280846, 49.650344], [-122.28274, 49.657647], [-122.288254, 49.662003], [-122.296818, 49.663292], [-122.307824, 49.662328], [-122.31973, 49.662087], [-122.327496, 49.663246], [-122.333375, 49.663714], [-122.342266, 49.662249], [-122.348686, 49.659269], [-122.350124, 49.656744], [-122.349475, 49.652985], [-122.345699, 49.648852], [-122.3451, 49.644566], [-122.344521, 49.64109], [-122.340383, 49.634734], [-122.342015, 49.627147], [-122.345059, 49.621326], [-122.356909, 49.621409], [-122.366151, 49.621963], [-122.380958, 49.625636], [-122.388846, 49.62714], [-122.398518, 49.634009], [-122.402919, 49.64016], [-122.41239, 49.641299], [-122.429618, 49.638771], [-122.445781, 49.635993], [-122.448438, 49.637425], [-122.45446, 49.641002], [-122.455714, 49.64354], [-122.455286, 49.646136], [-122.454364, 49.648901], [-122.456005, 49.65192], [-122.460137, 49.654708], [-122.461574, 49.657082], [-122.461731, 49.658254], [-122.460831, 49.661829], [-122.460914, 49.664865], [-122.462234, 49.667483], [-122.464463, 49.669057], [-122.47086, 49.673826], [-122.475323, 49.676621], [-122.471642, 49.677973], [-122.470393, 49.681344], [-122.466619, 49.684979], [-122.468502, 49.687333], [-122.475105, 49.694502], [-122.472491, 49.699576], [-122.467809, 49.706278], [-122.457672, 49.713545], [-122.451484, 49.715637], [-122.444555, 49.714454], [-122.443099, 49.71468], [-122.424146, 49.713333], [-122.421022, 49.714388], [-122.41709, 49.720364], [-122.419477, 49.726272], [-122.425636, 49.725482], [-122.431889, 49.7337], [-122.430686, 49.74108], [-122.424255, 49.742476], [-122.422497, 49.747202], [-122.418105, 49.748167], [-122.42224, 49.754261], [-122.431054, 49.757742], [-122.443845, 49.755744], [-122.447509, 49.749854], [-122.453847, 49.749777], [-122.470051, 49.76679], [-122.480495, 49.772304], [-122.484925, 49.777785], [-122.495572, 49.779095], [-122.503175, 49.779107], [-122.509968, 49.784047], [-122.516794, 49.78458], [-122.520637, 49.780533], [-122.526133, 49.778672], [-122.541873, 49.78082], [-122.546299, 49.783653], [-122.551566, 49.782261], [-122.584632, 49.78286], [-122.602542, 49.776776], [-122.608367, 49.777949], [-122.614997, 49.777863], [-122.620375, 49.776232], [-122.626038, 49.776079], [-122.633826, 49.774416], [-122.638797, 49.775286], [-122.639174, 49.775749], [-122.642977, 49.78155], [-122.647397, 49.783988], [-122.64854, 49.785768], [-122.648841, 49.787636], [-122.647863, 49.790926], [-122.648454, 49.794273], [-122.648028, 49.795994], [-122.637372, 49.805729], [-122.641919, 49.812067], [-122.647071, 49.814652], [-122.654183, 49.818927], [-122.662278, 49.81913], [-122.664843, 49.823777], [-122.66089, 49.828277], [-122.651761, 49.836902], [-122.642343, 49.836555], [-122.634471, 49.835485], [-122.630576, 49.838188], [-122.626523, 49.838544], [-122.626525, 49.83861], [-122.621927, 49.835685], [-122.616221, 49.835059], [-122.610682, 49.838049], [-122.608469, 49.842685], [-122.61213, 49.848625], [-122.612357, 49.85214], [-122.611341, 49.856643], [-122.608469, 49.86102], [-122.599402, 49.863528], [-122.591773, 49.863847], [-122.584798, 49.866979], [-122.578672, 49.87024], [-122.578156, 49.87212], [-122.579353, 49.873229], [-122.586462, 49.878073], [-122.595037, 49.878913], [-122.601489, 49.876275], [-122.611953, 49.875051], [-122.626757, 49.876518], [-122.639119, 49.872341], [-122.645974, 49.87372], [-122.657027, 49.873216], [-122.665242, 49.872746], [-122.676915, 49.873879], [-122.692343, 49.876974], [-122.699529, 49.879627], [-122.708032, 49.887387], [-122.709675, 49.888706], [-122.714526, 49.890951], [-122.719933, 49.892033], [-122.730226, 49.890487], [-122.739216, 49.891649], [-122.746569, 49.891422], [-122.746162, 49.896432], [-122.748828, 49.903965], [-122.74547, 49.907659], [-122.746156, 49.908065], [-122.751779, 49.913705], [-122.752748, 49.91852], [-122.755926, 49.924512], [-122.758894, 49.92752], [-122.767404, 49.931214], [-122.767794, 49.93271], [-122.770893, 49.934017], [-122.775824, 49.931309], [-122.783313, 49.933188], [-122.788147, 49.935357], [-122.795408, 49.93618], [-122.795213, 49.930897], [-122.797556, 49.927868], [-122.800561, 49.9206], [-122.809744, 49.91835], [-122.823674, 49.919373], [-122.829342, 49.917879], [-122.837257, 49.918287], [-122.850618, 49.91861], [-122.85714, 49.918158], [-122.860873, 49.915986], [-122.869935, 49.903515], [-122.887327, 49.895317], [-122.892451, 49.894003], [-122.896566, 49.894818], [-122.902853, 49.898692], [-122.90357, 49.900082], [-122.90605, 49.904373], [-122.916355, 49.913136], [-122.930045, 49.917159], [-122.936483, 49.917408]]]]}, "properties": {"name": "Fraser Valley F", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley F", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909060", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.153548, 49.198454], [-122.202435, 49.198576], [-122.202792, 49.18844], [-122.203091, 49.175163], [-122.217058, 49.174962], [-122.217233, 49.175608], [-122.224185, 49.175937], [-122.227948, 49.176258], [-122.235448, 49.176262], [-122.248911, 49.17636], [-122.249053, 49.174804], [-122.248828, 49.173563], [-122.2478, 49.169715], [-122.243341, 49.162224], [-122.236209, 49.156866], [-122.235031, 49.155556], [-122.234187, 49.154154], [-122.234064, 49.15311], [-122.233706, 49.152533], [-122.233706, 49.152293], [-122.234055, 49.151643], [-122.234088, 49.151358], [-122.233423, 49.150536], [-122.23295, 49.150409], [-122.232404, 49.150442], [-122.231647, 49.150662], [-122.229976, 49.151545], [-122.229322, 49.151664], [-122.228598, 49.151654], [-122.226331, 49.15193], [-122.225916, 49.151753], [-122.22569, 49.151555], [-122.225293, 49.150761], [-122.225394, 49.150552], [-122.226109, 49.149981], [-122.226327, 49.149272], [-122.225967, 49.148466], [-122.225076, 49.147207], [-122.224923, 49.146655], [-122.225113, 49.146235], [-122.2256, 49.145668], [-122.227691, 49.144392], [-122.228192, 49.144181], [-122.231801, 49.143969], [-122.233398, 49.143963], [-122.234136, 49.143826], [-122.234719, 49.143278], [-122.235365, 49.143127], [-122.235666, 49.14313], [-122.235997, 49.14306], [-122.236949, 49.14317], [-122.239209, 49.143789], [-122.241908, 49.145221], [-122.242413, 49.145399], [-122.243807, 49.145678], [-122.245708, 49.145799], [-122.247288, 49.145243], [-122.249701, 49.143192], [-122.241264, 49.139812], [-122.231005, 49.134895], [-122.227739, 49.133553], [-122.224171, 49.132388], [-122.22024, 49.13144], [-122.215647, 49.130939], [-122.21249, 49.130746], [-122.201245, 49.13078], [-122.196592, 49.131692], [-122.181508, 49.138234], [-122.166298, 49.140116], [-122.159054, 49.141184], [-122.153879, 49.14339], [-122.152637, 49.143737], [-122.152133, 49.14382], [-122.149984, 49.143904], [-122.149705, 49.140738], [-122.15093, 49.140719], [-122.152134, 49.140801], [-122.152573, 49.140768], [-122.15484, 49.139741], [-122.155708, 49.139415], [-122.158175, 49.138775], [-122.159451, 49.138568], [-122.159397, 49.135757], [-122.164944, 49.135539], [-122.165009, 49.134362], [-122.169682, 49.134151], [-122.169774, 49.132171], [-122.173618, 49.132024], [-122.173525, 49.125056], [-122.185319, 49.124812], [-122.184903, 49.119252], [-122.173763, 49.119346], [-122.174261, 49.113549], [-122.161747, 49.113528], [-122.161852, 49.10417], [-122.184416, 49.104163], [-122.184813, 49.096553], [-122.161214, 49.096589], [-122.161205, 49.096846], [-122.152824, 49.096871], [-122.14715, 49.096794], [-122.14184, 49.096889], [-122.134107, 49.096898], [-122.13202, 49.097078], [-122.130337, 49.097668], [-122.129694, 49.098015], [-122.128515, 49.098834], [-122.12795, 49.099375], [-122.126922, 49.100604], [-122.125788, 49.101707], [-122.12539, 49.10215], [-122.125238, 49.102451], [-122.124731, 49.104076], [-122.123558, 49.105212], [-122.12203, 49.10612], [-122.12051, 49.106745], [-122.119228, 49.107091], [-122.117704, 49.107304], [-122.115768, 49.107784], [-122.115849, 49.110946], [-122.115404, 49.118289], [-122.11211, 49.11834], [-122.111858, 49.121971], [-122.108944, 49.122071], [-122.108728, 49.124083], [-122.106005, 49.124146], [-122.105324, 49.12994], [-122.102791, 49.129999], [-122.102679, 49.131387], [-122.100191, 49.131384], [-122.100115, 49.132816], [-122.095529, 49.132932], [-122.095283, 49.133451], [-122.095001, 49.136754], [-122.095613, 49.1379], [-122.096577, 49.138756], [-122.097747, 49.139242], [-122.099327, 49.139562], [-122.103692, 49.139449], [-122.108609, 49.139574], [-122.113536, 49.140054], [-122.119489, 49.140991], [-122.122103, 49.141193], [-122.123909, 49.141519], [-122.124795, 49.145173], [-122.112941, 49.148608], [-122.097269, 49.150178], [-122.085008, 49.149146], [-122.084438, 49.149], [-122.074052, 49.149483], [-122.067384, 49.149564], [-122.064585, 49.149196], [-122.060529, 49.151804], [-122.058893, 49.15181], [-122.054722, 49.153102], [-122.050088, 49.156192], [-122.045522, 49.160587], [-122.042026, 49.162942], [-122.040733, 49.163675], [-122.039591, 49.164701], [-122.036705, 49.167785], [-122.034698, 49.169626], [-122.03205, 49.171535], [-122.026068, 49.177834], [-122.021691, 49.181426], [-122.00852, 49.184861], [-122.004161, 49.184956], [-122.000168, 49.184461], [-121.998835, 49.184498], [-121.995552, 49.185865], [-121.988375, 49.19158], [-121.98746, 49.192991], [-121.986567, 49.193826], [-121.981577, 49.196582], [-121.980725, 49.199132], [-121.980777, 49.201395], [-121.975705, 49.205654], [-121.971706, 49.207195], [-121.969394, 49.207709], [-121.970263, 49.207986], [-121.971873, 49.208095], [-121.974011, 49.207997], [-121.978936, 49.207531], [-121.986019, 49.206831], [-121.988809, 49.206415], [-121.989548, 49.206353], [-121.99024, 49.206748], [-121.992019, 49.206726], [-121.99311, 49.206486], [-121.994677, 49.205748], [-121.995767, 49.206027], [-121.997806, 49.205572], [-121.999034, 49.20513], [-122.001251, 49.204964], [-122.001972, 49.205133], [-122.003352, 49.205872], [-122.003595, 49.206178], [-122.00352, 49.206569], [-122.003741, 49.206832], [-122.004861, 49.207321], [-122.009122, 49.208593], [-122.011598, 49.209689], [-122.01353, 49.210235], [-122.014917, 49.210256], [-122.016829, 49.20976], [-122.018099, 49.20902], [-122.021127, 49.206161], [-122.021465, 49.205099], [-122.02221, 49.20426], [-122.022683, 49.203958], [-122.024221, 49.203225], [-122.024994, 49.202988], [-122.025737, 49.202923], [-122.02833, 49.202303], [-122.028932, 49.20195], [-122.029678, 49.201714], [-122.030164, 49.201211], [-122.031381, 49.200768], [-122.033305, 49.200626], [-122.041434, 49.198992], [-122.042572, 49.199115], [-122.043296, 49.199301], [-122.046452, 49.198761], [-122.050177, 49.197637], [-122.050525, 49.197459], [-122.051043, 49.196963], [-122.051652, 49.196644], [-122.051708, 49.196554], [-122.051643, 49.196392], [-122.051729, 49.196212], [-122.051799, 49.196114], [-122.052006, 49.196044], [-122.052307, 49.195654], [-122.053538, 49.19507], [-122.053888, 49.194513], [-122.056876, 49.192542], [-122.061685, 49.190292], [-122.061798, 49.193474], [-122.061719, 49.197058], [-122.072296, 49.197804], [-122.076745, 49.197837], [-122.08195, 49.197783], [-122.093171, 49.197863], [-122.153548, 49.198454]], [[-122.082592, 49.182642], [-122.079603, 49.185437], [-122.075355, 49.189228], [-122.072934, 49.188045], [-122.072842, 49.188107], [-122.069806, 49.1866], [-122.070824, 49.185716], [-122.071845, 49.185072], [-122.072975, 49.183645], [-122.073918, 49.183063], [-122.074618, 49.182433], [-122.076468, 49.181362], [-122.077532, 49.180522], [-122.082592, 49.182642]], [[-122.077029, 49.178302], [-122.075818, 49.179282], [-122.075322, 49.179332], [-122.074327, 49.179746], [-122.073744, 49.179639], [-122.073612, 49.17943], [-122.073742, 49.179275], [-122.073652, 49.178985], [-122.07371, 49.178877], [-122.073389, 49.177862], [-122.073584, 49.177059], [-122.073456, 49.17666], [-122.071885, 49.174826], [-122.076745, 49.172944], [-122.081279, 49.172676], [-122.081274, 49.170897], [-122.084134, 49.170981], [-122.083726, 49.169147], [-122.089409, 49.16882], [-122.08949, 49.163362], [-122.092925, 49.163282], [-122.092999, 49.17241], [-122.09016, 49.172414], [-122.08855, 49.172645], [-122.086642, 49.172711], [-122.085595, 49.172918], [-122.084684, 49.173199], [-122.083204, 49.173799], [-122.082332, 49.174242], [-122.078919, 49.177003], [-122.077029, 49.178302]]], [[[-122.074912, 49.186915], [-122.073406, 49.18776], [-122.074526, 49.188352], [-122.075776, 49.187368], [-122.075482, 49.186934], [-122.075528, 49.186736], [-122.075765, 49.186535], [-122.074912, 49.186915]]]]}, "properties": {"name": "Fraser Valley G", "province": "British Columbia", "rurality": "Urban 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fraser Valley G", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909062", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.556436, 49.380431], [-121.560572, 49.380211], [-121.560672, 49.376557], [-121.566376, 49.376355], [-121.566476, 49.372701], [-121.57198, 49.372765], [-121.571626, 49.365457], [-121.571413, 49.362727], [-121.569943, 49.363098], [-121.569165, 49.363357], [-121.567252, 49.364251], [-121.566577, 49.364747], [-121.566334, 49.365076], [-121.566239, 49.365472], [-121.566068, 49.36564], [-121.565457, 49.365821], [-121.564144, 49.365967], [-121.562952, 49.366212], [-121.561585, 49.366349], [-121.560957, 49.366188], [-121.557828, 49.36668], [-121.556558, 49.366799], [-121.553209, 49.366875], [-121.551255, 49.366832], [-121.550201, 49.366998], [-121.546945, 49.367236], [-121.538729, 49.36742], [-121.536381, 49.367661], [-121.535135, 49.367897], [-121.532966, 49.368104], [-121.532008, 49.368307], [-121.530273, 49.368824], [-121.528099, 49.369633], [-121.526724, 49.370012], [-121.52479, 49.370688], [-121.520762, 49.372238], [-121.518273, 49.373007], [-121.513405, 49.37406], [-121.511574, 49.374513], [-121.509514, 49.375135], [-121.50892, 49.375262], [-121.506408, 49.375408], [-121.504988, 49.375568], [-121.505507, 49.375866], [-121.50568, 49.378419], [-121.525427, 49.380346], [-121.556436, 49.380431]]]]}, "properties": {"name": "Chawathil 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Chawathil 4", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909804", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.502471, 50.014409], [-121.504997, 50.014635], [-121.505079, 50.009225], [-121.516288, 50.00905], [-121.519838, 50.009533], [-121.519717, 50.009358], [-121.519428, 50.008284], [-121.519291, 50.008166], [-121.519174, 50.007462], [-121.519477, 50.006693], [-121.519147, 50.006545], [-121.518849, 50.006234], [-121.518606, 50.005485], [-121.518445, 50.005267], [-121.518415, 50.004484], [-121.518097, 50.004346], [-121.51795, 50.003705], [-121.517523, 50.003078], [-121.517515, 50.002899], [-121.517089, 50.002201], [-121.516675, 50.001126], [-121.51629, 50.000499], [-121.515258, 49.999042], [-121.513991, 49.998036], [-121.513658, 49.997969], [-121.513044, 49.997548], [-121.512747, 49.997176], [-121.512016, 49.996528], [-121.511612, 49.995991], [-121.511568, 49.995595], [-121.511354, 49.995305], [-121.510811, 49.994839], [-121.510604, 49.994738], [-121.510543, 49.994521], [-121.510189, 49.994201], [-121.509989, 49.99391], [-121.510004, 49.993866], [-121.510411, 49.993764], [-121.510258, 49.993329], [-121.510261, 49.992754], [-121.510069, 49.992238], [-121.510065, 49.99187], [-121.509696, 49.991227], [-121.509833, 49.990841], [-121.510222, 49.990433], [-121.510475, 49.989879], [-121.510431, 49.98951], [-121.510557, 49.989503], [-121.510609, 49.989318], [-121.503509, 49.990074], [-121.50342, 49.993139], [-121.50267, 49.995786], [-121.501874, 50.000841], [-121.501905, 50.003362], [-121.502471, 50.014409]]]]}, "properties": {"name": "Inkahtsaph 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Inkahtsaph 6", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909805", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.448362, 49.870991], [-121.447714, 49.872521], [-121.447243, 49.873324], [-121.446777, 49.873992], [-121.446061, 49.874611], [-121.445579, 49.875333], [-121.445029, 49.875983], [-121.444748, 49.876474], [-121.444179, 49.877735], [-121.444251, 49.878791], [-121.447057, 49.879029], [-121.452394, 49.879321], [-121.457193, 49.87971], [-121.458492, 49.879733], [-121.458221, 49.85973], [-121.45107, 49.85996], [-121.451139, 49.862261], [-121.451694, 49.864264], [-121.451631, 49.865457], [-121.451939, 49.866497], [-121.452432, 49.868919], [-121.450516, 49.86911], [-121.450061, 49.866587], [-121.449941, 49.866892], [-121.449579, 49.867346], [-121.449167, 49.868447], [-121.448826, 49.868685], [-121.449067, 49.86894], [-121.449104, 49.869588], [-121.448877, 49.870089], [-121.448886, 49.8707], [-121.448362, 49.870991]]]]}, "properties": {"name": "Kopchitchin 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Kopchitchin 2", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909806", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.5922, 49.337106], [-121.593195, 49.338208], [-121.592335, 49.338748], [-121.597253, 49.341863], [-121.602826, 49.34523], [-121.605549, 49.347045], [-121.609212, 49.344461], [-121.609936, 49.343733], [-121.611682, 49.342368], [-121.612585, 49.341578], [-121.614015, 49.340157], [-121.614735, 49.339004], [-121.615406, 49.338176], [-121.616098, 49.337077], [-121.616865, 49.335756], [-121.617296, 49.334601], [-121.617785, 49.333842], [-121.618321, 49.332808], [-121.596167, 49.332801], [-121.5922, 49.337106]]]]}, "properties": {"name": "Ohamil 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Ohamil 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909807", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.438355, 49.457617], [-121.438267, 49.455465], [-121.440721, 49.455583], [-121.441797, 49.44089], [-121.441651, 49.436306], [-121.441808, 49.432358], [-121.439023, 49.432339], [-121.436236, 49.432925], [-121.434999, 49.434968], [-121.434438, 49.436111], [-121.433907, 49.436771], [-121.433467, 49.437197], [-121.432476, 49.437974], [-121.431167, 49.438802], [-121.430714, 49.439174], [-121.430186, 49.439752], [-121.429503, 49.44084], [-121.427889, 49.4425], [-121.427262, 49.443013], [-121.427426, 49.457554], [-121.431324, 49.457495], [-121.438355, 49.457617]]]]}, "properties": {"name": "Puckatholetchin 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Puckatholetchin 11", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909808", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.391691, 49.627019], [-121.391381, 49.627599], [-121.390574, 49.628569], [-121.390424, 49.628936], [-121.390721, 49.63037], [-121.390953, 49.630886], [-121.391233, 49.631276], [-121.391436, 49.631792], [-121.392185, 49.632593], [-121.393387, 49.633511], [-121.394342, 49.634009], [-121.394923, 49.634413], [-121.39703, 49.635215], [-121.397602, 49.635547], [-121.397814, 49.635766], [-121.398374, 49.63597], [-121.398623, 49.62993], [-121.39544, 49.629907], [-121.39543, 49.626605], [-121.392483, 49.626411], [-121.391691, 49.627019]]]]}, "properties": {"name": "Saddle Rock 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Saddle Rock 9", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909809", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.613146, 49.346568], [-121.610287, 49.348387], [-121.609627, 49.348847], [-121.608441, 49.34984], [-121.607717, 49.350596], [-121.607189, 49.351274], [-121.606816, 49.351835], [-121.606665, 49.352436], [-121.608368, 49.353138], [-121.609018, 49.35376], [-121.609755, 49.35488], [-121.610575, 49.355535], [-121.612093, 49.356112], [-121.613455, 49.356515], [-121.617957, 49.356326], [-121.61771, 49.347732], [-121.616791, 49.347559], [-121.615964, 49.347207], [-121.61424, 49.345974], [-121.613146, 49.346568]]]]}, "properties": {"name": "Lukseetsissum 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Lukseetsissum 9", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909810", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.444767, 49.397231], [-121.448931, 49.397427], [-121.449009, 49.400397], [-121.455711, 49.400415], [-121.461186, 49.400521], [-121.460937, 49.391855], [-121.461145, 49.389996], [-121.4594, 49.39022], [-121.459237, 49.390909], [-121.456866, 49.391607], [-121.455274, 49.391382], [-121.454568, 49.391576], [-121.454288, 49.39177], [-121.453631, 49.392041], [-121.452026, 49.39228], [-121.451301, 49.392495], [-121.45081, 49.392804], [-121.449761, 49.393715], [-121.448305, 49.395306], [-121.447741, 49.396162], [-121.447007, 49.396288], [-121.446226, 49.396134], [-121.446142, 49.396168], [-121.446063, 49.396508], [-121.445905, 49.396669], [-121.444767, 49.397231]]]]}, "properties": {"name": "Schkam 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Schkam 2", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909812", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.591538, 49.367539], [-121.591538, 49.365802], [-121.594138, 49.365854], [-121.593843, 49.361994], [-121.597042, 49.361896], [-121.59683, 49.359327], [-121.596015, 49.35972], [-121.595236, 49.359999], [-121.595034, 49.359861], [-121.593499, 49.359608], [-121.592613, 49.359274], [-121.59204, 49.359131], [-121.590653, 49.35897], [-121.58975, 49.358725], [-121.588761, 49.358668], [-121.585791, 49.358921], [-121.58467, 49.35915], [-121.582958, 49.359612], [-121.586513, 49.362973], [-121.591538, 49.367539]]]]}, "properties": {"name": "Skawahlook 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skawahlook 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909814", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.462439, 49.929492], [-121.463586, 49.930685], [-121.463996, 49.931356], [-121.464005, 49.931517], [-121.464529, 49.932118], [-121.46519, 49.932424], [-121.465938, 49.932974], [-121.466418, 49.933205], [-121.466645, 49.933964], [-121.466752, 49.934072], [-121.467439, 49.934414], [-121.467914, 49.934861], [-121.468668, 49.935259], [-121.470414, 49.936396], [-121.471348, 49.937264], [-121.471568, 49.937779], [-121.472358, 49.938383], [-121.472544, 49.938655], [-121.472532, 49.939043], [-121.472848, 49.939612], [-121.472963, 49.939983], [-121.47327, 49.940391], [-121.473382, 49.940853], [-121.473621, 49.941162], [-121.473853, 49.941371], [-121.474074, 49.941455], [-121.474207, 49.941609], [-121.474302, 49.94216], [-121.474748, 49.942562], [-121.475093, 49.943133], [-121.475146, 49.943691], [-121.475523, 49.944056], [-121.475841, 49.94459], [-121.476212, 49.944784], [-121.476848, 49.945395], [-121.476963, 49.945738], [-121.477431, 49.946383], [-121.477647, 49.946557], [-121.477558, 49.946736], [-121.478117, 49.947598], [-121.479578, 49.949011], [-121.480464, 49.950506], [-121.480978, 49.951026], [-121.482064, 49.95238], [-121.483301, 49.953394], [-121.483767, 49.953627], [-121.484534, 49.954139], [-121.48387, 49.951743], [-121.483828, 49.949013], [-121.483399, 49.941225], [-121.483435, 49.93211], [-121.472492, 49.931354], [-121.462297, 49.929188], [-121.462439, 49.929492]]]]}, "properties": {"name": "Speyum 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Speyum 3", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909815", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.415345, 49.667068], [-121.415974, 49.666878], [-121.41662, 49.666618], [-121.417524, 49.666108], [-121.418799, 49.665658], [-121.419381, 49.665233], [-121.419856, 49.664709], [-121.420347, 49.664518], [-121.421205, 49.66453], [-121.421628, 49.664348], [-121.421805, 49.663999], [-121.421855, 49.663306], [-121.421784, 49.662919], [-121.421857, 49.662362], [-121.422223, 49.661818], [-121.423052, 49.661201], [-121.423237, 49.65544], [-121.409543, 49.655266], [-121.409544, 49.651493], [-121.40701, 49.651511], [-121.406095, 49.653131], [-121.405745, 49.654475], [-121.405775, 49.65526], [-121.403081, 49.655124], [-121.403224, 49.655432], [-121.403889, 49.656755], [-121.404327, 49.657309], [-121.404654, 49.657907], [-121.405183, 49.658671], [-121.405812, 49.659363], [-121.406912, 49.660925], [-121.407417, 49.662003], [-121.408202, 49.662526], [-121.40867, 49.66265], [-121.409256, 49.662955], [-121.409392, 49.663504], [-121.409522, 49.663695], [-121.410143, 49.664254], [-121.410583, 49.664781], [-121.411386, 49.665179], [-121.412528, 49.665483], [-121.41262, 49.665609], [-121.412506, 49.665716], [-121.412911, 49.666072], [-121.413697, 49.667045], [-121.414149, 49.667177], [-121.415345, 49.667068]]]]}, "properties": {"name": "Spuzzum 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Spuzzum 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909816", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.433343, 49.840961], [-121.435225, 49.840358], [-121.435481, 49.8402], [-121.437006, 49.83861], [-121.437071, 49.838349], [-121.436992, 49.837773], [-121.436426, 49.836784], [-121.436161, 49.835927], [-121.436216, 49.835549], [-121.436439, 49.83504], [-121.436368, 49.834715], [-121.436027, 49.834477], [-121.435666, 49.83404], [-121.434886, 49.832761], [-121.432794, 49.83081], [-121.430005, 49.830993], [-121.430175, 49.831311], [-121.430195, 49.831685], [-121.430612, 49.832606], [-121.430699, 49.832964], [-121.431078, 49.833285], [-121.430255, 49.834242], [-121.430205, 49.83491], [-121.430879, 49.835714], [-121.43155, 49.834257], [-121.431635, 49.83472], [-121.431453, 49.835631], [-121.429796, 49.838693], [-121.429703, 49.839107], [-121.42778, 49.839778], [-121.428267, 49.840298], [-121.429026, 49.840238], [-121.429759, 49.839923], [-121.430794, 49.839794], [-121.430972, 49.839878], [-121.431449, 49.840585], [-121.431881, 49.841014], [-121.432979, 49.841028], [-121.433343, 49.840961]]]]}, "properties": {"name": "Tuckkwiowhum 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Tuckkwiowhum 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909817", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.419989, 49.56263], [-121.42024, 49.562808], [-121.421288, 49.563201], [-121.422116, 49.563382], [-121.422718, 49.563415], [-121.423275, 49.563367], [-121.424119, 49.563132], [-121.424971, 49.563147], [-121.424963, 49.56327], [-121.425689, 49.563133], [-121.426194, 49.562836], [-121.426784, 49.560649], [-121.425187, 49.56086], [-121.423872, 49.561293], [-121.422946, 49.561288], [-121.421477, 49.561421], [-121.42047, 49.561777], [-121.419835, 49.562127], [-121.419792, 49.562199], [-121.419989, 49.56263]]]]}, "properties": {"name": "Yale Town 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Yale Town 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909818", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.478536, 49.974413], [-121.479831, 49.974511], [-121.482097, 49.974368], [-121.483878, 49.973902], [-121.485935, 49.973567], [-121.486706, 49.967961], [-121.4858, 49.967933], [-121.485706, 49.967387], [-121.486606, 49.967309], [-121.486109, 49.964277], [-121.486465, 49.964284], [-121.486216, 49.958946], [-121.480437, 49.958864], [-121.480493, 49.964296], [-121.477824, 49.964381], [-121.477973, 49.967637], [-121.478536, 49.974413]]]]}, "properties": {"name": "Kahmoose 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Kahmoose 4", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909819", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.976816, 49.159995], [-121.975054, 49.161553], [-121.974393, 49.162429], [-121.974261, 49.162861], [-121.974282, 49.16314], [-121.974424, 49.16343], [-121.974392, 49.164175], [-121.974111, 49.165307], [-121.974024, 49.16552], [-121.972255, 49.167922], [-121.978373, 49.167772], [-121.98007, 49.167662], [-121.987102, 49.167633], [-121.985517, 49.166224], [-121.984034, 49.162505], [-121.984086, 49.160947], [-121.984483, 49.160306], [-121.985062, 49.159623], [-121.984831, 49.159165], [-121.983471, 49.15895], [-121.982477, 49.158909], [-121.981016, 49.158946], [-121.980104, 49.15888], [-121.979478, 49.158933], [-121.977578, 49.159598], [-121.976816, 49.159995]]]]}, "properties": {"name": "Kwawkwawapilt 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Kwawkwawapilt 6", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909821", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.974734, 49.180035], [-121.976242, 49.17994], [-121.977088, 49.180001], [-121.977416, 49.180091], [-121.979323, 49.17947], [-121.980057, 49.179309], [-121.980909, 49.179288], [-121.981354, 49.179433], [-121.983805, 49.179067], [-121.985605, 49.178979], [-121.987283, 49.179062], [-121.986399, 49.178121], [-121.985181, 49.176637], [-121.984994, 49.176244], [-121.9852, 49.175732], [-121.985972, 49.17512], [-121.98702, 49.173904], [-121.988489, 49.171956], [-121.988415, 49.171663], [-121.969484, 49.17197], [-121.969474, 49.176533], [-121.969781, 49.176732], [-121.969434, 49.178108], [-121.968969, 49.178212], [-121.966996, 49.178224], [-121.966334, 49.178311], [-121.964503, 49.178383], [-121.963976, 49.178503], [-121.964075, 49.179747], [-121.964577, 49.1801], [-121.964717, 49.180476], [-121.964591, 49.181446], [-121.96477, 49.181643], [-121.96525, 49.181707], [-121.965583, 49.181643], [-121.965998, 49.181435], [-121.966779, 49.180617], [-121.967267, 49.180237], [-121.967716, 49.180042], [-121.968332, 49.179945], [-121.969282, 49.179981], [-121.970914, 49.180471], [-121.972957, 49.18066], [-121.974178, 49.180317], [-121.974734, 49.180035]]]]}, "properties": {"name": "Skwah 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skwah 4", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909824", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.973001, 49.180648], [-121.970914, 49.180471], [-121.969282, 49.179981], [-121.968332, 49.179945], [-121.967716, 49.180042], [-121.967267, 49.180237], [-121.966779, 49.180617], [-121.965998, 49.181435], [-121.965583, 49.181643], [-121.96525, 49.181707], [-121.96477, 49.181643], [-121.964591, 49.181446], [-121.964717, 49.180476], [-121.964577, 49.1801], [-121.964138, 49.179757], [-121.963697, 49.179686], [-121.963206, 49.179904], [-121.962659, 49.180629], [-121.962081, 49.181065], [-121.961153, 49.181342], [-121.960174, 49.181912], [-121.959548, 49.182175], [-121.958861, 49.182302], [-121.957483, 49.182281], [-121.955636, 49.182397], [-121.954624, 49.182378], [-121.953786, 49.182449], [-121.953399, 49.182611], [-121.952827, 49.182554], [-121.955338, 49.18338], [-121.958986, 49.184105], [-121.959639, 49.184417], [-121.959909, 49.184618], [-121.960285, 49.185071], [-121.960492, 49.185595], [-121.960476, 49.18635], [-121.96032, 49.186582], [-121.960043, 49.186777], [-121.95819, 49.187364], [-121.956954, 49.187505], [-121.955063, 49.187975], [-121.954009, 49.188494], [-121.953222, 49.189396], [-121.95312, 49.189621], [-121.953132, 49.190359], [-121.95321, 49.190602], [-121.953729, 49.191326], [-121.9542, 49.19178], [-121.955038, 49.192381], [-121.955663, 49.192702], [-121.957754, 49.193162], [-121.958616, 49.193287], [-121.959095, 49.1933], [-121.959976, 49.193254], [-121.96039, 49.193167], [-121.96075, 49.193009], [-121.961375, 49.192609], [-121.963874, 49.191904], [-121.965123, 49.191231], [-121.965883, 49.191023], [-121.966867, 49.190581], [-121.967589, 49.190165], [-121.968063, 49.189801], [-121.968778, 49.189079], [-121.970655, 49.188555], [-121.971993, 49.187972], [-121.972923, 49.187415], [-121.973268, 49.187183], [-121.973001, 49.180648]]]]}, "properties": {"name": "Skwali 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skwali 3", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909825", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.984086, 49.160947], [-121.984034, 49.162505], [-121.984106, 49.162771], [-121.985517, 49.166224], [-121.987126, 49.167632], [-121.987743, 49.168747], [-121.987973, 49.169251], [-121.98817, 49.170695], [-121.988489, 49.171956], [-121.98702, 49.173904], [-121.985972, 49.17512], [-121.9852, 49.175732], [-121.984994, 49.176244], [-121.985181, 49.176637], [-121.986399, 49.178121], [-121.987283, 49.179062], [-121.988477, 49.179121], [-121.993681, 49.179731], [-121.996087, 49.179748], [-121.99636, 49.179798], [-122.000289, 49.179375], [-122.002135, 49.178406], [-122.005631, 49.17568], [-122.007035, 49.174171], [-122.007963, 49.171835], [-122.009612, 49.170281], [-122.006726, 49.167774], [-122.006181, 49.167935], [-122.004925, 49.166938], [-122.006118, 49.166268], [-122.006266, 49.165147], [-122.002726, 49.164515], [-122.00008, 49.164394], [-121.996122, 49.163999], [-121.994933, 49.163808], [-121.994336, 49.163391], [-121.993277, 49.163271], [-121.993001, 49.16319], [-121.992265, 49.161707], [-121.992473, 49.160914], [-121.993359, 49.159727], [-121.993468, 49.159419], [-121.993451, 49.159184], [-121.993117, 49.158589], [-121.99284, 49.158282], [-121.992417, 49.158012], [-121.991173, 49.157976], [-121.990531, 49.158042], [-121.987856, 49.159308], [-121.985354, 49.159692], [-121.985062, 49.159623], [-121.984483, 49.160306], [-121.984086, 49.160947]]]]}, "properties": {"name": "Skway 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skway 5", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909826", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.941248, 49.074356], [-121.940642, 49.08116], [-121.940562, 49.085473], [-121.941003, 49.087601], [-121.94085, 49.089845], [-121.941268, 49.093054], [-121.946245, 49.093048], [-121.948564, 49.092868], [-121.951344, 49.092981], [-121.952949, 49.092649], [-121.955131, 49.092779], [-121.95989, 49.092667], [-121.961941, 49.092828], [-121.968229, 49.092768], [-121.971794, 49.093049], [-121.973173, 49.093046], [-121.97243, 49.089185], [-121.972333, 49.089185], [-121.972884, 49.0858], [-121.973434, 49.074967], [-121.966254, 49.074934], [-121.964644, 49.074973], [-121.964367, 49.074912], [-121.953318, 49.074708], [-121.950811, 49.07454], [-121.941248, 49.074356]]]]}, "properties": {"name": "Soowahlie 14", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Soowahlie 14", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909827", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.95796, 49.118489], [-121.958562, 49.118414], [-121.962558, 49.118403], [-121.962589, 49.111279], [-121.953619, 49.111296], [-121.953677, 49.109876], [-121.955066, 49.109855], [-121.955048, 49.1095], [-121.954804, 49.109497], [-121.954793, 49.109236], [-121.946385, 49.10947], [-121.94776, 49.108075], [-121.951518, 49.106582], [-121.955019, 49.104591], [-121.956332, 49.104364], [-121.957141, 49.104404], [-121.958156, 49.104644], [-121.958932, 49.105053], [-121.95928, 49.104706], [-121.958314, 49.103965], [-121.959341, 49.10346], [-121.960193, 49.103448], [-121.960808, 49.102633], [-121.960506, 49.102299], [-121.959665, 49.102077], [-121.95893, 49.102168], [-121.958384, 49.101476], [-121.953857, 49.103378], [-121.948847, 49.105575], [-121.940677, 49.108892], [-121.940255, 49.108715], [-121.929571, 49.108882], [-121.929462, 49.118488], [-121.938942, 49.118538], [-121.939547, 49.119758], [-121.939353, 49.120454], [-121.940459, 49.120516], [-121.940464, 49.121196], [-121.938801, 49.121195], [-121.93856, 49.123051], [-121.939352, 49.123142], [-121.93908, 49.124009], [-121.938424, 49.124012], [-121.938369, 49.124397], [-121.942776, 49.124414], [-121.942747, 49.123028], [-121.943309, 49.123022], [-121.943197, 49.120073], [-121.944775, 49.120069], [-121.944744, 49.118524], [-121.95796, 49.118489]], [[-121.939869, 49.118536], [-121.939872, 49.119236], [-121.939725, 49.118815], [-121.939476, 49.118537], [-121.939869, 49.118536]], [[-121.949857, 49.111295], [-121.948192, 49.111294], [-121.948171, 49.110294], [-121.949805, 49.110296], [-121.949857, 49.111295]]]]}, "properties": {"name": "Tzeachten 13", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Tzeachten 13", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909830", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.932069, 49.134781], [-121.932516, 49.134918], [-121.938119, 49.135753], [-121.938786, 49.135948], [-121.939147, 49.13616], [-121.939708, 49.135526], [-121.940031, 49.134395], [-121.940957, 49.132471], [-121.940149, 49.132293], [-121.940178, 49.132199], [-121.939267, 49.131911], [-121.939139, 49.131824], [-121.938479, 49.131718], [-121.938056, 49.131783], [-121.937744, 49.131906], [-121.937645, 49.13201], [-121.937163, 49.132033], [-121.936909, 49.131946], [-121.93611, 49.131828], [-121.935644, 49.131544], [-121.934802, 49.131621], [-121.93426, 49.131334], [-121.933981, 49.130961], [-121.933274, 49.132811], [-121.932069, 49.134781]]]]}, "properties": {"name": "Yakweakwioose 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Yakweakwioose 12", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909831", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.67569, 49.31303], [-121.676347, 49.312597], [-121.676733, 49.312484], [-121.676889, 49.312369], [-121.677298, 49.311977], [-121.677725, 49.311398], [-121.678214, 49.311124], [-121.678637, 49.310787], [-121.679248, 49.310039], [-121.679708, 49.309324], [-121.680881, 49.308132], [-121.682019, 49.307759], [-121.682351, 49.307691], [-121.68276, 49.307693], [-121.685075, 49.306397], [-121.686885, 49.305926], [-121.687674, 49.306185], [-121.688241, 49.30604], [-121.689132, 49.305698], [-121.689939, 49.305312], [-121.694414, 49.303609], [-121.695615, 49.302956], [-121.696064, 49.30261], [-121.697109, 49.301606], [-121.69799, 49.300406], [-121.69909, 49.300079], [-121.701213, 49.299944], [-121.703048, 49.3001], [-121.704375, 49.300443], [-121.707454, 49.300293], [-121.710089, 49.29994], [-121.714453, 49.298829], [-121.715741, 49.298314], [-121.716155, 49.298059], [-121.71655, 49.297713], [-121.716651, 49.297543], [-121.716685, 49.297318], [-121.716556, 49.296931], [-121.717219, 49.295759], [-121.718189, 49.294863], [-121.718513, 49.294712], [-121.719698, 49.293349], [-121.720127, 49.293128], [-121.720312, 49.292654], [-121.719997, 49.290621], [-121.719653, 49.290448], [-121.719419, 49.289831], [-121.719345, 49.289436], [-121.719431, 49.289099], [-121.720861, 49.286098], [-121.722363, 49.284294], [-121.722214, 49.28391], [-121.722279, 49.283485], [-121.723643, 49.281442], [-121.724916, 49.280331], [-121.726901, 49.278943], [-121.72818, 49.278289], [-121.728321, 49.27814], [-121.730418, 49.277681], [-121.73085, 49.277533], [-121.732708, 49.276227], [-121.735092, 49.275459], [-121.736961, 49.275094], [-121.739393, 49.273966], [-121.740381, 49.273157], [-121.740201, 49.272048], [-121.739988, 49.271803], [-121.739729, 49.271692], [-121.739358, 49.271688], [-121.73894, 49.271909], [-121.738277, 49.272036], [-121.736972, 49.272021], [-121.736096, 49.27185], [-121.735023, 49.27137], [-121.734702, 49.271034], [-121.734679, 49.270809], [-121.734928, 49.270218], [-121.734662, 49.269792], [-121.735309, 49.268416], [-121.735901, 49.267538], [-121.736327, 49.264993], [-121.736788, 49.264131], [-121.73766, 49.262876], [-121.738946, 49.261519], [-121.740125, 49.260648], [-121.741707, 49.259704], [-121.742623, 49.258941], [-121.743332, 49.258139], [-121.742665, 49.257349], [-121.742443, 49.256906], [-121.742343, 49.2565], [-121.742052, 49.256101], [-121.741148, 49.255389], [-121.739835, 49.254089], [-121.738001, 49.252683], [-121.737508, 49.252048], [-121.735723, 49.250454], [-121.735182, 49.249803], [-121.734641, 49.249723], [-121.733943, 49.248809], [-121.733123, 49.248453], [-121.725298, 49.242144], [-121.717291, 49.246168], [-121.717197, 49.246778], [-121.717255, 49.247174], [-121.717828, 49.247882], [-121.717946, 49.248127], [-121.718063, 49.24891], [-121.717976, 49.24909], [-121.717625, 49.249392], [-121.716492, 49.250081], [-121.715979, 49.250282], [-121.715262, 49.25039], [-121.714983, 49.250081], [-121.714799, 49.249665], [-121.714571, 49.249474], [-121.71411, 49.249271], [-121.713291, 49.249091], [-121.712054, 49.249069], [-121.710813, 49.249217], [-121.710259, 49.249363], [-121.70962, 49.249654], [-121.709436, 49.249849], [-121.708974, 49.250689], [-121.708581, 49.251035], [-121.707392, 49.251823], [-121.706049, 49.253283], [-121.705715, 49.253397], [-121.704586, 49.253555], [-121.704214, 49.253542], [-121.702997, 49.25334], [-121.701678, 49.253243], [-121.701376, 49.25333], [-121.701152, 49.253471], [-121.700995, 49.253659], [-121.701031, 49.253902], [-121.700334, 49.254235], [-121.699698, 49.254408], [-121.699624, 49.25456], [-121.698985, 49.254859], [-121.699203, 49.255402], [-121.699247, 49.255842], [-121.699065, 49.256516], [-121.698438, 49.257857], [-121.698242, 49.258521], [-121.698514, 49.259315], [-121.697383, 49.25987], [-121.697093, 49.258346], [-121.697408, 49.256272], [-121.69714, 49.256044], [-121.69663, 49.256595], [-121.696047, 49.25739], [-121.69534, 49.258632], [-121.695017, 49.25942], [-121.694914, 49.260679], [-121.695071, 49.261535], [-121.695517, 49.262358], [-121.696245, 49.263402], [-121.698293, 49.265457], [-121.699131, 49.266015], [-121.700104, 49.267169], [-121.700633, 49.267966], [-121.701563, 49.26974], [-121.70174, 49.270345], [-121.701949, 49.271742], [-121.702047, 49.273334], [-121.701915, 49.274125], [-121.701579, 49.274931], [-121.700846, 49.276119], [-121.699915, 49.277034], [-121.698794, 49.277823], [-121.698417, 49.277971], [-121.6974, 49.278544], [-121.694318, 49.279635], [-121.692879, 49.280041], [-121.690733, 49.280511], [-121.689813, 49.280986], [-121.687747, 49.281637], [-121.6864, 49.282163], [-121.684852, 49.282936], [-121.683801, 49.283752], [-121.683165, 49.284429], [-121.682594, 49.285726], [-121.68256, 49.286454], [-121.682641, 49.287049], [-121.683084, 49.287972], [-121.683481, 49.288543], [-121.684262, 49.289136], [-121.684732, 49.289592], [-121.684964, 49.290151], [-121.68508, 49.290955], [-121.684884, 49.2916], [-121.684469, 49.292225], [-121.683624, 49.292988], [-121.682798, 49.293528], [-121.682416, 49.293901], [-121.681956, 49.294652], [-121.681747, 49.295261], [-121.681378, 49.295724], [-121.681242, 49.296127], [-121.681145, 49.298258], [-121.681252, 49.299906], [-121.681028, 49.300542], [-121.679957, 49.302049], [-121.679448, 49.302556], [-121.678816, 49.303018], [-121.678357, 49.303282], [-121.676226, 49.303671], [-121.675948, 49.303794], [-121.675554, 49.304104], [-121.67459, 49.305191], [-121.6742, 49.305924], [-121.673487, 49.307868], [-121.672877, 49.309039], [-121.672045, 49.310298], [-121.670167, 49.312121], [-121.669157, 49.312856], [-121.669586, 49.312779], [-121.671002, 49.312778], [-121.672253, 49.312581], [-121.674266, 49.312689], [-121.674783, 49.312885], [-121.67569, 49.31303]]]]}, "properties": {"name": "Seabird Island", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Seabird Island", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909832", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.949233, 49.235872], [-121.95115, 49.236134], [-121.952666, 49.236209], [-121.953098, 49.234467], [-121.951195, 49.234377], [-121.949611, 49.234214], [-121.947322, 49.233625], [-121.946021, 49.232916], [-121.945096, 49.232183], [-121.94379, 49.231032], [-121.942978, 49.229888], [-121.942537, 49.229543], [-121.941684, 49.2293], [-121.938879, 49.229153], [-121.932322, 49.229137], [-121.931377, 49.229369], [-121.930559, 49.229388], [-121.929894, 49.229257], [-121.928547, 49.229131], [-121.927307, 49.229087], [-121.926447, 49.229168], [-121.924568, 49.229784], [-121.923815, 49.229957], [-121.922355, 49.229999], [-121.921541, 49.229856], [-121.921432, 49.229982], [-121.920906, 49.231292], [-121.920893, 49.231373], [-121.921063, 49.231467], [-121.921956, 49.231661], [-121.925159, 49.232114], [-121.93198, 49.233217], [-121.933771, 49.233665], [-121.940698, 49.234742], [-121.941323, 49.234764], [-121.941747, 49.234616], [-121.949233, 49.235872]]]]}, "properties": {"name": "Scowlitz 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Scowlitz 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909833", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.752824, 49.218801], [-121.752797, 49.222368], [-121.762488, 49.222656], [-121.765577, 49.222324], [-121.765662, 49.214781], [-121.766073, 49.212083], [-121.765293, 49.212481], [-121.764322, 49.212803], [-121.763597, 49.213308], [-121.761913, 49.214217], [-121.760599, 49.214572], [-121.760908, 49.214341], [-121.761722, 49.214106], [-121.76239, 49.213736], [-121.762677, 49.213315], [-121.762369, 49.213006], [-121.762191, 49.212969], [-121.759844, 49.213979], [-121.758892, 49.214176], [-121.757436, 49.214177], [-121.756534, 49.214006], [-121.755581, 49.213725], [-121.754895, 49.213629], [-121.754223, 49.213612], [-121.753589, 49.21375], [-121.752493, 49.214223], [-121.751988, 49.214577], [-121.749342, 49.217158], [-121.747535, 49.218568], [-121.746671, 49.219142], [-121.752824, 49.218801]]]]}, "properties": {"name": "Tseatah 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Tseatah 2", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909834", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.987023, 49.149066], [-121.986666, 49.149706], [-121.985847, 49.150742], [-121.990753, 49.151255], [-121.991155, 49.151354], [-121.994758, 49.151872], [-121.994898, 49.151388], [-121.995696, 49.149549], [-121.995813, 49.149417], [-121.996267, 49.14919], [-121.99558, 49.148745], [-121.995179, 49.148719], [-121.994246, 49.148], [-121.993756, 49.14785], [-121.99195, 49.14786], [-121.990941, 49.148114], [-121.990181, 49.148209], [-121.989407, 49.14821], [-121.989166, 49.148071], [-121.988623, 49.148028], [-121.98792, 49.148049], [-121.987854, 49.148209], [-121.987072, 49.148168], [-121.987023, 49.149066]]]]}, "properties": {"name": "Aitchelitch 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Aitchelitch 9", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909835", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.426794, 49.833472], [-121.430895, 49.833479], [-121.431078, 49.833285], [-121.430699, 49.832964], [-121.430612, 49.832606], [-121.430195, 49.831685], [-121.430175, 49.831311], [-121.430005, 49.830993], [-121.432794, 49.83081], [-121.432104, 49.830177], [-121.431733, 49.829642], [-121.431679, 49.829165], [-121.430955, 49.8275], [-121.430483, 49.825343], [-121.430412, 49.824083], [-121.430227, 49.824721], [-121.43025, 49.825364], [-121.429635, 49.825418], [-121.430165, 49.828096], [-121.429336, 49.828198], [-121.428766, 49.824557], [-121.42925, 49.822649], [-121.426754, 49.82259], [-121.426794, 49.833472]]]]}, "properties": {"name": "Boston Bar 1A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Boston Bar 1A", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909836", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.780759, 49.198854], [-121.781214, 49.198806], [-121.781792, 49.198651], [-121.782414, 49.198585], [-121.783058, 49.198601], [-121.784549, 49.198769], [-121.785694, 49.199149], [-121.786411, 49.199535], [-121.787266, 49.19994], [-121.787663, 49.200052], [-121.787981, 49.200246], [-121.788352, 49.200308], [-121.788376, 49.199382], [-121.788071, 49.194698], [-121.788135, 49.194523], [-121.788144, 49.190204], [-121.787916, 49.187463], [-121.777306, 49.187691], [-121.77801, 49.190839], [-121.775217, 49.191349], [-121.763959, 49.191561], [-121.759641, 49.191538], [-121.758835, 49.192747], [-121.759122, 49.193669], [-121.758893, 49.194195], [-121.757494, 49.194148], [-121.755517, 49.19496], [-121.753916, 49.195944], [-121.7541, 49.197417], [-121.754394, 49.197861], [-121.753723, 49.198191], [-121.752752, 49.198486], [-121.751738, 49.199428], [-121.750516, 49.199975], [-121.749598, 49.200908], [-121.749482, 49.205755], [-121.748795, 49.206636], [-121.751606, 49.206386], [-121.753276, 49.206495], [-121.754843, 49.206503], [-121.75714, 49.20633], [-121.760584, 49.205845], [-121.762087, 49.205573], [-121.763482, 49.205247], [-121.764256, 49.205021], [-121.765892, 49.2044], [-121.76683, 49.204175], [-121.767736, 49.203867], [-121.769353, 49.203425], [-121.769704, 49.20326], [-121.770232, 49.203179], [-121.770905, 49.202884], [-121.771755, 49.202252], [-121.773449, 49.201587], [-121.773484, 49.201382], [-121.773881, 49.20113], [-121.777063, 49.200066], [-121.7773, 49.19997], [-121.778154, 49.199395], [-121.778919, 49.199563], [-121.780412, 49.199031], [-121.780759, 49.198854]]]]}, "properties": {"name": "Cheam 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Cheam 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909837", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.82708, 49.183189], [-121.83816, 49.183308], [-121.838265, 49.17508], [-121.837409, 49.174901], [-121.83609, 49.174402], [-121.83559, 49.174055], [-121.835418, 49.173847], [-121.834983, 49.17304], [-121.834568, 49.172642], [-121.833892, 49.172166], [-121.83362, 49.172082], [-121.831492, 49.170991], [-121.830229, 49.170583], [-121.830421, 49.176032], [-121.827179, 49.175972], [-121.82708, 49.183189]]]]}, "properties": {"name": "Schelowat 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Schelowat 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909838", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.916738, 49.308879], [-121.927884, 49.309506], [-121.928029, 49.304178], [-121.931213, 49.301007], [-121.929114, 49.301822], [-121.928322, 49.301798], [-121.928247, 49.295065], [-121.937012, 49.280419], [-121.92331, 49.276378], [-121.916707, 49.276502], [-121.915862, 49.277172], [-121.9085, 49.283833], [-121.904932, 49.285942], [-121.894263, 49.289588], [-121.887462, 49.293064], [-121.885694, 49.294111], [-121.887717, 49.300579], [-121.888477, 49.301818], [-121.888338, 49.303055], [-121.888031, 49.303416], [-121.88601, 49.304761], [-121.885123, 49.305217], [-121.883619, 49.306793], [-121.881084, 49.308969], [-121.881175, 49.309322], [-121.882004, 49.309331], [-121.883509, 49.309102], [-121.885132, 49.308951], [-121.886967, 49.308653], [-121.888147, 49.308288], [-121.889666, 49.308445], [-121.903782, 49.30924], [-121.916738, 49.308879]]]]}, "properties": {"name": "Chehalis 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Chehalis 5", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909839", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.419489, 49.470314], [-121.419481, 49.472055], [-121.418824, 49.473403], [-121.427288, 49.473532], [-121.431536, 49.473653], [-121.43203, 49.468201], [-121.430162, 49.468283], [-121.420014, 49.468488], [-121.419489, 49.470314]]]]}, "properties": {"name": "Stullawheets 8", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Stullawheets 8", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909841", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.194255, 49.759061], [-122.19574, 49.759209], [-122.196933, 49.759535], [-122.198137, 49.760421], [-122.198945, 49.761356], [-122.200582, 49.763969], [-122.201187, 49.764387], [-122.201591, 49.765136], [-122.202852, 49.753729], [-122.180549, 49.753817], [-122.18015, 49.750189], [-122.167056, 49.750483], [-122.167447, 49.750644], [-122.167687, 49.750829], [-122.168439, 49.751106], [-122.155638, 49.751021], [-122.150689, 49.751557], [-122.147183, 49.752674], [-122.143336, 49.754204], [-122.143048, 49.76603], [-122.148582, 49.765954], [-122.148955, 49.771046], [-122.158899, 49.771181], [-122.160467, 49.771114], [-122.159862, 49.770733], [-122.159509, 49.770235], [-122.158966, 49.76881], [-122.159222, 49.768407], [-122.158937, 49.767991], [-122.157198, 49.766548], [-122.156331, 49.766074], [-122.154358, 49.765439], [-122.154056, 49.765185], [-122.153968, 49.764708], [-122.154342, 49.763065], [-122.154211, 49.762615], [-122.152025, 49.761401], [-122.151614, 49.761039], [-122.15148, 49.760867], [-122.15121, 49.759642], [-122.151668, 49.758863], [-122.15258, 49.758259], [-122.169989, 49.758013], [-122.169912, 49.757457], [-122.169415, 49.756469], [-122.16902, 49.754829], [-122.171468, 49.754521], [-122.173068, 49.755489], [-122.17424, 49.75644], [-122.176877, 49.758189], [-122.177673, 49.75846], [-122.178489, 49.758912], [-122.17966, 49.758976], [-122.180209, 49.759249], [-122.180685, 49.759171], [-122.181256, 49.758899], [-122.182144, 49.758844], [-122.185143, 49.759331], [-122.18629, 49.759833], [-122.186669, 49.76023], [-122.187595, 49.760846], [-122.188164, 49.760858], [-122.18843, 49.760567], [-122.190084, 49.760537], [-122.192706, 49.759459], [-122.194255, 49.759061]]]]}, "properties": {"name": "Douglas 8", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Douglas 8", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909842", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.64445, 49.304615], [-121.645324, 49.30486], [-121.645897, 49.305093], [-121.646125, 49.305248], [-121.646745, 49.305749], [-121.648132, 49.30734], [-121.649004, 49.308169], [-121.650286, 49.309056], [-121.651263, 49.30958], [-121.651565, 49.30962], [-121.652157, 49.30959], [-121.653957, 49.309135], [-121.655573, 49.308957], [-121.657303, 49.308518], [-121.658267, 49.308007], [-121.65866, 49.307696], [-121.659089, 49.307153], [-121.659917, 49.306488], [-121.660557, 49.305722], [-121.660748, 49.305338], [-121.660907, 49.304476], [-121.660896, 49.302892], [-121.6606, 49.301602], [-121.65994, 49.300632], [-121.659654, 49.299981], [-121.659306, 49.298591], [-121.659299, 49.295848], [-121.6594, 49.294662], [-121.658795, 49.294601], [-121.657964, 49.295066], [-121.656863, 49.295818], [-121.653757, 49.298936], [-121.652669, 49.299697], [-121.646036, 49.302237], [-121.643893, 49.303388], [-121.642991, 49.304093], [-121.641665, 49.305373], [-121.641816, 49.30543], [-121.643135, 49.304933], [-121.643833, 49.304581], [-121.64445, 49.304615]]], [[[-121.65922, 49.293745], [-121.658379, 49.294267], [-121.658622, 49.294469], [-121.659211, 49.294182], [-121.6598, 49.293749], [-121.659687, 49.293546], [-121.65922, 49.293745]]], [[[-121.654569, 49.295946], [-121.655921, 49.294976], [-121.656293, 49.294995], [-121.656652, 49.294652], [-121.657162, 49.294366], [-121.657246, 49.294431], [-121.658338, 49.293912], [-121.65895, 49.29351], [-121.658233, 49.293016], [-121.655709, 49.29448], [-121.654569, 49.295946]]], [[[-121.653533, 49.297569], [-121.652471, 49.2984], [-121.648176, 49.30009], [-121.649316, 49.299944], [-121.650221, 49.299708], [-121.651364, 49.299337], [-121.652225, 49.29893], [-121.652228, 49.298808], [-121.654027, 49.297615], [-121.654287, 49.297191], [-121.654141, 49.296772], [-121.653533, 49.297569]]], [[[-121.644127, 49.301935], [-121.644339, 49.302057], [-121.644756, 49.301964], [-121.645183, 49.301515], [-121.645297, 49.301574], [-121.647003, 49.300651], [-121.647814, 49.300332], [-121.647738, 49.300158], [-121.644819, 49.301488], [-121.644127, 49.301935]]]]}, "properties": {"name": "Peters 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Peters 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909843", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.717552, 49.211861], [-121.719628, 49.211723], [-121.72349, 49.21216], [-121.724836, 49.212095], [-121.726134, 49.211857], [-121.726798, 49.211657], [-121.727437, 49.211377], [-121.728929, 49.210502], [-121.730388, 49.209763], [-121.731836, 49.208888], [-121.732162, 49.20771], [-121.720731, 49.198978], [-121.720201, 49.199661], [-121.719259, 49.199814], [-121.716173, 49.199932], [-121.714855, 49.201598], [-121.71349, 49.203519], [-121.711118, 49.205509], [-121.709982, 49.205619], [-121.708711, 49.205241], [-121.706579, 49.20675], [-121.710704, 49.21035], [-121.711495, 49.210291], [-121.711761, 49.210142], [-121.71217, 49.210227], [-121.712459, 49.210203], [-121.712731, 49.210287], [-121.712793, 49.210558], [-121.712942, 49.21064], [-121.713447, 49.210744], [-121.713689, 49.210918], [-121.713778, 49.211199], [-121.71427, 49.211338], [-121.714345, 49.211654], [-121.714518, 49.21181], [-121.715121, 49.211842], [-121.716055, 49.212007], [-121.716957, 49.212035], [-121.717552, 49.211861]]]]}, "properties": {"name": "Popkum 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Popkum 1", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909844", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.403454, 49.952066], [-122.420075, 49.952947], [-122.422113, 49.952985], [-122.420405, 49.951021], [-122.41949, 49.949388], [-122.419466, 49.948974], [-122.419555, 49.948669], [-122.420644, 49.947352], [-122.420702, 49.947128], [-122.42066, 49.946066], [-122.420606, 49.94577], [-122.420429, 49.945516], [-122.418481, 49.944068], [-122.418179, 49.934659], [-122.403, 49.934905], [-122.403454, 49.952066]]]]}, "properties": {"name": "Skookumchuck 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skookumchuck 4", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909845", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.381045, 49.936343], [-122.402883, 49.935192], [-122.402371, 49.934928], [-122.401967, 49.933875], [-122.401815, 49.933631], [-122.401567, 49.93344], [-122.400875, 49.933131], [-122.399998, 49.932965], [-122.39804, 49.932406], [-122.39463, 49.931129], [-122.393357, 49.930268], [-122.392764, 49.930177], [-122.391108, 49.929364], [-122.38946, 49.928239], [-122.388813, 49.927132], [-122.388258, 49.926922], [-122.387972, 49.929489], [-122.37872, 49.929993], [-122.381045, 49.936343]]]]}, "properties": {"name": "Skookumchuck 4A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skookumchuck 4A", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909846", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.43823, 49.911933], [-121.448938, 49.912003], [-121.45063, 49.911963], [-121.449855, 49.910462], [-121.449117, 49.909543], [-121.448612, 49.909094], [-121.438215, 49.909019], [-121.43823, 49.911933]]]]}, "properties": {"name": "Bucktum 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Bucktum 4", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909847", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.221841, 49.7743], [-122.222421, 49.774294], [-122.22243, 49.773746], [-122.221897, 49.773751], [-122.221841, 49.7743]]]]}, "properties": {"name": "Tipella 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Tipella 7", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909848", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.484693, 49.994078], [-121.495629, 49.994294], [-121.495175, 49.986554], [-121.499813, 49.98678], [-121.500681, 49.988159], [-121.503413, 49.987552], [-121.50197, 49.985837], [-121.499496, 49.986262], [-121.4987, 49.985278], [-121.498069, 49.984681], [-121.484268, 49.984551], [-121.484693, 49.994078]]]]}, "properties": {"name": "Boothroyd 13", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Boothroyd 13", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909850", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.608273, 49.353517], [-121.603657, 49.356767], [-121.604011, 49.357019], [-121.608109, 49.356993], [-121.60985, 49.356821], [-121.614594, 49.356852], [-121.612093, 49.356112], [-121.610575, 49.355535], [-121.609755, 49.35488], [-121.609018, 49.35376], [-121.608368, 49.353138], [-121.606665, 49.352436], [-121.606408, 49.35265], [-121.605936, 49.352725], [-121.605687, 49.352839], [-121.60542, 49.352997], [-121.604968, 49.353423], [-121.604507, 49.353661], [-121.604094, 49.35362], [-121.603822, 49.3535], [-121.603724, 49.353526], [-121.603909, 49.353852], [-121.604351, 49.354216], [-121.60441, 49.354631], [-121.604184, 49.355267], [-121.603925, 49.355696], [-121.603175, 49.356424], [-121.603387, 49.356575], [-121.605907, 49.35481], [-121.605808, 49.354746], [-121.607952, 49.353228], [-121.608273, 49.353517]]]]}, "properties": {"name": "Ruby Creek 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Ruby Creek 2", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909851", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.525564, 50.11995], [-122.524467, 50.120419], [-122.522895, 50.12187], [-122.522318, 50.123209], [-122.522168, 50.12384], [-122.528469, 50.123725], [-122.532073, 50.123803], [-122.532704, 50.121923], [-122.532872, 50.120319], [-122.530507, 50.120409], [-122.529822, 50.120316], [-122.529303, 50.120422], [-122.529165, 50.120403], [-122.52844, 50.120032], [-122.527728, 50.120002], [-122.527785, 50.119768], [-122.527703, 50.119697], [-122.527229, 50.119523], [-122.526783, 50.11927], [-122.525564, 50.11995]]]]}, "properties": {"name": "Paqulh", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Paqulh", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909852", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.490769, 49.972536], [-121.493376, 49.971802], [-121.496457, 49.971639], [-121.498837, 49.972152], [-121.498768, 49.973891], [-121.4991, 49.978651], [-121.497451, 49.979245], [-121.508293, 49.979237], [-121.508248, 49.978453], [-121.508018, 49.977785], [-121.50807, 49.976526], [-121.50787, 49.976254], [-121.507823, 49.975948], [-121.507557, 49.975567], [-121.507094, 49.975165], [-121.506839, 49.974829], [-121.50678, 49.97454], [-121.506564, 49.974276], [-121.50617, 49.97348], [-121.505154, 49.973747], [-121.504911, 49.973217], [-121.504795, 49.971784], [-121.504292, 49.970206], [-121.50379, 49.969035], [-121.503068, 49.967841], [-121.502734, 49.967389], [-121.50218, 49.966889], [-121.500666, 49.966193], [-121.500053, 49.965794], [-121.499564, 49.965058], [-121.499464, 49.964685], [-121.486231, 49.964835], [-121.486267, 49.965431], [-121.486606, 49.967309], [-121.485706, 49.967387], [-121.4858, 49.967933], [-121.486706, 49.967961], [-121.485935, 49.973567], [-121.487774, 49.97273], [-121.490769, 49.972536]]]]}, "properties": {"name": "Boothrouyd 5B", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Boothrouyd 5B", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909853", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.417294, 49.183624], [-122.415054, 49.185258], [-122.41372, 49.185934], [-122.411937, 49.186643], [-122.410714, 49.187375], [-122.413486, 49.190729], [-122.413299, 49.190964], [-122.413297, 49.191205], [-122.415734, 49.191103], [-122.41579, 49.191379], [-122.423804, 49.191104], [-122.424599, 49.184504], [-122.421962, 49.184259], [-122.42212, 49.183683], [-122.421985, 49.183512], [-122.419044, 49.182118], [-122.417294, 49.183624]]]]}, "properties": {"name": "Langley 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Langley 2", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909856", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.534241, 50.049777], [-122.535279, 50.050851], [-122.535899, 50.0516], [-122.536945, 50.053384], [-122.537429, 50.053873], [-122.537799, 50.054549], [-122.538329, 50.054767], [-122.538914, 50.054922], [-122.539891, 50.054979], [-122.541359, 50.054914], [-122.541581, 50.054932], [-122.542045, 50.05511], [-122.542657, 50.05512], [-122.542212, 50.049057], [-122.533626, 50.048822], [-122.534241, 50.049777]]]]}, "properties": {"name": "Q'alatkú7em", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Q'alatkú7em", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909875", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.41531, 49.516469], [-121.415217, 49.516782], [-121.414739, 49.517027], [-121.414596, 49.517196], [-121.414932, 49.518353], [-121.415659, 49.519334], [-121.416176, 49.519647], [-121.416692, 49.520293], [-121.416964, 49.520495], [-121.417398, 49.521121], [-121.417746, 49.521486], [-121.418123, 49.522228], [-121.418394, 49.522403], [-121.418415, 49.522618], [-121.418196, 49.522984], [-121.418158, 49.523263], [-121.418542, 49.523763], [-121.418606, 49.52398], [-121.418931, 49.524173], [-121.419328, 49.525151], [-121.41971, 49.526559], [-121.420126, 49.527365], [-121.420786, 49.528328], [-121.421761, 49.529589], [-121.423391, 49.529869], [-121.425437, 49.529793], [-121.425499, 49.521747], [-121.425128, 49.516494], [-121.419934, 49.516033], [-121.414928, 49.51538], [-121.41531, 49.516469]]]]}, "properties": {"name": "Albert Flat 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Albert Flat 5", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909876", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.201312, 49.060728], [-122.207282, 49.060426], [-122.207135, 49.056975], [-122.20658, 49.055849], [-122.205138, 49.056699], [-122.205274, 49.056871], [-122.204098, 49.057515], [-122.202159, 49.058135], [-122.20034, 49.058534], [-122.199006, 49.058653], [-122.197495, 49.058497], [-122.196615, 49.058185], [-122.196521, 49.059548], [-122.19599, 49.059818], [-122.194034, 49.05845], [-122.193026, 49.057391], [-122.19328, 49.056561], [-122.196345, 49.057495], [-122.196955, 49.057585], [-122.197857, 49.057626], [-122.197873, 49.057721], [-122.198249, 49.057694], [-122.198781, 49.057548], [-122.199762, 49.057599], [-122.200979, 49.05743], [-122.202308, 49.05703], [-122.203544, 49.056532], [-122.206299, 49.054952], [-122.206273, 49.053264], [-122.204669, 49.051859], [-122.203273, 49.05041], [-122.200625, 49.048061], [-122.200573, 49.047837], [-122.199812, 49.047441], [-122.196758, 49.04429], [-122.194469, 49.044324], [-122.194378, 49.040764], [-122.194446, 49.040653], [-122.189941, 49.040519], [-122.190009, 49.045814], [-122.18463, 49.045979], [-122.183652, 49.046403], [-122.183223, 49.046686], [-122.182971, 49.047632], [-122.182957, 49.052699], [-122.182976, 49.053555], [-122.183318, 49.055651], [-122.182803, 49.056321], [-122.182897, 49.05755], [-122.191565, 49.057753], [-122.191506, 49.060798], [-122.194405, 49.060803], [-122.194474, 49.060714], [-122.194799, 49.060592], [-122.201312, 49.060728]]]]}, "properties": {"name": "Upper Sumas 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Upper Sumas 6", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909877", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.359964, 49.103963], [-122.359546, 49.103918], [-122.359136, 49.103772], [-122.357752, 49.103707], [-122.352032, 49.103824], [-122.351839, 49.103888], [-122.343765, 49.103927], [-122.343252, 49.103864], [-122.34258, 49.103667], [-122.342277, 49.103634], [-122.341044, 49.103867], [-122.3404, 49.103921], [-122.33846, 49.103917], [-122.338503, 49.105816], [-122.338411, 49.107806], [-122.338426, 49.109053], [-122.341901, 49.109082], [-122.343615, 49.109543], [-122.350408, 49.113051], [-122.355881, 49.116151], [-122.359893, 49.119187], [-122.359672, 49.11775], [-122.359625, 49.109013], [-122.359964, 49.103963]]]]}, "properties": {"name": "Matsqui Main 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Matsqui Main 2", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909878", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.0108, 49.215692], [-122.018967, 49.215546], [-122.018867, 49.211782], [-122.027294, 49.211656], [-122.027468, 49.2065], [-122.037951, 49.206376], [-122.037922, 49.202284], [-122.037361, 49.199825], [-122.033305, 49.200626], [-122.031381, 49.200768], [-122.030164, 49.201211], [-122.029678, 49.201714], [-122.028932, 49.20195], [-122.02833, 49.202303], [-122.025737, 49.202923], [-122.024994, 49.202988], [-122.024581, 49.203092], [-122.023695, 49.203454], [-122.022683, 49.203958], [-122.02221, 49.20426], [-122.021465, 49.205099], [-122.021127, 49.206161], [-122.018099, 49.20902], [-122.016829, 49.20976], [-122.014917, 49.210256], [-122.01353, 49.210235], [-122.011598, 49.209689], [-122.010908, 49.210433], [-122.0108, 49.215692]]]]}, "properties": {"name": "Holachten 8", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Holachten 8", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909879", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.075355, 49.189228], [-122.079603, 49.185437], [-122.082592, 49.182642], [-122.077532, 49.180522], [-122.076468, 49.181362], [-122.074618, 49.182433], [-122.073918, 49.183063], [-122.072975, 49.183645], [-122.071845, 49.185072], [-122.070824, 49.185716], [-122.069806, 49.1866], [-122.072842, 49.188107], [-122.072934, 49.188045], [-122.075355, 49.189228]], [[-122.075765, 49.186549], [-122.075528, 49.186736], [-122.075482, 49.186934], [-122.075776, 49.187368], [-122.074526, 49.188352], [-122.073406, 49.18776], [-122.074912, 49.186915], [-122.075765, 49.186549]]]]}, "properties": {"name": "Lakahahmen 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Lakahahmen 11", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909880", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.075474, 49.179296], [-122.075818, 49.179282], [-122.076291, 49.178943], [-122.077029, 49.178302], [-122.078919, 49.177003], [-122.082332, 49.174242], [-122.083204, 49.173799], [-122.084684, 49.173199], [-122.085595, 49.172918], [-122.086642, 49.172711], [-122.08855, 49.172645], [-122.09016, 49.172414], [-122.092999, 49.17241], [-122.092925, 49.163282], [-122.08949, 49.163362], [-122.089409, 49.16882], [-122.083726, 49.169147], [-122.084134, 49.170981], [-122.081274, 49.170897], [-122.081279, 49.172676], [-122.076745, 49.172944], [-122.071885, 49.174826], [-122.073456, 49.17666], [-122.073584, 49.177059], [-122.073389, 49.177862], [-122.07371, 49.178877], [-122.073652, 49.178985], [-122.073742, 49.179275], [-122.073612, 49.17943], [-122.073744, 49.179639], [-122.074327, 49.179746], [-122.075474, 49.179296]]]]}, "properties": {"name": "Skweahm 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skweahm 10", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909881", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.002368, 49.246644], [-122.00786, 49.246269], [-122.008528, 49.233565], [-122.008497, 49.232586], [-122.008393, 49.232059], [-122.007168, 49.232506], [-122.005977, 49.23276], [-122.005449, 49.232812], [-122.004082, 49.232793], [-122.000791, 49.232491], [-122.000174, 49.232615], [-122.000066, 49.232851], [-121.999297, 49.232924], [-121.999568, 49.23311], [-121.999599, 49.233247], [-121.999288, 49.233982], [-121.998869, 49.234303], [-121.998445, 49.234875], [-121.998159, 49.235421], [-121.997954, 49.236067], [-121.997603, 49.236433], [-121.997667, 49.236685], [-121.997386, 49.236997], [-121.997526, 49.237547], [-121.997132, 49.237985], [-121.997247, 49.238417], [-121.997132, 49.238668], [-121.997139, 49.239037], [-121.997067, 49.239146], [-121.996707, 49.23933], [-121.996811, 49.239583], [-121.996572, 49.239878], [-121.996604, 49.24031], [-121.996533, 49.240426], [-121.995976, 49.240817], [-121.995933, 49.240907], [-121.995822, 49.242282], [-121.995721, 49.242533], [-121.994397, 49.243241], [-121.989397, 49.244103], [-121.987096, 49.244409], [-121.982329, 49.244818], [-121.980892, 49.244992], [-121.981076, 49.246115], [-122.002368, 49.246644]]]]}, "properties": {"name": "Squawkum Creek 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Squawkum Creek 3", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909882", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.456262, 49.98798], [-122.455445, 49.987177], [-122.453368, 49.984181], [-122.451407, 49.984189], [-122.448552, 49.984339], [-122.445816, 49.984402], [-122.445855, 49.988347], [-122.455066, 49.988152], [-122.456262, 49.98798]]], [[[-122.456262, 49.98798], [-122.45605, 49.989266], [-122.456002, 49.991802], [-122.458905, 49.991906], [-122.459308, 49.990089], [-122.456262, 49.98798]]]]}, "properties": {"name": "Sachteen", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sachteen", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909883", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.953977, 49.138095], [-121.953914, 49.135259], [-121.945349, 49.135146], [-121.945083, 49.135275], [-121.944515, 49.134859], [-121.943699, 49.134123], [-121.942937, 49.133224], [-121.94256, 49.13303], [-121.940957, 49.132471], [-121.940031, 49.134395], [-121.939708, 49.135526], [-121.939147, 49.13616], [-121.938786, 49.135948], [-121.938119, 49.135753], [-121.935834, 49.135435], [-121.935853, 49.138127], [-121.937967, 49.140221], [-121.938494, 49.141761], [-121.941105, 49.141894], [-121.94102, 49.141611], [-121.941461, 49.140806], [-121.94179, 49.140442], [-121.942082, 49.14024], [-121.942396, 49.140103], [-121.944109, 49.139716], [-121.94469, 49.139689], [-121.94578, 49.139787], [-121.946177, 49.139781], [-121.94651, 49.139705], [-121.947115, 49.139491], [-121.947417, 49.139318], [-121.947828, 49.138896], [-121.948099, 49.138097], [-121.953977, 49.138095]]]]}, "properties": {"name": "Skowkale", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Skowkale", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909884", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.974903, 49.158506], [-121.97917, 49.159007], [-121.980104, 49.15888], [-121.981016, 49.158946], [-121.982477, 49.158909], [-121.983471, 49.15895], [-121.984831, 49.159165], [-121.98471, 49.158896], [-121.984688, 49.15841], [-121.985088, 49.1576], [-121.985871, 49.156391], [-121.985988, 49.155915], [-121.985888, 49.155411], [-121.985686, 49.155095], [-121.984932, 49.154702], [-121.983331, 49.154406], [-121.982293, 49.154072], [-121.981902, 49.153665], [-121.981852, 49.153295], [-121.982059, 49.152621], [-121.982022, 49.152201], [-121.982293, 49.15187], [-121.984432, 49.151066], [-121.985385, 49.150617], [-121.986587, 49.149498], [-121.986746, 49.149012], [-121.98667, 49.148434], [-121.985991, 49.14731], [-121.985162, 49.147068], [-121.984753, 49.14683], [-121.983908, 49.146538], [-121.983515, 49.146517], [-121.982807, 49.146668], [-121.982182, 49.146946], [-121.981825, 49.14733], [-121.981957, 49.147771], [-121.982246, 49.148239], [-121.982102, 49.149207], [-121.981829, 49.14952], [-121.981316, 49.149814], [-121.980657, 49.149949], [-121.979603, 49.149882], [-121.978456, 49.149498], [-121.977482, 49.149401], [-121.976759, 49.149499], [-121.97595, 49.149782], [-121.975411, 49.150074], [-121.974735, 49.150193], [-121.974319, 49.150484], [-121.974185, 49.150698], [-121.974178, 49.15094], [-121.974402, 49.151315], [-121.975068, 49.151658], [-121.976368, 49.152061], [-121.976605, 49.152185], [-121.977559, 49.153183], [-121.97764, 49.153637], [-121.977574, 49.153977], [-121.977312, 49.154522], [-121.976935, 49.15487], [-121.976255, 49.155258], [-121.974814, 49.155273], [-121.973834, 49.154914], [-121.973536, 49.154749], [-121.973292, 49.154566], [-121.972932, 49.15414], [-121.973003, 49.153944], [-121.972821, 49.153555], [-121.972657, 49.15278], [-121.972525, 49.152589], [-121.972179, 49.152342], [-121.971929, 49.152289], [-121.970179, 49.152529], [-121.969506, 49.153095], [-121.969303, 49.153838], [-121.969469, 49.154488], [-121.96943, 49.154955], [-121.968588, 49.156584], [-121.968446, 49.156791], [-121.968209, 49.15695], [-121.967878, 49.157037], [-121.967856, 49.157302], [-121.970736, 49.158626], [-121.971603, 49.158661], [-121.972361, 49.158572], [-121.973325, 49.158203], [-121.974903, 49.158506]]], [[[-121.994336, 49.163391], [-121.994933, 49.163808], [-121.996122, 49.163999], [-122.00008, 49.164394], [-122.002726, 49.164515], [-122.006266, 49.165147], [-122.00711, 49.165055], [-122.006943, 49.158084], [-121.998658, 49.158443], [-121.998471, 49.161881], [-121.995066, 49.161778], [-121.992376, 49.161937], [-121.993001, 49.16319], [-121.993277, 49.163271], [-121.994336, 49.163391]]]]}, "properties": {"name": "Squiaala", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Squiaala", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909885", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.959878, 49.134387], [-121.959556, 49.135035], [-121.962269, 49.135025], [-121.9623, 49.137999], [-121.968864, 49.137871], [-121.968767, 49.137363], [-121.968864, 49.136772], [-121.968799, 49.136216], [-121.968631, 49.136217], [-121.967831, 49.134726], [-121.96722, 49.134606], [-121.965313, 49.134058], [-121.963394, 49.133374], [-121.962141, 49.132805], [-121.9608, 49.133084], [-121.95993, 49.133121], [-121.959878, 49.134387]]]]}, "properties": {"name": "Coqualeetza", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Coqualeetza", "economic_region_id": "5920", "census_division_code": "5909", "census_subdivision_code": "5909886", "regional_district_aka_census_division": "Fraser Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.659672, 49.197635], [-122.662175, 49.196831], [-122.66487, 49.19629], [-122.66794, 49.196227], [-122.668472, 49.193319], [-122.668957, 49.192711], [-122.671551, 49.191182], [-122.673073, 49.190531], [-122.673965, 49.189836], [-122.675365, 49.189045], [-122.676719, 49.18847], [-122.677746, 49.188179], [-122.678856, 49.187551], [-122.678825, 49.185852], [-122.678925, 49.184736], [-122.678668, 49.181901], [-122.679114, 49.181314], [-122.679477, 49.180504], [-122.67946, 49.176278], [-122.679364, 49.175584], [-122.679286, 49.172651], [-122.679103, 49.170136], [-122.678054, 49.166803], [-122.678932, 49.162882], [-122.679192, 49.159222], [-122.679332, 49.151938], [-122.678851, 49.148242], [-122.678864, 49.140864], [-122.679113, 49.138383], [-122.679491, 49.136252], [-122.679579, 49.136159], [-122.67962, 49.133607], [-122.679517, 49.133606], [-122.679595, 49.128379], [-122.679769, 49.127445], [-122.679994, 49.118416], [-122.679919, 49.118134], [-122.679759, 49.114076], [-122.679699, 49.113931], [-122.674443, 49.111528], [-122.674637, 49.112292], [-122.67469, 49.114868], [-122.671881, 49.114765], [-122.671699, 49.115395], [-122.656807, 49.115103], [-122.650465, 49.114917], [-122.649601, 49.114787], [-122.6485, 49.114774], [-122.648488, 49.114881], [-122.647419, 49.114856], [-122.647178, 49.114927], [-122.644161, 49.113173], [-122.645039, 49.112524], [-122.64006, 49.109453], [-122.637752, 49.108268], [-122.642748, 49.104596], [-122.638789, 49.104554], [-122.638703, 49.10243], [-122.638852, 49.097236], [-122.638624, 49.095578], [-122.640645, 49.095314], [-122.640584, 49.093951], [-122.637773, 49.093966], [-122.637526, 49.089515], [-122.641259, 49.08954], [-122.641343, 49.08749], [-122.640874, 49.085301], [-122.640849, 49.084805], [-122.641169, 49.084307], [-122.643782, 49.08421], [-122.647068, 49.084009], [-122.647154, 49.082008], [-122.652817, 49.082065], [-122.657135, 49.082035], [-122.66914, 49.082157], [-122.669038, 49.083845], [-122.672717, 49.084088], [-122.672824, 49.084312], [-122.674717, 49.084294], [-122.680043, 49.083881], [-122.680274, 49.082283], [-122.680087, 49.080036], [-122.68042, 49.074718], [-122.680583, 49.06741], [-122.680566, 49.060126], [-122.680339, 49.04179], [-122.68083, 49.039318], [-122.680364, 49.038418], [-122.680314, 49.031099], [-122.679674, 49.016609], [-122.680677, 49.015974], [-122.68168, 49.01054], [-122.679878, 49.005851], [-122.681645, 49.002209], [-122.65982, 49.00228], [-122.658108, 49.002239], [-122.603092, 49.00225], [-122.594739, 49.002204], [-122.581009, 49.002266], [-122.478849, 49.002302], [-122.478852, 49.007691], [-122.473502, 49.007695], [-122.473384, 49.007695], [-122.473377, 49.002303], [-122.460754, 49.002337], [-122.45917, 49.002257], [-122.45973, 49.016899], [-122.45993, 49.024535], [-122.459869, 49.025509], [-122.459409, 49.026097], [-122.459768, 49.028338], [-122.459779, 49.054128], [-122.459715, 49.054486], [-122.459781, 49.055003], [-122.459793, 49.066056], [-122.460007, 49.074996], [-122.459586, 49.078782], [-122.459574, 49.080424], [-122.460235, 49.088215], [-122.460227, 49.089349], [-122.460534, 49.095145], [-122.460447, 49.103493], [-122.460561, 49.105174], [-122.460526, 49.110728], [-122.460669, 49.118263], [-122.460465, 49.127495], [-122.460748, 49.132513], [-122.461015, 49.146628], [-122.461244, 49.149526], [-122.46142, 49.150787], [-122.461194, 49.151067], [-122.461158, 49.154441], [-122.461403, 49.160345], [-122.461425, 49.164479], [-122.461326, 49.16531], [-122.461496, 49.171328], [-122.464304, 49.170818], [-122.467188, 49.170465], [-122.472449, 49.170199], [-122.47821, 49.169796], [-122.488797, 49.168329], [-122.494291, 49.168007], [-122.496682, 49.167814], [-122.500467, 49.167679], [-122.5041, 49.167455], [-122.509855, 49.167306], [-122.511091, 49.16736], [-122.513471, 49.167228], [-122.517262, 49.167225], [-122.525251, 49.167584], [-122.529259, 49.168113], [-122.533433, 49.169165], [-122.538477, 49.170147], [-122.54121, 49.171041], [-122.542672, 49.171786], [-122.544891, 49.173219], [-122.548201, 49.175617], [-122.550816, 49.176902], [-122.553229, 49.177878], [-122.556327, 49.178853], [-122.563048, 49.180805], [-122.570324, 49.182652], [-122.573808, 49.183669], [-122.575047, 49.184109], [-122.577337, 49.185257], [-122.579981, 49.186927], [-122.582529, 49.188957], [-122.584739, 49.191285], [-122.585797, 49.193092], [-122.586532, 49.194634], [-122.58948, 49.199453], [-122.590821, 49.200947], [-122.591802, 49.201846], [-122.595111, 49.204122], [-122.5999, 49.207607], [-122.601569, 49.208531], [-122.60241, 49.20891], [-122.605724, 49.209806], [-122.608249, 49.210247], [-122.613789, 49.210471], [-122.617788, 49.210453], [-122.620316, 49.210273], [-122.62382, 49.209803], [-122.628389, 49.208877], [-122.636499, 49.206684], [-122.642354, 49.204585], [-122.653451, 49.199979], [-122.659672, 49.197635]], [[-122.651792, 49.197356], [-122.649505, 49.19291], [-122.655439, 49.191443], [-122.655836, 49.191688], [-122.656403, 49.19231], [-122.657609, 49.194717], [-122.654979, 49.195786], [-122.651792, 49.197356]], [[-122.573646, 49.17442], [-122.575246, 49.175047], [-122.577253, 49.176125], [-122.578302, 49.176938], [-122.57924, 49.177995], [-122.579928, 49.179284], [-122.579962, 49.180093], [-122.579772, 49.181477], [-122.579785, 49.181837], [-122.579984, 49.182666], [-122.580004, 49.183277], [-122.579008, 49.182789], [-122.577515, 49.182378], [-122.576723, 49.18198], [-122.576134, 49.181869], [-122.572414, 49.180461], [-122.570619, 49.179933], [-122.569702, 49.179749], [-122.56947, 49.179748], [-122.569208, 49.179846], [-122.568949, 49.179738], [-122.568935, 49.179522], [-122.568758, 49.179351], [-122.568485, 49.179259], [-122.567868, 49.17914], [-122.56732, 49.17921], [-122.566991, 49.179191], [-122.565264, 49.178797], [-122.564114, 49.178621], [-122.563075, 49.17824], [-122.562184, 49.177985], [-122.554968, 49.176338], [-122.554135, 49.176038], [-122.553698, 49.175749], [-122.553151, 49.175548], [-122.55296, 49.175404], [-122.551493, 49.173706], [-122.550963, 49.173219], [-122.550706, 49.172778], [-122.550109, 49.172208], [-122.550045, 49.171641], [-122.549896, 49.171479], [-122.549595, 49.171361], [-122.549196, 49.171368], [-122.548753, 49.170287], [-122.548489, 49.169314], [-122.548478, 49.168918], [-122.548618, 49.168739], [-122.552222, 49.168987], [-122.555648, 49.169378], [-122.558894, 49.169931], [-122.56428, 49.17068], [-122.565226, 49.170718], [-122.568492, 49.17065], [-122.571657, 49.171211], [-122.573669, 49.171758], [-122.57556, 49.172413], [-122.574621, 49.17293], [-122.573703, 49.173613], [-122.573196, 49.174567], [-122.573646, 49.17442]]]]}, "properties": {"name": "Langley - District municipality", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Langley - District municipality", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915001", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.679699, 49.113931], [-122.67994, 49.11371], [-122.680019, 49.111238], [-122.679925, 49.109831], [-122.680144, 49.10878], [-122.679834, 49.104391], [-122.679978, 49.102585], [-122.679668, 49.100246], [-122.679857, 49.098473], [-122.680082, 49.097403], [-122.68005, 49.096725], [-122.679415, 49.095206], [-122.679489, 49.093237], [-122.679651, 49.092688], [-122.679672, 49.091771], [-122.679578, 49.089584], [-122.679266, 49.087679], [-122.67988, 49.085844], [-122.680043, 49.083881], [-122.674717, 49.084294], [-122.672824, 49.084312], [-122.672717, 49.084088], [-122.669038, 49.083845], [-122.66914, 49.082157], [-122.657135, 49.082035], [-122.652817, 49.082065], [-122.647154, 49.082008], [-122.647068, 49.084009], [-122.643782, 49.08421], [-122.641169, 49.084307], [-122.640849, 49.084805], [-122.640874, 49.085301], [-122.641343, 49.08749], [-122.641259, 49.08954], [-122.637526, 49.089515], [-122.637773, 49.093966], [-122.640584, 49.093951], [-122.640645, 49.095314], [-122.638624, 49.095578], [-122.638852, 49.097236], [-122.638703, 49.10243], [-122.638789, 49.104554], [-122.642748, 49.104596], [-122.637752, 49.108268], [-122.64006, 49.109453], [-122.645039, 49.112524], [-122.644161, 49.113173], [-122.647178, 49.114927], [-122.647419, 49.114856], [-122.648488, 49.114881], [-122.6485, 49.114774], [-122.649601, 49.114787], [-122.650465, 49.114917], [-122.656807, 49.115103], [-122.671699, 49.115395], [-122.671881, 49.114765], [-122.67469, 49.114868], [-122.674637, 49.112292], [-122.674443, 49.111528], [-122.679699, 49.113931]]]]}, "properties": {"name": "Langley - City", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Langley - City", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915002", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.684097, 49.185667], [-122.690064, 49.184482], [-122.693106, 49.184053], [-122.700727, 49.183398], [-122.70612, 49.183206], [-122.707297, 49.183229], [-122.710778, 49.183534], [-122.713102, 49.183948], [-122.715832, 49.18467], [-122.719602, 49.186281], [-122.72112, 49.187117], [-122.722277, 49.188072], [-122.724209, 49.190536], [-122.725026, 49.192593], [-122.725604, 49.196655], [-122.725646, 49.197909], [-122.725916, 49.199804], [-122.726691, 49.202804], [-122.727209, 49.20433], [-122.728073, 49.205996], [-122.728956, 49.207355], [-122.729787, 49.208205], [-122.730384, 49.209011], [-122.730689, 49.211099], [-122.731996, 49.211257], [-122.738103, 49.213317], [-122.741173, 49.21416], [-122.744399, 49.214702], [-122.750621, 49.215573], [-122.751413, 49.215773], [-122.755614, 49.215089], [-122.767206, 49.213666], [-122.770225, 49.213382], [-122.779169, 49.21394], [-122.789464, 49.215518], [-122.795374, 49.216634], [-122.801719, 49.219661], [-122.803934, 49.219342], [-122.807689, 49.219331], [-122.817819, 49.219924], [-122.822073, 49.220012], [-122.829104, 49.219842], [-122.834104, 49.219645], [-122.837834, 49.219657], [-122.840284, 49.219577], [-122.856553, 49.220652], [-122.866813, 49.221108], [-122.873513, 49.220435], [-122.88135, 49.219759], [-122.88552, 49.217662], [-122.889564, 49.213386], [-122.891818, 49.210636], [-122.894287, 49.208108], [-122.904481, 49.199654], [-122.905825, 49.198783], [-122.911841, 49.19448], [-122.914625, 49.191356], [-122.916166, 49.189347], [-122.919373, 49.184355], [-122.920133, 49.183375], [-122.923339, 49.177211], [-122.919879, 49.177069], [-122.917463, 49.177093], [-122.916267, 49.177178], [-122.915343, 49.177338], [-122.914026, 49.177304], [-122.913566, 49.177181], [-122.913517, 49.177125], [-122.890124, 49.177144], [-122.890332, 49.155981], [-122.890292, 49.123006], [-122.890357, 49.119275], [-122.890322, 49.112902], [-122.890445, 49.107681], [-122.890403, 49.103409], [-122.890386, 49.102777], [-122.890319, 49.10269], [-122.890365, 49.101648], [-122.889216, 49.093085], [-122.889916, 49.092704], [-122.89055, 49.092096], [-122.890413, 49.091569], [-122.89019, 49.088023], [-122.890372, 49.062209], [-122.929836, 49.031852], [-122.932913, 49.029702], [-122.948601, 49.017424], [-122.958907, 49.009554], [-122.958921, 49.002095], [-122.845598, 49.002336], [-122.845542, 49.024431], [-122.845424, 49.031228], [-122.843852, 49.031233], [-122.809485, 49.031135], [-122.806095, 49.031131], [-122.805899, 49.031191], [-122.801288, 49.031185], [-122.798685, 49.031165], [-122.798471, 49.031102], [-122.797133, 49.031094], [-122.779191, 49.031066], [-122.779282, 49.016563], [-122.762586, 49.016584], [-122.762515, 49.01648], [-122.762354, 49.016439], [-122.762418, 49.015916], [-122.762356, 49.015662], [-122.762191, 49.015439], [-122.761892, 49.015258], [-122.761521, 49.015145], [-122.761048, 49.015109], [-122.759858, 49.015193], [-122.759178, 49.015077], [-122.758917, 49.014906], [-122.758235, 49.013866], [-122.757924, 49.013177], [-122.757743, 49.012382], [-122.757859, 49.005891], [-122.757771, 49.005448], [-122.760034, 49.005409], [-122.763558, 49.007211], [-122.763992, 49.007169], [-122.771973, 49.011147], [-122.772558, 49.011377], [-122.773962, 49.011627], [-122.788775, 49.01599], [-122.789097, 49.002463], [-122.758076, 49.002215], [-122.755166, 49.00228], [-122.755053, 49.002172], [-122.754944, 49.002162], [-122.751618, 49.002147], [-122.681645, 49.002209], [-122.679878, 49.005851], [-122.68168, 49.01054], [-122.680677, 49.015974], [-122.679674, 49.016609], [-122.680314, 49.031099], [-122.680364, 49.038418], [-122.68083, 49.039318], [-122.680339, 49.04179], [-122.680566, 49.060126], [-122.680583, 49.06741], [-122.68042, 49.074718], [-122.680087, 49.080036], [-122.680274, 49.082283], [-122.679949, 49.084587], [-122.67988, 49.085844], [-122.679266, 49.087679], [-122.679578, 49.089584], [-122.679672, 49.091771], [-122.679651, 49.092688], [-122.679489, 49.093237], [-122.679415, 49.095206], [-122.68005, 49.096725], [-122.680082, 49.097403], [-122.679857, 49.098473], [-122.679668, 49.100246], [-122.679978, 49.102585], [-122.679834, 49.104391], [-122.680144, 49.10878], [-122.679925, 49.109831], [-122.680019, 49.111136], [-122.679992, 49.113563], [-122.67994, 49.11371], [-122.679699, 49.113931], [-122.679759, 49.114076], [-122.679919, 49.118134], [-122.679994, 49.118416], [-122.679769, 49.127445], [-122.679595, 49.128379], [-122.679517, 49.133606], [-122.67962, 49.133607], [-122.679579, 49.136159], [-122.679491, 49.136252], [-122.679113, 49.138383], [-122.678864, 49.140864], [-122.678851, 49.148242], [-122.679332, 49.151938], [-122.679192, 49.159222], [-122.678932, 49.162882], [-122.678054, 49.166803], [-122.679103, 49.170136], [-122.679286, 49.172651], [-122.679364, 49.175584], [-122.67946, 49.176278], [-122.679477, 49.180504], [-122.679114, 49.181314], [-122.678668, 49.181901], [-122.678925, 49.184736], [-122.678825, 49.185852], [-122.678856, 49.187551], [-122.679512, 49.187179], [-122.680688, 49.186697], [-122.684097, 49.185667]]]]}, "properties": {"name": "Surrey", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Surrey", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915004", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.779191, 49.031066], [-122.797133, 49.031094], [-122.798471, 49.031102], [-122.798685, 49.031165], [-122.801288, 49.031185], [-122.805899, 49.031191], [-122.806095, 49.031131], [-122.809485, 49.031135], [-122.845424, 49.031228], [-122.845542, 49.024431], [-122.845598, 49.002336], [-122.816865, 49.001932], [-122.799878, 49.001892], [-122.789097, 49.002463], [-122.788774, 49.015587], [-122.788778, 49.016212], [-122.788947, 49.016426], [-122.78891, 49.016568], [-122.779282, 49.016563], [-122.779191, 49.031066]]]]}, "properties": {"name": "White Rock", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "White Rock", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915007", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.102392, 49.087469], [-123.10624, 49.086861], [-123.109365, 49.086445], [-123.113178, 49.086465], [-123.116316, 49.086725], [-123.118455, 49.086832], [-123.121122, 49.086847], [-123.124801, 49.087745], [-123.125781, 49.088051], [-123.126763, 49.088673], [-123.140147, 49.103464], [-123.1453, 49.108915], [-123.148881, 49.10931], [-123.153687, 49.110112], [-123.156895, 49.110798], [-123.187694, 49.118248], [-123.191003, 49.118871], [-123.193503, 49.119658], [-123.213147, 49.126267], [-123.218329, 49.128077], [-123.225866, 49.130388], [-123.229215, 49.130601], [-123.238539, 49.128344], [-123.246215, 49.125807], [-123.352095, 49.082153], [-123.327284, 49.069106], [-123.244931, 49.026191], [-123.199154, 49.002161], [-123.143923, 49.002045], [-123.110699, 49.00221], [-123.089776, 49.001919], [-123.088362, 49.002008], [-123.06842, 49.002062], [-123.067873, 49.001979], [-123.054083, 49.002047], [-123.037937, 49.002014], [-123.036152, 49.002065], [-123.01981, 49.002105], [-123.0, 49.002413], [-122.958922, 49.002424], [-122.958907, 49.009554], [-122.948601, 49.017424], [-122.932913, 49.029702], [-122.929836, 49.031852], [-122.890372, 49.062209], [-122.89019, 49.088023], [-122.890413, 49.091569], [-122.89055, 49.092096], [-122.889916, 49.092704], [-122.889216, 49.093085], [-122.890365, 49.101648], [-122.890319, 49.10269], [-122.890386, 49.102777], [-122.890403, 49.103409], [-122.890445, 49.107681], [-122.890322, 49.112902], [-122.890357, 49.119275], [-122.890292, 49.123006], [-122.890332, 49.155981], [-122.890124, 49.177144], [-122.913517, 49.177125], [-122.913566, 49.177181], [-122.914026, 49.177304], [-122.915343, 49.177338], [-122.916267, 49.177178], [-122.917463, 49.177093], [-122.919879, 49.177069], [-122.923339, 49.177211], [-122.920133, 49.183375], [-122.919373, 49.184355], [-122.916166, 49.189347], [-122.914625, 49.191356], [-122.91221, 49.194063], [-122.919986, 49.194689], [-122.920736, 49.193931], [-122.920982, 49.193557], [-122.922371, 49.192476], [-122.923322, 49.191479], [-122.924039, 49.190913], [-122.924475, 49.190687], [-122.92499, 49.190174], [-122.927189, 49.188579], [-122.929429, 49.187232], [-122.930901, 49.186649], [-122.932688, 49.186101], [-122.933974, 49.185127], [-122.935398, 49.183849], [-122.936147, 49.182758], [-122.938172, 49.181602], [-122.939507, 49.181188], [-122.943256, 49.179612], [-122.946137, 49.178631], [-122.947393, 49.178049], [-122.949766, 49.17717], [-122.952071, 49.176496], [-122.954403, 49.176005], [-122.956794, 49.17523], [-122.95765, 49.174844], [-122.958294, 49.1744], [-122.960298, 49.173256], [-122.961735, 49.17187], [-122.962321, 49.171056], [-122.963556, 49.169792], [-122.96395, 49.169174], [-122.964708, 49.168565], [-122.966133, 49.167757], [-122.969205, 49.166934], [-122.973648, 49.166045], [-122.975685, 49.165374], [-122.978833, 49.164467], [-122.982241, 49.163598], [-122.983142, 49.163205], [-122.98375, 49.162821], [-122.984861, 49.161688], [-122.985232, 49.161023], [-122.985753, 49.160474], [-122.987408, 49.159119], [-122.988651, 49.155738], [-122.99549, 49.154493], [-123.004083, 49.152431], [-123.016994, 49.150316], [-123.029883, 49.14771], [-123.034401, 49.146685], [-123.03878, 49.145341], [-123.041739, 49.143991], [-123.045847, 49.141133], [-123.050054, 49.137136], [-123.051003, 49.135999], [-123.052611, 49.134453], [-123.054237, 49.133273], [-123.056354, 49.132048], [-123.06194, 49.129227], [-123.064511, 49.12781], [-123.07078, 49.123965], [-123.075022, 49.12197], [-123.085279, 49.11823], [-123.085844, 49.118111], [-123.086857, 49.110532], [-123.09074, 49.103424], [-123.09341, 49.097725], [-123.096653, 49.090137], [-123.097669, 49.089286], [-123.098667, 49.088625], [-123.100258, 49.088007], [-123.102392, 49.087469]], [[-123.130472, 49.070283], [-123.119441, 49.070002], [-123.119589, 49.063647], [-123.122133, 49.063722], [-123.122083, 49.064188], [-123.122561, 49.064219], [-123.123143, 49.064219], [-123.123153, 49.063753], [-123.123987, 49.063777], [-123.124001, 49.056612], [-123.109952, 49.056394], [-123.109954, 49.056031], [-123.107379, 49.056016], [-123.107367, 49.055455], [-123.102762, 49.055477], [-123.102786, 49.056053], [-123.099641, 49.056048], [-123.099501, 49.052884], [-123.095183, 49.052869], [-123.09454, 49.05294], [-123.093605, 49.052712], [-123.090823, 49.052897], [-123.090822, 49.053899], [-123.079707, 49.053882], [-123.079706, 49.037517], [-123.090963, 49.03211], [-123.090832, 49.024723], [-123.093637, 49.02465], [-123.096811, 49.024631], [-123.097369, 49.024666], [-123.09964, 49.02457], [-123.1005, 49.024641], [-123.10056, 49.024173], [-123.100483, 49.023663], [-123.10008, 49.023175], [-123.099902, 49.022698], [-123.099653, 49.022311], [-123.099161, 49.021781], [-123.098077, 49.020951], [-123.09724, 49.02063], [-123.095878, 49.019805], [-123.09547, 49.019498], [-123.094897, 49.018878], [-123.094184, 49.018501], [-123.093219, 49.018148], [-123.093129, 49.01792], [-123.096766, 49.017836], [-123.098014, 49.0194], [-123.099452, 49.020684], [-123.099973, 49.02108], [-123.100221, 49.021197], [-123.100303, 49.021683], [-123.10118, 49.022438], [-123.101906, 49.022851], [-123.102713, 49.023192], [-123.10315, 49.023255], [-123.103921, 49.023262], [-123.104462, 49.023501], [-123.104896, 49.023567], [-123.105936, 49.023515], [-123.102253, 49.026113], [-123.102161, 49.026609], [-123.101996, 49.026898], [-123.101873, 49.027348], [-123.101713, 49.028257], [-123.101371, 49.028959], [-123.100784, 49.029734], [-123.100731, 49.030391], [-123.101104, 49.032342], [-123.100709, 49.032891], [-123.100121, 49.033396], [-123.100096, 49.033692], [-123.099521, 49.033837], [-123.099301, 49.033962], [-123.099168, 49.034737], [-123.099207, 49.034827], [-123.099894, 49.035186], [-123.101644, 49.035778], [-123.102085, 49.036047], [-123.104918, 49.037178], [-123.107069, 49.038265], [-123.107535, 49.038885], [-123.107783, 49.039397], [-123.108509, 49.039847], [-123.108988, 49.040584], [-123.109086, 49.041007], [-123.109062, 49.042184], [-123.109117, 49.042409], [-123.109282, 49.042572], [-123.10935, 49.043201], [-123.110503, 49.044648], [-123.111272, 49.045835], [-123.111587, 49.046185], [-123.111618, 49.047031], [-123.112207, 49.047408], [-123.112467, 49.047651], [-123.112631, 49.047713], [-123.114302, 49.048099], [-123.114974, 49.048306], [-123.116958, 49.048384], [-123.117903, 49.048672], [-123.118917, 49.048858], [-123.119656, 49.049236], [-123.120409, 49.049721], [-123.121879, 49.04989], [-123.123815, 49.051038], [-123.123986, 49.051255], [-123.12448, 49.051578], [-123.127424, 49.052565], [-123.128054, 49.052862], [-123.129178, 49.053175], [-123.130602, 49.053739], [-123.130567, 49.056077], [-123.134137, 49.056112], [-123.13413, 49.059499], [-123.130559, 49.059485], [-123.130561, 49.061637], [-123.13623, 49.061626], [-123.136158, 49.065269], [-123.130546, 49.065246], [-123.130472, 49.070283]]]]}, "properties": {"name": "Delta", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Delta", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915011", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.296319, 49.259118], [-123.299437, 49.259176], [-123.299768, 49.250016], [-123.30297, 49.175285], [-123.303443, 49.162612], [-123.303901, 49.140913], [-123.304977, 49.103969], [-123.299909, 49.103719], [-123.246215, 49.125807], [-123.238539, 49.128344], [-123.229215, 49.130601], [-123.225866, 49.130388], [-123.218329, 49.128077], [-123.213147, 49.126267], [-123.193503, 49.119658], [-123.191003, 49.118871], [-123.187694, 49.118248], [-123.156895, 49.110798], [-123.153687, 49.110112], [-123.148881, 49.10931], [-123.1453, 49.108915], [-123.140147, 49.103464], [-123.126763, 49.088673], [-123.125781, 49.088051], [-123.124801, 49.087745], [-123.121122, 49.086847], [-123.118455, 49.086832], [-123.116316, 49.086725], [-123.113178, 49.086465], [-123.109365, 49.086445], [-123.10624, 49.086861], [-123.102392, 49.087469], [-123.100258, 49.088007], [-123.098667, 49.088625], [-123.097669, 49.089286], [-123.096653, 49.090137], [-123.09341, 49.097725], [-123.09074, 49.103424], [-123.086857, 49.110532], [-123.085844, 49.118111], [-123.085279, 49.11823], [-123.075022, 49.12197], [-123.07078, 49.123965], [-123.064511, 49.12781], [-123.06194, 49.129227], [-123.056354, 49.132048], [-123.054237, 49.133273], [-123.052611, 49.134453], [-123.051003, 49.135999], [-123.050054, 49.137136], [-123.045847, 49.141133], [-123.041739, 49.143991], [-123.03878, 49.145341], [-123.034401, 49.146685], [-123.029883, 49.14771], [-123.016994, 49.150316], [-123.004083, 49.152431], [-122.99549, 49.154493], [-122.988651, 49.155738], [-122.987408, 49.159119], [-122.985753, 49.160474], [-122.985232, 49.161023], [-122.984861, 49.161688], [-122.98375, 49.162821], [-122.983142, 49.163205], [-122.982241, 49.163598], [-122.978833, 49.164467], [-122.975685, 49.165374], [-122.973648, 49.166045], [-122.969205, 49.166934], [-122.966133, 49.167757], [-122.964708, 49.168565], [-122.96395, 49.169174], [-122.963556, 49.169792], [-122.962321, 49.171056], [-122.961735, 49.17187], [-122.960298, 49.173256], [-122.958294, 49.1744], [-122.95765, 49.174844], [-122.956921, 49.175172], [-122.957262, 49.175855], [-122.957333, 49.176202], [-122.957246, 49.185927], [-122.95748, 49.188914], [-122.957439, 49.190121], [-122.960847, 49.188292], [-122.965192, 49.186492], [-122.967964, 49.183912], [-122.969753, 49.181906], [-122.972961, 49.180723], [-122.978217, 49.18016], [-122.98282, 49.181369], [-122.987162, 49.182981], [-122.990569, 49.184893], [-122.994292, 49.187257], [-123.000877, 49.190791], [-123.004723, 49.193053], [-123.008756, 49.194867], [-123.011558, 49.195843], [-123.017557, 49.198278], [-123.019351, 49.198872], [-123.029789, 49.201291], [-123.039888, 49.203776], [-123.042337, 49.204158], [-123.047324, 49.204646], [-123.050681, 49.204572], [-123.055057, 49.204571], [-123.056456, 49.20466], [-123.058781, 49.204657], [-123.066894, 49.205981], [-123.067539, 49.206148], [-123.071, 49.207551], [-123.073144, 49.208135], [-123.074475, 49.208331], [-123.076271, 49.208283], [-123.080655, 49.207399], [-123.083347, 49.206793], [-123.091755, 49.20524], [-123.093464, 49.204832], [-123.097913, 49.204185], [-123.100053, 49.204034], [-123.101572, 49.204085], [-123.113518, 49.204761], [-123.115723, 49.20414], [-123.117334, 49.203801], [-123.125843, 49.200125], [-123.126824, 49.199348], [-123.132434, 49.198535], [-123.136641, 49.199135], [-123.140239, 49.200198], [-123.140864, 49.201914], [-123.141217, 49.201987], [-123.147435, 49.204541], [-123.150739, 49.205348], [-123.153562, 49.207401], [-123.155293, 49.209299], [-123.156937, 49.210479], [-123.163556, 49.213588], [-123.16825, 49.21446], [-123.1722, 49.214962], [-123.180367, 49.215699], [-123.191309, 49.21944], [-123.202854, 49.221942], [-123.207333, 49.222818], [-123.225957, 49.228872], [-123.221588, 49.236999], [-123.222423, 49.237556], [-123.223111, 49.237815], [-123.223894, 49.238245], [-123.224334, 49.238415], [-123.22523, 49.23898], [-123.226884, 49.239759], [-123.227751, 49.240352], [-123.229279, 49.240781], [-123.230117, 49.241157], [-123.231425, 49.241468], [-123.233187, 49.242176], [-123.233724, 49.242525], [-123.234398, 49.242776], [-123.23495, 49.243099], [-123.236163, 49.243924], [-123.237043, 49.244291], [-123.237706, 49.244775], [-123.237952, 49.244838], [-123.238683, 49.245277], [-123.239771, 49.245724], [-123.240103, 49.245958], [-123.241217, 49.246378], [-123.241752, 49.246503], [-123.242331, 49.246816], [-123.244287, 49.247622], [-123.245868, 49.24805], [-123.246488, 49.248364], [-123.247067, 49.248471], [-123.247563, 49.248631], [-123.248222, 49.248946], [-123.24981, 49.249985], [-123.250235, 49.2502], [-123.251599, 49.250746], [-123.252452, 49.250924], [-123.25263, 49.251041], [-123.253239, 49.251848], [-123.253281, 49.252046], [-123.253711, 49.252711], [-123.253619, 49.253647], [-123.253719, 49.254033], [-123.254009, 49.254329], [-123.254641, 49.254634], [-123.25554, 49.25545], [-123.256371, 49.256363], [-123.264501, 49.259328], [-123.273302, 49.262324], [-123.276225, 49.259211], [-123.296319, 49.259118]]]]}, "properties": {"name": "Richmond", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Richmond", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915015", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.012082, 49.548203], [-123.061625, 49.548139], [-123.102329, 49.547784], [-123.101872, 49.501831], [-123.102823, 49.482197], [-123.122042, 49.482331], [-123.125532, 49.48223], [-123.126189, 49.482265], [-123.161803, 49.48216], [-123.193131, 49.482165], [-123.206948, 49.482104], [-123.215484, 49.482015], [-123.218577, 49.481881], [-123.226048, 49.481678], [-123.238597, 49.481515], [-123.243398, 49.481348], [-123.244467, 49.481496], [-123.274888, 49.481103], [-123.281647, 49.458279], [-123.288932, 49.439864], [-123.29723, 49.427402], [-123.302969, 49.419106], [-123.302714, 49.418776], [-123.303835, 49.416974], [-123.304429, 49.415358], [-123.305673, 49.414254], [-123.304202, 49.413438], [-123.301983, 49.411995], [-123.300822, 49.41018], [-123.300338, 49.407529], [-123.300879, 49.405701], [-123.302572, 49.403614], [-123.303858, 49.401448], [-123.304988, 49.399783], [-123.306673, 49.398516], [-123.309815, 49.397497], [-123.312024, 49.396588], [-123.313288, 49.395637], [-123.314186, 49.394517], [-123.314359, 49.393209], [-123.313173, 49.391507], [-123.313011, 49.391511], [-123.312268, 49.390113], [-123.312551, 49.388388], [-123.313736, 49.386791], [-123.315421, 49.385389], [-123.316399, 49.384223], [-123.317229, 49.382716], [-123.316973, 49.381977], [-123.314536, 49.380226], [-123.314525, 49.379934], [-123.313555, 49.377911], [-123.313348, 49.375989], [-123.314377, 49.373634], [-123.315501, 49.371393], [-123.317596, 49.369921], [-123.321698, 49.368117], [-123.323031, 49.36669], [-123.323364, 49.364874], [-123.326173, 49.357609], [-123.327897, 49.354714], [-123.329897, 49.352018], [-123.332551, 49.348872], [-123.33554, 49.346272], [-123.340923, 49.342983], [-123.342304, 49.342721], [-123.343475, 49.342756], [-123.345026, 49.342287], [-123.346703, 49.3417], [-123.351973, 49.335291], [-123.354618, 49.333048], [-123.356103, 49.332054], [-123.359147, 49.33157], [-123.364888, 49.330055], [-123.366363, 49.329465], [-123.400766, 49.329484], [-123.419195, 49.329293], [-123.420217, 49.329674], [-123.42463, 49.330416], [-123.42834, 49.331543], [-123.433326, 49.332479], [-123.435935, 49.33327], [-123.437463, 49.334117], [-123.438543, 49.335652], [-123.439507, 49.337294], [-123.439467, 49.337723], [-123.446722, 49.336648], [-123.453652, 49.329122], [-123.474559, 49.307178], [-123.511532, 49.30909], [-123.52734, 49.309824], [-123.548923, 49.310255], [-123.5602, 49.310786], [-123.571321, 49.310882], [-123.638205, 49.31093], [-123.668397, 49.311943], [-123.709628, 49.31224], [-123.738389, 49.312339], [-123.714646, 49.306553], [-123.693513, 49.300835], [-123.6703, 49.293681], [-123.651935, 49.287494], [-123.632607, 49.280311], [-123.615071, 49.273302], [-123.599335, 49.266546], [-123.581931, 49.258806], [-123.564257, 49.250349], [-123.547819, 49.242964], [-123.533989, 49.235923], [-123.521971, 49.229319], [-123.511327, 49.222975], [-123.502602, 49.216811], [-123.488209, 49.205267], [-123.481558, 49.199268], [-123.474614, 49.191745], [-123.468231, 49.183582], [-123.445233, 49.146617], [-123.421836, 49.107686], [-123.401052, 49.07352], [-123.385462, 49.048059], [-123.377996, 49.035962], [-123.357125, 49.002785], [-123.318555, 49.000066], [-123.271768, 49.002231], [-123.198889, 49.002022], [-123.244931, 49.026191], [-123.327284, 49.069106], [-123.352095, 49.082153], [-123.299909, 49.103719], [-123.304977, 49.103969], [-123.303901, 49.140913], [-123.303443, 49.162612], [-123.30297, 49.175285], [-123.299768, 49.250016], [-123.299437, 49.259176], [-123.296319, 49.259118], [-123.276225, 49.259211], [-123.273302, 49.262324], [-123.264501, 49.259328], [-123.256371, 49.256363], [-123.25554, 49.25545], [-123.254641, 49.254634], [-123.254009, 49.254329], [-123.253719, 49.254033], [-123.253619, 49.253647], [-123.253711, 49.252711], [-123.253281, 49.252046], [-123.253239, 49.251848], [-123.25263, 49.251041], [-123.252452, 49.250924], [-123.251599, 49.250746], [-123.250235, 49.2502], [-123.24981, 49.249985], [-123.248222, 49.248946], [-123.247563, 49.248631], [-123.247067, 49.248471], [-123.246488, 49.248364], [-123.245868, 49.24805], [-123.244287, 49.247622], [-123.242331, 49.246816], [-123.241752, 49.246503], [-123.241217, 49.246378], [-123.240103, 49.245958], [-123.239771, 49.245724], [-123.238683, 49.245277], [-123.237952, 49.244838], [-123.237706, 49.244775], [-123.237043, 49.244291], [-123.236163, 49.243924], [-123.23495, 49.243099], [-123.234398, 49.242776], [-123.233724, 49.242525], [-123.233187, 49.242176], [-123.231425, 49.241468], [-123.230117, 49.241157], [-123.229279, 49.240781], [-123.227751, 49.240352], [-123.226884, 49.239759], [-123.22523, 49.23898], [-123.224334, 49.238415], [-123.223894, 49.238245], [-123.223111, 49.237815], [-123.222423, 49.237556], [-123.221588, 49.236999], [-123.219628, 49.239797], [-123.211137, 49.23872], [-123.208891, 49.238284], [-123.197094, 49.235053], [-123.196847, 49.235519], [-123.196849, 49.236481], [-123.198411, 49.23649], [-123.198343, 49.238591], [-123.196836, 49.23864], [-123.196767, 49.24622], [-123.198927, 49.246306], [-123.204621, 49.249128], [-123.204333, 49.249351], [-123.204027, 49.249431], [-123.200569, 49.250048], [-123.19913, 49.250065], [-123.198846, 49.25015], [-123.196775, 49.250241], [-123.196805, 49.251961], [-123.196495, 49.253935], [-123.196559, 49.256524], [-123.201024, 49.25673], [-123.202938, 49.256695], [-123.20325, 49.257969], [-123.20323, 49.258268], [-123.215403, 49.258513], [-123.215255, 49.264], [-123.215055, 49.267369], [-123.217033, 49.267382], [-123.219583, 49.267239], [-123.219555, 49.268805], [-123.219613, 49.26898], [-123.221946, 49.268733], [-123.221988, 49.270118], [-123.224749, 49.272675], [-123.224914, 49.274713], [-123.22388, 49.277386], [-123.223769, 49.278206], [-123.221513, 49.282905], [-123.210759, 49.282766], [-123.205454, 49.282624], [-123.187959, 49.282329], [-123.164263, 49.282303], [-123.163985, 49.297939], [-123.163155, 49.316613], [-123.158635, 49.31669], [-123.149872, 49.316648], [-123.140221, 49.316677], [-123.138403, 49.315718], [-123.137806, 49.316355], [-123.141684, 49.318068], [-123.144389, 49.318966], [-123.150451, 49.320154], [-123.153653, 49.323254], [-123.156319, 49.324747], [-123.166243, 49.324791], [-123.169763, 49.325106], [-123.170754, 49.325469], [-123.175781, 49.328493], [-123.181918, 49.330454], [-123.189642, 49.332269], [-123.19253, 49.332623], [-123.196167, 49.333441], [-123.197863, 49.334216], [-123.199271, 49.334455], [-123.201189, 49.334502], [-123.201987, 49.334629], [-123.207216, 49.336905], [-123.209772, 49.337488], [-123.213122, 49.33644], [-123.214952, 49.335511], [-123.216878, 49.334982], [-123.219492, 49.335162], [-123.225105, 49.336633], [-123.226583, 49.336719], [-123.234783, 49.336305], [-123.237448, 49.336794], [-123.239663, 49.336349], [-123.244744, 49.335141], [-123.248986, 49.333881], [-123.253944, 49.331013], [-123.258771, 49.329698], [-123.261524, 49.328098], [-123.263757, 49.327565], [-123.266909, 49.328288], [-123.270292, 49.331043], [-123.271957, 49.339208], [-123.271821, 49.340226], [-123.271131, 49.341269], [-123.269296, 49.342946], [-123.269152, 49.343326], [-123.269289, 49.343585], [-123.273373, 49.345311], [-123.273913, 49.349379], [-123.27488, 49.350719], [-123.277195, 49.351978], [-123.279707, 49.352116], [-123.285282, 49.354957], [-123.286143, 49.356131], [-123.287348, 49.360201], [-123.290287, 49.36347], [-123.289484, 49.368127], [-123.293333, 49.369015], [-123.295543, 49.370474], [-123.29643, 49.372319], [-123.296081, 49.373786], [-123.293219, 49.377097], [-123.29164, 49.378119], [-123.286907, 49.378652], [-123.280075, 49.381996], [-123.27843, 49.382457], [-123.276898, 49.382472], [-123.272818, 49.38207], [-123.271712, 49.382164], [-123.270054, 49.382772], [-123.267791, 49.384107], [-123.263462, 49.387911], [-123.259788, 49.392809], [-123.257016, 49.395355], [-123.255872, 49.399183], [-123.249774, 49.402526], [-123.247293, 49.404253], [-123.245158, 49.407564], [-123.243273, 49.407684], [-123.241495, 49.408111], [-123.240641, 49.408034], [-123.21143, 49.407091], [-123.189628, 49.406734], [-123.180061, 49.406822], [-123.142332, 49.406491], [-123.121558, 49.406199], [-123.119998, 49.406302], [-123.069943, 49.407195], [-123.035264, 49.407631], [-122.982709, 49.408834], [-122.970619, 49.408597], [-122.948869, 49.409394], [-122.927985, 49.411531], [-122.89937, 49.414547], [-122.883137, 49.414422], [-122.869358, 49.413809], [-122.878424, 49.381881], [-122.833647, 49.382047], [-122.833077, 49.381374], [-122.832745, 49.381327], [-122.830066, 49.379962], [-122.828185, 49.379128], [-122.826206, 49.377036], [-122.825395, 49.375026], [-122.826312, 49.372525], [-122.829023, 49.369929], [-122.831091, 49.366375], [-122.832086, 49.364981], [-122.832299, 49.36211], [-122.83187, 49.36112], [-122.831104, 49.360329], [-122.831087, 49.359847], [-122.827891, 49.359895], [-122.827292, 49.359676], [-122.826654, 49.359122], [-122.826205, 49.3581], [-122.824913, 49.357091], [-122.82456, 49.356655], [-122.824491, 49.356276], [-122.824704, 49.355428], [-122.824541, 49.355051], [-122.823813, 49.354094], [-122.823611, 49.353668], [-122.823576, 49.35334], [-122.823269, 49.353012], [-122.823197, 49.352572], [-122.823239, 49.352155], [-122.823426, 49.351626], [-122.775666, 49.351226], [-122.773646, 49.351029], [-122.757885, 49.351397], [-122.734101, 49.351361], [-122.703245, 49.351016], [-122.68124, 49.350864], [-122.661162, 49.350984], [-122.64182, 49.351334], [-122.634382, 49.351396], [-122.627064, 49.351531], [-122.618032, 49.351286], [-122.616686, 49.351207], [-122.614542, 49.350654], [-122.612686, 49.350647], [-122.610057, 49.350895], [-122.607841, 49.351351], [-122.597195, 49.355527], [-122.591124, 49.358609], [-122.59053, 49.359102], [-122.585307, 49.365165], [-122.563166, 49.391435], [-122.5624, 49.393139], [-122.555521, 49.415943], [-122.552387, 49.420409], [-122.550082, 49.42345], [-122.54454, 49.429784], [-122.542628, 49.431866], [-122.535214, 49.443484], [-122.534071, 49.445972], [-122.532266, 49.45064], [-122.529141, 49.456283], [-122.528133, 49.457869], [-122.52719, 49.46022], [-122.526861, 49.462348], [-122.527243, 49.465353], [-122.527877, 49.466539], [-122.532974, 49.47253], [-122.540256, 49.476312], [-122.558584, 49.483056], [-122.57288, 49.485895], [-122.575278, 49.486793], [-122.577144, 49.487797], [-122.581712, 49.490579], [-122.582637, 49.491649], [-122.587452, 49.498374], [-122.588571, 49.501293], [-122.594534, 49.512772], [-122.596354, 49.515408], [-122.602322, 49.524466], [-122.604133, 49.536253], [-122.604548, 49.537607], [-122.605346, 49.53924], [-122.606605, 49.539715], [-122.607684, 49.539531], [-122.608045, 49.539806], [-122.608207, 49.540656], [-122.608167, 49.541703], [-122.613755, 49.540709], [-122.62477, 49.540591], [-122.629891, 49.540408], [-122.638813, 49.53924], [-122.647779, 49.539085], [-122.655447, 49.539649], [-122.659129, 49.541085], [-122.683166, 49.553478], [-122.6899, 49.56289], [-122.692748, 49.568843], [-122.698197, 49.571284], [-122.700111, 49.573555], [-122.747453, 49.573887], [-122.749436, 49.573598], [-122.750482, 49.573817], [-122.750756, 49.573921], [-122.779908, 49.574276], [-122.795652, 49.57314], [-122.801725, 49.572534], [-122.808186, 49.572707], [-122.80781, 49.572293], [-122.877775, 49.572758], [-122.930704, 49.571772], [-122.939911, 49.571171], [-122.945068, 49.570543], [-122.934367, 49.560708], [-122.928882, 49.557247], [-122.924821, 49.553988], [-122.924813, 49.550971], [-122.924237, 49.54843], [-123.012082, 49.548203]], [[-123.242868, 49.476737], [-123.2333, 49.477078], [-123.232895, 49.471512], [-123.233107, 49.470484], [-123.230444, 49.470312], [-123.229005, 49.460381], [-123.228723, 49.457627], [-123.228925, 49.452901], [-123.229005, 49.448647], [-123.236864, 49.448729], [-123.23917, 49.448799], [-123.244099, 49.448807], [-123.245572, 49.451498], [-123.245427, 49.452212], [-123.245017, 49.45325], [-123.243331, 49.454703], [-123.243944, 49.455671], [-123.245157, 49.456735], [-123.245549, 49.457977], [-123.245545, 49.460294], [-123.244069, 49.462473], [-123.243757, 49.463701], [-123.245172, 49.467139], [-123.245119, 49.46795], [-123.244675, 49.46847], [-123.244547, 49.468528], [-123.245175, 49.468592], [-123.246903, 49.468639], [-123.247555, 49.468921], [-123.248187, 49.469348], [-123.249062, 49.470246], [-123.249069, 49.471032], [-123.247814, 49.472264], [-123.248006, 49.473448], [-123.248375, 49.474245], [-123.249078, 49.475018], [-123.242868, 49.476737]]], [[[-122.686505, 49.199754], [-122.692398, 49.2016], [-122.707602, 49.207056], [-122.710265, 49.208118], [-122.713322, 49.209077], [-122.715877, 49.209578], [-122.718921, 49.210072], [-122.730689, 49.211099], [-122.730384, 49.209011], [-122.729787, 49.208205], [-122.728956, 49.207355], [-122.728073, 49.205996], [-122.727209, 49.20433], [-122.726691, 49.202804], [-122.725916, 49.199804], [-122.725646, 49.197909], [-122.725604, 49.196655], [-122.725026, 49.192593], [-122.724209, 49.190536], [-122.722277, 49.188072], [-122.72112, 49.187117], [-122.719602, 49.186281], [-122.715832, 49.18467], [-122.713102, 49.183948], [-122.710778, 49.183534], [-122.707297, 49.183229], [-122.70612, 49.183206], [-122.700727, 49.183398], [-122.693106, 49.184053], [-122.690064, 49.184482], [-122.684097, 49.185667], [-122.680688, 49.186697], [-122.679512, 49.187179], [-122.677746, 49.188179], [-122.676719, 49.18847], [-122.675365, 49.189045], [-122.673965, 49.189836], [-122.673073, 49.190531], [-122.671551, 49.191182], [-122.668957, 49.192711], [-122.668472, 49.193319], [-122.66794, 49.196227], [-122.670988, 49.196498], [-122.674726, 49.197083], [-122.686505, 49.199754]], [[-122.689355, 49.185989], [-122.690839, 49.18567], [-122.693682, 49.1853], [-122.695824, 49.185197], [-122.697182, 49.185012], [-122.701115, 49.184739], [-122.700953, 49.185087], [-122.700821, 49.191496], [-122.689284, 49.191455], [-122.689355, 49.185989]]], [[[-122.91093, 49.295614], [-122.911104, 49.294209], [-122.912003, 49.294219], [-122.912096, 49.293355], [-122.911255, 49.293461], [-122.910843, 49.293353], [-122.910334, 49.293325], [-122.909826, 49.29337], [-122.909468, 49.293505], [-122.908875, 49.293891], [-122.908567, 49.294351], [-122.909796, 49.294364], [-122.91093, 49.295614]]], [[[-122.931404, 49.311532], [-122.931411, 49.31228], [-122.931679, 49.31233], [-122.931926, 49.312563], [-122.9321, 49.313367], [-122.933928, 49.3132], [-122.934711, 49.313226], [-122.935196, 49.31332], [-122.936692, 49.313805], [-122.937446, 49.314193], [-122.939036, 49.310801], [-122.936236, 49.310678], [-122.932854, 49.310396], [-122.932665, 49.310395], [-122.931404, 49.311532]]]]}, "properties": {"name": "Metro Vancouver A", "province": "British Columbia", "rurality": "Urban 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Metro Vancouver A", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915020", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.115821, 49.303759], [-123.12908, 49.310252], [-123.138403, 49.315718], [-123.140221, 49.316677], [-123.149872, 49.316648], [-123.158635, 49.31669], [-123.163155, 49.316613], [-123.163985, 49.297939], [-123.164263, 49.282303], [-123.187959, 49.282329], [-123.205454, 49.282624], [-123.210759, 49.282766], [-123.221513, 49.282905], [-123.223769, 49.278206], [-123.22388, 49.277386], [-123.224914, 49.274713], [-123.224749, 49.272675], [-123.221988, 49.270118], [-123.221946, 49.268733], [-123.219613, 49.26898], [-123.219555, 49.268805], [-123.219583, 49.267239], [-123.217033, 49.267382], [-123.215055, 49.267369], [-123.215255, 49.264], [-123.215403, 49.258513], [-123.20323, 49.258268], [-123.20325, 49.257969], [-123.202938, 49.256695], [-123.201024, 49.25673], [-123.196559, 49.256524], [-123.196495, 49.253935], [-123.196805, 49.251961], [-123.196775, 49.250241], [-123.198846, 49.25015], [-123.19913, 49.250065], [-123.200569, 49.250048], [-123.204027, 49.249431], [-123.204333, 49.249351], [-123.204621, 49.249128], [-123.198927, 49.246306], [-123.196767, 49.24622], [-123.196836, 49.23864], [-123.198343, 49.238591], [-123.198411, 49.23649], [-123.196849, 49.236481], [-123.196847, 49.235519], [-123.197094, 49.235053], [-123.197093, 49.23492], [-123.196771, 49.234822], [-123.197062, 49.230576], [-123.194666, 49.229738], [-123.191111, 49.228332], [-123.191132, 49.227361], [-123.190957, 49.226534], [-123.19111, 49.225555], [-123.191361, 49.220814], [-123.191309, 49.21944], [-123.180367, 49.215699], [-123.1722, 49.214962], [-123.16825, 49.21446], [-123.163556, 49.213588], [-123.156937, 49.210479], [-123.155293, 49.209299], [-123.153562, 49.207401], [-123.150739, 49.205348], [-123.147435, 49.204541], [-123.141217, 49.201987], [-123.140864, 49.201914], [-123.140239, 49.200198], [-123.136641, 49.199135], [-123.132434, 49.198535], [-123.126824, 49.199348], [-123.125843, 49.200125], [-123.117334, 49.203801], [-123.115723, 49.20414], [-123.113518, 49.204761], [-123.101572, 49.204085], [-123.100053, 49.204034], [-123.097913, 49.204185], [-123.093464, 49.204832], [-123.091755, 49.20524], [-123.083347, 49.206793], [-123.080655, 49.207399], [-123.076271, 49.208283], [-123.074475, 49.208331], [-123.073144, 49.208135], [-123.071281, 49.207645], [-123.067539, 49.206148], [-123.066894, 49.205981], [-123.058781, 49.204657], [-123.056456, 49.20466], [-123.055057, 49.204571], [-123.050681, 49.204572], [-123.047324, 49.204646], [-123.042337, 49.204158], [-123.039888, 49.203776], [-123.029789, 49.201291], [-123.023151, 49.199745], [-123.023429, 49.201359], [-123.023397, 49.202235], [-123.023265, 49.202438], [-123.022948, 49.202608], [-123.023216, 49.202992], [-123.023388, 49.203446], [-123.023447, 49.204424], [-123.023353, 49.206887], [-123.023722, 49.209248], [-123.023642, 49.212445], [-123.023665, 49.220979], [-123.023507, 49.223253], [-123.023544, 49.230594], [-123.02344, 49.236989], [-123.02346, 49.239567], [-123.023583, 49.240968], [-123.023491, 49.259114], [-123.02356, 49.2611], [-123.023397, 49.28205], [-123.023239, 49.291967], [-123.023092, 49.292995], [-123.023111, 49.294435], [-123.026159, 49.294567], [-123.03875, 49.295455], [-123.051711, 49.295985], [-123.065009, 49.296426], [-123.07753, 49.296969], [-123.089367, 49.29728], [-123.098063, 49.297687], [-123.104387, 49.29786], [-123.108784, 49.300239], [-123.115821, 49.303759]], [[-123.143481, 49.273121], [-123.144174, 49.273446], [-123.14474, 49.273577], [-123.145138, 49.273606], [-123.146337, 49.273555], [-123.146316, 49.273828], [-123.139664, 49.274145], [-123.139586, 49.274013], [-123.139677, 49.273872], [-123.14038, 49.273819], [-123.141009, 49.273649], [-123.141474, 49.2734], [-123.141873, 49.273003], [-123.142006, 49.272548], [-123.141879, 49.27198], [-123.141085, 49.271087], [-123.14117, 49.271022], [-123.140807, 49.270605], [-123.141094, 49.270564], [-123.141404, 49.270844], [-123.141358, 49.270878], [-123.14151, 49.271], [-123.1416, 49.270967], [-123.143481, 49.273121]]]]}, "properties": {"name": "Vancouver", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Vancouver", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915022", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.900112, 49.289302], [-122.908957, 49.289701], [-122.911248, 49.290594], [-122.913107, 49.29058], [-122.915433, 49.290663], [-122.927794, 49.294008], [-122.929889, 49.293989], [-122.945807, 49.297195], [-122.959404, 49.294343], [-122.986205, 49.298961], [-123.001829, 49.293957], [-123.013671, 49.294266], [-123.023111, 49.294435], [-123.023092, 49.292995], [-123.023239, 49.291967], [-123.023397, 49.28205], [-123.02356, 49.2611], [-123.023491, 49.259114], [-123.023583, 49.240968], [-123.02346, 49.239567], [-123.02344, 49.236989], [-123.023544, 49.230594], [-123.023507, 49.223253], [-123.023665, 49.220979], [-123.023642, 49.212445], [-123.023722, 49.209248], [-123.023353, 49.206887], [-123.023447, 49.204424], [-123.023388, 49.203446], [-123.023216, 49.202992], [-123.022948, 49.202608], [-123.023265, 49.202438], [-123.023397, 49.202235], [-123.023429, 49.201359], [-123.023151, 49.199745], [-123.019351, 49.198872], [-123.017557, 49.198278], [-123.011558, 49.195843], [-123.008756, 49.194867], [-123.004723, 49.193053], [-123.000877, 49.190791], [-122.994292, 49.187257], [-122.990569, 49.184893], [-122.987162, 49.182981], [-122.98282, 49.181369], [-122.978217, 49.18016], [-122.972961, 49.180723], [-122.969753, 49.181906], [-122.967964, 49.183912], [-122.965192, 49.186492], [-122.960847, 49.188292], [-122.957439, 49.190121], [-122.951071, 49.194307], [-122.951745, 49.194918], [-122.953434, 49.196143], [-122.953981, 49.196725], [-122.954752, 49.197263], [-122.955612, 49.197997], [-122.955632, 49.198157], [-122.956368, 49.19861], [-122.959964, 49.201368], [-122.958524, 49.202244], [-122.957444, 49.202458], [-122.957509, 49.2028], [-122.952558, 49.205447], [-122.952193, 49.205671], [-122.952216, 49.205815], [-122.949852, 49.207001], [-122.898429, 49.234734], [-122.897376, 49.235288], [-122.895649, 49.235715], [-122.89563, 49.236269], [-122.894968, 49.23621], [-122.894746, 49.23805], [-122.894207, 49.238036], [-122.894224, 49.237357], [-122.893696, 49.237299], [-122.893637, 49.23746], [-122.89341, 49.237445], [-122.893308, 49.237896], [-122.892889, 49.237859], [-122.892522, 49.238055], [-122.892667, 49.244417], [-122.892595, 49.244527], [-122.892593, 49.245786], [-122.89281, 49.250809], [-122.892895, 49.250863], [-122.893023, 49.259063], [-122.893411, 49.26968], [-122.894229, 49.28567], [-122.894656, 49.287226], [-122.894329, 49.289778], [-122.894157, 49.289991], [-122.893552, 49.29018], [-122.893185, 49.290372], [-122.892694, 49.290744], [-122.892491, 49.291052], [-122.892477, 49.29129], [-122.894427, 49.292785], [-122.89941, 49.289324], [-122.900112, 49.289302]]]]}, "properties": {"name": "Burnaby", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Burnaby", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915025", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.894224, 49.237357], [-122.894207, 49.238036], [-122.894746, 49.23805], [-122.894968, 49.23621], [-122.89563, 49.236269], [-122.895649, 49.235715], [-122.897376, 49.235288], [-122.898429, 49.234734], [-122.949852, 49.207001], [-122.952216, 49.205815], [-122.952193, 49.205671], [-122.952558, 49.205447], [-122.957509, 49.2028], [-122.957444, 49.202458], [-122.958524, 49.202244], [-122.959964, 49.201368], [-122.956368, 49.19861], [-122.955632, 49.198157], [-122.955612, 49.197997], [-122.954752, 49.197263], [-122.953981, 49.196725], [-122.953434, 49.196143], [-122.951745, 49.194918], [-122.951071, 49.194307], [-122.957439, 49.190121], [-122.95748, 49.188914], [-122.957246, 49.185927], [-122.957333, 49.176202], [-122.957262, 49.175855], [-122.956921, 49.175172], [-122.954403, 49.176005], [-122.952071, 49.176496], [-122.949766, 49.17717], [-122.947393, 49.178049], [-122.946137, 49.178631], [-122.943256, 49.179612], [-122.939507, 49.181188], [-122.938172, 49.181602], [-122.936147, 49.182758], [-122.935398, 49.183849], [-122.933974, 49.185127], [-122.932688, 49.186101], [-122.930901, 49.186649], [-122.929429, 49.187232], [-122.927189, 49.188579], [-122.92499, 49.190174], [-122.924475, 49.190687], [-122.924039, 49.190913], [-122.923322, 49.191479], [-122.922371, 49.192476], [-122.920982, 49.193557], [-122.920736, 49.193931], [-122.919986, 49.194689], [-122.91221, 49.194063], [-122.911841, 49.19448], [-122.905825, 49.198783], [-122.904481, 49.199654], [-122.894287, 49.208108], [-122.891818, 49.210636], [-122.889564, 49.213386], [-122.88552, 49.217662], [-122.88135, 49.219759], [-122.87596, 49.220209], [-122.87675, 49.225151], [-122.876513, 49.225263], [-122.876426, 49.226279], [-122.87643, 49.228565], [-122.876492, 49.228668], [-122.877332, 49.229111], [-122.877253, 49.229374], [-122.877004, 49.229591], [-122.876221, 49.230004], [-122.875451, 49.230273], [-122.875051, 49.230596], [-122.875078, 49.231074], [-122.875201, 49.231226], [-122.876188, 49.231694], [-122.876778, 49.232496], [-122.877148, 49.23274], [-122.877805, 49.233046], [-122.878903, 49.233442], [-122.88003, 49.233614], [-122.880223, 49.233723], [-122.880729, 49.234344], [-122.881318, 49.234704], [-122.885204, 49.235365], [-122.885574, 49.235518], [-122.885835, 49.235725], [-122.88633, 49.235906], [-122.888005, 49.236078], [-122.889199, 49.235927], [-122.889956, 49.235954], [-122.890903, 49.236431], [-122.891135, 49.236658], [-122.891464, 49.237198], [-122.892149, 49.237864], [-122.892506, 49.238052], [-122.892889, 49.237859], [-122.893308, 49.237896], [-122.89341, 49.237445], [-122.893637, 49.23746], [-122.893696, 49.237299], [-122.894224, 49.237357]]]]}, "properties": {"name": "New Westminster", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "New Westminster", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915029", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.627572, 49.351528], [-122.634382, 49.351396], [-122.64182, 49.351334], [-122.661162, 49.350984], [-122.68124, 49.350864], [-122.703245, 49.351016], [-122.734101, 49.351361], [-122.757885, 49.351397], [-122.773646, 49.351029], [-122.775666, 49.351226], [-122.822342, 49.351626], [-122.822118, 49.338782], [-122.82188, 49.338514], [-122.821716, 49.334046], [-122.822094, 49.32145], [-122.822567, 49.310066], [-122.822395, 49.308071], [-122.822764, 49.301084], [-122.822816, 49.30052], [-122.823181, 49.299279], [-122.82277, 49.297055], [-122.82285, 49.294948], [-122.821186, 49.29496], [-122.821118, 49.294653], [-122.821413, 49.289182], [-122.821165, 49.287085], [-122.821428, 49.284614], [-122.821094, 49.283373], [-122.820962, 49.281934], [-122.821186, 49.280571], [-122.821885, 49.280487], [-122.823812, 49.280498], [-122.823862, 49.278604], [-122.823985, 49.277782], [-122.823798, 49.274846], [-122.824022, 49.274686], [-122.823956, 49.27375], [-122.823757, 49.273346], [-122.823932, 49.273127], [-122.824261, 49.272943], [-122.824738, 49.272846], [-122.829472, 49.272991], [-122.831536, 49.273171], [-122.835734, 49.273119], [-122.835863, 49.272621], [-122.840433, 49.272626], [-122.845747, 49.272728], [-122.84664, 49.272695], [-122.846332, 49.270998], [-122.847817, 49.270916], [-122.852225, 49.270916], [-122.856627, 49.270743], [-122.86027, 49.270722], [-122.878254, 49.270853], [-122.880482, 49.271067], [-122.880466, 49.270724], [-122.88051, 49.270615], [-122.880636, 49.270578], [-122.883296, 49.270572], [-122.8835, 49.270634], [-122.893441, 49.270294], [-122.893023, 49.259063], [-122.892895, 49.250863], [-122.89281, 49.250809], [-122.892593, 49.245786], [-122.892595, 49.244527], [-122.892667, 49.244417], [-122.892522, 49.238055], [-122.892149, 49.237864], [-122.891464, 49.237198], [-122.891135, 49.236658], [-122.890903, 49.236431], [-122.889956, 49.235954], [-122.889199, 49.235927], [-122.888005, 49.236078], [-122.88633, 49.235906], [-122.885835, 49.235725], [-122.885574, 49.235518], [-122.885204, 49.235365], [-122.881318, 49.234704], [-122.880729, 49.234344], [-122.880223, 49.233723], [-122.88003, 49.233614], [-122.878903, 49.233442], [-122.877805, 49.233046], [-122.877148, 49.23274], [-122.876778, 49.232496], [-122.876188, 49.231694], [-122.875201, 49.231226], [-122.875078, 49.231074], [-122.875051, 49.230596], [-122.875451, 49.230273], [-122.876221, 49.230004], [-122.877004, 49.229591], [-122.877253, 49.229374], [-122.877332, 49.229111], [-122.876492, 49.228668], [-122.87643, 49.228565], [-122.876426, 49.226279], [-122.876513, 49.225263], [-122.87675, 49.225151], [-122.87596, 49.220209], [-122.866813, 49.221108], [-122.856553, 49.220652], [-122.840284, 49.219577], [-122.837834, 49.219657], [-122.834104, 49.219645], [-122.829104, 49.219842], [-122.822073, 49.220012], [-122.817819, 49.219924], [-122.807689, 49.219331], [-122.804743, 49.21934], [-122.805172, 49.224126], [-122.805079, 49.225229], [-122.806481, 49.227062], [-122.806498, 49.227906], [-122.806315, 49.228256], [-122.805534, 49.228912], [-122.803515, 49.230151], [-122.802913, 49.231062], [-122.801525, 49.232606], [-122.800457, 49.23412], [-122.800127, 49.23507], [-122.800136, 49.235739], [-122.800247, 49.235906], [-122.800682, 49.236198], [-122.800997, 49.236248], [-122.80228, 49.236162], [-122.804499, 49.236185], [-122.805689, 49.236461], [-122.80626, 49.236713], [-122.807259, 49.237564], [-122.807374, 49.23786], [-122.807338, 49.238296], [-122.807018, 49.239018], [-122.806829, 49.240053], [-122.806972, 49.240728], [-122.806892, 49.241405], [-122.806602, 49.241677], [-122.805857, 49.241928], [-122.804562, 49.242113], [-122.803745, 49.242333], [-122.80254, 49.242853], [-122.802082, 49.243212], [-122.80181, 49.243582], [-122.801818, 49.243995], [-122.802806, 49.245037], [-122.802964, 49.24533], [-122.80292, 49.245574], [-122.802331, 49.246133], [-122.801326, 49.246404], [-122.799051, 49.246472], [-122.798506, 49.24672], [-122.798152, 49.247354], [-122.798281, 49.248177], [-122.798175, 49.248406], [-122.79792, 49.248591], [-122.797492, 49.248664], [-122.796536, 49.248359], [-122.795975, 49.248299], [-122.795638, 49.248452], [-122.795528, 49.248704], [-122.795594, 49.249402], [-122.795979, 49.250184], [-122.797015, 49.251342], [-122.797617, 49.252368], [-122.797998, 49.254293], [-122.797976, 49.254889], [-122.79785, 49.255322], [-122.797176, 49.256419], [-122.797181, 49.256914], [-122.797444, 49.257713], [-122.797335, 49.25927], [-122.797094, 49.259648], [-122.796056, 49.260388], [-122.795657, 49.260585], [-122.795359, 49.260571], [-122.794825, 49.26066], [-122.793202, 49.260694], [-122.791463, 49.260879], [-122.790871, 49.260882], [-122.790583, 49.270931], [-122.790659, 49.271068], [-122.790658, 49.273669], [-122.790583, 49.276042], [-122.790513, 49.276109], [-122.790502, 49.27807], [-122.788381, 49.278634], [-122.788237, 49.278602], [-122.788197, 49.278683], [-122.787373, 49.278533], [-122.784057, 49.278516], [-122.783968, 49.278478], [-122.778572, 49.278318], [-122.776204, 49.278493], [-122.774072, 49.278422], [-122.773178, 49.278481], [-122.767273, 49.278368], [-122.767278, 49.287774], [-122.767159, 49.288033], [-122.767143, 49.28928], [-122.761591, 49.289317], [-122.761647, 49.285841], [-122.759677, 49.285684], [-122.757467, 49.285664], [-122.756062, 49.285743], [-122.734173, 49.285752], [-122.733542, 49.285493], [-122.733588, 49.283985], [-122.734037, 49.282158], [-122.733971, 49.280361], [-122.733781, 49.278529], [-122.71431, 49.278532], [-122.71363, 49.280103], [-122.712411, 49.279725], [-122.709827, 49.279159], [-122.708929, 49.278809], [-122.708993, 49.278491], [-122.708757, 49.27829], [-122.704512, 49.27639], [-122.702647, 49.278335], [-122.699676, 49.280867], [-122.697664, 49.282203], [-122.69517, 49.283356], [-122.693019, 49.284238], [-122.687463, 49.286175], [-122.685381, 49.28671], [-122.670783, 49.289537], [-122.665623, 49.290758], [-122.663446, 49.291406], [-122.661679, 49.292077], [-122.660519, 49.292628], [-122.659222, 49.293712], [-122.659001, 49.294453], [-122.659015, 49.29526], [-122.659637, 49.297191], [-122.66013, 49.297982], [-122.661143, 49.29862], [-122.662299, 49.298991], [-122.665936, 49.299575], [-122.667644, 49.299932], [-122.669624, 49.30063], [-122.671423, 49.301489], [-122.673285, 49.302506], [-122.674495, 49.303468], [-122.676281, 49.305102], [-122.67751, 49.307116], [-122.678012, 49.308498], [-122.67824, 49.310162], [-122.678197, 49.311422], [-122.678063, 49.312413], [-122.677899, 49.312719], [-122.676722, 49.313689], [-122.676462, 49.314027], [-122.676092, 49.315645], [-122.67561, 49.316634], [-122.67525, 49.317027], [-122.668725, 49.32097], [-122.665493, 49.324196], [-122.66339, 49.326787], [-122.661833, 49.328304], [-122.6593, 49.329589], [-122.658682, 49.329842], [-122.657342, 49.330649], [-122.656181, 49.331561], [-122.655319, 49.332615], [-122.654472, 49.333379], [-122.651806, 49.334992], [-122.645159, 49.337626], [-122.643498, 49.338029], [-122.641754, 49.338341], [-122.639438, 49.339078], [-122.638586, 49.339566], [-122.636439, 49.341568], [-122.628832, 49.346164], [-122.620604, 49.350844], [-122.61935, 49.35119], [-122.618202, 49.351274], [-122.627572, 49.351528]], [[-122.806022, 49.229299], [-122.807023, 49.229796], [-122.804272, 49.231567], [-122.803319, 49.231243], [-122.803653, 49.230604], [-122.804484, 49.229882], [-122.805287, 49.229594], [-122.805646, 49.229397], [-122.806022, 49.229299]]]]}, "properties": {"name": "Coquitlam", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Coquitlam", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915034", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.877688, 49.351602], [-122.885389, 49.351628], [-122.885403, 49.353404], [-122.885972, 49.353417], [-122.886433, 49.353517], [-122.894423, 49.356044], [-122.90137, 49.351759], [-122.906724, 49.348368], [-122.928461, 49.333004], [-122.931404, 49.327227], [-122.934953, 49.319727], [-122.937446, 49.314193], [-122.936692, 49.313805], [-122.935196, 49.31332], [-122.934711, 49.313226], [-122.933928, 49.3132], [-122.9321, 49.313367], [-122.931926, 49.312563], [-122.931679, 49.31233], [-122.931411, 49.31228], [-122.931404, 49.311532], [-122.932665, 49.310395], [-122.926178, 49.310523], [-122.9183, 49.310596], [-122.916941, 49.310664], [-122.913466, 49.311027], [-122.911396, 49.311416], [-122.91029, 49.311862], [-122.909722, 49.312153], [-122.908872, 49.31271], [-122.908637, 49.31293], [-122.907918, 49.313892], [-122.906279, 49.314095], [-122.904137, 49.314737], [-122.90425, 49.31425], [-122.902984, 49.314607], [-122.901165, 49.314729], [-122.90049, 49.314955], [-122.899759, 49.314743], [-122.899, 49.314014], [-122.896763, 49.3129], [-122.896104, 49.312959], [-122.895407, 49.313094], [-122.894911, 49.313292], [-122.893693, 49.313408], [-122.890054, 49.314131], [-122.889966, 49.314267], [-122.890101, 49.314764], [-122.889636, 49.316294], [-122.889558, 49.316908], [-122.889615, 49.317016], [-122.892141, 49.318754], [-122.894706, 49.321021], [-122.895036, 49.321842], [-122.89504, 49.322338], [-122.895147, 49.322623], [-122.895647, 49.322942], [-122.895294, 49.323188], [-122.894731, 49.32385], [-122.894569, 49.324294], [-122.894404, 49.324468], [-122.894008, 49.325292], [-122.893677, 49.325477], [-122.90008, 49.326133], [-122.90098, 49.326426], [-122.899621, 49.327543], [-122.898851, 49.327893], [-122.897733, 49.3289], [-122.897183, 49.329331], [-122.896576, 49.329627], [-122.895945, 49.330173], [-122.877589, 49.33016], [-122.877688, 49.351602]]]]}, "properties": {"name": "Belcarra", "province": "British Columbia", "rurality": "Urban 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Belcarra", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915036", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.82188, 49.338514], [-122.822118, 49.338782], [-122.822342, 49.351626], [-122.823426, 49.351626], [-122.823239, 49.352155], [-122.823197, 49.352572], [-122.823269, 49.353012], [-122.823576, 49.35334], [-122.823611, 49.353668], [-122.823813, 49.354094], [-122.824541, 49.355051], [-122.824704, 49.355428], [-122.824491, 49.356276], [-122.82456, 49.356655], [-122.824913, 49.357091], [-122.826205, 49.3581], [-122.826654, 49.359122], [-122.827292, 49.359676], [-122.827891, 49.359895], [-122.831087, 49.359847], [-122.831104, 49.360329], [-122.83187, 49.36112], [-122.832299, 49.36211], [-122.832086, 49.364981], [-122.831091, 49.366375], [-122.829023, 49.369929], [-122.826312, 49.372525], [-122.825395, 49.375026], [-122.826206, 49.377036], [-122.828185, 49.379128], [-122.830066, 49.379962], [-122.832745, 49.381327], [-122.833077, 49.381374], [-122.833647, 49.382047], [-122.878424, 49.381881], [-122.878962, 49.37913], [-122.892624, 49.357348], [-122.894423, 49.356044], [-122.886433, 49.353517], [-122.885972, 49.353417], [-122.885403, 49.353404], [-122.885389, 49.351628], [-122.877688, 49.351602], [-122.877589, 49.33016], [-122.869933, 49.33], [-122.865079, 49.32983], [-122.855358, 49.329886], [-122.855463, 49.326288], [-122.858123, 49.326278], [-122.858179, 49.32387], [-122.863279, 49.323882], [-122.863287, 49.322795], [-122.867023, 49.322796], [-122.866927, 49.316999], [-122.867116, 49.31535], [-122.873382, 49.315741], [-122.877686, 49.3156], [-122.877834, 49.314313], [-122.877678, 49.31334], [-122.876066, 49.313259], [-122.873564, 49.313554], [-122.873502, 49.305786], [-122.860467, 49.305589], [-122.858565, 49.307695], [-122.858389, 49.307784], [-122.856871, 49.307813], [-122.851474, 49.308213], [-122.850665, 49.308217], [-122.849882, 49.305874], [-122.841353, 49.305883], [-122.841967, 49.300645], [-122.841989, 49.299853], [-122.836027, 49.299325], [-122.835455, 49.299761], [-122.8355, 49.300722], [-122.835767, 49.301139], [-122.835857, 49.305846], [-122.833691, 49.30581], [-122.833649, 49.310573], [-122.833381, 49.314129], [-122.82735, 49.314045], [-122.822094, 49.32145], [-122.821716, 49.334046], [-122.82188, 49.338514]]]]}, "properties": {"name": "Anmore", "province": "British Columbia", "rurality": "Urban 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Anmore", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915038", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.756062, 49.285743], [-122.757467, 49.285664], [-122.759677, 49.285684], [-122.761647, 49.285841], [-122.761591, 49.289317], [-122.767143, 49.28928], [-122.767159, 49.288033], [-122.767278, 49.287774], [-122.767273, 49.278368], [-122.773178, 49.278481], [-122.774072, 49.278422], [-122.776204, 49.278493], [-122.778572, 49.278318], [-122.783968, 49.278478], [-122.784057, 49.278516], [-122.787373, 49.278533], [-122.788197, 49.278683], [-122.788237, 49.278602], [-122.788381, 49.278634], [-122.790502, 49.27807], [-122.790513, 49.276109], [-122.790583, 49.276042], [-122.790658, 49.273669], [-122.790659, 49.271068], [-122.790583, 49.270931], [-122.790871, 49.260882], [-122.791463, 49.260879], [-122.793202, 49.260694], [-122.794825, 49.26066], [-122.795359, 49.260571], [-122.795657, 49.260585], [-122.796056, 49.260388], [-122.797094, 49.259648], [-122.797335, 49.25927], [-122.797444, 49.257713], [-122.797181, 49.256914], [-122.797176, 49.256419], [-122.79785, 49.255322], [-122.797976, 49.254889], [-122.797998, 49.254293], [-122.797617, 49.252368], [-122.796824, 49.251128], [-122.796501, 49.251212], [-122.796038, 49.25157], [-122.794048, 49.252394], [-122.793839, 49.252533], [-122.793719, 49.252355], [-122.790168, 49.252136], [-122.786827, 49.251831], [-122.786363, 49.24787], [-122.786296, 49.243734], [-122.801813, 49.243726], [-122.80181, 49.243582], [-122.802082, 49.243212], [-122.80254, 49.242853], [-122.803745, 49.242333], [-122.804562, 49.242113], [-122.805857, 49.241928], [-122.806602, 49.241677], [-122.806892, 49.241405], [-122.806972, 49.240728], [-122.806829, 49.240053], [-122.807018, 49.239018], [-122.807338, 49.238296], [-122.807374, 49.23786], [-122.807259, 49.237564], [-122.80626, 49.236713], [-122.805689, 49.236461], [-122.804499, 49.236185], [-122.80228, 49.236162], [-122.800997, 49.236248], [-122.800682, 49.236198], [-122.800247, 49.235906], [-122.800136, 49.235739], [-122.800127, 49.23507], [-122.800457, 49.23412], [-122.801525, 49.232606], [-122.802913, 49.231062], [-122.803515, 49.230151], [-122.805534, 49.228912], [-122.806315, 49.228256], [-122.806498, 49.227906], [-122.806481, 49.227062], [-122.805079, 49.225229], [-122.805172, 49.224126], [-122.804743, 49.21934], [-122.803934, 49.219342], [-122.801719, 49.219661], [-122.795374, 49.216634], [-122.789464, 49.215518], [-122.779169, 49.21394], [-122.770225, 49.213382], [-122.767206, 49.213666], [-122.755614, 49.215089], [-122.751413, 49.215773], [-122.752921, 49.216154], [-122.754283, 49.216821], [-122.756055, 49.218279], [-122.760206, 49.222704], [-122.763442, 49.225783], [-122.764352, 49.226468], [-122.76561, 49.226912], [-122.768148, 49.227334], [-122.767884, 49.228704], [-122.767404, 49.23032], [-122.766494, 49.231152], [-122.75914, 49.235777], [-122.758041, 49.236787], [-122.757135, 49.237424], [-122.756203, 49.23796], [-122.753176, 49.239105], [-122.747538, 49.240655], [-122.737751, 49.243524], [-122.734963, 49.244588], [-122.732801, 49.245782], [-122.723492, 49.251866], [-122.721958, 49.253108], [-122.718481, 49.256604], [-122.713589, 49.265165], [-122.704512, 49.27639], [-122.708757, 49.27829], [-122.708993, 49.278491], [-122.708929, 49.278809], [-122.709827, 49.279159], [-122.712411, 49.279725], [-122.71363, 49.280103], [-122.71431, 49.278532], [-122.733781, 49.278529], [-122.733971, 49.280361], [-122.734037, 49.282158], [-122.733588, 49.283985], [-122.733542, 49.285493], [-122.734173, 49.285752], [-122.756062, 49.285743]]]]}, "properties": {"name": "Port Coquitlam", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Port Coquitlam", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915039", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.855358, 49.329886], [-122.865079, 49.32983], [-122.869933, 49.33], [-122.877589, 49.33016], [-122.895945, 49.330173], [-122.896576, 49.329627], [-122.897183, 49.329331], [-122.897733, 49.3289], [-122.898851, 49.327893], [-122.899621, 49.327543], [-122.90098, 49.326426], [-122.90008, 49.326133], [-122.893677, 49.325477], [-122.894008, 49.325292], [-122.894404, 49.324468], [-122.894569, 49.324294], [-122.894731, 49.32385], [-122.895294, 49.323188], [-122.895647, 49.322942], [-122.895147, 49.322623], [-122.89504, 49.322338], [-122.895036, 49.321842], [-122.894706, 49.321021], [-122.892141, 49.318754], [-122.889615, 49.317016], [-122.889558, 49.316908], [-122.889636, 49.316294], [-122.890101, 49.314764], [-122.889966, 49.314267], [-122.890054, 49.314131], [-122.893693, 49.313408], [-122.894911, 49.313292], [-122.895407, 49.313094], [-122.896104, 49.312959], [-122.896763, 49.3129], [-122.899, 49.314014], [-122.899759, 49.314743], [-122.90049, 49.314955], [-122.901165, 49.314729], [-122.902984, 49.314607], [-122.90425, 49.31425], [-122.904137, 49.314737], [-122.906279, 49.314095], [-122.907918, 49.313892], [-122.908354, 49.313257], [-122.908872, 49.31271], [-122.909722, 49.312153], [-122.91029, 49.311862], [-122.911396, 49.311416], [-122.913466, 49.311027], [-122.916941, 49.310664], [-122.9183, 49.310596], [-122.926178, 49.310523], [-122.932854, 49.310396], [-122.936236, 49.310678], [-122.939036, 49.310801], [-122.945682, 49.297169], [-122.929889, 49.293989], [-122.927794, 49.294008], [-122.915433, 49.290663], [-122.913107, 49.29058], [-122.911248, 49.290594], [-122.908957, 49.289701], [-122.900384, 49.289296], [-122.89941, 49.289324], [-122.894427, 49.292785], [-122.892477, 49.29129], [-122.892491, 49.291052], [-122.892694, 49.290744], [-122.893185, 49.290372], [-122.893552, 49.29018], [-122.894157, 49.289991], [-122.894329, 49.289778], [-122.894656, 49.287226], [-122.894229, 49.28567], [-122.893441, 49.270294], [-122.8835, 49.270634], [-122.883296, 49.270572], [-122.880636, 49.270578], [-122.88051, 49.270615], [-122.880466, 49.270724], [-122.880482, 49.271067], [-122.878254, 49.270853], [-122.86027, 49.270722], [-122.856627, 49.270743], [-122.852225, 49.270916], [-122.847817, 49.270916], [-122.846332, 49.270998], [-122.84664, 49.272695], [-122.845747, 49.272728], [-122.840433, 49.272626], [-122.835863, 49.272621], [-122.835734, 49.273119], [-122.834919, 49.27314], [-122.831536, 49.273171], [-122.829472, 49.272991], [-122.824738, 49.272846], [-122.824261, 49.272943], [-122.823932, 49.273127], [-122.823757, 49.273346], [-122.823956, 49.27375], [-122.824022, 49.274686], [-122.823798, 49.274846], [-122.823985, 49.277782], [-122.823862, 49.278604], [-122.823812, 49.280498], [-122.821885, 49.280487], [-122.821186, 49.280571], [-122.820962, 49.281934], [-122.821094, 49.283373], [-122.821428, 49.284614], [-122.821165, 49.287085], [-122.821413, 49.289182], [-122.821118, 49.294653], [-122.821186, 49.29496], [-122.82285, 49.294948], [-122.82277, 49.297055], [-122.823181, 49.299279], [-122.822816, 49.30052], [-122.822764, 49.301084], [-122.822395, 49.308071], [-122.822567, 49.310066], [-122.822094, 49.32145], [-122.82735, 49.314045], [-122.833381, 49.314129], [-122.833649, 49.310573], [-122.833691, 49.30581], [-122.835857, 49.305846], [-122.835767, 49.301139], [-122.8355, 49.300722], [-122.835455, 49.299761], [-122.836027, 49.299325], [-122.841989, 49.299853], [-122.841967, 49.300645], [-122.841353, 49.305883], [-122.849882, 49.305874], [-122.850665, 49.308217], [-122.851474, 49.308213], [-122.856871, 49.307813], [-122.858389, 49.307784], [-122.858565, 49.307695], [-122.860467, 49.305589], [-122.873502, 49.305786], [-122.873564, 49.313554], [-122.876066, 49.313259], [-122.877678, 49.31334], [-122.877834, 49.314313], [-122.877686, 49.3156], [-122.873382, 49.315741], [-122.867116, 49.31535], [-122.866927, 49.316999], [-122.867023, 49.322796], [-122.863287, 49.322795], [-122.863279, 49.323882], [-122.858179, 49.32387], [-122.858123, 49.326278], [-122.855463, 49.326288], [-122.855358, 49.329886]], [[-122.91093, 49.295614], [-122.909796, 49.294364], [-122.908567, 49.294351], [-122.908875, 49.293891], [-122.909468, 49.293505], [-122.909826, 49.29337], [-122.910334, 49.293325], [-122.910843, 49.293353], [-122.911255, 49.293461], [-122.912096, 49.293355], [-122.912003, 49.294219], [-122.911104, 49.294209], [-122.91093, 49.295614]]]]}, "properties": {"name": "Port Moody", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Port Moody", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915043", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.98234, 49.408832], [-123.035264, 49.407631], [-123.069943, 49.407195], [-123.119998, 49.406302], [-123.121558, 49.406199], [-123.123825, 49.4062], [-123.123627, 49.379627], [-123.1226, 49.379493], [-123.121846, 49.378721], [-123.119128, 49.377186], [-123.118504, 49.376734], [-123.117922, 49.370947], [-123.117938, 49.364348], [-123.117133, 49.363667], [-123.117219, 49.359504], [-123.118161, 49.359451], [-123.117886, 49.359246], [-123.117963, 49.357327], [-123.118113, 49.356105], [-123.118124, 49.348705], [-123.117968, 49.34745], [-123.118092, 49.344173], [-123.117986, 49.339322], [-123.118224, 49.337779], [-123.118155, 49.334179], [-123.1183, 49.333984], [-123.118416, 49.333425], [-123.117864, 49.332142], [-123.118133, 49.331179], [-123.118293, 49.331017], [-123.124339, 49.330861], [-123.124399, 49.328834], [-123.124622, 49.326125], [-123.124381, 49.324919], [-123.121052, 49.32397], [-123.1201, 49.323958], [-123.120147, 49.318486], [-123.120626, 49.317695], [-123.121314, 49.317381], [-123.122845, 49.316003], [-123.123624, 49.315125], [-123.128809, 49.310117], [-123.115821, 49.303759], [-123.108784, 49.300239], [-123.104387, 49.29786], [-123.102487, 49.297783], [-123.102343, 49.308727], [-123.10241, 49.31813], [-123.102163, 49.324171], [-123.101907, 49.324715], [-123.101991, 49.325684], [-123.10195, 49.326538], [-123.102322, 49.328441], [-123.102061, 49.331036], [-123.098122, 49.330892], [-123.095007, 49.331068], [-123.093999, 49.33107], [-123.093278, 49.331048], [-123.09145, 49.330729], [-123.091637, 49.331946], [-123.091471, 49.33343], [-123.09139, 49.33573], [-123.088118, 49.335553], [-123.087716, 49.335661], [-123.081428, 49.33562], [-123.079639, 49.335622], [-123.078821, 49.335671], [-123.053045, 49.33557], [-123.053206, 49.331467], [-123.053087, 49.331181], [-123.053126, 49.329154], [-123.053277, 49.328617], [-123.053039, 49.328245], [-123.05305, 49.327503], [-123.053265, 49.327246], [-123.053263, 49.327078], [-123.051153, 49.327177], [-123.047488, 49.327169], [-123.044273, 49.327086], [-123.042438, 49.327148], [-123.041505, 49.327025], [-123.040652, 49.327001], [-123.040995, 49.323751], [-123.040957, 49.320667], [-123.041732, 49.32072], [-123.044899, 49.32061], [-123.046288, 49.320673], [-123.054697, 49.320721], [-123.054818, 49.313471], [-123.038166, 49.313267], [-123.038238, 49.310518], [-123.038171, 49.309708], [-123.038479, 49.309171], [-123.038452, 49.307674], [-123.038977, 49.306871], [-123.038651, 49.305423], [-123.038476, 49.305165], [-123.038567, 49.302341], [-123.038298, 49.302153], [-123.03869, 49.298159], [-123.03875, 49.295455], [-123.026159, 49.294567], [-123.023111, 49.294435], [-123.013671, 49.294266], [-123.001829, 49.293957], [-122.986205, 49.298961], [-122.959404, 49.294343], [-122.947173, 49.296929], [-122.945807, 49.297195], [-122.945682, 49.297169], [-122.939036, 49.310801], [-122.934953, 49.319727], [-122.931002, 49.328066], [-122.928461, 49.333004], [-122.906724, 49.348368], [-122.90137, 49.351759], [-122.894423, 49.356044], [-122.892624, 49.357348], [-122.878962, 49.37913], [-122.878424, 49.381881], [-122.869358, 49.413809], [-122.883137, 49.414422], [-122.89937, 49.414547], [-122.927985, 49.411531], [-122.948869, 49.409394], [-122.970619, 49.408597], [-122.98234, 49.408832]], [[-123.029402, 49.311292], [-123.029168, 49.31125], [-123.02902, 49.311342], [-123.028015, 49.311219], [-123.02781, 49.310554], [-123.027813, 49.309362], [-123.026958, 49.309366], [-123.026949, 49.308649], [-123.023662, 49.308783], [-123.023353, 49.310579], [-123.025015, 49.310995], [-123.025629, 49.311058], [-123.024433, 49.312527], [-123.023129, 49.312539], [-123.019482, 49.31232], [-123.019494, 49.311631], [-123.019717, 49.31129], [-123.019968, 49.311059], [-123.019762, 49.310937], [-123.020927, 49.310251], [-123.021367, 49.309873], [-123.02156, 49.309613], [-123.021849, 49.308965], [-123.021847, 49.308469], [-123.02149, 49.30784], [-123.02115, 49.306796], [-123.024768, 49.306374], [-123.026519, 49.30667], [-123.027388, 49.307347], [-123.027586, 49.307575], [-123.02782, 49.308104], [-123.027822, 49.308052], [-123.027952, 49.308091], [-123.028308, 49.307302], [-123.029545, 49.305671], [-123.029402, 49.311292]], [[-123.029827, 49.300121], [-123.029741, 49.302975], [-123.029832, 49.303466], [-123.026544, 49.302652], [-123.026517, 49.301545], [-123.025889, 49.301263], [-123.025424, 49.300862], [-123.024941, 49.300344], [-123.024775, 49.299715], [-123.023096, 49.29934], [-123.022821, 49.299015], [-123.022779, 49.29879], [-123.023027, 49.298494], [-123.025214, 49.299078], [-123.025227, 49.299303], [-123.025392, 49.29942], [-123.02553, 49.299311], [-123.025704, 49.299384], [-123.026824, 49.299357], [-123.02681, 49.299851], [-123.026906, 49.300185], [-123.026878, 49.301362], [-123.027002, 49.301525], [-123.027224, 49.301569], [-123.028089, 49.301587], [-123.028282, 49.301498], [-123.028378, 49.300157], [-123.029827, 49.300121]], [[-122.991212, 49.31287], [-122.984126, 49.312778], [-122.983629, 49.312816], [-122.981111, 49.312755], [-122.981136, 49.312654], [-122.980098, 49.312601], [-122.980089, 49.312749], [-122.979775, 49.312756], [-122.968956, 49.312584], [-122.969259, 49.303134], [-122.969795, 49.303143], [-122.970731, 49.30326], [-122.971528, 49.303503], [-122.973811, 49.304817], [-122.974911, 49.305366], [-122.97491, 49.305429], [-122.97535, 49.305636], [-122.975818, 49.305951], [-122.976493, 49.306257], [-122.97802, 49.306878], [-122.979739, 49.30722], [-122.980193, 49.307373], [-122.980922, 49.307508], [-122.983287, 49.307661], [-122.984704, 49.308003], [-122.985172, 49.308174], [-122.985558, 49.308399], [-122.985873, 49.308444], [-122.986519, 49.308417], [-122.987194, 49.308255], [-122.988598, 49.307428], [-122.989505, 49.307392], [-122.990593, 49.307527], [-122.991294, 49.307896], [-122.991212, 49.31287]]]]}, "properties": {"name": "North Vancouver - District municipality", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "North Vancouver - District municipality", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915046", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.087716, 49.335661], [-123.088118, 49.335553], [-123.09139, 49.33573], [-123.091471, 49.33343], [-123.091637, 49.331946], [-123.09145, 49.330729], [-123.093278, 49.331048], [-123.093999, 49.33107], [-123.095007, 49.331068], [-123.098122, 49.330892], [-123.102061, 49.331036], [-123.102322, 49.328441], [-123.10195, 49.326538], [-123.101991, 49.325684], [-123.101907, 49.324715], [-123.102163, 49.324171], [-123.10241, 49.31813], [-123.102343, 49.308727], [-123.102487, 49.297783], [-123.098063, 49.297687], [-123.089367, 49.29728], [-123.07753, 49.296969], [-123.065009, 49.296426], [-123.051711, 49.295985], [-123.03875, 49.295455], [-123.03869, 49.298159], [-123.038298, 49.302153], [-123.038567, 49.302341], [-123.038476, 49.305165], [-123.038651, 49.305423], [-123.038977, 49.306871], [-123.038452, 49.307674], [-123.038479, 49.309171], [-123.038171, 49.309708], [-123.038238, 49.310518], [-123.038166, 49.313267], [-123.054818, 49.313471], [-123.054697, 49.320721], [-123.046288, 49.320673], [-123.044899, 49.32061], [-123.041732, 49.32072], [-123.040957, 49.320667], [-123.040995, 49.323751], [-123.040652, 49.327001], [-123.041505, 49.327025], [-123.042438, 49.327148], [-123.044273, 49.327086], [-123.047488, 49.327169], [-123.051153, 49.327177], [-123.053263, 49.327078], [-123.053265, 49.327246], [-123.05305, 49.327503], [-123.053039, 49.328245], [-123.053277, 49.328617], [-123.053126, 49.329154], [-123.053087, 49.331181], [-123.053206, 49.331467], [-123.053045, 49.33557], [-123.064904, 49.335643], [-123.087716, 49.335661]], [[-123.091898, 49.311184], [-123.091593, 49.319052], [-123.088823, 49.319075], [-123.088478, 49.318927], [-123.088421, 49.319081], [-123.085728, 49.318923], [-123.084282, 49.318951], [-123.08156, 49.317772], [-123.08244, 49.316905], [-123.085817, 49.318392], [-123.08595, 49.314043], [-123.085679, 49.313741], [-123.086165, 49.313512], [-123.086174, 49.313408], [-123.089723, 49.310131], [-123.091898, 49.311184]]]]}, "properties": {"name": "North Vancouver - City", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "North Vancouver - City", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915051", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.21143, 49.407091], [-123.240641, 49.408034], [-123.241495, 49.408111], [-123.243273, 49.407684], [-123.245158, 49.407564], [-123.247293, 49.404253], [-123.249774, 49.402526], [-123.255872, 49.399183], [-123.257016, 49.395355], [-123.259788, 49.392809], [-123.263462, 49.387911], [-123.267791, 49.384107], [-123.270054, 49.382772], [-123.271712, 49.382164], [-123.272818, 49.38207], [-123.276898, 49.382472], [-123.27843, 49.382457], [-123.280075, 49.381996], [-123.286907, 49.378652], [-123.29164, 49.378119], [-123.293219, 49.377097], [-123.296081, 49.373786], [-123.29643, 49.372319], [-123.295543, 49.370474], [-123.293333, 49.369015], [-123.289484, 49.368127], [-123.290287, 49.36347], [-123.287348, 49.360201], [-123.286143, 49.356131], [-123.285282, 49.354957], [-123.279707, 49.352116], [-123.277195, 49.351978], [-123.27488, 49.350719], [-123.273913, 49.349379], [-123.273373, 49.345311], [-123.269289, 49.343585], [-123.269152, 49.343326], [-123.269296, 49.342946], [-123.271131, 49.341269], [-123.271821, 49.340226], [-123.271957, 49.339208], [-123.270292, 49.331043], [-123.266909, 49.328288], [-123.263757, 49.327565], [-123.261524, 49.328098], [-123.258771, 49.329698], [-123.253944, 49.331013], [-123.248986, 49.333881], [-123.244744, 49.335141], [-123.239663, 49.336349], [-123.237448, 49.336794], [-123.234783, 49.336305], [-123.226583, 49.336719], [-123.225105, 49.336633], [-123.219492, 49.335162], [-123.216878, 49.334982], [-123.214952, 49.335511], [-123.213122, 49.33644], [-123.209772, 49.337488], [-123.207216, 49.336905], [-123.201987, 49.334629], [-123.201189, 49.334502], [-123.199271, 49.334455], [-123.197863, 49.334216], [-123.196167, 49.333441], [-123.19253, 49.332623], [-123.189642, 49.332269], [-123.181918, 49.330454], [-123.175781, 49.328493], [-123.170754, 49.325469], [-123.169763, 49.325106], [-123.166243, 49.324791], [-123.156319, 49.324747], [-123.153653, 49.323254], [-123.150451, 49.320154], [-123.144389, 49.318966], [-123.141684, 49.318068], [-123.137806, 49.316355], [-123.138403, 49.315718], [-123.134931, 49.313666], [-123.134193, 49.314246], [-123.132767, 49.315679], [-123.133095, 49.315879], [-123.133164, 49.316104], [-123.133138, 49.316446], [-123.13288, 49.316625], [-123.135603, 49.318709], [-123.134397, 49.319997], [-123.136755, 49.321107], [-123.137647, 49.320143], [-123.13814, 49.319496], [-123.141433, 49.320707], [-123.148005, 49.322927], [-123.145733, 49.325786], [-123.145153, 49.326713], [-123.143575, 49.328845], [-123.140545, 49.327948], [-123.134917, 49.326166], [-123.132732, 49.325648], [-123.131967, 49.326913], [-123.128913, 49.326201], [-123.124381, 49.324919], [-123.124622, 49.326125], [-123.124399, 49.328834], [-123.124339, 49.330861], [-123.118293, 49.331017], [-123.118133, 49.331179], [-123.117864, 49.332142], [-123.118416, 49.333425], [-123.1183, 49.333984], [-123.118155, 49.334179], [-123.118224, 49.337779], [-123.117986, 49.339322], [-123.118092, 49.344173], [-123.117968, 49.34745], [-123.118124, 49.348705], [-123.118113, 49.356105], [-123.117963, 49.357327], [-123.117886, 49.359246], [-123.118161, 49.359451], [-123.117219, 49.359504], [-123.117133, 49.363667], [-123.117938, 49.364348], [-123.117922, 49.370947], [-123.118504, 49.376734], [-123.119128, 49.377186], [-123.121846, 49.378721], [-123.1226, 49.379493], [-123.123627, 49.379627], [-123.123825, 49.4062], [-123.142332, 49.406491], [-123.180061, 49.406822], [-123.189628, 49.406734], [-123.21143, 49.407091]]]]}, "properties": {"name": "West Vancouver", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "West Vancouver", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915055", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.37107, 49.412827], [-123.372354, 49.41259], [-123.373455, 49.412271], [-123.375628, 49.413789], [-123.376657, 49.414753], [-123.377253, 49.4151], [-123.381149, 49.413843], [-123.389634, 49.410163], [-123.39309, 49.408378], [-123.39264, 49.405595], [-123.390315, 49.402823], [-123.393656, 49.399036], [-123.395906, 49.396938], [-123.405301, 49.391974], [-123.409678, 49.388761], [-123.415426, 49.385385], [-123.415506, 49.383048], [-123.417201, 49.381454], [-123.420446, 49.379303], [-123.423303, 49.377292], [-123.428547, 49.376041], [-123.429705, 49.374476], [-123.434853, 49.365389], [-123.43515, 49.36473], [-123.433843, 49.363695], [-123.431874, 49.361694], [-123.431207, 49.360367], [-123.431586, 49.358188], [-123.431424, 49.356476], [-123.429935, 49.354761], [-123.429019, 49.353251], [-123.429235, 49.351879], [-123.430639, 49.350956], [-123.433492, 49.350039], [-123.435437, 49.348647], [-123.437368, 49.346988], [-123.438263, 49.344689], [-123.439174, 49.341909], [-123.439507, 49.337294], [-123.438543, 49.335652], [-123.437463, 49.334117], [-123.435935, 49.33327], [-123.433326, 49.332479], [-123.42834, 49.331543], [-123.42463, 49.330416], [-123.420217, 49.329674], [-123.419195, 49.329293], [-123.400766, 49.329484], [-123.366363, 49.329465], [-123.364888, 49.330055], [-123.359147, 49.33157], [-123.356103, 49.332054], [-123.354618, 49.333048], [-123.351973, 49.335291], [-123.346703, 49.3417], [-123.345026, 49.342287], [-123.343475, 49.342756], [-123.342304, 49.342721], [-123.340923, 49.342983], [-123.33554, 49.346272], [-123.332551, 49.348872], [-123.329897, 49.352018], [-123.327897, 49.354714], [-123.326173, 49.357609], [-123.323364, 49.364874], [-123.323031, 49.36669], [-123.321698, 49.368117], [-123.317596, 49.369921], [-123.315501, 49.371393], [-123.314377, 49.373634], [-123.313348, 49.375989], [-123.313555, 49.377911], [-123.314525, 49.379934], [-123.314536, 49.380226], [-123.316973, 49.381977], [-123.317229, 49.382716], [-123.316399, 49.384223], [-123.315421, 49.385389], [-123.313736, 49.386791], [-123.312551, 49.388388], [-123.312268, 49.390113], [-123.313011, 49.391511], [-123.313173, 49.391507], [-123.314359, 49.393209], [-123.314186, 49.394517], [-123.313288, 49.395637], [-123.312024, 49.396588], [-123.309815, 49.397497], [-123.306673, 49.398516], [-123.304988, 49.399783], [-123.303858, 49.401448], [-123.302572, 49.403614], [-123.300879, 49.405701], [-123.300338, 49.407529], [-123.300822, 49.41018], [-123.301983, 49.411995], [-123.304202, 49.413438], [-123.305673, 49.414254], [-123.304429, 49.415358], [-123.303835, 49.416974], [-123.302714, 49.418776], [-123.304412, 49.420935], [-123.307519, 49.422454], [-123.311513, 49.423664], [-123.31555, 49.423967], [-123.319696, 49.423712], [-123.323323, 49.422972], [-123.325442, 49.421793], [-123.328042, 49.420226], [-123.3299, 49.419285], [-123.332479, 49.419353], [-123.336619, 49.419916], [-123.341429, 49.420319], [-123.344978, 49.420363], [-123.348243, 49.420329], [-123.353227, 49.419884], [-123.357959, 49.418861], [-123.36296, 49.416923], [-123.36595, 49.415033], [-123.369818, 49.412829], [-123.37107, 49.412827]]]]}, "properties": {"name": "Bowen Island", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Bowen Island", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915062", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.228925, 49.452901], [-123.228723, 49.457627], [-123.229005, 49.460381], [-123.230444, 49.470312], [-123.233107, 49.470484], [-123.232895, 49.471512], [-123.2333, 49.477078], [-123.242868, 49.476737], [-123.249078, 49.475018], [-123.248375, 49.474245], [-123.248006, 49.473448], [-123.247814, 49.472264], [-123.249069, 49.471032], [-123.249062, 49.470246], [-123.248187, 49.469348], [-123.247555, 49.468921], [-123.246903, 49.468639], [-123.245175, 49.468592], [-123.244547, 49.468528], [-123.244675, 49.46847], [-123.245119, 49.46795], [-123.245172, 49.467139], [-123.243757, 49.463701], [-123.244069, 49.462473], [-123.245545, 49.460294], [-123.245549, 49.457977], [-123.245157, 49.456735], [-123.243944, 49.455671], [-123.243331, 49.454703], [-123.245017, 49.45325], [-123.245427, 49.452212], [-123.245572, 49.451498], [-123.244099, 49.448807], [-123.23917, 49.448799], [-123.236864, 49.448729], [-123.229005, 49.448647], [-123.228925, 49.452901]]]]}, "properties": {"name": "Lions Bay", "province": "British Columbia", "rurality": "Urban 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Lions Bay", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915065", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.610057, 49.350895], [-122.612686, 49.350647], [-122.614542, 49.350654], [-122.616686, 49.351207], [-122.618032, 49.351286], [-122.61935, 49.35119], [-122.620604, 49.350844], [-122.628832, 49.346164], [-122.636439, 49.341568], [-122.638586, 49.339566], [-122.639438, 49.339078], [-122.641754, 49.338341], [-122.643498, 49.338029], [-122.645159, 49.337626], [-122.651806, 49.334992], [-122.654472, 49.333379], [-122.655319, 49.332615], [-122.656181, 49.331561], [-122.657342, 49.330649], [-122.658682, 49.329842], [-122.6593, 49.329589], [-122.661833, 49.328304], [-122.66339, 49.326787], [-122.665493, 49.324196], [-122.668725, 49.32097], [-122.67525, 49.317027], [-122.67561, 49.316634], [-122.676092, 49.315645], [-122.676462, 49.314027], [-122.676722, 49.313689], [-122.677899, 49.312719], [-122.678063, 49.312413], [-122.678197, 49.311422], [-122.67824, 49.310162], [-122.678012, 49.308498], [-122.67751, 49.307116], [-122.676281, 49.305102], [-122.674495, 49.303468], [-122.673285, 49.302506], [-122.671423, 49.301489], [-122.669624, 49.30063], [-122.667644, 49.299932], [-122.665936, 49.299575], [-122.662299, 49.298991], [-122.661143, 49.29862], [-122.66013, 49.297982], [-122.659637, 49.297191], [-122.659015, 49.29526], [-122.659001, 49.294453], [-122.659222, 49.293712], [-122.660519, 49.292628], [-122.661679, 49.292077], [-122.663446, 49.291406], [-122.665623, 49.290758], [-122.670783, 49.289537], [-122.685381, 49.28671], [-122.687463, 49.286175], [-122.693019, 49.284238], [-122.69517, 49.283356], [-122.697664, 49.282203], [-122.699676, 49.280867], [-122.70184, 49.27906], [-122.702647, 49.278335], [-122.704512, 49.27639], [-122.713589, 49.265165], [-122.718481, 49.256604], [-122.721958, 49.253108], [-122.723492, 49.251866], [-122.732801, 49.245782], [-122.734963, 49.244588], [-122.737751, 49.243524], [-122.747538, 49.240655], [-122.753176, 49.239105], [-122.756203, 49.23796], [-122.757135, 49.237424], [-122.758041, 49.236787], [-122.75914, 49.235777], [-122.766494, 49.231152], [-122.767404, 49.23032], [-122.767884, 49.228704], [-122.768148, 49.227334], [-122.76561, 49.226912], [-122.764352, 49.226468], [-122.763442, 49.225783], [-122.760206, 49.222704], [-122.756055, 49.218279], [-122.754283, 49.216821], [-122.752921, 49.216154], [-122.750621, 49.215573], [-122.744399, 49.214702], [-122.741173, 49.21416], [-122.738103, 49.213317], [-122.731996, 49.211257], [-122.730689, 49.211099], [-122.718921, 49.210072], [-122.715877, 49.209578], [-122.713322, 49.209077], [-122.710265, 49.208118], [-122.707602, 49.207056], [-122.692398, 49.2016], [-122.686505, 49.199754], [-122.674726, 49.197083], [-122.670988, 49.196498], [-122.66794, 49.196227], [-122.668204, 49.199696], [-122.669489, 49.199743], [-122.670505, 49.199565], [-122.670809, 49.199574], [-122.67207, 49.199677], [-122.672715, 49.199824], [-122.67432, 49.199999], [-122.676336, 49.200022], [-122.677462, 49.200106], [-122.678142, 49.200197], [-122.678089, 49.200289], [-122.678279, 49.200316], [-122.678341, 49.205584], [-122.671772, 49.205787], [-122.670965, 49.207221], [-122.670984, 49.207404], [-122.670488, 49.208161], [-122.670395, 49.208613], [-122.669224, 49.209573], [-122.668829, 49.211335], [-122.668728, 49.212297], [-122.669073, 49.21315], [-122.66926, 49.216955], [-122.669141, 49.217202], [-122.668971, 49.221278], [-122.664183, 49.221248], [-122.665746, 49.222333], [-122.665108, 49.226282], [-122.664794, 49.227761], [-122.664422, 49.231984], [-122.656754, 49.232101], [-122.65588, 49.242269], [-122.644793, 49.242266], [-122.644763, 49.249379], [-122.622281, 49.24984], [-122.622451, 49.256828], [-122.60061, 49.257112], [-122.601248, 49.26419], [-122.601494, 49.26421], [-122.60191, 49.264149], [-122.605466, 49.264198], [-122.607136, 49.264143], [-122.607787, 49.264215], [-122.611729, 49.264283], [-122.611483, 49.265785], [-122.6123, 49.270169], [-122.601196, 49.270552], [-122.601029, 49.277961], [-122.601203, 49.290896], [-122.600927, 49.299192], [-122.600568, 49.324754], [-122.597851, 49.324763], [-122.597732, 49.326314], [-122.595796, 49.32633], [-122.595703, 49.328303], [-122.593309, 49.328332], [-122.593265, 49.338176], [-122.593053, 49.338579], [-122.581602, 49.348113], [-122.575419, 49.352432], [-122.57925, 49.352238], [-122.603316, 49.353126], [-122.607841, 49.351351], [-122.610057, 49.350895]]]]}, "properties": {"name": "Pitt Meadows", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Pitt Meadows", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915070", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.520888, 49.353126], [-122.558011, 49.352724], [-122.575419, 49.352432], [-122.581602, 49.348113], [-122.593053, 49.338579], [-122.593265, 49.338176], [-122.593309, 49.328332], [-122.595703, 49.328303], [-122.595796, 49.32633], [-122.597732, 49.326314], [-122.597851, 49.324763], [-122.600568, 49.324754], [-122.600927, 49.299192], [-122.601203, 49.290896], [-122.601029, 49.277961], [-122.601196, 49.270552], [-122.6123, 49.270169], [-122.611483, 49.265785], [-122.611729, 49.264283], [-122.607787, 49.264215], [-122.607136, 49.264143], [-122.605466, 49.264198], [-122.60191, 49.264149], [-122.601494, 49.26421], [-122.601248, 49.26419], [-122.60061, 49.257112], [-122.622451, 49.256828], [-122.622281, 49.24984], [-122.644763, 49.249379], [-122.644793, 49.242266], [-122.65588, 49.242269], [-122.656754, 49.232101], [-122.664422, 49.231984], [-122.664794, 49.227761], [-122.665108, 49.226282], [-122.665746, 49.222333], [-122.664183, 49.221248], [-122.668971, 49.221278], [-122.669141, 49.217202], [-122.66926, 49.216955], [-122.669073, 49.21315], [-122.668728, 49.212297], [-122.668829, 49.211335], [-122.669224, 49.209573], [-122.670395, 49.208613], [-122.670488, 49.208161], [-122.670984, 49.207404], [-122.670965, 49.207221], [-122.671772, 49.205787], [-122.669064, 49.205944], [-122.669532, 49.200706], [-122.669662, 49.200524], [-122.669514, 49.200111], [-122.669483, 49.199735], [-122.668204, 49.199696], [-122.66794, 49.196227], [-122.66487, 49.19629], [-122.662162, 49.196835], [-122.659561, 49.19767], [-122.657209, 49.198529], [-122.653451, 49.199979], [-122.642354, 49.204585], [-122.636499, 49.206684], [-122.628389, 49.208877], [-122.62382, 49.209803], [-122.620316, 49.210273], [-122.617788, 49.210453], [-122.613789, 49.210471], [-122.608249, 49.210247], [-122.605724, 49.209806], [-122.60241, 49.20891], [-122.601569, 49.208531], [-122.5999, 49.207607], [-122.595111, 49.204122], [-122.591802, 49.201846], [-122.590821, 49.200947], [-122.58948, 49.199453], [-122.586532, 49.194634], [-122.585797, 49.193092], [-122.584739, 49.191285], [-122.582529, 49.188957], [-122.579981, 49.186927], [-122.577337, 49.185257], [-122.575047, 49.184109], [-122.573808, 49.183669], [-122.570324, 49.182652], [-122.563048, 49.180805], [-122.556327, 49.178853], [-122.553229, 49.177878], [-122.550816, 49.176902], [-122.548201, 49.175617], [-122.544891, 49.173219], [-122.542672, 49.171786], [-122.54121, 49.171041], [-122.538477, 49.170147], [-122.533433, 49.169165], [-122.529259, 49.168113], [-122.525251, 49.167584], [-122.517262, 49.167225], [-122.513471, 49.167228], [-122.511091, 49.16736], [-122.509855, 49.167306], [-122.5041, 49.167455], [-122.500467, 49.167679], [-122.496682, 49.167814], [-122.494291, 49.168007], [-122.488797, 49.168329], [-122.47821, 49.169796], [-122.472449, 49.170199], [-122.467188, 49.170465], [-122.464304, 49.170818], [-122.461899, 49.171281], [-122.460184, 49.17148], [-122.456845, 49.171768], [-122.451073, 49.171942], [-122.444832, 49.171637], [-122.441363, 49.171303], [-122.435664, 49.170605], [-122.42582, 49.168832], [-122.422513, 49.173526], [-122.422323, 49.174418], [-122.422452, 49.174712], [-122.422253, 49.174959], [-122.421939, 49.176693], [-122.424802, 49.178963], [-122.425228, 49.180159], [-122.425118, 49.180303], [-122.424853, 49.182046], [-122.423804, 49.191104], [-122.424326, 49.198318], [-122.424244, 49.203669], [-122.424417, 49.204715], [-122.424255, 49.205069], [-122.423995, 49.219189], [-122.424515, 49.220378], [-122.424352, 49.228368], [-122.424434, 49.235621], [-122.424142, 49.243551], [-122.424302, 49.26408], [-122.40916, 49.264271], [-122.408656, 49.293363], [-122.408883, 49.297805], [-122.409886, 49.332736], [-122.409984, 49.35298], [-122.454154, 49.353595], [-122.520888, 49.353126]], [[-122.465494, 49.176688], [-122.466152, 49.1767], [-122.466106, 49.177353], [-122.455247, 49.177783], [-122.454936, 49.174275], [-122.455085, 49.173581], [-122.457157, 49.173454], [-122.459356, 49.173241], [-122.459726, 49.173234], [-122.460299, 49.173407], [-122.461509, 49.173251], [-122.46214, 49.173245], [-122.462386, 49.173345], [-122.462689, 49.173319], [-122.463143, 49.173087], [-122.463776, 49.172973], [-122.466277, 49.172767], [-122.466334, 49.174112], [-122.466246, 49.175763], [-122.465618, 49.175797], [-122.465494, 49.176688]]]]}, "properties": {"name": "Maple Ridge", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Maple Ridge", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915075", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.757771, 49.005451], [-122.757859, 49.005891], [-122.757743, 49.012382], [-122.757924, 49.013177], [-122.758235, 49.013866], [-122.758917, 49.014906], [-122.759178, 49.015077], [-122.759548, 49.015169], [-122.759858, 49.015193], [-122.761048, 49.015109], [-122.761521, 49.015145], [-122.761892, 49.015258], [-122.762191, 49.015439], [-122.762356, 49.015662], [-122.762418, 49.015916], [-122.762354, 49.016439], [-122.762515, 49.01648], [-122.762586, 49.016584], [-122.78891, 49.016568], [-122.788947, 49.016426], [-122.788778, 49.016212], [-122.788775, 49.01599], [-122.773962, 49.011627], [-122.772558, 49.011377], [-122.771973, 49.011147], [-122.763992, 49.007169], [-122.763558, 49.007211], [-122.760034, 49.005409], [-122.757771, 49.005451]]]]}, "properties": {"name": "Semiahmoo", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Semiahmoo", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915801", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.123987, 49.063777], [-123.130563, 49.063972], [-123.130546, 49.065246], [-123.136158, 49.065269], [-123.13623, 49.061626], [-123.130561, 49.061637], [-123.130559, 49.059485], [-123.13413, 49.059499], [-123.134137, 49.056112], [-123.130567, 49.056077], [-123.130602, 49.053739], [-123.129178, 49.053175], [-123.128054, 49.052862], [-123.127424, 49.052565], [-123.12448, 49.051578], [-123.123986, 49.051255], [-123.123815, 49.051038], [-123.121879, 49.04989], [-123.120409, 49.049721], [-123.119656, 49.049236], [-123.118917, 49.048858], [-123.117903, 49.048672], [-123.116958, 49.048384], [-123.114974, 49.048306], [-123.114302, 49.048099], [-123.112631, 49.047713], [-123.112467, 49.047651], [-123.112207, 49.047408], [-123.111618, 49.047031], [-123.111587, 49.046185], [-123.111272, 49.045835], [-123.110503, 49.044648], [-123.10935, 49.043201], [-123.109282, 49.042572], [-123.109117, 49.042409], [-123.109062, 49.042184], [-123.109086, 49.041007], [-123.108988, 49.040584], [-123.108509, 49.039847], [-123.107783, 49.039397], [-123.107535, 49.038885], [-123.107069, 49.038265], [-123.104918, 49.037178], [-123.102085, 49.036047], [-123.101644, 49.035778], [-123.099894, 49.035186], [-123.099207, 49.034827], [-123.099168, 49.034737], [-123.099301, 49.033962], [-123.099521, 49.033837], [-123.100096, 49.033692], [-123.100121, 49.033396], [-123.100709, 49.032891], [-123.101104, 49.032342], [-123.100731, 49.030391], [-123.100784, 49.029734], [-123.101371, 49.028959], [-123.101713, 49.028257], [-123.101873, 49.027348], [-123.101996, 49.026898], [-123.102161, 49.026609], [-123.102253, 49.026113], [-123.105936, 49.023515], [-123.104896, 49.023567], [-123.104462, 49.023501], [-123.103921, 49.023262], [-123.10315, 49.023255], [-123.102713, 49.023192], [-123.101906, 49.022851], [-123.10118, 49.022438], [-123.100303, 49.021683], [-123.100221, 49.021197], [-123.099973, 49.02108], [-123.099452, 49.020684], [-123.098014, 49.0194], [-123.096766, 49.017836], [-123.093129, 49.01792], [-123.093219, 49.018148], [-123.094184, 49.018501], [-123.094897, 49.018878], [-123.09547, 49.019498], [-123.095878, 49.019805], [-123.09724, 49.02063], [-123.098077, 49.020951], [-123.099161, 49.021781], [-123.099653, 49.022311], [-123.099902, 49.022698], [-123.10008, 49.023175], [-123.100483, 49.023663], [-123.10056, 49.024173], [-123.1005, 49.024641], [-123.09964, 49.02457], [-123.097369, 49.024666], [-123.096811, 49.024631], [-123.093637, 49.02465], [-123.090832, 49.024723], [-123.090963, 49.03211], [-123.079706, 49.037517], [-123.079707, 49.053882], [-123.090822, 49.053899], [-123.090823, 49.052897], [-123.093605, 49.052712], [-123.09454, 49.05294], [-123.095183, 49.052869], [-123.099501, 49.052884], [-123.099641, 49.056048], [-123.102786, 49.056053], [-123.102762, 49.055477], [-123.107367, 49.055455], [-123.107379, 49.056016], [-123.109954, 49.056031], [-123.109952, 49.056394], [-123.124001, 49.056612], [-123.123987, 49.063777]]]]}, "properties": {"name": "Tsawwassen", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Tsawwassen", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915802", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.191361, 49.220814], [-123.19111, 49.225555], [-123.190957, 49.226534], [-123.191132, 49.227361], [-123.191111, 49.228332], [-123.194666, 49.229738], [-123.197062, 49.230576], [-123.196771, 49.234822], [-123.197093, 49.23492], [-123.197094, 49.235053], [-123.208891, 49.238284], [-123.211137, 49.23872], [-123.219628, 49.239797], [-123.221588, 49.236999], [-123.225957, 49.228872], [-123.207333, 49.222818], [-123.202854, 49.221942], [-123.191309, 49.21944], [-123.191361, 49.220814]]]]}, "properties": {"name": "Musqueam 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Musqueam 2", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915803", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.793839, 49.252533], [-122.794048, 49.252394], [-122.796038, 49.25157], [-122.796501, 49.251212], [-122.796824, 49.251128], [-122.795979, 49.250184], [-122.795594, 49.249402], [-122.795528, 49.248704], [-122.795638, 49.248452], [-122.795975, 49.248299], [-122.796536, 49.248359], [-122.797492, 49.248664], [-122.79792, 49.248591], [-122.798175, 49.248406], [-122.798281, 49.248177], [-122.798152, 49.247354], [-122.798506, 49.24672], [-122.799051, 49.246472], [-122.801326, 49.246404], [-122.802331, 49.246133], [-122.80292, 49.245574], [-122.802964, 49.24533], [-122.802806, 49.245037], [-122.801818, 49.243995], [-122.801813, 49.243726], [-122.786296, 49.243734], [-122.786363, 49.24787], [-122.786827, 49.251831], [-122.790168, 49.252136], [-122.793719, 49.252355], [-122.793839, 49.252533]]]]}, "properties": {"name": "Coquitlam 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Coquitlam 2", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915804", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.804484, 49.229882], [-122.803653, 49.230604], [-122.803319, 49.231243], [-122.804272, 49.231567], [-122.807023, 49.229796], [-122.806022, 49.229299], [-122.805646, 49.229397], [-122.805287, 49.229594], [-122.804484, 49.229882]]]]}, "properties": {"name": "Coquitlam 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Coquitlam 1", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915805", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.981136, 49.312654], [-122.981111, 49.312755], [-122.983629, 49.312816], [-122.984126, 49.312778], [-122.991212, 49.31287], [-122.991294, 49.307896], [-122.990593, 49.307527], [-122.989505, 49.307392], [-122.988791, 49.307401], [-122.988488, 49.307464], [-122.987194, 49.308255], [-122.986519, 49.308417], [-122.985873, 49.308444], [-122.985558, 49.308399], [-122.985172, 49.308174], [-122.984704, 49.308003], [-122.983287, 49.307661], [-122.980922, 49.307508], [-122.980193, 49.307373], [-122.979739, 49.30722], [-122.97802, 49.306878], [-122.976493, 49.306257], [-122.975818, 49.305951], [-122.97535, 49.305636], [-122.97491, 49.305429], [-122.974911, 49.305366], [-122.973811, 49.304817], [-122.971528, 49.303503], [-122.970731, 49.30326], [-122.969795, 49.303143], [-122.969259, 49.303134], [-122.968956, 49.312584], [-122.979775, 49.312756], [-122.980089, 49.312749], [-122.980098, 49.312601], [-122.981136, 49.312654]]]]}, "properties": {"name": "Burrard Inlet 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Burrard Inlet 3", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915806", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.088823, 49.319075], [-123.091593, 49.319052], [-123.091898, 49.311184], [-123.089723, 49.310131], [-123.086174, 49.313408], [-123.086165, 49.313512], [-123.085679, 49.313741], [-123.08595, 49.314043], [-123.085817, 49.318392], [-123.08244, 49.316905], [-123.08156, 49.317772], [-123.084282, 49.318951], [-123.085728, 49.318923], [-123.088421, 49.319081], [-123.088478, 49.318927], [-123.088823, 49.319075]]]]}, "properties": {"name": "Mission 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Mission 1", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915807", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.132744, 49.32565], [-123.134917, 49.326166], [-123.140545, 49.327948], [-123.143575, 49.328845], [-123.145153, 49.326713], [-123.145733, 49.325786], [-123.148005, 49.322927], [-123.141433, 49.320707], [-123.13814, 49.319496], [-123.137647, 49.320143], [-123.136755, 49.321107], [-123.134397, 49.319997], [-123.135603, 49.318709], [-123.13288, 49.316625], [-123.133138, 49.316446], [-123.133164, 49.316104], [-123.133095, 49.315879], [-123.132767, 49.315679], [-123.134193, 49.314246], [-123.134931, 49.313666], [-123.128809, 49.310117], [-123.123624, 49.315125], [-123.122845, 49.316003], [-123.121314, 49.317381], [-123.120626, 49.317695], [-123.120147, 49.318486], [-123.1201, 49.323958], [-123.121052, 49.32397], [-123.128913, 49.326201], [-123.131967, 49.326913], [-123.132744, 49.32565]]]]}, "properties": {"name": "Capilano 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Capilano 5", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915808", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.689284, 49.191455], [-122.700821, 49.191496], [-122.700953, 49.185087], [-122.701115, 49.184739], [-122.697182, 49.185012], [-122.695824, 49.185197], [-122.693682, 49.1853], [-122.690839, 49.18567], [-122.689343, 49.185991], [-122.689284, 49.191455]]]]}, "properties": {"name": "Barnston Island 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Barnston Island 3", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915809", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.119441, 49.070002], [-123.130472, 49.070283], [-123.130563, 49.063972], [-123.123153, 49.063753], [-123.123143, 49.064219], [-123.122561, 49.064219], [-123.122083, 49.064188], [-123.122133, 49.063722], [-123.119589, 49.063647], [-123.119441, 49.070002]]]]}, "properties": {"name": "Musqueam 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Musqueam 4", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915810", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.029402, 49.311292], [-123.029545, 49.305671], [-123.028308, 49.307302], [-123.027952, 49.308091], [-123.027822, 49.308052], [-123.02782, 49.308104], [-123.027586, 49.307575], [-123.027388, 49.307347], [-123.026519, 49.30667], [-123.024768, 49.306374], [-123.02115, 49.306796], [-123.02149, 49.30784], [-123.021847, 49.308469], [-123.021849, 49.308965], [-123.02156, 49.309613], [-123.021367, 49.309873], [-123.020927, 49.310251], [-123.019762, 49.310937], [-123.019968, 49.311059], [-123.019717, 49.31129], [-123.019494, 49.311631], [-123.019482, 49.31232], [-123.023129, 49.312539], [-123.024433, 49.312527], [-123.025629, 49.311058], [-123.025015, 49.310995], [-123.023353, 49.310579], [-123.023662, 49.308783], [-123.026949, 49.308649], [-123.026958, 49.309366], [-123.027813, 49.309362], [-123.02781, 49.310554], [-123.028015, 49.311219], [-123.02902, 49.311342], [-123.029168, 49.31125], [-123.029402, 49.311292]]], [[[-123.026544, 49.302652], [-123.029832, 49.303466], [-123.029741, 49.302975], [-123.029827, 49.300121], [-123.028378, 49.300157], [-123.028282, 49.301498], [-123.028089, 49.301587], [-123.027002, 49.301525], [-123.026878, 49.301362], [-123.026906, 49.300185], [-123.02681, 49.299851], [-123.026824, 49.299357], [-123.025704, 49.299384], [-123.02553, 49.299311], [-123.025392, 49.29942], [-123.025227, 49.299303], [-123.025214, 49.299078], [-123.023027, 49.298494], [-123.022779, 49.29879], [-123.022944, 49.299186], [-123.023096, 49.29934], [-123.024775, 49.299715], [-123.024941, 49.300344], [-123.025424, 49.300862], [-123.025889, 49.301263], [-123.026517, 49.301545], [-123.026544, 49.302652]]]]}, "properties": {"name": "Seymour Creek 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Seymour Creek 2", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915811", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.139664, 49.274145], [-123.146316, 49.273828], [-123.146337, 49.273555], [-123.145138, 49.273606], [-123.14474, 49.273577], [-123.144174, 49.273446], [-123.143481, 49.273121], [-123.1416, 49.270967], [-123.14151, 49.271], [-123.141094, 49.270564], [-123.140807, 49.270605], [-123.14117, 49.271022], [-123.141085, 49.271087], [-123.141879, 49.27198], [-123.14199, 49.272262], [-123.142006, 49.272548], [-123.141873, 49.273003], [-123.141474, 49.2734], [-123.141009, 49.273649], [-123.14038, 49.273819], [-123.139677, 49.273872], [-123.139586, 49.274013], [-123.139664, 49.274145]]]]}, "properties": {"name": "Kitsilano 6", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Kitsilano 6", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915812", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.651792, 49.197356], [-122.654857, 49.19584], [-122.657609, 49.194717], [-122.656403, 49.19231], [-122.655836, 49.191688], [-122.655439, 49.191443], [-122.649505, 49.19291], [-122.651792, 49.197356]]]]}, "properties": {"name": "Katzie 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Katzie 2", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915813", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.569538, 49.179739], [-122.570619, 49.179933], [-122.572414, 49.180461], [-122.576134, 49.181869], [-122.576723, 49.18198], [-122.577515, 49.182378], [-122.579008, 49.182789], [-122.580004, 49.183277], [-122.579984, 49.182666], [-122.579785, 49.181837], [-122.579772, 49.181477], [-122.579962, 49.180093], [-122.579928, 49.179284], [-122.57924, 49.177995], [-122.578302, 49.176938], [-122.577253, 49.176125], [-122.575547, 49.175192], [-122.574191, 49.174621], [-122.573616, 49.174406], [-122.573196, 49.174567], [-122.573703, 49.173613], [-122.574621, 49.17293], [-122.57556, 49.172413], [-122.573669, 49.171758], [-122.571657, 49.171211], [-122.568492, 49.17065], [-122.565226, 49.170718], [-122.56428, 49.17068], [-122.558894, 49.169931], [-122.555114, 49.169304], [-122.552222, 49.168987], [-122.548618, 49.168739], [-122.548478, 49.168918], [-122.548527, 49.169495], [-122.54882, 49.170512], [-122.549196, 49.171368], [-122.549595, 49.171361], [-122.549896, 49.171479], [-122.550045, 49.171641], [-122.550109, 49.172208], [-122.550706, 49.172778], [-122.550963, 49.173219], [-122.551493, 49.173706], [-122.55296, 49.175404], [-122.553151, 49.175548], [-122.553698, 49.175749], [-122.554135, 49.176038], [-122.554968, 49.176338], [-122.561898, 49.177912], [-122.563075, 49.17824], [-122.564114, 49.178621], [-122.565264, 49.178797], [-122.566991, 49.179191], [-122.56732, 49.17921], [-122.567868, 49.17914], [-122.568485, 49.179259], [-122.568758, 49.179351], [-122.568935, 49.179522], [-122.568949, 49.179738], [-122.569208, 49.179846], [-122.569538, 49.179739]]]]}, "properties": {"name": "McMillan Island 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "McMillan Island 6", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915816", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.473384, 49.007695], [-122.478852, 49.007691], [-122.478849, 49.002302], [-122.473377, 49.002303], [-122.473384, 49.007695]]]]}, "properties": {"name": "Matsqui 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Matsqui 4", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915825", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.669529, 49.20074], [-122.669064, 49.205944], [-122.671772, 49.205787], [-122.678341, 49.205584], [-122.678279, 49.200316], [-122.678089, 49.200289], [-122.678142, 49.200197], [-122.67657, 49.200032], [-122.67432, 49.199999], [-122.672715, 49.199824], [-122.67207, 49.199677], [-122.670505, 49.199565], [-122.669489, 49.199743], [-122.669514, 49.200111], [-122.669662, 49.200524], [-122.669529, 49.20074]]]]}, "properties": {"name": "Katzie 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Katzie 1", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915830", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.466106, 49.177353], [-122.466152, 49.1767], [-122.465494, 49.176688], [-122.465618, 49.175797], [-122.466246, 49.175763], [-122.466334, 49.174112], [-122.466277, 49.172767], [-122.463776, 49.172973], [-122.463143, 49.173087], [-122.462689, 49.173319], [-122.462386, 49.173345], [-122.46214, 49.173245], [-122.461509, 49.173251], [-122.460299, 49.173407], [-122.459726, 49.173234], [-122.459356, 49.173241], [-122.457157, 49.173454], [-122.455085, 49.173581], [-122.454936, 49.174275], [-122.455247, 49.177783], [-122.466106, 49.177353]]]]}, "properties": {"name": "Whonnock 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Whonnock 1", "economic_region_id": "5920", "census_division_code": "5915", "census_subdivision_code": "5915840", "regional_district_aka_census_division": "Greater Vancouver"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.400639, 48.690546], [-123.421638, 48.694968], [-123.425162, 48.697431], [-123.434499, 48.698981], [-123.444239, 48.700198], [-123.445976, 48.700305], [-123.457855, 48.699107], [-123.46631, 48.69799], [-123.479807, 48.696919], [-123.486782, 48.69269], [-123.489138, 48.691385], [-123.489311, 48.687844], [-123.489277, 48.68323], [-123.489181, 48.681069], [-123.489802, 48.673518], [-123.489862, 48.671192], [-123.474452, 48.658196], [-123.467716, 48.661179], [-123.44827, 48.655912], [-123.447521, 48.65535], [-123.447254, 48.654495], [-123.451535, 48.653025], [-123.456786, 48.650575], [-123.461813, 48.648432], [-123.46675, 48.64684], [-123.471552, 48.644678], [-123.475146, 48.642283], [-123.478874, 48.638262], [-123.480616, 48.635462], [-123.482201, 48.630979], [-123.482594, 48.629515], [-123.482954, 48.624048], [-123.48246, 48.619779], [-123.481376, 48.61333], [-123.476825, 48.612378], [-123.475589, 48.612403], [-123.475356, 48.612375], [-123.47521, 48.61227], [-123.472983, 48.612371], [-123.466431, 48.6123], [-123.459196, 48.61191], [-123.452433, 48.612027], [-123.4482, 48.61204], [-123.443797, 48.611548], [-123.43025, 48.612077], [-123.424176, 48.612179], [-123.418104, 48.611949], [-123.408347, 48.611865], [-123.404433, 48.611884], [-123.401022, 48.612139], [-123.398529, 48.612123], [-123.395159, 48.61401], [-123.400322, 48.622134], [-123.401421, 48.630083], [-123.402044, 48.633975], [-123.405339, 48.635497], [-123.405784, 48.635532], [-123.417095, 48.635388], [-123.417786, 48.637381], [-123.418, 48.638403], [-123.417884, 48.639222], [-123.417022, 48.641304], [-123.416621, 48.643145], [-123.416775, 48.64442], [-123.416794, 48.645759], [-123.416897, 48.645821], [-123.416782, 48.65055], [-123.416839, 48.650734], [-123.416789, 48.666154], [-123.417583, 48.669022], [-123.414061, 48.669206], [-123.410141, 48.672358], [-123.409422, 48.672428], [-123.407374, 48.672173], [-123.404791, 48.672563], [-123.402055, 48.672323], [-123.397478, 48.672613], [-123.395889, 48.672418], [-123.39446, 48.672711], [-123.393682, 48.67327], [-123.39386, 48.674559], [-123.395527, 48.678058], [-123.397594, 48.680971], [-123.397976, 48.682273], [-123.399097, 48.68514], [-123.400639, 48.690546]], [[-123.456619, 48.665925], [-123.457271, 48.665986], [-123.458029, 48.665937], [-123.458135, 48.66631], [-123.456813, 48.666224], [-123.444049, 48.666182], [-123.444126, 48.662668], [-123.450731, 48.662707], [-123.451117, 48.662561], [-123.45139, 48.662906], [-123.452154, 48.663218], [-123.452988, 48.663745], [-123.453395, 48.663879], [-123.453685, 48.664228], [-123.45497, 48.665168], [-123.455257, 48.665364], [-123.456619, 48.665925]], [[-123.465625, 48.626261], [-123.465261, 48.62646], [-123.465185, 48.627064], [-123.464823, 48.627452], [-123.464749, 48.628335], [-123.464425, 48.628678], [-123.464402, 48.628993], [-123.464524, 48.629154], [-123.465742, 48.630075], [-123.463699, 48.630085], [-123.463649, 48.63012], [-123.451877, 48.63002], [-123.451076, 48.630049], [-123.449667, 48.630217], [-123.448975, 48.630227], [-123.445557, 48.629997], [-123.444145, 48.630014], [-123.443793, 48.624327], [-123.443841, 48.619406], [-123.443717, 48.6158], [-123.458931, 48.616162], [-123.466879, 48.616004], [-123.470031, 48.61587], [-123.471418, 48.615874], [-123.471544, 48.616132], [-123.471532, 48.617375], [-123.471032, 48.619591], [-123.470296, 48.620719], [-123.469182, 48.621929], [-123.469007, 48.622226], [-123.468915, 48.622586], [-123.468353, 48.623381], [-123.467264, 48.624428], [-123.466529, 48.625808], [-123.466234, 48.626035], [-123.465625, 48.626261]]]]}, "properties": {"name": "North Saanich", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "North Saanich", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917005", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.407041, 48.671927], [-123.407374, 48.672173], [-123.409422, 48.672428], [-123.410141, 48.672358], [-123.414061, 48.669206], [-123.417583, 48.669022], [-123.416789, 48.666154], [-123.416839, 48.650734], [-123.416782, 48.65055], [-123.416897, 48.645821], [-123.416794, 48.645759], [-123.416775, 48.64442], [-123.416621, 48.643145], [-123.417022, 48.641304], [-123.417884, 48.639222], [-123.418, 48.638403], [-123.417786, 48.637381], [-123.417095, 48.635388], [-123.405784, 48.635532], [-123.405339, 48.635497], [-123.402044, 48.633975], [-123.391157, 48.644338], [-123.389607, 48.645945], [-123.389346, 48.648217], [-123.389636, 48.648963], [-123.391997, 48.653039], [-123.392144, 48.653564], [-123.391865, 48.655068], [-123.390006, 48.656594], [-123.38837, 48.662111], [-123.388637, 48.663377], [-123.39056, 48.664794], [-123.393002, 48.665394], [-123.393283, 48.665844], [-123.392997, 48.667835], [-123.393326, 48.669328], [-123.394658, 48.670181], [-123.399652, 48.671718], [-123.40177, 48.671366], [-123.407041, 48.671927]]]]}, "properties": {"name": "Sidney", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Sidney", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917010", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.408347, 48.611865], [-123.418104, 48.611949], [-123.424176, 48.612179], [-123.43025, 48.612077], [-123.443797, 48.611548], [-123.4482, 48.61204], [-123.452433, 48.612027], [-123.459196, 48.61191], [-123.466431, 48.6123], [-123.472983, 48.612371], [-123.47521, 48.61227], [-123.475356, 48.612375], [-123.475589, 48.612403], [-123.476825, 48.612378], [-123.481376, 48.61333], [-123.483892, 48.603804], [-123.478704, 48.590621], [-123.474323, 48.57773], [-123.471418, 48.573229], [-123.471959, 48.571842], [-123.472976, 48.570647], [-123.475103, 48.567792], [-123.475835, 48.564471], [-123.475561, 48.56278], [-123.474352, 48.561178], [-123.467072, 48.559668], [-123.465955, 48.559543], [-123.464317, 48.559109], [-123.463856, 48.55894], [-123.463407, 48.558941], [-123.462379, 48.559181], [-123.462028, 48.559182], [-123.461877, 48.559119], [-123.461454, 48.558725], [-123.461182, 48.558645], [-123.46087, 48.558638], [-123.459774, 48.558776], [-123.45934, 48.558886], [-123.457917, 48.558902], [-123.457105, 48.558796], [-123.456198, 48.559034], [-123.45517, 48.559101], [-123.454585, 48.558923], [-123.454281, 48.558724], [-123.451677, 48.558028], [-123.444183, 48.558106], [-123.444169, 48.554491], [-123.438624, 48.554399], [-123.42983, 48.554485], [-123.429831, 48.550485], [-123.417207, 48.550663], [-123.403524, 48.550695], [-123.40077, 48.550677], [-123.396685, 48.550468], [-123.389951, 48.550666], [-123.385639, 48.550708], [-123.376306, 48.550691], [-123.365614, 48.550348], [-123.362988, 48.550315], [-123.35984, 48.550525], [-123.36182, 48.574294], [-123.369279, 48.582576], [-123.369214, 48.600321], [-123.395159, 48.61401], [-123.398503, 48.612125], [-123.401022, 48.612139], [-123.404433, 48.611884], [-123.408347, 48.611865]], [[-123.464642, 48.5902], [-123.464644, 48.590263], [-123.464792, 48.590315], [-123.46539, 48.590358], [-123.465882, 48.590501], [-123.462785, 48.590702], [-123.443708, 48.590713], [-123.444328, 48.586948], [-123.44436, 48.581428], [-123.441233, 48.581358], [-123.441204, 48.579714], [-123.451538, 48.579746], [-123.451907, 48.579629], [-123.464156, 48.57962], [-123.470248, 48.579769], [-123.470337, 48.579857], [-123.47031, 48.57993], [-123.469905, 48.580119], [-123.469865, 48.580192], [-123.46988, 48.580344], [-123.470114, 48.580749], [-123.470117, 48.580974], [-123.470283, 48.581252], [-123.47023, 48.581558], [-123.469892, 48.581632], [-123.469524, 48.581354], [-123.469334, 48.581391], [-123.468997, 48.581527], [-123.468606, 48.581915], [-123.467731, 48.58237], [-123.467445, 48.582424], [-123.467052, 48.582327], [-123.46663, 48.582337], [-123.466294, 48.582501], [-123.46593, 48.582808], [-123.465787, 48.583475], [-123.46583, 48.585022], [-123.466089, 48.585372], [-123.466285, 48.58601], [-123.466545, 48.586261], [-123.466835, 48.586699], [-123.466864, 48.586897], [-123.466649, 48.587124], [-123.466129, 48.588286], [-123.465633, 48.588737], [-123.465503, 48.589306], [-123.465353, 48.589368], [-123.465122, 48.589343], [-123.464946, 48.589434], [-123.46498, 48.589936], [-123.464642, 48.5902]], [[-123.403471, 48.594125], [-123.393723, 48.594147], [-123.393103, 48.593908], [-123.392635, 48.593899], [-123.390889, 48.594047], [-123.390587, 48.59383], [-123.38973, 48.593446], [-123.387935, 48.593056], [-123.38731, 48.592815], [-123.385812, 48.592056], [-123.385432, 48.591913], [-123.384576, 48.591718], [-123.383407, 48.591533], [-123.381548, 48.591386], [-123.37942, 48.591321], [-123.378321, 48.591396], [-123.377859, 48.59111], [-123.375956, 48.590532], [-123.37511, 48.589932], [-123.37402, 48.589422], [-123.372922, 48.589256], [-123.372854, 48.589337], [-123.372978, 48.589561], [-123.37319, 48.590586], [-123.373489, 48.590864], [-123.373588, 48.591187], [-123.37431, 48.591851], [-123.374407, 48.59204], [-123.374489, 48.592076], [-123.375952, 48.592007], [-123.376685, 48.59205], [-123.37701, 48.591913], [-123.377225, 48.591734], [-123.377494, 48.591345], [-123.37755, 48.591516], [-123.377456, 48.591732], [-123.376878, 48.592382], [-123.375229, 48.593342], [-123.374908, 48.593639], [-123.37467, 48.594003], [-123.371481, 48.594043], [-123.372098, 48.593306], [-123.372325, 48.592919], [-123.372615, 48.591829], [-123.372611, 48.5912], [-123.372459, 48.590958], [-123.371559, 48.590052], [-123.370928, 48.589261], [-123.370434, 48.588327], [-123.370215, 48.588203], [-123.369917, 48.588213], [-123.369794, 48.588132], [-123.370277, 48.587239], [-123.370735, 48.585151], [-123.371171, 48.583585], [-123.371253, 48.582833], [-123.38978, 48.583079], [-123.390984, 48.583047], [-123.403445, 48.583278], [-123.403471, 48.594125]]]]}, "properties": {"name": "Central Saanich", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Central Saanich", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917015", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.460569, 48.551161], [-123.462677, 48.553014], [-123.463362, 48.553479], [-123.465434, 48.553587], [-123.466167, 48.553753], [-123.469087, 48.555484], [-123.470815, 48.556998], [-123.471441, 48.557266], [-123.471657, 48.551196], [-123.474599, 48.548759], [-123.469903, 48.546522], [-123.469617, 48.543997], [-123.471411, 48.543953], [-123.477786, 48.544144], [-123.477737, 48.537298], [-123.472766, 48.537325], [-123.47248, 48.522792], [-123.463612, 48.523168], [-123.463527, 48.522342], [-123.463455, 48.514393], [-123.461057, 48.514459], [-123.458301, 48.51467], [-123.458132, 48.503793], [-123.459084, 48.498629], [-123.456894, 48.497702], [-123.456503, 48.493506], [-123.456766, 48.491227], [-123.456481, 48.480618], [-123.457393, 48.472025], [-123.457037, 48.471622], [-123.456412, 48.471273], [-123.455919, 48.470682], [-123.455306, 48.470153], [-123.455156, 48.469982], [-123.45518, 48.469641], [-123.455015, 48.469407], [-123.454861, 48.468869], [-123.454588, 48.468608], [-123.454112, 48.468313], [-123.454111, 48.468115], [-123.454579, 48.467681], [-123.454686, 48.467348], [-123.454709, 48.466826], [-123.454556, 48.46644], [-123.45397, 48.465983], [-123.45375, 48.465643], [-123.453733, 48.465256], [-123.453931, 48.46467], [-123.453848, 48.464382], [-123.452261, 48.465436], [-123.449012, 48.468336], [-123.444282, 48.466375], [-123.44335, 48.468794], [-123.441553, 48.468101], [-123.437801, 48.466464], [-123.437186, 48.466122], [-123.435623, 48.466398], [-123.433675, 48.467679], [-123.427859, 48.470725], [-123.42684, 48.468758], [-123.424613, 48.469792], [-123.423547, 48.467781], [-123.423264, 48.467938], [-123.422942, 48.469341], [-123.420015, 48.469184], [-123.419891, 48.469634], [-123.418934, 48.469414], [-123.420288, 48.465767], [-123.421021, 48.464453], [-123.421329, 48.463594], [-123.421482, 48.463529], [-123.422301, 48.461377], [-123.421235, 48.460731], [-123.420655, 48.460145], [-123.420813, 48.458618], [-123.422256, 48.457062], [-123.423821, 48.454886], [-123.423888, 48.453621], [-123.423156, 48.452051], [-123.422208, 48.451628], [-123.421007, 48.452047], [-123.420214, 48.452166], [-123.418593, 48.451961], [-123.41668, 48.451084], [-123.414906, 48.450626], [-123.413875, 48.449913], [-123.412961, 48.449612], [-123.411118, 48.449821], [-123.409631, 48.449528], [-123.407197, 48.448531], [-123.403111, 48.447163], [-123.400976, 48.446502], [-123.400433, 48.446429], [-123.399425, 48.446094], [-123.397754, 48.445336], [-123.395315, 48.443829], [-123.394556, 48.443746], [-123.391939, 48.44259], [-123.391472, 48.442944], [-123.391161, 48.443317], [-123.390479, 48.443909], [-123.386854, 48.447422], [-123.384629, 48.44945], [-123.379624, 48.446959], [-123.376846, 48.447224], [-123.360541, 48.449125], [-123.35231, 48.450018], [-123.351182, 48.450329], [-123.351031, 48.450229], [-123.350484, 48.450204], [-123.348092, 48.450478], [-123.348144, 48.448443], [-123.340312, 48.448245], [-123.332475, 48.448144], [-123.332597, 48.439984], [-123.333008, 48.438945], [-123.332542, 48.43898], [-123.328117, 48.438771], [-123.329192, 48.433644], [-123.323884, 48.433368], [-123.322355, 48.433542], [-123.321778, 48.446497], [-123.321721, 48.446855], [-123.3214, 48.447293], [-123.321507, 48.44859], [-123.321734, 48.449885], [-123.321522, 48.453612], [-123.321202, 48.455512], [-123.32102, 48.457645], [-123.320899, 48.461404], [-123.320562, 48.46722], [-123.317507, 48.465636], [-123.312464, 48.463403], [-123.308902, 48.461396], [-123.307031, 48.460512], [-123.302394, 48.457718], [-123.300442, 48.456828], [-123.300497, 48.456648], [-123.299757, 48.456325], [-123.299527, 48.456318], [-123.298633, 48.455875], [-123.294596, 48.453659], [-123.286933, 48.449629], [-123.28548, 48.448775], [-123.283866, 48.448204], [-123.282196, 48.447653], [-123.280328, 48.447125], [-123.278133, 48.446907], [-123.276231, 48.446966], [-123.274128, 48.44733], [-123.270355, 48.448145], [-123.267429, 48.449012], [-123.267113, 48.449002], [-123.262993, 48.455028], [-123.277746, 48.465695], [-123.283547, 48.469778], [-123.291708, 48.474377], [-123.293789, 48.475116], [-123.299096, 48.476722], [-123.300498, 48.477125], [-123.301984, 48.477453], [-123.298653, 48.489463], [-123.309108, 48.498981], [-123.329192, 48.500708], [-123.340524, 48.501369], [-123.343509, 48.503808], [-123.348595, 48.506762], [-123.355186, 48.510403], [-123.357634, 48.511914], [-123.360731, 48.513647], [-123.364153, 48.519514], [-123.364819, 48.520265], [-123.364326, 48.526044], [-123.363758, 48.537709], [-123.360844, 48.542538], [-123.357879, 48.546711], [-123.359555, 48.549119], [-123.35984, 48.550525], [-123.362988, 48.550315], [-123.365614, 48.550348], [-123.376306, 48.550691], [-123.385639, 48.550708], [-123.389951, 48.550666], [-123.396685, 48.550468], [-123.40077, 48.550677], [-123.403524, 48.550695], [-123.417207, 48.550663], [-123.429831, 48.550485], [-123.42983, 48.554485], [-123.438624, 48.554399], [-123.444169, 48.554491], [-123.444183, 48.558106], [-123.451677, 48.558028], [-123.454281, 48.558724], [-123.454585, 48.558923], [-123.45517, 48.559101], [-123.456198, 48.559034], [-123.457105, 48.558796], [-123.45781, 48.558893], [-123.458376, 48.558908], [-123.457808, 48.552627], [-123.457762, 48.551219], [-123.460569, 48.551161]]]]}, "properties": {"name": "Saanich", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Saanich", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917021", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.369219, 48.75009], [-123.362761, 48.764364], [-123.356371, 48.77803], [-123.363669, 48.785986], [-123.380221, 48.79422], [-123.388024, 48.799629], [-123.390252, 48.801078], [-123.397962, 48.809357], [-123.408037, 48.821375], [-123.413031, 48.838081], [-123.41334, 48.845097], [-123.413417, 48.852932], [-123.408599, 48.872462], [-123.475611, 48.908602], [-123.501566, 48.922641], [-123.50637, 48.923601], [-123.525976, 48.923657], [-123.541093, 48.925532], [-123.552215, 48.92885], [-123.566506, 48.936359], [-123.582147, 48.944766], [-123.593529, 48.950554], [-123.604936, 48.954558], [-123.619259, 48.95783], [-123.611609, 48.941091], [-123.612407, 48.919133], [-123.625113, 48.889457], [-123.614466, 48.881783], [-123.602542, 48.871626], [-123.59481, 48.865145], [-123.577399, 48.846023], [-123.576282, 48.836957], [-123.57516, 48.820305], [-123.569388, 48.813001], [-123.559159, 48.804596], [-123.556698, 48.797734], [-123.556585, 48.789432], [-123.553484, 48.783721], [-123.552905, 48.778415], [-123.552894, 48.778248], [-123.565474, 48.772698], [-123.570845, 48.766241], [-123.565039, 48.754156], [-123.546746, 48.737589], [-123.539298, 48.730348], [-123.533907, 48.725788], [-123.532332, 48.724329], [-123.520965, 48.713143], [-123.51952, 48.711181], [-123.512838, 48.701608], [-123.511051, 48.695377], [-123.499571, 48.700284], [-123.460155, 48.713153], [-123.454461, 48.714715], [-123.449458, 48.714737], [-123.434189, 48.714664], [-123.418062, 48.714751], [-123.413146, 48.718436], [-123.369219, 48.75009]]]]}, "properties": {"name": "Saltspring Island", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Saltspring Island", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917027", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.568406, 49.018257], [-123.587582, 49.014546], [-123.591732, 49.013636], [-123.601449, 49.005243], [-123.605467, 49.001888], [-123.612417, 48.989046], [-123.62652, 48.984127], [-123.630038, 48.981904], [-123.623277, 48.966491], [-123.619259, 48.95783], [-123.604936, 48.954558], [-123.593529, 48.950554], [-123.582147, 48.944766], [-123.566506, 48.936359], [-123.552215, 48.92885], [-123.541093, 48.925532], [-123.525976, 48.923657], [-123.50637, 48.923601], [-123.501566, 48.922641], [-123.475611, 48.908602], [-123.408599, 48.872462], [-123.413417, 48.852932], [-123.41334, 48.845097], [-123.413031, 48.838081], [-123.408037, 48.821375], [-123.397962, 48.809357], [-123.390252, 48.801078], [-123.388024, 48.799629], [-123.380221, 48.79422], [-123.363669, 48.785986], [-123.356371, 48.77803], [-123.362761, 48.764364], [-123.369219, 48.75009], [-123.413146, 48.718436], [-123.418062, 48.714751], [-123.434189, 48.714664], [-123.449458, 48.714737], [-123.454461, 48.714715], [-123.460155, 48.713153], [-123.499571, 48.700284], [-123.511051, 48.695377], [-123.5107, 48.693018], [-123.510444, 48.690523], [-123.508431, 48.679352], [-123.505587, 48.664322], [-123.499985, 48.637942], [-123.500017, 48.575595], [-123.490563, 48.581062], [-123.483394, 48.581455], [-123.475021, 48.579852], [-123.478704, 48.590621], [-123.483892, 48.603804], [-123.481376, 48.61333], [-123.48246, 48.619779], [-123.482954, 48.624048], [-123.482594, 48.629515], [-123.482201, 48.630979], [-123.480616, 48.635462], [-123.478874, 48.638262], [-123.475146, 48.642283], [-123.471552, 48.644678], [-123.46675, 48.64684], [-123.461813, 48.648432], [-123.456786, 48.650575], [-123.451535, 48.653025], [-123.447254, 48.654495], [-123.447521, 48.65535], [-123.44827, 48.655912], [-123.467716, 48.661179], [-123.474452, 48.658196], [-123.489862, 48.671192], [-123.489802, 48.673518], [-123.489181, 48.681069], [-123.489277, 48.68323], [-123.489311, 48.687844], [-123.489138, 48.691385], [-123.486782, 48.69269], [-123.479807, 48.696919], [-123.46631, 48.69799], [-123.457855, 48.699107], [-123.445976, 48.700305], [-123.444239, 48.700198], [-123.434499, 48.698981], [-123.425162, 48.697431], [-123.421638, 48.694968], [-123.400639, 48.690546], [-123.399097, 48.68514], [-123.397976, 48.682273], [-123.397594, 48.680971], [-123.395527, 48.678058], [-123.39386, 48.674559], [-123.393682, 48.67327], [-123.39446, 48.672711], [-123.395889, 48.672418], [-123.397478, 48.672613], [-123.402055, 48.672323], [-123.404791, 48.672563], [-123.407374, 48.672173], [-123.407041, 48.671927], [-123.40177, 48.671366], [-123.399652, 48.671718], [-123.394658, 48.670181], [-123.393326, 48.669328], [-123.392997, 48.667835], [-123.393283, 48.665844], [-123.393002, 48.665394], [-123.39056, 48.664794], [-123.388637, 48.663377], [-123.38837, 48.662111], [-123.390006, 48.656594], [-123.391865, 48.655068], [-123.392144, 48.653564], [-123.391997, 48.653039], [-123.389636, 48.648963], [-123.389346, 48.648217], [-123.389607, 48.645945], [-123.391157, 48.644338], [-123.402044, 48.633975], [-123.401421, 48.630083], [-123.400322, 48.622134], [-123.395159, 48.61401], [-123.369214, 48.600321], [-123.369279, 48.582576], [-123.36182, 48.574294], [-123.35984, 48.550525], [-123.359555, 48.549119], [-123.357879, 48.546711], [-123.360844, 48.542538], [-123.363758, 48.537709], [-123.364326, 48.526044], [-123.364819, 48.520265], [-123.364153, 48.519514], [-123.360731, 48.513647], [-123.357634, 48.511914], [-123.355186, 48.510403], [-123.348595, 48.506762], [-123.343509, 48.503808], [-123.343248, 48.503602], [-123.26988, 48.503447], [-123.189011, 48.502837], [-123.200291, 48.520081], [-123.210513, 48.535923], [-123.210446, 48.536193], [-123.217972, 48.547451], [-123.225014, 48.567904], [-123.236377, 48.599504], [-123.246873, 48.631124], [-123.250656, 48.641937], [-123.257746, 48.663124], [-123.268365, 48.693569], [-123.264432, 48.695009], [-123.20612, 48.7116], [-123.148192, 48.728161], [-123.090212, 48.744512], [-123.070292, 48.750051], [-123.069217, 48.75005], [-123.008492, 48.7671], [-123.008489, 48.831214], [-123.085261, 48.872933], [-123.318555, 49.000066], [-123.357125, 49.002785], [-123.401604, 49.004407], [-123.505991, 49.010874], [-123.528797, 49.014145], [-123.568406, 49.018257]], [[-123.584694, 49.011566], [-123.584039, 49.011307], [-123.583971, 49.011352], [-123.583949, 49.011739], [-123.5838, 49.011803], [-123.583689, 49.011776], [-123.583523, 49.011651], [-123.583091, 49.010933], [-123.583234, 49.002492], [-123.585319, 49.002268], [-123.588325, 49.002201], [-123.588389, 49.002502], [-123.588013, 49.002678], [-123.587589, 49.002707], [-123.587509, 49.002779], [-123.587461, 49.003365], [-123.5872, 49.004473], [-123.587133, 49.004652], [-123.586878, 49.004933], [-123.586795, 49.004941], [-123.586519, 49.004755], [-123.586299, 49.004504], [-123.586039, 49.004559], [-123.585929, 49.004532], [-123.585612, 49.004309], [-123.585299, 49.004337], [-123.585121, 49.004401], [-123.585027, 49.00451], [-123.585585, 49.005578], [-123.586235, 49.006231], [-123.58721, 49.007728], [-123.587505, 49.008338], [-123.587607, 49.008878], [-123.587734, 49.009103], [-123.587708, 49.009209], [-123.587282, 49.009023], [-123.58709, 49.009043], [-123.586874, 49.009313], [-123.586724, 49.009313], [-123.586034, 49.008822], [-123.585146, 49.007667], [-123.58482, 49.007605], [-123.584696, 49.007787], [-123.585171, 49.008657], [-123.585764, 49.010318], [-123.584694, 49.010319], [-123.584694, 49.011566]]]]}, "properties": {"name": "Southern Gulf Islands", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Southern Gulf Islands", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917029", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.28924, 48.436692], [-123.288337, 48.437947], [-123.286933, 48.449629], [-123.294596, 48.453659], [-123.298633, 48.455875], [-123.299527, 48.456318], [-123.299757, 48.456325], [-123.300497, 48.456648], [-123.300442, 48.456828], [-123.302394, 48.457718], [-123.307031, 48.460512], [-123.308902, 48.461396], [-123.312464, 48.463403], [-123.317507, 48.465636], [-123.320562, 48.46722], [-123.320899, 48.461404], [-123.32102, 48.457645], [-123.321202, 48.455512], [-123.321522, 48.453612], [-123.321734, 48.449885], [-123.321507, 48.44859], [-123.3214, 48.447293], [-123.321721, 48.446855], [-123.321778, 48.446497], [-123.322648, 48.427267], [-123.322882, 48.425028], [-123.322915, 48.421356], [-123.322695, 48.420299], [-123.323101, 48.418549], [-123.323161, 48.415579], [-123.323324, 48.415029], [-123.323482, 48.413178], [-123.326089, 48.413401], [-123.327425, 48.413227], [-123.326534, 48.411944], [-123.326676, 48.411236], [-123.326504, 48.409634], [-123.326744, 48.407388], [-123.321437, 48.405168], [-123.31557, 48.406012], [-123.311281, 48.394627], [-123.303943, 48.391247], [-123.30057, 48.393237], [-123.295446, 48.410563], [-123.293117, 48.41124], [-123.293621, 48.41965], [-123.297571, 48.423038], [-123.297954, 48.423747], [-123.296973, 48.425772], [-123.294253, 48.432619], [-123.293414, 48.43493], [-123.291188, 48.435439], [-123.28924, 48.436692]]]]}, "properties": {"name": "Oak Bay", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Oak Bay", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917030", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.322355, 48.433542], [-123.323884, 48.433368], [-123.329192, 48.433644], [-123.328117, 48.438771], [-123.332542, 48.43898], [-123.333008, 48.438945], [-123.332597, 48.439984], [-123.332475, 48.448144], [-123.340312, 48.448245], [-123.348144, 48.448443], [-123.348092, 48.450478], [-123.350484, 48.450204], [-123.351031, 48.450229], [-123.351182, 48.450329], [-123.35231, 48.450018], [-123.360541, 48.449125], [-123.376846, 48.447224], [-123.379624, 48.446959], [-123.384629, 48.44945], [-123.386854, 48.447422], [-123.390479, 48.443909], [-123.391161, 48.443317], [-123.391472, 48.442944], [-123.392822, 48.441932], [-123.393999, 48.439804], [-123.393066, 48.439477], [-123.394166, 48.435487], [-123.39431, 48.432946], [-123.39423, 48.428693], [-123.390288, 48.425517], [-123.388385, 48.42413], [-123.394214, 48.414349], [-123.395154, 48.41132], [-123.385032, 48.414118], [-123.383261, 48.414666], [-123.38173, 48.413698], [-123.380835, 48.413313], [-123.379017, 48.412375], [-123.377915, 48.411235], [-123.377914, 48.411129], [-123.378251, 48.411019], [-123.378344, 48.410929], [-123.378451, 48.410623], [-123.378287, 48.410434], [-123.377582, 48.409986], [-123.377309, 48.409673], [-123.376834, 48.409575], [-123.376618, 48.409432], [-123.376536, 48.409261], [-123.373778, 48.409036], [-123.372629, 48.409085], [-123.371965, 48.408944], [-123.371355, 48.408595], [-123.371003, 48.408478], [-123.370408, 48.408373], [-123.369799, 48.408347], [-123.36953, 48.408276], [-123.36934, 48.408313], [-123.369166, 48.408457], [-123.36899, 48.408494], [-123.368529, 48.408289], [-123.367731, 48.408121], [-123.367406, 48.407968], [-123.367013, 48.408059], [-123.366568, 48.408007], [-123.366444, 48.407765], [-123.366213, 48.407658], [-123.366022, 48.407424], [-123.365873, 48.40737], [-123.365644, 48.407461], [-123.365565, 48.407651], [-123.36539, 48.407696], [-123.365119, 48.407625], [-123.364834, 48.407437], [-123.364778, 48.407248], [-123.365127, 48.407058], [-123.365219, 48.406689], [-123.364988, 48.406491], [-123.364651, 48.406393], [-123.364355, 48.406449], [-123.364127, 48.406792], [-123.363576, 48.407099], [-123.362685, 48.40729], [-123.361508, 48.407285], [-123.360145, 48.407389], [-123.359105, 48.407391], [-123.356874, 48.407273], [-123.355644, 48.407078], [-123.353545, 48.406429], [-123.351905, 48.405776], [-123.350914, 48.405249], [-123.350398, 48.404836], [-123.350017, 48.404352], [-123.349893, 48.404037], [-123.349766, 48.403246], [-123.349548, 48.403022], [-123.349398, 48.402959], [-123.348913, 48.402898], [-123.348589, 48.403087], [-123.348336, 48.403475], [-123.348323, 48.40361], [-123.348527, 48.403942], [-123.349003, 48.404355], [-123.34914, 48.40467], [-123.349128, 48.404949], [-123.348944, 48.405524], [-123.349135, 48.405839], [-123.349164, 48.406046], [-123.348586, 48.40647], [-123.34553, 48.408324], [-123.344075, 48.408985], [-123.342121, 48.409747], [-123.340827, 48.41011], [-123.33941, 48.410294], [-123.338613, 48.410332], [-123.337856, 48.410263], [-123.337502, 48.410174], [-123.336907, 48.40987], [-123.33654, 48.409529], [-123.336322, 48.409502], [-123.336051, 48.409368], [-123.336022, 48.409045], [-123.33636, 48.408828], [-123.33621, 48.408747], [-123.334774, 48.408347], [-123.333572, 48.40826], [-123.332908, 48.408109], [-123.331923, 48.408131], [-123.330587, 48.408448], [-123.330034, 48.408793], [-123.329671, 48.409126], [-123.329526, 48.409585], [-123.329933, 48.409954], [-123.330205, 48.410006], [-123.330572, 48.410338], [-123.330534, 48.410743], [-123.330063, 48.411131], [-123.329605, 48.411366], [-123.328459, 48.411594], [-123.327715, 48.411534], [-123.326674, 48.411246], [-123.326534, 48.411944], [-123.327425, 48.413227], [-123.326089, 48.413401], [-123.323482, 48.413178], [-123.323324, 48.415029], [-123.323161, 48.415579], [-123.323101, 48.418549], [-123.322695, 48.420299], [-123.322915, 48.421356], [-123.322882, 48.425028], [-123.322648, 48.427267], [-123.322355, 48.433542]]]]}, "properties": {"name": "Victoria", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Victoria", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917034", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.407197, 48.448531], [-123.409631, 48.449528], [-123.410623, 48.449731], [-123.411118, 48.449821], [-123.412961, 48.449612], [-123.413875, 48.449913], [-123.414906, 48.450626], [-123.41668, 48.451084], [-123.418593, 48.451961], [-123.420214, 48.452166], [-123.421007, 48.452047], [-123.422208, 48.451628], [-123.423156, 48.452051], [-123.424467, 48.451276], [-123.42475, 48.451032], [-123.423648, 48.450451], [-123.42279, 48.450171], [-123.42087, 48.449784], [-123.420577, 48.449655], [-123.419245, 48.44868], [-123.418902, 48.448539], [-123.418349, 48.448422], [-123.417379, 48.44833], [-123.414276, 48.447472], [-123.412355, 48.446591], [-123.414453, 48.445838], [-123.415354, 48.445771], [-123.415975, 48.445248], [-123.421632, 48.443273], [-123.426982, 48.441126], [-123.430538, 48.439563], [-123.431613, 48.439395], [-123.431773, 48.439322], [-123.431986, 48.439459], [-123.433256, 48.439099], [-123.436595, 48.437764], [-123.440431, 48.435979], [-123.442485, 48.433105], [-123.44149, 48.427587], [-123.432777, 48.421706], [-123.420274, 48.413474], [-123.412776, 48.413772], [-123.394214, 48.414349], [-123.388385, 48.42413], [-123.390288, 48.425517], [-123.39423, 48.428693], [-123.39431, 48.432946], [-123.394166, 48.435487], [-123.393066, 48.439477], [-123.393999, 48.439804], [-123.392822, 48.441932], [-123.391939, 48.44259], [-123.394556, 48.443746], [-123.395315, 48.443829], [-123.397754, 48.445336], [-123.399425, 48.446094], [-123.400433, 48.446429], [-123.400976, 48.446502], [-123.403111, 48.447163], [-123.407197, 48.448531]]]]}, "properties": {"name": "Esquimalt - District municipality", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Esquimalt - District municipality", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917040", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.495061, 48.44464], [-123.496871, 48.444476], [-123.496908, 48.444322], [-123.4981, 48.443394], [-123.499383, 48.442688], [-123.499839, 48.442568], [-123.499454, 48.442506], [-123.498932, 48.442241], [-123.499613, 48.442122], [-123.501228, 48.441262], [-123.500919, 48.441192], [-123.502012, 48.440777], [-123.502395, 48.440227], [-123.50249, 48.439972], [-123.501344, 48.439859], [-123.502074, 48.438798], [-123.502043, 48.438265], [-123.503237, 48.438059], [-123.503496, 48.437915], [-123.504484, 48.437657], [-123.514179, 48.435839], [-123.515225, 48.433917], [-123.517588, 48.430186], [-123.511384, 48.428674], [-123.51165, 48.428433], [-123.512611, 48.425511], [-123.514766, 48.421597], [-123.514473, 48.421172], [-123.514421, 48.420973], [-123.514718, 48.420681], [-123.514853, 48.420213], [-123.514816, 48.419765], [-123.51514, 48.418795], [-123.515684, 48.418286], [-123.515704, 48.417541], [-123.515346, 48.417647], [-123.515124, 48.417606], [-123.514934, 48.417492], [-123.514279, 48.417823], [-123.51384, 48.417724], [-123.513789, 48.417333], [-123.512556, 48.416475], [-123.511319, 48.415279], [-123.511298, 48.414692], [-123.511197, 48.414595], [-123.511696, 48.413292], [-123.511934, 48.41297], [-123.512847, 48.413054], [-123.5139, 48.410512], [-123.518027, 48.402756], [-123.501708, 48.398963], [-123.498434, 48.3983], [-123.496112, 48.398493], [-123.496009, 48.398322], [-123.495653, 48.398092], [-123.494554, 48.39817], [-123.49206, 48.398855], [-123.491143, 48.399248], [-123.490122, 48.399934], [-123.488934, 48.400465], [-123.48829, 48.400916], [-123.487239, 48.40076], [-123.486529, 48.400483], [-123.48143, 48.399347], [-123.476491, 48.406268], [-123.469001, 48.414911], [-123.457029, 48.426206], [-123.455831, 48.426841], [-123.452648, 48.427652], [-123.450408, 48.427643], [-123.447696, 48.427292], [-123.446202, 48.427302], [-123.444033, 48.427749], [-123.442971, 48.428834], [-123.442023, 48.430816], [-123.442887, 48.431304], [-123.444004, 48.432488], [-123.444421, 48.43326], [-123.444232, 48.434179], [-123.442255, 48.437905], [-123.442846, 48.438862], [-123.446225, 48.440384], [-123.446333, 48.441581], [-123.443682, 48.444328], [-123.443391, 48.446054], [-123.44391, 48.447609], [-123.444971, 48.449136], [-123.446688, 48.450899], [-123.447187, 48.451278], [-123.449091, 48.45193], [-123.44983, 48.45364], [-123.450467, 48.454623], [-123.451741, 48.455395], [-123.456102, 48.453848], [-123.462413, 48.451213], [-123.461487, 48.450511], [-123.462054, 48.450383], [-123.464203, 48.450735], [-123.464659, 48.449973], [-123.465636, 48.449778], [-123.468481, 48.447555], [-123.468651, 48.447802], [-123.468086, 48.449151], [-123.468465, 48.448985], [-123.468744, 48.448606], [-123.468933, 48.44847], [-123.469458, 48.448289], [-123.469631, 48.447991], [-123.469721, 48.447558], [-123.470031, 48.44735], [-123.470219, 48.447305], [-123.470885, 48.447419], [-123.471313, 48.447111], [-123.471855, 48.447037], [-123.472287, 48.447161], [-123.472615, 48.447474], [-123.473778, 48.447443], [-123.474642, 48.447349], [-123.475978, 48.447047], [-123.476503, 48.446739], [-123.476918, 48.446315], [-123.4772, 48.446197], [-123.477972, 48.446265], [-123.478121, 48.446355], [-123.47833, 48.446795], [-123.478818, 48.447399], [-123.47971, 48.447426], [-123.48007, 48.446515], [-123.480734, 48.445268], [-123.486559, 48.446217], [-123.486654, 48.445648], [-123.487039, 48.445423], [-123.486827, 48.444994], [-123.487126, 48.444555], [-123.487692, 48.444799], [-123.490543, 48.44553], [-123.490531, 48.44565], [-123.491208, 48.445628], [-123.491457, 48.4457], [-123.49144, 48.44605], [-123.491732, 48.446012], [-123.491635, 48.445625], [-123.493832, 48.445088], [-123.495061, 48.44464]]]]}, "properties": {"name": "Colwood", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Colwood", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917041", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.645592, 48.424355], [-123.644797, 48.41448], [-123.6446, 48.410683], [-123.638638, 48.408224], [-123.61927, 48.398932], [-123.617455, 48.398343], [-123.617184, 48.397883], [-123.616315, 48.398055], [-123.613367, 48.397113], [-123.615636, 48.394336], [-123.596829, 48.38725], [-123.598662, 48.385187], [-123.609823, 48.370822], [-123.597541, 48.36645], [-123.601986, 48.360904], [-123.613284, 48.345972], [-123.612275, 48.345917], [-123.604264, 48.342332], [-123.603194, 48.342845], [-123.596435, 48.349385], [-123.588305, 48.347047], [-123.586132, 48.34637], [-123.572483, 48.341149], [-123.574954, 48.33804], [-123.588705, 48.342427], [-123.588525, 48.342363], [-123.588457, 48.342257], [-123.588586, 48.341878], [-123.588608, 48.341338], [-123.58839, 48.341186], [-123.587728, 48.341153], [-123.587578, 48.341073], [-123.587521, 48.340858], [-123.587963, 48.340486], [-123.588688, 48.340221], [-123.589116, 48.339932], [-123.589407, 48.339256], [-123.589739, 48.33875], [-123.589652, 48.337194], [-123.589157, 48.336333], [-123.589071, 48.336036], [-123.589112, 48.335919], [-123.589539, 48.335503], [-123.58993, 48.33541], [-123.590387, 48.335463], [-123.590562, 48.335318], [-123.590897, 48.335181], [-123.59154, 48.334683], [-123.591685, 48.334449], [-123.59172, 48.333935], [-123.591852, 48.333764], [-123.591864, 48.333575], [-123.591755, 48.333395], [-123.591455, 48.333263], [-123.591494, 48.333046], [-123.591397, 48.332867], [-123.591407, 48.332623], [-123.59179, 48.331876], [-123.592328, 48.331675], [-123.592982, 48.331131], [-123.592951, 48.330799], [-123.59276, 48.330638], [-123.592678, 48.330448], [-123.592687, 48.330044], [-123.592499, 48.330063], [-123.592202, 48.330262], [-123.592055, 48.330209], [-123.592026, 48.330084], [-123.592574, 48.32955], [-123.592571, 48.329316], [-123.592434, 48.329172], [-123.59246, 48.32911], [-123.592701, 48.329027], [-123.592877, 48.32909], [-123.592958, 48.329061], [-123.593024, 48.328863], [-123.592777, 48.328487], [-123.592399, 48.328551], [-123.592152, 48.32823], [-123.591637, 48.328052], [-123.591675, 48.327836], [-123.591918, 48.3277], [-123.592526, 48.327778], [-123.593159, 48.327747], [-123.593599, 48.327367], [-123.593951, 48.327392], [-123.594258, 48.327076], [-123.594351, 48.327066], [-123.594624, 48.3273], [-123.594881, 48.327253], [-123.594983, 48.326919], [-123.595185, 48.326801], [-123.595182, 48.326612], [-123.594933, 48.326019], [-123.594702, 48.325912], [-123.594634, 48.325806], [-123.594632, 48.325652], [-123.594831, 48.325435], [-123.5951, 48.325353], [-123.595424, 48.325334], [-123.595519, 48.325351], [-123.595576, 48.325539], [-123.595657, 48.325558], [-123.59602, 48.325421], [-123.595921, 48.325169], [-123.596216, 48.325005], [-123.596229, 48.324943], [-123.596052, 48.3247], [-123.595887, 48.324629], [-123.595859, 48.324494], [-123.596369, 48.324151], [-123.596892, 48.323904], [-123.596959, 48.32394], [-123.59691, 48.32421], [-123.596978, 48.324238], [-123.597365, 48.324091], [-123.597606, 48.32381], [-123.597321, 48.323668], [-123.597347, 48.323605], [-123.597427, 48.323568], [-123.597712, 48.323594], [-123.597765, 48.32355], [-123.597829, 48.323243], [-123.597973, 48.323026], [-123.597892, 48.322927], [-123.597958, 48.322828], [-123.598309, 48.322799], [-123.598431, 48.32288], [-123.598514, 48.32305], [-123.59834, 48.323186], [-123.598301, 48.323322], [-123.598316, 48.323384], [-123.598465, 48.323437], [-123.59895, 48.323345], [-123.599069, 48.323174], [-123.599524, 48.322856], [-123.599535, 48.322739], [-123.599454, 48.322695], [-123.599171, 48.322714], [-123.599021, 48.322625], [-123.598818, 48.322617], [-123.598792, 48.322563], [-123.5989, 48.322481], [-123.599452, 48.322416], [-123.599705, 48.322244], [-123.599731, 48.322046], [-123.599607, 48.321956], [-123.599433, 48.321957], [-123.599003, 48.32214], [-123.598827, 48.322158], [-123.598555, 48.321997], [-123.598501, 48.321863], [-123.598566, 48.321682], [-123.599349, 48.32167], [-123.599481, 48.321579], [-123.599547, 48.321389], [-123.600044, 48.321242], [-123.600296, 48.320918], [-123.600471, 48.320889], [-123.600688, 48.320969], [-123.600944, 48.320824], [-123.601275, 48.320372], [-123.601744, 48.320173], [-123.60192, 48.32018], [-123.602287, 48.320304], [-123.602555, 48.320285], [-123.602756, 48.320132], [-123.602932, 48.32013], [-123.603104, 48.319914], [-123.603426, 48.319795], [-123.603465, 48.319731], [-123.60341, 48.319625], [-123.603047, 48.31959], [-123.602909, 48.319357], [-123.602693, 48.319348], [-123.602692, 48.319286], [-123.602932, 48.319086], [-123.602931, 48.319015], [-123.602769, 48.318971], [-123.602528, 48.319035], [-123.602162, 48.319019], [-123.60192, 48.319073], [-123.601524, 48.319805], [-123.601376, 48.319868], [-123.601214, 48.319834], [-123.601185, 48.31959], [-123.601387, 48.319455], [-123.60141, 48.31932], [-123.601315, 48.319149], [-123.601433, 48.318932], [-123.601083, 48.318854], [-123.600637, 48.318891], [-123.600447, 48.318857], [-123.600216, 48.318696], [-123.600283, 48.318588], [-123.600685, 48.318424], [-123.600872, 48.318116], [-123.601019, 48.318044], [-123.600963, 48.317829], [-123.60077, 48.317595], [-123.600889, 48.317343], [-123.600833, 48.317208], [-123.600684, 48.317136], [-123.600374, 48.317166], [-123.600148, 48.317391], [-123.600053, 48.317393], [-123.600064, 48.317249], [-123.599957, 48.317132], [-123.599616, 48.31699], [-123.599251, 48.316928], [-123.599101, 48.316768], [-123.599044, 48.316507], [-123.598868, 48.316364], [-123.598892, 48.316139], [-123.599172, 48.315805], [-123.599889, 48.315998], [-123.600345, 48.315889], [-123.600765, 48.316003], [-123.60125, 48.315983], [-123.60152, 48.315909], [-123.601609, 48.315486], [-123.601537, 48.315063], [-123.601453, 48.314964], [-123.601088, 48.314732], [-123.600316, 48.314522], [-123.598578, 48.314674], [-123.598323, 48.314784], [-123.598298, 48.314999], [-123.598409, 48.315143], [-123.59887, 48.315456], [-123.598925, 48.315571], [-123.598702, 48.316004], [-123.598461, 48.316204], [-123.597639, 48.316335], [-123.597706, 48.316172], [-123.597556, 48.316118], [-123.597368, 48.316201], [-123.597152, 48.316211], [-123.597086, 48.316265], [-123.597088, 48.316463], [-123.597007, 48.316481], [-123.596466, 48.316322], [-123.596265, 48.316359], [-123.596287, 48.316054], [-123.596049, 48.315912], [-123.599086, 48.314054], [-123.597135, 48.313563], [-123.591489, 48.308588], [-123.589313, 48.307982], [-123.586727, 48.307661], [-123.585384, 48.307577], [-123.579623, 48.310333], [-123.575919, 48.311061], [-123.573876, 48.310961], [-123.571885, 48.310394], [-123.566758, 48.307209], [-123.56401, 48.306398], [-123.561432, 48.306502], [-123.557528, 48.307788], [-123.555381, 48.30816], [-123.553219, 48.307987], [-123.551873, 48.307729], [-123.549153, 48.30685], [-123.54699, 48.306677], [-123.545097, 48.307044], [-123.536757, 48.310606], [-123.534356, 48.312509], [-123.533016, 48.314403], [-123.532899, 48.316122], [-123.533572, 48.317371], [-123.536328, 48.319244], [-123.537106, 48.321026], [-123.536839, 48.322533], [-123.536178, 48.323704], [-123.536434, 48.325731], [-123.5371, 48.327556], [-123.539126, 48.328714], [-123.541383, 48.331043], [-123.542795, 48.33209], [-123.544602, 48.332608], [-123.547083, 48.333137], [-123.550272, 48.33524], [-123.55119, 48.337623], [-123.551053, 48.338132], [-123.550567, 48.33817], [-123.55013, 48.33806], [-123.545902, 48.335714], [-123.541838, 48.334932], [-123.537373, 48.334558], [-123.534132, 48.334722], [-123.532489, 48.335578], [-123.529794, 48.336462], [-123.523779, 48.340055], [-123.522859, 48.341411], [-123.522872, 48.342847], [-123.523985, 48.344622], [-123.525205, 48.345427], [-123.527075, 48.345789], [-123.53192, 48.345858], [-123.535024, 48.346534], [-123.536508, 48.347394], [-123.53859, 48.351232], [-123.539273, 48.352129], [-123.53978, 48.354157], [-123.53947, 48.354669], [-123.53187, 48.359356], [-123.528841, 48.362597], [-123.527024, 48.366136], [-123.525673, 48.367688], [-123.521253, 48.371615], [-123.518418, 48.374901], [-123.516929, 48.378655], [-123.511992, 48.38092], [-123.510888, 48.381346], [-123.509795, 48.381601], [-123.508458, 48.381386], [-123.507147, 48.380958], [-123.506024, 48.380144], [-123.505104, 48.379975], [-123.504039, 48.380221], [-123.502629, 48.3809], [-123.500558, 48.382827], [-123.49899, 48.383128], [-123.497938, 48.383627], [-123.491212, 48.382214], [-123.483716, 48.381513], [-123.480616, 48.381889], [-123.472926, 48.384709], [-123.472686, 48.387149], [-123.472906, 48.389268], [-123.474437, 48.392405], [-123.476757, 48.393433], [-123.481802, 48.394046], [-123.483047, 48.395749], [-123.48143, 48.399347], [-123.486529, 48.400483], [-123.487239, 48.40076], [-123.48829, 48.400916], [-123.488934, 48.400465], [-123.490122, 48.399934], [-123.491143, 48.399248], [-123.49206, 48.398855], [-123.493628, 48.398393], [-123.494554, 48.39817], [-123.495653, 48.398092], [-123.496009, 48.398322], [-123.496112, 48.398493], [-123.498434, 48.3983], [-123.501708, 48.398963], [-123.518027, 48.402756], [-123.525217, 48.404572], [-123.52892, 48.407002], [-123.52909, 48.406707], [-123.532657, 48.406392], [-123.533553, 48.406539], [-123.534497, 48.406862], [-123.535507, 48.406995], [-123.536065, 48.407135], [-123.538082, 48.407899], [-123.539567, 48.408328], [-123.539908, 48.408559], [-123.540166, 48.40919], [-123.543552, 48.409215], [-123.544902, 48.409404], [-123.545484, 48.408091], [-123.556417, 48.410674], [-123.557185, 48.411353], [-123.557542, 48.411801], [-123.558083, 48.41304], [-123.559122, 48.414232], [-123.559249, 48.414735], [-123.559868, 48.415649], [-123.560034, 48.416035], [-123.560662, 48.416555], [-123.560854, 48.416859], [-123.561235, 48.417136], [-123.562212, 48.417473], [-123.562659, 48.417525], [-123.563956, 48.417519], [-123.564391, 48.417741], [-123.563314, 48.419456], [-123.566376, 48.420424], [-123.564748, 48.422859], [-123.5715, 48.424726], [-123.572925, 48.425436], [-123.575233, 48.42597], [-123.580484, 48.425721], [-123.580545, 48.4249], [-123.645592, 48.424355]]]]}, "properties": {"name": "Metchosin", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Metchosin", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917042", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.544498, 48.509288], [-123.548697, 48.50799], [-123.557084, 48.507834], [-123.557067, 48.507258], [-123.556818, 48.506188], [-123.556548, 48.505839], [-123.55541, 48.504794], [-123.555161, 48.504435], [-123.556888, 48.504464], [-123.556734, 48.50399], [-123.556761, 48.503563], [-123.556882, 48.503323], [-123.557402, 48.502735], [-123.557575, 48.502312], [-123.557402, 48.501404], [-123.55713, 48.497527], [-123.557327, 48.497068], [-123.557701, 48.496535], [-123.559366, 48.494518], [-123.559499, 48.494113], [-123.559354, 48.493688], [-123.558565, 48.492702], [-123.558356, 48.49216], [-123.558458, 48.491691], [-123.558945, 48.490874], [-123.559013, 48.490496], [-123.55898, 48.490286], [-123.558321, 48.488993], [-123.558151, 48.48822], [-123.558269, 48.486573], [-123.557931, 48.485324], [-123.558242, 48.484147], [-123.558143, 48.483783], [-123.557939, 48.48342], [-123.556808, 48.481901], [-123.556342, 48.481579], [-123.55525, 48.48101], [-123.553887, 48.479389], [-123.553081, 48.478242], [-123.552958, 48.477866], [-123.552971, 48.47745], [-123.553858, 48.47571], [-123.554174, 48.47479], [-123.55427, 48.474267], [-123.554484, 48.473776], [-123.554977, 48.473335], [-123.556815, 48.472555], [-123.557287, 48.472283], [-123.557527, 48.472075], [-123.557794, 48.471624], [-123.557856, 48.4712], [-123.557574, 48.470095], [-123.557302, 48.467704], [-123.557527, 48.467118], [-123.558116, 48.466602], [-123.560015, 48.465711], [-123.560878, 48.465446], [-123.561973, 48.465351], [-123.563404, 48.465492], [-123.564395, 48.465447], [-123.565123, 48.465263], [-123.566345, 48.464609], [-123.567034, 48.464354], [-123.571679, 48.463621], [-123.572231, 48.463447], [-123.572836, 48.463129], [-123.573335, 48.462708], [-123.573654, 48.46219], [-123.573775, 48.461641], [-123.573719, 48.461016], [-123.573224, 48.460265], [-123.572447, 48.45976], [-123.571619, 48.459464], [-123.570996, 48.459369], [-123.565067, 48.45902], [-123.563496, 48.458794], [-123.56264, 48.458501], [-123.561823, 48.458055], [-123.559846, 48.456562], [-123.558837, 48.455929], [-123.558205, 48.455653], [-123.559893, 48.453227], [-123.560202, 48.45267], [-123.562919, 48.445891], [-123.561631, 48.445416], [-123.563765, 48.442202], [-123.56561, 48.439198], [-123.571451, 48.438627], [-123.571173, 48.432281], [-123.56939, 48.432359], [-123.569809, 48.431835], [-123.574623, 48.42703], [-123.57483, 48.425904], [-123.572925, 48.425436], [-123.5715, 48.424726], [-123.564748, 48.422859], [-123.566376, 48.420424], [-123.563314, 48.419456], [-123.564391, 48.417741], [-123.563956, 48.417519], [-123.562659, 48.417525], [-123.562212, 48.417473], [-123.561235, 48.417136], [-123.560854, 48.416859], [-123.560662, 48.416555], [-123.560034, 48.416035], [-123.559868, 48.415649], [-123.559249, 48.414735], [-123.559122, 48.414232], [-123.558083, 48.41304], [-123.557542, 48.411801], [-123.557185, 48.411353], [-123.556417, 48.410674], [-123.545484, 48.408091], [-123.544902, 48.409404], [-123.543552, 48.409215], [-123.540166, 48.40919], [-123.539908, 48.408559], [-123.539567, 48.408328], [-123.538082, 48.407899], [-123.536065, 48.407135], [-123.535507, 48.406995], [-123.534497, 48.406862], [-123.533553, 48.406539], [-123.532657, 48.406392], [-123.52909, 48.406707], [-123.52892, 48.407002], [-123.525217, 48.404572], [-123.518027, 48.402756], [-123.5139, 48.410512], [-123.512847, 48.413054], [-123.511934, 48.41297], [-123.511696, 48.413292], [-123.511197, 48.414595], [-123.511298, 48.414692], [-123.511319, 48.415279], [-123.512556, 48.416475], [-123.513789, 48.417333], [-123.51384, 48.417724], [-123.514279, 48.417823], [-123.514934, 48.417492], [-123.515124, 48.417606], [-123.515346, 48.417647], [-123.515704, 48.417541], [-123.515684, 48.418286], [-123.51514, 48.418795], [-123.514816, 48.419765], [-123.514853, 48.420213], [-123.514718, 48.420681], [-123.514421, 48.420973], [-123.514473, 48.421172], [-123.514766, 48.421597], [-123.512611, 48.425511], [-123.51165, 48.428433], [-123.511384, 48.428674], [-123.517588, 48.430186], [-123.515225, 48.433917], [-123.514179, 48.435839], [-123.504484, 48.437657], [-123.503496, 48.437915], [-123.503237, 48.438059], [-123.502043, 48.438265], [-123.502074, 48.438798], [-123.501344, 48.439859], [-123.50249, 48.439972], [-123.502395, 48.440227], [-123.502012, 48.440777], [-123.500919, 48.441192], [-123.501228, 48.441262], [-123.501042, 48.441383], [-123.499613, 48.442122], [-123.498932, 48.442241], [-123.499454, 48.442506], [-123.499839, 48.442568], [-123.499383, 48.442688], [-123.4981, 48.443394], [-123.496908, 48.444322], [-123.496871, 48.444476], [-123.495061, 48.44464], [-123.493832, 48.445088], [-123.491635, 48.445625], [-123.491732, 48.446012], [-123.49144, 48.44605], [-123.491457, 48.4457], [-123.491208, 48.445628], [-123.490531, 48.44565], [-123.490543, 48.44553], [-123.487692, 48.444799], [-123.487126, 48.444555], [-123.486827, 48.444994], [-123.487039, 48.445423], [-123.486654, 48.445648], [-123.486559, 48.446217], [-123.480734, 48.445268], [-123.48007, 48.446515], [-123.47971, 48.447426], [-123.478818, 48.447399], [-123.47833, 48.446795], [-123.478121, 48.446355], [-123.477972, 48.446265], [-123.477431, 48.446187], [-123.4772, 48.446197], [-123.476918, 48.446315], [-123.476503, 48.446739], [-123.475978, 48.447047], [-123.474642, 48.447349], [-123.473778, 48.447443], [-123.472615, 48.447474], [-123.472287, 48.447161], [-123.471855, 48.447037], [-123.471313, 48.447111], [-123.470885, 48.447419], [-123.470219, 48.447305], [-123.469829, 48.44745], [-123.469721, 48.447558], [-123.469631, 48.447991], [-123.469458, 48.448289], [-123.468933, 48.44847], [-123.468744, 48.448606], [-123.468465, 48.448985], [-123.468086, 48.449151], [-123.468048, 48.449602], [-123.468164, 48.449882], [-123.469028, 48.450976], [-123.470486, 48.451496], [-123.471419, 48.452795], [-123.480635, 48.462333], [-123.482922, 48.464345], [-123.484071, 48.465522], [-123.48421, 48.46545], [-123.484051, 48.468639], [-123.483252, 48.471185], [-123.484294, 48.472901], [-123.482863, 48.474637], [-123.497512, 48.4755], [-123.503535, 48.475582], [-123.503292, 48.47745], [-123.51048, 48.477092], [-123.510422, 48.476536], [-123.509377, 48.475466], [-123.510623, 48.475554], [-123.513096, 48.475208], [-123.51595, 48.474991], [-123.519043, 48.474978], [-123.520063, 48.475101], [-123.522643, 48.474999], [-123.524378, 48.474869], [-123.524693, 48.475157], [-123.524683, 48.478701], [-123.525701, 48.478761], [-123.526028, 48.478954], [-123.527216, 48.478869], [-123.534329, 48.478724], [-123.534655, 48.485941], [-123.531296, 48.485946], [-123.532502, 48.49429], [-123.533606, 48.498774], [-123.547028, 48.497247], [-123.550212, 48.497215], [-123.550652, 48.498128], [-123.550704, 48.499242], [-123.549548, 48.501537], [-123.548152, 48.502648], [-123.546525, 48.505778], [-123.544678, 48.507924], [-123.544498, 48.509288]], [[-123.547865, 48.485971], [-123.548195, 48.486364], [-123.54817, 48.486643], [-123.548339, 48.487109], [-123.545718, 48.48722], [-123.544578, 48.487061], [-123.545454, 48.486035], [-123.546199, 48.484694], [-123.546333, 48.484359], [-123.54638, 48.483551], [-123.54779, 48.4838], [-123.547695, 48.483928], [-123.547799, 48.484764], [-123.547882, 48.484881], [-123.548345, 48.485167], [-123.548276, 48.485186], [-123.547865, 48.485971]]]]}, "properties": {"name": "Langford", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Langford", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917044", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.474868, 48.497765], [-123.481331, 48.496144], [-123.4816, 48.494899], [-123.481682, 48.494896], [-123.481839, 48.494205], [-123.482723, 48.489724], [-123.483061, 48.489965], [-123.483259, 48.490014], [-123.483998, 48.489791], [-123.484875, 48.489337], [-123.485301, 48.489557], [-123.485658, 48.48953], [-123.486479, 48.489347], [-123.486921, 48.489151], [-123.487457, 48.48878], [-123.488178, 48.48846], [-123.49048, 48.488574], [-123.490799, 48.488417], [-123.493352, 48.488519], [-123.494857, 48.489012], [-123.49721, 48.489678], [-123.49718, 48.482011], [-123.497512, 48.4755], [-123.482863, 48.474637], [-123.484294, 48.472901], [-123.483252, 48.471185], [-123.484051, 48.468639], [-123.48421, 48.46545], [-123.484071, 48.465522], [-123.482922, 48.464345], [-123.480635, 48.462333], [-123.471419, 48.452795], [-123.470486, 48.451496], [-123.469028, 48.450976], [-123.468164, 48.449882], [-123.468048, 48.449602], [-123.468082, 48.449161], [-123.468651, 48.447802], [-123.468481, 48.447555], [-123.465636, 48.449778], [-123.464659, 48.449973], [-123.464203, 48.450735], [-123.462054, 48.450383], [-123.461487, 48.450511], [-123.462413, 48.451213], [-123.456102, 48.453848], [-123.451741, 48.455395], [-123.450467, 48.454623], [-123.44983, 48.45364], [-123.449091, 48.45193], [-123.447187, 48.451278], [-123.446688, 48.450899], [-123.444971, 48.449136], [-123.44391, 48.447609], [-123.443391, 48.446054], [-123.443682, 48.444328], [-123.446333, 48.441581], [-123.446225, 48.440384], [-123.442846, 48.438862], [-123.442255, 48.437905], [-123.444232, 48.434179], [-123.444421, 48.43326], [-123.444004, 48.432488], [-123.442887, 48.431304], [-123.442023, 48.430816], [-123.442485, 48.433105], [-123.440431, 48.435979], [-123.436595, 48.437764], [-123.433256, 48.439099], [-123.431986, 48.439459], [-123.431894, 48.439424], [-123.431992, 48.439583], [-123.432385, 48.439788], [-123.432659, 48.440103], [-123.43414, 48.440862], [-123.434425, 48.440914], [-123.434545, 48.440886], [-123.434961, 48.440553], [-123.435421, 48.440416], [-123.435757, 48.440387], [-123.436315, 48.440528], [-123.436531, 48.440672], [-123.436533, 48.440897], [-123.436819, 48.441102], [-123.436808, 48.441417], [-123.436594, 48.441625], [-123.436216, 48.441582], [-123.435395, 48.442116], [-123.434801, 48.442316], [-123.434466, 48.442632], [-123.433994, 48.44276], [-123.433898, 48.442733], [-123.433788, 48.442356], [-123.433554, 48.442069], [-123.43327, 48.441917], [-123.432634, 48.441874], [-123.431633, 48.441923], [-123.431245, 48.44223], [-123.430816, 48.442799], [-123.430685, 48.443267], [-123.430856, 48.444239], [-123.430964, 48.444372], [-123.431278, 48.444542], [-123.431765, 48.444568], [-123.432075, 48.444485], [-123.432714, 48.444861], [-123.4332, 48.444841], [-123.433446, 48.445074], [-123.433543, 48.445317], [-123.4338, 48.445423], [-123.434017, 48.445423], [-123.434393, 48.445268], [-123.434708, 48.445546], [-123.434896, 48.445609], [-123.435641, 48.445587], [-123.435844, 48.445812], [-123.435984, 48.44619], [-123.43558, 48.446389], [-123.435297, 48.446389], [-123.434858, 48.446508], [-123.430425, 48.446222], [-123.430605, 48.446434], [-123.43042, 48.446492], [-123.426603, 48.446553], [-123.426399, 48.447075], [-123.426292, 48.448615], [-123.426079, 48.449381], [-123.42475, 48.451032], [-123.424467, 48.451276], [-123.423156, 48.452051], [-123.423888, 48.453621], [-123.423821, 48.454886], [-123.422256, 48.457062], [-123.420813, 48.458618], [-123.420655, 48.460145], [-123.421235, 48.460731], [-123.422301, 48.461377], [-123.421482, 48.463529], [-123.421329, 48.463594], [-123.421021, 48.464453], [-123.420288, 48.465767], [-123.418934, 48.469414], [-123.419891, 48.469634], [-123.420015, 48.469184], [-123.422942, 48.469341], [-123.423264, 48.467938], [-123.423547, 48.467781], [-123.424613, 48.469792], [-123.42684, 48.468758], [-123.427859, 48.470725], [-123.433675, 48.467679], [-123.435623, 48.466398], [-123.437186, 48.466122], [-123.437801, 48.466464], [-123.441553, 48.468101], [-123.44335, 48.468794], [-123.444282, 48.466375], [-123.449012, 48.468336], [-123.452261, 48.465436], [-123.453848, 48.464382], [-123.453931, 48.46467], [-123.453733, 48.465256], [-123.45375, 48.465643], [-123.45397, 48.465983], [-123.454556, 48.46644], [-123.454709, 48.466826], [-123.454686, 48.467348], [-123.454579, 48.467681], [-123.454111, 48.468115], [-123.454112, 48.468313], [-123.454588, 48.468608], [-123.454861, 48.468869], [-123.455015, 48.469407], [-123.45518, 48.469641], [-123.455156, 48.469982], [-123.455306, 48.470153], [-123.455919, 48.470682], [-123.456412, 48.471273], [-123.457037, 48.471622], [-123.457393, 48.472025], [-123.456481, 48.480618], [-123.456766, 48.491227], [-123.456503, 48.493506], [-123.457232, 48.493523], [-123.45798, 48.493735], [-123.459239, 48.493838], [-123.460029, 48.494314], [-123.460239, 48.494384], [-123.461371, 48.494362], [-123.462203, 48.494603], [-123.463169, 48.494712], [-123.463545, 48.494868], [-123.463803, 48.494609], [-123.463781, 48.494107], [-123.464047, 48.493669], [-123.470791, 48.495094], [-123.474868, 48.497765]]]]}, "properties": {"name": "View Royal", "province": "British Columbia", "rurality": "Urban 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "View Royal", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917047", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.538204, 48.548163], [-123.542329, 48.546402], [-123.543093, 48.542517], [-123.54334, 48.539907], [-123.543332, 48.538391], [-123.542892, 48.534465], [-123.542628, 48.532835], [-123.541786, 48.529403], [-123.540545, 48.527885], [-123.539601, 48.525265], [-123.539172, 48.522232], [-123.539509, 48.519718], [-123.540518, 48.515935], [-123.541334, 48.513581], [-123.543359, 48.510835], [-123.5435, 48.510099], [-123.543887, 48.50996], [-123.543843, 48.510177], [-123.544498, 48.509288], [-123.544678, 48.507924], [-123.546525, 48.505778], [-123.548152, 48.502648], [-123.549548, 48.501537], [-123.550704, 48.499242], [-123.550652, 48.498128], [-123.550212, 48.497215], [-123.547028, 48.497247], [-123.533606, 48.498774], [-123.532502, 48.49429], [-123.531296, 48.485946], [-123.534655, 48.485941], [-123.534329, 48.478724], [-123.527216, 48.478869], [-123.526028, 48.478954], [-123.525701, 48.478761], [-123.524683, 48.478701], [-123.524693, 48.475157], [-123.524378, 48.474869], [-123.522643, 48.474999], [-123.520063, 48.475101], [-123.519043, 48.474978], [-123.51595, 48.474991], [-123.513096, 48.475208], [-123.510623, 48.475554], [-123.509377, 48.475466], [-123.510422, 48.476536], [-123.51048, 48.477092], [-123.503292, 48.47745], [-123.503535, 48.475582], [-123.497512, 48.4755], [-123.49718, 48.482011], [-123.49721, 48.489678], [-123.494857, 48.489012], [-123.493352, 48.488519], [-123.490799, 48.488417], [-123.49048, 48.488574], [-123.488178, 48.48846], [-123.487457, 48.48878], [-123.486921, 48.489151], [-123.486479, 48.489347], [-123.485658, 48.48953], [-123.485301, 48.489557], [-123.484875, 48.489337], [-123.483998, 48.489791], [-123.483259, 48.490014], [-123.483061, 48.489965], [-123.482723, 48.489724], [-123.481839, 48.494205], [-123.481682, 48.494896], [-123.4816, 48.494899], [-123.481331, 48.496144], [-123.474868, 48.497765], [-123.470791, 48.495094], [-123.464047, 48.493669], [-123.463781, 48.494107], [-123.463803, 48.494609], [-123.463545, 48.494868], [-123.463169, 48.494712], [-123.462203, 48.494603], [-123.461371, 48.494362], [-123.460239, 48.494384], [-123.460029, 48.494314], [-123.459239, 48.493838], [-123.45798, 48.493735], [-123.457232, 48.493523], [-123.456503, 48.493506], [-123.456894, 48.497702], [-123.459084, 48.498629], [-123.458132, 48.503793], [-123.458301, 48.51467], [-123.461057, 48.514459], [-123.463455, 48.514393], [-123.463527, 48.522342], [-123.463612, 48.523168], [-123.47248, 48.522792], [-123.472766, 48.537325], [-123.477737, 48.537298], [-123.477786, 48.544144], [-123.488562, 48.54403], [-123.488501, 48.550223], [-123.488671, 48.550337], [-123.493335, 48.55021], [-123.493782, 48.558039], [-123.500068, 48.558405], [-123.505017, 48.558576], [-123.523609, 48.551688], [-123.538204, 48.548163]]]]}, "properties": {"name": "Highlands", "province": "British Columbia", "rurality": "Urban 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Highlands", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917049", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.739283, 48.474168], [-123.746181, 48.474017], [-123.746002, 48.4705], [-123.744852, 48.470494], [-123.744899, 48.466797], [-123.750272, 48.466822], [-123.74984, 48.460175], [-123.746843, 48.460194], [-123.746776, 48.457431], [-123.742508, 48.457336], [-123.742728, 48.450762], [-123.741505, 48.45073], [-123.741608, 48.442532], [-123.737418, 48.442612], [-123.737389, 48.441718], [-123.728726, 48.441889], [-123.728565, 48.438427], [-123.727098, 48.438376], [-123.72693, 48.431048], [-123.723877, 48.431038], [-123.723705, 48.427438], [-123.720948, 48.42759], [-123.718119, 48.428614], [-123.717444, 48.413004], [-123.728281, 48.412989], [-123.727904, 48.403191], [-123.727995, 48.40271], [-123.73179, 48.401451], [-123.738836, 48.399333], [-123.739214, 48.399316], [-123.739696, 48.399088], [-123.740157, 48.399148], [-123.740347, 48.399282], [-123.740775, 48.399809], [-123.741075, 48.400032], [-123.742798, 48.400479], [-123.743287, 48.400737], [-123.743871, 48.400932], [-123.74448, 48.400999], [-123.744806, 48.401133], [-123.746471, 48.401266], [-123.747052, 48.401388], [-123.747392, 48.401521], [-123.748061, 48.401591], [-123.748085, 48.39757], [-123.763574, 48.392842], [-123.759819, 48.387021], [-123.757572, 48.383795], [-123.754914, 48.3807], [-123.759754, 48.379564], [-123.769738, 48.376897], [-123.774037, 48.3833], [-123.769399, 48.384742], [-123.772724, 48.390408], [-123.778362, 48.388291], [-123.782577, 48.386633], [-123.780178, 48.381208], [-123.777747, 48.378952], [-123.775202, 48.375579], [-123.776215, 48.375336], [-123.779809, 48.374291], [-123.780046, 48.37472], [-123.784847, 48.373816], [-123.784014, 48.367211], [-123.783643, 48.366486], [-123.783032, 48.367025], [-123.782563, 48.367217], [-123.781944, 48.367392], [-123.781001, 48.367525], [-123.780141, 48.367818], [-123.779954, 48.367936], [-123.779598, 48.368514], [-123.779131, 48.368824], [-123.778552, 48.368972], [-123.776674, 48.368974], [-123.776575, 48.368785], [-123.776389, 48.366029], [-123.77446, 48.365943], [-123.772936, 48.365771], [-123.771285, 48.365957], [-123.770004, 48.366608], [-123.768237, 48.367405], [-123.767118, 48.367687], [-123.76649, 48.367603], [-123.765712, 48.367448], [-123.764297, 48.367026], [-123.762887, 48.366382], [-123.761681, 48.365071], [-123.758474, 48.361987], [-123.754797, 48.363423], [-123.753867, 48.364011], [-123.741205, 48.366249], [-123.739978, 48.362781], [-123.751172, 48.359438], [-123.752771, 48.358875], [-123.753644, 48.359196], [-123.757701, 48.357481], [-123.756581, 48.356805], [-123.755524, 48.356283], [-123.75432, 48.355836], [-123.752576, 48.35541], [-123.751303, 48.354651], [-123.750897, 48.354583], [-123.750042, 48.354682], [-123.749436, 48.354908], [-123.74893, 48.354897], [-123.745848, 48.353281], [-123.743756, 48.352317], [-123.741676, 48.351527], [-123.741132, 48.351568], [-123.740155, 48.351967], [-123.739312, 48.352197], [-123.73882, 48.352119], [-123.737225, 48.35149], [-123.735666, 48.351226], [-123.734664, 48.351155], [-123.732849, 48.351423], [-123.731682, 48.351813], [-123.729553, 48.352931], [-123.72885, 48.353099], [-123.727482, 48.353043], [-123.727036, 48.35312], [-123.725885, 48.353584], [-123.724071, 48.353824], [-123.722236, 48.35434], [-123.719539, 48.354848], [-123.718134, 48.355745], [-123.717344, 48.356028], [-123.717015, 48.356054], [-123.717484, 48.355138], [-123.717605, 48.354029], [-123.717593, 48.352858], [-123.717883, 48.351016], [-123.71897, 48.350167], [-123.720256, 48.349357], [-123.721937, 48.348535], [-123.722637, 48.347964], [-123.721771, 48.3463], [-123.720482, 48.345544], [-123.718944, 48.34503], [-123.717701, 48.344014], [-123.717254, 48.343415], [-123.716645, 48.342061], [-123.717037, 48.339753], [-123.716537, 48.338522], [-123.715266, 48.337571], [-123.714514, 48.337304], [-123.712191, 48.337022], [-123.710828, 48.337153], [-123.705226, 48.34158], [-123.705252, 48.350528], [-123.702398, 48.35238], [-123.702928, 48.352693], [-123.704555, 48.355963], [-123.705381, 48.355882], [-123.706418, 48.355894], [-123.706893, 48.355781], [-123.707576, 48.355724], [-123.710764, 48.357489], [-123.70772, 48.359767], [-123.715462, 48.362669], [-123.725704, 48.366414], [-123.722729, 48.368079], [-123.705048, 48.37676], [-123.702677, 48.376729], [-123.691215, 48.37709], [-123.685125, 48.37748], [-123.666376, 48.377985], [-123.664642, 48.377752], [-123.662305, 48.37715], [-123.659669, 48.376633], [-123.659031, 48.376596], [-123.657659, 48.376734], [-123.657018, 48.376653], [-123.656439, 48.376729], [-123.655035, 48.376745], [-123.652769, 48.37629], [-123.651757, 48.376208], [-123.650951, 48.37603], [-123.638838, 48.386251], [-123.635309, 48.385564], [-123.635118, 48.385336], [-123.634968, 48.385265], [-123.63498, 48.385148], [-123.634545, 48.384872], [-123.634811, 48.384518], [-123.634725, 48.384205], [-123.634536, 48.384151], [-123.634548, 48.384097], [-123.634924, 48.383879], [-123.634908, 48.383583], [-123.635024, 48.383277], [-123.635443, 48.383301], [-123.635577, 48.383156], [-123.635983, 48.383173], [-123.636075, 48.383073], [-123.636059, 48.382865], [-123.636206, 48.382694], [-123.636301, 48.382693], [-123.636697, 48.383025], [-123.63725, 48.382967], [-123.637193, 48.382851], [-123.637368, 48.382705], [-123.637582, 48.382596], [-123.637838, 48.38255], [-123.638105, 48.382378], [-123.638354, 48.381612], [-123.638133, 48.381207], [-123.637873, 48.381021], [-123.637332, 48.380897], [-123.636954, 48.380891], [-123.636764, 48.380918], [-123.636482, 48.381082], [-123.636309, 48.380219], [-123.635778, 48.379871], [-123.63526, 48.379307], [-123.634973, 48.379138], [-123.634771, 48.379094], [-123.634227, 48.378755], [-123.633732, 48.378245], [-123.633621, 48.377921], [-123.633673, 48.377688], [-123.634228, 48.377766], [-123.634915, 48.377716], [-123.635251, 48.377615], [-123.635478, 48.37738], [-123.63553, 48.377272], [-123.635463, 48.377209], [-123.634582, 48.377026], [-123.6345, 48.376927], [-123.634565, 48.376747], [-123.634849, 48.376718], [-123.63506, 48.376448], [-123.635021, 48.376393], [-123.634776, 48.376351], [-123.634803, 48.376224], [-123.635004, 48.376089], [-123.635273, 48.376042], [-123.635601, 48.375747], [-123.633267, 48.375466], [-123.633499, 48.374961], [-123.633425, 48.374484], [-123.63306, 48.37332], [-123.632427, 48.373108], [-123.631652, 48.373052], [-123.630466, 48.372812], [-123.629704, 48.37242], [-123.629368, 48.37243], [-123.62865, 48.372245], [-123.628422, 48.372346], [-123.62784, 48.372374], [-123.627508, 48.370064], [-123.626295, 48.358614], [-123.623108, 48.358404], [-123.623544, 48.358132], [-123.624148, 48.357879], [-123.626349, 48.355714], [-123.625842, 48.355559], [-123.623856, 48.357571], [-123.622426, 48.354292], [-123.62222, 48.354341], [-123.621288, 48.354372], [-123.620748, 48.354295], [-123.620162, 48.353973], [-123.619258, 48.353224], [-123.61544, 48.359971], [-123.60979, 48.36157], [-123.604024, 48.359708], [-123.603073, 48.359479], [-123.601986, 48.360904], [-123.61459, 48.365439], [-123.609823, 48.370822], [-123.598662, 48.385187], [-123.596829, 48.38725], [-123.615636, 48.394336], [-123.613367, 48.397113], [-123.616315, 48.398055], [-123.617184, 48.397883], [-123.617455, 48.398343], [-123.61927, 48.398932], [-123.638638, 48.408224], [-123.6446, 48.410683], [-123.644797, 48.41448], [-123.645592, 48.424355], [-123.64569, 48.428252], [-123.656702, 48.428426], [-123.706717, 48.428105], [-123.711917, 48.428399], [-123.711659, 48.429243], [-123.711606, 48.429756], [-123.711976, 48.430366], [-123.712398, 48.430588], [-123.713434, 48.431696], [-123.714658, 48.433475], [-123.714684, 48.434598], [-123.715258, 48.436319], [-123.716252, 48.437318], [-123.71677, 48.43806], [-123.717423, 48.440209], [-123.717941, 48.440943], [-123.719028, 48.44201], [-123.719861, 48.442466], [-123.721375, 48.442902], [-123.722171, 48.443449], [-123.725332, 48.446168], [-123.726271, 48.446757], [-123.726834, 48.44696], [-123.728765, 48.447323], [-123.730559, 48.447787], [-123.733338, 48.449831], [-123.733775, 48.450746], [-123.733656, 48.451985], [-123.733453, 48.452742], [-123.733533, 48.453236], [-123.733981, 48.453718], [-123.734536, 48.454088], [-123.736319, 48.454746], [-123.737353, 48.455394], [-123.738223, 48.456429], [-123.738981, 48.458811], [-123.738906, 48.460031], [-123.739047, 48.462214], [-123.73922, 48.462618], [-123.739199, 48.462774], [-123.73952, 48.46323], [-123.739283, 48.474168]], [[-123.698277, 48.38443], [-123.698697, 48.384563], [-123.699131, 48.384793], [-123.699297, 48.384991], [-123.699327, 48.385279], [-123.699571, 48.385394], [-123.699952, 48.385437], [-123.700416, 48.385812], [-123.701203, 48.386041], [-123.702027, 48.386143], [-123.702536, 48.386268], [-123.696838, 48.387714], [-123.695911, 48.387842], [-123.689631, 48.389725], [-123.688934, 48.388394], [-123.692915, 48.387446], [-123.69407, 48.386792], [-123.694576, 48.386277], [-123.693909, 48.385807], [-123.693442, 48.385284], [-123.692932, 48.38435], [-123.694298, 48.38401], [-123.696476, 48.383373], [-123.696669, 48.383459], [-123.697325, 48.383969], [-123.698277, 48.38443]]]]}, "properties": {"name": "Sooke", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Sooke", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917052", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.956264, 48.404161], [-123.97134, 48.403975], [-123.971464, 48.407678], [-123.977038, 48.407527], [-123.98182, 48.407467], [-123.981674, 48.416663], [-124.003479, 48.416796], [-124.003351, 48.418888], [-124.015101, 48.418895], [-124.015095, 48.421285], [-124.014837, 48.430015], [-124.025738, 48.430032], [-124.041955, 48.43049], [-124.05146, 48.43069], [-124.051319, 48.430296], [-124.051304, 48.42969], [-124.051433, 48.429329], [-124.051613, 48.42914], [-124.051671, 48.428619], [-124.05199, 48.427598], [-124.052208, 48.425285], [-124.052556, 48.424835], [-124.053171, 48.424521], [-124.053576, 48.42416], [-124.053915, 48.423672], [-124.05399, 48.423396], [-124.054656, 48.42268], [-124.055169, 48.421889], [-124.054765, 48.421669], [-124.055285, 48.421267], [-124.055281, 48.421079], [-124.055133, 48.420851], [-124.111181, 48.364579], [-124.132036, 48.343791], [-124.0, 48.306316], [-124.0, 48.295014], [-123.755678, 48.252836], [-123.730242, 48.252726], [-123.670559, 48.253461], [-123.616473, 48.253852], [-123.499999, 48.25], [-123.249999, 48.25], [-123.247233, 48.284109], [-123.113808, 48.423118], [-123.158522, 48.453635], [-123.187197, 48.500061], [-123.189011, 48.502837], [-123.26988, 48.503447], [-123.343248, 48.503602], [-123.340524, 48.501369], [-123.329192, 48.500708], [-123.309108, 48.498981], [-123.298653, 48.489463], [-123.301984, 48.477453], [-123.300498, 48.477125], [-123.299096, 48.476722], [-123.293789, 48.475116], [-123.291708, 48.474377], [-123.283547, 48.469778], [-123.277746, 48.465695], [-123.262993, 48.455028], [-123.267113, 48.449002], [-123.267429, 48.449012], [-123.270355, 48.448145], [-123.274128, 48.44733], [-123.276231, 48.446966], [-123.278133, 48.446907], [-123.280328, 48.447125], [-123.282196, 48.447653], [-123.28548, 48.448775], [-123.286933, 48.449629], [-123.288337, 48.437947], [-123.28924, 48.436692], [-123.291188, 48.435439], [-123.293414, 48.43493], [-123.294253, 48.432619], [-123.296973, 48.425772], [-123.297954, 48.423747], [-123.297571, 48.423038], [-123.293621, 48.41965], [-123.293117, 48.41124], [-123.295446, 48.410563], [-123.30057, 48.393237], [-123.303943, 48.391247], [-123.311281, 48.394627], [-123.31557, 48.406012], [-123.321437, 48.405168], [-123.326744, 48.407388], [-123.326504, 48.409634], [-123.326674, 48.411246], [-123.327715, 48.411534], [-123.328459, 48.411594], [-123.329134, 48.411493], [-123.329834, 48.411258], [-123.330399, 48.410878], [-123.330561, 48.410671], [-123.330572, 48.410338], [-123.330205, 48.410006], [-123.329933, 48.409954], [-123.329526, 48.409585], [-123.329671, 48.409126], [-123.330034, 48.408793], [-123.330587, 48.408448], [-123.331923, 48.408131], [-123.332908, 48.408109], [-123.333572, 48.40826], [-123.334774, 48.408347], [-123.33621, 48.408747], [-123.33636, 48.408828], [-123.336022, 48.409045], [-123.336051, 48.409368], [-123.336322, 48.409502], [-123.33654, 48.409529], [-123.336689, 48.4097], [-123.337165, 48.410022], [-123.337856, 48.410263], [-123.338883, 48.410322], [-123.340611, 48.410156], [-123.341744, 48.409874], [-123.342971, 48.409429], [-123.34553, 48.408324], [-123.348586, 48.40647], [-123.349164, 48.406046], [-123.349135, 48.405839], [-123.348944, 48.405524], [-123.349128, 48.404949], [-123.34914, 48.40467], [-123.349003, 48.404355], [-123.348527, 48.403942], [-123.348323, 48.40361], [-123.348336, 48.403475], [-123.348643, 48.403025], [-123.348913, 48.402898], [-123.349196, 48.402915], [-123.349548, 48.403022], [-123.349766, 48.403246], [-123.349893, 48.404037], [-123.350017, 48.404352], [-123.350398, 48.404836], [-123.350914, 48.405249], [-123.351905, 48.405776], [-123.353545, 48.406429], [-123.355644, 48.407078], [-123.356874, 48.407273], [-123.359105, 48.407391], [-123.360145, 48.407389], [-123.361508, 48.407285], [-123.362685, 48.40729], [-123.363576, 48.407099], [-123.364127, 48.406792], [-123.364355, 48.406449], [-123.364651, 48.406393], [-123.364988, 48.406491], [-123.365219, 48.406689], [-123.365127, 48.407058], [-123.364778, 48.407248], [-123.364834, 48.407437], [-123.365119, 48.407625], [-123.36539, 48.407696], [-123.365565, 48.407651], [-123.365644, 48.407461], [-123.365873, 48.40737], [-123.366022, 48.407424], [-123.366213, 48.407658], [-123.366444, 48.407765], [-123.366568, 48.408007], [-123.367013, 48.408059], [-123.367406, 48.407968], [-123.367731, 48.408121], [-123.368529, 48.408289], [-123.36899, 48.408494], [-123.369166, 48.408457], [-123.36934, 48.408313], [-123.36953, 48.408276], [-123.369799, 48.408347], [-123.370408, 48.408373], [-123.371003, 48.408478], [-123.371355, 48.408595], [-123.371965, 48.408944], [-123.372629, 48.409085], [-123.373778, 48.409036], [-123.376536, 48.409261], [-123.376618, 48.409432], [-123.376834, 48.409575], [-123.377309, 48.409673], [-123.377582, 48.409986], [-123.378287, 48.410434], [-123.378451, 48.410623], [-123.378344, 48.410929], [-123.378251, 48.411019], [-123.377914, 48.411129], [-123.377915, 48.411235], [-123.379017, 48.412375], [-123.380835, 48.413313], [-123.38173, 48.413698], [-123.383261, 48.414666], [-123.385032, 48.414118], [-123.395154, 48.41132], [-123.394214, 48.414349], [-123.412776, 48.413772], [-123.420274, 48.413474], [-123.432777, 48.421706], [-123.44149, 48.427587], [-123.442023, 48.430816], [-123.442971, 48.428834], [-123.444033, 48.427749], [-123.446202, 48.427302], [-123.447696, 48.427292], [-123.450408, 48.427643], [-123.452648, 48.427652], [-123.455831, 48.426841], [-123.457029, 48.426206], [-123.469001, 48.414911], [-123.476491, 48.406268], [-123.48143, 48.399347], [-123.483047, 48.395749], [-123.481802, 48.394046], [-123.476757, 48.393433], [-123.474437, 48.392405], [-123.472906, 48.389268], [-123.472686, 48.387149], [-123.472926, 48.384709], [-123.480616, 48.381889], [-123.483716, 48.381513], [-123.491212, 48.382214], [-123.497938, 48.383627], [-123.49899, 48.383128], [-123.500558, 48.382827], [-123.502629, 48.3809], [-123.504039, 48.380221], [-123.505104, 48.379975], [-123.506024, 48.380144], [-123.507147, 48.380958], [-123.508458, 48.381386], [-123.509795, 48.381601], [-123.510888, 48.381346], [-123.511992, 48.38092], [-123.516929, 48.378655], [-123.518418, 48.374901], [-123.521253, 48.371615], [-123.525673, 48.367688], [-123.527024, 48.366136], [-123.528841, 48.362597], [-123.53187, 48.359356], [-123.53947, 48.354669], [-123.53978, 48.354157], [-123.539273, 48.352129], [-123.53859, 48.351232], [-123.536508, 48.347394], [-123.535024, 48.346534], [-123.53192, 48.345858], [-123.527075, 48.345789], [-123.525205, 48.345427], [-123.523985, 48.344622], [-123.522872, 48.342847], [-123.522859, 48.341411], [-123.523779, 48.340055], [-123.529794, 48.336462], [-123.532489, 48.335578], [-123.534132, 48.334722], [-123.537373, 48.334558], [-123.541838, 48.334932], [-123.545902, 48.335714], [-123.55013, 48.33806], [-123.550567, 48.33817], [-123.551053, 48.338132], [-123.55119, 48.337623], [-123.550272, 48.33524], [-123.547083, 48.333137], [-123.544602, 48.332608], [-123.542795, 48.33209], [-123.541383, 48.331043], [-123.539126, 48.328714], [-123.5371, 48.327556], [-123.536434, 48.325731], [-123.536178, 48.323704], [-123.536839, 48.322533], [-123.537106, 48.321026], [-123.536328, 48.319244], [-123.533572, 48.317371], [-123.532899, 48.316122], [-123.533016, 48.314403], [-123.534356, 48.312509], [-123.536757, 48.310606], [-123.545097, 48.307044], [-123.54699, 48.306677], [-123.549153, 48.30685], [-123.551873, 48.307729], [-123.553219, 48.307987], [-123.555381, 48.30816], [-123.557528, 48.307788], [-123.561432, 48.306502], [-123.56401, 48.306398], [-123.566758, 48.307209], [-123.571885, 48.310394], [-123.573876, 48.310961], [-123.575919, 48.311061], [-123.579623, 48.310333], [-123.585384, 48.307577], [-123.586727, 48.307661], [-123.589313, 48.307982], [-123.591489, 48.308588], [-123.597135, 48.313563], [-123.599086, 48.314054], [-123.596049, 48.315912], [-123.596287, 48.316054], [-123.596265, 48.316359], [-123.596466, 48.316322], [-123.597007, 48.316481], [-123.597088, 48.316463], [-123.597086, 48.316265], [-123.597152, 48.316211], [-123.597368, 48.316201], [-123.597556, 48.316118], [-123.597706, 48.316172], [-123.597639, 48.316335], [-123.598461, 48.316204], [-123.598702, 48.316004], [-123.598925, 48.315571], [-123.59887, 48.315456], [-123.598409, 48.315143], [-123.598298, 48.314999], [-123.598323, 48.314784], [-123.598578, 48.314674], [-123.600316, 48.314522], [-123.601088, 48.314732], [-123.601453, 48.314964], [-123.601537, 48.315063], [-123.601609, 48.315486], [-123.60152, 48.315909], [-123.60125, 48.315983], [-123.600765, 48.316003], [-123.600345, 48.315889], [-123.599889, 48.315998], [-123.599172, 48.315805], [-123.598892, 48.316139], [-123.598868, 48.316364], [-123.599044, 48.316507], [-123.599101, 48.316768], [-123.599251, 48.316928], [-123.599616, 48.31699], [-123.599957, 48.317132], [-123.600064, 48.317249], [-123.600053, 48.317393], [-123.600148, 48.317391], [-123.600374, 48.317166], [-123.600684, 48.317136], [-123.600833, 48.317208], [-123.600889, 48.317343], [-123.60077, 48.317595], [-123.600963, 48.317829], [-123.601019, 48.318044], [-123.600872, 48.318116], [-123.600685, 48.318424], [-123.600283, 48.318588], [-123.600216, 48.318696], [-123.600447, 48.318857], [-123.600637, 48.318891], [-123.601083, 48.318854], [-123.601433, 48.318932], [-123.601315, 48.319149], [-123.60141, 48.31932], [-123.601387, 48.319455], [-123.601185, 48.31959], [-123.601214, 48.319834], [-123.601376, 48.319868], [-123.601524, 48.319805], [-123.60192, 48.319073], [-123.602162, 48.319019], [-123.602528, 48.319035], [-123.602769, 48.318971], [-123.602931, 48.319015], [-123.602932, 48.319086], [-123.602692, 48.319286], [-123.602693, 48.319348], [-123.602909, 48.319357], [-123.603047, 48.31959], [-123.60341, 48.319625], [-123.603465, 48.319731], [-123.603426, 48.319795], [-123.603104, 48.319914], [-123.602932, 48.32013], [-123.602756, 48.320132], [-123.602555, 48.320285], [-123.602287, 48.320304], [-123.60192, 48.32018], [-123.601744, 48.320173], [-123.601275, 48.320372], [-123.600944, 48.320824], [-123.600688, 48.320969], [-123.600471, 48.320889], [-123.600296, 48.320918], [-123.600044, 48.321242], [-123.599547, 48.321389], [-123.599481, 48.321579], [-123.599349, 48.32167], [-123.598566, 48.321682], [-123.598501, 48.321863], [-123.598555, 48.321997], [-123.598827, 48.322158], [-123.599003, 48.32214], [-123.599433, 48.321957], [-123.599607, 48.321956], [-123.599731, 48.322046], [-123.599705, 48.322244], [-123.599452, 48.322416], [-123.5989, 48.322481], [-123.598792, 48.322563], [-123.598818, 48.322617], [-123.599021, 48.322625], [-123.599171, 48.322714], [-123.599454, 48.322695], [-123.599535, 48.322739], [-123.599524, 48.322856], [-123.599069, 48.323174], [-123.59895, 48.323345], [-123.598465, 48.323437], [-123.598316, 48.323384], [-123.598301, 48.323322], [-123.59834, 48.323186], [-123.598514, 48.32305], [-123.598431, 48.32288], [-123.598309, 48.322799], [-123.597958, 48.322828], [-123.597892, 48.322927], [-123.597973, 48.323026], [-123.597829, 48.323243], [-123.597765, 48.32355], [-123.597712, 48.323594], [-123.597427, 48.323568], [-123.597347, 48.323605], [-123.597321, 48.323668], [-123.597606, 48.32381], [-123.597365, 48.324091], [-123.596978, 48.324238], [-123.59691, 48.32421], [-123.596959, 48.32394], [-123.596892, 48.323904], [-123.596369, 48.324151], [-123.595859, 48.324494], [-123.595887, 48.324629], [-123.596052, 48.3247], [-123.596229, 48.324943], [-123.596216, 48.325005], [-123.595921, 48.325169], [-123.59602, 48.325421], [-123.595657, 48.325558], [-123.595576, 48.325539], [-123.595519, 48.325351], [-123.595424, 48.325334], [-123.5951, 48.325353], [-123.594831, 48.325435], [-123.594632, 48.325652], [-123.594634, 48.325806], [-123.594702, 48.325912], [-123.594933, 48.326019], [-123.595182, 48.326612], [-123.595185, 48.326801], [-123.594983, 48.326919], [-123.594881, 48.327253], [-123.594624, 48.3273], [-123.594351, 48.327066], [-123.594258, 48.327076], [-123.593951, 48.327392], [-123.593599, 48.327367], [-123.593159, 48.327747], [-123.592526, 48.327778], [-123.591918, 48.3277], [-123.591675, 48.327836], [-123.591637, 48.328052], [-123.592152, 48.32823], [-123.592399, 48.328551], [-123.592777, 48.328487], [-123.593024, 48.328863], [-123.592958, 48.329061], [-123.592877, 48.32909], [-123.592701, 48.329027], [-123.59246, 48.32911], [-123.592434, 48.329172], [-123.592571, 48.329316], [-123.592574, 48.32955], [-123.592026, 48.330084], [-123.592055, 48.330209], [-123.592202, 48.330262], [-123.592499, 48.330063], [-123.592687, 48.330044], [-123.592678, 48.330448], [-123.59276, 48.330638], [-123.592951, 48.330799], [-123.592982, 48.331131], [-123.592328, 48.331675], [-123.59179, 48.331876], [-123.591407, 48.332623], [-123.591397, 48.332867], [-123.591494, 48.333046], [-123.591455, 48.333263], [-123.591755, 48.333395], [-123.591864, 48.333575], [-123.591852, 48.333764], [-123.59172, 48.333935], [-123.591685, 48.334449], [-123.59154, 48.334683], [-123.590897, 48.335181], [-123.590562, 48.335318], [-123.590387, 48.335463], [-123.58993, 48.33541], [-123.589539, 48.335503], [-123.589112, 48.335919], [-123.589071, 48.336036], [-123.589157, 48.336333], [-123.589652, 48.337194], [-123.589739, 48.33875], [-123.589407, 48.339256], [-123.589116, 48.339932], [-123.588688, 48.340221], [-123.587828, 48.340568], [-123.587521, 48.340858], [-123.587538, 48.341002], [-123.587728, 48.341153], [-123.58839, 48.341186], [-123.588608, 48.341338], [-123.588586, 48.341878], [-123.588457, 48.342257], [-123.588525, 48.342363], [-123.5887, 48.34239], [-123.588637, 48.342678], [-123.58881, 48.34266], [-123.588864, 48.342462], [-123.589305, 48.342234], [-123.589589, 48.342251], [-123.589794, 48.342439], [-123.590753, 48.342496], [-123.591062, 48.342459], [-123.591237, 48.342332], [-123.591493, 48.342249], [-123.591543, 48.341962], [-123.591703, 48.341817], [-123.591621, 48.341718], [-123.591254, 48.341532], [-123.59128, 48.341413], [-123.591628, 48.341116], [-123.591706, 48.340953], [-123.591634, 48.340585], [-123.591312, 48.340649], [-123.591283, 48.340434], [-123.591453, 48.340153], [-123.591762, 48.339882], [-123.59195, 48.339854], [-123.59211, 48.339709], [-123.592365, 48.339663], [-123.592566, 48.339518], [-123.592904, 48.339427], [-123.59312, 48.339524], [-123.593896, 48.338881], [-123.594148, 48.338529], [-123.594103, 48.338233], [-123.594238, 48.338079], [-123.594922, 48.337833], [-123.595098, 48.337859], [-123.595129, 48.338128], [-123.595265, 48.338199], [-123.595132, 48.338416], [-123.595146, 48.338596], [-123.595445, 48.338693], [-123.595633, 48.338548], [-123.595713, 48.338602], [-123.59573, 48.3388], [-123.59544, 48.339377], [-123.595564, 48.339656], [-123.595699, 48.339546], [-123.595907, 48.338952], [-123.596107, 48.338735], [-123.596335, 48.338608], [-123.596465, 48.338166], [-123.596585, 48.338012], [-123.596813, 48.338003], [-123.597031, 48.338172], [-123.597302, 48.338189], [-123.597677, 48.33798], [-123.597755, 48.337827], [-123.598322, 48.337833], [-123.598508, 48.337617], [-123.598764, 48.337596], [-123.598808, 48.337884], [-123.598622, 48.338101], [-123.598665, 48.33828], [-123.598787, 48.338353], [-123.599043, 48.338314], [-123.599353, 48.338152], [-123.599784, 48.338059], [-123.599993, 48.337617], [-123.600393, 48.337148], [-123.600543, 48.337182], [-123.600503, 48.337363], [-123.600678, 48.337343], [-123.600706, 48.33746], [-123.600869, 48.337387], [-123.601043, 48.337396], [-123.601087, 48.337585], [-123.601506, 48.337708], [-123.601498, 48.338195], [-123.601568, 48.33831], [-123.601768, 48.3383], [-123.60209, 48.337993], [-123.602265, 48.33792], [-123.6024, 48.33792], [-123.602521, 48.338035], [-123.602833, 48.338151], [-123.603359, 48.338148], [-123.603547, 48.337977], [-123.603383, 48.337752], [-123.603366, 48.337608], [-123.603536, 48.337166], [-123.603496, 48.337023], [-123.60372, 48.336644], [-123.603622, 48.336356], [-123.603873, 48.335996], [-123.604209, 48.335868], [-123.604318, 48.335759], [-123.60369, 48.335249], [-123.603729, 48.33507], [-123.603862, 48.334933], [-123.60421, 48.334806], [-123.604519, 48.334553], [-123.605327, 48.33453], [-123.60545, 48.33462], [-123.605253, 48.335097], [-123.605348, 48.335187], [-123.605443, 48.335187], [-123.606464, 48.334821], [-123.607136, 48.334503], [-123.607817, 48.333995], [-123.608211, 48.334102], [-123.608598, 48.333857], [-123.608524, 48.334478], [-123.608688, 48.334549], [-123.609008, 48.334233], [-123.609183, 48.334186], [-123.609616, 48.334355], [-123.609497, 48.334517], [-123.609566, 48.334562], [-123.609755, 48.334597], [-123.609996, 48.334533], [-123.610064, 48.334577], [-123.60985, 48.334768], [-123.609853, 48.33492], [-123.610164, 48.335044], [-123.610371, 48.335439], [-123.610629, 48.335456], [-123.611003, 48.335113], [-123.611352, 48.33502], [-123.611483, 48.334785], [-123.611768, 48.334757], [-123.611876, 48.334846], [-123.612046, 48.335601], [-123.612223, 48.33561], [-123.61249, 48.335427], [-123.612612, 48.3355], [-123.61244, 48.335744], [-123.612485, 48.336148], [-123.613539, 48.336305], [-123.613797, 48.336483], [-123.614, 48.336491], [-123.614312, 48.336669], [-123.61461, 48.336676], [-123.614824, 48.336621], [-123.615321, 48.336303], [-123.616639, 48.335927], [-123.617407, 48.335933], [-123.617774, 48.336057], [-123.618083, 48.336046], [-123.619152, 48.336211], [-123.61942, 48.336165], [-123.619621, 48.335957], [-123.619716, 48.335956], [-123.620217, 48.336169], [-123.620472, 48.33606], [-123.620568, 48.336068], [-123.620961, 48.336345], [-123.621311, 48.336164], [-123.621623, 48.33636], [-123.621718, 48.336359], [-123.621984, 48.336178], [-123.622201, 48.336177], [-123.622702, 48.336371], [-123.621632, 48.337183], [-123.613284, 48.345972], [-123.603073, 48.359479], [-123.604024, 48.359708], [-123.60979, 48.36157], [-123.61544, 48.359971], [-123.619258, 48.353224], [-123.620162, 48.353973], [-123.620748, 48.354295], [-123.621288, 48.354372], [-123.62222, 48.354341], [-123.622426, 48.354292], [-123.623856, 48.357571], [-123.625842, 48.355559], [-123.626349, 48.355714], [-123.624148, 48.357879], [-123.623544, 48.358132], [-123.623108, 48.358404], [-123.626295, 48.358614], [-123.627508, 48.370064], [-123.62784, 48.372374], [-123.628422, 48.372346], [-123.62865, 48.372245], [-123.629368, 48.37243], [-123.629704, 48.37242], [-123.630466, 48.372812], [-123.631652, 48.373052], [-123.632427, 48.373108], [-123.63306, 48.37332], [-123.633425, 48.374484], [-123.633499, 48.374961], [-123.633267, 48.375466], [-123.635601, 48.375747], [-123.635273, 48.376042], [-123.635004, 48.376089], [-123.634803, 48.376224], [-123.634776, 48.376351], [-123.635021, 48.376393], [-123.63506, 48.376448], [-123.634849, 48.376718], [-123.634565, 48.376747], [-123.6345, 48.376927], [-123.634582, 48.377026], [-123.635463, 48.377209], [-123.63553, 48.377272], [-123.635478, 48.37738], [-123.635251, 48.377615], [-123.634915, 48.377716], [-123.634228, 48.377766], [-123.633673, 48.377688], [-123.633621, 48.377921], [-123.633732, 48.378245], [-123.634227, 48.378755], [-123.634771, 48.379094], [-123.634973, 48.379138], [-123.63526, 48.379307], [-123.635778, 48.379871], [-123.636309, 48.380219], [-123.636482, 48.381082], [-123.636764, 48.380918], [-123.636954, 48.380891], [-123.637332, 48.380897], [-123.637873, 48.381021], [-123.638133, 48.381207], [-123.638354, 48.381557], [-123.638105, 48.382378], [-123.637838, 48.38255], [-123.637582, 48.382596], [-123.637368, 48.382705], [-123.637193, 48.382851], [-123.63725, 48.382967], [-123.636697, 48.383025], [-123.636301, 48.382693], [-123.636206, 48.382694], [-123.636059, 48.382865], [-123.636075, 48.383073], [-123.635983, 48.383173], [-123.635577, 48.383156], [-123.635443, 48.383301], [-123.635024, 48.383277], [-123.634908, 48.383583], [-123.634924, 48.383879], [-123.634548, 48.384097], [-123.634536, 48.384151], [-123.634725, 48.384205], [-123.634811, 48.384518], [-123.634545, 48.384872], [-123.63498, 48.385148], [-123.634968, 48.385265], [-123.635118, 48.385336], [-123.63531, 48.385564], [-123.638838, 48.386251], [-123.650951, 48.37603], [-123.651757, 48.376208], [-123.652769, 48.37629], [-123.655035, 48.376745], [-123.656439, 48.376729], [-123.657018, 48.376653], [-123.657659, 48.376734], [-123.659031, 48.376596], [-123.659669, 48.376633], [-123.662305, 48.37715], [-123.664642, 48.377752], [-123.666376, 48.377985], [-123.685125, 48.37748], [-123.691215, 48.37709], [-123.702677, 48.376729], [-123.705048, 48.37676], [-123.722729, 48.368079], [-123.725704, 48.366414], [-123.715462, 48.362669], [-123.70772, 48.359767], [-123.710764, 48.357489], [-123.707576, 48.355724], [-123.706893, 48.355781], [-123.706418, 48.355894], [-123.705381, 48.355882], [-123.704555, 48.355963], [-123.702928, 48.352693], [-123.702398, 48.35238], [-123.705252, 48.350528], [-123.705226, 48.34158], [-123.710828, 48.337153], [-123.712191, 48.337022], [-123.714514, 48.337304], [-123.715266, 48.337571], [-123.716537, 48.338522], [-123.717037, 48.339753], [-123.716645, 48.342061], [-123.717254, 48.343415], [-123.717701, 48.344014], [-123.718944, 48.34503], [-123.720482, 48.345544], [-123.721771, 48.3463], [-123.722637, 48.347964], [-123.721937, 48.348535], [-123.720256, 48.349357], [-123.71897, 48.350167], [-123.717883, 48.351016], [-123.717593, 48.352858], [-123.717605, 48.354029], [-123.717484, 48.355138], [-123.717015, 48.356054], [-123.717344, 48.356028], [-123.718134, 48.355745], [-123.719539, 48.354848], [-123.722236, 48.35434], [-123.724071, 48.353824], [-123.725885, 48.353584], [-123.727036, 48.35312], [-123.727482, 48.353043], [-123.72885, 48.353099], [-123.729553, 48.352931], [-123.731682, 48.351813], [-123.732849, 48.351423], [-123.734664, 48.351155], [-123.735666, 48.351226], [-123.737225, 48.35149], [-123.73882, 48.352119], [-123.739312, 48.352197], [-123.740155, 48.351967], [-123.741132, 48.351568], [-123.741676, 48.351527], [-123.743756, 48.352317], [-123.745848, 48.353281], [-123.74893, 48.354897], [-123.749436, 48.354908], [-123.750042, 48.354682], [-123.750897, 48.354583], [-123.751303, 48.354651], [-123.752576, 48.35541], [-123.75432, 48.355836], [-123.755524, 48.356283], [-123.756581, 48.356805], [-123.757701, 48.357481], [-123.753644, 48.359196], [-123.753755, 48.359294], [-123.753785, 48.359482], [-123.753536, 48.360025], [-123.753562, 48.360869], [-123.754152, 48.362511], [-123.754846, 48.363404], [-123.758474, 48.361987], [-123.761681, 48.365071], [-123.762887, 48.366382], [-123.764297, 48.367026], [-123.765712, 48.367448], [-123.767118, 48.367687], [-123.768237, 48.367405], [-123.770004, 48.366608], [-123.771285, 48.365957], [-123.772936, 48.365771], [-123.77446, 48.365943], [-123.776389, 48.366029], [-123.776575, 48.368785], [-123.776674, 48.368974], [-123.778552, 48.368972], [-123.779131, 48.368824], [-123.779598, 48.368514], [-123.779954, 48.367936], [-123.780141, 48.367818], [-123.781001, 48.367525], [-123.781944, 48.367392], [-123.782563, 48.367217], [-123.783032, 48.367025], [-123.783643, 48.366486], [-123.784014, 48.367211], [-123.784847, 48.373816], [-123.780046, 48.37472], [-123.779809, 48.374291], [-123.776215, 48.375336], [-123.775202, 48.375579], [-123.777747, 48.378952], [-123.780178, 48.381208], [-123.782577, 48.386633], [-123.778362, 48.388291], [-123.772724, 48.390408], [-123.769399, 48.384742], [-123.774037, 48.3833], [-123.769738, 48.376897], [-123.759754, 48.379564], [-123.754914, 48.3807], [-123.757572, 48.383795], [-123.759819, 48.387021], [-123.763574, 48.392842], [-123.748085, 48.39757], [-123.748061, 48.401591], [-123.747392, 48.401521], [-123.747052, 48.401388], [-123.746471, 48.401266], [-123.744806, 48.401133], [-123.74448, 48.400999], [-123.743871, 48.400932], [-123.743287, 48.400737], [-123.742798, 48.400479], [-123.741075, 48.400032], [-123.740775, 48.399809], [-123.740347, 48.399282], [-123.740157, 48.399148], [-123.739696, 48.399088], [-123.739214, 48.399316], [-123.738836, 48.399333], [-123.73179, 48.401451], [-123.727995, 48.40271], [-123.727904, 48.403191], [-123.728281, 48.412989], [-123.717444, 48.413004], [-123.718119, 48.428614], [-123.720948, 48.42759], [-123.723705, 48.427438], [-123.723877, 48.431038], [-123.72693, 48.431048], [-123.727098, 48.438376], [-123.728565, 48.438427], [-123.728726, 48.441889], [-123.737389, 48.441718], [-123.737418, 48.442612], [-123.741608, 48.442532], [-123.741764, 48.438554], [-123.747446, 48.438562], [-123.747548, 48.435787], [-123.75006, 48.435722], [-123.750085, 48.433737], [-123.745992, 48.433701], [-123.746373, 48.421394], [-123.74496, 48.421371], [-123.744943, 48.418938], [-123.748298, 48.41778], [-123.756388, 48.41484], [-123.767196, 48.411633], [-123.773981, 48.409883], [-123.77659, 48.409159], [-123.785196, 48.406565], [-123.786092, 48.406244], [-123.788202, 48.405251], [-123.790555, 48.404629], [-123.791592, 48.404265], [-123.837375, 48.387934], [-123.844027, 48.387858], [-123.857824, 48.38809], [-123.862171, 48.389939], [-123.862658, 48.389643], [-123.866261, 48.389823], [-123.866051, 48.392932], [-123.866062, 48.394412], [-123.86575, 48.394416], [-123.86562, 48.402937], [-123.876505, 48.402904], [-123.889423, 48.402627], [-123.912233, 48.405167], [-123.912274, 48.402366], [-123.923285, 48.402396], [-123.923362, 48.404231], [-123.93645, 48.404383], [-123.936466, 48.405248], [-123.93633, 48.40596], [-123.940081, 48.405826], [-123.940083, 48.406128], [-123.949927, 48.405114], [-123.949935, 48.403682], [-123.956264, 48.404161]]], [[[-123.597541, 48.36645], [-123.609823, 48.370822], [-123.61459, 48.365439], [-123.601986, 48.360904], [-123.597541, 48.36645]]], [[[-123.544578, 48.487061], [-123.545718, 48.48722], [-123.548339, 48.487109], [-123.54817, 48.486643], [-123.548195, 48.486364], [-123.547865, 48.485971], [-123.548276, 48.485186], [-123.548345, 48.485167], [-123.547882, 48.484881], [-123.547799, 48.484764], [-123.547695, 48.483928], [-123.54779, 48.4838], [-123.54638, 48.483551], [-123.546333, 48.484359], [-123.546199, 48.484694], [-123.545454, 48.486035], [-123.544578, 48.487061]]], [[[-123.710477, 48.500507], [-123.723505, 48.501012], [-123.742456, 48.501015], [-123.746643, 48.500811], [-123.750658, 48.500806], [-123.750384, 48.496828], [-123.749029, 48.496847], [-123.748988, 48.494133], [-123.74753, 48.494151], [-123.747544, 48.493249], [-123.74607, 48.493263], [-123.746188, 48.488733], [-123.744721, 48.488654], [-123.744745, 48.487751], [-123.749274, 48.487695], [-123.749239, 48.479879], [-123.752213, 48.479854], [-123.75212, 48.473941], [-123.739283, 48.474168], [-123.73952, 48.46323], [-123.739199, 48.462774], [-123.73922, 48.462618], [-123.739047, 48.462214], [-123.738906, 48.460031], [-123.738981, 48.458811], [-123.738223, 48.456429], [-123.737353, 48.455394], [-123.736319, 48.454746], [-123.734536, 48.454088], [-123.733981, 48.453718], [-123.733533, 48.453236], [-123.733453, 48.452742], [-123.733656, 48.451985], [-123.733775, 48.450746], [-123.733338, 48.449831], [-123.730559, 48.447787], [-123.728765, 48.447323], [-123.726834, 48.44696], [-123.726271, 48.446757], [-123.725332, 48.446168], [-123.722171, 48.443449], [-123.721375, 48.442902], [-123.719861, 48.442466], [-123.719028, 48.44201], [-123.717941, 48.440943], [-123.717423, 48.440209], [-123.71677, 48.43806], [-123.716252, 48.437318], [-123.715258, 48.436319], [-123.714684, 48.434598], [-123.714658, 48.433475], [-123.713434, 48.431696], [-123.712398, 48.430588], [-123.711976, 48.430366], [-123.711606, 48.429756], [-123.711659, 48.429243], [-123.711917, 48.428399], [-123.706717, 48.428105], [-123.656702, 48.428426], [-123.64569, 48.428252], [-123.645592, 48.424355], [-123.580545, 48.4249], [-123.580484, 48.425721], [-123.575233, 48.42597], [-123.57483, 48.425904], [-123.574623, 48.42703], [-123.569809, 48.431835], [-123.56939, 48.432359], [-123.571173, 48.432281], [-123.571451, 48.438627], [-123.56561, 48.439198], [-123.563765, 48.442202], [-123.561631, 48.445416], [-123.562919, 48.445891], [-123.560202, 48.45267], [-123.559893, 48.453227], [-123.558205, 48.455653], [-123.558837, 48.455929], [-123.559846, 48.456562], [-123.561823, 48.458055], [-123.56264, 48.458501], [-123.563496, 48.458794], [-123.565067, 48.45902], [-123.570996, 48.459369], [-123.571619, 48.459464], [-123.572447, 48.45976], [-123.573224, 48.460265], [-123.573719, 48.461016], [-123.573775, 48.461641], [-123.573654, 48.46219], [-123.573335, 48.462708], [-123.572836, 48.463129], [-123.572231, 48.463447], [-123.571679, 48.463621], [-123.567034, 48.464354], [-123.566345, 48.464609], [-123.565123, 48.465263], [-123.564395, 48.465447], [-123.563404, 48.465492], [-123.561973, 48.465351], [-123.560878, 48.465446], [-123.560015, 48.465711], [-123.558116, 48.466602], [-123.557527, 48.467118], [-123.557302, 48.467704], [-123.557574, 48.470095], [-123.557856, 48.4712], [-123.557794, 48.471624], [-123.557527, 48.472075], [-123.557287, 48.472283], [-123.556815, 48.472555], [-123.554977, 48.473335], [-123.554484, 48.473776], [-123.55427, 48.474267], [-123.554174, 48.47479], [-123.553858, 48.47571], [-123.552971, 48.47745], [-123.552958, 48.477866], [-123.553081, 48.478242], [-123.553887, 48.479389], [-123.55525, 48.48101], [-123.556342, 48.481579], [-123.556808, 48.481901], [-123.557939, 48.48342], [-123.558143, 48.483783], [-123.558242, 48.484147], [-123.557931, 48.485324], [-123.558269, 48.486573], [-123.558151, 48.48822], [-123.558321, 48.488993], [-123.55898, 48.490286], [-123.559013, 48.490496], [-123.558945, 48.490874], [-123.558458, 48.491691], [-123.558356, 48.49216], [-123.558565, 48.492702], [-123.559354, 48.493688], [-123.559499, 48.494113], [-123.559366, 48.494518], [-123.557701, 48.496535], [-123.557327, 48.497068], [-123.55713, 48.497527], [-123.557402, 48.501404], [-123.557575, 48.502312], [-123.557402, 48.502735], [-123.556882, 48.503323], [-123.556761, 48.503563], [-123.556734, 48.50399], [-123.556888, 48.504464], [-123.555161, 48.504435], [-123.55541, 48.504794], [-123.556548, 48.505839], [-123.556818, 48.506188], [-123.557067, 48.507258], [-123.557084, 48.507834], [-123.548697, 48.50799], [-123.544498, 48.509288], [-123.543843, 48.510177], [-123.543887, 48.50996], [-123.5435, 48.510099], [-123.543359, 48.510835], [-123.541334, 48.513581], [-123.540518, 48.515935], [-123.539509, 48.519718], [-123.539172, 48.522232], [-123.539601, 48.525265], [-123.540545, 48.527885], [-123.541786, 48.529403], [-123.542628, 48.532835], [-123.542892, 48.534465], [-123.543332, 48.538391], [-123.54334, 48.539907], [-123.543093, 48.542517], [-123.542329, 48.546402], [-123.538204, 48.548163], [-123.523609, 48.551688], [-123.505017, 48.558576], [-123.50322, 48.558517], [-123.500068, 48.558405], [-123.493782, 48.558039], [-123.493335, 48.55021], [-123.488671, 48.550337], [-123.488501, 48.550223], [-123.488562, 48.54403], [-123.477786, 48.544144], [-123.471411, 48.543953], [-123.469617, 48.543997], [-123.469903, 48.546522], [-123.474599, 48.548759], [-123.471657, 48.551196], [-123.471441, 48.557266], [-123.470815, 48.556998], [-123.469087, 48.555484], [-123.466167, 48.553753], [-123.465434, 48.553587], [-123.463362, 48.553479], [-123.462677, 48.553014], [-123.460569, 48.551161], [-123.457762, 48.551219], [-123.457808, 48.552627], [-123.458376, 48.558908], [-123.45934, 48.558886], [-123.459774, 48.558776], [-123.460978, 48.558637], [-123.461454, 48.558725], [-123.461877, 48.559119], [-123.462028, 48.559182], [-123.462379, 48.559181], [-123.463407, 48.558941], [-123.463856, 48.55894], [-123.464317, 48.559109], [-123.465955, 48.559543], [-123.467072, 48.559668], [-123.474352, 48.561178], [-123.475561, 48.56278], [-123.475835, 48.564471], [-123.475103, 48.567792], [-123.472976, 48.570647], [-123.471959, 48.571842], [-123.471418, 48.573229], [-123.474323, 48.57773], [-123.475021, 48.579852], [-123.483394, 48.581455], [-123.490563, 48.581062], [-123.502946, 48.57386], [-123.507128, 48.56706], [-123.512461, 48.561174], [-123.535886, 48.553457], [-123.543136, 48.550709], [-123.546418, 48.546763], [-123.544944, 48.535694], [-123.555475, 48.536023], [-123.560113, 48.535706], [-123.568072, 48.535745], [-123.579263, 48.535677], [-123.579196, 48.531698], [-123.581119, 48.53176], [-123.580885, 48.526142], [-123.580977, 48.524723], [-123.586246, 48.525088], [-123.586436, 48.521211], [-123.608662, 48.521707], [-123.608829, 48.529018], [-123.616832, 48.529125], [-123.617101, 48.525598], [-123.640356, 48.525954], [-123.641294, 48.514855], [-123.635718, 48.514729], [-123.636226, 48.500907], [-123.652181, 48.50072], [-123.65803, 48.500842], [-123.659753, 48.500749], [-123.666962, 48.500832], [-123.669321, 48.50073], [-123.673616, 48.500742], [-123.694394, 48.500593], [-123.70008, 48.500357], [-123.710477, 48.500507]]]]}, "properties": {"name": "Juan de Fuca (Part 1)", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Juan de Fuca (Part 1)", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917054", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.356856, 48.680749], [-124.356839, 48.695192], [-124.363133, 48.69509], [-124.379981, 48.695267], [-124.379291, 48.681089], [-124.379482, 48.680143], [-124.379552, 48.679251], [-124.379348, 48.67821], [-124.379456, 48.677193], [-124.37941, 48.676978], [-124.379111, 48.676468], [-124.378788, 48.676139], [-124.378053, 48.67506], [-124.377923, 48.674288], [-124.377933, 48.673702], [-124.37812, 48.67253], [-124.378437, 48.672203], [-124.378813, 48.672063], [-124.379078, 48.671862], [-124.37974, 48.671666], [-124.379796, 48.671251], [-124.379577, 48.67066], [-124.379663, 48.670344], [-124.381338, 48.668551], [-124.381626, 48.668125], [-124.381824, 48.66743], [-124.381829, 48.667124], [-124.38168, 48.666613], [-124.381865, 48.665478], [-124.382258, 48.664907], [-124.382818, 48.664337], [-124.408206, 48.665534], [-124.413697, 48.665685], [-124.413075, 48.654497], [-124.412685, 48.636857], [-124.418656, 48.636846], [-124.41929, 48.633195], [-124.421776, 48.633245], [-124.421015, 48.628179], [-124.422479, 48.627897], [-124.421344, 48.626293], [-124.426488, 48.624694], [-124.428784, 48.627245], [-124.435506, 48.627241], [-124.447312, 48.626524], [-124.447272, 48.634907], [-124.488144, 48.633926], [-124.490185, 48.634141], [-124.488542, 48.605317], [-124.487993, 48.592201], [-124.498583, 48.59212], [-124.498256, 48.559704], [-124.500356, 48.559593], [-124.500664, 48.539898], [-124.499387, 48.496914], [-124.471626, 48.483171], [-124.400098, 48.450788], [-124.379596, 48.441118], [-124.334924, 48.416571], [-124.310272, 48.403083], [-124.276295, 48.384579], [-124.248651, 48.376685], [-124.132036, 48.343791], [-124.111181, 48.364579], [-124.055133, 48.420851], [-124.055281, 48.421079], [-124.055285, 48.421267], [-124.054765, 48.421669], [-124.055169, 48.421889], [-124.054656, 48.42268], [-124.05399, 48.423396], [-124.053915, 48.423672], [-124.053576, 48.42416], [-124.053171, 48.424521], [-124.052556, 48.424835], [-124.052208, 48.425285], [-124.05199, 48.427598], [-124.051671, 48.428619], [-124.051613, 48.42914], [-124.051433, 48.429329], [-124.051304, 48.42969], [-124.051319, 48.430296], [-124.05146, 48.43069], [-124.041955, 48.43049], [-124.025738, 48.430032], [-124.014837, 48.430015], [-124.015095, 48.421285], [-124.015101, 48.418895], [-124.003351, 48.418888], [-124.003479, 48.416796], [-123.981674, 48.416663], [-123.98182, 48.407467], [-123.977038, 48.407527], [-123.971464, 48.407678], [-123.97134, 48.403975], [-123.956264, 48.404161], [-123.949935, 48.403682], [-123.949927, 48.405114], [-123.940083, 48.406128], [-123.940081, 48.405826], [-123.93633, 48.40596], [-123.936466, 48.405248], [-123.93645, 48.404383], [-123.923362, 48.404231], [-123.923285, 48.402396], [-123.912274, 48.402366], [-123.912233, 48.405167], [-123.889423, 48.402627], [-123.876505, 48.402904], [-123.86562, 48.402937], [-123.86575, 48.394416], [-123.866062, 48.394412], [-123.866051, 48.392932], [-123.866261, 48.389823], [-123.862658, 48.389643], [-123.862171, 48.389939], [-123.857824, 48.38809], [-123.844027, 48.387858], [-123.837375, 48.387934], [-123.791592, 48.404265], [-123.790555, 48.404629], [-123.788202, 48.405251], [-123.786092, 48.406244], [-123.785196, 48.406565], [-123.77659, 48.409159], [-123.773981, 48.409883], [-123.767196, 48.411633], [-123.756388, 48.41484], [-123.748298, 48.41778], [-123.744943, 48.418938], [-123.74496, 48.421371], [-123.746373, 48.421394], [-123.745992, 48.433701], [-123.750085, 48.433737], [-123.75006, 48.435722], [-123.747548, 48.435787], [-123.747446, 48.438562], [-123.741764, 48.438554], [-123.741608, 48.442532], [-123.741505, 48.45073], [-123.742728, 48.450762], [-123.742508, 48.457336], [-123.746776, 48.457431], [-123.746843, 48.460194], [-123.74984, 48.460175], [-123.750272, 48.466822], [-123.744899, 48.466797], [-123.744852, 48.470494], [-123.746002, 48.4705], [-123.746181, 48.474017], [-123.75212, 48.473941], [-123.752213, 48.479854], [-123.749239, 48.479879], [-123.749274, 48.487695], [-123.744745, 48.487751], [-123.744721, 48.488654], [-123.746188, 48.488733], [-123.74607, 48.493263], [-123.747544, 48.493249], [-123.74753, 48.494151], [-123.748988, 48.494133], [-123.749029, 48.496847], [-123.750384, 48.496828], [-123.750658, 48.500806], [-123.746643, 48.500811], [-123.742456, 48.501015], [-123.723505, 48.501012], [-123.712288, 48.500546], [-123.706472, 48.500423], [-123.70008, 48.500357], [-123.694394, 48.500593], [-123.673616, 48.500742], [-123.669321, 48.50073], [-123.666962, 48.500832], [-123.659753, 48.500749], [-123.65803, 48.500842], [-123.652181, 48.50072], [-123.636226, 48.500907], [-123.635718, 48.514729], [-123.641294, 48.514855], [-123.640356, 48.525954], [-123.617101, 48.525598], [-123.616832, 48.529125], [-123.617097, 48.531958], [-123.627474, 48.53237], [-123.627437, 48.533144], [-123.628103, 48.540683], [-123.628328, 48.547029], [-123.635076, 48.547104], [-123.634619, 48.561801], [-123.645681, 48.56197], [-123.645572, 48.569987], [-123.643619, 48.570039], [-123.643391, 48.573116], [-123.640139, 48.572872], [-123.639951, 48.575626], [-123.640114, 48.580368], [-123.648077, 48.580488], [-123.647574, 48.596653], [-123.652964, 48.5967], [-123.652873, 48.601892], [-123.658302, 48.602053], [-123.658266, 48.608365], [-123.666851, 48.608458], [-123.666977, 48.606805], [-123.661382, 48.606761], [-123.66117, 48.598954], [-123.664302, 48.598973], [-123.668961, 48.598814], [-123.668828, 48.602474], [-123.688209, 48.602821], [-123.688376, 48.622132], [-123.693204, 48.622154], [-123.692892, 48.616454], [-123.701021, 48.616428], [-123.700956, 48.612939], [-123.714594, 48.613105], [-123.715067, 48.619284], [-123.72229, 48.619309], [-123.722611, 48.622795], [-123.745667, 48.622889], [-123.745325, 48.608497], [-123.74437, 48.608541], [-123.744441, 48.605559], [-123.750873, 48.605478], [-123.750899, 48.604472], [-123.765736, 48.604606], [-123.76579, 48.600884], [-123.771146, 48.601045], [-123.771321, 48.593797], [-123.790287, 48.593649], [-123.790559, 48.588861], [-123.78513, 48.588795], [-123.785233, 48.581853], [-123.779708, 48.581832], [-123.77949, 48.574643], [-123.806433, 48.574919], [-123.821038, 48.57498], [-123.820797, 48.588401], [-123.80112, 48.588395], [-123.801152, 48.593928], [-123.804519, 48.593993], [-123.804364, 48.595809], [-123.807124, 48.59604], [-123.807096, 48.597727], [-123.809829, 48.59777], [-123.809664, 48.59915], [-123.814572, 48.599134], [-123.814474, 48.597455], [-123.826399, 48.597478], [-123.826556, 48.599213], [-123.831145, 48.599117], [-123.831059, 48.605723], [-123.848396, 48.605767], [-123.848826, 48.603168], [-123.853601, 48.603294], [-123.853012, 48.637309], [-123.853204, 48.639567], [-123.871867, 48.63934], [-123.871997, 48.640217], [-123.874011, 48.640186], [-123.878197, 48.637822], [-123.881213, 48.63782], [-123.885198, 48.637347], [-123.88588, 48.638673], [-123.888945, 48.638921], [-123.896336, 48.636797], [-123.898028, 48.639032], [-123.901939, 48.63894], [-123.902143, 48.645257], [-123.906033, 48.645327], [-123.906173, 48.65227], [-123.910653, 48.652242], [-123.915102, 48.650215], [-123.915382, 48.644285], [-123.916809, 48.644166], [-123.91681, 48.642802], [-123.92443, 48.640123], [-123.926823, 48.639961], [-123.931817, 48.63851], [-123.946068, 48.638495], [-123.946421, 48.644364], [-123.94919, 48.644434], [-123.966498, 48.644277], [-124.022647, 48.644242], [-124.023102, 48.649074], [-124.033216, 48.649358], [-124.067809, 48.649694], [-124.11366, 48.649816], [-124.113764, 48.635928], [-124.142173, 48.635725], [-124.142487, 48.64066], [-124.155105, 48.640502], [-124.155201, 48.647599], [-124.161731, 48.647781], [-124.161714, 48.651005], [-124.174881, 48.65126], [-124.174798, 48.655931], [-124.178148, 48.65607], [-124.200304, 48.656089], [-124.218497, 48.67057], [-124.220024, 48.671694], [-124.243119, 48.68992], [-124.280056, 48.721205], [-124.280833, 48.680744], [-124.309799, 48.680669], [-124.311921, 48.680713], [-124.356856, 48.680749]], [[-124.401869, 48.566782], [-124.402538, 48.56757], [-124.402908, 48.568213], [-124.404704, 48.570413], [-124.405134, 48.570751], [-124.407043, 48.572661], [-124.408445, 48.573831], [-124.409455, 48.574558], [-124.410531, 48.57521], [-124.411194, 48.575597], [-124.412042, 48.575956], [-124.413588, 48.576432], [-124.413812, 48.576627], [-124.414635, 48.576367], [-124.414361, 48.577516], [-124.413939, 48.578004], [-124.412601, 48.578875], [-124.412394, 48.580184], [-124.412493, 48.584789], [-124.409794, 48.58472], [-124.401599, 48.584984], [-124.401703, 48.583207], [-124.401505, 48.581018], [-124.401552, 48.580502], [-124.401265, 48.577711], [-124.401464, 48.573148], [-124.401521, 48.568559], [-124.401218, 48.568086], [-124.400631, 48.566686], [-124.401869, 48.566782]]]]}, "properties": {"name": "Juan de Fuca (Part 2)", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Juan de Fuca (Part 2)", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917056", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.465742, 48.630075], [-123.464524, 48.629154], [-123.464402, 48.628993], [-123.464425, 48.628678], [-123.464749, 48.628335], [-123.464823, 48.627452], [-123.465185, 48.627064], [-123.465261, 48.62646], [-123.465801, 48.626161], [-123.466234, 48.626035], [-123.466529, 48.625808], [-123.467264, 48.624428], [-123.468353, 48.623381], [-123.468915, 48.622586], [-123.469007, 48.622226], [-123.469182, 48.621929], [-123.470296, 48.620719], [-123.471032, 48.619591], [-123.471532, 48.617375], [-123.471544, 48.616132], [-123.471418, 48.615874], [-123.470031, 48.61587], [-123.466879, 48.616004], [-123.458931, 48.616162], [-123.443717, 48.6158], [-123.443841, 48.619406], [-123.443793, 48.624327], [-123.444145, 48.630014], [-123.445557, 48.629997], [-123.448975, 48.630227], [-123.449667, 48.630217], [-123.451076, 48.630049], [-123.451877, 48.63002], [-123.463649, 48.63012], [-123.465742, 48.630075]]]]}, "properties": {"name": "Cole Bay 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cole Bay 3", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917801", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.444049, 48.666182], [-123.456813, 48.666224], [-123.458135, 48.66631], [-123.458029, 48.665937], [-123.457271, 48.665986], [-123.456619, 48.665925], [-123.455257, 48.665364], [-123.453685, 48.664228], [-123.453519, 48.664075], [-123.453465, 48.663923], [-123.452741, 48.663619], [-123.452154, 48.663218], [-123.45139, 48.662906], [-123.451117, 48.662561], [-123.450731, 48.662707], [-123.444126, 48.662668], [-123.444049, 48.666182]]]]}, "properties": {"name": "Union Bay 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Union Bay 4", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917802", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.372922, 48.589256], [-123.37402, 48.589422], [-123.37511, 48.589932], [-123.375956, 48.590532], [-123.377859, 48.59111], [-123.378321, 48.591396], [-123.37942, 48.591321], [-123.381548, 48.591386], [-123.383407, 48.591533], [-123.384576, 48.591718], [-123.385432, 48.591913], [-123.385812, 48.592056], [-123.38731, 48.592815], [-123.387935, 48.593056], [-123.38973, 48.593446], [-123.390587, 48.59383], [-123.390889, 48.594047], [-123.392635, 48.593899], [-123.393103, 48.593908], [-123.393723, 48.594147], [-123.403471, 48.594125], [-123.403445, 48.583278], [-123.390984, 48.583047], [-123.38978, 48.583079], [-123.371253, 48.582833], [-123.371171, 48.583585], [-123.370735, 48.585151], [-123.370277, 48.587239], [-123.369794, 48.588132], [-123.369917, 48.588213], [-123.370215, 48.588203], [-123.370434, 48.588327], [-123.370928, 48.589261], [-123.371559, 48.590052], [-123.372459, 48.590958], [-123.372611, 48.5912], [-123.372615, 48.591829], [-123.372325, 48.592919], [-123.372098, 48.593306], [-123.371481, 48.594043], [-123.37467, 48.594003], [-123.374908, 48.593639], [-123.375229, 48.593342], [-123.376878, 48.592382], [-123.377456, 48.591732], [-123.377548, 48.591382], [-123.377494, 48.591345], [-123.377427, 48.591382], [-123.37732, 48.591626], [-123.37701, 48.591913], [-123.376685, 48.59205], [-123.375952, 48.592007], [-123.374489, 48.592076], [-123.374407, 48.59204], [-123.37431, 48.591851], [-123.373588, 48.591187], [-123.373489, 48.590864], [-123.37319, 48.590586], [-123.372978, 48.589561], [-123.372854, 48.589337], [-123.372922, 48.589256]]]]}, "properties": {"name": "East Saanich 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "East Saanich 2", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917803", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.463389, 48.590679], [-123.465882, 48.590501], [-123.46539, 48.590358], [-123.464792, 48.590315], [-123.464644, 48.590263], [-123.464642, 48.5902], [-123.46498, 48.589936], [-123.464946, 48.589434], [-123.465122, 48.589343], [-123.465353, 48.589368], [-123.465503, 48.589306], [-123.465633, 48.588737], [-123.466129, 48.588286], [-123.466649, 48.587124], [-123.466864, 48.586897], [-123.466835, 48.586699], [-123.466545, 48.586261], [-123.466285, 48.58601], [-123.466089, 48.585372], [-123.46583, 48.585022], [-123.465787, 48.583475], [-123.46593, 48.582808], [-123.466294, 48.582501], [-123.46663, 48.582337], [-123.467052, 48.582327], [-123.467445, 48.582424], [-123.467731, 48.58237], [-123.468606, 48.581915], [-123.468997, 48.581527], [-123.469334, 48.581391], [-123.469524, 48.581354], [-123.469892, 48.581632], [-123.47023, 48.581558], [-123.470283, 48.581252], [-123.470117, 48.580974], [-123.470114, 48.580749], [-123.46988, 48.580344], [-123.469865, 48.580192], [-123.469905, 48.580119], [-123.47031, 48.57993], [-123.470337, 48.579857], [-123.470248, 48.579769], [-123.464156, 48.57962], [-123.451907, 48.579629], [-123.451538, 48.579746], [-123.441204, 48.579714], [-123.441233, 48.581358], [-123.44436, 48.581428], [-123.444328, 48.586948], [-123.443708, 48.590713], [-123.463389, 48.590679]]]]}, "properties": {"name": "South Saanich 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "South Saanich 1", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917804", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.584121, 49.011316], [-123.584694, 49.011587], [-123.584694, 49.010319], [-123.585764, 49.010318], [-123.585171, 49.008657], [-123.584696, 49.007787], [-123.58482, 49.007605], [-123.585146, 49.007667], [-123.586034, 49.008822], [-123.586724, 49.009313], [-123.586874, 49.009313], [-123.58709, 49.009043], [-123.587282, 49.009023], [-123.587708, 49.009209], [-123.587505, 49.008338], [-123.58721, 49.007728], [-123.586235, 49.006231], [-123.585585, 49.005578], [-123.585027, 49.00451], [-123.585121, 49.004401], [-123.585299, 49.004337], [-123.585612, 49.004309], [-123.585929, 49.004532], [-123.586039, 49.004559], [-123.586299, 49.004504], [-123.586519, 49.004755], [-123.586795, 49.004941], [-123.586878, 49.004933], [-123.587133, 49.004652], [-123.5872, 49.004473], [-123.587461, 49.003365], [-123.587509, 49.002779], [-123.587589, 49.002707], [-123.588013, 49.002678], [-123.588389, 49.002502], [-123.588325, 49.002201], [-123.585319, 49.002268], [-123.583234, 49.002492], [-123.583091, 49.010933], [-123.583523, 49.011651], [-123.583689, 49.011776], [-123.5838, 49.011803], [-123.583949, 49.011739], [-123.583971, 49.011352], [-123.584121, 49.011316]]]]}, "properties": {"name": "Galiano Island 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Galiano Island 9", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917805", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.612275, 48.345917], [-123.613284, 48.345972], [-123.621632, 48.337183], [-123.622688, 48.336363], [-123.622201, 48.336177], [-123.621984, 48.336178], [-123.621718, 48.336359], [-123.621623, 48.33636], [-123.621311, 48.336164], [-123.620961, 48.336345], [-123.620568, 48.336068], [-123.620472, 48.33606], [-123.620217, 48.336169], [-123.619716, 48.335956], [-123.619621, 48.335957], [-123.61942, 48.336165], [-123.619152, 48.336211], [-123.618083, 48.336046], [-123.617774, 48.336057], [-123.617407, 48.335933], [-123.616639, 48.335927], [-123.615321, 48.336303], [-123.614824, 48.336621], [-123.61461, 48.336676], [-123.614312, 48.336669], [-123.614, 48.336491], [-123.613797, 48.336483], [-123.613539, 48.336305], [-123.612485, 48.336148], [-123.61244, 48.335744], [-123.612612, 48.3355], [-123.61249, 48.335427], [-123.612223, 48.33561], [-123.612046, 48.335601], [-123.611876, 48.334846], [-123.611768, 48.334757], [-123.611483, 48.334785], [-123.611352, 48.33502], [-123.611003, 48.335113], [-123.610629, 48.335456], [-123.610371, 48.335439], [-123.610164, 48.335044], [-123.609853, 48.33492], [-123.60985, 48.334768], [-123.610064, 48.334577], [-123.609996, 48.334533], [-123.609755, 48.334597], [-123.609566, 48.334562], [-123.609497, 48.334517], [-123.609616, 48.334355], [-123.609183, 48.334186], [-123.609008, 48.334233], [-123.608688, 48.334549], [-123.608524, 48.334478], [-123.608598, 48.333857], [-123.608211, 48.334102], [-123.607817, 48.333995], [-123.607136, 48.334503], [-123.606464, 48.334821], [-123.605443, 48.335187], [-123.605348, 48.335187], [-123.605253, 48.335097], [-123.60545, 48.33462], [-123.605327, 48.33453], [-123.604519, 48.334553], [-123.60421, 48.334806], [-123.603862, 48.334933], [-123.603729, 48.33507], [-123.60369, 48.335249], [-123.604318, 48.335759], [-123.604209, 48.335868], [-123.603873, 48.335996], [-123.603622, 48.336356], [-123.60372, 48.336644], [-123.603496, 48.337023], [-123.603536, 48.337166], [-123.603366, 48.337608], [-123.603383, 48.337752], [-123.603547, 48.337977], [-123.603359, 48.338148], [-123.602833, 48.338151], [-123.602521, 48.338035], [-123.6024, 48.33792], [-123.602265, 48.33792], [-123.60209, 48.337993], [-123.601768, 48.3383], [-123.601568, 48.33831], [-123.601498, 48.338195], [-123.601506, 48.337708], [-123.601087, 48.337585], [-123.601043, 48.337396], [-123.600869, 48.337387], [-123.600706, 48.33746], [-123.600678, 48.337343], [-123.600503, 48.337363], [-123.600543, 48.337182], [-123.600393, 48.337148], [-123.599993, 48.337617], [-123.599784, 48.338059], [-123.599353, 48.338152], [-123.599043, 48.338314], [-123.598787, 48.338353], [-123.598665, 48.33828], [-123.598622, 48.338101], [-123.598808, 48.337884], [-123.598764, 48.337596], [-123.598508, 48.337617], [-123.598322, 48.337833], [-123.597755, 48.337827], [-123.597677, 48.33798], [-123.597302, 48.338189], [-123.597031, 48.338172], [-123.596813, 48.338003], [-123.596585, 48.338012], [-123.596465, 48.338166], [-123.596335, 48.338608], [-123.596107, 48.338735], [-123.595907, 48.338952], [-123.595699, 48.339546], [-123.595564, 48.339656], [-123.59544, 48.339377], [-123.59573, 48.3388], [-123.595713, 48.338602], [-123.595633, 48.338548], [-123.595445, 48.338693], [-123.595146, 48.338596], [-123.595132, 48.338416], [-123.595265, 48.338199], [-123.595129, 48.338128], [-123.595098, 48.337859], [-123.594922, 48.337833], [-123.594238, 48.338079], [-123.594103, 48.338233], [-123.594148, 48.338529], [-123.593896, 48.338881], [-123.59312, 48.339524], [-123.592904, 48.339427], [-123.592566, 48.339518], [-123.592365, 48.339663], [-123.59211, 48.339709], [-123.59195, 48.339854], [-123.591762, 48.339882], [-123.591453, 48.340153], [-123.591283, 48.340434], [-123.591312, 48.340649], [-123.591634, 48.340585], [-123.591706, 48.340953], [-123.591628, 48.341116], [-123.59128, 48.341413], [-123.591254, 48.341532], [-123.591621, 48.341718], [-123.591703, 48.341817], [-123.591543, 48.341962], [-123.591493, 48.342249], [-123.591237, 48.342332], [-123.591062, 48.342459], [-123.590753, 48.342496], [-123.589794, 48.342439], [-123.589589, 48.342251], [-123.589305, 48.342234], [-123.588864, 48.342462], [-123.58881, 48.34266], [-123.588637, 48.342678], [-123.588705, 48.342427], [-123.574954, 48.33804], [-123.572483, 48.341149], [-123.586132, 48.34637], [-123.588305, 48.347047], [-123.596435, 48.349385], [-123.603194, 48.342845], [-123.604264, 48.342332], [-123.612275, 48.345917]]]]}, "properties": {"name": "Becher Bay 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Becher Bay 1", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917809", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.434858, 48.446508], [-123.435297, 48.446389], [-123.43558, 48.446389], [-123.435929, 48.446244], [-123.435984, 48.44619], [-123.435901, 48.445929], [-123.435722, 48.445633], [-123.435641, 48.445587], [-123.434896, 48.445609], [-123.434708, 48.445546], [-123.434393, 48.445268], [-123.434017, 48.445423], [-123.4338, 48.445423], [-123.433543, 48.445317], [-123.433446, 48.445074], [-123.4332, 48.444841], [-123.432714, 48.444861], [-123.432075, 48.444485], [-123.431765, 48.444568], [-123.431278, 48.444542], [-123.430964, 48.444372], [-123.430856, 48.444239], [-123.430685, 48.443267], [-123.430816, 48.442799], [-123.431111, 48.442374], [-123.431586, 48.441954], [-123.429442, 48.442], [-123.427619, 48.441609], [-123.426609, 48.441676], [-123.426684, 48.445792], [-123.426802, 48.44624], [-123.426603, 48.446553], [-123.43042, 48.446492], [-123.430605, 48.446434], [-123.430425, 48.446222], [-123.434858, 48.446508]]]]}, "properties": {"name": "Esquimalt - Indian reserve", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Esquimalt - Indian reserve", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917811", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.414276, 48.447472], [-123.416276, 48.448055], [-123.417379, 48.44833], [-123.418349, 48.448422], [-123.418902, 48.448539], [-123.419245, 48.44868], [-123.420577, 48.449655], [-123.42087, 48.449784], [-123.42279, 48.450171], [-123.423648, 48.450451], [-123.42475, 48.451032], [-123.426079, 48.449381], [-123.426292, 48.448615], [-123.426399, 48.447075], [-123.426533, 48.446677], [-123.426802, 48.44624], [-123.426684, 48.445792], [-123.426609, 48.441676], [-123.427619, 48.441609], [-123.429442, 48.442], [-123.431586, 48.441954], [-123.431727, 48.441904], [-123.432634, 48.441874], [-123.43327, 48.441917], [-123.433554, 48.442069], [-123.433788, 48.442356], [-123.433898, 48.442733], [-123.433994, 48.44276], [-123.434466, 48.442632], [-123.434801, 48.442316], [-123.435395, 48.442116], [-123.436216, 48.441582], [-123.436594, 48.441625], [-123.436808, 48.441417], [-123.436819, 48.441102], [-123.436533, 48.440897], [-123.436477, 48.440618], [-123.436315, 48.440528], [-123.435757, 48.440387], [-123.435136, 48.44048], [-123.434961, 48.440553], [-123.434545, 48.440886], [-123.434425, 48.440914], [-123.43414, 48.440862], [-123.432659, 48.440103], [-123.432385, 48.439788], [-123.431992, 48.439583], [-123.431773, 48.439322], [-123.431613, 48.439395], [-123.430538, 48.439563], [-123.426982, 48.441126], [-123.421632, 48.443273], [-123.415975, 48.445248], [-123.415354, 48.445771], [-123.414453, 48.445838], [-123.412355, 48.446591], [-123.414276, 48.447472]]]]}, "properties": {"name": "New Songhees 1A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "New Songhees 1A", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917812", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.401521, 48.568559], [-124.401464, 48.573148], [-124.401265, 48.577711], [-124.401552, 48.580502], [-124.401505, 48.581018], [-124.401703, 48.583207], [-124.401599, 48.584984], [-124.409794, 48.58472], [-124.412493, 48.584789], [-124.412394, 48.580184], [-124.412601, 48.578875], [-124.413939, 48.578004], [-124.414361, 48.577516], [-124.414635, 48.576367], [-124.413812, 48.576627], [-124.413588, 48.576432], [-124.412042, 48.575956], [-124.411194, 48.575597], [-124.409455, 48.574558], [-124.408445, 48.573831], [-124.407043, 48.572661], [-124.405134, 48.570751], [-124.404704, 48.570413], [-124.402908, 48.568213], [-124.402538, 48.56757], [-124.401869, 48.566782], [-124.400631, 48.566686], [-124.401521, 48.568559]]]]}, "properties": {"name": "Gordon River 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Gordon River 2", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917815", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.741205, 48.366249], [-123.753867, 48.364011], [-123.754846, 48.363404], [-123.754152, 48.362511], [-123.754093, 48.362207], [-123.753648, 48.361238], [-123.753562, 48.360869], [-123.753536, 48.360025], [-123.753785, 48.359482], [-123.753755, 48.359294], [-123.753644, 48.359196], [-123.752771, 48.358875], [-123.751172, 48.359438], [-123.739978, 48.362781], [-123.741205, 48.366249]]], [[[-123.689631, 48.389725], [-123.695911, 48.387842], [-123.696838, 48.387714], [-123.702536, 48.386268], [-123.700633, 48.3859], [-123.700279, 48.385749], [-123.699952, 48.385437], [-123.699396, 48.385332], [-123.699327, 48.385279], [-123.699297, 48.384991], [-123.699131, 48.384793], [-123.697502, 48.384066], [-123.696476, 48.383373], [-123.694298, 48.38401], [-123.692932, 48.38435], [-123.693442, 48.385284], [-123.693909, 48.385807], [-123.694576, 48.386277], [-123.69407, 48.386792], [-123.692915, 48.387446], [-123.688934, 48.388394], [-123.689631, 48.389725]]]]}, "properties": {"name": "T'Sou-ke", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "T'Sou-ke", "economic_region_id": "5910", "census_division_code": "5917", "census_subdivision_code": "5917819", "regional_district_aka_census_division": "Capital"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.744299, 48.936219], [-123.762351, 48.936842], [-123.76608, 48.936338], [-123.772905, 48.93623], [-123.78333, 48.936286], [-123.783088, 48.89756], [-123.78309, 48.88766], [-123.782922, 48.885374], [-123.783307, 48.885304], [-123.78314, 48.883055], [-123.783241, 48.849787], [-123.783947, 48.814251], [-123.78367, 48.803155], [-123.783057, 48.79887], [-123.782862, 48.792076], [-123.782731, 48.772638], [-123.782962, 48.770067], [-123.782909, 48.76883], [-123.78309, 48.766899], [-123.782933, 48.762103], [-123.782177, 48.762491], [-123.781558, 48.762587], [-123.780264, 48.76258], [-123.778482, 48.762458], [-123.776651, 48.762133], [-123.775842, 48.761714], [-123.774915, 48.760695], [-123.774423, 48.760474], [-123.773906, 48.760387], [-123.773151, 48.760396], [-123.772673, 48.760549], [-123.76973, 48.762389], [-123.76892, 48.762817], [-123.767652, 48.763175], [-123.767808, 48.770008], [-123.75982, 48.769865], [-123.757968, 48.769927], [-123.75518, 48.770557], [-123.75441, 48.771006], [-123.753914, 48.771671], [-123.7539, 48.772489], [-123.754323, 48.773179], [-123.754414, 48.776997], [-123.751534, 48.777125], [-123.728076, 48.777424], [-123.7275, 48.777492], [-123.726963, 48.777446], [-123.718448, 48.777528], [-123.718394, 48.777818], [-123.719194, 48.778027], [-123.719152, 48.779614], [-123.718996, 48.780256], [-123.719496, 48.7822], [-123.719767, 48.784382], [-123.719729, 48.786221], [-123.719367, 48.786663], [-123.719575, 48.788088], [-123.714754, 48.788398], [-123.713509, 48.788429], [-123.711825, 48.78838], [-123.710666, 48.788471], [-123.70991, 48.787503], [-123.709366, 48.786461], [-123.708445, 48.782536], [-123.707801, 48.780313], [-123.707103, 48.780246], [-123.705584, 48.780406], [-123.692561, 48.780625], [-123.684942, 48.780516], [-123.679145, 48.780647], [-123.671513, 48.780659], [-123.671403, 48.780735], [-123.671405, 48.780839], [-123.671172, 48.780658], [-123.65476, 48.780637], [-123.65418, 48.780524], [-123.643765, 48.780358], [-123.643559, 48.777243], [-123.64055, 48.777161], [-123.640463, 48.771288], [-123.640681, 48.769761], [-123.63885, 48.769983], [-123.638486, 48.770097], [-123.638274, 48.771026], [-123.638434, 48.772856], [-123.63847, 48.777125], [-123.629496, 48.777236], [-123.629225, 48.773742], [-123.617345, 48.773897], [-123.603041, 48.773716], [-123.602457, 48.766576], [-123.60162, 48.766515], [-123.596882, 48.766667], [-123.588295, 48.766842], [-123.588412, 48.773482], [-123.569531, 48.773628], [-123.566155, 48.774956], [-123.562753, 48.77739], [-123.557891, 48.778273], [-123.555251, 48.780925], [-123.556885, 48.784484], [-123.560548, 48.790059], [-123.560695, 48.792933], [-123.559702, 48.796217], [-123.56056, 48.800178], [-123.576888, 48.805651], [-123.588935, 48.811078], [-123.592393, 48.809221], [-123.596149, 48.807501], [-123.597417, 48.805455], [-123.599942, 48.803812], [-123.602179, 48.806301], [-123.6053, 48.815916], [-123.60129, 48.816858], [-123.598757, 48.819587], [-123.595975, 48.820457], [-123.590701, 48.818061], [-123.587099, 48.819162], [-123.58237, 48.820908], [-123.580388, 48.825081], [-123.58026, 48.827178], [-123.584532, 48.838593], [-123.585264, 48.840929], [-123.587951, 48.844438], [-123.588628, 48.84618], [-123.588032, 48.847044], [-123.588065, 48.848404], [-123.589209, 48.849652], [-123.594281, 48.851944], [-123.604165, 48.854094], [-123.607941, 48.85548], [-123.61366, 48.856956], [-123.615697, 48.860578], [-123.621133, 48.863806], [-123.630199, 48.865723], [-123.635545, 48.865549], [-123.636406, 48.868081], [-123.636867, 48.870803], [-123.639317, 48.87671], [-123.64084, 48.881482], [-123.643425, 48.883879], [-123.648854, 48.887598], [-123.651199, 48.887447], [-123.652247, 48.887132], [-123.65302, 48.886486], [-123.653268, 48.885657], [-123.65484, 48.884632], [-123.657189, 48.884273], [-123.658648, 48.88462], [-123.659528, 48.885363], [-123.660627, 48.887124], [-123.663379, 48.889199], [-123.665012, 48.891517], [-123.666868, 48.893878], [-123.670037, 48.897604], [-123.677258, 48.902533], [-123.687995, 48.906714], [-123.694277, 48.909722], [-123.701344, 48.927273], [-123.702246, 48.929264], [-123.704155, 48.929769], [-123.705649, 48.929911], [-123.706988, 48.929789], [-123.708675, 48.929429], [-123.711647, 48.92856], [-123.720421, 48.934143], [-123.723456, 48.936153], [-123.734497, 48.93632], [-123.735674, 48.936121], [-123.735431, 48.936538], [-123.735673, 48.936631], [-123.736024, 48.936099], [-123.744299, 48.936219]], [[-123.700903, 48.899851], [-123.701049, 48.903579], [-123.691935, 48.903476], [-123.689868, 48.901683], [-123.688556, 48.900019], [-123.700903, 48.899851]], [[-123.693991, 48.87084], [-123.694508, 48.870765], [-123.700574, 48.870835], [-123.700556, 48.87171], [-123.700135, 48.872574], [-123.700179, 48.874105], [-123.699676, 48.878732], [-123.699635, 48.881848], [-123.687318, 48.881465], [-123.687001, 48.880785], [-123.686813, 48.87871], [-123.686708, 48.870895], [-123.693991, 48.87084]], [[-123.677395, 48.88169], [-123.678211, 48.882524], [-123.678439, 48.883088], [-123.678143, 48.883383], [-123.678135, 48.883614], [-123.678306, 48.883845], [-123.678469, 48.883893], [-123.678745, 48.884133], [-123.678998, 48.884893], [-123.678877, 48.885053], [-123.678423, 48.885413], [-123.67317, 48.885415], [-123.673169, 48.884972], [-123.673246, 48.884792], [-123.67316, 48.88176], [-123.677395, 48.88169]]], [[[-123.59747, 48.75667], [-123.596221, 48.757572], [-123.59616, 48.758508], [-123.59638, 48.759531], [-123.597953, 48.761582], [-123.598279, 48.763228], [-123.598718, 48.763167], [-123.600423, 48.763139], [-123.602399, 48.763226], [-123.601589, 48.755588], [-123.599103, 48.756057], [-123.59747, 48.75667]]], [[[-123.640186, 48.766193], [-123.643755, 48.766189], [-123.644205, 48.765471], [-123.64414, 48.762909], [-123.644764, 48.762895], [-123.644725, 48.762595], [-123.645068, 48.762182], [-123.645887, 48.761611], [-123.645883, 48.760985], [-123.643821, 48.761096], [-123.644008, 48.759381], [-123.633303, 48.759622], [-123.628671, 48.759779], [-123.610243, 48.755259], [-123.61033, 48.758311], [-123.609649, 48.76675], [-123.615775, 48.766745], [-123.615815, 48.770036], [-123.629199, 48.769801], [-123.628765, 48.766802], [-123.632188, 48.766063], [-123.640186, 48.766193]]], [[[-123.645405, 48.777775], [-123.648254, 48.77783], [-123.648444, 48.778119], [-123.64971, 48.778204], [-123.649662, 48.777431], [-123.645395, 48.7773], [-123.645405, 48.777775]]], [[[-123.685171, 48.772288], [-123.686393, 48.772056], [-123.687345, 48.771933], [-123.687942, 48.771912], [-123.689699, 48.771927], [-123.691633, 48.772033], [-123.698191, 48.771913], [-123.698745, 48.771963], [-123.698732, 48.769611], [-123.684886, 48.769652], [-123.684692, 48.769714], [-123.684707, 48.772483], [-123.685171, 48.772288]]]]}, "properties": {"name": "North Cowichan", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "North Cowichan", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919008", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.708445, 48.782536], [-123.709366, 48.786461], [-123.70991, 48.787503], [-123.710666, 48.788471], [-123.711825, 48.78838], [-123.713509, 48.788429], [-123.714754, 48.788398], [-123.719575, 48.788088], [-123.719367, 48.786663], [-123.719729, 48.786221], [-123.719767, 48.784382], [-123.719496, 48.7822], [-123.718996, 48.780256], [-123.715044, 48.780189], [-123.714914, 48.779811], [-123.714943, 48.779635], [-123.714798, 48.779505], [-123.712429, 48.778545], [-123.712311, 48.777625], [-123.712545, 48.776556], [-123.712269, 48.776495], [-123.711589, 48.776688], [-123.710104, 48.776779], [-123.70739, 48.776729], [-123.70693, 48.776767], [-123.705889, 48.776746], [-123.705921, 48.776842], [-123.70205, 48.776871], [-123.702058, 48.776768], [-123.698758, 48.7768], [-123.698745, 48.771963], [-123.698191, 48.771913], [-123.691633, 48.772033], [-123.689128, 48.771913], [-123.687345, 48.771933], [-123.685565, 48.772204], [-123.685078, 48.772315], [-123.684707, 48.772483], [-123.685106, 48.775373], [-123.685094, 48.779704], [-123.684961, 48.779866], [-123.684942, 48.780516], [-123.692561, 48.780625], [-123.705584, 48.780406], [-123.707103, 48.780246], [-123.707801, 48.780313], [-123.708445, 48.782536]], [[-123.714427, 48.779573], [-123.714642, 48.779716], [-123.714809, 48.780226], [-123.712431, 48.780221], [-123.712478, 48.778766], [-123.714427, 48.779573]]]]}, "properties": {"name": "Duncan", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Duncan", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919012", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.635804, 48.897487], [-123.687665, 48.935596], [-123.713627, 48.936062], [-123.723456, 48.936153], [-123.720421, 48.934143], [-123.711647, 48.92856], [-123.708675, 48.929429], [-123.706988, 48.929789], [-123.705649, 48.929911], [-123.704155, 48.929769], [-123.702246, 48.929264], [-123.701344, 48.927273], [-123.694277, 48.909722], [-123.687995, 48.906714], [-123.677258, 48.902533], [-123.670037, 48.897604], [-123.666868, 48.893878], [-123.665012, 48.891517], [-123.663379, 48.889199], [-123.660627, 48.887124], [-123.659528, 48.885363], [-123.658648, 48.88462], [-123.657189, 48.884273], [-123.65484, 48.884632], [-123.653268, 48.885657], [-123.65302, 48.886486], [-123.652247, 48.887132], [-123.651199, 48.887447], [-123.648854, 48.887598], [-123.643425, 48.883879], [-123.64084, 48.881482], [-123.639317, 48.87671], [-123.636867, 48.870803], [-123.636406, 48.868081], [-123.635545, 48.865549], [-123.630199, 48.865723], [-123.621133, 48.863806], [-123.615697, 48.860578], [-123.61366, 48.856956], [-123.607941, 48.85548], [-123.604165, 48.854094], [-123.594281, 48.851944], [-123.589209, 48.849652], [-123.588065, 48.848404], [-123.588032, 48.847044], [-123.588628, 48.84618], [-123.587951, 48.844438], [-123.585264, 48.840929], [-123.584532, 48.838593], [-123.58026, 48.827178], [-123.580388, 48.825081], [-123.58237, 48.820908], [-123.587099, 48.819162], [-123.590701, 48.818061], [-123.595975, 48.820457], [-123.598757, 48.819587], [-123.60129, 48.816858], [-123.6053, 48.815916], [-123.602179, 48.806301], [-123.599942, 48.803812], [-123.597417, 48.805455], [-123.596149, 48.807501], [-123.592393, 48.809221], [-123.588935, 48.811078], [-123.576888, 48.805651], [-123.56056, 48.800178], [-123.559702, 48.796217], [-123.560695, 48.792933], [-123.560548, 48.790059], [-123.556885, 48.784484], [-123.555251, 48.780925], [-123.557891, 48.778273], [-123.562753, 48.77739], [-123.566155, 48.774956], [-123.569531, 48.773628], [-123.572036, 48.771555], [-123.574227, 48.769938], [-123.57681, 48.767815], [-123.577546, 48.764341], [-123.57645, 48.761139], [-123.573568, 48.757462], [-123.56957, 48.753677], [-123.568742, 48.75169], [-123.568357, 48.748816], [-123.568538, 48.746272], [-123.569026, 48.744103], [-123.568893, 48.742158], [-123.569967, 48.74177], [-123.572573, 48.743258], [-123.574217, 48.74456], [-123.576418, 48.744934], [-123.578432, 48.746151], [-123.581802, 48.751106], [-123.583687, 48.751448], [-123.585459, 48.751296], [-123.587591, 48.752568], [-123.594347, 48.759072], [-123.594864, 48.757577], [-123.596562, 48.75636], [-123.600013, 48.754877], [-123.601489, 48.754541], [-123.605747, 48.75456], [-123.610243, 48.755259], [-123.628671, 48.759779], [-123.633303, 48.759622], [-123.644008, 48.759381], [-123.644036, 48.759133], [-123.649727, 48.759083], [-123.650774, 48.759146], [-123.650706, 48.75754], [-123.651427, 48.756738], [-123.650278, 48.756029], [-123.649991, 48.755588], [-123.649813, 48.755002], [-123.650117, 48.755171], [-123.650586, 48.755285], [-123.65203, 48.755404], [-123.65796, 48.755402], [-123.660097, 48.755242], [-123.663272, 48.755315], [-123.670414, 48.755334], [-123.671423, 48.755402], [-123.671312, 48.750509], [-123.670512, 48.749935], [-123.657458, 48.741913], [-123.651744, 48.738176], [-123.640573, 48.729858], [-123.635343, 48.724251], [-123.633716, 48.721909], [-123.632787, 48.721081], [-123.631738, 48.720572], [-123.629988, 48.720196], [-123.618828, 48.71856], [-123.617137, 48.718486], [-123.616201, 48.718357], [-123.616231, 48.719088], [-123.59895, 48.719099], [-123.579711, 48.719034], [-123.572282, 48.719094], [-123.5698, 48.718988], [-123.561237, 48.71907], [-123.533907, 48.725788], [-123.539298, 48.730348], [-123.546746, 48.737589], [-123.565039, 48.754156], [-123.570845, 48.766241], [-123.565474, 48.772698], [-123.552894, 48.778248], [-123.553484, 48.783721], [-123.556585, 48.789432], [-123.556698, 48.797734], [-123.559159, 48.804596], [-123.569388, 48.813001], [-123.57516, 48.820305], [-123.576282, 48.836957], [-123.577399, 48.846023], [-123.59481, 48.865145], [-123.602542, 48.871626], [-123.614466, 48.881783], [-123.625113, 48.889457], [-123.635804, 48.897487]], [[-123.612393, 48.740455], [-123.611914, 48.740341], [-123.611206, 48.740292], [-123.610236, 48.73981], [-123.608665, 48.739252], [-123.605173, 48.738479], [-123.603616, 48.73791], [-123.602838, 48.737708], [-123.602167, 48.73764], [-123.609054, 48.737176], [-123.615752, 48.737413], [-123.615489, 48.738657], [-123.615478, 48.740032], [-123.615615, 48.740681], [-123.61536, 48.740673], [-123.614624, 48.740425], [-123.613833, 48.740313], [-123.612393, 48.740455]], [[-123.630146, 48.743831], [-123.63007, 48.743113], [-123.630016, 48.740957], [-123.643784, 48.740771], [-123.643858, 48.744211], [-123.637011, 48.744182], [-123.636415, 48.743896], [-123.634985, 48.743626], [-123.633918, 48.743326], [-123.633141, 48.743213], [-123.632543, 48.743217], [-123.632058, 48.743516], [-123.631935, 48.743534], [-123.631704, 48.743527], [-123.631471, 48.743331], [-123.630708, 48.743335], [-123.630658, 48.743577], [-123.630523, 48.743741], [-123.630146, 48.743831]]], [[[-123.67108, 48.76265], [-123.679277, 48.76257], [-123.68424, 48.762463], [-123.684416, 48.765825], [-123.685802, 48.765783], [-123.697142, 48.766002], [-123.696435, 48.765537], [-123.687506, 48.760865], [-123.68303, 48.75898], [-123.671265, 48.758734], [-123.67108, 48.76265]]]]}, "properties": {"name": "Cowichan Valley D", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley D", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919013", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.680748, 49.124637], [-123.683303, 49.124824], [-123.687856, 49.125592], [-123.690616, 49.126175], [-123.694543, 49.127036], [-123.700491, 49.128898], [-123.708814, 49.12941], [-123.71249, 49.129198], [-123.716211, 49.128321], [-123.719007, 49.127383], [-123.723114, 49.125659], [-123.725939, 49.124576], [-123.728025, 49.123407], [-123.729622, 49.122371], [-123.73065, 49.121532], [-123.730826, 49.121243], [-123.731439, 49.119978], [-123.731814, 49.118485], [-123.731943, 49.116291], [-123.73163, 49.114781], [-123.730822, 49.113404], [-123.729238, 49.112065], [-123.723027, 49.109735], [-123.71927, 49.107387], [-123.716876, 49.104744], [-123.715283, 49.102115], [-123.71449, 49.100336], [-123.714181, 49.098883], [-123.714064, 49.096793], [-123.714606, 49.095109], [-123.715746, 49.093284], [-123.717805, 49.091172], [-123.720807, 49.088636], [-123.727657, 49.084377], [-123.735753, 49.0785], [-123.737673, 49.076615], [-123.739213, 49.073799], [-123.73991, 49.071146], [-123.740433, 49.057054], [-123.738441, 49.035853], [-123.734629, 48.985986], [-123.7345, 48.985795], [-123.764096, 48.977796], [-123.788047, 48.971911], [-123.787901, 48.971264], [-123.788085, 48.969095], [-123.788769, 48.969472], [-123.788801, 48.967526], [-123.787568, 48.966668], [-123.786432, 48.965984], [-123.785472, 48.961542], [-123.784349, 48.961363], [-123.785052, 48.965155], [-123.783774, 48.964387], [-123.782451, 48.963368], [-123.781255, 48.962123], [-123.780456, 48.960867], [-123.78154, 48.960755], [-123.781675, 48.961521], [-123.783065, 48.96204], [-123.782917, 48.960384], [-123.781486, 48.960464], [-123.781428, 48.959804], [-123.780429, 48.959837], [-123.779983, 48.959803], [-123.778901, 48.955418], [-123.779364, 48.955529], [-123.781011, 48.955473], [-123.780961, 48.954679], [-123.779242, 48.954723], [-123.778715, 48.954639], [-123.777913, 48.951343], [-123.777573, 48.950511], [-123.776884, 48.949456], [-123.776263, 48.948793], [-123.771099, 48.944356], [-123.770357, 48.939481], [-123.773184, 48.939388], [-123.772905, 48.93623], [-123.76608, 48.936338], [-123.762351, 48.936842], [-123.744299, 48.936219], [-123.736024, 48.936099], [-123.735673, 48.936631], [-123.735431, 48.936538], [-123.735674, 48.936121], [-123.734493, 48.93632], [-123.713627, 48.936062], [-123.687665, 48.935596], [-123.635804, 48.897487], [-123.625109, 48.889467], [-123.612407, 48.919133], [-123.611609, 48.941091], [-123.623277, 48.966491], [-123.630038, 48.981904], [-123.62652, 48.984127], [-123.612417, 48.989046], [-123.605467, 49.001888], [-123.601449, 49.005243], [-123.591732, 49.013636], [-123.587582, 49.014546], [-123.568406, 49.018257], [-123.528797, 49.014145], [-123.505991, 49.010874], [-123.401604, 49.004407], [-123.357125, 49.002785], [-123.377996, 49.035962], [-123.385462, 49.048059], [-123.401052, 49.07352], [-123.421836, 49.107686], [-123.434809, 49.129359], [-123.483368, 49.128424], [-123.500012, 49.12834], [-123.680748, 49.124637]], [[-123.698953, 49.101001], [-123.700153, 49.101598], [-123.7006, 49.102135], [-123.700685, 49.102467], [-123.701021, 49.102987], [-123.701727, 49.103468], [-123.7018, 49.10371], [-123.701625, 49.103918], [-123.701558, 49.104126], [-123.701631, 49.104395], [-123.702462, 49.104956], [-123.703948, 49.106396], [-123.704431, 49.106635], [-123.704792, 49.107011], [-123.705857, 49.107671], [-123.706235, 49.108226], [-123.70632, 49.108585], [-123.706571, 49.108854], [-123.706643, 49.109114], [-123.706894, 49.109373], [-123.707081, 49.10993], [-123.707057, 49.110209], [-123.707195, 49.110428], [-123.673578, 49.110634], [-123.673062, 49.110206], [-123.672782, 49.109883], [-123.672453, 49.109848], [-123.672248, 49.109769], [-123.672163, 49.109572], [-123.671678, 49.109223], [-123.671372, 49.10882], [-123.670486, 49.107216], [-123.669899, 49.106419], [-123.669897, 49.106175], [-123.6694, 49.104982], [-123.668883, 49.104211], [-123.668699, 49.103692], [-123.668792, 49.103565], [-123.669066, 49.103553], [-123.669397, 49.103615], [-123.669588, 49.103551], [-123.669607, 49.102948], [-123.669711, 49.102569], [-123.669667, 49.102408], [-123.669252, 49.102086], [-123.669099, 49.101853], [-123.66863, 49.101622], [-123.66821, 49.102002], [-123.668004, 49.102058], [-123.667853, 49.102014], [-123.667536, 49.101782], [-123.667187, 49.10128], [-123.667222, 49.100929], [-123.667455, 49.100927], [-123.667704, 49.101015], [-123.668061, 49.10105], [-123.6684, 49.100842], [-123.668478, 49.100508], [-123.668069, 49.099628], [-123.667929, 49.099432], [-123.66775, 49.099379], [-123.667694, 49.099298], [-123.667705, 49.099127], [-123.667841, 49.098982], [-123.667811, 49.098838], [-123.667382, 49.098534], [-123.667312, 49.098365], [-123.667407, 49.098328], [-123.668137, 49.098576], [-123.668314, 49.098493], [-123.668671, 49.098536], [-123.669093, 49.098381], [-123.669105, 49.098228], [-123.668868, 49.097942], [-123.668866, 49.097852], [-123.669761, 49.098126], [-123.669828, 49.09808], [-123.669787, 49.097972], [-123.670416, 49.098013], [-123.670633, 49.097851], [-123.670685, 49.097643], [-123.670437, 49.097528], [-123.670514, 49.097113], [-123.670371, 49.09671], [-123.669592, 49.09576], [-123.669315, 49.095591], [-123.669231, 49.095386], [-123.669312, 49.095294], [-123.669953, 49.095092], [-123.670486, 49.095045], [-123.67074, 49.094558], [-123.670777, 49.094323], [-123.670513, 49.093939], [-123.670346, 49.093822], [-123.670043, 49.093733], [-123.669986, 49.09351], [-123.669749, 49.09316], [-123.669406, 49.093081], [-123.669073, 49.092876], [-123.66836, 49.092709], [-123.667866, 49.092694], [-123.667648, 49.092704], [-123.667182, 49.092878], [-123.666895, 49.092862], [-123.665544, 49.092222], [-123.665004, 49.091802], [-123.664187, 49.091006], [-123.663123, 49.090347], [-123.662651, 49.089918], [-123.662391, 49.089874], [-123.66199, 49.089598], [-123.66105, 49.089099], [-123.660343, 49.088474], [-123.659788, 49.087839], [-123.659513, 49.087678], [-123.659481, 49.087426], [-123.659122, 49.087095], [-123.658115, 49.086705], [-123.656983, 49.085893], [-123.655747, 49.084767], [-123.654906, 49.084268], [-123.654573, 49.083882], [-123.654047, 49.083508], [-123.653298, 49.082784], [-123.653003, 49.082281], [-123.652775, 49.081437], [-123.652486, 49.081367], [-123.652196, 49.081206], [-123.651923, 49.081316], [-123.651689, 49.081299], [-123.651207, 49.081032], [-123.651053, 49.080834], [-123.650807, 49.080746], [-123.650446, 49.080434], [-123.650089, 49.080246], [-123.648731, 49.079094], [-123.648498, 49.078996], [-123.648355, 49.078701], [-123.648338, 49.078403], [-123.648184, 49.078144], [-123.647743, 49.077939], [-123.647086, 49.077952], [-123.646769, 49.077792], [-123.646247, 49.077731], [-123.645557, 49.077124], [-123.645184, 49.076936], [-123.644372, 49.076375], [-123.664561, 49.074695], [-123.665328, 49.075042], [-123.665592, 49.075291], [-123.666546, 49.075907], [-123.666889, 49.076003], [-123.66725, 49.076344], [-123.668283, 49.076895], [-123.669085, 49.077466], [-123.669746, 49.077697], [-123.67038, 49.078089], [-123.671663, 49.078675], [-123.67292, 49.079504], [-123.673157, 49.079818], [-123.673093, 49.080178], [-123.673164, 49.08043], [-123.673758, 49.080803], [-123.674149, 49.08126], [-123.674894, 49.081643], [-123.675268, 49.081991], [-123.67578, 49.08233], [-123.676985, 49.083421], [-123.679223, 49.084802], [-123.680636, 49.085936], [-123.681615, 49.086533], [-123.682323, 49.087149], [-123.683635, 49.088005], [-123.684246, 49.088524], [-123.685018, 49.089041], [-123.685823, 49.089737], [-123.687165, 49.090683], [-123.688246, 49.09163], [-123.688522, 49.091727], [-123.689024, 49.09238], [-123.68891, 49.09302], [-123.689005, 49.093056], [-123.689102, 49.093019], [-123.689318, 49.092848], [-123.689824, 49.092772], [-123.69097, 49.093467], [-123.693476, 49.095314], [-123.695444, 49.097048], [-123.696109, 49.09751], [-123.696374, 49.097851], [-123.697467, 49.098673], [-123.698023, 49.099281], [-123.698203, 49.099361], [-123.698219, 49.099513], [-123.698496, 49.099737], [-123.698985, 49.100417], [-123.699142, 49.100874], [-123.698952, 49.100949], [-123.698953, 49.101001]], [[-123.630773, 49.038695], [-123.631498, 49.038628], [-123.632383, 49.038399], [-123.634364, 49.038181], [-123.635091, 49.038214], [-123.635556, 49.0383], [-123.635873, 49.038443], [-123.63659, 49.038843], [-123.63746, 49.039441], [-123.639967, 49.040821], [-123.640559, 49.04107], [-123.640997, 49.041086], [-123.643167, 49.040741], [-123.643947, 49.0407], [-123.644021, 49.041033], [-123.643945, 49.041511], [-123.64348, 49.042691], [-123.6433, 49.04361], [-123.6435, 49.044275], [-123.643909, 49.044742], [-123.637532, 49.044745], [-123.629917, 49.038649], [-123.630773, 49.038695]], [[-123.59723, 49.017572], [-123.596441, 49.01682], [-123.596398, 49.01656], [-123.596547, 49.01656], [-123.596768, 49.016719], [-123.596888, 49.016594], [-123.596266, 49.015994], [-123.596218, 49.015382], [-123.59634, 49.015282], [-123.596736, 49.015299], [-123.597122, 49.015477], [-123.59797, 49.015563], [-123.598062, 49.015526], [-123.59723, 49.017572]], [[-123.666952, 48.977563], [-123.667912, 48.978827], [-123.668864, 48.979488], [-123.669216, 48.980304], [-123.669219, 48.980529], [-123.669062, 48.980952], [-123.668709, 48.98118], [-123.668265, 48.981758], [-123.667806, 48.98212], [-123.667743, 48.982588], [-123.667583, 48.982805], [-123.666876, 48.983042], [-123.666793, 48.983044], [-123.666628, 48.982883], [-123.66627, 48.982713], [-123.665406, 48.982484], [-123.665144, 48.982315], [-123.664701, 48.981886], [-123.663669, 48.980453], [-123.663448, 48.980265], [-123.662619, 48.980611], [-123.662017, 48.980616], [-123.661168, 48.980422], [-123.660853, 48.980433], [-123.660677, 48.98056], [-123.660778, 48.980892], [-123.660645, 48.981154], [-123.660798, 48.981423], [-123.660929, 48.981944], [-123.660952, 48.982708], [-123.660695, 48.983853], [-123.6606, 48.983942], [-123.660367, 48.983971], [-123.660165, 48.984098], [-123.660001, 48.984116], [-123.659, 48.983925], [-123.658009, 48.983444], [-123.657175, 48.983369], [-123.655837, 48.983403], [-123.655097, 48.983336], [-123.654427, 48.983186], [-123.653836, 48.98292], [-123.651905, 48.981761], [-123.651298, 48.981296], [-123.650624, 48.980896], [-123.648264, 48.980117], [-123.647523, 48.980005], [-123.645536, 48.979539], [-123.644727, 48.979453], [-123.643047, 48.979391], [-123.640657, 48.979476], [-123.639989, 48.979579], [-123.639454, 48.979555], [-123.639304, 48.979493], [-123.639285, 48.97907], [-123.639089, 48.978747], [-123.63877, 48.978452], [-123.638441, 48.978274], [-123.638223, 48.978311], [-123.63764, 48.978773], [-123.637198, 48.979442], [-123.636946, 48.980073], [-123.636937, 48.980388], [-123.637188, 48.980826], [-123.637478, 48.981077], [-123.637782, 48.981211], [-123.637879, 48.981417], [-123.637689, 48.981561], [-123.636923, 48.981511], [-123.636789, 48.981603], [-123.636763, 48.981756], [-123.636614, 48.9819], [-123.636808, 48.981998], [-123.637409, 48.982121], [-123.637412, 48.982238], [-123.637263, 48.982337], [-123.636607, 48.982476], [-123.636024, 48.982678], [-123.635846, 48.982678], [-123.635709, 48.982598], [-123.635706, 48.982446], [-123.636351, 48.981641], [-123.636549, 48.981073], [-123.636421, 48.980732], [-123.635913, 48.980465], [-123.635882, 48.980231], [-123.63599, 48.980033], [-123.636906, 48.979038], [-123.637551, 48.978145], [-123.637669, 48.977855], [-123.637636, 48.977244], [-123.63732, 48.97622], [-123.637015, 48.975763], [-123.635245, 48.974108], [-123.634319, 48.973358], [-123.632945, 48.971656], [-123.632651, 48.971163], [-123.632311, 48.970274], [-123.631429, 48.968426], [-123.631187, 48.967662], [-123.630977, 48.967368], [-123.630121, 48.964466], [-123.630125, 48.961525], [-123.630026, 48.960194], [-123.630208, 48.959419], [-123.630173, 48.958852], [-123.629874, 48.957892], [-123.629871, 48.957605], [-123.628908, 48.955918], [-123.628571, 48.955209], [-123.628497, 48.954778], [-123.628608, 48.953932], [-123.6291, 48.952778], [-123.628918, 48.95026], [-123.629046, 48.949702], [-123.629148, 48.94791], [-123.629087, 48.947407], [-123.628711, 48.946771], [-123.628434, 48.946501], [-123.628376, 48.946313], [-123.628331, 48.94598], [-123.628462, 48.944451], [-123.62821, 48.943939], [-123.627797, 48.942484], [-123.62803, 48.941611], [-123.628667, 48.940068], [-123.628728, 48.939591], [-123.628612, 48.938963], [-123.628822, 48.938314], [-123.628981, 48.937989], [-123.629695, 48.93722], [-123.629937, 48.936824], [-123.630114, 48.935734], [-123.630485, 48.934841], [-123.630836, 48.934444], [-123.631512, 48.934017], [-123.631893, 48.933953], [-123.632195, 48.933987], [-123.632735, 48.934487], [-123.633588, 48.935068], [-123.634368, 48.935351], [-123.635766, 48.93573], [-123.636915, 48.935823], [-123.637354, 48.93592], [-123.637628, 48.936071], [-123.637909, 48.936573], [-123.638748, 48.937126], [-123.639407, 48.937455], [-123.6396, 48.937634], [-123.63992, 48.938117], [-123.639937, 48.938252], [-123.639764, 48.938542], [-123.639436, 48.938687], [-123.638946, 48.938798], [-123.637568, 48.938896], [-123.637352, 48.939059], [-123.637247, 48.939248], [-123.637144, 48.939842], [-123.637208, 48.940607], [-123.637422, 48.941262], [-123.637782, 48.941792], [-123.638156, 48.942154], [-123.638097, 48.942338], [-123.634539, 48.944651], [-123.634577, 48.944805], [-123.644142, 48.950652], [-123.648105, 48.948344], [-123.64014, 48.942948], [-123.641584, 48.943075], [-123.641718, 48.942911], [-123.64179, 48.942192], [-123.64187, 48.942065], [-123.64284, 48.942015], [-123.643219, 48.941824], [-123.643464, 48.94184], [-123.644234, 48.942142], [-123.644936, 48.942596], [-123.646047, 48.943005], [-123.646241, 48.943229], [-123.64676, 48.943207], [-123.648241, 48.943568], [-123.648968, 48.943932], [-123.6493, 48.944273], [-123.649714, 48.94454], [-123.650592, 48.944876], [-123.651084, 48.944901], [-123.651615, 48.944817], [-123.652021, 48.944563], [-123.652419, 48.944614], [-123.652597, 48.944748], [-123.652849, 48.945161], [-123.65422, 48.946628], [-123.656401, 48.948407], [-123.656969, 48.948997], [-123.657098, 48.949445], [-123.657796, 48.950593], [-123.658216, 48.951409], [-123.658304, 48.951778], [-123.658511, 48.952002], [-123.658655, 48.952586], [-123.659019, 48.95316], [-123.659691, 48.953452], [-123.65975, 48.953677], [-123.659703, 48.954279], [-123.660182, 48.95443], [-123.65993, 48.955061], [-123.659963, 48.955322], [-123.660114, 48.955483], [-123.660199, 48.955762], [-123.660423, 48.956002], [-123.660807, 48.956262], [-123.66139, 48.956951], [-123.662024, 48.957298], [-123.662081, 48.957469], [-123.661947, 48.957676], [-123.661524, 48.957778], [-123.661226, 48.957941], [-123.660564, 48.958466], [-123.660255, 48.958892], [-123.659833, 48.958983], [-123.659184, 48.959428], [-123.659035, 48.959591], [-123.658916, 48.959943], [-123.658877, 48.961067], [-123.659008, 48.96175], [-123.659498, 48.962594], [-123.660507, 48.963442], [-123.660673, 48.963693], [-123.661226, 48.964203], [-123.661167, 48.964824], [-123.661297, 48.965318], [-123.661203, 48.965489], [-123.660825, 48.965842], [-123.660006, 48.965928], [-123.659422, 48.966147], [-123.659235, 48.966453], [-123.658616, 48.967133], [-123.658181, 48.967467], [-123.657284, 48.967661], [-123.656421, 48.967523], [-123.656338, 48.967577], [-123.656341, 48.967675], [-123.656963, 48.968194], [-123.657526, 48.968551], [-123.657684, 48.969054], [-123.65817, 48.969635], [-123.659289, 48.970582], [-123.659577, 48.970751], [-123.659963, 48.970875], [-123.660486, 48.971196], [-123.660756, 48.970969], [-123.661016, 48.970951], [-123.661177, 48.970743], [-123.661245, 48.970769], [-123.661083, 48.970976], [-123.661221, 48.971066], [-123.661209, 48.971183], [-123.660858, 48.971428], [-123.660819, 48.971536], [-123.661813, 48.972431], [-123.662311, 48.972797], [-123.663405, 48.973896], [-123.663479, 48.974363], [-123.663743, 48.974587], [-123.663758, 48.974712], [-123.663463, 48.97512], [-123.663493, 48.975308], [-123.663603, 48.975416], [-123.664057, 48.975584], [-123.665068, 48.975676], [-123.665454, 48.975917], [-123.665787, 48.976356], [-123.666952, 48.977563]]], [[[-124.37646, 48.999659], [-124.376094, 48.996201], [-124.376826, 48.996116], [-124.377452, 48.995859], [-124.377855, 48.995578], [-124.378365, 48.994808], [-124.378817, 48.994535], [-124.379283, 48.994469], [-124.379734, 48.99462], [-124.380981, 48.995564], [-124.383088, 48.994073], [-124.382942, 48.993571], [-124.38346, 48.993565], [-124.383585, 48.993996], [-124.386682, 48.993806], [-124.386671, 48.993228], [-124.387671, 48.992939], [-124.387419, 48.990756], [-124.383817, 48.990922], [-124.383434, 48.989105], [-124.382115, 48.989115], [-124.381956, 48.98756], [-124.37952, 48.987627], [-124.378122, 48.988866], [-124.37467, 48.98869], [-124.374576, 48.987401], [-124.372521, 48.987368], [-124.372489, 48.986574], [-124.369969, 48.98657], [-124.36999, 48.988064], [-124.366177, 48.988122], [-124.366029, 48.985636], [-124.36448, 48.985584], [-124.364488, 48.982186], [-124.364574, 48.982186], [-124.363295, 48.981004], [-124.356685, 48.975891], [-124.355151, 48.977455], [-124.35257, 48.979468], [-124.347537, 48.977971], [-124.34392, 48.976246], [-124.341014, 48.97567], [-124.339369, 48.974159], [-124.337448, 48.969279], [-124.334856, 48.966234], [-124.332623, 48.965293], [-124.321665, 48.966394], [-124.318994, 48.967144], [-124.318318, 48.968453], [-124.316453, 48.973204], [-124.317994, 48.975756], [-124.318358, 48.977448], [-124.315139, 48.97787], [-124.312952, 48.978559], [-124.310881, 48.979911], [-124.3108, 48.982237], [-124.303934, 48.982473], [-124.300841, 48.98073], [-124.298887, 48.979273], [-124.29611, 48.975061], [-124.294869, 48.973813], [-124.283721, 48.971742], [-124.279522, 48.969642], [-124.277641, 48.969217], [-124.274719, 48.969881], [-124.271552, 48.970048], [-124.268806, 48.969235], [-124.264678, 48.967637], [-124.262655, 48.967676], [-124.252899, 48.963974], [-124.238811, 48.957691], [-124.235082, 48.956769], [-124.220028, 48.956189], [-124.214814, 48.95499], [-124.21364, 48.955269], [-124.213162, 48.955274], [-124.212066, 48.95515], [-124.210824, 48.955209], [-124.210005, 48.955316], [-124.211681, 48.952256], [-124.210765, 48.950537], [-124.210583, 48.948842], [-124.214651, 48.94647], [-124.21434, 48.943883], [-124.217831, 48.941253], [-124.219671, 48.939521], [-124.22175, 48.938615], [-124.222826, 48.938415], [-124.224086, 48.937953], [-124.224818, 48.937904], [-124.22489, 48.936976], [-124.207434, 48.94131], [-124.201305, 48.941404], [-124.197259, 48.943962], [-124.197866, 48.950971], [-124.200069, 48.951434], [-124.198293, 48.951875], [-124.198276, 48.954294], [-124.199652, 48.954554], [-124.199787, 48.956092], [-124.203241, 48.956473], [-124.202822, 48.961561], [-124.195915, 48.961209], [-124.195996, 48.958353], [-124.188763, 48.957825], [-124.188987, 48.954506], [-124.181331, 48.954426], [-124.181164, 48.955074], [-124.178359, 48.954925], [-124.178412, 48.952139], [-124.179833, 48.952028], [-124.179522, 48.949023], [-124.176795, 48.948963], [-124.176827, 48.949721], [-124.173243, 48.949643], [-124.173168, 48.948795], [-124.171959, 48.948716], [-124.171816, 48.947893], [-124.169337, 48.947875], [-124.169299, 48.947072], [-124.164028, 48.946974], [-124.164159, 48.946052], [-124.162281, 48.945992], [-124.161688, 48.939718], [-124.156083, 48.939769], [-124.156031, 48.93915], [-124.149668, 48.939545], [-124.149843, 48.941863], [-124.141148, 48.941959], [-124.142085, 48.946854], [-124.13926, 48.946799], [-124.139127, 48.945747], [-124.12959, 48.94591], [-124.129803, 48.948149], [-124.118745, 48.948626], [-124.119004, 48.950153], [-124.106252, 48.950351], [-124.106438, 48.951789], [-124.099418, 48.95241], [-124.099474, 48.955226], [-124.100607, 48.955329], [-124.100539, 48.958652], [-124.097335, 48.958736], [-124.097572, 48.960676], [-124.095792, 48.960723], [-124.095952, 48.962459], [-124.09036, 48.962514], [-124.090204, 48.960402], [-124.088291, 48.96034], [-124.088519, 48.959436], [-124.083499, 48.95969], [-124.083407, 48.958729], [-124.07781, 48.95885], [-124.077198, 48.968044], [-124.076937, 48.968033], [-124.072561, 48.967479], [-124.071461, 48.967394], [-124.071356, 48.965496], [-124.068923, 48.965323], [-124.069866, 48.960205], [-124.067983, 48.960318], [-124.068223, 48.956212], [-124.066666, 48.956086], [-124.066532, 48.95497], [-124.065669, 48.954939], [-124.065512, 48.953947], [-124.064645, 48.9538], [-124.064565, 48.952709], [-124.064377, 48.952623], [-124.055283, 48.953084], [-124.05498, 48.952062], [-124.053817, 48.952181], [-124.05321, 48.950317], [-124.050836, 48.950396], [-124.050223, 48.949428], [-124.048643, 48.94952], [-124.048165, 48.948323], [-124.046699, 48.948433], [-124.046269, 48.946204], [-124.044869, 48.946173], [-124.04476, 48.945795], [-124.037491, 48.946085], [-124.036621, 48.944138], [-124.031995, 48.944429], [-124.031805, 48.947097], [-124.019598, 48.947826], [-124.019457, 48.947721], [-124.020828, 48.936729], [-124.004351, 48.936821], [-123.993588, 48.937063], [-123.986197, 48.937165], [-123.975108, 48.937147], [-123.975012, 48.931061], [-123.968363, 48.930903], [-123.968158, 48.920186], [-123.948632, 48.920286], [-123.9484, 48.920919], [-123.942081, 48.920821], [-123.941852, 48.918502], [-123.898687, 48.918735], [-123.898558, 48.915384], [-123.892792, 48.915445], [-123.892674, 48.91227], [-123.876287, 48.912451], [-123.876063, 48.915667], [-123.85463, 48.916049], [-123.849923, 48.916173], [-123.848943, 48.908624], [-123.821218, 48.909587], [-123.821219, 48.909553], [-123.818534, 48.909602], [-123.801224, 48.910207], [-123.793431, 48.905583], [-123.793624, 48.904968], [-123.800098, 48.90483], [-123.799587, 48.899692], [-123.802317, 48.899437], [-123.802092, 48.89641], [-123.799978, 48.896203], [-123.799495, 48.895834], [-123.799513, 48.894584], [-123.792729, 48.894278], [-123.792384, 48.895912], [-123.790076, 48.895975], [-123.790157, 48.901898], [-123.787384, 48.901898], [-123.787301, 48.90011], [-123.783107, 48.900085], [-123.78333, 48.93628], [-123.790668, 48.936364], [-123.788522, 48.946528], [-123.792754, 48.952202], [-123.79501, 48.961245], [-123.800179, 48.961241], [-123.800027, 48.968316], [-123.804438, 48.968728], [-123.81129, 48.968613], [-123.811096, 48.974066], [-123.826079, 48.977557], [-123.82803, 48.979397], [-123.83589, 48.979267], [-123.849432, 48.979179], [-123.850001, 48.980333], [-123.849857, 48.980853], [-123.848864, 48.981816], [-123.8511, 48.984065], [-123.856742, 48.984296], [-123.857744, 48.986823], [-123.858253, 48.989253], [-123.860622, 48.989129], [-123.859224, 48.990837], [-123.856238, 48.991105], [-123.854491, 48.990328], [-123.853729, 48.9918], [-123.853797, 48.99241], [-123.854096, 48.993214], [-123.858103, 48.992719], [-123.859757, 48.992414], [-123.862236, 48.992331], [-123.863968, 48.992054], [-123.86522, 48.99202], [-123.869068, 48.992672], [-123.875146, 48.99237], [-123.877311, 48.992379], [-123.879428, 48.992855], [-123.88068, 48.992866], [-123.881589, 48.992692], [-123.882541, 48.992653], [-123.883619, 48.992792], [-123.884474, 48.9927], [-123.884826, 48.992579], [-123.885765, 48.991917], [-123.886396, 48.991596], [-123.88937, 48.993684], [-123.891815, 48.994177], [-123.893681, 48.995053], [-123.89728, 48.996089], [-123.899841, 48.996036], [-123.904041, 48.995611], [-123.905178, 48.996837], [-123.902492, 48.99767], [-123.90561, 48.999236], [-123.903998, 48.999701], [-123.904666, 48.999792], [-123.905038, 49.0], [-123.905956, 49.00007], [-123.906186, 49.00005], [-123.90654, 48.999922], [-123.906783, 48.99974], [-123.907064, 48.999359], [-123.907171, 48.999322], [-123.907379, 48.999448], [-123.907474, 48.999411], [-123.907757, 48.999193], [-123.908106, 48.998776], [-123.908511, 48.998548], [-123.90888, 48.998464], [-123.909262, 48.998479], [-123.91037, 48.997823], [-123.910519, 48.99765], [-123.910542, 48.997434], [-123.91077, 48.997226], [-123.910658, 48.996992], [-123.910842, 48.996695], [-123.910919, 48.996379], [-123.911189, 48.996179], [-123.911759, 48.995923], [-123.912379, 48.995494], [-123.912329, 48.995064], [-123.912656, 48.994926], [-123.912909, 48.994573], [-123.912698, 48.994259], [-123.912774, 48.993926], [-123.913249, 48.993752], [-123.913611, 48.993398], [-123.91443, 48.993265], [-123.915675, 48.993309], [-123.915988, 48.993227], [-123.916164, 48.993153], [-123.916973, 48.992508], [-123.918185, 48.992256], [-123.918457, 48.992146], [-123.919473, 48.990995], [-123.920737, 48.990525], [-123.921163, 48.989974], [-123.921366, 48.989856], [-123.921598, 48.989799], [-123.92213, 48.989822], [-123.9226, 48.990017], [-123.922997, 48.990066], [-123.923692, 48.989935], [-123.924389, 48.98993], [-123.924809, 48.989746], [-123.925226, 48.989374], [-123.92588, 48.989315], [-123.926377, 48.988843], [-123.926608, 48.988733], [-123.92714, 48.988639], [-123.927758, 48.988148], [-123.928763, 48.988446], [-123.930128, 48.989155], [-123.930912, 48.989391], [-123.931834, 48.98977], [-123.93226, 48.98984], [-123.932643, 48.989819], [-123.933608, 48.989541], [-123.934481, 48.989471], [-123.93555, 48.989561], [-123.936256, 48.989339], [-123.937347, 48.989186], [-123.938258, 48.988936], [-123.939501, 48.988854], [-123.940223, 48.988686], [-123.940767, 48.988637], [-123.941698, 48.988711], [-123.943228, 48.988625], [-123.944338, 48.988752], [-123.945876, 48.989198], [-123.947149, 48.989232], [-123.947734, 48.989182], [-123.94879, 48.989282], [-123.94954, 48.989159], [-123.950203, 48.988839], [-123.950978, 48.988661], [-123.952441, 48.987947], [-123.953839, 48.98745], [-123.9553, 48.987276], [-123.955785, 48.987091], [-123.956039, 48.987085], [-123.956024, 48.990432], [-123.959555, 48.990508], [-123.959662, 48.995378], [-123.965699, 48.995018], [-123.965919, 48.991852], [-123.969402, 48.991869], [-123.969063, 48.995105], [-123.971103, 48.995195], [-123.971329, 48.991487], [-123.97432, 48.991609], [-123.974176, 48.995078], [-123.976894, 48.995148], [-123.977058, 48.989848], [-123.984682, 48.989968], [-123.984821, 48.985858], [-124.004539, 48.986159], [-124.004545, 48.990993], [-124.004941, 48.999535], [-124.010366, 48.99959], [-124.010177, 48.997273], [-124.013394, 48.997154], [-124.01332, 48.996309], [-124.014625, 48.996244], [-124.014529, 48.995565], [-124.021311, 48.995354], [-124.021392, 48.99736], [-124.027849, 48.997481], [-124.027846, 48.998586], [-124.029135, 48.9986], [-124.029112, 48.999749], [-124.037784, 48.999721], [-124.03776, 49.000453], [-124.036544, 49.000465], [-124.036664, 49.003175], [-124.039346, 49.003404], [-124.039343, 49.004147], [-124.040627, 49.004211], [-124.040721, 49.004882], [-124.044526, 49.005075], [-124.044736, 49.006293], [-124.046191, 49.006271], [-124.046189, 49.0059], [-124.04892, 49.005969], [-124.049027, 49.006802], [-124.050439, 49.006913], [-124.050507, 49.007459], [-124.051801, 49.007497], [-124.052006, 49.008472], [-124.055709, 49.008521], [-124.055771, 49.008962], [-124.057495, 49.009152], [-124.057458, 49.009861], [-124.061949, 49.010069], [-124.062118, 49.009028], [-124.065813, 49.008952], [-124.065612, 49.007193], [-124.064693, 49.00674], [-124.063889, 49.006245], [-124.060992, 49.006264], [-124.060917, 49.006992], [-124.058545, 49.006957], [-124.058529, 49.006322], [-124.057129, 49.006264], [-124.057066, 49.005647], [-124.055838, 49.005615], [-124.055819, 49.005982], [-124.054607, 49.005934], [-124.05494, 48.999894], [-124.057366, 48.999966], [-124.057421, 49.001627], [-124.062242, 49.00191], [-124.062272, 49.00301], [-124.063523, 49.003126], [-124.063573, 49.004569], [-124.067032, 49.004677], [-124.067121, 49.003699], [-124.069802, 49.003748], [-124.069855, 49.00298], [-124.08077, 49.003185], [-124.080772, 49.004606], [-124.084666, 49.004693], [-124.084816, 48.99981], [-124.08033, 48.999669], [-124.080275, 48.99393], [-124.084919, 48.993929], [-124.084994, 48.991488], [-124.083253, 48.991404], [-124.083304, 48.989395], [-124.080713, 48.989367], [-124.080752, 48.984737], [-124.083857, 48.984748], [-124.083815, 48.982857], [-124.087314, 48.982724], [-124.087196, 48.982047], [-124.092784, 48.981948], [-124.092717, 48.981335], [-124.09859, 48.981267], [-124.098591, 48.983339], [-124.101085, 48.983489], [-124.101269, 48.98645], [-124.102278, 48.986423], [-124.102444, 48.992024], [-124.103382, 48.992066], [-124.10338, 48.995642], [-124.102525, 48.995619], [-124.102552, 48.998163], [-124.115454, 48.998268], [-124.115453, 48.999029], [-124.116262, 48.999072], [-124.116332, 48.999766], [-124.13389, 48.999813], [-124.133982, 49.000837], [-124.136299, 49.000835], [-124.136342, 49.002204], [-124.156428, 49.002434], [-124.156497, 49.001602], [-124.172837, 49.001524], [-124.172942, 49.008913], [-124.204371, 49.008904], [-124.204592, 49.004441], [-124.226782, 49.004375], [-124.226835, 49.006981], [-124.233532, 49.007147], [-124.233288, 49.003889], [-124.238163, 49.003926], [-124.238044, 48.999096], [-124.234405, 48.999034], [-124.234126, 48.994094], [-124.243336, 48.993897], [-124.243417, 48.98949], [-124.248819, 48.989535], [-124.249559, 48.999778], [-124.277168, 48.99977], [-124.277091, 48.996319], [-124.28273, 48.996409], [-124.282671, 49.001183], [-124.277827, 49.001097], [-124.27768, 49.005097], [-124.282225, 49.005208], [-124.282428, 49.013111], [-124.294568, 49.013272], [-124.294354, 49.004439], [-124.292199, 49.004256], [-124.292094, 48.997234], [-124.304942, 48.997234], [-124.305096, 48.999766], [-124.313792, 48.999748], [-124.313748, 49.004093], [-124.316911, 49.004244], [-124.31699, 49.007441], [-124.322444, 49.007556], [-124.32255, 49.004419], [-124.323781, 49.004348], [-124.324044, 49.000941], [-124.328665, 49.000916], [-124.328977, 48.9976], [-124.332993, 48.997694], [-124.333172, 48.995933], [-124.335604, 48.997502], [-124.342129, 48.997778], [-124.342291, 48.998271], [-124.343779, 48.998275], [-124.343965, 48.9991], [-124.344539, 48.999016], [-124.344718, 48.999757], [-124.37646, 48.999659]]]]}, "properties": {"name": "Cowichan Valley G", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley G", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919015", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.072555, 48.822474], [-124.074026, 48.822309], [-124.077883, 48.822975], [-124.079434, 48.823622], [-124.081473, 48.823683], [-124.084654, 48.824284], [-124.089634, 48.825843], [-124.091147, 48.825642], [-124.093497, 48.8268], [-124.09677, 48.827873], [-124.097725, 48.827826], [-124.099816, 48.827312], [-124.101433, 48.82778], [-124.103784, 48.82712], [-124.108837, 48.826581], [-124.111571, 48.827254], [-124.113158, 48.818039], [-124.096872, 48.815643], [-124.091187, 48.815701], [-124.090997, 48.811207], [-124.083852, 48.811253], [-124.084043, 48.817067], [-124.075112, 48.817078], [-124.072876, 48.816993], [-124.072911, 48.816258], [-124.065925, 48.816182], [-124.058199, 48.816419], [-124.058133, 48.816493], [-124.057917, 48.819406], [-124.057267, 48.819131], [-124.056718, 48.818813], [-124.056459, 48.818551], [-124.050393, 48.818628], [-124.050378, 48.818724], [-124.041705, 48.818862], [-124.041312, 48.814619], [-124.037516, 48.814681], [-124.037608, 48.818167], [-124.035209, 48.818365], [-124.033389, 48.817543], [-124.032976, 48.817834], [-124.032867, 48.818401], [-124.03234, 48.818721], [-124.032303, 48.818838], [-124.032368, 48.819314], [-124.032862, 48.819561], [-124.033073, 48.819856], [-124.033881, 48.819771], [-124.034754, 48.821255], [-124.034303, 48.821975], [-124.035116, 48.823082], [-124.035404, 48.823294], [-124.035009, 48.823204], [-124.034844, 48.823309], [-124.034559, 48.823236], [-124.032381, 48.823511], [-124.030419, 48.823259], [-124.030218, 48.823287], [-124.03011, 48.82342], [-124.030126, 48.824067], [-124.029736, 48.825946], [-124.027939, 48.825968], [-124.027797, 48.827749], [-124.028008, 48.828008], [-124.029121, 48.828836], [-124.029623, 48.829318], [-124.029793, 48.829238], [-124.030429, 48.829749], [-124.031062, 48.830769], [-124.031533, 48.831125], [-124.032411, 48.831341], [-124.032943, 48.831364], [-124.033348, 48.831297], [-124.034188, 48.830363], [-124.036235, 48.828938], [-124.036556, 48.829667], [-124.036884, 48.830136], [-124.036891, 48.83034], [-124.035931, 48.830908], [-124.035817, 48.831911], [-124.035388, 48.831897], [-124.034095, 48.832255], [-124.034407, 48.833746], [-124.03238, 48.833669], [-124.031425, 48.833536], [-124.031374, 48.837253], [-124.042525, 48.837104], [-124.042188, 48.834073], [-124.04285, 48.834066], [-124.042795, 48.83359], [-124.043377, 48.833646], [-124.047168, 48.833606], [-124.047186, 48.834214], [-124.0485, 48.834185], [-124.048737, 48.841863], [-124.05479, 48.841681], [-124.05507, 48.8332], [-124.054765, 48.831983], [-124.054609, 48.830392], [-124.05476, 48.830438], [-124.059959, 48.830435], [-124.060601, 48.830013], [-124.061405, 48.83035], [-124.061966, 48.830468], [-124.06362, 48.830463], [-124.063422, 48.829013], [-124.063559, 48.828922], [-124.06522, 48.828657], [-124.065074, 48.828214], [-124.065665, 48.828033], [-124.065581, 48.827596], [-124.066016, 48.82756], [-124.065715, 48.826629], [-124.069372, 48.826611], [-124.069477, 48.824581], [-124.069858, 48.824131], [-124.069587, 48.823743], [-124.069186, 48.82166], [-124.070168, 48.822095], [-124.072555, 48.822474]]], [[[-124.01423, 48.818596], [-124.014265, 48.819675], [-124.014147, 48.820059], [-124.013885, 48.820353], [-124.012792, 48.821215], [-124.012761, 48.821367], [-124.012871, 48.821492], [-124.016106, 48.823321], [-124.016408, 48.823423], [-124.016749, 48.823409], [-124.019226, 48.823037], [-124.026598, 48.823101], [-124.027251, 48.823226], [-124.028615, 48.823766], [-124.028947, 48.816777], [-124.026612, 48.81673], [-124.026618, 48.815275], [-124.024582, 48.815309], [-124.02445, 48.81245], [-124.020274, 48.812475], [-124.020246, 48.814988], [-124.016489, 48.815262], [-124.016397, 48.813213], [-124.009396, 48.813508], [-124.00933, 48.811765], [-124.007871, 48.811772], [-124.00764, 48.809222], [-124.006188, 48.809322], [-124.006168, 48.809601], [-124.006377, 48.809901], [-124.006378, 48.810084], [-124.006479, 48.81021], [-124.006926, 48.810478], [-124.007085, 48.810743], [-124.00665, 48.81105], [-124.006319, 48.81109], [-124.005757, 48.811035], [-124.005553, 48.810882], [-124.005325, 48.81081], [-124.005023, 48.810809], [-124.004976, 48.812684], [-124.005032, 48.812805], [-124.005348, 48.812913], [-124.007894, 48.812917], [-124.009324, 48.813746], [-124.01007, 48.814042], [-124.010787, 48.814441], [-124.012949, 48.815813], [-124.014109, 48.816452], [-124.014332, 48.816808], [-124.01423, 48.818596]]]]}, "properties": {"name": "Lake Cowichan", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Lake Cowichan", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919016", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.034755, 49.026182], [-124.035953, 49.025744], [-124.035528, 49.01824], [-124.029899, 49.018391], [-124.029712, 49.012345], [-124.019604, 49.01192], [-124.019504, 49.010801], [-124.020618, 49.01081], [-124.020634, 49.00889], [-124.021678, 49.008966], [-124.021742, 49.008071], [-124.020912, 49.00801], [-124.020848, 49.006482], [-124.019283, 49.006431], [-124.019284, 49.005389], [-124.017185, 49.005319], [-124.017114, 49.006283], [-124.01523, 49.006199], [-124.015169, 49.00486], [-124.014104, 49.004822], [-124.013769, 48.999693], [-124.01037, 48.999651], [-124.010366, 48.99959], [-124.004941, 48.999535], [-124.004545, 48.990993], [-124.004539, 48.986159], [-123.984821, 48.985858], [-123.984682, 48.989968], [-123.977058, 48.989848], [-123.976894, 48.995148], [-123.974176, 48.995078], [-123.97432, 48.991609], [-123.971329, 48.991487], [-123.971103, 48.995195], [-123.969063, 48.995105], [-123.969402, 48.991869], [-123.965919, 48.991852], [-123.965699, 48.995018], [-123.959662, 48.995378], [-123.959555, 48.990508], [-123.956024, 48.990432], [-123.956039, 48.987085], [-123.955785, 48.987091], [-123.9553, 48.987276], [-123.953839, 48.98745], [-123.952441, 48.987947], [-123.950978, 48.988661], [-123.950203, 48.988839], [-123.94954, 48.989159], [-123.94879, 48.989282], [-123.947734, 48.989182], [-123.947149, 48.989232], [-123.945876, 48.989198], [-123.944338, 48.988752], [-123.943228, 48.988625], [-123.941698, 48.988711], [-123.940767, 48.988637], [-123.940223, 48.988686], [-123.939501, 48.988854], [-123.938258, 48.988936], [-123.937347, 48.989186], [-123.936256, 48.989339], [-123.93555, 48.989561], [-123.934481, 48.989471], [-123.933608, 48.989541], [-123.932643, 48.989819], [-123.93226, 48.98984], [-123.931834, 48.98977], [-123.930912, 48.989391], [-123.930128, 48.989155], [-123.928763, 48.988446], [-123.927758, 48.988148], [-123.92714, 48.988639], [-123.926608, 48.988733], [-123.926377, 48.988843], [-123.92588, 48.989315], [-123.925226, 48.989374], [-123.924809, 48.989746], [-123.924389, 48.98993], [-123.923692, 48.989935], [-123.922997, 48.990066], [-123.9226, 48.990017], [-123.92213, 48.989822], [-123.921598, 48.989799], [-123.921366, 48.989856], [-123.921163, 48.989974], [-123.920737, 48.990525], [-123.919473, 48.990995], [-123.918457, 48.992146], [-123.918185, 48.992256], [-123.916973, 48.992508], [-123.916164, 48.993153], [-123.915988, 48.993227], [-123.915675, 48.993309], [-123.91443, 48.993265], [-123.913611, 48.993398], [-123.913249, 48.993752], [-123.912774, 48.993926], [-123.912698, 48.994259], [-123.912909, 48.994573], [-123.912656, 48.994926], [-123.912329, 48.995064], [-123.912379, 48.995494], [-123.911759, 48.995923], [-123.911189, 48.996179], [-123.910919, 48.996379], [-123.910842, 48.996695], [-123.910658, 48.996992], [-123.91077, 48.997226], [-123.910542, 48.997434], [-123.910519, 48.99765], [-123.91037, 48.997823], [-123.909262, 48.998479], [-123.90888, 48.998464], [-123.908511, 48.998548], [-123.908106, 48.998776], [-123.907757, 48.999193], [-123.907474, 48.999411], [-123.907379, 48.999448], [-123.907171, 48.999322], [-123.907064, 48.999359], [-123.906783, 48.99974], [-123.90654, 48.999922], [-123.906186, 49.00005], [-123.905956, 49.00007], [-123.905038, 49.0], [-123.904666, 48.999792], [-123.903998, 48.999701], [-123.90561, 48.999236], [-123.902492, 48.99767], [-123.905178, 48.996837], [-123.904041, 48.995611], [-123.899841, 48.996036], [-123.89728, 48.996089], [-123.893681, 48.995053], [-123.891815, 48.994177], [-123.88937, 48.993684], [-123.886396, 48.991596], [-123.885765, 48.991917], [-123.884826, 48.992579], [-123.884474, 48.9927], [-123.883619, 48.992792], [-123.882541, 48.992653], [-123.881589, 48.992692], [-123.88068, 48.992866], [-123.879428, 48.992855], [-123.877311, 48.992379], [-123.875146, 48.99237], [-123.869068, 48.992672], [-123.86522, 48.99202], [-123.863968, 48.992054], [-123.862236, 48.992331], [-123.859757, 48.992414], [-123.858103, 48.992719], [-123.854096, 48.993214], [-123.853797, 48.99241], [-123.853729, 48.9918], [-123.854491, 48.990328], [-123.856238, 48.991105], [-123.859224, 48.990837], [-123.860622, 48.989129], [-123.858253, 48.989253], [-123.857744, 48.986823], [-123.856742, 48.984296], [-123.8511, 48.984065], [-123.848864, 48.981816], [-123.849857, 48.980853], [-123.850001, 48.980333], [-123.849432, 48.979179], [-123.83589, 48.979267], [-123.835829, 48.987153], [-123.840193, 48.991483], [-123.844996, 48.991437], [-123.84544, 48.998128], [-123.845806, 48.998123], [-123.845896, 48.998692], [-123.846783, 49.000324], [-123.847246, 49.00163], [-123.842732, 49.001759], [-123.842712, 49.000266], [-123.841263, 49.000357], [-123.836287, 49.000066], [-123.836097, 49.001704], [-123.834822, 49.001578], [-123.834172, 49.001907], [-123.834066, 49.002466], [-123.833332, 49.002525], [-123.832579, 49.002513], [-123.831284, 49.002006], [-123.830603, 49.001891], [-123.831858, 49.003031], [-123.834268, 49.006025], [-123.834421, 49.006701], [-123.8336, 49.006166], [-123.830413, 49.006951], [-123.826686, 49.008215], [-123.820666, 49.010522], [-123.819007, 49.011315], [-123.819159, 49.010559], [-123.81834, 49.00981], [-123.816635, 49.00851], [-123.815664, 49.007607], [-123.815177, 49.007099], [-123.815337, 49.006899], [-123.815309, 49.006845], [-123.814909, 49.006587], [-123.814222, 49.00635], [-123.813624, 49.005841], [-123.812131, 49.004844], [-123.811865, 49.004378], [-123.811312, 49.003977], [-123.810892, 49.003423], [-123.809876, 49.002437], [-123.802062, 48.997665], [-123.805965, 48.99531], [-123.804332, 48.994734], [-123.803582, 48.993953], [-123.802701, 48.991959], [-123.80286, 48.990574], [-123.802119, 48.98783], [-123.800432, 48.986174], [-123.799002, 48.983132], [-123.796386, 48.981216], [-123.79531, 48.97996], [-123.793984, 48.978793], [-123.792528, 48.977602], [-123.791243, 48.976993], [-123.789017, 48.975793], [-123.786209, 48.974692], [-123.788047, 48.971911], [-123.764096, 48.977796], [-123.7345, 48.985795], [-123.734629, 48.985986], [-123.738441, 49.035853], [-123.740433, 49.057054], [-123.767048, 49.057385], [-123.76999, 49.057183], [-123.7732, 49.057504], [-123.822656, 49.057184], [-123.823683, 49.057474], [-123.853616, 49.057437], [-123.864457, 49.057334], [-123.864803, 49.050068], [-123.867387, 49.050099], [-123.867605, 49.042956], [-123.864792, 49.042763], [-123.864903, 49.039632], [-123.864657, 49.037948], [-123.86575, 49.036904], [-123.865659, 49.036441], [-123.877731, 49.037033], [-123.885539, 49.037178], [-123.88531, 49.024141], [-123.893356, 49.024926], [-123.89494, 49.026281], [-123.902882, 49.027216], [-123.907218, 49.029697], [-123.914401, 49.030869], [-123.920947, 49.032243], [-123.927091, 49.029496], [-123.930448, 49.032119], [-123.935191, 49.029515], [-123.943212, 49.029952], [-123.94332, 49.031185], [-123.953198, 49.031427], [-123.952787, 49.024564], [-123.953064, 49.024186], [-123.953086, 49.023899], [-123.953043, 49.023692], [-123.952787, 49.023271], [-123.952794, 49.022875], [-123.953016, 49.022342], [-123.953561, 49.021537], [-123.953911, 49.021265], [-123.954399, 49.021044], [-123.954423, 49.020874], [-123.954266, 49.020452], [-123.954098, 49.020283], [-123.95291, 49.019707], [-123.95262, 49.019512], [-123.952472, 49.019324], [-123.954874, 49.020486], [-123.955472, 49.020696], [-123.956317, 49.020653], [-123.957045, 49.020694], [-123.958614, 49.021127], [-123.959051, 49.021042], [-123.959243, 49.021059], [-123.95989, 49.021269], [-123.960175, 49.021248], [-123.960574, 49.021308], [-123.961402, 49.02168], [-123.96235, 49.021888], [-123.962641, 49.02211], [-123.963152, 49.022322], [-123.96346, 49.022688], [-123.964386, 49.023292], [-123.96458, 49.023353], [-123.964743, 49.023333], [-123.965136, 49.023132], [-123.965369, 49.023104], [-123.966534, 49.023265], [-123.967607, 49.023553], [-123.967907, 49.02356], [-123.968152, 49.023467], [-123.968425, 49.023491], [-123.96866, 49.023588], [-123.968882, 49.023785], [-123.969378, 49.023924], [-123.969557, 49.023923], [-123.970153, 49.023711], [-123.970333, 49.023719], [-123.970978, 49.023901], [-123.971201, 49.024144], [-123.971684, 49.02431], [-123.972197, 49.024675], [-123.972483, 49.024582], [-123.972875, 49.024309], [-123.973175, 49.024289], [-123.973394, 49.024386], [-123.974136, 49.02518], [-123.974551, 49.025491], [-123.974843, 49.025588], [-123.975609, 49.025662], [-123.975997, 49.025955], [-123.976575, 49.026103], [-123.976863, 49.026155], [-123.977285, 49.026079], [-123.977574, 49.026095], [-123.978057, 49.026288], [-123.979387, 49.026449], [-123.979952, 49.02666], [-123.9803, 49.026962], [-123.981158, 49.026848], [-123.982104, 49.026975], [-123.98243, 49.026764], [-123.982688, 49.026727], [-123.982827, 49.02677], [-123.983465, 49.02726], [-123.983987, 49.027318], [-123.98436, 49.027567], [-123.984733, 49.027663], [-123.985245, 49.027379], [-123.985888, 49.027355], [-123.986533, 49.027476], [-123.986783, 49.027654], [-123.98712, 49.028056], [-123.987589, 49.028304], [-123.987952, 49.028589], [-123.988359, 49.029224], [-123.989019, 49.029345], [-123.989215, 49.029594], [-123.990079, 49.029622], [-123.990559, 49.029754], [-123.990784, 49.029986], [-123.9908, 49.030148], [-123.990625, 49.030347], [-123.990795, 49.03057], [-123.991882, 49.030867], [-123.992408, 49.031151], [-123.993023, 49.031181], [-123.993429, 49.031591], [-123.99369, 49.031733], [-123.993993, 49.031802], [-123.994179, 49.032196], [-123.994262, 49.032277], [-123.994456, 49.032311], [-123.995123, 49.032279], [-123.995655, 49.032156], [-123.996008, 49.031982], [-123.996743, 49.031779], [-123.99752, 49.031682], [-123.999129, 49.032072], [-123.999746, 49.032158], [-124.001426, 49.032035], [-124.002367, 49.03181], [-124.003089, 49.031742], [-124.003801, 49.031789], [-124.004737, 49.032015], [-124.005461, 49.032018], [-124.005939, 49.031905], [-124.006941, 49.031455], [-124.007743, 49.031198], [-124.008659, 49.031154], [-124.010297, 49.030923], [-124.011391, 49.030967], [-124.011732, 49.030812], [-124.012392, 49.030329], [-124.012745, 49.030226], [-124.015166, 49.030224], [-124.015698, 49.030138], [-124.017017, 49.029083], [-124.018384, 49.028388], [-124.018971, 49.028247], [-124.019981, 49.028211], [-124.020184, 49.028039], [-124.020196, 49.027939], [-124.019954, 49.027582], [-124.019769, 49.027116], [-124.019805, 49.026891], [-124.019911, 49.026763], [-124.020166, 49.026582], [-124.020682, 49.026397], [-124.021767, 49.025847], [-124.022882, 49.025514], [-124.023836, 49.025415], [-124.025236, 49.025655], [-124.026907, 49.025747], [-124.027293, 49.02588], [-124.027835, 49.026226], [-124.028041, 49.026296], [-124.028315, 49.026257], [-124.028991, 49.025964], [-124.029564, 49.025858], [-124.030717, 49.026046], [-124.031279, 49.026086], [-124.033204, 49.025917], [-124.033628, 49.025975], [-124.034249, 49.026204], [-124.034755, 49.026182]], [[-123.864009, 49.024831], [-123.864128, 49.025783], [-123.863782, 49.027847], [-123.863173, 49.027887], [-123.858942, 49.02752], [-123.858445, 49.02719], [-123.857187, 49.02664], [-123.857092, 49.02637], [-123.856813, 49.026146], [-123.856335, 49.02615], [-123.856156, 49.026052], [-123.856134, 49.025603], [-123.856226, 49.025423], [-123.856548, 49.025069], [-123.856955, 49.024832], [-123.85717, 49.024596], [-123.857209, 49.024434], [-123.857151, 49.024273], [-123.856394, 49.024089], [-123.856381, 49.024035], [-123.856856, 49.02387], [-123.857072, 49.023733], [-123.857448, 49.023281], [-123.857375, 49.022984], [-123.85747, 49.022966], [-123.857553, 49.02302], [-123.857708, 49.023262], [-123.85805, 49.023322], [-123.858989, 49.023018], [-123.859218, 49.022801], [-123.859612, 49.022635], [-123.859839, 49.022328], [-123.860289, 49.022262], [-123.860368, 49.022063], [-123.860348, 49.021623], [-123.860231, 49.021227], [-123.860118, 49.021084], [-123.8599, 49.021059], [-123.85915, 49.021164], [-123.858261, 49.02117], [-123.857576, 49.021113], [-123.856366, 49.020788], [-123.85526, 49.020032], [-123.855229, 49.019969], [-123.855325, 49.019915], [-123.855545, 49.019976], [-123.855762, 49.019929], [-123.855843, 49.019821], [-123.855798, 49.01956], [-123.856127, 49.019585], [-123.856248, 49.019539], [-123.856453, 49.019411], [-123.856435, 49.019214], [-123.856721, 49.019212], [-123.856969, 49.0193], [-123.857463, 49.01936], [-123.857573, 49.019331], [-123.857612, 49.019196], [-123.857521, 49.018764], [-123.856935, 49.018049], [-123.856672, 49.01789], [-123.856314, 49.01782], [-123.85583, 49.017464], [-123.85538, 49.017477], [-123.854596, 49.017356], [-123.854532, 49.017483], [-123.854726, 49.017698], [-123.854798, 49.017859], [-123.854758, 49.017958], [-123.854515, 49.018131], [-123.853793, 49.018334], [-123.852122, 49.01822], [-123.852086, 49.018481], [-123.851977, 49.018537], [-123.85193, 49.018195], [-123.851602, 49.018206], [-123.851522, 49.018279], [-123.851371, 49.019098], [-123.851278, 49.01917], [-123.8512, 49.018632], [-123.85133, 49.018199], [-123.851259, 49.018136], [-123.850548, 49.018088], [-123.850012, 49.017948], [-123.849441, 49.018222], [-123.848552, 49.018139], [-123.848252, 49.018186], [-123.847797, 49.018037], [-123.847562, 49.017894], [-123.847303, 49.017842], [-123.847147, 49.017528], [-123.846967, 49.01743], [-123.846638, 49.017406], [-123.846549, 49.017803], [-123.846455, 49.01792], [-123.846119, 49.01821], [-123.845846, 49.018266], [-123.845616, 49.018386], [-123.845532, 49.018323], [-123.845545, 49.018223], [-123.845718, 49.018015], [-123.846154, 49.01795], [-123.846355, 49.017669], [-123.846271, 49.017471], [-123.846431, 49.017299], [-123.846492, 49.016876], [-123.846777, 49.016685], [-123.847245, 49.016034], [-123.847868, 49.015786], [-123.848038, 49.015291], [-123.847912, 49.01504], [-123.84792, 49.014805], [-123.84811, 49.014678], [-123.848136, 49.014579], [-123.847995, 49.014401], [-123.847624, 49.014277], [-123.847565, 49.013918], [-123.846515, 49.013439], [-123.846031, 49.01346], [-123.846026, 49.013232], [-123.846107, 49.013129], [-123.846418, 49.013019], [-123.852065, 49.012822], [-123.863865, 49.012548], [-123.864009, 49.024831]], [[-123.801076, 49.03578], [-123.776487, 49.035565], [-123.767729, 49.035693], [-123.767704, 49.035785], [-123.754549, 49.035792], [-123.753947, 49.035311], [-123.753781, 49.03507], [-123.75386, 49.035052], [-123.755137, 49.035304], [-123.755837, 49.035327], [-123.755861, 49.035119], [-123.755941, 49.035064], [-123.756392, 49.035062], [-123.756638, 49.034933], [-123.756771, 49.034717], [-123.755389, 49.033773], [-123.755385, 49.033566], [-123.755575, 49.033429], [-123.756439, 49.033532], [-123.757275, 49.033733], [-123.758334, 49.034105], [-123.758484, 49.034112], [-123.758731, 49.034029], [-123.759043, 49.033848], [-123.759338, 49.033495], [-123.759254, 49.033343], [-123.758601, 49.032789], [-123.758772, 49.032339], [-123.758282, 49.031622], [-123.758365, 49.031604], [-123.758599, 49.031719], [-123.75919, 49.031859], [-123.759692, 49.031676], [-123.760205, 49.031097], [-123.760051, 49.030954], [-123.760241, 49.030809], [-123.760452, 49.030322], [-123.760627, 49.03014], [-123.760776, 49.03004], [-123.760927, 49.030084], [-123.761267, 49.029956], [-123.761582, 49.029963], [-123.762168, 49.029806], [-123.762371, 49.02968], [-123.762479, 49.029534], [-123.762644, 49.028678], [-123.763479, 49.028718], [-123.764399, 49.028963], [-123.76478, 49.028835], [-123.764763, 49.028691], [-123.764434, 49.02855], [-123.764086, 49.028193], [-123.763852, 49.02808], [-123.763739, 49.027879], [-123.764164, 49.027949], [-123.764603, 49.028099], [-123.765089, 49.028429], [-123.766433, 49.02868], [-123.766901, 49.028902], [-123.767286, 49.02899], [-123.767354, 49.029061], [-123.767337, 49.029196], [-123.766808, 49.029956], [-123.766093, 49.030608], [-123.766141, 49.031121], [-123.766745, 49.031233], [-123.76721, 49.031114], [-123.767273, 49.030843], [-123.767489, 49.030698], [-123.767806, 49.03083], [-123.768039, 49.030802], [-123.76811, 49.030054], [-123.768188, 49.029892], [-123.768599, 49.029845], [-123.768664, 49.029664], [-123.769116, 49.02968], [-123.769128, 49.029615], [-123.76849, 49.029009], [-123.768531, 49.028955], [-123.769175, 49.029157], [-123.771976, 49.029803], [-123.772154, 49.029749], [-123.772247, 49.029604], [-123.771874, 49.02939], [-123.771733, 49.029104], [-123.771775, 49.02905], [-123.771992, 49.029057], [-123.772419, 49.029217], [-123.773956, 49.029511], [-123.774685, 49.029741], [-123.778289, 49.030113], [-123.778342, 49.030067], [-123.778217, 49.029915], [-123.777296, 49.029634], [-123.777281, 49.02958], [-123.778417, 49.029617], [-123.780404, 49.029792], [-123.781894, 49.029719], [-123.782208, 49.029662], [-123.782557, 49.029328], [-123.782937, 49.029154], [-123.783497, 49.029024], [-123.783922, 49.029067], [-123.784276, 49.028983], [-123.784708, 49.028593], [-123.784444, 49.028425], [-123.784499, 49.028317], [-123.785847, 49.028], [-123.786323, 49.027791], [-123.786988, 49.027382], [-123.787987, 49.026637], [-123.788456, 49.026058], [-123.788594, 49.026129], [-123.788763, 49.026415], [-123.788755, 49.026759], [-123.788512, 49.027012], [-123.788079, 49.027203], [-123.788046, 49.027698], [-123.78782, 49.02815], [-123.787836, 49.028311], [-123.788058, 49.028526], [-123.788593, 49.028603], [-123.789957, 49.028386], [-123.790202, 49.028287], [-123.790593, 49.027978], [-123.790601, 49.027519], [-123.791105, 49.026481], [-123.791212, 49.026363], [-123.791293, 49.026363], [-123.791474, 49.026542], [-123.791638, 49.026514], [-123.791678, 49.026449], [-123.791673, 49.026099], [-123.791317, 49.026083], [-123.790691, 49.025521], [-123.790662, 49.025341], [-123.790749, 49.024765], [-123.791054, 49.024223], [-123.791048, 49.023836], [-123.79114, 49.023548], [-123.791313, 49.023268], [-123.79153, 49.023168], [-123.791826, 49.022823], [-123.791863, 49.022571], [-123.791498, 49.022034], [-123.79136, 49.021972], [-123.791132, 49.021327], [-123.790839, 49.020995], [-123.790509, 49.020862], [-123.790451, 49.020666], [-123.790186, 49.020361], [-123.78994, 49.0203], [-123.78901, 49.020324], [-123.788901, 49.020459], [-123.788852, 49.02074], [-123.788702, 49.020785], [-123.788238, 49.019969], [-123.787837, 49.019649], [-123.787568, 49.019192], [-123.78663, 49.018632], [-123.786302, 49.018633], [-123.785363, 49.018874], [-123.783802, 49.01893], [-123.78364, 49.018994], [-123.783563, 49.019363], [-123.78319, 49.019122], [-123.783037, 49.01889], [-123.782907, 49.018468], [-123.782713, 49.018226], [-123.781773, 49.017666], [-123.781458, 49.017597], [-123.78009, 49.01757], [-123.779844, 49.017625], [-123.77956, 49.017843], [-123.779273, 49.017871], [-123.778721, 49.017578], [-123.777447, 49.017461], [-123.775446, 49.017078], [-123.773861, 49.016298], [-123.772952, 49.015972], [-123.772347, 49.015651], [-123.771375, 49.014785], [-123.769176, 49.013126], [-123.768554, 49.012788], [-123.76788, 49.012515], [-123.767353, 49.012113], [-123.766955, 49.0119], [-123.766812, 49.011559], [-123.766576, 49.011265], [-123.765952, 49.010719], [-123.765621, 49.010532], [-123.765134, 49.010006], [-123.764041, 49.009158], [-123.763784, 49.00852], [-123.763271, 49.007993], [-123.763058, 49.0075], [-123.762712, 49.007197], [-123.762335, 49.006696], [-123.762167, 49.006408], [-123.762078, 49.006031], [-123.761727, 49.005458], [-123.761297, 49.005011], [-123.761156, 49.004715], [-123.760933, 49.004482], [-123.760788, 49.003827], [-123.761, 49.00263], [-123.760953, 49.002224], [-123.760827, 49.002054], [-123.760387, 49.001788], [-123.76026, 49.001509], [-123.760337, 49.001302], [-123.760701, 49.000976], [-123.761157, 49.000379], [-123.761288, 48.999982], [-123.760884, 48.999401], [-123.760754, 48.998961], [-123.760432, 48.998468], [-123.760027, 48.997931], [-123.759333, 48.997269], [-123.75901, 48.996759], [-123.75881, 48.996112], [-123.758886, 48.994862], [-123.758664, 48.994593], [-123.758262, 48.994289], [-123.758233, 48.994173], [-123.758355, 48.994083], [-123.758859, 48.994016], [-123.759199, 48.993825], [-123.759517, 48.993211], [-123.760093, 48.992452], [-123.76044, 48.991855], [-123.760458, 48.991545], [-123.760932, 48.991527], [-123.762001, 48.991648], [-123.763235, 48.991664], [-123.765576, 48.991597], [-123.774085, 48.991614], [-123.774571, 48.991685], [-123.775616, 48.991958], [-123.778201, 48.991445], [-123.779185, 48.992109], [-123.779653, 48.992357], [-123.781167, 48.992914], [-123.781907, 48.993106], [-123.782194, 48.993131], [-123.783328, 48.993087], [-123.784488, 48.992855], [-123.785777, 48.992324], [-123.786388, 48.991934], [-123.786976, 48.992065], [-123.787692, 48.992438], [-123.788206, 48.992803], [-123.788222, 48.992982], [-123.787987, 48.993723], [-123.788129, 48.994505], [-123.787466, 48.995554], [-123.788157, 48.999924], [-123.788174, 49.000856], [-123.795859, 49.000582], [-123.795746, 48.999645], [-123.79552, 48.998844], [-123.796165, 48.999036], [-123.796259, 48.998901], [-123.796143, 48.998478], [-123.796146, 48.997921], [-123.796058, 48.997525], [-123.795582, 48.99689], [-123.795894, 48.996664], [-123.796236, 48.996589], [-123.796468, 48.996624], [-123.797212, 48.997022], [-123.798207, 48.997726], [-123.801303, 48.99972], [-123.801928, 49.000318], [-123.803146, 49.001255], [-123.803688, 49.00188], [-123.804864, 49.002699], [-123.805725, 49.00354], [-123.808997, 49.005487], [-123.809977, 49.005965], [-123.812963, 49.008086], [-123.813974, 49.008771], [-123.814885, 49.009286], [-123.817969, 49.011427], [-123.817738, 49.012199], [-123.817548, 49.016283], [-123.800981, 49.015977], [-123.800941, 49.025449], [-123.80118, 49.028913], [-123.801179, 49.03113], [-123.80101, 49.035068], [-123.801076, 49.03578]]]]}, "properties": {"name": "Cowichan Valley H", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley H", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919017", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.830413, 49.006951], [-123.8336, 49.006166], [-123.834421, 49.006701], [-123.834268, 49.006025], [-123.831858, 49.003031], [-123.830603, 49.001891], [-123.831284, 49.002006], [-123.832579, 49.002513], [-123.833332, 49.002525], [-123.834066, 49.002466], [-123.834172, 49.001907], [-123.834822, 49.001578], [-123.836097, 49.001704], [-123.836287, 49.000066], [-123.841263, 49.000357], [-123.842712, 49.000266], [-123.842732, 49.001759], [-123.847246, 49.00163], [-123.846783, 49.000324], [-123.845896, 48.998692], [-123.845806, 48.998123], [-123.84544, 48.998128], [-123.844996, 48.991437], [-123.840193, 48.991483], [-123.835829, 48.987153], [-123.83589, 48.979267], [-123.82803, 48.979397], [-123.826079, 48.977557], [-123.811096, 48.974066], [-123.81129, 48.968613], [-123.804438, 48.968728], [-123.800027, 48.968316], [-123.800179, 48.961241], [-123.79501, 48.961245], [-123.792754, 48.952202], [-123.788522, 48.946528], [-123.790668, 48.936364], [-123.772905, 48.93623], [-123.773184, 48.939388], [-123.770357, 48.939481], [-123.771099, 48.944356], [-123.776263, 48.948793], [-123.776884, 48.949456], [-123.777573, 48.950511], [-123.777913, 48.951343], [-123.778715, 48.954639], [-123.779242, 48.954723], [-123.780961, 48.954679], [-123.781011, 48.955473], [-123.779364, 48.955529], [-123.778901, 48.955418], [-123.779983, 48.959803], [-123.780429, 48.959837], [-123.781428, 48.959804], [-123.781486, 48.960464], [-123.782917, 48.960384], [-123.783065, 48.96204], [-123.781675, 48.961521], [-123.78154, 48.960755], [-123.780456, 48.960867], [-123.781255, 48.962123], [-123.781873, 48.962819], [-123.783154, 48.963942], [-123.783774, 48.964387], [-123.785052, 48.965155], [-123.784349, 48.961363], [-123.785472, 48.961542], [-123.786432, 48.965984], [-123.787568, 48.966668], [-123.788801, 48.967526], [-123.788769, 48.969472], [-123.788085, 48.969095], [-123.787901, 48.971264], [-123.788047, 48.971911], [-123.786209, 48.974692], [-123.789017, 48.975793], [-123.791243, 48.976993], [-123.792528, 48.977602], [-123.793984, 48.978793], [-123.79531, 48.97996], [-123.796386, 48.981216], [-123.799002, 48.983132], [-123.800432, 48.986174], [-123.802119, 48.98783], [-123.80286, 48.990574], [-123.802701, 48.991959], [-123.803582, 48.993953], [-123.804332, 48.994734], [-123.805965, 48.99531], [-123.802062, 48.997665], [-123.809876, 49.002437], [-123.810892, 49.003423], [-123.811312, 49.003977], [-123.811865, 49.004378], [-123.812131, 49.004844], [-123.813624, 49.005841], [-123.814222, 49.00635], [-123.814909, 49.006587], [-123.815309, 49.006845], [-123.815337, 49.006899], [-123.815177, 49.007099], [-123.815664, 49.007607], [-123.816635, 49.00851], [-123.81834, 49.00981], [-123.819159, 49.010559], [-123.819007, 49.011315], [-123.820666, 49.010522], [-123.826686, 49.008215], [-123.830413, 49.006951]]]]}, "properties": {"name": "Ladysmith", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Ladysmith", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919021", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.542118, 48.933658], [-124.544393, 48.933097], [-124.5456, 48.932896], [-124.548414, 48.932842], [-124.548826, 48.932793], [-124.549501, 48.932473], [-124.549786, 48.932097], [-124.549942, 48.931079], [-124.549732, 48.930727], [-124.549787, 48.930553], [-124.549691, 48.930348], [-124.549416, 48.930178], [-124.548815, 48.930053], [-124.546611, 48.928806], [-124.546255, 48.928526], [-124.545719, 48.927586], [-124.545716, 48.92724], [-124.546156, 48.926948], [-124.547098, 48.926746], [-124.549508, 48.926659], [-124.550039, 48.926458], [-124.55021, 48.926064], [-124.549812, 48.925668], [-124.548406, 48.925383], [-124.548077, 48.925234], [-124.547763, 48.924906], [-124.547583, 48.924499], [-124.547498, 48.923614], [-124.546249, 48.92179], [-124.545853, 48.920753], [-124.545833, 48.919953], [-124.54614, 48.918867], [-124.546079, 48.918285], [-124.545897, 48.917843], [-124.545052, 48.916992], [-124.545128, 48.915053], [-124.54496, 48.912712], [-124.544975, 48.912402], [-124.545276, 48.911857], [-124.545221, 48.910462], [-124.545344, 48.91025], [-124.545744, 48.909938], [-124.546815, 48.909696], [-124.548656, 48.908887], [-124.549987, 48.908488], [-124.550753, 48.908049], [-124.551043, 48.907687], [-124.551207, 48.906696], [-124.550778, 48.905779], [-124.550568, 48.90482], [-124.550672, 48.90266], [-124.550637, 48.902287], [-124.550219, 48.901417], [-124.550171, 48.900732], [-124.550267, 48.900468], [-124.550637, 48.900338], [-124.551872, 48.90041], [-124.552226, 48.900179], [-124.552377, 48.899925], [-124.553875, 48.898585], [-124.554208, 48.897808], [-124.554817, 48.897447], [-124.556417, 48.896738], [-124.557146, 48.896247], [-124.558064, 48.895864], [-124.558382, 48.895647], [-124.558501, 48.895196], [-124.558815, 48.894931], [-124.559377, 48.894835], [-124.559869, 48.894869], [-124.560338, 48.895451], [-124.560691, 48.895676], [-124.562034, 48.896147], [-124.563565, 48.897077], [-124.564608, 48.89758], [-124.566544, 48.89811], [-124.568014, 48.898607], [-124.56857, 48.898715], [-124.569471, 48.898711], [-124.569988, 48.898597], [-124.57054, 48.898387], [-124.570994, 48.897809], [-124.571095, 48.897106], [-124.570563, 48.896597], [-124.57048, 48.896287], [-124.570606, 48.896019], [-124.571335, 48.895737], [-124.57165, 48.895227], [-124.571798, 48.894025], [-124.571778, 48.890188], [-124.571931, 48.889482], [-124.572116, 48.889231], [-124.573298, 48.888545], [-124.5742, 48.888305], [-124.575178, 48.888308], [-124.575625, 48.888539], [-124.57559, 48.88876], [-124.575877, 48.889214], [-124.576337, 48.889445], [-124.576744, 48.889426], [-124.578211, 48.889806], [-124.57887, 48.889822], [-124.580329, 48.889398], [-124.582043, 48.888809], [-124.583014, 48.888261], [-124.584044, 48.887461], [-124.58455, 48.886816], [-124.585228, 48.88617], [-124.588686, 48.884262], [-124.588977, 48.883974], [-124.589382, 48.883158], [-124.589508, 48.882449], [-124.58949, 48.881952], [-124.589226, 48.881529], [-124.587719, 48.880333], [-124.58782, 48.879854], [-124.588292, 48.879346], [-124.588877, 48.879011], [-124.590941, 48.878437], [-124.592099, 48.878245], [-124.593081, 48.878259], [-124.594262, 48.878376], [-124.596333, 48.878975], [-124.597697, 48.879583], [-124.599133, 48.879897], [-124.600689, 48.879907], [-124.602065, 48.879824], [-124.604481, 48.879895], [-124.605132, 48.879814], [-124.605925, 48.879585], [-124.607021, 48.879014], [-124.608055, 48.878249], [-124.609691, 48.876227], [-124.609988, 48.876071], [-124.610417, 48.875973], [-124.611345, 48.875992], [-124.61347, 48.876296], [-124.615709, 48.876805], [-124.616365, 48.876822], [-124.617293, 48.876496], [-124.617794, 48.875848], [-124.618709, 48.87517], [-124.619066, 48.875072], [-124.620265, 48.874969], [-124.621494, 48.874657], [-124.622377, 48.87381], [-124.622897, 48.873184], [-124.624179, 48.871978], [-124.630126, 48.86827], [-124.631125, 48.867508], [-124.634524, 48.865378], [-124.636602, 48.863843], [-124.637567, 48.862564], [-124.637952, 48.862238], [-124.638862, 48.861701], [-124.639495, 48.8616], [-124.640021, 48.861687], [-124.640191, 48.86198], [-124.640273, 48.862435], [-124.639921, 48.863815], [-124.639946, 48.864769], [-124.640511, 48.865502], [-124.64222, 48.86627], [-124.643257, 48.866672], [-124.643469, 48.866897], [-124.644065, 48.867174], [-124.644362, 48.867197], [-124.644509, 48.867095], [-124.645172, 48.867322], [-124.646272, 48.867519], [-124.649539, 48.868359], [-124.650518, 48.86854], [-124.650953, 48.868537], [-124.651699, 48.868321], [-124.652847, 48.867351], [-124.653258, 48.866489], [-124.653344, 48.864493], [-124.654101, 48.862862], [-124.654082, 48.86238], [-124.653859, 48.86203], [-124.653366, 48.86171], [-124.651035, 48.860825], [-124.650117, 48.859872], [-124.649947, 48.859344], [-124.650636, 48.858767], [-124.654266, 48.85646], [-124.654703, 48.855876], [-124.654751, 48.855215], [-124.654968, 48.854903], [-124.654956, 48.85449], [-124.654777, 48.854049], [-124.654442, 48.853812], [-124.65393, 48.852471], [-124.652534, 48.850495], [-124.649458, 48.847233], [-124.649238, 48.845484], [-124.649332, 48.844616], [-124.649178, 48.844185], [-124.649309, 48.843498], [-124.649595, 48.843171], [-124.650136, 48.842845], [-124.650558, 48.842604], [-124.651091, 48.842454], [-124.651641, 48.841756], [-124.653679, 48.839751], [-124.654011, 48.839694], [-124.654387, 48.839479], [-124.654662, 48.839263], [-124.654848, 48.838928], [-124.656664, 48.837629], [-124.657666, 48.837219], [-124.659038, 48.837031], [-124.659968, 48.837039], [-124.660782, 48.837149], [-124.66151, 48.83743], [-124.663325, 48.838702], [-124.663761, 48.83914], [-124.664521, 48.840462], [-124.665456, 48.841201], [-124.666181, 48.841473], [-124.666982, 48.841621], [-124.668246, 48.841586], [-124.669106, 48.841296], [-124.669634, 48.840841], [-124.671594, 48.838457], [-124.671831, 48.837784], [-124.671707, 48.837098], [-124.672008, 48.835695], [-124.672321, 48.83454], [-124.672709, 48.834024], [-124.672725, 48.833913], [-124.672438, 48.83313], [-124.671467, 48.831646], [-124.670872, 48.830994], [-124.670336, 48.830673], [-124.669409, 48.829877], [-124.669249, 48.829335], [-124.669517, 48.828675], [-124.670201, 48.82832], [-124.671805, 48.827893], [-124.673167, 48.827423], [-124.674214, 48.826814], [-124.676159, 48.826019], [-124.677156, 48.825465], [-124.677475, 48.825408], [-124.678185, 48.825466], [-124.679248, 48.824985], [-124.680418, 48.824324], [-124.681099, 48.82386], [-124.681409, 48.823443], [-124.681857, 48.822313], [-124.681898, 48.821444], [-124.68166, 48.820453], [-124.678964, 48.813426], [-124.683418, 48.811031], [-124.685411, 48.808434], [-124.689232, 48.804583], [-124.690637, 48.802829], [-124.692235, 48.799032], [-124.693646, 48.796088], [-124.698549, 48.793554], [-124.703778, 48.790025], [-124.707935, 48.786081], [-124.720399, 48.77964], [-124.727917, 48.773107], [-124.730872, 48.770721], [-124.738467, 48.758895], [-124.735686, 48.753819], [-124.736624, 48.7505], [-124.741608, 48.744845], [-124.749415, 48.74323], [-124.756884, 48.740598], [-124.757995, 48.739639], [-124.773444, 48.731685], [-124.774898, 48.730445], [-124.781133, 48.722599], [-124.784172, 48.721291], [-124.78801, 48.717006], [-124.793875, 48.70847], [-124.79407, 48.707019], [-124.801968, 48.696575], [-124.809799, 48.693192], [-124.819775, 48.689417], [-124.838585, 48.686537], [-124.847333, 48.687874], [-124.849746, 48.687432], [-124.853421, 48.684772], [-124.854964, 48.683246], [-124.854981, 48.682635], [-124.854567, 48.681631], [-124.854647, 48.680557], [-124.854157, 48.679656], [-124.853437, 48.679056], [-124.853122, 48.678582], [-124.852985, 48.678062], [-124.852502, 48.677192], [-124.852568, 48.676488], [-124.852771, 48.675699], [-124.852737, 48.675384], [-124.852911, 48.674634], [-124.852728, 48.67411], [-124.852336, 48.67349], [-124.852578, 48.673046], [-124.852495, 48.672716], [-124.852249, 48.672548], [-124.85174, 48.672368], [-124.852177, 48.671444], [-124.852117, 48.671092], [-124.851869, 48.670755], [-124.8521, 48.668343], [-124.855227, 48.662307], [-124.845094, 48.547705], [-124.598305, 48.513658], [-124.598661, 48.513592], [-124.5, 48.500071], [-124.5, 48.5], [-124.499486, 48.5], [-124.500664, 48.539898], [-124.500356, 48.559593], [-124.498256, 48.559704], [-124.498583, 48.59212], [-124.487993, 48.592201], [-124.488542, 48.605317], [-124.490185, 48.634141], [-124.488144, 48.633926], [-124.447272, 48.634907], [-124.447312, 48.626524], [-124.435506, 48.627241], [-124.428784, 48.627245], [-124.426488, 48.624694], [-124.421344, 48.626293], [-124.422479, 48.627897], [-124.421015, 48.628179], [-124.421776, 48.633245], [-124.41929, 48.633195], [-124.418656, 48.636846], [-124.412685, 48.636857], [-124.413075, 48.654497], [-124.413697, 48.665685], [-124.408206, 48.665534], [-124.382818, 48.664337], [-124.382258, 48.664907], [-124.381865, 48.665478], [-124.38168, 48.666613], [-124.381829, 48.667124], [-124.381824, 48.66743], [-124.381626, 48.668125], [-124.381338, 48.668551], [-124.379663, 48.670344], [-124.379577, 48.67066], [-124.379796, 48.671251], [-124.37974, 48.671666], [-124.379078, 48.671862], [-124.378813, 48.672063], [-124.378437, 48.672203], [-124.37812, 48.67253], [-124.377933, 48.673702], [-124.377923, 48.674288], [-124.378053, 48.67506], [-124.378788, 48.676139], [-124.379111, 48.676468], [-124.37941, 48.676978], [-124.379456, 48.677193], [-124.379348, 48.67821], [-124.379552, 48.679251], [-124.379482, 48.680143], [-124.379291, 48.681089], [-124.379981, 48.695267], [-124.363133, 48.69509], [-124.356839, 48.695192], [-124.356856, 48.680749], [-124.311921, 48.680713], [-124.309799, 48.680669], [-124.280833, 48.680744], [-124.280056, 48.721205], [-124.243119, 48.68992], [-124.220024, 48.671694], [-124.218497, 48.67057], [-124.200304, 48.656089], [-124.178148, 48.65607], [-124.174798, 48.655931], [-124.174881, 48.65126], [-124.161714, 48.651005], [-124.161731, 48.647781], [-124.155201, 48.647599], [-124.155105, 48.640502], [-124.142487, 48.64066], [-124.142173, 48.635725], [-124.113764, 48.635928], [-124.11366, 48.649816], [-124.067809, 48.649694], [-124.033216, 48.649358], [-124.023102, 48.649074], [-124.022647, 48.644242], [-123.966498, 48.644277], [-123.94919, 48.644434], [-123.946421, 48.644364], [-123.946068, 48.638495], [-123.931817, 48.63851], [-123.926823, 48.639961], [-123.92443, 48.640123], [-123.91681, 48.642802], [-123.916809, 48.644166], [-123.915382, 48.644285], [-123.915102, 48.650215], [-123.910653, 48.652242], [-123.906173, 48.65227], [-123.906033, 48.645327], [-123.902143, 48.645257], [-123.901939, 48.63894], [-123.898028, 48.639032], [-123.896336, 48.636797], [-123.888945, 48.638921], [-123.88588, 48.638673], [-123.885198, 48.637347], [-123.881213, 48.63782], [-123.878197, 48.637822], [-123.876066, 48.639016], [-123.876314, 48.658842], [-123.876295, 48.667602], [-123.89828, 48.667499], [-123.898455, 48.683879], [-123.898663, 48.68898], [-123.889697, 48.689114], [-123.89023, 48.714442], [-123.893165, 48.71448], [-123.893006, 48.719852], [-123.892975, 48.726415], [-123.89291, 48.747279], [-123.892977, 48.766816], [-123.892797, 48.770429], [-123.892206, 48.770637], [-123.891752, 48.770653], [-123.891118, 48.7705], [-123.890486, 48.770187], [-123.890288, 48.769976], [-123.889883, 48.769137], [-123.889962, 48.768657], [-123.890365, 48.768115], [-123.890515, 48.767777], [-123.8905, 48.767263], [-123.890252, 48.766995], [-123.88983, 48.76674], [-123.888789, 48.766549], [-123.886343, 48.765926], [-123.885382, 48.765578], [-123.883873, 48.765332], [-123.881806, 48.765292], [-123.877321, 48.765604], [-123.876501, 48.765792], [-123.875614, 48.766095], [-123.875167, 48.766391], [-123.874803, 48.766773], [-123.874245, 48.767536], [-123.874043, 48.768409], [-123.874016, 48.769189], [-123.873697, 48.76974], [-123.873176, 48.770097], [-123.872453, 48.770278], [-123.871353, 48.770287], [-123.868511, 48.770134], [-123.868138, 48.770084], [-123.867428, 48.769767], [-123.864479, 48.769803], [-123.863835, 48.769789], [-123.863393, 48.769712], [-123.863156, 48.769592], [-123.862865, 48.768999], [-123.863074, 48.767474], [-123.862926, 48.766735], [-123.862758, 48.766532], [-123.860935, 48.765883], [-123.860428, 48.765597], [-123.859983, 48.765232], [-123.859566, 48.764664], [-123.859243, 48.763304], [-123.859281, 48.76279], [-123.859214, 48.762775], [-123.859214, 48.762679], [-123.85933, 48.762706], [-123.859389, 48.762606], [-123.859953, 48.762235], [-123.860257, 48.761916], [-123.860343, 48.761383], [-123.860094, 48.761022], [-123.859475, 48.760838], [-123.858921, 48.760843], [-123.855949, 48.761325], [-123.854829, 48.761892], [-123.854023, 48.762069], [-123.852384, 48.76212], [-123.851778, 48.762058], [-123.850154, 48.761524], [-123.848439, 48.760713], [-123.846492, 48.759606], [-123.84575, 48.758768], [-123.84524, 48.758412], [-123.843729, 48.75787], [-123.842888, 48.757791], [-123.842316, 48.757836], [-123.840321, 48.758476], [-123.839826, 48.758503], [-123.839138, 48.758417], [-123.838679, 48.758248], [-123.838008, 48.757842], [-123.838376, 48.760417], [-123.838009, 48.770015], [-123.837645, 48.773831], [-123.837708, 48.775124], [-123.837717, 48.784583], [-123.826677, 48.784517], [-123.826633, 48.791592], [-123.824122, 48.791652], [-123.823921, 48.813275], [-123.823852, 48.844916], [-123.823997, 48.844652], [-123.824519, 48.844202], [-123.827526, 48.847221], [-123.826899, 48.848174], [-123.826845, 48.850004], [-123.842903, 48.850034], [-123.843003, 48.857187], [-123.848077, 48.857243], [-123.848003, 48.86352], [-123.846913, 48.865274], [-123.847612, 48.868603], [-123.842585, 48.868425], [-123.842704, 48.869472], [-123.839343, 48.872227], [-123.838696, 48.872004], [-123.837293, 48.87347], [-123.833618, 48.873127], [-123.830484, 48.877], [-123.827002, 48.875814], [-123.826064, 48.879343], [-123.821567, 48.879752], [-123.821514, 48.887514], [-123.826239, 48.887581], [-123.826518, 48.89208], [-123.823941, 48.892472], [-123.823661, 48.894715], [-123.821668, 48.894895], [-123.821218, 48.909587], [-123.848943, 48.908624], [-123.849923, 48.916173], [-123.85463, 48.916049], [-123.876063, 48.915667], [-123.876287, 48.912451], [-123.892674, 48.91227], [-123.892792, 48.915445], [-123.898558, 48.915384], [-123.898687, 48.918735], [-123.941852, 48.918502], [-123.942081, 48.920821], [-123.9484, 48.920919], [-123.948632, 48.920286], [-123.968158, 48.920186], [-123.968363, 48.930903], [-123.975012, 48.931061], [-123.975108, 48.937147], [-123.986197, 48.937165], [-123.993588, 48.937063], [-124.004351, 48.936821], [-124.020828, 48.936729], [-124.021112, 48.931979], [-124.034332, 48.930887], [-124.034745, 48.927485], [-124.042504, 48.92767], [-124.047794, 48.927873], [-124.048477, 48.930904], [-124.058307, 48.931657], [-124.058847, 48.924139], [-124.05872, 48.921849], [-124.059359, 48.914049], [-124.059963, 48.913145], [-124.060669, 48.912468], [-124.060104, 48.911725], [-124.05927, 48.911291], [-124.058028, 48.910963], [-124.057561, 48.91067], [-124.056417, 48.909707], [-124.055947, 48.909581], [-124.053754, 48.909698], [-124.053017, 48.909301], [-124.052331, 48.908664], [-124.050492, 48.907337], [-124.049465, 48.907071], [-124.04847, 48.907091], [-124.047481, 48.906878], [-124.045682, 48.905901], [-124.045031, 48.905397], [-124.04392, 48.904852], [-124.043036, 48.904627], [-124.041087, 48.903879], [-124.04101, 48.903332], [-124.040867, 48.903113], [-124.040273, 48.902703], [-124.03968, 48.902485], [-124.038901, 48.90229], [-124.037882, 48.902203], [-124.037243, 48.901948], [-124.035886, 48.901006], [-124.035461, 48.900825], [-124.035156, 48.900751], [-124.034426, 48.900751], [-124.033939, 48.900583], [-124.033843, 48.900233], [-124.033969, 48.899699], [-124.033657, 48.899527], [-124.033394, 48.899558], [-124.03297, 48.899746], [-124.032641, 48.899672], [-124.032385, 48.898983], [-124.031915, 48.898552], [-124.031222, 48.898548], [-124.03079, 48.898673], [-124.029858, 48.899237], [-124.029383, 48.899286], [-124.029087, 48.899206], [-124.027565, 48.898289], [-124.026514, 48.897449], [-124.026274, 48.896698], [-124.026368, 48.896504], [-124.026761, 48.896316], [-124.026853, 48.896165], [-124.026658, 48.895807], [-124.026396, 48.895643], [-124.025529, 48.895398], [-124.024052, 48.895586], [-124.023677, 48.895529], [-124.023112, 48.895292], [-124.02262, 48.894636], [-124.022478, 48.89456], [-124.022213, 48.894559], [-124.02127, 48.895012], [-124.020715, 48.895186], [-124.020123, 48.89514], [-124.017658, 48.893377], [-124.016939, 48.892723], [-124.01676, 48.892417], [-124.016657, 48.891524], [-124.01638, 48.891211], [-124.015293, 48.890981], [-124.015601, 48.887872], [-124.019859, 48.887792], [-124.019817, 48.884189], [-124.024852, 48.884281], [-124.024874, 48.880855], [-124.023164, 48.880745], [-124.02354, 48.872747], [-124.025865, 48.872663], [-124.025963, 48.870868], [-124.03441, 48.870631], [-124.0344, 48.87626], [-124.053908, 48.875897], [-124.054368, 48.860947], [-124.071861, 48.860804], [-124.072372, 48.846789], [-124.066837, 48.846659], [-124.066739, 48.843376], [-124.061502, 48.843338], [-124.061707, 48.844784], [-124.054723, 48.844884], [-124.05479, 48.841681], [-124.048737, 48.841863], [-124.0485, 48.834185], [-124.047186, 48.834214], [-124.047168, 48.833606], [-124.043377, 48.833646], [-124.042795, 48.83359], [-124.04285, 48.834066], [-124.042188, 48.834073], [-124.042525, 48.837104], [-124.031374, 48.837253], [-124.031425, 48.833536], [-124.03238, 48.833669], [-124.034407, 48.833746], [-124.034095, 48.832255], [-124.035388, 48.831897], [-124.035817, 48.831911], [-124.035931, 48.830908], [-124.036891, 48.83034], [-124.036884, 48.830136], [-124.036556, 48.829667], [-124.036235, 48.828938], [-124.034188, 48.830363], [-124.033348, 48.831297], [-124.032943, 48.831364], [-124.032411, 48.831341], [-124.031533, 48.831125], [-124.031062, 48.830769], [-124.030429, 48.829749], [-124.029793, 48.829238], [-124.029623, 48.829318], [-124.029121, 48.828836], [-124.028008, 48.828008], [-124.027797, 48.827749], [-124.027939, 48.825968], [-124.029736, 48.825946], [-124.030126, 48.824067], [-124.03011, 48.82342], [-124.030218, 48.823287], [-124.030419, 48.823259], [-124.032381, 48.823511], [-124.034559, 48.823236], [-124.034844, 48.823309], [-124.035009, 48.823204], [-124.035404, 48.823294], [-124.035116, 48.823082], [-124.034303, 48.821975], [-124.034754, 48.821255], [-124.033881, 48.819771], [-124.033073, 48.819856], [-124.032862, 48.819561], [-124.032368, 48.819314], [-124.032303, 48.818838], [-124.03234, 48.818721], [-124.032867, 48.818401], [-124.032976, 48.817834], [-124.033389, 48.817543], [-124.035209, 48.818365], [-124.037608, 48.818167], [-124.037516, 48.814681], [-124.041312, 48.814619], [-124.041705, 48.818862], [-124.050378, 48.818724], [-124.050393, 48.818628], [-124.056459, 48.818551], [-124.056718, 48.818813], [-124.057267, 48.819131], [-124.057917, 48.819406], [-124.058133, 48.816493], [-124.058199, 48.816419], [-124.065925, 48.816182], [-124.072911, 48.816258], [-124.072876, 48.816993], [-124.075112, 48.817078], [-124.084043, 48.817067], [-124.083852, 48.811253], [-124.090997, 48.811207], [-124.091187, 48.815701], [-124.096872, 48.815643], [-124.113158, 48.818039], [-124.111811, 48.825858], [-124.148024, 48.827376], [-124.155675, 48.827488], [-124.167991, 48.826928], [-124.174959, 48.825907], [-124.174382, 48.827139], [-124.178108, 48.827168], [-124.177154, 48.828229], [-124.178007, 48.828934], [-124.182472, 48.835579], [-124.203811, 48.857021], [-124.218993, 48.863498], [-124.217483, 48.865087], [-124.226208, 48.866275], [-124.225831, 48.867566], [-124.239491, 48.868997], [-124.238331, 48.871277], [-124.248049, 48.872621], [-124.283201, 48.881375], [-124.297835, 48.883555], [-124.313906, 48.888258], [-124.321191, 48.890489], [-124.31828, 48.895399], [-124.33506, 48.89602], [-124.332156, 48.899816], [-124.373929, 48.903804], [-124.374503, 48.908093], [-124.402923, 48.913781], [-124.415537, 48.916673], [-124.415952, 48.906693], [-124.441075, 48.906952], [-124.440881, 48.909574], [-124.457224, 48.909894], [-124.457189, 48.911183], [-124.501087, 48.912331], [-124.501118, 48.915403], [-124.516416, 48.915491], [-124.516858, 48.915721], [-124.517458, 48.915843], [-124.52017, 48.918238], [-124.529473, 48.925936], [-124.539345, 48.934394], [-124.539922, 48.93399], [-124.542118, 48.933658]], [[-124.666141, 48.813826], [-124.66598, 48.811843], [-124.666053, 48.810772], [-124.666014, 48.810223], [-124.664063, 48.809082], [-124.66399, 48.808939], [-124.663708, 48.807414], [-124.663866, 48.806404], [-124.663547, 48.805815], [-124.663264, 48.804115], [-124.666166, 48.804122], [-124.666956, 48.804213], [-124.668215, 48.804235], [-124.668669, 48.804093], [-124.67081, 48.804044], [-124.671343, 48.804246], [-124.671738, 48.804273], [-124.676299, 48.80846], [-124.674741, 48.808666], [-124.674245, 48.808926], [-124.673399, 48.809666], [-124.672812, 48.810017], [-124.672138, 48.810279], [-124.671329, 48.810479], [-124.670717, 48.810515], [-124.670002, 48.810742], [-124.66947, 48.81109], [-124.669166, 48.811384], [-124.668908, 48.811432], [-124.668549, 48.811699], [-124.667961, 48.812453], [-124.667643, 48.813097], [-124.667497, 48.813198], [-124.666942, 48.813341], [-124.666141, 48.813826]], [[-124.024582, 48.815309], [-124.026618, 48.815275], [-124.026612, 48.81673], [-124.028947, 48.816777], [-124.028615, 48.823766], [-124.027251, 48.823226], [-124.026598, 48.823101], [-124.019226, 48.823037], [-124.016408, 48.823423], [-124.016106, 48.823321], [-124.012871, 48.821492], [-124.012761, 48.821367], [-124.012792, 48.821215], [-124.013885, 48.820353], [-124.014147, 48.820059], [-124.014265, 48.819675], [-124.01421, 48.818959], [-124.014332, 48.816808], [-124.014265, 48.816619], [-124.014109, 48.816452], [-124.012949, 48.815813], [-124.010787, 48.814441], [-124.01007, 48.814042], [-124.009324, 48.813746], [-124.007894, 48.812917], [-124.005348, 48.812913], [-124.005032, 48.812805], [-124.004976, 48.812684], [-124.005023, 48.810809], [-124.005325, 48.81081], [-124.005553, 48.810882], [-124.005757, 48.811035], [-124.006, 48.811082], [-124.00665, 48.81105], [-124.00683, 48.810967], [-124.007085, 48.810743], [-124.006926, 48.810478], [-124.006479, 48.81021], [-124.006378, 48.810084], [-124.006377, 48.809901], [-124.006168, 48.809601], [-124.006188, 48.809322], [-124.00764, 48.809222], [-124.007871, 48.811772], [-124.00933, 48.811765], [-124.009396, 48.813508], [-124.016397, 48.813213], [-124.016489, 48.815262], [-124.020246, 48.814988], [-124.020274, 48.812475], [-124.02445, 48.81245], [-124.024582, 48.815309]]]]}, "properties": {"name": "Cowichan Valley F", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley F", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919033", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.580598, 49.148575], [-124.580543, 49.145066], [-124.582395, 49.144992], [-124.582555, 49.140058], [-124.582485, 49.135229], [-124.581043, 49.135245], [-124.5809, 49.131789], [-124.578504, 49.131465], [-124.578319, 49.129108], [-124.578851, 49.127656], [-124.578774, 49.126342], [-124.577841, 49.124955], [-124.577433, 49.124024], [-124.577928, 49.120159], [-124.578956, 49.11653], [-124.580089, 49.114248], [-124.577325, 49.10921], [-124.577391, 49.107756], [-124.579334, 49.10695], [-124.582168, 49.103734], [-124.583583, 49.104076], [-124.587018, 49.10562], [-124.588628, 49.105983], [-124.59047, 49.10742], [-124.584321, 49.112715], [-124.58869, 49.115255], [-124.598593, 49.109001], [-124.597644, 49.106415], [-124.598983, 49.106344], [-124.599313, 49.10557], [-124.599023, 49.104073], [-124.596659, 49.101611], [-124.595426, 49.099163], [-124.595123, 49.098191], [-124.595284, 49.096526], [-124.598766, 49.089941], [-124.599694, 49.088555], [-124.599912, 49.086956], [-124.599317, 49.084097], [-124.598818, 49.0822], [-124.597024, 49.079094], [-124.596816, 49.077306], [-124.597334, 49.075596], [-124.602804, 49.07564], [-124.603323, 49.079128], [-124.605921, 49.079374], [-124.606495, 49.081023], [-124.611797, 49.081261], [-124.611208, 49.090324], [-124.608691, 49.090697], [-124.608644, 49.096932], [-124.60785, 49.097353], [-124.607383, 49.103407], [-124.616292, 49.104114], [-124.620282, 49.099619], [-124.622921, 49.098762], [-124.624467, 49.098749], [-124.625173, 49.097272], [-124.629048, 49.097174], [-124.629832, 49.086048], [-124.635377, 49.086198], [-124.635774, 49.075389], [-124.638695, 49.07556], [-124.6389, 49.071886], [-124.637421, 49.0717], [-124.637133, 49.07029], [-124.633207, 49.070017], [-124.633377, 49.06822], [-124.631499, 49.068182], [-124.631516, 49.064059], [-124.630072, 49.063989], [-124.630028, 49.061406], [-124.627972, 49.061391], [-124.628196, 49.059662], [-124.630054, 49.059449], [-124.630404, 49.051524], [-124.6247, 49.051568], [-124.624459, 49.048843], [-124.61847, 49.048864], [-124.618326, 49.048008], [-124.615584, 49.048119], [-124.615359, 49.040366], [-124.61422, 49.04027], [-124.613895, 49.037447], [-124.611417, 49.037633], [-124.61114, 49.035095], [-124.60581, 49.034957], [-124.606091, 49.026107], [-124.603418, 49.02576], [-124.603645, 49.02113], [-124.602692, 49.021095], [-124.6026, 49.019917], [-124.605038, 49.019921], [-124.605209, 49.01752], [-124.601703, 49.017353], [-124.601741, 49.014569], [-124.605558, 49.014797], [-124.605684, 49.014101], [-124.607349, 49.014046], [-124.607377, 49.013083], [-124.6059, 49.012897], [-124.605622, 49.010966], [-124.606653, 49.011016], [-124.606843, 49.010166], [-124.616069, 49.010241], [-124.616746, 49.011331], [-124.617536, 49.011253], [-124.617852, 49.012112], [-124.618756, 49.01237], [-124.619325, 49.015089], [-124.621729, 49.014973], [-124.621787, 49.013958], [-124.625826, 49.014139], [-124.625846, 49.015994], [-124.628629, 49.016084], [-124.628935, 49.015059], [-124.633137, 49.01488], [-124.6334, 49.013958], [-124.637539, 49.014404], [-124.638252, 49.014321], [-124.603021, 48.985223], [-124.539345, 48.934394], [-124.529473, 48.925936], [-124.52017, 48.918238], [-124.517458, 48.915843], [-124.516858, 48.915721], [-124.516416, 48.915491], [-124.501118, 48.915403], [-124.501087, 48.912331], [-124.457189, 48.911183], [-124.457224, 48.909894], [-124.440881, 48.909574], [-124.441075, 48.906952], [-124.415952, 48.906693], [-124.415537, 48.916673], [-124.402923, 48.913781], [-124.374503, 48.908093], [-124.373929, 48.903804], [-124.332156, 48.899816], [-124.33506, 48.89602], [-124.31828, 48.895399], [-124.321191, 48.890489], [-124.313906, 48.888258], [-124.297835, 48.883555], [-124.283201, 48.881375], [-124.248049, 48.872621], [-124.238331, 48.871277], [-124.239491, 48.868997], [-124.225831, 48.867566], [-124.226208, 48.866275], [-124.217483, 48.865087], [-124.218993, 48.863498], [-124.203811, 48.857021], [-124.182472, 48.835579], [-124.178007, 48.828934], [-124.177154, 48.828229], [-124.178108, 48.827168], [-124.174382, 48.827139], [-124.174959, 48.825907], [-124.167991, 48.826928], [-124.155675, 48.827488], [-124.148024, 48.827376], [-124.111811, 48.825858], [-124.111571, 48.827254], [-124.108837, 48.826581], [-124.103784, 48.82712], [-124.101433, 48.82778], [-124.099816, 48.827312], [-124.097725, 48.827826], [-124.09677, 48.827873], [-124.093497, 48.8268], [-124.091147, 48.825642], [-124.089634, 48.825843], [-124.084654, 48.824284], [-124.081473, 48.823683], [-124.079434, 48.823622], [-124.077883, 48.822975], [-124.074026, 48.822309], [-124.072555, 48.822474], [-124.070168, 48.822095], [-124.069186, 48.82166], [-124.069592, 48.823751], [-124.07032, 48.823736], [-124.070842, 48.823892], [-124.071865, 48.823947], [-124.073026, 48.824125], [-124.07383, 48.824145], [-124.074653, 48.824424], [-124.075756, 48.824378], [-124.075995, 48.824276], [-124.076125, 48.82512], [-124.076407, 48.832026], [-124.069777, 48.831844], [-124.069716, 48.827823], [-124.069326, 48.827492], [-124.069372, 48.826611], [-124.065715, 48.826629], [-124.066016, 48.82756], [-124.065581, 48.827596], [-124.065665, 48.828033], [-124.065074, 48.828214], [-124.06522, 48.828657], [-124.063559, 48.828922], [-124.063422, 48.829013], [-124.06362, 48.830463], [-124.061966, 48.830468], [-124.061405, 48.83035], [-124.060601, 48.830013], [-124.059959, 48.830435], [-124.05476, 48.830438], [-124.054609, 48.830392], [-124.054765, 48.831983], [-124.05507, 48.8332], [-124.054723, 48.844884], [-124.061707, 48.844784], [-124.061502, 48.843338], [-124.066739, 48.843376], [-124.066837, 48.846659], [-124.072372, 48.846789], [-124.071861, 48.860804], [-124.054368, 48.860947], [-124.053908, 48.875897], [-124.0344, 48.87626], [-124.03441, 48.870631], [-124.025963, 48.870868], [-124.025865, 48.872663], [-124.02354, 48.872747], [-124.023164, 48.880745], [-124.024874, 48.880855], [-124.024852, 48.884281], [-124.019817, 48.884189], [-124.019859, 48.887792], [-124.015601, 48.887872], [-124.015293, 48.890981], [-124.01638, 48.891211], [-124.016657, 48.891524], [-124.01676, 48.892417], [-124.016939, 48.892723], [-124.017658, 48.893377], [-124.020123, 48.89514], [-124.020715, 48.895186], [-124.02127, 48.895012], [-124.022213, 48.894559], [-124.022478, 48.89456], [-124.02262, 48.894636], [-124.023112, 48.895292], [-124.023677, 48.895529], [-124.024052, 48.895586], [-124.025529, 48.895398], [-124.026396, 48.895643], [-124.026658, 48.895807], [-124.026853, 48.896165], [-124.026761, 48.896316], [-124.026368, 48.896504], [-124.026274, 48.896698], [-124.026514, 48.897449], [-124.027565, 48.898289], [-124.029087, 48.899206], [-124.029383, 48.899286], [-124.029858, 48.899237], [-124.03079, 48.898673], [-124.031222, 48.898548], [-124.031915, 48.898552], [-124.032385, 48.898983], [-124.032641, 48.899672], [-124.03297, 48.899746], [-124.033394, 48.899558], [-124.033657, 48.899527], [-124.033969, 48.899699], [-124.033843, 48.900233], [-124.033939, 48.900583], [-124.034426, 48.900751], [-124.035156, 48.900751], [-124.035461, 48.900825], [-124.035886, 48.901006], [-124.037243, 48.901948], [-124.037882, 48.902203], [-124.038901, 48.90229], [-124.03968, 48.902485], [-124.040273, 48.902703], [-124.040867, 48.903113], [-124.04101, 48.903332], [-124.041087, 48.903879], [-124.043036, 48.904627], [-124.04392, 48.904852], [-124.045031, 48.905397], [-124.045682, 48.905901], [-124.047481, 48.906878], [-124.04847, 48.907091], [-124.049465, 48.907071], [-124.050492, 48.907337], [-124.052331, 48.908664], [-124.053017, 48.909301], [-124.053754, 48.909698], [-124.055947, 48.909581], [-124.056417, 48.909707], [-124.057561, 48.91067], [-124.058028, 48.910963], [-124.05927, 48.911291], [-124.060104, 48.911725], [-124.060669, 48.912468], [-124.059963, 48.913145], [-124.059359, 48.914049], [-124.05872, 48.921849], [-124.058847, 48.924139], [-124.058307, 48.931657], [-124.048477, 48.930904], [-124.047794, 48.927873], [-124.042504, 48.92767], [-124.034745, 48.927485], [-124.034332, 48.930887], [-124.021112, 48.931979], [-124.020828, 48.936729], [-124.019457, 48.947721], [-124.019598, 48.947826], [-124.031805, 48.947097], [-124.031995, 48.944429], [-124.036621, 48.944138], [-124.037491, 48.946085], [-124.04476, 48.945795], [-124.044869, 48.946173], [-124.046269, 48.946204], [-124.046699, 48.948433], [-124.048165, 48.948323], [-124.048643, 48.94952], [-124.050223, 48.949428], [-124.050836, 48.950396], [-124.05321, 48.950317], [-124.053817, 48.952181], [-124.05498, 48.952062], [-124.055283, 48.953084], [-124.064377, 48.952623], [-124.064565, 48.952709], [-124.064645, 48.9538], [-124.065512, 48.953947], [-124.065669, 48.954939], [-124.066532, 48.95497], [-124.066666, 48.956086], [-124.068223, 48.956212], [-124.067983, 48.960318], [-124.069866, 48.960205], [-124.068923, 48.965323], [-124.071356, 48.965496], [-124.071461, 48.967394], [-124.072561, 48.967479], [-124.077198, 48.968044], [-124.07781, 48.95885], [-124.083407, 48.958729], [-124.083499, 48.95969], [-124.088519, 48.959436], [-124.088291, 48.96034], [-124.090204, 48.960402], [-124.09036, 48.962514], [-124.095952, 48.962459], [-124.095792, 48.960723], [-124.097572, 48.960676], [-124.097335, 48.958736], [-124.100539, 48.958652], [-124.100607, 48.955329], [-124.099474, 48.955226], [-124.099418, 48.95241], [-124.106438, 48.951789], [-124.106252, 48.950351], [-124.119004, 48.950153], [-124.118745, 48.948626], [-124.129803, 48.948149], [-124.12959, 48.94591], [-124.139127, 48.945747], [-124.13926, 48.946799], [-124.142085, 48.946854], [-124.141148, 48.941959], [-124.149843, 48.941863], [-124.149668, 48.939545], [-124.156031, 48.93915], [-124.156083, 48.939769], [-124.161688, 48.939718], [-124.162281, 48.945992], [-124.164159, 48.946052], [-124.164028, 48.946974], [-124.169299, 48.947072], [-124.169337, 48.947875], [-124.171816, 48.947893], [-124.171959, 48.948716], [-124.173168, 48.948795], [-124.173243, 48.949643], [-124.176827, 48.949721], [-124.176795, 48.948963], [-124.179522, 48.949023], [-124.179833, 48.952028], [-124.178412, 48.952139], [-124.178359, 48.954925], [-124.181164, 48.955074], [-124.181331, 48.954426], [-124.188987, 48.954506], [-124.188763, 48.957825], [-124.195996, 48.958353], [-124.195915, 48.961209], [-124.202822, 48.961561], [-124.203241, 48.956473], [-124.199787, 48.956092], [-124.199652, 48.954554], [-124.198276, 48.954294], [-124.198293, 48.951875], [-124.200069, 48.951434], [-124.197866, 48.950971], [-124.197259, 48.943962], [-124.201305, 48.941404], [-124.207434, 48.94131], [-124.22489, 48.936976], [-124.224818, 48.937904], [-124.224086, 48.937953], [-124.222826, 48.938415], [-124.22175, 48.938615], [-124.219671, 48.939521], [-124.217831, 48.941253], [-124.21434, 48.943883], [-124.214651, 48.94647], [-124.210583, 48.948842], [-124.210765, 48.950537], [-124.211681, 48.952256], [-124.210005, 48.955316], [-124.210824, 48.955209], [-124.212066, 48.95515], [-124.213162, 48.955274], [-124.21364, 48.955269], [-124.214814, 48.95499], [-124.220028, 48.956189], [-124.235082, 48.956769], [-124.238811, 48.957691], [-124.252899, 48.963974], [-124.262655, 48.967676], [-124.264678, 48.967637], [-124.268806, 48.969235], [-124.271552, 48.970048], [-124.274719, 48.969881], [-124.277641, 48.969217], [-124.279522, 48.969642], [-124.283721, 48.971742], [-124.294869, 48.973813], [-124.29611, 48.975061], [-124.298887, 48.979273], [-124.300841, 48.98073], [-124.303934, 48.982473], [-124.3108, 48.982237], [-124.310881, 48.979911], [-124.312952, 48.978559], [-124.315139, 48.97787], [-124.318358, 48.977448], [-124.317994, 48.975756], [-124.316453, 48.973204], [-124.318318, 48.968453], [-124.318994, 48.967144], [-124.321665, 48.966394], [-124.332623, 48.965293], [-124.334856, 48.966234], [-124.337448, 48.969279], [-124.339369, 48.974159], [-124.341014, 48.97567], [-124.34392, 48.976246], [-124.347537, 48.977971], [-124.35257, 48.979468], [-124.355151, 48.977455], [-124.356685, 48.975891], [-124.363295, 48.981004], [-124.364574, 48.982186], [-124.384935, 48.982057], [-124.392864, 48.990767], [-124.392648, 48.992596], [-124.392896, 48.994306], [-124.394365, 48.996413], [-124.396365, 48.998482], [-124.39758, 49.0001], [-124.398303, 49.001423], [-124.399255, 49.002449], [-124.400262, 49.003349], [-124.399422, 49.005674], [-124.399108, 49.008333], [-124.399205, 49.009656], [-124.399606, 49.010905], [-124.400535, 49.01247], [-124.401768, 49.013764], [-124.403245, 49.014641], [-124.404984, 49.015202], [-124.408409, 49.015393], [-124.409711, 49.015601], [-124.410393, 49.01594], [-124.410936, 49.016473], [-124.411907, 49.018182], [-124.413131, 49.021228], [-124.413827, 49.022397], [-124.414644, 49.023478], [-124.415435, 49.024363], [-124.416303, 49.025071], [-124.417135, 49.025464], [-124.418093, 49.025613], [-124.419291, 49.025499], [-124.420372, 49.02521], [-124.423329, 49.024141], [-124.425374, 49.023561], [-124.427125, 49.023217], [-124.428792, 49.023131], [-124.430424, 49.023218], [-124.431496, 49.023576], [-124.434244, 49.024775], [-124.434944, 49.024972], [-124.435659, 49.024993], [-124.436889, 49.024858], [-124.439557, 49.024385], [-124.44033, 49.024318], [-124.442147, 49.024501], [-124.443976, 49.024503], [-124.445982, 49.024203], [-124.449463, 49.023242], [-124.450696, 49.023103], [-124.452271, 49.023293], [-124.453447, 49.023609], [-124.454814, 49.023795], [-124.454935, 49.027821], [-124.456449, 49.027933], [-124.456564, 49.031111], [-124.457708, 49.031143], [-124.457802, 49.032373], [-124.463193, 49.032445], [-124.463195, 49.03162], [-124.466029, 49.031659], [-124.46608, 49.030908], [-124.46899, 49.03086], [-124.468914, 49.029359], [-124.46459, 49.029386], [-124.464594, 49.028716], [-124.463382, 49.028716], [-124.463412, 49.027044], [-124.465492, 49.027053], [-124.465588, 49.026062], [-124.46663, 49.026076], [-124.466774, 49.023672], [-124.464913, 49.023139], [-124.464965, 49.021474], [-124.463067, 49.021423], [-124.463069, 49.019932], [-124.470157, 49.019993], [-124.47025, 49.02077], [-124.472082, 49.020764], [-124.472127, 49.02152], [-124.479232, 49.021482], [-124.479274, 49.022198], [-124.482717, 49.02221], [-124.482781, 49.023829], [-124.479726, 49.02395], [-124.479816, 49.025144], [-124.484109, 49.025058], [-124.484119, 49.024084], [-124.495311, 49.024491], [-124.495279, 49.027017], [-124.497879, 49.027063], [-124.497986, 49.027855], [-124.503398, 49.027948], [-124.503543, 49.029695], [-124.499988, 49.029725], [-124.499985, 49.030775], [-124.501645, 49.030814], [-124.50197, 49.034177], [-124.493909, 49.034292], [-124.493761, 49.03106], [-124.488204, 49.0309], [-124.488171, 49.031705], [-124.487052, 49.031664], [-124.486981, 49.035896], [-124.485227, 49.035882], [-124.485265, 49.038551], [-124.488499, 49.038712], [-124.48841, 49.042303], [-124.485037, 49.042436], [-124.484944, 49.043345], [-124.477387, 49.043307], [-124.477364, 49.04419], [-124.473559, 49.044301], [-124.473459, 49.043433], [-124.469929, 49.043382], [-124.469937, 49.042535], [-124.465771, 49.042598], [-124.465802, 49.043491], [-124.456442, 49.043515], [-124.456028, 49.049035], [-124.4582, 49.049107], [-124.458125, 49.050038], [-124.463291, 49.050179], [-124.463174, 49.05556], [-124.460988, 49.055524], [-124.461081, 49.059169], [-124.463001, 49.059213], [-124.463145, 49.060185], [-124.471553, 49.060515], [-124.471806, 49.058613], [-124.47514, 49.058647], [-124.475301, 49.054547], [-124.481393, 49.054585], [-124.481296, 49.055436], [-124.482665, 49.055533], [-124.482629, 49.05624], [-124.490462, 49.056328], [-124.490503, 49.055197], [-124.495543, 49.055293], [-124.49551, 49.054129], [-124.501722, 49.054092], [-124.50171, 49.054881], [-124.503699, 49.054898], [-124.505763, 49.05329], [-124.505453, 49.048911], [-124.503091, 49.048943], [-124.503049, 49.047148], [-124.504569, 49.047116], [-124.50521, 49.047161], [-124.505875, 49.047311], [-124.506379, 49.047548], [-124.506886, 49.047929], [-124.508825, 49.049654], [-124.510636, 49.049678], [-124.51186, 49.050944], [-124.515768, 49.051057], [-124.516552, 49.068556], [-124.519058, 49.068615], [-124.519654, 49.069608], [-124.521495, 49.069744], [-124.521534, 49.070689], [-124.523774, 49.07144], [-124.523789, 49.079989], [-124.527242, 49.080132], [-124.527765, 49.091096], [-124.532875, 49.091099], [-124.532953, 49.094425], [-124.531764, 49.094464], [-124.531857, 49.097419], [-124.530278, 49.097457], [-124.529949, 49.10458], [-124.531317, 49.10462], [-124.531493, 49.108967], [-124.537227, 49.109177], [-124.537186, 49.113787], [-124.535024, 49.113858], [-124.535027, 49.116191], [-124.532643, 49.116198], [-124.532584, 49.118007], [-124.52939, 49.117912], [-124.529156, 49.120552], [-124.527942, 49.120521], [-124.528218, 49.124179], [-124.532511, 49.124186], [-124.532758, 49.125958], [-124.535336, 49.125992], [-124.536139, 49.127939], [-124.548212, 49.1281], [-124.549451, 49.131095], [-124.551552, 49.131113], [-124.551962, 49.132062], [-124.552429, 49.133484], [-124.552553, 49.134842], [-124.552305, 49.135769], [-124.551722, 49.13644], [-124.550883, 49.137015], [-124.549567, 49.137576], [-124.549872, 49.141713], [-124.552091, 49.141801], [-124.552207, 49.142746], [-124.55704, 49.142774], [-124.55712, 49.143542], [-124.565031, 49.143644], [-124.565458, 49.147244], [-124.567021, 49.14731], [-124.567088, 49.148804], [-124.580598, 49.148575]]]]}, "properties": {"name": "Cowichan Valley I", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley I", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919035", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.560265, 48.679255], [-123.569883, 48.680163], [-123.573464, 48.679639], [-123.574162, 48.679844], [-123.574933, 48.680187], [-123.575167, 48.678354], [-123.575026, 48.676803], [-123.57477, 48.67653], [-123.574636, 48.676122], [-123.574679, 48.675666], [-123.574885, 48.675256], [-123.574924, 48.674683], [-123.574828, 48.674164], [-123.574773, 48.672527], [-123.588907, 48.672482], [-123.588455, 48.656985], [-123.588632, 48.650852], [-123.58847, 48.64941], [-123.588787, 48.642693], [-123.588978, 48.641546], [-123.589905, 48.626337], [-123.589215, 48.618879], [-123.569382, 48.618772], [-123.559329, 48.618887], [-123.559043, 48.611183], [-123.548483, 48.611035], [-123.548527, 48.605898], [-123.548409, 48.600327], [-123.564444, 48.600152], [-123.56397, 48.582343], [-123.563936, 48.574877], [-123.56705, 48.574944], [-123.576608, 48.574416], [-123.576656, 48.57346], [-123.581125, 48.573475], [-123.581559, 48.567828], [-123.58431, 48.567907], [-123.584469, 48.563067], [-123.584376, 48.562045], [-123.578973, 48.560062], [-123.577923, 48.559455], [-123.576322, 48.558292], [-123.579207, 48.558202], [-123.579263, 48.535677], [-123.568072, 48.535745], [-123.560113, 48.535706], [-123.555475, 48.536023], [-123.544944, 48.535694], [-123.546418, 48.546763], [-123.543136, 48.550709], [-123.535886, 48.553457], [-123.512461, 48.561174], [-123.507128, 48.56706], [-123.502946, 48.57386], [-123.500017, 48.575595], [-123.499985, 48.637942], [-123.505587, 48.664322], [-123.508431, 48.679352], [-123.532467, 48.679011], [-123.532459, 48.67927], [-123.532698, 48.67923], [-123.536202, 48.679299], [-123.550587, 48.679345], [-123.560265, 48.679255]], [[-123.537167, 48.610768], [-123.537014, 48.636675], [-123.536721, 48.636433], [-123.535507, 48.635755], [-123.534893, 48.635478], [-123.533405, 48.634612], [-123.530341, 48.632522], [-123.529399, 48.631986], [-123.52895, 48.631827], [-123.528908, 48.631691], [-123.529001, 48.631493], [-123.529391, 48.631257], [-123.529676, 48.631193], [-123.529852, 48.631049], [-123.530025, 48.630787], [-123.530035, 48.630445], [-123.529743, 48.629709], [-123.52937, 48.629143], [-123.528151, 48.628043], [-123.527895, 48.626856], [-123.52763, 48.626237], [-123.526131, 48.624462], [-123.525639, 48.624042], [-123.525379, 48.62371], [-123.525251, 48.623197], [-123.524602, 48.622121], [-123.523486, 48.620534], [-123.522932, 48.619529], [-123.522262, 48.618866], [-123.52181, 48.618563], [-123.52186, 48.618067], [-123.521804, 48.617959], [-123.521093, 48.617424], [-123.520832, 48.617073], [-123.520408, 48.616734], [-123.519775, 48.6159], [-123.51875, 48.615176], [-123.518543, 48.614897], [-123.51875, 48.61397], [-123.518924, 48.612341], [-123.518823, 48.611829], [-123.518573, 48.6112], [-123.518367, 48.610958], [-123.518356, 48.61056], [-123.537167, 48.610768]]]]}, "properties": {"name": "Cowichan Valley A", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley A", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919043", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.842777, 48.719781], [-123.851461, 48.719845], [-123.893009, 48.719852], [-123.893165, 48.71448], [-123.89023, 48.714442], [-123.889697, 48.689114], [-123.898663, 48.68898], [-123.898455, 48.683879], [-123.89828, 48.667499], [-123.876295, 48.667602], [-123.876314, 48.658842], [-123.876066, 48.639016], [-123.874011, 48.640186], [-123.871997, 48.640217], [-123.871867, 48.63934], [-123.853204, 48.639567], [-123.853012, 48.637309], [-123.853601, 48.603294], [-123.848826, 48.603168], [-123.848396, 48.605767], [-123.831059, 48.605723], [-123.831145, 48.599117], [-123.826556, 48.599213], [-123.826399, 48.597478], [-123.814474, 48.597455], [-123.814572, 48.599134], [-123.809664, 48.59915], [-123.809829, 48.59777], [-123.807096, 48.597727], [-123.807124, 48.59604], [-123.804364, 48.595809], [-123.804519, 48.593993], [-123.801152, 48.593928], [-123.80112, 48.588395], [-123.820797, 48.588401], [-123.821038, 48.57498], [-123.806433, 48.574919], [-123.77949, 48.574643], [-123.779708, 48.581832], [-123.785233, 48.581853], [-123.78513, 48.588795], [-123.790559, 48.588861], [-123.790287, 48.593649], [-123.771321, 48.593797], [-123.771146, 48.601045], [-123.76579, 48.600884], [-123.765736, 48.604606], [-123.750899, 48.604472], [-123.750873, 48.605478], [-123.744441, 48.605559], [-123.74437, 48.608541], [-123.745325, 48.608497], [-123.745667, 48.622889], [-123.722611, 48.622795], [-123.72229, 48.619309], [-123.715067, 48.619284], [-123.714594, 48.613105], [-123.700956, 48.612939], [-123.701021, 48.616428], [-123.692892, 48.616454], [-123.693204, 48.622154], [-123.688376, 48.622132], [-123.688209, 48.602821], [-123.668828, 48.602474], [-123.668961, 48.598814], [-123.664302, 48.598973], [-123.66117, 48.598954], [-123.661382, 48.606761], [-123.666977, 48.606805], [-123.666851, 48.608458], [-123.658266, 48.608365], [-123.658302, 48.602053], [-123.652873, 48.601892], [-123.652964, 48.5967], [-123.647574, 48.596653], [-123.648077, 48.580488], [-123.640114, 48.580368], [-123.639951, 48.575626], [-123.640139, 48.572872], [-123.643391, 48.573116], [-123.643619, 48.570039], [-123.645572, 48.569987], [-123.645681, 48.56197], [-123.634619, 48.561801], [-123.635076, 48.547104], [-123.628328, 48.547029], [-123.628103, 48.540683], [-123.627437, 48.533144], [-123.627474, 48.53237], [-123.617097, 48.531958], [-123.616832, 48.529125], [-123.608829, 48.529018], [-123.608662, 48.521707], [-123.586436, 48.521211], [-123.586246, 48.525088], [-123.580977, 48.524723], [-123.580885, 48.526142], [-123.581119, 48.53176], [-123.579196, 48.531698], [-123.579263, 48.535677], [-123.579207, 48.558202], [-123.576322, 48.558292], [-123.577923, 48.559455], [-123.578973, 48.560062], [-123.584376, 48.562045], [-123.584469, 48.563067], [-123.58431, 48.567907], [-123.581559, 48.567828], [-123.581125, 48.573475], [-123.576656, 48.57346], [-123.576608, 48.574416], [-123.56705, 48.574944], [-123.563936, 48.574877], [-123.56397, 48.582343], [-123.564444, 48.600152], [-123.548409, 48.600327], [-123.548527, 48.605898], [-123.548483, 48.611035], [-123.559043, 48.611183], [-123.559329, 48.618887], [-123.569382, 48.618772], [-123.589215, 48.618879], [-123.589905, 48.626337], [-123.588978, 48.641546], [-123.588787, 48.642693], [-123.58847, 48.64941], [-123.588632, 48.650852], [-123.588455, 48.656985], [-123.588907, 48.672482], [-123.574773, 48.672527], [-123.574828, 48.674164], [-123.574924, 48.674683], [-123.574885, 48.675256], [-123.574679, 48.675666], [-123.574636, 48.676122], [-123.57477, 48.67653], [-123.575026, 48.676803], [-123.575167, 48.678354], [-123.574998, 48.679641], [-123.588906, 48.67941], [-123.604868, 48.67939], [-123.605592, 48.679312], [-123.610875, 48.679029], [-123.616312, 48.678956], [-123.616053, 48.687834], [-123.615949, 48.702781], [-123.616219, 48.712234], [-123.616151, 48.713459], [-123.616201, 48.718357], [-123.617137, 48.718486], [-123.618828, 48.71856], [-123.629988, 48.720196], [-123.631077, 48.720401], [-123.631738, 48.720572], [-123.632787, 48.721081], [-123.633716, 48.721909], [-123.633997, 48.721802], [-123.634058, 48.721869], [-123.636708, 48.722438], [-123.637214, 48.722506], [-123.636641, 48.719138], [-123.6436, 48.719103], [-123.643718, 48.716153], [-123.645111, 48.717263], [-123.647461, 48.718725], [-123.656098, 48.722876], [-123.658126, 48.72379], [-123.657719, 48.719191], [-123.659782, 48.719206], [-123.685212, 48.718677], [-123.692485, 48.71875], [-123.72609, 48.719614], [-123.734306, 48.719435], [-123.842777, 48.719781]]]]}, "properties": {"name": "Cowichan Valley B", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley B", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919046", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.616231, 48.719088], [-123.616151, 48.713459], [-123.615821, 48.713455], [-123.614657, 48.713132], [-123.614304, 48.713115], [-123.613398, 48.713498], [-123.61302, 48.713814], [-123.612383, 48.713927], [-123.611986, 48.713694], [-123.611943, 48.713551], [-123.611765, 48.713398], [-123.611399, 48.713491], [-123.610698, 48.713989], [-123.610677, 48.714402], [-123.610913, 48.714924], [-123.611268, 48.715083], [-123.611476, 48.715442], [-123.603048, 48.715352], [-123.602673, 48.715395], [-123.602505, 48.713433], [-123.602586, 48.71188], [-123.612664, 48.711784], [-123.613376, 48.711874], [-123.616204, 48.711708], [-123.615949, 48.702781], [-123.616053, 48.687834], [-123.616312, 48.678956], [-123.610875, 48.679029], [-123.605592, 48.679312], [-123.604868, 48.67939], [-123.588906, 48.67941], [-123.574998, 48.679641], [-123.574933, 48.680187], [-123.574162, 48.679844], [-123.573464, 48.679639], [-123.569883, 48.680163], [-123.560265, 48.679255], [-123.550587, 48.679345], [-123.536202, 48.679299], [-123.532698, 48.67923], [-123.532459, 48.67927], [-123.532467, 48.679011], [-123.508431, 48.679352], [-123.510444, 48.690523], [-123.5107, 48.693018], [-123.511051, 48.695377], [-123.512838, 48.701608], [-123.51952, 48.711181], [-123.520965, 48.713143], [-123.532332, 48.724329], [-123.533907, 48.725788], [-123.561237, 48.71907], [-123.5698, 48.718988], [-123.572282, 48.719094], [-123.579711, 48.719034], [-123.616231, 48.719088]]]]}, "properties": {"name": "Cowichan Valley C", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley C", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919049", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.801224, 48.910207], [-123.818534, 48.909602], [-123.821219, 48.909553], [-123.821668, 48.894895], [-123.823661, 48.894715], [-123.823941, 48.892472], [-123.826518, 48.89208], [-123.826239, 48.887581], [-123.821514, 48.887514], [-123.821567, 48.879752], [-123.826064, 48.879343], [-123.827002, 48.875814], [-123.830484, 48.877], [-123.833618, 48.873127], [-123.837293, 48.87347], [-123.838696, 48.872004], [-123.839343, 48.872227], [-123.842704, 48.869472], [-123.842585, 48.868425], [-123.847612, 48.868603], [-123.846913, 48.865274], [-123.848003, 48.86352], [-123.848077, 48.857243], [-123.843003, 48.857187], [-123.842903, 48.850034], [-123.826845, 48.850004], [-123.826899, 48.848174], [-123.827526, 48.847221], [-123.824519, 48.844202], [-123.823997, 48.844652], [-123.823852, 48.844916], [-123.823921, 48.813275], [-123.824122, 48.791652], [-123.826633, 48.791592], [-123.826677, 48.784517], [-123.837717, 48.784583], [-123.837708, 48.775124], [-123.837645, 48.773831], [-123.838009, 48.770015], [-123.838376, 48.760417], [-123.838008, 48.757842], [-123.838679, 48.758248], [-123.839138, 48.758417], [-123.839826, 48.758503], [-123.840321, 48.758476], [-123.842316, 48.757836], [-123.842888, 48.757791], [-123.843729, 48.75787], [-123.84524, 48.758412], [-123.84575, 48.758768], [-123.846492, 48.759606], [-123.848439, 48.760713], [-123.850154, 48.761524], [-123.851778, 48.762058], [-123.852384, 48.76212], [-123.854023, 48.762069], [-123.854829, 48.761892], [-123.855949, 48.761325], [-123.858921, 48.760843], [-123.859475, 48.760838], [-123.860094, 48.761022], [-123.860343, 48.761383], [-123.860257, 48.761916], [-123.859953, 48.762235], [-123.859389, 48.762606], [-123.85933, 48.762706], [-123.859214, 48.762679], [-123.859214, 48.762775], [-123.859281, 48.76279], [-123.859243, 48.763304], [-123.859566, 48.764664], [-123.859983, 48.765232], [-123.860428, 48.765597], [-123.860935, 48.765883], [-123.862758, 48.766532], [-123.862926, 48.766735], [-123.863074, 48.767474], [-123.862865, 48.768999], [-123.863156, 48.769592], [-123.863393, 48.769712], [-123.863835, 48.769789], [-123.864479, 48.769803], [-123.867428, 48.769767], [-123.868138, 48.770084], [-123.868511, 48.770134], [-123.871353, 48.770287], [-123.872453, 48.770278], [-123.873176, 48.770097], [-123.873697, 48.76974], [-123.874016, 48.769189], [-123.874043, 48.768409], [-123.874245, 48.767536], [-123.874803, 48.766773], [-123.875167, 48.766391], [-123.875614, 48.766095], [-123.876501, 48.765792], [-123.877321, 48.765604], [-123.881806, 48.765292], [-123.883873, 48.765332], [-123.885382, 48.765578], [-123.886343, 48.765926], [-123.888789, 48.766549], [-123.88983, 48.76674], [-123.890252, 48.766995], [-123.8905, 48.767263], [-123.890515, 48.767777], [-123.890365, 48.768115], [-123.889962, 48.768657], [-123.889883, 48.769137], [-123.890288, 48.769976], [-123.890486, 48.770187], [-123.891118, 48.7705], [-123.891752, 48.770653], [-123.892206, 48.770637], [-123.892797, 48.770429], [-123.892977, 48.766816], [-123.89291, 48.747279], [-123.893006, 48.719852], [-123.851461, 48.719845], [-123.798022, 48.719629], [-123.790312, 48.719643], [-123.734306, 48.719435], [-123.72609, 48.719614], [-123.692485, 48.71875], [-123.685212, 48.718677], [-123.659782, 48.719206], [-123.657719, 48.719191], [-123.658126, 48.72379], [-123.656098, 48.722876], [-123.647461, 48.718725], [-123.645111, 48.717263], [-123.643718, 48.716153], [-123.6436, 48.719103], [-123.636641, 48.719138], [-123.637214, 48.722506], [-123.636708, 48.722438], [-123.634058, 48.721869], [-123.633997, 48.721802], [-123.633716, 48.721909], [-123.635343, 48.724251], [-123.640573, 48.729858], [-123.651744, 48.738176], [-123.657458, 48.741913], [-123.670512, 48.749935], [-123.671312, 48.750509], [-123.671627, 48.744392], [-123.676649, 48.744417], [-123.677668, 48.744782], [-123.677871, 48.744977], [-123.677967, 48.753615], [-123.681581, 48.752991], [-123.6877, 48.753211], [-123.691152, 48.753203], [-123.691123, 48.751565], [-123.698756, 48.751452], [-123.698735, 48.758243], [-123.698427, 48.759022], [-123.684494, 48.759027], [-123.68303, 48.75898], [-123.687506, 48.760865], [-123.696435, 48.765537], [-123.697142, 48.766002], [-123.698025, 48.765926], [-123.69846, 48.76961], [-123.698878, 48.769612], [-123.699523, 48.769413], [-123.703605, 48.769788], [-123.704643, 48.769775], [-123.706279, 48.769935], [-123.70653, 48.769737], [-123.707332, 48.769499], [-123.709101, 48.769506], [-123.709914, 48.769667], [-123.710395, 48.769497], [-123.712331, 48.769445], [-123.71261, 48.769486], [-123.712678, 48.768243], [-123.713311, 48.762214], [-123.712891, 48.761116], [-123.712741, 48.758936], [-123.733916, 48.759313], [-123.741696, 48.7595], [-123.758115, 48.759695], [-123.767729, 48.759752], [-123.767652, 48.763175], [-123.76892, 48.762817], [-123.76973, 48.762389], [-123.772673, 48.760549], [-123.773151, 48.760396], [-123.773906, 48.760387], [-123.774423, 48.760474], [-123.774915, 48.760695], [-123.775842, 48.761714], [-123.776651, 48.762133], [-123.778482, 48.762458], [-123.780264, 48.76258], [-123.781558, 48.762587], [-123.782177, 48.762491], [-123.782933, 48.762103], [-123.78309, 48.766899], [-123.782909, 48.76883], [-123.782962, 48.770067], [-123.782731, 48.772638], [-123.782862, 48.792076], [-123.783057, 48.79887], [-123.78367, 48.803155], [-123.783947, 48.814251], [-123.783241, 48.849787], [-123.78314, 48.883055], [-123.783307, 48.885304], [-123.782922, 48.885374], [-123.78309, 48.88766], [-123.783107, 48.900085], [-123.787301, 48.90011], [-123.787384, 48.901898], [-123.790157, 48.901898], [-123.790076, 48.895975], [-123.792384, 48.895912], [-123.792729, 48.894278], [-123.799513, 48.894584], [-123.799495, 48.895834], [-123.799978, 48.896203], [-123.802092, 48.89641], [-123.802317, 48.899437], [-123.799587, 48.899692], [-123.800098, 48.90483], [-123.793624, 48.904968], [-123.793431, 48.905583], [-123.801224, 48.910207]], [[-123.830986, 48.760802], [-123.827063, 48.760903], [-123.826914, 48.758975], [-123.82749, 48.758974], [-123.828366, 48.758634], [-123.829371, 48.758125], [-123.830956, 48.75759], [-123.831034, 48.757708], [-123.830986, 48.760802]]]]}, "properties": {"name": "Cowichan Valley E", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Valley E", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919051", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.686813, 48.87871], [-123.687001, 48.880785], [-123.687318, 48.881465], [-123.699635, 48.881848], [-123.699676, 48.878732], [-123.700179, 48.874105], [-123.700135, 48.872574], [-123.700556, 48.87171], [-123.700574, 48.870835], [-123.694508, 48.870765], [-123.693991, 48.87084], [-123.686708, 48.870895], [-123.686813, 48.87871]]]]}, "properties": {"name": "Halalt 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Halalt 2", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919801", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.689868, 48.901683], [-123.691935, 48.903476], [-123.701049, 48.903579], [-123.700903, 48.899851], [-123.688556, 48.900019], [-123.689868, 48.901683]]]]}, "properties": {"name": "Squaw-Hay-One 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Squaw-Hay-One 11", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919802", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.673246, 48.884792], [-123.673169, 48.884972], [-123.67317, 48.885415], [-123.678423, 48.885413], [-123.678998, 48.884893], [-123.678745, 48.884133], [-123.678469, 48.883893], [-123.678306, 48.883845], [-123.678135, 48.883614], [-123.678143, 48.883383], [-123.678439, 48.883088], [-123.678211, 48.882524], [-123.677395, 48.88169], [-123.67316, 48.88176], [-123.673246, 48.884792]]]]}, "properties": {"name": "Tsussie 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tsussie 6", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919803", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.776487, 49.035565], [-123.801076, 49.03578], [-123.80101, 49.035068], [-123.801179, 49.03113], [-123.80118, 49.028913], [-123.800941, 49.025449], [-123.800981, 49.015977], [-123.817548, 49.016283], [-123.817738, 49.012199], [-123.817969, 49.011427], [-123.814885, 49.009286], [-123.813974, 49.008771], [-123.812963, 49.008086], [-123.809977, 49.005965], [-123.808997, 49.005487], [-123.805725, 49.00354], [-123.804864, 49.002699], [-123.803688, 49.00188], [-123.803146, 49.001255], [-123.801928, 49.000318], [-123.801303, 48.99972], [-123.798207, 48.997726], [-123.797212, 48.997022], [-123.796468, 48.996624], [-123.796236, 48.996589], [-123.795894, 48.996664], [-123.795582, 48.99689], [-123.796058, 48.997525], [-123.796146, 48.997921], [-123.796143, 48.998478], [-123.796259, 48.998901], [-123.796165, 48.999036], [-123.79552, 48.998844], [-123.795746, 48.999645], [-123.795859, 49.000582], [-123.788174, 49.000856], [-123.788157, 48.999924], [-123.787466, 48.995554], [-123.788129, 48.994505], [-123.787987, 48.993723], [-123.788222, 48.992982], [-123.788206, 48.992803], [-123.787692, 48.992438], [-123.786976, 48.992065], [-123.786388, 48.991934], [-123.785777, 48.992324], [-123.784488, 48.992855], [-123.783328, 48.993087], [-123.782194, 48.993131], [-123.781907, 48.993106], [-123.781167, 48.992914], [-123.779653, 48.992357], [-123.779185, 48.992109], [-123.778201, 48.991445], [-123.775616, 48.991958], [-123.774571, 48.991685], [-123.774085, 48.991614], [-123.765576, 48.991597], [-123.763235, 48.991664], [-123.762001, 48.991648], [-123.760932, 48.991527], [-123.760458, 48.991545], [-123.76044, 48.991855], [-123.760093, 48.992452], [-123.759517, 48.993211], [-123.759199, 48.993825], [-123.758859, 48.994016], [-123.758355, 48.994083], [-123.758233, 48.994173], [-123.758262, 48.994289], [-123.758664, 48.994593], [-123.758886, 48.994862], [-123.75881, 48.996112], [-123.75901, 48.996759], [-123.759333, 48.997269], [-123.760027, 48.997931], [-123.760432, 48.998468], [-123.760754, 48.998961], [-123.760884, 48.999401], [-123.761288, 48.999982], [-123.761157, 49.000379], [-123.760701, 49.000976], [-123.760337, 49.001302], [-123.76026, 49.001509], [-123.760387, 49.001788], [-123.760827, 49.002054], [-123.760953, 49.002224], [-123.761, 49.00263], [-123.760788, 49.003827], [-123.760933, 49.004482], [-123.761156, 49.004715], [-123.761297, 49.005011], [-123.761727, 49.005458], [-123.762078, 49.006031], [-123.762167, 49.006408], [-123.762335, 49.006696], [-123.762712, 49.007197], [-123.763058, 49.0075], [-123.763271, 49.007993], [-123.763784, 49.00852], [-123.764041, 49.009158], [-123.765134, 49.010006], [-123.765621, 49.010532], [-123.765952, 49.010719], [-123.766576, 49.011265], [-123.766812, 49.011559], [-123.766955, 49.0119], [-123.767353, 49.012113], [-123.76788, 49.012515], [-123.768554, 49.012788], [-123.769176, 49.013126], [-123.771375, 49.014785], [-123.772347, 49.015651], [-123.772952, 49.015972], [-123.773861, 49.016298], [-123.774219, 49.016511], [-123.775595, 49.017132], [-123.777447, 49.017461], [-123.778721, 49.017578], [-123.779273, 49.017871], [-123.77956, 49.017843], [-123.779844, 49.017625], [-123.78009, 49.01757], [-123.781458, 49.017597], [-123.781773, 49.017666], [-123.782713, 49.018226], [-123.782907, 49.018468], [-123.783037, 49.01889], [-123.78319, 49.019122], [-123.783563, 49.019363], [-123.78364, 49.018994], [-123.783802, 49.01893], [-123.785363, 49.018874], [-123.786302, 49.018633], [-123.78663, 49.018632], [-123.787568, 49.019192], [-123.787837, 49.019649], [-123.788238, 49.019969], [-123.788702, 49.020785], [-123.788852, 49.02074], [-123.788942, 49.020378], [-123.789118, 49.020297], [-123.78994, 49.0203], [-123.790268, 49.020415], [-123.790509, 49.020862], [-123.790839, 49.020995], [-123.791132, 49.021327], [-123.79136, 49.021972], [-123.791498, 49.022034], [-123.791863, 49.022571], [-123.791826, 49.022823], [-123.79153, 49.023168], [-123.791313, 49.023268], [-123.79114, 49.023548], [-123.791048, 49.023836], [-123.791054, 49.024223], [-123.790749, 49.024765], [-123.790662, 49.025341], [-123.790691, 49.025521], [-123.791317, 49.026083], [-123.791673, 49.026099], [-123.791678, 49.026449], [-123.791638, 49.026514], [-123.791474, 49.026542], [-123.791293, 49.026363], [-123.791212, 49.026363], [-123.791105, 49.026481], [-123.790601, 49.027519], [-123.790593, 49.027978], [-123.79008, 49.028349], [-123.789685, 49.02846], [-123.789098, 49.028492], [-123.788593, 49.028603], [-123.788058, 49.028526], [-123.787836, 49.028311], [-123.78782, 49.02815], [-123.788046, 49.027698], [-123.788079, 49.027203], [-123.788512, 49.027012], [-123.788755, 49.026759], [-123.788763, 49.026415], [-123.788594, 49.026129], [-123.788456, 49.026058], [-123.787987, 49.026637], [-123.786988, 49.027382], [-123.786323, 49.027791], [-123.785847, 49.028], [-123.784499, 49.028317], [-123.784444, 49.028425], [-123.784708, 49.028593], [-123.784276, 49.028983], [-123.783922, 49.029067], [-123.783497, 49.029024], [-123.782937, 49.029154], [-123.782557, 49.029328], [-123.782316, 49.02959], [-123.782057, 49.029699], [-123.780404, 49.029792], [-123.778417, 49.029617], [-123.777281, 49.02958], [-123.777296, 49.029634], [-123.778217, 49.029915], [-123.778342, 49.030067], [-123.778193, 49.030113], [-123.774479, 49.029707], [-123.773956, 49.029511], [-123.772419, 49.029217], [-123.771992, 49.029057], [-123.771775, 49.02905], [-123.771733, 49.029104], [-123.771874, 49.02939], [-123.772247, 49.029604], [-123.772154, 49.029749], [-123.771976, 49.029803], [-123.769175, 49.029157], [-123.768531, 49.028955], [-123.76849, 49.029009], [-123.769128, 49.029615], [-123.769116, 49.02968], [-123.768664, 49.029664], [-123.768599, 49.029845], [-123.768188, 49.029892], [-123.76811, 49.030054], [-123.768039, 49.030802], [-123.767806, 49.03083], [-123.767489, 49.030698], [-123.767273, 49.030843], [-123.76721, 49.031114], [-123.766745, 49.031233], [-123.766141, 49.031121], [-123.766093, 49.030608], [-123.766808, 49.029956], [-123.767337, 49.029196], [-123.767354, 49.029061], [-123.767286, 49.02899], [-123.766901, 49.028902], [-123.766433, 49.02868], [-123.765089, 49.028429], [-123.764603, 49.028099], [-123.764164, 49.027949], [-123.763739, 49.027879], [-123.763852, 49.02808], [-123.764086, 49.028193], [-123.764434, 49.02855], [-123.764763, 49.028691], [-123.76478, 49.028835], [-123.764399, 49.028963], [-123.763479, 49.028718], [-123.762644, 49.028678], [-123.762479, 49.029534], [-123.762371, 49.02968], [-123.762168, 49.029806], [-123.761582, 49.029963], [-123.761267, 49.029956], [-123.760927, 49.030084], [-123.760776, 49.03004], [-123.760627, 49.03014], [-123.760452, 49.030322], [-123.760241, 49.030809], [-123.760051, 49.030954], [-123.760205, 49.031097], [-123.759692, 49.031676], [-123.75919, 49.031859], [-123.758599, 49.031719], [-123.758365, 49.031604], [-123.758282, 49.031622], [-123.758772, 49.032339], [-123.758601, 49.032789], [-123.759254, 49.033343], [-123.759338, 49.033495], [-123.759232, 49.033676], [-123.758907, 49.033948], [-123.758484, 49.034112], [-123.758334, 49.034105], [-123.757275, 49.033733], [-123.756439, 49.033532], [-123.755575, 49.033429], [-123.755385, 49.033566], [-123.755389, 49.033773], [-123.756771, 49.034717], [-123.756638, 49.034933], [-123.756392, 49.035062], [-123.755941, 49.035064], [-123.755861, 49.035119], [-123.755837, 49.035327], [-123.755522, 49.035346], [-123.753781, 49.03507], [-123.753947, 49.035311], [-123.754549, 49.035792], [-123.767704, 49.035785], [-123.767729, 49.035693], [-123.776487, 49.035565]]]]}, "properties": {"name": "Chemainus 13", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Chemainus 13", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919804", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.613833, 48.740313], [-123.614624, 48.740425], [-123.61536, 48.740673], [-123.615615, 48.740681], [-123.615478, 48.740032], [-123.615489, 48.738657], [-123.615752, 48.737413], [-123.609054, 48.737176], [-123.602167, 48.73764], [-123.602838, 48.737708], [-123.603616, 48.73791], [-123.605173, 48.738479], [-123.608787, 48.739288], [-123.610236, 48.73981], [-123.611206, 48.740292], [-123.611914, 48.740341], [-123.612393, 48.740455], [-123.613833, 48.740313]]]]}, "properties": {"name": "Kil-pah-las 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Kil-pah-las 3", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919808", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.667583, 48.982805], [-123.667743, 48.982588], [-123.667806, 48.98212], [-123.668265, 48.981758], [-123.668709, 48.98118], [-123.669102, 48.980889], [-123.669216, 48.980304], [-123.668864, 48.979488], [-123.667912, 48.978827], [-123.666771, 48.97734], [-123.665787, 48.976356], [-123.665454, 48.975917], [-123.665068, 48.975676], [-123.664057, 48.975584], [-123.663603, 48.975416], [-123.663493, 48.975308], [-123.663463, 48.97512], [-123.663758, 48.974712], [-123.663743, 48.974587], [-123.663479, 48.974363], [-123.663405, 48.973896], [-123.662311, 48.972797], [-123.661813, 48.972431], [-123.660819, 48.971536], [-123.660858, 48.971428], [-123.661209, 48.971183], [-123.661221, 48.971066], [-123.661083, 48.970976], [-123.661245, 48.970769], [-123.661177, 48.970743], [-123.661016, 48.970951], [-123.660756, 48.970969], [-123.660486, 48.971196], [-123.659963, 48.970875], [-123.659577, 48.970751], [-123.659289, 48.970582], [-123.65817, 48.969635], [-123.657684, 48.969054], [-123.657526, 48.968551], [-123.656963, 48.968194], [-123.656341, 48.967675], [-123.656338, 48.967577], [-123.656421, 48.967523], [-123.657284, 48.967661], [-123.658181, 48.967467], [-123.658616, 48.967133], [-123.659235, 48.966453], [-123.659422, 48.966147], [-123.660006, 48.965928], [-123.660825, 48.965842], [-123.661203, 48.965489], [-123.661297, 48.965318], [-123.661167, 48.964824], [-123.661226, 48.964203], [-123.660673, 48.963693], [-123.660507, 48.963442], [-123.659498, 48.962594], [-123.659008, 48.96175], [-123.658877, 48.961067], [-123.658916, 48.959943], [-123.659035, 48.959591], [-123.659184, 48.959428], [-123.659833, 48.958983], [-123.660255, 48.958892], [-123.660564, 48.958466], [-123.661226, 48.957941], [-123.661524, 48.957778], [-123.661947, 48.957676], [-123.662081, 48.957469], [-123.662024, 48.957298], [-123.66139, 48.956951], [-123.660807, 48.956262], [-123.660423, 48.956002], [-123.660199, 48.955762], [-123.660114, 48.955483], [-123.659963, 48.955322], [-123.65993, 48.955061], [-123.660182, 48.95443], [-123.659703, 48.954279], [-123.65975, 48.953677], [-123.659691, 48.953452], [-123.659019, 48.95316], [-123.658655, 48.952586], [-123.658511, 48.952002], [-123.658304, 48.951778], [-123.658216, 48.951409], [-123.657796, 48.950593], [-123.657098, 48.949445], [-123.656969, 48.948997], [-123.656401, 48.948407], [-123.65422, 48.946628], [-123.652849, 48.945161], [-123.652597, 48.944748], [-123.652419, 48.944614], [-123.652021, 48.944563], [-123.651615, 48.944817], [-123.651084, 48.944901], [-123.650592, 48.944876], [-123.649714, 48.94454], [-123.6493, 48.944273], [-123.648968, 48.943932], [-123.648241, 48.943568], [-123.64676, 48.943207], [-123.646241, 48.943229], [-123.646047, 48.943005], [-123.644936, 48.942596], [-123.644234, 48.942142], [-123.643464, 48.94184], [-123.643219, 48.941824], [-123.64284, 48.942015], [-123.64187, 48.942065], [-123.64179, 48.942192], [-123.641718, 48.942911], [-123.641584, 48.943075], [-123.64014, 48.942948], [-123.648105, 48.948344], [-123.644142, 48.950652], [-123.634577, 48.944805], [-123.634539, 48.944651], [-123.638097, 48.942338], [-123.638156, 48.942154], [-123.637782, 48.941792], [-123.637422, 48.941262], [-123.637194, 48.940544], [-123.637156, 48.939671], [-123.637352, 48.939059], [-123.637474, 48.938932], [-123.637677, 48.938868], [-123.638946, 48.938798], [-123.639654, 48.938606], [-123.639764, 48.938542], [-123.639937, 48.938252], [-123.639851, 48.937965], [-123.639407, 48.937455], [-123.638748, 48.937126], [-123.637909, 48.936573], [-123.637628, 48.936071], [-123.637354, 48.93592], [-123.636915, 48.935823], [-123.635766, 48.93573], [-123.634041, 48.935245], [-123.633588, 48.935068], [-123.632735, 48.934487], [-123.632195, 48.933987], [-123.632044, 48.933951], [-123.631595, 48.93399], [-123.630836, 48.934444], [-123.630485, 48.934841], [-123.630114, 48.935734], [-123.629937, 48.936824], [-123.629695, 48.93722], [-123.628981, 48.937989], [-123.628822, 48.938314], [-123.628612, 48.938963], [-123.628728, 48.939591], [-123.628667, 48.940068], [-123.62803, 48.941611], [-123.627797, 48.942484], [-123.62821, 48.943939], [-123.628462, 48.944451], [-123.628331, 48.94598], [-123.628376, 48.946313], [-123.628434, 48.946501], [-123.628711, 48.946771], [-123.629087, 48.947407], [-123.629148, 48.94791], [-123.629046, 48.949702], [-123.628918, 48.95026], [-123.6291, 48.952778], [-123.628608, 48.953932], [-123.628497, 48.954778], [-123.628571, 48.955209], [-123.628908, 48.955918], [-123.629871, 48.957605], [-123.629874, 48.957892], [-123.630173, 48.958852], [-123.630208, 48.959419], [-123.630026, 48.960194], [-123.630125, 48.961525], [-123.630121, 48.964466], [-123.630977, 48.967368], [-123.631187, 48.967662], [-123.631429, 48.968426], [-123.632311, 48.970274], [-123.632651, 48.971163], [-123.632945, 48.971656], [-123.634319, 48.973358], [-123.635245, 48.974108], [-123.637015, 48.975763], [-123.63732, 48.97622], [-123.637636, 48.977244], [-123.637669, 48.977855], [-123.637551, 48.978145], [-123.636906, 48.979038], [-123.63599, 48.980033], [-123.635882, 48.980231], [-123.635913, 48.980465], [-123.636421, 48.980732], [-123.636549, 48.981073], [-123.636351, 48.981641], [-123.635706, 48.982446], [-123.635709, 48.982598], [-123.635846, 48.982678], [-123.636024, 48.982678], [-123.636607, 48.982476], [-123.637263, 48.982337], [-123.637412, 48.982238], [-123.637409, 48.982121], [-123.636808, 48.981998], [-123.636614, 48.9819], [-123.636763, 48.981756], [-123.636789, 48.981603], [-123.636923, 48.981511], [-123.637689, 48.981561], [-123.637879, 48.981417], [-123.637782, 48.981211], [-123.637478, 48.981077], [-123.637188, 48.980826], [-123.636937, 48.980388], [-123.636946, 48.980073], [-123.637198, 48.979442], [-123.63764, 48.978773], [-123.638223, 48.978311], [-123.638441, 48.978274], [-123.63877, 48.978452], [-123.639089, 48.978747], [-123.639285, 48.97907], [-123.639276, 48.979394], [-123.639372, 48.979537], [-123.639989, 48.979579], [-123.640657, 48.979476], [-123.643047, 48.979391], [-123.644727, 48.979453], [-123.645536, 48.979539], [-123.647523, 48.980005], [-123.648112, 48.980083], [-123.650624, 48.980896], [-123.651298, 48.981296], [-123.651905, 48.981761], [-123.653614, 48.982795], [-123.654427, 48.983186], [-123.655097, 48.983336], [-123.655837, 48.983403], [-123.657175, 48.983369], [-123.658009, 48.983444], [-123.659, 48.983925], [-123.659727, 48.984082], [-123.660165, 48.984098], [-123.660367, 48.983971], [-123.6606, 48.983942], [-123.660695, 48.983853], [-123.660952, 48.982708], [-123.660929, 48.981944], [-123.660798, 48.981423], [-123.660645, 48.981154], [-123.660778, 48.980892], [-123.660677, 48.98056], [-123.660853, 48.980433], [-123.661168, 48.980422], [-123.662017, 48.980616], [-123.662619, 48.980611], [-123.663448, 48.980265], [-123.663669, 48.980453], [-123.664701, 48.981886], [-123.665309, 48.98244], [-123.66627, 48.982713], [-123.666628, 48.982883], [-123.666793, 48.983044], [-123.667583, 48.982805]]]]}, "properties": {"name": "Penelakut Island 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Penelakut Island 7", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919809", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.643909, 49.044742], [-123.6435, 49.044275], [-123.6433, 49.04361], [-123.64348, 49.042691], [-123.643945, 49.041511], [-123.644021, 49.041033], [-123.643947, 49.0407], [-123.643167, 49.040741], [-123.640997, 49.041086], [-123.640559, 49.04107], [-123.639967, 49.040821], [-123.63746, 49.039441], [-123.63659, 49.038843], [-123.635873, 49.038443], [-123.635556, 49.0383], [-123.635091, 49.038214], [-123.634364, 49.038181], [-123.632383, 49.038399], [-123.631498, 49.038628], [-123.631047, 49.038676], [-123.629917, 49.038649], [-123.637532, 49.044745], [-123.643909, 49.044742]]]]}, "properties": {"name": "Shingle Point 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Shingle Point 4", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919811", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.069326, 48.827492], [-124.069716, 48.827823], [-124.069777, 48.831844], [-124.076407, 48.832026], [-124.076125, 48.82512], [-124.075995, 48.824276], [-124.075756, 48.824378], [-124.074653, 48.824424], [-124.07383, 48.824145], [-124.073026, 48.824125], [-124.071865, 48.823947], [-124.070842, 48.823892], [-124.07032, 48.823736], [-124.069592, 48.823751], [-124.069858, 48.824131], [-124.069477, 48.824581], [-124.069326, 48.827492]]]]}, "properties": {"name": "Cowichan Lake", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan Lake", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919812", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.673578, 49.110634], [-123.707195, 49.110428], [-123.707057, 49.110209], [-123.707081, 49.10993], [-123.706894, 49.109373], [-123.706643, 49.109114], [-123.706571, 49.108854], [-123.70632, 49.108585], [-123.706235, 49.108226], [-123.705857, 49.107671], [-123.704792, 49.107011], [-123.704431, 49.106635], [-123.703948, 49.106396], [-123.702462, 49.104956], [-123.701631, 49.104395], [-123.701558, 49.104126], [-123.701625, 49.103918], [-123.7018, 49.10371], [-123.701727, 49.103468], [-123.701021, 49.102987], [-123.700685, 49.102467], [-123.7006, 49.102135], [-123.700153, 49.101598], [-123.698953, 49.101001], [-123.698952, 49.100949], [-123.699142, 49.100874], [-123.698985, 49.100417], [-123.698496, 49.099737], [-123.698219, 49.099513], [-123.698203, 49.099361], [-123.697829, 49.099111], [-123.697467, 49.098673], [-123.696374, 49.097851], [-123.696109, 49.09751], [-123.695444, 49.097048], [-123.693476, 49.095314], [-123.69097, 49.093467], [-123.689824, 49.092772], [-123.689318, 49.092848], [-123.689102, 49.093019], [-123.689005, 49.093056], [-123.68891, 49.09302], [-123.689024, 49.09238], [-123.688522, 49.091727], [-123.688246, 49.09163], [-123.687165, 49.090683], [-123.685823, 49.089737], [-123.685018, 49.089041], [-123.684246, 49.088524], [-123.683635, 49.088005], [-123.682323, 49.087149], [-123.681615, 49.086533], [-123.680636, 49.085936], [-123.679223, 49.084802], [-123.676985, 49.083421], [-123.67578, 49.08233], [-123.675268, 49.081991], [-123.674894, 49.081643], [-123.674149, 49.08126], [-123.673758, 49.080803], [-123.673164, 49.08043], [-123.673093, 49.080178], [-123.673157, 49.079818], [-123.67292, 49.079504], [-123.671663, 49.078675], [-123.67038, 49.078089], [-123.669746, 49.077697], [-123.669085, 49.077466], [-123.668283, 49.076895], [-123.66725, 49.076344], [-123.666889, 49.076003], [-123.666546, 49.075907], [-123.665592, 49.075291], [-123.665328, 49.075042], [-123.664561, 49.074695], [-123.644372, 49.076375], [-123.645184, 49.076936], [-123.645557, 49.077124], [-123.646247, 49.077731], [-123.646769, 49.077792], [-123.647086, 49.077952], [-123.647743, 49.077939], [-123.648184, 49.078144], [-123.648338, 49.078403], [-123.648355, 49.078701], [-123.648498, 49.078996], [-123.648731, 49.079094], [-123.650089, 49.080246], [-123.650446, 49.080434], [-123.650807, 49.080746], [-123.651053, 49.080834], [-123.651207, 49.081032], [-123.651689, 49.081299], [-123.651923, 49.081316], [-123.652196, 49.081206], [-123.652486, 49.081367], [-123.652775, 49.081437], [-123.653003, 49.082281], [-123.653298, 49.082784], [-123.654047, 49.083508], [-123.654573, 49.083882], [-123.654906, 49.084268], [-123.655747, 49.084767], [-123.656983, 49.085893], [-123.658115, 49.086705], [-123.659122, 49.087095], [-123.659481, 49.087426], [-123.659513, 49.087678], [-123.659788, 49.087839], [-123.660343, 49.088474], [-123.66105, 49.089099], [-123.66199, 49.089598], [-123.662391, 49.089874], [-123.662651, 49.089918], [-123.663123, 49.090347], [-123.664187, 49.091006], [-123.665004, 49.091802], [-123.665544, 49.092222], [-123.666895, 49.092862], [-123.667182, 49.092878], [-123.667648, 49.092704], [-123.667866, 49.092694], [-123.66836, 49.092709], [-123.669073, 49.092876], [-123.669406, 49.093081], [-123.669749, 49.09316], [-123.669986, 49.09351], [-123.670043, 49.093733], [-123.670346, 49.093822], [-123.670513, 49.093939], [-123.670777, 49.094323], [-123.67074, 49.094558], [-123.670486, 49.095045], [-123.669953, 49.095092], [-123.669312, 49.095294], [-123.669231, 49.095386], [-123.669315, 49.095591], [-123.669592, 49.09576], [-123.670371, 49.09671], [-123.670514, 49.097113], [-123.670437, 49.097528], [-123.670685, 49.097643], [-123.670633, 49.097851], [-123.670416, 49.098013], [-123.669787, 49.097972], [-123.669828, 49.09808], [-123.669761, 49.098126], [-123.668866, 49.097852], [-123.668868, 49.097942], [-123.669105, 49.098228], [-123.669093, 49.098381], [-123.668671, 49.098536], [-123.668314, 49.098493], [-123.668137, 49.098576], [-123.667407, 49.098328], [-123.667312, 49.098365], [-123.667382, 49.098534], [-123.667811, 49.098838], [-123.667841, 49.098982], [-123.667705, 49.099127], [-123.667694, 49.099298], [-123.66775, 49.099379], [-123.667929, 49.099432], [-123.668069, 49.099628], [-123.668478, 49.100508], [-123.6684, 49.100842], [-123.668061, 49.10105], [-123.667704, 49.101015], [-123.667455, 49.100927], [-123.667222, 49.100929], [-123.667187, 49.10128], [-123.667536, 49.101782], [-123.667853, 49.102014], [-123.668004, 49.102058], [-123.66821, 49.102002], [-123.66863, 49.101622], [-123.669099, 49.101853], [-123.669252, 49.102086], [-123.669667, 49.102408], [-123.669626, 49.103478], [-123.669505, 49.103605], [-123.669066, 49.103553], [-123.668712, 49.10361], [-123.668799, 49.10404], [-123.669372, 49.104919], [-123.669897, 49.106175], [-123.669899, 49.106419], [-123.670486, 49.107216], [-123.671372, 49.10882], [-123.671678, 49.109223], [-123.672163, 49.109572], [-123.672248, 49.109769], [-123.672453, 49.109848], [-123.672782, 49.109883], [-123.673578, 49.110634]]]]}, "properties": {"name": "Lyacksun 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Lyacksun 3", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919813", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.666139, 48.813808], [-124.666942, 48.813341], [-124.667497, 48.813198], [-124.667643, 48.813097], [-124.667961, 48.812453], [-124.668549, 48.811699], [-124.668908, 48.811432], [-124.669166, 48.811384], [-124.66947, 48.81109], [-124.670002, 48.810742], [-124.670717, 48.810515], [-124.671329, 48.810479], [-124.672138, 48.810279], [-124.672812, 48.810017], [-124.673399, 48.809666], [-124.674245, 48.808926], [-124.674741, 48.808666], [-124.676299, 48.80846], [-124.671738, 48.804273], [-124.671343, 48.804246], [-124.67081, 48.804044], [-124.668669, 48.804093], [-124.668215, 48.804235], [-124.666956, 48.804213], [-124.666166, 48.804122], [-124.663264, 48.804115], [-124.663547, 48.805815], [-124.663866, 48.806404], [-124.663708, 48.807414], [-124.66399, 48.808939], [-124.664063, 48.809082], [-124.666014, 48.810223], [-124.666053, 48.810772], [-124.66598, 48.811843], [-124.666139, 48.813808]]]]}, "properties": {"name": "Malachan 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Malachan 11", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919814", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.529001, 48.631493], [-123.528908, 48.631691], [-123.52895, 48.631827], [-123.529399, 48.631986], [-123.530341, 48.632522], [-123.533405, 48.634612], [-123.534893, 48.635478], [-123.535507, 48.635755], [-123.536721, 48.636433], [-123.537014, 48.636675], [-123.537167, 48.610768], [-123.518356, 48.61056], [-123.518367, 48.610958], [-123.518573, 48.6112], [-123.518823, 48.611829], [-123.518924, 48.612341], [-123.51875, 48.61397], [-123.518543, 48.614897], [-123.51875, 48.615176], [-123.519775, 48.6159], [-123.520408, 48.616734], [-123.520832, 48.617073], [-123.521093, 48.617424], [-123.521804, 48.617959], [-123.52186, 48.618067], [-123.52181, 48.618563], [-123.522262, 48.618866], [-123.522932, 48.619529], [-123.523486, 48.620534], [-123.524602, 48.622121], [-123.525251, 48.623197], [-123.525379, 48.62371], [-123.525639, 48.624042], [-123.526131, 48.624462], [-123.52763, 48.626237], [-123.527895, 48.626856], [-123.528151, 48.628043], [-123.52937, 48.629143], [-123.529743, 48.629709], [-123.530035, 48.630445], [-123.530025, 48.630787], [-123.529852, 48.631049], [-123.529676, 48.631193], [-123.529391, 48.631257], [-123.529001, 48.631493]]]]}, "properties": {"name": "Malahat 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Malahat 11", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919815", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.856394, 49.024089], [-123.857151, 49.024273], [-123.857209, 49.024434], [-123.85717, 49.024596], [-123.856955, 49.024832], [-123.856548, 49.025069], [-123.856226, 49.025423], [-123.856134, 49.025603], [-123.856113, 49.025972], [-123.856335, 49.02615], [-123.856813, 49.026146], [-123.857092, 49.02637], [-123.857187, 49.02664], [-123.858445, 49.02719], [-123.858942, 49.02752], [-123.863173, 49.027887], [-123.863782, 49.027847], [-123.864128, 49.025783], [-123.864009, 49.024831], [-123.863865, 49.012548], [-123.8552, 49.012732], [-123.846242, 49.013049], [-123.846026, 49.013232], [-123.846031, 49.01346], [-123.846515, 49.013439], [-123.847565, 49.013918], [-123.847624, 49.014277], [-123.847995, 49.014401], [-123.848136, 49.014579], [-123.84811, 49.014678], [-123.84792, 49.014805], [-123.847912, 49.01504], [-123.848038, 49.015291], [-123.847868, 49.015786], [-123.847245, 49.016034], [-123.846777, 49.016685], [-123.846492, 49.016876], [-123.846431, 49.017299], [-123.846271, 49.017471], [-123.846355, 49.017669], [-123.846154, 49.01795], [-123.845718, 49.018015], [-123.845545, 49.018223], [-123.845532, 49.018323], [-123.845616, 49.018386], [-123.845846, 49.018266], [-123.846119, 49.01821], [-123.846455, 49.01792], [-123.846549, 49.017803], [-123.846638, 49.017406], [-123.846967, 49.01743], [-123.847147, 49.017528], [-123.847303, 49.017842], [-123.847562, 49.017894], [-123.847797, 49.018037], [-123.848252, 49.018186], [-123.848552, 49.018139], [-123.849441, 49.018222], [-123.850012, 49.017948], [-123.850548, 49.018088], [-123.851259, 49.018136], [-123.85133, 49.018199], [-123.8512, 49.018632], [-123.851278, 49.01917], [-123.851371, 49.019098], [-123.851522, 49.018279], [-123.851602, 49.018206], [-123.85193, 49.018195], [-123.851977, 49.018537], [-123.852086, 49.018481], [-123.852122, 49.01822], [-123.853793, 49.018334], [-123.854515, 49.018131], [-123.854758, 49.017958], [-123.854798, 49.017859], [-123.854726, 49.017698], [-123.854532, 49.017483], [-123.854596, 49.017356], [-123.85538, 49.017477], [-123.85583, 49.017464], [-123.856314, 49.01782], [-123.856672, 49.01789], [-123.856935, 49.018049], [-123.857521, 49.018764], [-123.857612, 49.019196], [-123.857573, 49.019331], [-123.857463, 49.01936], [-123.856969, 49.0193], [-123.856721, 49.019212], [-123.856435, 49.019214], [-123.856453, 49.019411], [-123.856248, 49.019539], [-123.856127, 49.019585], [-123.855798, 49.01956], [-123.855843, 49.019821], [-123.855762, 49.019929], [-123.855545, 49.019976], [-123.855325, 49.019915], [-123.855229, 49.019969], [-123.85526, 49.020032], [-123.856366, 49.020788], [-123.857576, 49.021113], [-123.858261, 49.02117], [-123.85915, 49.021164], [-123.8599, 49.021059], [-123.860118, 49.021084], [-123.860231, 49.021227], [-123.860348, 49.021623], [-123.860368, 49.022063], [-123.860289, 49.022262], [-123.859839, 49.022328], [-123.859612, 49.022635], [-123.859218, 49.022801], [-123.858989, 49.023018], [-123.85805, 49.023322], [-123.857708, 49.023262], [-123.857553, 49.02302], [-123.85747, 49.022966], [-123.857375, 49.022984], [-123.857448, 49.023281], [-123.857072, 49.023733], [-123.856856, 49.02387], [-123.856381, 49.024035], [-123.856394, 49.024089]]]]}, "properties": {"name": "Oyster Bay 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Oyster Bay 12", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919816", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.598062, 49.015526], [-123.59797, 49.015563], [-123.597122, 49.015477], [-123.596736, 49.015299], [-123.59634, 49.015282], [-123.596218, 49.015382], [-123.596266, 49.015994], [-123.596888, 49.016594], [-123.596768, 49.016719], [-123.596547, 49.01656], [-123.596398, 49.01656], [-123.596441, 49.01682], [-123.59723, 49.017572], [-123.598062, 49.015526]]]]}, "properties": {"name": "Portier Pass 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Portier Pass 5", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919817", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.633918, 48.743326], [-123.634985, 48.743626], [-123.636415, 48.743896], [-123.637011, 48.744182], [-123.643858, 48.744211], [-123.643784, 48.740771], [-123.630016, 48.740957], [-123.630146, 48.743831], [-123.630523, 48.743741], [-123.630658, 48.743577], [-123.630708, 48.743335], [-123.631471, 48.743331], [-123.631704, 48.743527], [-123.631935, 48.743534], [-123.632058, 48.743516], [-123.632543, 48.743217], [-123.633918, 48.743326]]]]}, "properties": {"name": "Theik 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Theik 2", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919818", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.611476, 48.715442], [-123.611268, 48.715083], [-123.610913, 48.714924], [-123.610706, 48.714529], [-123.610671, 48.714043], [-123.611115, 48.713655], [-123.611669, 48.7134], [-123.611833, 48.713434], [-123.611986, 48.713694], [-123.612383, 48.713927], [-123.61302, 48.713814], [-123.613398, 48.713498], [-123.614304, 48.713115], [-123.614657, 48.713132], [-123.615821, 48.713455], [-123.616151, 48.713459], [-123.616204, 48.711708], [-123.613376, 48.711874], [-123.612664, 48.711784], [-123.602586, 48.71188], [-123.602505, 48.713433], [-123.602673, 48.715395], [-123.603048, 48.715352], [-123.611476, 48.715442]]]]}, "properties": {"name": "Est-Patrolas 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Est-Patrolas 4", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919820", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.827063, 48.760903], [-123.830986, 48.760802], [-123.831034, 48.757708], [-123.830956, 48.75759], [-123.829371, 48.758125], [-123.828366, 48.758634], [-123.82749, 48.758974], [-123.826914, 48.758975], [-123.827063, 48.760903]]]]}, "properties": {"name": "Tzart-Lam 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tzart-Lam 5", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919821", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.679145, 48.780647], [-123.684942, 48.780516], [-123.684961, 48.779866], [-123.685094, 48.779704], [-123.685106, 48.775373], [-123.684673, 48.77224], [-123.684692, 48.769714], [-123.684886, 48.769652], [-123.69846, 48.76961], [-123.698025, 48.765926], [-123.697142, 48.766002], [-123.685802, 48.765783], [-123.684416, 48.765825], [-123.68424, 48.762463], [-123.679277, 48.76257], [-123.67108, 48.76265], [-123.671265, 48.758734], [-123.684494, 48.759027], [-123.698427, 48.759022], [-123.698735, 48.758243], [-123.698756, 48.751452], [-123.691123, 48.751565], [-123.691152, 48.753203], [-123.6877, 48.753211], [-123.681581, 48.752991], [-123.677967, 48.753615], [-123.677871, 48.744977], [-123.677809, 48.744863], [-123.676649, 48.744417], [-123.671627, 48.744392], [-123.671312, 48.750509], [-123.671423, 48.755402], [-123.670414, 48.755334], [-123.663272, 48.755315], [-123.660097, 48.755242], [-123.65796, 48.755402], [-123.65203, 48.755404], [-123.650586, 48.755285], [-123.650117, 48.755171], [-123.649813, 48.755002], [-123.649991, 48.755588], [-123.650278, 48.756029], [-123.651427, 48.756738], [-123.650706, 48.75754], [-123.650774, 48.759146], [-123.649727, 48.759083], [-123.644036, 48.759133], [-123.643821, 48.761096], [-123.645883, 48.760985], [-123.645887, 48.761611], [-123.645068, 48.762182], [-123.644725, 48.762595], [-123.644764, 48.762895], [-123.64414, 48.762909], [-123.644205, 48.765471], [-123.643755, 48.766189], [-123.640186, 48.766193], [-123.632188, 48.766063], [-123.628765, 48.766802], [-123.629199, 48.769801], [-123.615815, 48.770036], [-123.615775, 48.766745], [-123.609649, 48.76675], [-123.61033, 48.758311], [-123.610243, 48.755259], [-123.605747, 48.75456], [-123.601489, 48.754541], [-123.600013, 48.754877], [-123.596562, 48.75636], [-123.594864, 48.757577], [-123.594347, 48.759072], [-123.587591, 48.752568], [-123.585459, 48.751296], [-123.583687, 48.751448], [-123.581802, 48.751106], [-123.578432, 48.746151], [-123.576418, 48.744934], [-123.574217, 48.74456], [-123.572573, 48.743258], [-123.569967, 48.74177], [-123.568893, 48.742158], [-123.569026, 48.744103], [-123.568538, 48.746272], [-123.568357, 48.748816], [-123.568742, 48.75169], [-123.56957, 48.753677], [-123.573568, 48.757462], [-123.57645, 48.761139], [-123.577546, 48.764341], [-123.57681, 48.767815], [-123.574227, 48.769938], [-123.572036, 48.771555], [-123.569531, 48.773628], [-123.588412, 48.773482], [-123.588295, 48.766842], [-123.596882, 48.766667], [-123.60162, 48.766515], [-123.602457, 48.766576], [-123.603041, 48.773716], [-123.617345, 48.773897], [-123.629225, 48.773742], [-123.629496, 48.777236], [-123.63847, 48.777125], [-123.638434, 48.772856], [-123.638274, 48.771026], [-123.638486, 48.770097], [-123.63885, 48.769983], [-123.640681, 48.769761], [-123.640463, 48.771288], [-123.64055, 48.777161], [-123.643559, 48.777243], [-123.643765, 48.780358], [-123.65418, 48.780524], [-123.65476, 48.780637], [-123.671172, 48.780658], [-123.671405, 48.780839], [-123.671403, 48.780735], [-123.671513, 48.780659], [-123.679145, 48.780647]], [[-123.649662, 48.777431], [-123.64971, 48.778204], [-123.648444, 48.778119], [-123.648254, 48.77783], [-123.645405, 48.777775], [-123.645395, 48.7773], [-123.649662, 48.777431]], [[-123.601589, 48.755588], [-123.602399, 48.763226], [-123.600423, 48.763139], [-123.598718, 48.763167], [-123.598279, 48.763228], [-123.597953, 48.761582], [-123.59638, 48.759531], [-123.59616, 48.758508], [-123.596221, 48.757572], [-123.59747, 48.75667], [-123.599103, 48.756057], [-123.601589, 48.755588]]], [[[-123.712431, 48.780221], [-123.714809, 48.780226], [-123.714642, 48.779716], [-123.714427, 48.779573], [-123.712478, 48.778766], [-123.712431, 48.780221]]], [[[-123.751534, 48.777125], [-123.754414, 48.776997], [-123.754323, 48.773179], [-123.7539, 48.772489], [-123.753914, 48.771671], [-123.75441, 48.771006], [-123.75518, 48.770557], [-123.757968, 48.769927], [-123.75982, 48.769865], [-123.767808, 48.770008], [-123.767638, 48.76298], [-123.767729, 48.759752], [-123.758115, 48.759695], [-123.741696, 48.7595], [-123.733916, 48.759313], [-123.712741, 48.758936], [-123.712891, 48.761116], [-123.713311, 48.762214], [-123.712678, 48.768243], [-123.71261, 48.769486], [-123.712331, 48.769445], [-123.710395, 48.769497], [-123.709914, 48.769667], [-123.709101, 48.769506], [-123.707332, 48.769499], [-123.70653, 48.769737], [-123.706279, 48.769935], [-123.704643, 48.769775], [-123.703605, 48.769788], [-123.699523, 48.769413], [-123.699318, 48.769503], [-123.698732, 48.769611], [-123.698758, 48.7768], [-123.702058, 48.776768], [-123.70205, 48.776871], [-123.705921, 48.776842], [-123.705889, 48.776746], [-123.70693, 48.776767], [-123.70739, 48.776729], [-123.710104, 48.776779], [-123.711589, 48.776688], [-123.712269, 48.776495], [-123.712545, 48.776556], [-123.712311, 48.777625], [-123.712429, 48.778545], [-123.714798, 48.779505], [-123.714943, 48.779635], [-123.714914, 48.779811], [-123.715044, 48.780189], [-123.718996, 48.780256], [-123.719152, 48.779614], [-123.719194, 48.778027], [-123.718394, 48.777818], [-123.718448, 48.777528], [-123.726963, 48.777446], [-123.7275, 48.777492], [-123.728076, 48.777424], [-123.751534, 48.777125]]]]}, "properties": {"name": "Cowichan", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cowichan", "economic_region_id": "5910", "census_division_code": "5919", "census_subdivision_code": "5919822", "regional_district_aka_census_division": "Cowichan Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.033316, 49.250987], [-124.03413, 49.251312], [-124.036618, 49.251674], [-124.04234, 49.251789], [-124.044834, 49.251734], [-124.047959, 49.251568], [-124.050881, 49.25116], [-124.053347, 49.250973], [-124.055406, 49.251183], [-124.057079, 49.251509], [-124.057168, 49.249056], [-124.057318, 49.248148], [-124.057242, 49.241751], [-124.05702, 49.241751], [-124.057519, 49.241131], [-124.060341, 49.240936], [-124.058195, 49.239464], [-124.055368, 49.237344], [-124.053965, 49.234484], [-124.062459, 49.234668], [-124.064619, 49.234639], [-124.064515, 49.234319], [-124.06483, 49.231679], [-124.064623, 49.229765], [-124.064752, 49.228127], [-124.063864, 49.228051], [-124.058036, 49.228006], [-124.057929, 49.224993], [-124.057467, 49.222619], [-124.054053, 49.222587], [-124.054257, 49.222462], [-124.054364, 49.221116], [-124.054358, 49.217329], [-124.05465, 49.204555], [-124.054434, 49.20283], [-124.05063, 49.202868], [-124.048683, 49.202827], [-124.048846, 49.202977], [-124.047857, 49.202978], [-124.047666, 49.202891], [-124.041734, 49.202385], [-124.040795, 49.202805], [-124.040298, 49.199603], [-124.034377, 49.1995], [-124.033412, 49.199432], [-124.032759, 49.199816], [-124.032276, 49.199384], [-124.027416, 49.199219], [-124.027319, 49.196147], [-124.024659, 49.194457], [-124.023767, 49.194705], [-124.022939, 49.194491], [-124.022407, 49.19462], [-124.018158, 49.192558], [-124.014611, 49.191907], [-124.013562, 49.191162], [-124.010826, 49.190042], [-124.010709, 49.189055], [-124.010417, 49.188963], [-124.010411, 49.189907], [-124.00743, 49.189992], [-124.004521, 49.189144], [-124.002241, 49.186616], [-123.999334, 49.186987], [-123.999263, 49.184426], [-123.999469, 49.182668], [-123.997403, 49.181873], [-123.996626, 49.181422], [-123.999606, 49.180176], [-124.004841, 49.180147], [-124.004848, 49.179749], [-124.005924, 49.179729], [-124.00566, 49.179331], [-124.006824, 49.179327], [-124.006861, 49.178272], [-124.008085, 49.178267], [-124.008158, 49.177455], [-124.01404, 49.177549], [-124.014168, 49.177504], [-124.016467, 49.17751], [-124.01671, 49.177451], [-124.016886, 49.177328], [-124.016948, 49.177159], [-124.016881, 49.174641], [-124.017077, 49.174569], [-124.017133, 49.17575], [-124.019686, 49.175676], [-124.019722, 49.174327], [-124.022351, 49.174303], [-124.022382, 49.173321], [-124.022176, 49.172448], [-124.02252, 49.17037], [-124.021867, 49.170302], [-124.022431, 49.162952], [-124.018925, 49.1597], [-124.013904, 49.159623], [-124.013873, 49.156269], [-124.001359, 49.156141], [-124.001305, 49.152368], [-123.986375, 49.151981], [-123.986357, 49.148332], [-123.980478, 49.148178], [-123.980478, 49.141058], [-123.976314, 49.141042], [-123.978401, 49.137639], [-123.981098, 49.137676], [-123.979486, 49.137087], [-123.978871, 49.136987], [-123.97448, 49.136893], [-123.974613, 49.134986], [-123.978404, 49.135136], [-123.978494, 49.134458], [-123.974716, 49.134265], [-123.975027, 49.132846], [-123.975099, 49.131382], [-123.975326, 49.13078], [-123.972949, 49.13213], [-123.972185, 49.132468], [-123.970639, 49.133005], [-123.970291, 49.133048], [-123.969842, 49.132984], [-123.969386, 49.133073], [-123.968988, 49.133244], [-123.968649, 49.133], [-123.96418, 49.133148], [-123.955566, 49.132949], [-123.951891, 49.132984], [-123.933192, 49.133665], [-123.932901, 49.133604], [-123.932849, 49.133424], [-123.93326, 49.130576], [-123.93321, 49.130477], [-123.930013, 49.130222], [-123.927861, 49.130382], [-123.926133, 49.12743], [-123.925868, 49.126711], [-123.923829, 49.12484], [-123.92458, 49.12434], [-123.923837, 49.123472], [-123.924251, 49.123396], [-123.930496, 49.12287], [-123.930492, 49.122797], [-123.932922, 49.123108], [-123.932832, 49.122292], [-123.932924, 49.113209], [-123.933025, 49.110262], [-123.932997, 49.104805], [-123.938252, 49.104779], [-123.938182, 49.101576], [-123.936077, 49.101619], [-123.933424, 49.10158], [-123.933147, 49.097227], [-123.924341, 49.097044], [-123.924386, 49.101129], [-123.923738, 49.101091], [-123.919954, 49.102011], [-123.919373, 49.103891], [-123.919056, 49.108508], [-123.919151, 49.110012], [-123.917261, 49.109833], [-123.904725, 49.110082], [-123.897404, 49.109927], [-123.893285, 49.109439], [-123.888881, 49.109783], [-123.8892, 49.113726], [-123.889414, 49.119293], [-123.889303, 49.119581], [-123.889314, 49.123828], [-123.889222, 49.124252], [-123.890776, 49.124396], [-123.890587, 49.125552], [-123.888968, 49.125431], [-123.888733, 49.126522], [-123.888729, 49.126896], [-123.887345, 49.124841], [-123.886442, 49.123139], [-123.885672, 49.123106], [-123.886156, 49.124169], [-123.887375, 49.125958], [-123.888437, 49.127361], [-123.888844, 49.127788], [-123.889971, 49.128746], [-123.892446, 49.130252], [-123.893808, 49.131818], [-123.894016, 49.13216], [-123.894052, 49.132579], [-123.893608, 49.132574], [-123.893574, 49.132916], [-123.878559, 49.133398], [-123.878116, 49.126502], [-123.863739, 49.126749], [-123.864658, 49.129738], [-123.850942, 49.12998], [-123.850568, 49.126806], [-123.822584, 49.126831], [-123.812515, 49.126066], [-123.809518, 49.126889], [-123.805135, 49.12686], [-123.807113, 49.128804], [-123.809114, 49.129889], [-123.814736, 49.132477], [-123.816464, 49.133728], [-123.818003, 49.135578], [-123.819687, 49.138432], [-123.820734, 49.139639], [-123.824895, 49.142732], [-123.828047, 49.144463], [-123.832249, 49.145533], [-123.837568, 49.146097], [-123.848184, 49.148143], [-123.857544, 49.150179], [-123.865453, 49.152487], [-123.872377, 49.156076], [-123.876323, 49.159091], [-123.880027, 49.163625], [-123.883677, 49.168735], [-123.889029, 49.173373], [-123.891017, 49.174792], [-123.906034, 49.188175], [-123.932914, 49.210099], [-123.935334, 49.21296], [-123.935557, 49.213316], [-123.937887, 49.21782], [-123.941307, 49.225363], [-123.942351, 49.227163], [-123.943623, 49.228523], [-123.946613, 49.230889], [-123.950111, 49.232566], [-123.956691, 49.234867], [-123.959218, 49.236542], [-123.962138, 49.237771], [-123.966777, 49.238745], [-123.970726, 49.238763], [-123.975431, 49.23937], [-123.979482, 49.240771], [-123.98498, 49.24196], [-123.989694, 49.242094], [-123.994121, 49.241503], [-124.001355, 49.240313], [-124.002488, 49.240284], [-124.003746, 49.240345], [-124.006064, 49.240689], [-124.008383, 49.241255], [-124.010988, 49.242277], [-124.016495, 49.244631], [-124.017467, 49.244903], [-124.018453, 49.245166], [-124.020529, 49.245345], [-124.023371, 49.245456], [-124.02501, 49.24588], [-124.026667, 49.246675], [-124.029572, 49.248221], [-124.030991, 49.249183], [-124.033316, 49.250987]], [[-123.930371, 49.155281], [-123.928853, 49.155307], [-123.927383, 49.155399], [-123.92757, 49.15511], [-123.92786, 49.155179], [-123.927942, 49.155125], [-123.928248, 49.154654], [-123.928299, 49.154456], [-123.928292, 49.154016], [-123.9281, 49.153342], [-123.928073, 49.152632], [-123.928255, 49.1521], [-123.928315, 49.151613], [-123.92831, 49.151326], [-123.928106, 49.150643], [-123.927936, 49.150384], [-123.927685, 49.150233], [-123.927461, 49.149947], [-123.927234, 49.148825], [-123.92728, 49.148312], [-123.927515, 49.14769], [-123.927503, 49.147104], [-123.927406, 49.14706], [-123.926913, 49.147064], [-123.926494, 49.146636], [-123.926586, 49.14649], [-123.926805, 49.146399], [-123.927, 49.146533], [-123.927205, 49.146567], [-123.927299, 49.146422], [-123.927229, 49.146297], [-123.930917, 49.146847], [-123.93074, 49.148149], [-123.930529, 49.153439], [-123.930371, 49.155281]]]]}, "properties": {"name": "Nanaimo", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921007", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.143423, 49.258211], [-124.143342, 49.253836], [-124.143175, 49.251792], [-124.143299, 49.251224], [-124.144714, 49.251627], [-124.1453, 49.251721], [-124.146711, 49.25181], [-124.14876, 49.251845], [-124.148517, 49.246418], [-124.147483, 49.246429], [-124.142437, 49.246017], [-124.142449, 49.245107], [-124.138938, 49.245183], [-124.136956, 49.245166], [-124.136213, 49.240668], [-124.136311, 49.24067], [-124.137237, 49.231538], [-124.135037, 49.231388], [-124.135145, 49.228661], [-124.132315, 49.228515], [-124.132408, 49.221605], [-124.121672, 49.221137], [-124.12176, 49.213069], [-124.127289, 49.213234], [-124.127899, 49.202883], [-124.135411, 49.202904], [-124.13527, 49.200188], [-124.092619, 49.199882], [-124.081966, 49.199206], [-124.081821, 49.203464], [-124.081739, 49.211446], [-124.074039, 49.211799], [-124.074379, 49.213025], [-124.074027, 49.214777], [-124.073938, 49.219802], [-124.07301, 49.219733], [-124.073045, 49.222858], [-124.072866, 49.228585], [-124.070189, 49.22851], [-124.070136, 49.229678], [-124.064623, 49.229765], [-124.06483, 49.231679], [-124.064515, 49.234319], [-124.064619, 49.234639], [-124.062459, 49.234668], [-124.053965, 49.234484], [-124.055368, 49.237344], [-124.058195, 49.239464], [-124.060341, 49.240936], [-124.057519, 49.241131], [-124.05702, 49.241751], [-124.057242, 49.241751], [-124.057318, 49.248148], [-124.057168, 49.249056], [-124.057079, 49.251509], [-124.060345, 49.253724], [-124.062589, 49.254873], [-124.06658, 49.256014], [-124.068455, 49.256435], [-124.073234, 49.257493], [-124.078437, 49.258427], [-124.081391, 49.258473], [-124.087503, 49.258252], [-124.092132, 49.258315], [-124.098371, 49.258547], [-124.105092, 49.258238], [-124.109409, 49.258277], [-124.113557, 49.258497], [-124.122828, 49.256956], [-124.122017, 49.254202], [-124.12286, 49.252451], [-124.122361, 49.252586], [-124.120808, 49.252613], [-124.119471, 49.252763], [-124.117223, 49.252704], [-124.115219, 49.252996], [-124.1128, 49.253672], [-124.112621, 49.253012], [-124.112638, 49.252172], [-124.112935, 49.248816], [-124.13169, 49.248911], [-124.131815, 49.251515], [-124.131912, 49.251642], [-124.132055, 49.252464], [-124.132276, 49.255164], [-124.143423, 49.258211]]]]}, "properties": {"name": "Lantzville", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Lantzville", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921008", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.871859, 49.1195], [-123.877897, 49.119595], [-123.877989, 49.122948], [-123.886442, 49.123139], [-123.88587, 49.122059], [-123.884956, 49.120967], [-123.884361, 49.120547], [-123.882546, 49.119663], [-123.881795, 49.119526], [-123.880125, 49.119453], [-123.879536, 49.119242], [-123.879322, 49.118892], [-123.879487, 49.11805], [-123.879941, 49.11736], [-123.880503, 49.116158], [-123.880637, 49.115259], [-123.880244, 49.114823], [-123.879203, 49.114079], [-123.879355, 49.113796], [-123.879639, 49.113731], [-123.881456, 49.113769], [-123.88919, 49.114707], [-123.8892, 49.113726], [-123.888881, 49.109783], [-123.893285, 49.109439], [-123.897404, 49.109927], [-123.904725, 49.110082], [-123.917261, 49.109833], [-123.919151, 49.110012], [-123.919056, 49.108508], [-123.919373, 49.103891], [-123.919954, 49.102011], [-123.920099, 49.097801], [-123.912694, 49.09721], [-123.91266, 49.094122], [-123.90944, 49.094042], [-123.909318, 49.082674], [-123.892469, 49.082554], [-123.892191, 49.075273], [-123.892399, 49.069394], [-123.891731, 49.065358], [-123.892308, 49.047334], [-123.885, 49.046756], [-123.883911, 49.046761], [-123.883959, 49.042943], [-123.878382, 49.043063], [-123.87826, 49.038342], [-123.877731, 49.037033], [-123.865659, 49.036441], [-123.86575, 49.036904], [-123.864657, 49.037948], [-123.864903, 49.039632], [-123.864792, 49.042763], [-123.867605, 49.042956], [-123.867387, 49.050099], [-123.864803, 49.050068], [-123.864457, 49.057334], [-123.853616, 49.057437], [-123.823683, 49.057474], [-123.822656, 49.057184], [-123.7732, 49.057504], [-123.76999, 49.057183], [-123.767048, 49.057385], [-123.740433, 49.057054], [-123.780156, 49.101911], [-123.794833, 49.118635], [-123.805135, 49.12686], [-123.809518, 49.126889], [-123.812515, 49.126066], [-123.822584, 49.126831], [-123.850568, 49.126806], [-123.850942, 49.12998], [-123.864658, 49.129738], [-123.863663, 49.126502], [-123.864055, 49.125566], [-123.86423, 49.124892], [-123.864193, 49.123614], [-123.864276, 49.122705], [-123.864189, 49.120274], [-123.864052, 49.119378], [-123.864201, 49.11917], [-123.871859, 49.1195]]]]}, "properties": {"name": "Nanaimo A", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo A", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921010", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.813659, 49.21145], [-123.837143, 49.211593], [-123.848023, 49.210123], [-123.877356, 49.19955], [-123.893783, 49.193128], [-123.902531, 49.185083], [-123.891017, 49.174792], [-123.889029, 49.173373], [-123.883677, 49.168735], [-123.880027, 49.163625], [-123.876323, 49.159091], [-123.872377, 49.156076], [-123.865453, 49.152487], [-123.857544, 49.150179], [-123.848184, 49.148143], [-123.837568, 49.146097], [-123.832249, 49.145533], [-123.828047, 49.144463], [-123.824895, 49.142732], [-123.820734, 49.139639], [-123.819687, 49.138432], [-123.818003, 49.135578], [-123.816464, 49.133728], [-123.814736, 49.132477], [-123.809114, 49.129889], [-123.807113, 49.128804], [-123.805135, 49.12686], [-123.794833, 49.118635], [-123.780156, 49.101911], [-123.740433, 49.057054], [-123.73991, 49.071146], [-123.739213, 49.073799], [-123.737673, 49.076615], [-123.735753, 49.0785], [-123.727657, 49.084377], [-123.720807, 49.088636], [-123.717805, 49.091172], [-123.715746, 49.093284], [-123.714606, 49.095109], [-123.714064, 49.096793], [-123.714181, 49.098883], [-123.71449, 49.100336], [-123.715283, 49.102115], [-123.716876, 49.104744], [-123.71927, 49.107387], [-123.723027, 49.109735], [-123.729238, 49.112065], [-123.730822, 49.113404], [-123.73163, 49.114781], [-123.731943, 49.116291], [-123.731814, 49.118485], [-123.731439, 49.119978], [-123.73065, 49.121532], [-123.729622, 49.122371], [-123.728025, 49.123407], [-123.725939, 49.124576], [-123.723114, 49.125659], [-123.719007, 49.127383], [-123.716211, 49.128321], [-123.71249, 49.129198], [-123.708814, 49.12941], [-123.700491, 49.128898], [-123.694543, 49.127036], [-123.690616, 49.126175], [-123.687856, 49.125592], [-123.683303, 49.124824], [-123.680748, 49.124637], [-123.500012, 49.12834], [-123.483368, 49.128424], [-123.434809, 49.129359], [-123.445233, 49.146617], [-123.468231, 49.183582], [-123.474614, 49.191745], [-123.481558, 49.199268], [-123.488209, 49.205267], [-123.500013, 49.214735], [-123.500013, 49.212565], [-123.813659, 49.21145]]]]}, "properties": {"name": "Nanaimo B", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo B", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921014", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.637527, 49.284841], [-124.65683, 49.284922], [-124.662218, 49.281429], [-124.644678, 49.249927], [-124.646852, 49.248292], [-124.645361, 49.244977], [-124.644372, 49.244929], [-124.642122, 49.241211], [-124.633446, 49.236226], [-124.633845, 49.234604], [-124.634193, 49.231981], [-124.634102, 49.228041], [-124.633394, 49.224664], [-124.632027, 49.221798], [-124.630636, 49.219509], [-124.639618, 49.219619], [-124.644148, 49.22434], [-124.64808, 49.224549], [-124.650883, 49.226729], [-124.650475, 49.227865], [-124.650709, 49.229142], [-124.65168, 49.230335], [-124.653559, 49.231671], [-124.655946, 49.235685], [-124.654971, 49.237054], [-124.654276, 49.238435], [-124.654069, 49.240729], [-124.654639, 49.243128], [-124.656181, 49.245363], [-124.657306, 49.246518], [-124.658398, 49.247268], [-124.657635, 49.234087], [-124.674238, 49.233893], [-124.673927, 49.231251], [-124.668405, 49.231346], [-124.668287, 49.227624], [-124.663125, 49.227395], [-124.663075, 49.224023], [-124.674175, 49.224168], [-124.67414, 49.227478], [-124.679656, 49.227678], [-124.679799, 49.220887], [-124.674736, 49.220556], [-124.67486, 49.220458], [-124.676468, 49.217829], [-124.677406, 49.215322], [-124.681902, 49.215806], [-124.688122, 49.211333], [-124.692949, 49.205474], [-124.688386, 49.201076], [-124.680303, 49.205602], [-124.683249, 49.200069], [-124.689588, 49.197332], [-124.697318, 49.191287], [-124.69806, 49.188347], [-124.695633, 49.184429], [-124.694582, 49.18076], [-124.699245, 49.178772], [-124.698836, 49.176514], [-124.697739, 49.176038], [-124.698787, 49.175039], [-124.68861, 49.174801], [-124.688292, 49.171556], [-124.672587, 49.171584], [-124.672667, 49.172843], [-124.67012, 49.173126], [-124.665323, 49.181072], [-124.653718, 49.179132], [-124.65649, 49.173861], [-124.646924, 49.173834], [-124.646881, 49.172122], [-124.640644, 49.171894], [-124.640469, 49.165928], [-124.634977, 49.165675], [-124.634912, 49.162495], [-124.629586, 49.162211], [-124.629273, 49.158245], [-124.624421, 49.158157], [-124.613455, 49.158112], [-124.613322, 49.159911], [-124.590467, 49.159665], [-124.590136, 49.152093], [-124.59554, 49.152178], [-124.59546, 49.148055], [-124.594105, 49.1481], [-124.594047, 49.147093], [-124.589914, 49.146948], [-124.589933, 49.141798], [-124.585419, 49.141681], [-124.584662, 49.140133], [-124.582505, 49.140056], [-124.582395, 49.144992], [-124.580543, 49.145066], [-124.580598, 49.148575], [-124.567088, 49.148804], [-124.567021, 49.14731], [-124.565458, 49.147244], [-124.565031, 49.143644], [-124.55712, 49.143542], [-124.55704, 49.142774], [-124.552207, 49.142746], [-124.552091, 49.141801], [-124.549872, 49.141713], [-124.549567, 49.137576], [-124.550883, 49.137015], [-124.551722, 49.13644], [-124.552305, 49.135769], [-124.552553, 49.134842], [-124.552429, 49.133484], [-124.551962, 49.132062], [-124.551552, 49.131113], [-124.549451, 49.131095], [-124.548212, 49.1281], [-124.536139, 49.127939], [-124.535336, 49.125992], [-124.532758, 49.125958], [-124.532511, 49.124186], [-124.528218, 49.124179], [-124.527942, 49.120521], [-124.529156, 49.120552], [-124.52939, 49.117912], [-124.532584, 49.118007], [-124.532643, 49.116198], [-124.535027, 49.116191], [-124.535024, 49.113858], [-124.537186, 49.113787], [-124.537227, 49.109177], [-124.531493, 49.108967], [-124.531317, 49.10462], [-124.529949, 49.10458], [-124.530278, 49.097457], [-124.531857, 49.097419], [-124.531764, 49.094464], [-124.532953, 49.094425], [-124.532875, 49.091099], [-124.527765, 49.091096], [-124.527242, 49.080132], [-124.523789, 49.079989], [-124.523774, 49.07144], [-124.521534, 49.070689], [-124.521495, 49.069744], [-124.519654, 49.069608], [-124.519058, 49.068615], [-124.516552, 49.068556], [-124.515768, 49.051057], [-124.51186, 49.050944], [-124.510636, 49.049678], [-124.508825, 49.049654], [-124.506886, 49.047929], [-124.506379, 49.047548], [-124.505875, 49.047311], [-124.50521, 49.047161], [-124.504569, 49.047116], [-124.503049, 49.047148], [-124.503091, 49.048943], [-124.505453, 49.048911], [-124.505763, 49.05329], [-124.503699, 49.054898], [-124.50171, 49.054881], [-124.501722, 49.054092], [-124.49551, 49.054129], [-124.495543, 49.055293], [-124.490503, 49.055197], [-124.490462, 49.056328], [-124.482629, 49.05624], [-124.482665, 49.055533], [-124.481296, 49.055436], [-124.481393, 49.054585], [-124.475301, 49.054547], [-124.47514, 49.058647], [-124.471806, 49.058613], [-124.471553, 49.060515], [-124.463145, 49.060185], [-124.463001, 49.059213], [-124.461081, 49.059169], [-124.460988, 49.055524], [-124.463174, 49.05556], [-124.463291, 49.050179], [-124.458125, 49.050038], [-124.4582, 49.049107], [-124.456028, 49.049035], [-124.456442, 49.043515], [-124.465802, 49.043491], [-124.465771, 49.042598], [-124.469937, 49.042535], [-124.469929, 49.043382], [-124.473459, 49.043433], [-124.473559, 49.044301], [-124.477364, 49.04419], [-124.477387, 49.043307], [-124.484944, 49.043345], [-124.485037, 49.042436], [-124.48841, 49.042303], [-124.488499, 49.038712], [-124.485265, 49.038551], [-124.485227, 49.035882], [-124.486981, 49.035896], [-124.487052, 49.031664], [-124.488171, 49.031705], [-124.488204, 49.0309], [-124.493761, 49.03106], [-124.493909, 49.034292], [-124.50197, 49.034177], [-124.501645, 49.030814], [-124.499985, 49.030775], [-124.499988, 49.029725], [-124.503543, 49.029695], [-124.503398, 49.027948], [-124.497986, 49.027855], [-124.497879, 49.027063], [-124.495279, 49.027017], [-124.495311, 49.024491], [-124.484119, 49.024084], [-124.484109, 49.025058], [-124.479816, 49.025144], [-124.479726, 49.02395], [-124.482781, 49.023829], [-124.482717, 49.02221], [-124.479274, 49.022198], [-124.479232, 49.021482], [-124.472127, 49.02152], [-124.472082, 49.020764], [-124.47025, 49.02077], [-124.470157, 49.019993], [-124.463069, 49.019932], [-124.463067, 49.021423], [-124.464965, 49.021474], [-124.464913, 49.023139], [-124.466774, 49.023672], [-124.46663, 49.026076], [-124.465588, 49.026062], [-124.465492, 49.027053], [-124.463412, 49.027044], [-124.463382, 49.028716], [-124.464594, 49.028716], [-124.46459, 49.029386], [-124.468914, 49.029359], [-124.46899, 49.03086], [-124.46608, 49.030908], [-124.466029, 49.031659], [-124.463195, 49.03162], [-124.463193, 49.032445], [-124.457802, 49.032373], [-124.457708, 49.031143], [-124.456564, 49.031111], [-124.456449, 49.027933], [-124.454935, 49.027821], [-124.454814, 49.023795], [-124.453447, 49.023609], [-124.452271, 49.023293], [-124.450696, 49.023103], [-124.449463, 49.023242], [-124.445982, 49.024203], [-124.443976, 49.024503], [-124.442147, 49.024501], [-124.44033, 49.024318], [-124.439557, 49.024385], [-124.436889, 49.024858], [-124.435659, 49.024993], [-124.434944, 49.024972], [-124.434244, 49.024775], [-124.431496, 49.023576], [-124.430424, 49.023218], [-124.428792, 49.023131], [-124.427125, 49.023217], [-124.425374, 49.023561], [-124.423329, 49.024141], [-124.420372, 49.02521], [-124.419291, 49.025499], [-124.418093, 49.025613], [-124.417135, 49.025464], [-124.416303, 49.025071], [-124.415435, 49.024363], [-124.414644, 49.023478], [-124.413827, 49.022397], [-124.413131, 49.021228], [-124.411907, 49.018182], [-124.410936, 49.016473], [-124.410393, 49.01594], [-124.409711, 49.015601], [-124.408409, 49.015393], [-124.404984, 49.015202], [-124.403245, 49.014641], [-124.401768, 49.013764], [-124.400535, 49.01247], [-124.399606, 49.010905], [-124.399205, 49.009656], [-124.399108, 49.008333], [-124.399422, 49.005674], [-124.400262, 49.003349], [-124.399255, 49.002449], [-124.398303, 49.001423], [-124.39758, 49.0001], [-124.396365, 48.998482], [-124.394365, 48.996413], [-124.392896, 48.994306], [-124.392648, 48.992596], [-124.392864, 48.990767], [-124.384935, 48.982057], [-124.364488, 48.982186], [-124.36448, 48.985584], [-124.366029, 48.985636], [-124.366177, 48.988122], [-124.36999, 48.988064], [-124.369969, 48.98657], [-124.372489, 48.986574], [-124.372521, 48.987368], [-124.374576, 48.987401], [-124.37467, 48.98869], [-124.378122, 48.988866], [-124.37952, 48.987627], [-124.381956, 48.98756], [-124.382115, 48.989115], [-124.383434, 48.989105], [-124.383817, 48.990922], [-124.387419, 48.990756], [-124.387671, 48.992939], [-124.386671, 48.993228], [-124.386682, 48.993806], [-124.383585, 48.993996], [-124.38346, 48.993565], [-124.382942, 48.993571], [-124.383088, 48.994073], [-124.380981, 48.995564], [-124.379734, 48.99462], [-124.379283, 48.994469], [-124.378817, 48.994535], [-124.378365, 48.994808], [-124.377855, 48.995578], [-124.377452, 48.995859], [-124.376826, 48.996116], [-124.376094, 48.996201], [-124.37646, 48.999659], [-124.344718, 48.999757], [-124.344539, 48.999016], [-124.343965, 48.9991], [-124.343779, 48.998275], [-124.342291, 48.998271], [-124.342129, 48.997778], [-124.335604, 48.997502], [-124.333172, 48.995933], [-124.332993, 48.997694], [-124.328977, 48.9976], [-124.328665, 49.000916], [-124.324044, 49.000941], [-124.323781, 49.004348], [-124.32255, 49.004419], [-124.322444, 49.007556], [-124.31699, 49.007441], [-124.316911, 49.004244], [-124.313748, 49.004093], [-124.313792, 48.999748], [-124.305096, 48.999766], [-124.304942, 48.997234], [-124.292094, 48.997234], [-124.292199, 49.004256], [-124.294354, 49.004439], [-124.294568, 49.013272], [-124.282428, 49.013111], [-124.282225, 49.005208], [-124.27768, 49.005097], [-124.277827, 49.001097], [-124.282671, 49.001183], [-124.28273, 48.996409], [-124.277091, 48.996319], [-124.277168, 48.99977], [-124.249559, 48.999778], [-124.248819, 48.989535], [-124.243417, 48.98949], [-124.243336, 48.993897], [-124.234126, 48.994094], [-124.234405, 48.999034], [-124.238044, 48.999096], [-124.238163, 49.003926], [-124.233288, 49.003889], [-124.233532, 49.007147], [-124.226835, 49.006981], [-124.226782, 49.004375], [-124.204592, 49.004441], [-124.204371, 49.008904], [-124.172942, 49.008913], [-124.172837, 49.001524], [-124.156497, 49.001602], [-124.156428, 49.002434], [-124.136342, 49.002204], [-124.136299, 49.000835], [-124.133982, 49.000837], [-124.13389, 48.999813], [-124.116332, 48.999766], [-124.116262, 48.999072], [-124.115453, 48.999029], [-124.115454, 48.998268], [-124.102552, 48.998163], [-124.102525, 48.995619], [-124.10338, 48.995642], [-124.103382, 48.992066], [-124.102444, 48.992024], [-124.102278, 48.986423], [-124.101269, 48.98645], [-124.101085, 48.983489], [-124.098591, 48.983339], [-124.09859, 48.981267], [-124.092717, 48.981335], [-124.092784, 48.981948], [-124.087196, 48.982047], [-124.087314, 48.982724], [-124.083815, 48.982857], [-124.083857, 48.984748], [-124.080752, 48.984737], [-124.080713, 48.989367], [-124.083304, 48.989395], [-124.083253, 48.991404], [-124.084994, 48.991488], [-124.084919, 48.993929], [-124.080275, 48.99393], [-124.08033, 48.999669], [-124.084816, 48.99981], [-124.084666, 49.004693], [-124.080772, 49.004606], [-124.08077, 49.003185], [-124.069855, 49.00298], [-124.069802, 49.003748], [-124.067121, 49.003699], [-124.067032, 49.004677], [-124.063573, 49.004569], [-124.063523, 49.003126], [-124.062272, 49.00301], [-124.062242, 49.00191], [-124.057421, 49.001627], [-124.057366, 48.999966], [-124.05494, 48.999894], [-124.054607, 49.005934], [-124.055819, 49.005982], [-124.055838, 49.005615], [-124.057066, 49.005647], [-124.057129, 49.006264], [-124.058529, 49.006322], [-124.058545, 49.006957], [-124.060917, 49.006992], [-124.060992, 49.006264], [-124.063889, 49.006245], [-124.064693, 49.00674], [-124.065612, 49.007193], [-124.065813, 49.008952], [-124.062118, 49.009028], [-124.061949, 49.010069], [-124.057458, 49.009861], [-124.057495, 49.009152], [-124.055771, 49.008962], [-124.055709, 49.008521], [-124.052006, 49.008472], [-124.051801, 49.007497], [-124.050507, 49.007459], [-124.050439, 49.006913], [-124.049027, 49.006802], [-124.04892, 49.005969], [-124.046189, 49.0059], [-124.046191, 49.006271], [-124.044736, 49.006293], [-124.044526, 49.005075], [-124.040721, 49.004882], [-124.040627, 49.004211], [-124.039343, 49.004147], [-124.039346, 49.003404], [-124.036664, 49.003175], [-124.036544, 49.000465], [-124.03776, 49.000453], [-124.037784, 48.999721], [-124.029112, 48.999749], [-124.029135, 48.9986], [-124.027846, 48.998586], [-124.027849, 48.997481], [-124.021392, 48.99736], [-124.021311, 48.995354], [-124.014529, 48.995565], [-124.014625, 48.996244], [-124.01332, 48.996309], [-124.013394, 48.997154], [-124.010177, 48.997273], [-124.01037, 48.999651], [-124.013769, 48.999693], [-124.014104, 49.004822], [-124.015169, 49.00486], [-124.01523, 49.006199], [-124.017114, 49.006283], [-124.017185, 49.005319], [-124.019284, 49.005389], [-124.019283, 49.006431], [-124.020848, 49.006482], [-124.020912, 49.00801], [-124.021742, 49.008071], [-124.021678, 49.008966], [-124.020634, 49.00889], [-124.020618, 49.01081], [-124.019504, 49.010801], [-124.019604, 49.01192], [-124.029712, 49.012345], [-124.029899, 49.018391], [-124.035528, 49.01824], [-124.035953, 49.025744], [-124.035067, 49.026098], [-124.034577, 49.026202], [-124.034249, 49.026204], [-124.033628, 49.025975], [-124.033204, 49.025917], [-124.031279, 49.026086], [-124.030717, 49.026046], [-124.029564, 49.025858], [-124.028991, 49.025964], [-124.028315, 49.026257], [-124.028041, 49.026296], [-124.027835, 49.026226], [-124.027293, 49.02588], [-124.02673, 49.025722], [-124.025236, 49.025655], [-124.023836, 49.025415], [-124.02269, 49.025551], [-124.021767, 49.025847], [-124.020682, 49.026397], [-124.020166, 49.026582], [-124.019911, 49.026763], [-124.019805, 49.026891], [-124.019769, 49.027116], [-124.019954, 49.027582], [-124.020196, 49.027939], [-124.020184, 49.028039], [-124.019981, 49.028211], [-124.018971, 49.028247], [-124.018384, 49.028388], [-124.017017, 49.029083], [-124.015887, 49.030037], [-124.015412, 49.030204], [-124.012745, 49.030226], [-124.012392, 49.030329], [-124.011732, 49.030812], [-124.011391, 49.030967], [-124.010297, 49.030923], [-124.008659, 49.031154], [-124.007743, 49.031198], [-124.006941, 49.031455], [-124.005939, 49.031905], [-124.005461, 49.032018], [-124.004737, 49.032015], [-124.003801, 49.031789], [-124.003089, 49.031742], [-124.002367, 49.03181], [-124.001426, 49.032035], [-123.999746, 49.032158], [-123.999129, 49.032072], [-123.99752, 49.031682], [-123.996743, 49.031779], [-123.996008, 49.031982], [-123.995655, 49.032156], [-123.995123, 49.032279], [-123.994456, 49.032311], [-123.994262, 49.032277], [-123.994179, 49.032196], [-123.993993, 49.031802], [-123.99369, 49.031733], [-123.993429, 49.031591], [-123.993023, 49.031181], [-123.992408, 49.031151], [-123.991882, 49.030867], [-123.990795, 49.03057], [-123.990625, 49.030347], [-123.9908, 49.030148], [-123.990784, 49.029986], [-123.990559, 49.029754], [-123.990079, 49.029622], [-123.989215, 49.029594], [-123.989019, 49.029345], [-123.988359, 49.029224], [-123.987952, 49.028589], [-123.987589, 49.028304], [-123.98712, 49.028056], [-123.986783, 49.027654], [-123.986533, 49.027476], [-123.985888, 49.027355], [-123.985245, 49.027379], [-123.984733, 49.027663], [-123.98436, 49.027567], [-123.983987, 49.027318], [-123.983465, 49.02726], [-123.982827, 49.02677], [-123.982688, 49.026727], [-123.98243, 49.026764], [-123.982104, 49.026975], [-123.981158, 49.026848], [-123.9803, 49.026962], [-123.979952, 49.02666], [-123.979387, 49.026449], [-123.978057, 49.026288], [-123.977574, 49.026095], [-123.977285, 49.026079], [-123.976863, 49.026155], [-123.976575, 49.026103], [-123.975997, 49.025955], [-123.975609, 49.025662], [-123.974843, 49.025588], [-123.974551, 49.025491], [-123.974136, 49.02518], [-123.973394, 49.024386], [-123.973175, 49.024289], [-123.972875, 49.024309], [-123.972483, 49.024582], [-123.972197, 49.024675], [-123.971684, 49.02431], [-123.971201, 49.024144], [-123.970978, 49.023901], [-123.970333, 49.023719], [-123.970153, 49.023711], [-123.969557, 49.023923], [-123.969378, 49.023924], [-123.968882, 49.023785], [-123.96866, 49.023588], [-123.968425, 49.023491], [-123.968152, 49.023467], [-123.967907, 49.02356], [-123.967607, 49.023553], [-123.966534, 49.023265], [-123.965369, 49.023104], [-123.965136, 49.023132], [-123.964743, 49.023333], [-123.96458, 49.023353], [-123.964386, 49.023292], [-123.96346, 49.022688], [-123.963152, 49.022322], [-123.962641, 49.02211], [-123.96235, 49.021888], [-123.961402, 49.02168], [-123.960574, 49.021308], [-123.960175, 49.021248], [-123.95989, 49.021269], [-123.959243, 49.021059], [-123.959051, 49.021042], [-123.958614, 49.021127], [-123.957045, 49.020694], [-123.956317, 49.020653], [-123.955472, 49.020696], [-123.954874, 49.020486], [-123.952472, 49.019324], [-123.95262, 49.019512], [-123.95291, 49.019707], [-123.954098, 49.020283], [-123.954266, 49.020452], [-123.954423, 49.020874], [-123.954399, 49.021044], [-123.953911, 49.021265], [-123.953561, 49.021537], [-123.953016, 49.022342], [-123.952794, 49.022875], [-123.952787, 49.023271], [-123.953043, 49.023692], [-123.953086, 49.023899], [-123.953064, 49.024186], [-123.952787, 49.024564], [-123.953198, 49.031427], [-123.94332, 49.031185], [-123.943212, 49.029952], [-123.935191, 49.029515], [-123.930448, 49.032119], [-123.927091, 49.029496], [-123.920947, 49.032243], [-123.914401, 49.030869], [-123.907218, 49.029697], [-123.902882, 49.027216], [-123.89494, 49.026281], [-123.893356, 49.024926], [-123.88531, 49.024141], [-123.885539, 49.037178], [-123.877731, 49.037033], [-123.87826, 49.038342], [-123.878382, 49.043063], [-123.883959, 49.042943], [-123.883911, 49.046761], [-123.885, 49.046756], [-123.892308, 49.047334], [-123.891731, 49.065358], [-123.892399, 49.069394], [-123.892191, 49.075273], [-123.892469, 49.082554], [-123.909318, 49.082674], [-123.90944, 49.094042], [-123.91266, 49.094122], [-123.912694, 49.09721], [-123.920099, 49.097801], [-123.919954, 49.102011], [-123.923738, 49.101091], [-123.924386, 49.101129], [-123.924341, 49.097044], [-123.933147, 49.097227], [-123.933424, 49.10158], [-123.936077, 49.101619], [-123.938182, 49.101576], [-123.938252, 49.104779], [-123.932997, 49.104805], [-123.933025, 49.110262], [-123.932924, 49.113209], [-123.932832, 49.122292], [-123.932922, 49.123108], [-123.930492, 49.122797], [-123.930496, 49.12287], [-123.924251, 49.123396], [-123.923837, 49.123472], [-123.92458, 49.12434], [-123.923829, 49.12484], [-123.925868, 49.126711], [-123.926133, 49.12743], [-123.927861, 49.130382], [-123.930013, 49.130222], [-123.93321, 49.130477], [-123.93326, 49.130576], [-123.932849, 49.133424], [-123.932901, 49.133604], [-123.933192, 49.133665], [-123.951891, 49.132984], [-123.955566, 49.132949], [-123.96418, 49.133148], [-123.968649, 49.133], [-123.968988, 49.133244], [-123.969386, 49.133073], [-123.969842, 49.132984], [-123.970291, 49.133048], [-123.970639, 49.133005], [-123.972185, 49.132468], [-123.972949, 49.13213], [-123.975326, 49.13078], [-123.975099, 49.131382], [-123.975027, 49.132846], [-123.974716, 49.134265], [-123.978494, 49.134458], [-123.978404, 49.135136], [-123.974613, 49.134986], [-123.97448, 49.136893], [-123.978871, 49.136987], [-123.979486, 49.137087], [-123.981098, 49.137676], [-123.978401, 49.137639], [-123.976314, 49.141042], [-123.980478, 49.141058], [-123.980478, 49.148178], [-123.986357, 49.148332], [-123.986375, 49.151981], [-124.001305, 49.152368], [-124.001359, 49.156141], [-124.013873, 49.156269], [-124.013904, 49.159623], [-124.018925, 49.1597], [-124.022431, 49.162952], [-124.021867, 49.170302], [-124.02252, 49.17037], [-124.022176, 49.172448], [-124.022382, 49.173321], [-124.022351, 49.174303], [-124.019722, 49.174327], [-124.019686, 49.175676], [-124.017133, 49.17575], [-124.017077, 49.174569], [-124.016881, 49.174641], [-124.016948, 49.177159], [-124.016886, 49.177328], [-124.01671, 49.177451], [-124.016467, 49.17751], [-124.014168, 49.177504], [-124.01404, 49.177549], [-124.008158, 49.177455], [-124.008085, 49.178267], [-124.006861, 49.178272], [-124.006824, 49.179327], [-124.00566, 49.179331], [-124.005924, 49.179729], [-124.004848, 49.179749], [-124.004841, 49.180147], [-123.999606, 49.180176], [-123.996626, 49.181422], [-123.997403, 49.181873], [-123.999469, 49.182668], [-123.999263, 49.184426], [-123.999334, 49.186987], [-124.002241, 49.186616], [-124.004521, 49.189144], [-124.00743, 49.189992], [-124.010411, 49.189907], [-124.010417, 49.188963], [-124.010709, 49.189055], [-124.010826, 49.190042], [-124.013562, 49.191162], [-124.014611, 49.191907], [-124.018158, 49.192558], [-124.022407, 49.19462], [-124.022939, 49.194491], [-124.023767, 49.194705], [-124.024659, 49.194457], [-124.027319, 49.196147], [-124.027416, 49.199219], [-124.032276, 49.199384], [-124.032759, 49.199816], [-124.033412, 49.199432], [-124.034377, 49.1995], [-124.040298, 49.199603], [-124.040795, 49.202805], [-124.041734, 49.202385], [-124.047666, 49.202891], [-124.047857, 49.202978], [-124.048846, 49.202977], [-124.048683, 49.202827], [-124.05063, 49.202868], [-124.054434, 49.20283], [-124.05465, 49.204555], [-124.054358, 49.217329], [-124.054364, 49.221116], [-124.054257, 49.222462], [-124.054053, 49.222587], [-124.057467, 49.222619], [-124.057929, 49.224993], [-124.058036, 49.228006], [-124.063864, 49.228051], [-124.064752, 49.228127], [-124.064623, 49.229765], [-124.070136, 49.229678], [-124.070189, 49.22851], [-124.072866, 49.228585], [-124.073045, 49.222858], [-124.07301, 49.219733], [-124.073938, 49.219802], [-124.074027, 49.214777], [-124.074379, 49.213025], [-124.074039, 49.211799], [-124.081739, 49.211446], [-124.081821, 49.203464], [-124.081966, 49.199206], [-124.092619, 49.199882], [-124.13527, 49.200188], [-124.135411, 49.202904], [-124.15843, 49.202967], [-124.158862, 49.200369], [-124.177699, 49.200384], [-124.180803, 49.205794], [-124.184498, 49.205666], [-124.184561, 49.21353], [-124.191464, 49.21367], [-124.191485, 49.217943], [-124.196535, 49.218095], [-124.196593, 49.223007], [-124.196532, 49.224451], [-124.201044, 49.225006], [-124.20348, 49.225073], [-124.203797, 49.233248], [-124.212888, 49.233121], [-124.213125, 49.223677], [-124.226913, 49.22409], [-124.226674, 49.231445], [-124.219829, 49.231353], [-124.219697, 49.23872], [-124.225156, 49.238843], [-124.224962, 49.246972], [-124.234243, 49.247126], [-124.234427, 49.252857], [-124.242857, 49.252681], [-124.242852, 49.248828], [-124.249942, 49.248853], [-124.249865, 49.241506], [-124.24044, 49.241298], [-124.240261, 49.231351], [-124.245882, 49.23142], [-124.245916, 49.226328], [-124.307159, 49.226344], [-124.307135, 49.222715], [-124.298558, 49.222639], [-124.298107, 49.219129], [-124.292172, 49.218948], [-124.291744, 49.211953], [-124.286084, 49.211725], [-124.28591, 49.210047], [-124.28613, 49.208752], [-124.307212, 49.20858], [-124.307118, 49.20931], [-124.307179, 49.212676], [-124.31422, 49.212865], [-124.314381, 49.218947], [-124.319556, 49.21892], [-124.319414, 49.226045], [-124.326812, 49.226234], [-124.326755, 49.230205], [-124.366333, 49.23041], [-124.38886, 49.230583], [-124.389093, 49.232437], [-124.420597, 49.232683], [-124.420823, 49.236201], [-124.447774, 49.23634], [-124.447632, 49.23167], [-124.447016, 49.223115], [-124.45669, 49.223761], [-124.458851, 49.224154], [-124.46564, 49.22511], [-124.481369, 49.230975], [-124.492861, 49.230745], [-124.494592, 49.23272], [-124.496041, 49.234163], [-124.497128, 49.23474], [-124.498586, 49.235019], [-124.501101, 49.234917], [-124.502297, 49.235078], [-124.52524, 49.241146], [-124.534103, 49.241124], [-124.534076, 49.245547], [-124.531581, 49.24556], [-124.531914, 49.250147], [-124.529371, 49.250106], [-124.529494, 49.252625], [-124.522981, 49.252827], [-124.522869, 49.25517], [-124.521013, 49.255251], [-124.521042, 49.256976], [-124.559254, 49.257015], [-124.559526, 49.262292], [-124.570078, 49.262353], [-124.570046, 49.272705], [-124.58892, 49.272913], [-124.58898, 49.281178], [-124.595244, 49.281292], [-124.595494, 49.283803], [-124.605338, 49.284069], [-124.605456, 49.280215], [-124.604027, 49.280094], [-124.604064, 49.275533], [-124.603079, 49.275465], [-124.602726, 49.267844], [-124.617156, 49.267974], [-124.617358, 49.271805], [-124.62042, 49.271973], [-124.620419, 49.273579], [-124.63149, 49.273822], [-124.631583, 49.271879], [-124.643155, 49.272037], [-124.642927, 49.277569], [-124.645118, 49.277687], [-124.645073, 49.281241], [-124.637419, 49.281293], [-124.637527, 49.284841]]], [[[-123.869933, 49.342054], [-123.917335, 49.349832], [-123.972972, 49.357034], [-124.024158, 49.363377], [-124.040044, 49.365001], [-124.056992, 49.268366], [-124.113557, 49.258497], [-124.109409, 49.258277], [-124.105092, 49.258238], [-124.098371, 49.258547], [-124.092132, 49.258315], [-124.087503, 49.258252], [-124.081391, 49.258473], [-124.078437, 49.258427], [-124.073234, 49.257493], [-124.068455, 49.256435], [-124.06658, 49.256014], [-124.062589, 49.254873], [-124.060345, 49.253724], [-124.057079, 49.251509], [-124.055406, 49.251183], [-124.053347, 49.250973], [-124.050881, 49.25116], [-124.047959, 49.251568], [-124.044834, 49.251734], [-124.04234, 49.251789], [-124.036618, 49.251674], [-124.03413, 49.251312], [-124.033316, 49.250987], [-124.030991, 49.249183], [-124.029572, 49.248221], [-124.026667, 49.246675], [-124.02501, 49.24588], [-124.023371, 49.245456], [-124.020529, 49.245345], [-124.018453, 49.245166], [-124.017467, 49.244903], [-124.016495, 49.244631], [-124.010988, 49.242277], [-124.008383, 49.241255], [-124.006064, 49.240689], [-124.003746, 49.240345], [-124.002488, 49.240284], [-124.001355, 49.240313], [-123.994121, 49.241503], [-123.989694, 49.242094], [-123.98498, 49.24196], [-123.979482, 49.240771], [-123.975431, 49.23937], [-123.970726, 49.238763], [-123.966777, 49.238745], [-123.962138, 49.237771], [-123.959218, 49.236542], [-123.956691, 49.234867], [-123.950111, 49.232566], [-123.946613, 49.230889], [-123.943623, 49.228523], [-123.942351, 49.227163], [-123.941307, 49.225363], [-123.937887, 49.21782], [-123.935557, 49.213316], [-123.935334, 49.21296], [-123.932914, 49.210099], [-123.906034, 49.188175], [-123.902531, 49.185083], [-123.893783, 49.193128], [-123.877356, 49.19955], [-123.848023, 49.210123], [-123.837143, 49.211593], [-123.813659, 49.21145], [-123.795132, 49.211523], [-123.500013, 49.212565], [-123.500013, 49.214735], [-123.502602, 49.216811], [-123.511327, 49.222975], [-123.521971, 49.229319], [-123.533989, 49.235923], [-123.547819, 49.242964], [-123.564257, 49.250349], [-123.581931, 49.258806], [-123.599335, 49.266546], [-123.615071, 49.273302], [-123.632607, 49.280311], [-123.651935, 49.287494], [-123.6703, 49.293681], [-123.693513, 49.300835], [-123.714646, 49.306553], [-123.738389, 49.312339], [-123.783955, 49.323566], [-123.835284, 49.335069], [-123.869933, 49.342054]]]]}, "properties": {"name": "Nanaimo C", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo C", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921016", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.342465, 49.343914], [-124.344761, 49.34424], [-124.347092, 49.342357], [-124.346943, 49.341219], [-124.34926, 49.341119], [-124.353359, 49.339814], [-124.351042, 49.337768], [-124.348898, 49.337866], [-124.349094, 49.336364], [-124.348654, 49.335464], [-124.348646, 49.335199], [-124.348401, 49.335213], [-124.346784, 49.333608], [-124.34864, 49.33354], [-124.348662, 49.33129], [-124.348059, 49.331233], [-124.348107, 49.330723], [-124.34758, 49.330569], [-124.346614, 49.330037], [-124.346602, 49.329119], [-124.344947, 49.328261], [-124.3464, 49.327038], [-124.346513, 49.326636], [-124.348619, 49.326511], [-124.348741, 49.326107], [-124.348621, 49.325359], [-124.345613, 49.32217], [-124.343731, 49.32203], [-124.34341, 49.321941], [-124.343377, 49.318974], [-124.346889, 49.318841], [-124.346844, 49.317977], [-124.347032, 49.312676], [-124.346901, 49.31165], [-124.344889, 49.311718], [-124.337595, 49.312177], [-124.336691, 49.31179], [-124.328123, 49.309189], [-124.327399, 49.309259], [-124.324681, 49.309341], [-124.323476, 49.3093], [-124.324333, 49.307108], [-124.318862, 49.30707], [-124.318902, 49.307433], [-124.314088, 49.307167], [-124.31144, 49.306829], [-124.309958, 49.306557], [-124.306095, 49.305567], [-124.305001, 49.30534], [-124.304166, 49.305212], [-124.303195, 49.30515], [-124.301497, 49.305196], [-124.30154, 49.308769], [-124.301681, 49.308931], [-124.307085, 49.308953], [-124.307029, 49.309359], [-124.307098, 49.314883], [-124.306112, 49.314327], [-124.30533, 49.314337], [-124.305335, 49.313854], [-124.299856, 49.313911], [-124.299936, 49.308752], [-124.292148, 49.308602], [-124.291654, 49.306886], [-124.287753, 49.306862], [-124.284291, 49.306942], [-124.283979, 49.307504], [-124.283864, 49.306948], [-124.283514, 49.306214], [-124.283036, 49.305513], [-124.2822, 49.304569], [-124.281531, 49.304042], [-124.278308, 49.302201], [-124.276209, 49.30136], [-124.274765, 49.300576], [-124.273909, 49.300235], [-124.272754, 49.299973], [-124.270852, 49.300037], [-124.269577, 49.299965], [-124.268423, 49.299734], [-124.267252, 49.299362], [-124.266497, 49.298924], [-124.266731, 49.298532], [-124.26726, 49.298011], [-124.267274, 49.297929], [-124.266341, 49.297831], [-124.265512, 49.298651], [-124.26431, 49.298734], [-124.255496, 49.2987], [-124.254133, 49.298741], [-124.253119, 49.298664], [-124.244106, 49.298657], [-124.244087, 49.303281], [-124.248137, 49.303033], [-124.24841, 49.3031], [-124.248554, 49.303218], [-124.248548, 49.304023], [-124.248425, 49.304567], [-124.248556, 49.306524], [-124.251679, 49.307057], [-124.254068, 49.30834], [-124.25677, 49.310403], [-124.259037, 49.312626], [-124.26054, 49.315133], [-124.261224, 49.31713], [-124.261385, 49.319318], [-124.261185, 49.322686], [-124.261439, 49.324316], [-124.262196, 49.325462], [-124.263576, 49.326531], [-124.26552, 49.32732], [-124.272157, 49.329015], [-124.275121, 49.329968], [-124.275046, 49.328128], [-124.275308, 49.32236], [-124.275825, 49.31438], [-124.275628, 49.31407], [-124.275549, 49.311517], [-124.27567, 49.31139], [-124.275738, 49.311126], [-124.275525, 49.310765], [-124.275536, 49.309396], [-124.28227, 49.309543], [-124.285012, 49.309391], [-124.28495, 49.308491], [-124.287745, 49.308479], [-124.28781, 49.314364], [-124.286712, 49.314399], [-124.286607, 49.314663], [-124.284958, 49.314787], [-124.285272, 49.315192], [-124.285346, 49.31559], [-124.284881, 49.317438], [-124.284971, 49.318256], [-124.285816, 49.31952], [-124.287335, 49.321254], [-124.288237, 49.321981], [-124.288945, 49.322266], [-124.28957, 49.32242], [-124.291369, 49.322554], [-124.291912, 49.32276], [-124.292411, 49.323219], [-124.292671, 49.323766], [-124.292656, 49.324363], [-124.292373, 49.324878], [-124.291649, 49.325298], [-124.29092, 49.326166], [-124.290982, 49.327662], [-124.291745, 49.32791], [-124.293504, 49.327913], [-124.295116, 49.32865], [-124.295831, 49.329296], [-124.29606, 49.330053], [-124.296066, 49.331466], [-124.300419, 49.331055], [-124.304172, 49.330554], [-124.307354, 49.329566], [-124.309532, 49.329002], [-124.31164, 49.327773], [-124.320398, 49.329258], [-124.322386, 49.331626], [-124.324072, 49.333368], [-124.328024, 49.336655], [-124.330593, 49.338412], [-124.3345, 49.340665], [-124.33867, 49.342539], [-124.342465, 49.343914]]]]}, "properties": {"name": "Parksville", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Parksville", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921018", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.480602, 49.361101], [-124.481551, 49.361381], [-124.481539, 49.359231], [-124.483426, 49.359157], [-124.486854, 49.359133], [-124.486856, 49.355806], [-124.484214, 49.356005], [-124.483607, 49.356004], [-124.478543, 49.355691], [-124.477569, 49.353392], [-124.477509, 49.352894], [-124.483042, 49.351599], [-124.482963, 49.351292], [-124.482213, 49.350862], [-124.482145, 49.350408], [-124.482439, 49.345322], [-124.476305, 49.345257], [-124.476265, 49.34338], [-124.47604, 49.342735], [-124.475499, 49.342115], [-124.47505, 49.341838], [-124.473991, 49.341416], [-124.473417, 49.341312], [-124.472655, 49.341267], [-124.466438, 49.341314], [-124.464773, 49.341257], [-124.456178, 49.341229], [-124.455401, 49.341099], [-124.454568, 49.340835], [-124.452599, 49.339803], [-124.451912, 49.339553], [-124.450879, 49.339393], [-124.44316, 49.339276], [-124.44441, 49.337513], [-124.440254, 49.327487], [-124.439824, 49.327454], [-124.439522, 49.326247], [-124.439849, 49.326261], [-124.439821, 49.326017], [-124.426454, 49.325985], [-124.417859, 49.32517], [-124.409952, 49.325915], [-124.410003, 49.333688], [-124.414384, 49.333875], [-124.414497, 49.335549], [-124.410051, 49.335538], [-124.41002, 49.339344], [-124.405838, 49.33936], [-124.404708, 49.339312], [-124.401943, 49.339356], [-124.401642, 49.339509], [-124.401091, 49.339312], [-124.399362, 49.339218], [-124.399229, 49.339139], [-124.398795, 49.332462], [-124.39847, 49.332745], [-124.396066, 49.332695], [-124.395751, 49.332635], [-124.388175, 49.333066], [-124.388085, 49.33227], [-124.386619, 49.332293], [-124.38639, 49.332458], [-124.386314, 49.33271], [-124.386165, 49.332776], [-124.385876, 49.332751], [-124.385524, 49.332522], [-124.385317, 49.332461], [-124.38489, 49.332475], [-124.384591, 49.332623], [-124.384325, 49.332897], [-124.3838, 49.33382], [-124.383611, 49.333966], [-124.383212, 49.33398], [-124.382484, 49.333539], [-124.382264, 49.333505], [-124.381962, 49.333555], [-124.381786, 49.333664], [-124.381626, 49.333891], [-124.381537, 49.334611], [-124.38138, 49.334902], [-124.380905, 49.335141], [-124.379591, 49.335463], [-124.379268, 49.335637], [-124.378907, 49.335998], [-124.381675, 49.335996], [-124.38171, 49.335496], [-124.387646, 49.335498], [-124.387964, 49.339916], [-124.387927, 49.340377], [-124.383419, 49.34019], [-124.385477, 49.340586], [-124.387804, 49.340866], [-124.387722, 49.341068], [-124.387284, 49.340879], [-124.387319, 49.342975], [-124.387738, 49.342972], [-124.387753, 49.346891], [-124.384028, 49.34612], [-124.383471, 49.346918], [-124.381314, 49.347251], [-124.381284, 49.349701], [-124.381802, 49.352041], [-124.382551, 49.352094], [-124.382897, 49.352393], [-124.382679, 49.352793], [-124.384373, 49.353079], [-124.384599, 49.354202], [-124.384318, 49.354707], [-124.384259, 49.355064], [-124.381853, 49.358562], [-124.39103, 49.360123], [-124.396033, 49.361385], [-124.400618, 49.361895], [-124.409871, 49.362484], [-124.41587, 49.362621], [-124.421015, 49.362148], [-124.427741, 49.36072], [-124.435513, 49.358807], [-124.44721, 49.35666], [-124.449527, 49.356419], [-124.452976, 49.356523], [-124.454555, 49.356641], [-124.45888, 49.357366], [-124.461023, 49.358201], [-124.463424, 49.359427], [-124.472271, 49.364425], [-124.473057, 49.36393], [-124.475872, 49.363203], [-124.476004, 49.362222], [-124.475942, 49.362013], [-124.475912, 49.360483], [-124.480602, 49.361101]]]]}, "properties": {"name": "Qualicum Beach", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Qualicum Beach", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921023", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.163039, 49.377815], [-124.200277, 49.38264], [-124.253472, 49.38937], [-124.263134, 49.390772], [-124.25087, 49.340078], [-124.246828, 49.322989], [-124.248556, 49.306524], [-124.248425, 49.304567], [-124.248548, 49.304023], [-124.248554, 49.303218], [-124.24841, 49.3031], [-124.248137, 49.303033], [-124.244087, 49.303281], [-124.244106, 49.298657], [-124.244314, 49.298658], [-124.245149, 49.295681], [-124.233743, 49.295717], [-124.234116, 49.293423], [-124.253009, 49.293144], [-124.255274, 49.292994], [-124.255189, 49.292022], [-124.254975, 49.291368], [-124.254414, 49.290401], [-124.253809, 49.289727], [-124.255958, 49.289557], [-124.261302, 49.289571], [-124.261384, 49.2872], [-124.26979, 49.287134], [-124.270107, 49.287057], [-124.271288, 49.286999], [-124.271573, 49.286864], [-124.271721, 49.286684], [-124.271577, 49.283243], [-124.271417, 49.283166], [-124.271268, 49.282925], [-124.271359, 49.282637], [-124.27126, 49.276765], [-124.261865, 49.276732], [-124.261944, 49.273178], [-124.266909, 49.273149], [-124.266507, 49.267729], [-124.263707, 49.267955], [-124.26074, 49.26798], [-124.254646, 49.267849], [-124.251238, 49.265556], [-124.2541, 49.260633], [-124.253878, 49.260053], [-124.24639, 49.259844], [-124.239982, 49.259855], [-124.239687, 49.259929], [-124.239494, 49.260047], [-124.236385, 49.259863], [-124.236278, 49.25282], [-124.234427, 49.252857], [-124.234243, 49.247126], [-124.224962, 49.246972], [-124.225156, 49.238843], [-124.219697, 49.23872], [-124.219829, 49.231353], [-124.226674, 49.231445], [-124.226913, 49.22409], [-124.213125, 49.223677], [-124.212888, 49.233121], [-124.203797, 49.233248], [-124.20348, 49.225073], [-124.201044, 49.225006], [-124.196532, 49.224451], [-124.196593, 49.223007], [-124.196535, 49.218095], [-124.191485, 49.217943], [-124.191464, 49.21367], [-124.184561, 49.21353], [-124.184498, 49.205666], [-124.180803, 49.205794], [-124.177699, 49.200384], [-124.158862, 49.200369], [-124.15843, 49.202967], [-124.127899, 49.202883], [-124.127289, 49.213234], [-124.12176, 49.213069], [-124.121672, 49.221137], [-124.132408, 49.221605], [-124.132315, 49.228515], [-124.135145, 49.228661], [-124.135037, 49.231388], [-124.137237, 49.231538], [-124.136311, 49.24067], [-124.136213, 49.240668], [-124.136956, 49.245166], [-124.138938, 49.245183], [-124.142449, 49.245107], [-124.142437, 49.246017], [-124.147483, 49.246429], [-124.148517, 49.246418], [-124.14876, 49.251845], [-124.146711, 49.25181], [-124.1453, 49.251721], [-124.144714, 49.251627], [-124.143299, 49.251224], [-124.143175, 49.251792], [-124.143342, 49.253836], [-124.143423, 49.258211], [-124.132276, 49.255164], [-124.127073, 49.256259], [-124.122827, 49.256898], [-124.122828, 49.256956], [-124.113557, 49.258497], [-124.056992, 49.268366], [-124.040044, 49.365001], [-124.163039, 49.377815]]]]}, "properties": {"name": "Nanaimo E", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo E", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921030", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.672577, 49.299818], [-124.672293, 49.313278], [-124.683772, 49.313373], [-124.683768, 49.317971], [-124.688947, 49.318066], [-124.688875, 49.321557], [-124.694407, 49.321611], [-124.694537, 49.307315], [-124.689123, 49.307199], [-124.689139, 49.300039], [-124.681761, 49.299894], [-124.682149, 49.284859], [-124.68262, 49.284103], [-124.687379, 49.284301], [-124.68765, 49.27201], [-124.68782, 49.257646], [-124.677198, 49.25764], [-124.677074, 49.249797], [-124.674348, 49.247157], [-124.674238, 49.233893], [-124.657635, 49.234087], [-124.658398, 49.247268], [-124.657306, 49.246518], [-124.656181, 49.245363], [-124.654639, 49.243128], [-124.654069, 49.240729], [-124.654276, 49.238435], [-124.654971, 49.237054], [-124.655946, 49.235685], [-124.653559, 49.231671], [-124.65168, 49.230335], [-124.650709, 49.229142], [-124.650475, 49.227865], [-124.650883, 49.226729], [-124.64808, 49.224549], [-124.644148, 49.22434], [-124.639618, 49.219619], [-124.630636, 49.219509], [-124.632027, 49.221798], [-124.633394, 49.224664], [-124.634102, 49.228041], [-124.634193, 49.231981], [-124.633845, 49.234604], [-124.633446, 49.236226], [-124.642122, 49.241211], [-124.644372, 49.244929], [-124.645361, 49.244977], [-124.646852, 49.248292], [-124.644678, 49.249927], [-124.662218, 49.281429], [-124.65683, 49.284922], [-124.637527, 49.284841], [-124.637419, 49.281293], [-124.645073, 49.281241], [-124.645118, 49.277687], [-124.642927, 49.277569], [-124.643155, 49.272037], [-124.631583, 49.271879], [-124.63149, 49.273822], [-124.620419, 49.273579], [-124.62042, 49.271973], [-124.617358, 49.271805], [-124.617156, 49.267974], [-124.602726, 49.267844], [-124.603079, 49.275465], [-124.604064, 49.275533], [-124.604027, 49.280094], [-124.605456, 49.280215], [-124.605338, 49.284069], [-124.595494, 49.283803], [-124.595244, 49.281292], [-124.58898, 49.281178], [-124.58892, 49.272913], [-124.570046, 49.272705], [-124.570078, 49.262353], [-124.559526, 49.262292], [-124.559254, 49.257015], [-124.521042, 49.256976], [-124.521013, 49.255251], [-124.522869, 49.25517], [-124.522981, 49.252827], [-124.529494, 49.252625], [-124.529371, 49.250106], [-124.531914, 49.250147], [-124.531581, 49.24556], [-124.534076, 49.245547], [-124.534103, 49.241124], [-124.52524, 49.241146], [-124.502297, 49.235078], [-124.501101, 49.234917], [-124.498586, 49.235019], [-124.497128, 49.23474], [-124.496041, 49.234163], [-124.494592, 49.23272], [-124.492861, 49.230745], [-124.481369, 49.230975], [-124.46564, 49.22511], [-124.458851, 49.224154], [-124.45669, 49.223761], [-124.447016, 49.223115], [-124.447632, 49.23167], [-124.447774, 49.23634], [-124.420823, 49.236201], [-124.420597, 49.232683], [-124.389093, 49.232437], [-124.38886, 49.230583], [-124.366333, 49.23041], [-124.326755, 49.230205], [-124.326812, 49.226234], [-124.319414, 49.226045], [-124.319556, 49.21892], [-124.314381, 49.218947], [-124.31422, 49.212865], [-124.307179, 49.212676], [-124.307118, 49.20931], [-124.307212, 49.20858], [-124.28613, 49.208752], [-124.28591, 49.210047], [-124.286084, 49.211725], [-124.291744, 49.211953], [-124.292172, 49.218948], [-124.298107, 49.219129], [-124.298558, 49.222639], [-124.307135, 49.222715], [-124.307159, 49.226344], [-124.245916, 49.226328], [-124.245882, 49.23142], [-124.240261, 49.231351], [-124.24044, 49.241298], [-124.249865, 49.241506], [-124.249942, 49.248853], [-124.242852, 49.248828], [-124.242857, 49.252681], [-124.236278, 49.25282], [-124.236385, 49.259863], [-124.239494, 49.260047], [-124.239687, 49.259929], [-124.239982, 49.259855], [-124.24639, 49.259844], [-124.253878, 49.260053], [-124.2541, 49.260633], [-124.251238, 49.265556], [-124.254646, 49.267849], [-124.26074, 49.26798], [-124.263707, 49.267955], [-124.268836, 49.267595], [-124.269204, 49.270977], [-124.275574, 49.270858], [-124.280022, 49.271528], [-124.280744, 49.271477], [-124.285174, 49.270842], [-124.291951, 49.271141], [-124.292383, 49.271542], [-124.29339, 49.272195], [-124.294045, 49.27249], [-124.294666, 49.272981], [-124.294849, 49.273331], [-124.295095, 49.274336], [-124.295152, 49.275433], [-124.29552, 49.275906], [-124.296063, 49.27615], [-124.296849, 49.276763], [-124.297375, 49.277368], [-124.297556, 49.277492], [-124.297642, 49.277662], [-124.297754, 49.278237], [-124.297544, 49.27859], [-124.297039, 49.27874], [-124.296799, 49.278535], [-124.296521, 49.278412], [-124.296137, 49.278416], [-124.295741, 49.278502], [-124.295564, 49.278621], [-124.295519, 49.278982], [-124.295177, 49.279332], [-124.295644, 49.279504], [-124.298719, 49.280187], [-124.300107, 49.280716], [-124.300497, 49.280986], [-124.300715, 49.281339], [-124.300541, 49.281987], [-124.300766, 49.282354], [-124.301157, 49.282598], [-124.302266, 49.282947], [-124.30314, 49.283486], [-124.303549, 49.28362], [-124.304444, 49.283702], [-124.305132, 49.283509], [-124.305445, 49.283294], [-124.305854, 49.282718], [-124.307417, 49.28188], [-124.307126, 49.285621], [-124.307132, 49.288262], [-124.296222, 49.287535], [-124.296255, 49.290533], [-124.286671, 49.290611], [-124.286688, 49.291523], [-124.279784, 49.291649], [-124.279835, 49.293323], [-124.274679, 49.293366], [-124.274569, 49.296676], [-124.289903, 49.296544], [-124.293894, 49.296558], [-124.294306, 49.296491], [-124.296768, 49.29648], [-124.298347, 49.296399], [-124.299868, 49.296458], [-124.300575, 49.296582], [-124.30162, 49.297024], [-124.301348, 49.301997], [-124.301349, 49.303548], [-124.30147, 49.303664], [-124.301497, 49.305196], [-124.303195, 49.30515], [-124.304166, 49.305212], [-124.305001, 49.30534], [-124.306095, 49.305567], [-124.309958, 49.306557], [-124.31144, 49.306829], [-124.314088, 49.307167], [-124.318902, 49.307433], [-124.318862, 49.30707], [-124.324333, 49.307108], [-124.323476, 49.3093], [-124.324681, 49.309341], [-124.327399, 49.309259], [-124.328123, 49.309189], [-124.336691, 49.31179], [-124.337595, 49.312177], [-124.344889, 49.311718], [-124.346901, 49.31165], [-124.347032, 49.312676], [-124.351846, 49.312515], [-124.351858, 49.312625], [-124.357456, 49.312624], [-124.356916, 49.314383], [-124.379748, 49.314011], [-124.379936, 49.315298], [-124.37967, 49.319294], [-124.379408, 49.319525], [-124.379318, 49.319733], [-124.379357, 49.320137], [-124.379536, 49.320705], [-124.379486, 49.322023], [-124.379376, 49.322423], [-124.376846, 49.322532], [-124.376903, 49.326146], [-124.387745, 49.326452], [-124.388386, 49.317165], [-124.418619, 49.318262], [-124.427316, 49.318169], [-124.428213, 49.318231], [-124.433454, 49.31817], [-124.4336, 49.317396], [-124.448617, 49.317523], [-124.4536, 49.317212], [-124.45329, 49.322103], [-124.453549, 49.322181], [-124.454214, 49.322238], [-124.464546, 49.322309], [-124.472451, 49.322495], [-124.476136, 49.323192], [-124.476223, 49.325682], [-124.476154, 49.3296], [-124.464813, 49.330579], [-124.465122, 49.333941], [-124.484835, 49.333969], [-124.497548, 49.333821], [-124.497931, 49.333933], [-124.498997, 49.334001], [-124.499272, 49.334109], [-124.50102, 49.333995], [-124.528763, 49.333157], [-124.530542, 49.333194], [-124.537007, 49.3262], [-124.540025, 49.325855], [-124.540279, 49.328868], [-124.541047, 49.335305], [-124.541752, 49.34215], [-124.544762, 49.342518], [-124.544365, 49.344091], [-124.552955, 49.34527], [-124.562586, 49.345691], [-124.566032, 49.346264], [-124.566388, 49.34649], [-124.566704, 49.351917], [-124.572045, 49.352801], [-124.572141, 49.350117], [-124.572273, 49.334608], [-124.56852, 49.334234], [-124.567014, 49.334161], [-124.567016, 49.333667], [-124.566543, 49.333219], [-124.566118, 49.332447], [-124.565481, 49.331986], [-124.567097, 49.33018], [-124.567038, 49.326546], [-124.572074, 49.326412], [-124.57221, 49.321813], [-124.572158, 49.31883], [-124.575694, 49.31845], [-124.583212, 49.318338], [-124.583592, 49.311459], [-124.609864, 49.312342], [-124.609529, 49.319515], [-124.614935, 49.319882], [-124.614709, 49.326854], [-124.620096, 49.327059], [-124.620129, 49.335664], [-124.620208, 49.338005], [-124.631137, 49.338077], [-124.631177, 49.339698], [-124.635477, 49.339708], [-124.635747, 49.336124], [-124.638351, 49.336085], [-124.638713, 49.330546], [-124.64989, 49.330497], [-124.650203, 49.325055], [-124.655561, 49.32504], [-124.655666, 49.321437], [-124.661294, 49.321301], [-124.661238, 49.315865], [-124.65589, 49.315478], [-124.656117, 49.301415], [-124.661574, 49.301442], [-124.661643, 49.299687], [-124.672577, 49.299818]]]]}, "properties": {"name": "Nanaimo F", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo F", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921032", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.360493, 49.411263], [-124.372214, 49.414745], [-124.397144, 49.423976], [-124.416773, 49.433602], [-124.430921, 49.441927], [-124.449869, 49.455042], [-124.465367, 49.46978], [-124.517446, 49.469821], [-124.515851, 49.434343], [-124.536265, 49.405493], [-124.535854, 49.381188], [-124.535862, 49.374954], [-124.535765, 49.370773], [-124.535601, 49.369019], [-124.535663, 49.360527], [-124.53557, 49.359018], [-124.530557, 49.359167], [-124.530658, 49.353359], [-124.53096, 49.353088], [-124.535489, 49.350416], [-124.53571, 49.345439], [-124.535961, 49.344464], [-124.541752, 49.34215], [-124.541047, 49.335305], [-124.540279, 49.328868], [-124.540025, 49.325855], [-124.537007, 49.3262], [-124.530542, 49.333194], [-124.528763, 49.333157], [-124.50102, 49.333995], [-124.499272, 49.334109], [-124.498997, 49.334001], [-124.497931, 49.333933], [-124.497548, 49.333821], [-124.484835, 49.333969], [-124.465122, 49.333941], [-124.464813, 49.330579], [-124.476154, 49.3296], [-124.476223, 49.325682], [-124.476136, 49.323192], [-124.472451, 49.322495], [-124.464546, 49.322309], [-124.454214, 49.322238], [-124.453549, 49.322181], [-124.45329, 49.322103], [-124.4536, 49.317212], [-124.448617, 49.317523], [-124.4336, 49.317396], [-124.433454, 49.31817], [-124.428213, 49.318231], [-124.427316, 49.318169], [-124.418619, 49.318262], [-124.388386, 49.317165], [-124.387745, 49.326452], [-124.376903, 49.326146], [-124.376846, 49.322532], [-124.379376, 49.322423], [-124.379486, 49.322023], [-124.379536, 49.320705], [-124.379357, 49.320137], [-124.379318, 49.319733], [-124.379408, 49.319525], [-124.37967, 49.319294], [-124.379936, 49.315298], [-124.379748, 49.314011], [-124.356916, 49.314383], [-124.357456, 49.312624], [-124.351858, 49.312625], [-124.351846, 49.312515], [-124.347032, 49.312676], [-124.346844, 49.317977], [-124.346889, 49.318841], [-124.343377, 49.318974], [-124.34341, 49.321941], [-124.343731, 49.32203], [-124.345613, 49.32217], [-124.348621, 49.325359], [-124.348741, 49.326107], [-124.348619, 49.326511], [-124.346513, 49.326636], [-124.3464, 49.327038], [-124.344947, 49.328261], [-124.346602, 49.329119], [-124.346614, 49.330037], [-124.34758, 49.330569], [-124.348107, 49.330723], [-124.348059, 49.331233], [-124.348662, 49.33129], [-124.34864, 49.33354], [-124.346784, 49.333608], [-124.348401, 49.335213], [-124.348646, 49.335199], [-124.348654, 49.335464], [-124.349094, 49.336364], [-124.348898, 49.337866], [-124.351042, 49.337768], [-124.353359, 49.339814], [-124.34926, 49.341119], [-124.346943, 49.341219], [-124.347092, 49.342357], [-124.344761, 49.34424], [-124.342465, 49.343914], [-124.33867, 49.342539], [-124.3345, 49.340665], [-124.330593, 49.338412], [-124.328024, 49.336655], [-124.324072, 49.333368], [-124.322386, 49.331626], [-124.320398, 49.329258], [-124.31164, 49.327773], [-124.309532, 49.329002], [-124.307354, 49.329566], [-124.304172, 49.330554], [-124.300419, 49.331055], [-124.296066, 49.331466], [-124.29606, 49.330053], [-124.295831, 49.329296], [-124.295116, 49.32865], [-124.293504, 49.327913], [-124.291745, 49.32791], [-124.290982, 49.327662], [-124.29092, 49.326166], [-124.291649, 49.325298], [-124.292373, 49.324878], [-124.292656, 49.324363], [-124.292671, 49.323766], [-124.292411, 49.323219], [-124.291912, 49.32276], [-124.291369, 49.322554], [-124.28957, 49.32242], [-124.288945, 49.322266], [-124.288237, 49.321981], [-124.287335, 49.321254], [-124.285816, 49.31952], [-124.284971, 49.318256], [-124.284881, 49.317438], [-124.285346, 49.31559], [-124.285272, 49.315192], [-124.284958, 49.314787], [-124.286607, 49.314663], [-124.286712, 49.314399], [-124.28781, 49.314364], [-124.287745, 49.308479], [-124.28495, 49.308491], [-124.285012, 49.309391], [-124.28227, 49.309543], [-124.275536, 49.309396], [-124.275525, 49.310765], [-124.275738, 49.311126], [-124.27567, 49.31139], [-124.275549, 49.311517], [-124.275628, 49.31407], [-124.275825, 49.31438], [-124.275308, 49.32236], [-124.275046, 49.328128], [-124.275121, 49.329968], [-124.272157, 49.329015], [-124.26552, 49.32732], [-124.263576, 49.326531], [-124.262196, 49.325462], [-124.261439, 49.324316], [-124.261185, 49.322686], [-124.261385, 49.319318], [-124.261224, 49.31713], [-124.26054, 49.315133], [-124.259037, 49.312626], [-124.25677, 49.310403], [-124.254068, 49.30834], [-124.251679, 49.307057], [-124.248556, 49.306524], [-124.246828, 49.322989], [-124.25087, 49.340078], [-124.263134, 49.390772], [-124.292744, 49.39503], [-124.314311, 49.399036], [-124.340941, 49.40532], [-124.360493, 49.411263]], [[-124.481551, 49.361381], [-124.480602, 49.361101], [-124.475912, 49.360483], [-124.475942, 49.362013], [-124.476004, 49.362222], [-124.475872, 49.363203], [-124.473057, 49.36393], [-124.472271, 49.364425], [-124.463424, 49.359427], [-124.461023, 49.358201], [-124.45888, 49.357366], [-124.454555, 49.356641], [-124.452976, 49.356523], [-124.449527, 49.356419], [-124.44721, 49.35666], [-124.435513, 49.358807], [-124.427741, 49.36072], [-124.421015, 49.362148], [-124.41587, 49.362621], [-124.409871, 49.362484], [-124.400618, 49.361895], [-124.396033, 49.361385], [-124.39103, 49.360123], [-124.381853, 49.358562], [-124.384259, 49.355064], [-124.384318, 49.354707], [-124.384599, 49.354202], [-124.384373, 49.353079], [-124.382679, 49.352793], [-124.382897, 49.352393], [-124.382551, 49.352094], [-124.381802, 49.352041], [-124.381284, 49.349701], [-124.381314, 49.347251], [-124.383471, 49.346918], [-124.384028, 49.34612], [-124.387753, 49.346891], [-124.387738, 49.342972], [-124.387319, 49.342975], [-124.387284, 49.340879], [-124.387722, 49.341068], [-124.387804, 49.340866], [-124.385477, 49.340586], [-124.383419, 49.34019], [-124.387927, 49.340377], [-124.387964, 49.339916], [-124.387646, 49.335498], [-124.38171, 49.335496], [-124.381675, 49.335996], [-124.378907, 49.335998], [-124.379268, 49.335637], [-124.379591, 49.335463], [-124.380905, 49.335141], [-124.38138, 49.334902], [-124.381537, 49.334611], [-124.381626, 49.333891], [-124.381786, 49.333664], [-124.381962, 49.333555], [-124.382264, 49.333505], [-124.382484, 49.333539], [-124.383212, 49.33398], [-124.383611, 49.333966], [-124.3838, 49.33382], [-124.384325, 49.332897], [-124.384591, 49.332623], [-124.38489, 49.332475], [-124.385317, 49.332461], [-124.385524, 49.332522], [-124.385876, 49.332751], [-124.386165, 49.332776], [-124.386314, 49.33271], [-124.38639, 49.332458], [-124.386619, 49.332293], [-124.388085, 49.33227], [-124.388175, 49.333066], [-124.395751, 49.332635], [-124.396066, 49.332695], [-124.39847, 49.332745], [-124.398795, 49.332462], [-124.399229, 49.339139], [-124.399362, 49.339218], [-124.401091, 49.339312], [-124.401642, 49.339509], [-124.401943, 49.339356], [-124.404708, 49.339312], [-124.405838, 49.33936], [-124.41002, 49.339344], [-124.410051, 49.335538], [-124.414497, 49.335549], [-124.414384, 49.333875], [-124.410003, 49.333688], [-124.409952, 49.325915], [-124.417859, 49.32517], [-124.426454, 49.325985], [-124.439821, 49.326017], [-124.439849, 49.326261], [-124.439522, 49.326247], [-124.439824, 49.327454], [-124.440254, 49.327487], [-124.44441, 49.337513], [-124.44316, 49.339276], [-124.450879, 49.339393], [-124.451912, 49.339553], [-124.452599, 49.339803], [-124.454568, 49.340835], [-124.455401, 49.341099], [-124.456178, 49.341229], [-124.464773, 49.341257], [-124.466438, 49.341314], [-124.472655, 49.341267], [-124.473417, 49.341312], [-124.473991, 49.341416], [-124.47505, 49.341838], [-124.475499, 49.342115], [-124.47604, 49.342735], [-124.476265, 49.34338], [-124.476305, 49.345257], [-124.482439, 49.345322], [-124.482145, 49.350408], [-124.482213, 49.350862], [-124.482963, 49.351292], [-124.483042, 49.351599], [-124.477509, 49.352894], [-124.477569, 49.353392], [-124.478543, 49.355691], [-124.483607, 49.356004], [-124.484214, 49.356005], [-124.486856, 49.355806], [-124.486854, 49.359133], [-124.483426, 49.359157], [-124.481539, 49.359231], [-124.481551, 49.361381]]], [[[-124.287753, 49.306862], [-124.291654, 49.306886], [-124.292148, 49.308602], [-124.299936, 49.308752], [-124.299856, 49.313911], [-124.305335, 49.313854], [-124.30533, 49.314337], [-124.306112, 49.314327], [-124.307098, 49.314883], [-124.307029, 49.309359], [-124.307085, 49.308953], [-124.301872, 49.308959], [-124.301681, 49.308931], [-124.30154, 49.308769], [-124.30147, 49.303664], [-124.301349, 49.303548], [-124.301348, 49.301997], [-124.30162, 49.297024], [-124.300575, 49.296582], [-124.299868, 49.296458], [-124.299059, 49.296402], [-124.296768, 49.29648], [-124.294306, 49.296491], [-124.293894, 49.296558], [-124.289903, 49.296544], [-124.274569, 49.296676], [-124.274679, 49.293366], [-124.279835, 49.293323], [-124.279784, 49.291649], [-124.286688, 49.291523], [-124.286671, 49.290611], [-124.296255, 49.290533], [-124.296222, 49.287535], [-124.307132, 49.288262], [-124.307126, 49.285621], [-124.307417, 49.28188], [-124.305854, 49.282718], [-124.305445, 49.283294], [-124.305132, 49.283509], [-124.304444, 49.283702], [-124.303549, 49.28362], [-124.30314, 49.283486], [-124.302266, 49.282947], [-124.301157, 49.282598], [-124.300766, 49.282354], [-124.300541, 49.281987], [-124.300715, 49.281339], [-124.300497, 49.280986], [-124.300107, 49.280716], [-124.298719, 49.280187], [-124.295644, 49.279504], [-124.295177, 49.279332], [-124.295519, 49.278982], [-124.295564, 49.278621], [-124.295741, 49.278502], [-124.296137, 49.278416], [-124.296521, 49.278412], [-124.296799, 49.278535], [-124.297039, 49.27874], [-124.297544, 49.27859], [-124.297754, 49.278237], [-124.297642, 49.277662], [-124.297556, 49.277492], [-124.297375, 49.277368], [-124.296849, 49.276763], [-124.296063, 49.27615], [-124.29552, 49.275906], [-124.295152, 49.275433], [-124.295095, 49.274336], [-124.294849, 49.273331], [-124.294666, 49.272981], [-124.294045, 49.27249], [-124.29339, 49.272195], [-124.292383, 49.271542], [-124.291951, 49.271141], [-124.285174, 49.270842], [-124.280744, 49.271477], [-124.280022, 49.271528], [-124.275574, 49.270858], [-124.269204, 49.270977], [-124.268836, 49.267595], [-124.266507, 49.267729], [-124.266909, 49.273149], [-124.261944, 49.273178], [-124.261865, 49.276732], [-124.27126, 49.276765], [-124.271359, 49.282637], [-124.271268, 49.282925], [-124.271417, 49.283166], [-124.271577, 49.283243], [-124.271721, 49.286684], [-124.271573, 49.286864], [-124.271288, 49.286999], [-124.270107, 49.287057], [-124.26979, 49.287134], [-124.261384, 49.2872], [-124.261302, 49.289571], [-124.255958, 49.289557], [-124.253809, 49.289727], [-124.254414, 49.290401], [-124.254975, 49.291368], [-124.255189, 49.292022], [-124.255274, 49.292994], [-124.253009, 49.293144], [-124.234116, 49.293423], [-124.233743, 49.295717], [-124.245149, 49.295681], [-124.244314, 49.298658], [-124.253119, 49.298664], [-124.254133, 49.298741], [-124.255496, 49.2987], [-124.26431, 49.298734], [-124.265512, 49.298651], [-124.266341, 49.297831], [-124.267274, 49.297929], [-124.26726, 49.298011], [-124.266731, 49.298532], [-124.266497, 49.298924], [-124.267252, 49.299362], [-124.268423, 49.299734], [-124.269577, 49.299965], [-124.270852, 49.300037], [-124.272754, 49.299973], [-124.273909, 49.300235], [-124.274765, 49.300576], [-124.276209, 49.30136], [-124.278308, 49.302201], [-124.281531, 49.304042], [-124.2822, 49.304569], [-124.283036, 49.305513], [-124.283514, 49.306214], [-124.283864, 49.306948], [-124.283979, 49.307504], [-124.284291, 49.306942], [-124.287753, 49.306862]]]]}, "properties": {"name": "Nanaimo G", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo G", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921034", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.925579, 49.430352], [-124.93938, 49.430411], [-124.946683, 49.43131], [-124.948465, 49.433345], [-124.968132, 49.433387], [-124.968159, 49.431451], [-124.967995, 49.428485], [-124.96588, 49.426718], [-124.959639, 49.427587], [-124.953396, 49.427179], [-124.947383, 49.420656], [-124.942074, 49.419715], [-124.941102, 49.416059], [-124.929547, 49.409597], [-124.927669, 49.40427], [-124.929471, 49.401222], [-124.924164, 49.399003], [-124.923223, 49.394423], [-124.915989, 49.392558], [-124.909586, 49.389093], [-124.90867, 49.388896], [-124.903843, 49.389328], [-124.900546, 49.387161], [-124.899919, 49.379538], [-124.872715, 49.377827], [-124.869382, 49.37362], [-124.869408, 49.367745], [-124.863542, 49.359392], [-124.854287, 49.356821], [-124.844316, 49.351829], [-124.83753, 49.350226], [-124.834857, 49.346817], [-124.831612, 49.346611], [-124.82777, 49.344868], [-124.825939, 49.340618], [-124.822078, 49.339654], [-124.821422, 49.334695], [-124.815868, 49.333947], [-124.814919, 49.330255], [-124.810069, 49.33026], [-124.80933, 49.327949], [-124.801673, 49.32718], [-124.800591, 49.322124], [-124.794808, 49.322157], [-124.794619, 49.325438], [-124.783892, 49.325456], [-124.783729, 49.316451], [-124.774069, 49.316429], [-124.774307, 49.308591], [-124.774284, 49.298687], [-124.771816, 49.298311], [-124.771429, 49.296224], [-124.771953, 49.296168], [-124.771593, 49.29239], [-124.770869, 49.292301], [-124.770702, 49.290449], [-124.765044, 49.290425], [-124.764952, 49.29388], [-124.759121, 49.294036], [-124.759144, 49.300986], [-124.753225, 49.300957], [-124.753345, 49.28971], [-124.747263, 49.289698], [-124.747493, 49.275513], [-124.742229, 49.275609], [-124.742233, 49.275128], [-124.724282, 49.275112], [-124.715016, 49.275161], [-124.714734, 49.278823], [-124.709756, 49.278835], [-124.709755, 49.278885], [-124.709295, 49.278806], [-124.705454, 49.278851], [-124.705292, 49.282174], [-124.698355, 49.28217], [-124.69844, 49.275016], [-124.693083, 49.274822], [-124.693089, 49.267945], [-124.687718, 49.267807], [-124.687379, 49.284301], [-124.68262, 49.284103], [-124.682149, 49.284859], [-124.681761, 49.299894], [-124.689139, 49.300039], [-124.689123, 49.307199], [-124.694537, 49.307315], [-124.694407, 49.321611], [-124.688875, 49.321557], [-124.688947, 49.318066], [-124.683768, 49.317971], [-124.683772, 49.313373], [-124.672293, 49.313278], [-124.672577, 49.299818], [-124.661643, 49.299687], [-124.661574, 49.301442], [-124.656117, 49.301415], [-124.65589, 49.315478], [-124.661238, 49.315865], [-124.661294, 49.321301], [-124.655666, 49.321437], [-124.655561, 49.32504], [-124.650203, 49.325055], [-124.64989, 49.330497], [-124.638713, 49.330546], [-124.638351, 49.336085], [-124.635747, 49.336124], [-124.635477, 49.339708], [-124.631177, 49.339698], [-124.631137, 49.338077], [-124.620208, 49.338005], [-124.620129, 49.335664], [-124.620096, 49.327059], [-124.614709, 49.326854], [-124.614935, 49.319882], [-124.609529, 49.319515], [-124.609864, 49.312342], [-124.583592, 49.311459], [-124.583212, 49.318338], [-124.575694, 49.31845], [-124.572158, 49.31883], [-124.57221, 49.321813], [-124.572074, 49.326412], [-124.567038, 49.326546], [-124.567097, 49.33018], [-124.565481, 49.331986], [-124.566118, 49.332447], [-124.566543, 49.333219], [-124.567016, 49.333667], [-124.567014, 49.334161], [-124.56852, 49.334234], [-124.572273, 49.334608], [-124.572141, 49.350117], [-124.572045, 49.352801], [-124.566704, 49.351917], [-124.566388, 49.34649], [-124.566032, 49.346264], [-124.562586, 49.345691], [-124.552955, 49.34527], [-124.544365, 49.344091], [-124.544762, 49.342518], [-124.541766, 49.342149], [-124.535961, 49.344464], [-124.53571, 49.345439], [-124.535489, 49.350416], [-124.53096, 49.353088], [-124.530658, 49.353359], [-124.530557, 49.359167], [-124.53557, 49.359018], [-124.535663, 49.360527], [-124.535601, 49.369019], [-124.535765, 49.370773], [-124.535862, 49.374954], [-124.535854, 49.381188], [-124.536265, 49.405493], [-124.515851, 49.434343], [-124.517446, 49.469821], [-124.579977, 49.470068], [-124.670671, 49.470264], [-124.694214, 49.470258], [-124.707542, 49.47012], [-124.756308, 49.47025], [-124.756635, 49.464816], [-124.756655, 49.4547], [-124.756896, 49.447258], [-124.756756, 49.440624], [-124.753809, 49.440632], [-124.733454, 49.439579], [-124.733473, 49.427081], [-124.733806, 49.421601], [-124.73381, 49.414556], [-124.733573, 49.404744], [-124.759911, 49.404861], [-124.823141, 49.404898], [-124.823246, 49.419431], [-124.85656, 49.419623], [-124.856735, 49.42582], [-124.859292, 49.425912], [-124.859345, 49.433087], [-124.88677, 49.432712], [-124.903351, 49.432403], [-124.905658, 49.431879], [-124.907244, 49.43114], [-124.910378, 49.429255], [-124.912385, 49.427954], [-124.925579, 49.430352]], [[-124.616079, 49.394411], [-124.617452, 49.39427], [-124.620316, 49.394347], [-124.620444, 49.396576], [-124.620062, 49.401887], [-124.619866, 49.402834], [-124.618902, 49.402541], [-124.618193, 49.40239], [-124.617461, 49.402345], [-124.61717, 49.402268], [-124.616495, 49.402278], [-124.615688, 49.402109], [-124.614901, 49.402039], [-124.612615, 49.401658], [-124.61202, 49.401612], [-124.61138, 49.401405], [-124.611336, 49.401316], [-124.610757, 49.400937], [-124.610496, 49.400527], [-124.610502, 49.40031], [-124.610701, 49.400074], [-124.610752, 49.399453], [-124.610432, 49.39853], [-124.611248, 49.398241], [-124.611736, 49.397955], [-124.611943, 49.397918], [-124.611648, 49.39757], [-124.610996, 49.39765], [-124.610272, 49.397849], [-124.609957, 49.39797], [-124.609269, 49.398376], [-124.608749, 49.398546], [-124.606547, 49.398188], [-124.606282, 49.398094], [-124.606012, 49.397872], [-124.604539, 49.395365], [-124.603381, 49.3942], [-124.605861, 49.394239], [-124.608082, 49.394187], [-124.616079, 49.394411]]]]}, "properties": {"name": "Nanaimo H", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo H", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921036", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.927399, 49.15539], [-123.930371, 49.155281], [-123.930529, 49.153439], [-123.93074, 49.148149], [-123.930917, 49.146847], [-123.927229, 49.146297], [-123.927299, 49.146422], [-123.927205, 49.146567], [-123.927, 49.146533], [-123.926805, 49.146399], [-123.926586, 49.14649], [-123.926494, 49.146636], [-123.926913, 49.147064], [-123.927406, 49.14706], [-123.927503, 49.147104], [-123.927515, 49.14769], [-123.92728, 49.148312], [-123.927234, 49.148825], [-123.927461, 49.149947], [-123.927685, 49.150233], [-123.927936, 49.150384], [-123.928106, 49.150643], [-123.92831, 49.151326], [-123.928315, 49.151613], [-123.928255, 49.1521], [-123.928073, 49.152632], [-123.9281, 49.153342], [-123.928292, 49.154016], [-123.928299, 49.154456], [-123.928248, 49.154654], [-123.927942, 49.155125], [-123.92786, 49.155179], [-123.92757, 49.15511], [-123.927399, 49.15539]]]]}, "properties": {"name": "Nanaimo Town 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo Town 1", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921804", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.122017, 49.254202], [-124.122827, 49.256898], [-124.127073, 49.256259], [-124.132276, 49.255164], [-124.132055, 49.252464], [-124.131912, 49.251642], [-124.131815, 49.251515], [-124.13169, 49.248911], [-124.112935, 49.248816], [-124.112638, 49.252172], [-124.112621, 49.253012], [-124.1128, 49.253672], [-124.115219, 49.252996], [-124.117223, 49.252704], [-124.119471, 49.252763], [-124.120808, 49.252613], [-124.122361, 49.252586], [-124.12286, 49.252451], [-124.122017, 49.254202]]]]}, "properties": {"name": "Nanoose", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanoose", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921805", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.610432, 49.398576], [-124.610752, 49.399453], [-124.610701, 49.400074], [-124.610502, 49.40031], [-124.610496, 49.400527], [-124.610757, 49.400937], [-124.611336, 49.401316], [-124.61138, 49.401405], [-124.61202, 49.401612], [-124.612615, 49.401658], [-124.614901, 49.402039], [-124.615688, 49.402109], [-124.616495, 49.402278], [-124.61717, 49.402268], [-124.617461, 49.402345], [-124.618193, 49.40239], [-124.618902, 49.402541], [-124.619866, 49.402834], [-124.620062, 49.401887], [-124.620444, 49.396576], [-124.620316, 49.394347], [-124.617452, 49.39427], [-124.616079, 49.394411], [-124.608082, 49.394187], [-124.605861, 49.394239], [-124.603381, 49.3942], [-124.604539, 49.395365], [-124.605256, 49.39666], [-124.606169, 49.398031], [-124.606547, 49.398188], [-124.608749, 49.398546], [-124.609269, 49.398376], [-124.609957, 49.39797], [-124.610272, 49.397849], [-124.610996, 49.39765], [-124.611648, 49.39757], [-124.611943, 49.397918], [-124.611736, 49.397955], [-124.611248, 49.398241], [-124.610716, 49.3984], [-124.610432, 49.398576]]]]}, "properties": {"name": "Qualicum", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Qualicum", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921806", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.893574, 49.132916], [-123.893608, 49.132574], [-123.894052, 49.132579], [-123.894016, 49.13216], [-123.893808, 49.131818], [-123.892446, 49.130252], [-123.889971, 49.128746], [-123.888844, 49.127788], [-123.888437, 49.127361], [-123.887375, 49.125958], [-123.886156, 49.124169], [-123.885672, 49.123106], [-123.877989, 49.122948], [-123.877897, 49.119595], [-123.871859, 49.1195], [-123.864201, 49.11917], [-123.864052, 49.119378], [-123.864042, 49.119591], [-123.864189, 49.120274], [-123.864276, 49.122705], [-123.864193, 49.123614], [-123.86423, 49.124892], [-123.864055, 49.125566], [-123.863663, 49.126502], [-123.863739, 49.126749], [-123.878116, 49.126502], [-123.878559, 49.133398], [-123.893574, 49.132916]]], [[[-123.888707, 49.126873], [-123.888968, 49.125431], [-123.890587, 49.125552], [-123.890776, 49.124396], [-123.889222, 49.124252], [-123.889314, 49.123828], [-123.889303, 49.119581], [-123.889414, 49.119293], [-123.88919, 49.114707], [-123.881456, 49.113769], [-123.879639, 49.113731], [-123.879355, 49.113796], [-123.879203, 49.114079], [-123.880244, 49.114823], [-123.880637, 49.115259], [-123.880503, 49.116158], [-123.879941, 49.11736], [-123.879487, 49.11805], [-123.879322, 49.118892], [-123.879536, 49.119242], [-123.880125, 49.119453], [-123.881795, 49.119526], [-123.882546, 49.119663], [-123.884361, 49.120547], [-123.884956, 49.120967], [-123.88587, 49.122059], [-123.887345, 49.124841], [-123.888707, 49.126873]]]]}, "properties": {"name": "Nanaimo River", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nanaimo River", "economic_region_id": "5910", "census_division_code": "5921", "census_subdivision_code": "5921807", "regional_district_aka_census_division": "Nanaimo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.839385, 49.273355], [-124.839406, 49.273772], [-124.850324, 49.273709], [-124.850353, 49.269196], [-124.853119, 49.269248], [-124.852801, 49.267951], [-124.852423, 49.267401], [-124.851854, 49.267313], [-124.850845, 49.267389], [-124.850404, 49.267655], [-124.850174, 49.268059], [-124.849622, 49.268068], [-124.84781, 49.267383], [-124.847146, 49.267256], [-124.84651, 49.26699], [-124.841238, 49.264448], [-124.839796, 49.263647], [-124.837673, 49.262823], [-124.835312, 49.262022], [-124.83251, 49.261252], [-124.83161, 49.261063], [-124.830983, 49.260435], [-124.834044, 49.255916], [-124.831386, 49.255312], [-124.830922, 49.25539], [-124.830169, 49.255105], [-124.829204, 49.255122], [-124.828624, 49.254952], [-124.828398, 49.255019], [-124.828006, 49.254795], [-124.828185, 49.254617], [-124.827761, 49.254319], [-124.827078, 49.254402], [-124.826613, 49.254049], [-124.826724, 49.253685], [-124.825742, 49.25389], [-124.825075, 49.253729], [-124.824922, 49.253641], [-124.824932, 49.253524], [-124.825298, 49.25341], [-124.825488, 49.253169], [-124.826194, 49.253131], [-124.82629, 49.253074], [-124.826245, 49.252928], [-124.826381, 49.252843], [-124.826644, 49.252835], [-124.8273, 49.252536], [-124.82792, 49.252419], [-124.828537, 49.252203], [-124.828823, 49.25193], [-124.822129, 49.250221], [-124.819407, 49.249394], [-124.822233, 49.247066], [-124.820719, 49.244391], [-124.816968, 49.242309], [-124.819162, 49.238101], [-124.819279, 49.23413], [-124.816393, 49.231208], [-124.816457, 49.231188], [-124.815423, 49.23031], [-124.815631, 49.227691], [-124.817247, 49.226423], [-124.817828, 49.225035], [-124.816604, 49.223401], [-124.816266, 49.222358], [-124.816748, 49.221355], [-124.819245, 49.219657], [-124.819513, 49.218279], [-124.8154, 49.218254], [-124.811356, 49.218363], [-124.804804, 49.218269], [-124.805116, 49.213674], [-124.805125, 49.210933], [-124.799281, 49.210813], [-124.793064, 49.210869], [-124.793113, 49.215355], [-124.790788, 49.215238], [-124.783465, 49.215435], [-124.783416, 49.230426], [-124.78287, 49.234287], [-124.780602, 49.234339], [-124.780608, 49.234989], [-124.782792, 49.234978], [-124.783032, 49.236148], [-124.783116, 49.238267], [-124.780721, 49.237933], [-124.77938, 49.237853], [-124.776385, 49.237809], [-124.772216, 49.237821], [-124.772241, 49.238125], [-124.762221, 49.238251], [-124.761895, 49.24037], [-124.761479, 49.242173], [-124.761301, 49.245718], [-124.766062, 49.245527], [-124.768658, 49.245672], [-124.772575, 49.245695], [-124.780653, 49.245363], [-124.780721, 49.248886], [-124.78097, 49.250458], [-124.781307, 49.250436], [-124.781105, 49.250801], [-124.780564, 49.251368], [-124.780033, 49.252137], [-124.778809, 49.254212], [-124.777657, 49.255719], [-124.77627, 49.257191], [-124.773791, 49.259203], [-124.774792, 49.259746], [-124.775183, 49.25938], [-124.77487, 49.259235], [-124.775165, 49.258952], [-124.775492, 49.259103], [-124.77565, 49.258943], [-124.77529, 49.258773], [-124.775971, 49.258159], [-124.77657, 49.258153], [-124.777559, 49.260348], [-124.777079, 49.265413], [-124.777386, 49.265323], [-124.778482, 49.259777], [-124.777874, 49.258926], [-124.783606, 49.258419], [-124.783753, 49.259415], [-124.783615, 49.259424], [-124.783462, 49.260617], [-124.782882, 49.26289], [-124.782827, 49.263784], [-124.782998, 49.264862], [-124.782907, 49.266132], [-124.780862, 49.266072], [-124.780867, 49.267262], [-124.780764, 49.267428], [-124.779128, 49.26879], [-124.779072, 49.269001], [-124.782972, 49.268453], [-124.782901, 49.270681], [-124.786082, 49.270922], [-124.785991, 49.272322], [-124.786339, 49.273397], [-124.792725, 49.274325], [-124.794097, 49.27436], [-124.797121, 49.274215], [-124.79995, 49.274455], [-124.79984, 49.272863], [-124.800922, 49.272799], [-124.801022, 49.272522], [-124.801584, 49.271721], [-124.801726, 49.271089], [-124.801694, 49.270936], [-124.801393, 49.270599], [-124.801086, 49.270092], [-124.800986, 49.269604], [-124.802132, 49.269539], [-124.802476, 49.269458], [-124.812962, 49.269337], [-124.81345, 49.269293], [-124.81374, 49.269143], [-124.813918, 49.269248], [-124.814216, 49.269317], [-124.814913, 49.26934], [-124.814893, 49.270654], [-124.817125, 49.270598], [-124.817178, 49.272111], [-124.819815, 49.272098], [-124.820019, 49.275235], [-124.82267, 49.275124], [-124.82267, 49.273648], [-124.825686, 49.273636], [-124.825601, 49.269465], [-124.822669, 49.2694], [-124.822643, 49.266732], [-124.822704, 49.265237], [-124.822774, 49.265087], [-124.822614, 49.260175], [-124.823298, 49.260306], [-124.823711, 49.260309], [-124.82544, 49.26057], [-124.826389, 49.260635], [-124.828526, 49.260999], [-124.82845, 49.261201], [-124.828185, 49.268422], [-124.828336, 49.269457], [-124.826928, 49.269494], [-124.828446, 49.270791], [-124.828171, 49.270754], [-124.828221, 49.273225], [-124.829785, 49.273214], [-124.829754, 49.272666], [-124.830368, 49.272643], [-124.831027, 49.273204], [-124.837807, 49.273205], [-124.839385, 49.273355]]]]}, "properties": {"name": "Port Alberni", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Port Alberni", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923008", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.586802, 48.963087], [-125.586939, 48.963176], [-125.588743, 48.96318], [-125.589274, 48.963138], [-125.589687, 48.963173], [-125.589842, 48.96325], [-125.590016, 48.963454], [-125.590282, 48.963582], [-125.591431, 48.962395], [-125.591167, 48.962186], [-125.590877, 48.962061], [-125.589915, 48.961797], [-125.595018, 48.958783], [-125.596278, 48.955525], [-125.595528, 48.955341], [-125.59396, 48.954467], [-125.59177, 48.952174], [-125.590661, 48.949194], [-125.589042, 48.94834], [-125.588327, 48.947047], [-125.586291, 48.945367], [-125.581682, 48.944501], [-125.578469, 48.943456], [-125.575325, 48.941621], [-125.573615, 48.939994], [-125.571183, 48.938557], [-125.568332, 48.93764], [-125.567203, 48.936866], [-125.565492, 48.936361], [-125.564038, 48.936519], [-125.559281, 48.935755], [-125.557397, 48.933279], [-125.556251, 48.932826], [-125.552313, 48.92885], [-125.549652, 48.928674], [-125.545945, 48.93106], [-125.546116, 48.927036], [-125.545712, 48.923773], [-125.545324, 48.921404], [-125.543396, 48.919764], [-125.538903, 48.919334], [-125.53502, 48.921716], [-125.531362, 48.921638], [-125.527222, 48.921759], [-125.52371, 48.921305], [-125.521298, 48.923249], [-125.521931, 48.925776], [-125.523133, 48.92766], [-125.525152, 48.931128], [-125.526876, 48.932553], [-125.529262, 48.933816], [-125.53084, 48.935025], [-125.533912, 48.936521], [-125.535145, 48.938028], [-125.536331, 48.939264], [-125.538125, 48.940558], [-125.542011, 48.943801], [-125.543414, 48.944346], [-125.543902, 48.944217], [-125.544631, 48.944241], [-125.545674, 48.944603], [-125.546229, 48.944923], [-125.546706, 48.945562], [-125.546711, 48.945893], [-125.546561, 48.946211], [-125.546587, 48.946493], [-125.547258, 48.946992], [-125.550138, 48.948101], [-125.55216, 48.948755], [-125.55542, 48.950072], [-125.56276, 48.953749], [-125.563166, 48.956016], [-125.564136, 48.957213], [-125.565484, 48.958533], [-125.568468, 48.959716], [-125.573768, 48.961084], [-125.579256, 48.962782], [-125.580848, 48.963605], [-125.582769, 48.964031], [-125.584393, 48.963585], [-125.585488, 48.963073], [-125.586802, 48.963087]]]]}, "properties": {"name": "Ucluelet", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Ucluelet", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923019", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.884697, 49.14154], [-125.885049, 49.143035], [-125.887155, 49.14745], [-125.88702, 49.14873], [-125.874755, 49.154226], [-125.876123, 49.155754], [-125.876768, 49.156697], [-125.877096, 49.157809], [-125.877218, 49.158691], [-125.877646, 49.159542], [-125.878243, 49.160284], [-125.880345, 49.161771], [-125.886278, 49.163695], [-125.895951, 49.16673], [-125.924347, 49.155432], [-125.925204, 49.154686], [-125.925973, 49.153455], [-125.925991, 49.151558], [-125.925084, 49.149446], [-125.921585, 49.145399], [-125.915911, 49.139497], [-125.914557, 49.137877], [-125.912687, 49.136591], [-125.91019, 49.136417], [-125.910729, 49.134526], [-125.910519, 49.132593], [-125.90788, 49.13214], [-125.905234, 49.132357], [-125.904195, 49.131352], [-125.903999, 49.129615], [-125.907485, 49.125144], [-125.907651, 49.122967], [-125.905307, 49.121499], [-125.899338, 49.120859], [-125.897321, 49.119528], [-125.895805, 49.116613], [-125.894111, 49.113107], [-125.891343, 49.109819], [-125.887503, 49.110071], [-125.884477, 49.109535], [-125.882665, 49.107528], [-125.882113, 49.106355], [-125.878321, 49.106321], [-125.877146, 49.105919], [-125.876368, 49.104833], [-125.875369, 49.101587], [-125.875375, 49.098218], [-125.874273, 49.098208], [-125.858971, 49.097424], [-125.858944, 49.095518], [-125.855441, 49.095475], [-125.855435, 49.093919], [-125.850108, 49.093758], [-125.848367, 49.093778], [-125.848252, 49.096592], [-125.848924, 49.097305], [-125.850317, 49.097644], [-125.851817, 49.098416], [-125.851501, 49.100308], [-125.852109, 49.10234], [-125.853924, 49.103792], [-125.857577, 49.105236], [-125.858763, 49.106451], [-125.859633, 49.107824], [-125.858628, 49.109711], [-125.860289, 49.112152], [-125.85975, 49.113157], [-125.857256, 49.114708], [-125.852032, 49.114865], [-125.850426, 49.116281], [-125.848507, 49.118151], [-125.848795, 49.119633], [-125.850581, 49.120866], [-125.85342, 49.12468], [-125.858791, 49.125313], [-125.862695, 49.125986], [-125.865529, 49.125009], [-125.871699, 49.123727], [-125.874559, 49.123674], [-125.876783, 49.122468], [-125.876919, 49.121075], [-125.875093, 49.119106], [-125.874347, 49.11665], [-125.876216, 49.116051], [-125.879329, 49.119426], [-125.882494, 49.120853], [-125.883393, 49.122165], [-125.881874, 49.124081], [-125.882461, 49.13157], [-125.885625, 49.132711], [-125.885976, 49.133705], [-125.884937, 49.136608], [-125.884697, 49.14154]], [[-125.899043, 49.128793], [-125.898957, 49.130175], [-125.90158, 49.130157], [-125.902241, 49.131234], [-125.902949, 49.132034], [-125.894574, 49.132041], [-125.895675, 49.131105], [-125.895935, 49.130709], [-125.895841, 49.130248], [-125.895276, 49.129452], [-125.896022, 49.129442], [-125.895994, 49.128787], [-125.899043, 49.128793]]]]}, "properties": {"name": "Tofino", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tofino", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923025", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.968123, 49.431179], [-124.968132, 49.433412], [-124.971052, 49.433534], [-124.972141, 49.433516], [-124.981335, 49.433708], [-124.982134, 49.425604], [-125.000139, 49.423994], [-125.000245, 49.403387], [-125.005215, 49.403201], [-125.005218, 49.390869], [-125.00542, 49.385197], [-125.004708, 49.384809], [-125.003481, 49.38434], [-125.001182, 49.383774], [-125.000618, 49.383701], [-124.999839, 49.383719], [-124.999286, 49.383909], [-124.997476, 49.384805], [-124.996383, 49.385605], [-124.996159, 49.385698], [-124.995857, 49.385662], [-124.994919, 49.385349], [-124.99414, 49.385212], [-124.9913, 49.385107], [-124.987374, 49.384681], [-124.986449, 49.384218], [-124.985891, 49.383688], [-124.985691, 49.38325], [-124.985711, 49.382969], [-124.98611, 49.382271], [-124.986497, 49.382045], [-124.988166, 49.380502], [-124.990187, 49.379252], [-124.991849, 49.377954], [-124.992393, 49.377244], [-124.992692, 49.375718], [-124.992706, 49.373626], [-124.992897, 49.372377], [-124.992379, 49.37183], [-124.991389, 49.371356], [-124.990011, 49.37101], [-124.988334, 49.370731], [-124.987581, 49.370339], [-124.987064, 49.370168], [-124.986628, 49.37009], [-124.98574, 49.370127], [-124.98487, 49.370066], [-124.983655, 49.369789], [-124.982798, 49.369682], [-124.981738, 49.369383], [-124.980462, 49.369306], [-124.979549, 49.369067], [-124.979239, 49.368774], [-124.979184, 49.368377], [-124.979333, 49.367642], [-124.979645, 49.367237], [-124.980465, 49.366717], [-124.98109, 49.366106], [-124.981258, 49.365735], [-124.981675, 49.362708], [-124.981349, 49.36229], [-124.980772, 49.362037], [-124.979486, 49.361901], [-124.978125, 49.362201], [-124.977839, 49.362144], [-124.976645, 49.363382], [-124.976232, 49.364054], [-124.975165, 49.364913], [-124.974011, 49.36547], [-124.97223, 49.366158], [-124.971117, 49.366273], [-124.970512, 49.366129], [-124.970101, 49.365827], [-124.969039, 49.364431], [-124.965024, 49.361767], [-124.964383, 49.361503], [-124.963673, 49.361311], [-124.962535, 49.36116], [-124.961684, 49.361177], [-124.960858, 49.361371], [-124.959867, 49.361718], [-124.957662, 49.361861], [-124.955735, 49.361799], [-124.954745, 49.361572], [-124.953177, 49.3615], [-124.952083, 49.361287], [-124.951143, 49.360993], [-124.950235, 49.360541], [-124.949676, 49.359945], [-124.949651, 49.359514], [-124.94984, 49.359034], [-124.950467, 49.358324], [-124.952023, 49.357571], [-124.952836, 49.356611], [-124.952897, 49.354773], [-124.953588, 49.352391], [-124.95374, 49.351537], [-124.953732, 49.350318], [-124.952719, 49.349387], [-124.951886, 49.349033], [-124.950639, 49.348841], [-124.949334, 49.348791], [-124.946884, 49.348926], [-124.946149, 49.348824], [-124.945364, 49.348399], [-124.943395, 49.346279], [-124.942147, 49.345575], [-124.938677, 49.344112], [-124.93688, 49.343825], [-124.935556, 49.343696], [-124.934664, 49.343357], [-124.933932, 49.342662], [-124.93381, 49.342121], [-124.933849, 49.341788], [-124.935236, 49.340432], [-124.935525, 49.340032], [-124.935726, 49.339431], [-124.935616, 49.338418], [-124.934896, 49.337701], [-124.934144, 49.337366], [-124.932988, 49.337527], [-124.931149, 49.338253], [-124.929612, 49.339296], [-124.928608, 49.33982], [-124.927819, 49.340079], [-124.92725, 49.340122], [-124.926829, 49.340008], [-124.926159, 49.339532], [-124.925737, 49.337883], [-124.925191, 49.336853], [-124.925079, 49.336397], [-124.92476, 49.335764], [-124.924113, 49.335101], [-124.922713, 49.334728], [-124.920998, 49.33372], [-124.920453, 49.333301], [-124.920298, 49.332595], [-124.919887, 49.332244], [-124.918489, 49.332219], [-124.917342, 49.331761], [-124.916829, 49.33139], [-124.916219, 49.330749], [-124.915027, 49.330813], [-124.914733, 49.330654], [-124.914846, 49.33015], [-124.914424, 49.329465], [-124.913426, 49.328863], [-124.912712, 49.328802], [-124.911505, 49.328821], [-124.908822, 49.328661], [-124.909068, 49.329105], [-124.909094, 49.332797], [-124.892467, 49.332709], [-124.884249, 49.332278], [-124.883392, 49.332337], [-124.882566, 49.322444], [-124.874368, 49.322151], [-124.869115, 49.322103], [-124.868693, 49.322016], [-124.858456, 49.322126], [-124.858558, 49.318417], [-124.85784, 49.311444], [-124.850047, 49.311591], [-124.84548, 49.311483], [-124.844693, 49.311534], [-124.844655, 49.311302], [-124.844575, 49.311253], [-124.84457, 49.310783], [-124.844396, 49.310318], [-124.844488, 49.309135], [-124.844205, 49.30341], [-124.844252, 49.30305], [-124.840343, 49.30306], [-124.835433, 49.302936], [-124.835182, 49.296282], [-124.833134, 49.296451], [-124.831137, 49.296661], [-124.831034, 49.296716], [-124.830035, 49.296729], [-124.829597, 49.291025], [-124.829553, 49.288903], [-124.827853, 49.289], [-124.82592, 49.286205], [-124.82355, 49.283918], [-124.821013, 49.284159], [-124.82051, 49.28415], [-124.817968, 49.283666], [-124.8025, 49.28352], [-124.802634, 49.288611], [-124.802606, 49.29293], [-124.800194, 49.293376], [-124.800182, 49.294209], [-124.804739, 49.293325], [-124.805015, 49.293384], [-124.807081, 49.293327], [-124.80812, 49.293361], [-124.809741, 49.292848], [-124.811159, 49.292715], [-124.811218, 49.293336], [-124.811133, 49.293565], [-124.811582, 49.296769], [-124.808446, 49.297001], [-124.808485, 49.298037], [-124.805687, 49.29825], [-124.805688, 49.300588], [-124.800224, 49.300571], [-124.800116, 49.307904], [-124.798892, 49.307653], [-124.796788, 49.306921], [-124.793896, 49.306093], [-124.792455, 49.305774], [-124.79198, 49.305556], [-124.790841, 49.304854], [-124.79028, 49.304602], [-124.789695, 49.304386], [-124.788625, 49.304106], [-124.78734, 49.303532], [-124.783613, 49.302051], [-124.782311, 49.301406], [-124.781212, 49.301072], [-124.779714, 49.300366], [-124.778206, 49.299955], [-124.777321, 49.299603], [-124.776355, 49.299114], [-124.775658, 49.29889], [-124.774284, 49.298687], [-124.774307, 49.308591], [-124.774069, 49.316429], [-124.783729, 49.316451], [-124.783892, 49.325456], [-124.794619, 49.325438], [-124.794808, 49.322157], [-124.800591, 49.322124], [-124.801673, 49.32718], [-124.80933, 49.327949], [-124.810069, 49.33026], [-124.814919, 49.330255], [-124.815868, 49.333947], [-124.821422, 49.334695], [-124.822078, 49.339654], [-124.825939, 49.340618], [-124.82777, 49.344868], [-124.831612, 49.346611], [-124.834857, 49.346817], [-124.83753, 49.350226], [-124.844316, 49.351829], [-124.854287, 49.356821], [-124.863542, 49.359392], [-124.869408, 49.367745], [-124.869382, 49.37362], [-124.872715, 49.377827], [-124.899919, 49.379538], [-124.900546, 49.387161], [-124.903843, 49.389328], [-124.90867, 49.388896], [-124.909586, 49.389093], [-124.915989, 49.392558], [-124.923223, 49.394423], [-124.924164, 49.399003], [-124.929471, 49.401222], [-124.927669, 49.40427], [-124.929547, 49.409597], [-124.941102, 49.416059], [-124.942074, 49.419715], [-124.947383, 49.420656], [-124.953396, 49.427179], [-124.959639, 49.427587], [-124.96588, 49.426718], [-124.967995, 49.428485], [-124.968123, 49.431179]]]]}, "properties": {"name": "Alberni-Clayoquot B", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alberni-Clayoquot B", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923033", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.331011, 49.567383], [-125.363943, 49.593253], [-125.426521, 49.642666], [-125.427633, 49.638445], [-125.427349, 49.633135], [-125.424246, 49.626326], [-125.414415, 49.616011], [-125.411879, 49.613438], [-125.404991, 49.606771], [-125.402636, 49.604017], [-125.398459, 49.597014], [-125.395887, 49.594019], [-125.392798, 49.584462], [-125.391666, 49.575826], [-125.385336, 49.561829], [-125.385141, 49.558828], [-125.379574, 49.547903], [-125.381588, 49.540715], [-125.38757, 49.542197], [-125.390124, 49.545853], [-125.395194, 49.547172], [-125.4036, 49.544698], [-125.411781, 49.545534], [-125.430081, 49.555711], [-125.434274, 49.55367], [-125.441982, 49.541331], [-125.442095, 49.538299], [-125.446154, 49.534927], [-125.454577, 49.531288], [-125.468817, 49.528217], [-125.473667, 49.524544], [-125.477457, 49.52127], [-125.479507, 49.518425], [-125.48312, 49.516139], [-125.482393, 49.512964], [-125.483451, 49.509803], [-125.489949, 49.507578], [-125.492636, 49.50426], [-125.49334, 49.500313], [-125.491468, 49.496653], [-125.490917, 49.495252], [-125.492545, 49.489575], [-125.494796, 49.48407], [-125.498947, 49.479545], [-125.499804, 49.479339], [-125.499812, 49.478169], [-125.501043, 49.478116], [-125.504149, 49.478236], [-125.516109, 49.480538], [-125.524198, 49.483128], [-125.534152, 49.485702], [-125.551202, 49.488918], [-125.553178, 49.490695], [-125.551142, 49.497187], [-125.552993, 49.498685], [-125.558296, 49.498869], [-125.567034, 49.49825], [-125.566709, 49.493954], [-125.56592, 49.490647], [-125.563271, 49.485538], [-125.562937, 49.481118], [-125.566024, 49.476188], [-125.573753, 49.47265], [-125.582583, 49.46791], [-125.58933, 49.463011], [-125.589321, 49.460035], [-125.587507, 49.457746], [-125.580532, 49.455236], [-125.568968, 49.450715], [-125.56435, 49.447458], [-125.560634, 49.443855], [-125.555942, 49.442671], [-125.55512, 49.440945], [-125.556088, 49.439325], [-125.559241, 49.437981], [-125.57075, 49.435693], [-125.577265, 49.433239], [-125.582423, 49.430352], [-125.586027, 49.427893], [-125.592404, 49.425017], [-125.599535, 49.418399], [-125.599211, 49.415073], [-125.597759, 49.412647], [-125.594462, 49.411399], [-125.588396, 49.411379], [-125.580562, 49.410464], [-125.578046, 49.40766], [-125.576015, 49.403102], [-125.57115, 49.398216], [-125.571143, 49.39524], [-125.571333, 49.391406], [-125.572501, 49.387045], [-125.571865, 49.383368], [-125.569322, 49.380261], [-125.566014, 49.377918], [-125.561419, 49.375756], [-125.555403, 49.375243], [-125.548893, 49.374448], [-125.546603, 49.37297], [-125.545964, 49.371176], [-125.545865, 49.369177], [-125.545528, 49.366641], [-125.542137, 49.362447], [-125.541498, 49.360653], [-125.542331, 49.358614], [-125.544391, 49.352819], [-125.545544, 49.349249], [-125.547232, 49.347356], [-125.549731, 49.3461], [-125.554834, 49.342072], [-125.55668, 49.338295], [-125.557565, 49.333485], [-125.555342, 49.331027], [-125.549453, 49.328383], [-125.530177, 49.325208], [-125.525853, 49.322114], [-125.51598, 49.318684], [-125.508166, 49.317052], [-125.501559, 49.317248], [-125.493349, 49.311898], [-125.488044, 49.309892], [-125.475632, 49.307273], [-125.469396, 49.304473], [-125.462094, 49.303645], [-125.450885, 49.306265], [-125.440293, 49.307376], [-125.430699, 49.307403], [-125.411565, 49.304587], [-125.390263, 49.301296], [-125.386608, 49.300641], [-125.388558, 49.295183], [-125.383576, 49.29269], [-125.375195, 49.291215], [-125.354632, 49.285331], [-125.353962, 49.280323], [-125.352587, 49.280994], [-125.350892, 49.281564], [-125.35053, 49.281751], [-125.349194, 49.280326], [-125.347868, 49.279096], [-125.347869, 49.270274], [-125.340066, 49.26999], [-125.33665, 49.269532], [-125.332037, 49.266745], [-125.328422, 49.263323], [-125.326963, 49.258827], [-125.325064, 49.254963], [-125.321731, 49.250371], [-125.321411, 49.249848], [-125.321597, 49.249812], [-125.307313, 49.246027], [-125.29558, 49.240703], [-125.292537, 49.23718], [-125.290103, 49.233001], [-125.292598, 49.230215], [-125.291448, 49.226258], [-125.28063, 49.220728], [-125.283327, 49.21744], [-125.286468, 49.214409], [-125.28667, 49.212207], [-125.279341, 49.209607], [-125.276058, 49.206176], [-125.276084, 49.197949], [-125.272126, 49.195343], [-125.260978, 49.195048], [-125.253466, 49.197628], [-125.246966, 49.1984], [-125.236596, 49.196529], [-125.229813, 49.194287], [-125.22726, 49.193131], [-125.227276, 49.192965], [-125.217386, 49.193178], [-125.212805, 49.191122], [-125.206851, 49.187767], [-125.203305, 49.184258], [-125.200553, 49.184543], [-125.195869, 49.18814], [-125.190137, 49.188188], [-125.172467, 49.184114], [-125.168045, 49.186699], [-125.164516, 49.192132], [-125.164673, 49.195714], [-125.160141, 49.197126], [-125.156495, 49.197445], [-125.153462, 49.196621], [-125.148983, 49.194677], [-125.14427, 49.190092], [-125.138232, 49.188737], [-125.131127, 49.187482], [-125.121229, 49.183039], [-125.113238, 49.176814], [-125.109498, 49.172014], [-125.105731, 49.169953], [-125.099025, 49.168092], [-125.087384, 49.166125], [-125.079458, 49.162603], [-125.075277, 49.157819], [-125.072784, 49.152853], [-125.072477, 49.148274], [-125.072744, 49.145144], [-125.069145, 49.143928], [-125.060473, 49.145082], [-125.041408, 49.142648], [-125.041701, 49.165553], [-125.04478, 49.171852], [-125.041646, 49.170669], [-125.03707, 49.168581], [-125.029457, 49.163654], [-125.012779, 49.154116], [-124.999979, 49.14654], [-125.000012, 49.153507], [-124.995401, 49.150274], [-124.938998, 49.149425], [-124.938494, 49.149654], [-124.938518, 49.149417], [-124.928309, 49.149253], [-124.920841, 49.149188], [-124.91825, 49.149417], [-124.91821, 49.152248], [-124.901825, 49.152409], [-124.900323, 49.132854], [-124.890179, 49.132609], [-124.890304, 49.145628], [-124.841057, 49.145353], [-124.841048, 49.152543], [-124.82552, 49.152627], [-124.820078, 49.146093], [-124.800815, 49.146378], [-124.800823, 49.153089], [-124.810035, 49.162425], [-124.817972, 49.171349], [-124.820577, 49.17521], [-124.821874, 49.178067], [-124.822108, 49.180451], [-124.820097, 49.189966], [-124.822013, 49.208841], [-124.822738, 49.214651], [-124.821732, 49.218351], [-124.819948, 49.229561], [-124.818714, 49.230448], [-124.816393, 49.231208], [-124.819279, 49.23413], [-124.819162, 49.238101], [-124.816968, 49.242309], [-124.820719, 49.244391], [-124.822233, 49.247066], [-124.819407, 49.249394], [-124.822129, 49.250221], [-124.828823, 49.25193], [-124.828537, 49.252203], [-124.82792, 49.252419], [-124.8273, 49.252536], [-124.826644, 49.252835], [-124.826381, 49.252843], [-124.826245, 49.252928], [-124.82629, 49.253074], [-124.826194, 49.253131], [-124.825488, 49.253169], [-124.825298, 49.25341], [-124.824932, 49.253524], [-124.824922, 49.253641], [-124.825075, 49.253729], [-124.825742, 49.25389], [-124.826724, 49.253685], [-124.826613, 49.254049], [-124.827078, 49.254402], [-124.827761, 49.254319], [-124.828185, 49.254617], [-124.828006, 49.254795], [-124.828398, 49.255019], [-124.828624, 49.254952], [-124.829204, 49.255122], [-124.830169, 49.255105], [-124.830922, 49.25539], [-124.831386, 49.255312], [-124.834044, 49.255916], [-124.830983, 49.260435], [-124.83161, 49.261063], [-124.83251, 49.261252], [-124.835312, 49.262022], [-124.837673, 49.262823], [-124.839796, 49.263647], [-124.841111, 49.264377], [-124.842909, 49.264526], [-124.842806, 49.26448], [-124.842614, 49.264184], [-124.84255, 49.263081], [-124.855928, 49.262927], [-124.856975, 49.263167], [-124.857843, 49.263514], [-124.858466, 49.263844], [-124.858996, 49.264301], [-124.867756, 49.264441], [-124.868258, 49.264716], [-124.86865, 49.264493], [-124.870207, 49.264243], [-124.872424, 49.264369], [-124.872883, 49.264479], [-124.873192, 49.264644], [-124.873565, 49.26471], [-124.875954, 49.264487], [-124.887309, 49.264712], [-124.887245, 49.278098], [-124.877277, 49.277897], [-124.877706, 49.282879], [-124.87066, 49.282807], [-124.868386, 49.282911], [-124.868237, 49.28251], [-124.868459, 49.28168], [-124.869965, 49.278829], [-124.869912, 49.278717], [-124.868554, 49.278717], [-124.868636, 49.278911], [-124.855383, 49.278911], [-124.855441, 49.279136], [-124.856022, 49.280154], [-124.856419, 49.28044], [-124.857637, 49.280879], [-124.859383, 49.281111], [-124.860948, 49.281232], [-124.86228, 49.281493], [-124.863477, 49.281832], [-124.864984, 49.282554], [-124.865771, 49.283062], [-124.866556, 49.283707], [-124.867203, 49.284667], [-124.867601, 49.2857], [-124.8685, 49.286966], [-124.868735, 49.288407], [-124.869092, 49.289683], [-124.869114, 49.290415], [-124.869353, 49.291518], [-124.87021, 49.293993], [-124.870512, 49.294496], [-124.871001, 49.295008], [-124.872104, 49.295786], [-124.873304, 49.296131], [-124.874737, 49.296139], [-124.875921, 49.295908], [-124.878021, 49.29485], [-124.880775, 49.293986], [-124.882133, 49.293711], [-124.882073, 49.293435], [-124.882477, 49.292915], [-124.882942, 49.291552], [-124.883086, 49.291388], [-124.883664, 49.291183], [-124.884838, 49.291059], [-124.885969, 49.291199], [-124.886669, 49.291174], [-124.887131, 49.291066], [-124.887533, 49.290783], [-124.888577, 49.290635], [-124.889266, 49.290622], [-124.88966, 49.290689], [-124.890057, 49.29087], [-124.891262, 49.292079], [-124.891824, 49.291909], [-124.892094, 49.29162], [-124.892144, 49.291391], [-124.89188, 49.290535], [-124.891945, 49.289954], [-124.892276, 49.289545], [-124.892699, 49.2894], [-124.8939, 49.289408], [-124.894928, 49.289537], [-124.896418, 49.289588], [-124.897378, 49.289532], [-124.898024, 49.289351], [-124.898855, 49.289357], [-124.900447, 49.289715], [-124.901282, 49.289991], [-124.901616, 49.290011], [-124.901874, 49.289921], [-124.902554, 49.290195], [-124.90335, 49.290363], [-124.903692, 49.290344], [-124.904536, 49.290083], [-124.90521, 49.290119], [-124.905032, 49.290547], [-124.905029, 49.291003], [-124.905387, 49.291958], [-124.905627, 49.297336], [-124.900456, 49.297525], [-124.889129, 49.297532], [-124.890659, 49.297992], [-124.892676, 49.298888], [-124.893176, 49.299379], [-124.893523, 49.30006], [-124.893556, 49.30141], [-124.894109, 49.30245], [-124.894208, 49.303178], [-124.894697, 49.303897], [-124.895406, 49.304428], [-124.897435, 49.305203], [-124.899162, 49.306426], [-124.900067, 49.307188], [-124.90053, 49.307996], [-124.900473, 49.308887], [-124.900283, 49.30906], [-124.899856, 49.309238], [-124.898964, 49.309441], [-124.898114, 49.309453], [-124.897621, 49.309406], [-124.896672, 49.309047], [-124.895608, 49.308843], [-124.894466, 49.308826], [-124.894112, 49.308931], [-124.893366, 49.309787], [-124.8933, 49.310055], [-124.893306, 49.310772], [-124.893964, 49.311406], [-124.897419, 49.312767], [-124.898386, 49.313857], [-124.898879, 49.315589], [-124.899723, 49.316571], [-124.902107, 49.318535], [-124.902675, 49.319455], [-124.904085, 49.320593], [-124.90624, 49.321568], [-124.906965, 49.322429], [-124.909695, 49.323654], [-124.911182, 49.32459], [-124.912157, 49.325004], [-124.912151, 49.325516], [-124.911502, 49.326076], [-124.910462, 49.32663], [-124.910786, 49.327321], [-124.914424, 49.329465], [-124.914846, 49.33015], [-124.914733, 49.330654], [-124.915027, 49.330813], [-124.916219, 49.330749], [-124.916829, 49.33139], [-124.917342, 49.331761], [-124.918489, 49.332219], [-124.919887, 49.332244], [-124.920298, 49.332595], [-124.920453, 49.333301], [-124.920998, 49.33372], [-124.922713, 49.334728], [-124.924113, 49.335101], [-124.92476, 49.335764], [-124.925079, 49.336397], [-124.925191, 49.336853], [-124.925737, 49.337883], [-124.926159, 49.339532], [-124.926829, 49.340008], [-124.92725, 49.340122], [-124.927819, 49.340079], [-124.928608, 49.33982], [-124.929612, 49.339296], [-124.931149, 49.338253], [-124.932988, 49.337527], [-124.934144, 49.337366], [-124.934896, 49.337701], [-124.935616, 49.338418], [-124.935726, 49.339431], [-124.935525, 49.340032], [-124.935236, 49.340432], [-124.933849, 49.341788], [-124.93381, 49.342121], [-124.933932, 49.342662], [-124.934664, 49.343357], [-124.935556, 49.343696], [-124.93688, 49.343825], [-124.938677, 49.344112], [-124.942147, 49.345575], [-124.943395, 49.346279], [-124.945364, 49.348399], [-124.946149, 49.348824], [-124.946884, 49.348926], [-124.949334, 49.348791], [-124.950639, 49.348841], [-124.951886, 49.349033], [-124.952719, 49.349387], [-124.953732, 49.350318], [-124.95374, 49.351537], [-124.953588, 49.352391], [-124.952897, 49.354773], [-124.952836, 49.356611], [-124.952023, 49.357571], [-124.950467, 49.358324], [-124.94984, 49.359034], [-124.949651, 49.359514], [-124.949676, 49.359945], [-124.950235, 49.360541], [-124.951143, 49.360993], [-124.952083, 49.361287], [-124.953177, 49.3615], [-124.954745, 49.361572], [-124.955735, 49.361799], [-124.957662, 49.361861], [-124.959189, 49.361794], [-124.959867, 49.361718], [-124.960858, 49.361371], [-124.961684, 49.361177], [-124.962535, 49.36116], [-124.963673, 49.361311], [-124.964383, 49.361503], [-124.965024, 49.361767], [-124.969039, 49.364431], [-124.970101, 49.365827], [-124.970512, 49.366129], [-124.971117, 49.366273], [-124.97223, 49.366158], [-124.974011, 49.36547], [-124.975165, 49.364913], [-124.976232, 49.364054], [-124.976645, 49.363382], [-124.977839, 49.362144], [-124.978125, 49.362201], [-124.979486, 49.361901], [-124.980772, 49.362037], [-124.981349, 49.36229], [-124.981675, 49.362708], [-124.981258, 49.365735], [-124.98109, 49.366106], [-124.980465, 49.366717], [-124.979645, 49.367237], [-124.979333, 49.367642], [-124.979184, 49.368377], [-124.979239, 49.368774], [-124.979549, 49.369067], [-124.980462, 49.369306], [-124.981738, 49.369383], [-124.982798, 49.369682], [-124.983655, 49.369789], [-124.98487, 49.370066], [-124.98574, 49.370127], [-124.986628, 49.37009], [-124.987064, 49.370168], [-124.987581, 49.370339], [-124.988334, 49.370731], [-124.990011, 49.37101], [-124.991389, 49.371356], [-124.992379, 49.37183], [-124.992897, 49.372377], [-124.992706, 49.373626], [-124.992692, 49.375718], [-124.992393, 49.377244], [-124.991849, 49.377954], [-124.990187, 49.379252], [-124.988166, 49.380502], [-124.986497, 49.382045], [-124.98611, 49.382271], [-124.985711, 49.382969], [-124.985691, 49.38325], [-124.985891, 49.383688], [-124.986449, 49.384218], [-124.987374, 49.384681], [-124.9913, 49.385107], [-124.99414, 49.385212], [-124.994919, 49.385349], [-124.995857, 49.385662], [-124.996159, 49.385698], [-124.996383, 49.385605], [-124.997476, 49.384805], [-124.999286, 49.383909], [-124.999839, 49.383719], [-125.000618, 49.383701], [-125.001182, 49.383774], [-125.003481, 49.38434], [-125.004708, 49.384809], [-125.00542, 49.385197], [-125.005218, 49.390869], [-125.005215, 49.403201], [-125.000245, 49.403387], [-125.000139, 49.423994], [-124.982134, 49.425604], [-124.981335, 49.433708], [-124.970836, 49.433513], [-124.97077, 49.433957], [-124.971012, 49.434773], [-124.970942, 49.442498], [-124.975332, 49.442503], [-124.97533, 49.445652], [-124.982151, 49.445625], [-124.982421, 49.45321], [-124.986868, 49.453158], [-124.987053, 49.451909], [-124.991257, 49.451917], [-124.991345, 49.451958], [-124.991526, 49.453231], [-124.997445, 49.453293], [-125.000619, 49.453246], [-125.000247, 49.453792], [-124.99695, 49.454772], [-124.996694, 49.455207], [-124.995158, 49.4553], [-124.995189, 49.457097], [-125.002189, 49.457064], [-125.002405, 49.459021], [-125.009856, 49.459135], [-125.010334, 49.463104], [-125.012995, 49.4631], [-125.013221, 49.464702], [-125.01572, 49.464758], [-125.015742, 49.466859], [-125.013158, 49.467214], [-125.013289, 49.470541], [-125.016122, 49.470612], [-125.016074, 49.472389], [-125.021752, 49.472423], [-125.022013, 49.476264], [-125.02434, 49.476243], [-125.024631, 49.481338], [-125.019873, 49.481543], [-125.01999, 49.486563], [-125.022134, 49.48682], [-125.022507, 49.492376], [-125.025723, 49.492517], [-125.025684, 49.493938], [-125.036747, 49.493907], [-125.03696, 49.49065], [-125.035017, 49.490517], [-125.034919, 49.48703], [-125.036866, 49.486941], [-125.037058, 49.485349], [-125.042543, 49.48528], [-125.042781, 49.483741], [-125.045638, 49.483595], [-125.045773, 49.481817], [-125.05265, 49.481514], [-125.052722, 49.477618], [-125.069056, 49.477583], [-125.068935, 49.479021], [-125.07202, 49.479117], [-125.071855, 49.480989], [-125.074572, 49.481154], [-125.074574, 49.484182], [-125.077729, 49.4846], [-125.077952, 49.487998], [-125.08274, 49.488082], [-125.082803, 49.49154], [-125.088859, 49.491844], [-125.088786, 49.493334], [-125.093159, 49.493431], [-125.092799, 49.502213], [-125.102117, 49.502307], [-125.102309, 49.503971], [-125.107178, 49.504012], [-125.107273, 49.511472], [-125.108274, 49.511512], [-125.108509, 49.51479], [-125.114704, 49.514749], [-125.114706, 49.514813], [-125.124732, 49.515158], [-125.126313, 49.515161], [-125.126253, 49.518575], [-125.13089, 49.518536], [-125.130996, 49.522026], [-125.136533, 49.521937], [-125.136829, 49.525092], [-125.140457, 49.525391], [-125.140538, 49.528874], [-125.143225, 49.528905], [-125.149147, 49.528793], [-125.149054, 49.521656], [-125.141751, 49.521762], [-125.14092, 49.520664], [-125.140882, 49.519687], [-125.141165, 49.511691], [-125.13446, 49.511976], [-125.128601, 49.511975], [-125.128773, 49.510372], [-125.134126, 49.510342], [-125.134179, 49.503354], [-125.141066, 49.503377], [-125.141033, 49.504939], [-125.145514, 49.50522], [-125.145396, 49.505885], [-125.151225, 49.506135], [-125.151021, 49.506834], [-125.153816, 49.506889], [-125.154037, 49.50781], [-125.161626, 49.508109], [-125.161744, 49.509845], [-125.171356, 49.510193], [-125.173199, 49.510151], [-125.173468, 49.500523], [-125.171039, 49.50049], [-125.170887, 49.497376], [-125.166514, 49.49721], [-125.166615, 49.491715], [-125.168842, 49.490528], [-125.170939, 49.490381], [-125.172357, 49.490652], [-125.173751, 49.491156], [-125.175368, 49.491649], [-125.176645, 49.49191], [-125.179096, 49.491793], [-125.180692, 49.491629], [-125.18408, 49.490999], [-125.185476, 49.490609], [-125.187317, 49.490199], [-125.188844, 49.490739], [-125.190322, 49.491745], [-125.19149, 49.492794], [-125.192743, 49.493288], [-125.194652, 49.493606], [-125.196278, 49.494258], [-125.19836, 49.494509], [-125.199561, 49.494422], [-125.20113, 49.493966], [-125.204936, 49.493021], [-125.206845, 49.493338], [-125.211029, 49.493079], [-125.212747, 49.492792], [-125.214366, 49.492391], [-125.215575, 49.491922], [-125.219982, 49.490478], [-125.224496, 49.491371], [-125.227233, 49.491444], [-125.229648, 49.491416], [-125.233954, 49.491033], [-125.268857, 49.519018], [-125.331011, 49.567383]]]]}, "properties": {"name": "Alberni-Clayoquot D", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alberni-Clayoquot D", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923035", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.909094, 49.332797], [-124.909068, 49.329105], [-124.908822, 49.328661], [-124.911505, 49.328821], [-124.912712, 49.328802], [-124.913426, 49.328863], [-124.910786, 49.327321], [-124.910462, 49.32663], [-124.911502, 49.326076], [-124.912151, 49.325516], [-124.912157, 49.325004], [-124.911182, 49.32459], [-124.909695, 49.323654], [-124.906965, 49.322429], [-124.90624, 49.321568], [-124.904085, 49.320593], [-124.902675, 49.319455], [-124.902107, 49.318535], [-124.899723, 49.316571], [-124.898879, 49.315589], [-124.898386, 49.313857], [-124.897419, 49.312767], [-124.893964, 49.311406], [-124.893306, 49.310772], [-124.893366, 49.309787], [-124.894112, 49.308931], [-124.894466, 49.308826], [-124.895608, 49.308843], [-124.896672, 49.309047], [-124.897621, 49.309406], [-124.898114, 49.309453], [-124.898964, 49.309441], [-124.899856, 49.309238], [-124.900283, 49.30906], [-124.900473, 49.308887], [-124.90053, 49.307996], [-124.900067, 49.307188], [-124.899162, 49.306426], [-124.897435, 49.305203], [-124.895406, 49.304428], [-124.894697, 49.303897], [-124.894208, 49.303178], [-124.894109, 49.30245], [-124.893556, 49.30141], [-124.893523, 49.30006], [-124.893176, 49.299379], [-124.892676, 49.298888], [-124.890659, 49.297992], [-124.888297, 49.297281], [-124.886657, 49.296613], [-124.883721, 49.297056], [-124.88334, 49.296813], [-124.882943, 49.29585], [-124.882967, 49.295313], [-124.883379, 49.294736], [-124.883545, 49.294226], [-124.88354, 49.293907], [-124.882906, 49.293715], [-124.882133, 49.293711], [-124.880775, 49.293986], [-124.878021, 49.29485], [-124.875921, 49.295908], [-124.874737, 49.296139], [-124.873304, 49.296131], [-124.872104, 49.295786], [-124.871001, 49.295008], [-124.870512, 49.294496], [-124.87021, 49.293993], [-124.869353, 49.291518], [-124.869114, 49.290415], [-124.869092, 49.289683], [-124.868735, 49.288407], [-124.8685, 49.286966], [-124.867601, 49.2857], [-124.867203, 49.284667], [-124.866556, 49.283707], [-124.865771, 49.283062], [-124.864984, 49.282554], [-124.863477, 49.281832], [-124.86228, 49.281493], [-124.860948, 49.281232], [-124.859383, 49.281111], [-124.857637, 49.280879], [-124.856419, 49.28044], [-124.856022, 49.280154], [-124.855441, 49.279136], [-124.855129, 49.277921], [-124.855214, 49.277456], [-124.855455, 49.277169], [-124.856647, 49.276441], [-124.857074, 49.276042], [-124.857354, 49.274954], [-124.857273, 49.274101], [-124.857064, 49.273842], [-124.857294, 49.273497], [-124.857193, 49.273184], [-124.856446, 49.272257], [-124.85542, 49.271721], [-124.854274, 49.271502], [-124.853882, 49.271495], [-124.853385, 49.270334], [-124.853119, 49.269248], [-124.850353, 49.269196], [-124.850324, 49.273709], [-124.839406, 49.273772], [-124.839385, 49.273355], [-124.837807, 49.273205], [-124.831027, 49.273204], [-124.830368, 49.272643], [-124.829754, 49.272666], [-124.829785, 49.273214], [-124.828221, 49.273225], [-124.828171, 49.270754], [-124.828446, 49.270791], [-124.826928, 49.269494], [-124.825601, 49.269465], [-124.825686, 49.273636], [-124.82267, 49.273648], [-124.82267, 49.275124], [-124.820019, 49.275235], [-124.819815, 49.272098], [-124.817178, 49.272111], [-124.817125, 49.270598], [-124.814893, 49.270654], [-124.814913, 49.26934], [-124.814216, 49.269317], [-124.813918, 49.269248], [-124.81374, 49.269143], [-124.81345, 49.269293], [-124.812962, 49.269337], [-124.802476, 49.269458], [-124.802132, 49.269539], [-124.800986, 49.269604], [-124.801086, 49.270092], [-124.801724, 49.270991], [-124.801609, 49.27163], [-124.801022, 49.272522], [-124.800922, 49.272799], [-124.79984, 49.272863], [-124.79995, 49.274455], [-124.799659, 49.274702], [-124.799753, 49.275015], [-124.799896, 49.275156], [-124.800593, 49.275407], [-124.800959, 49.275698], [-124.800989, 49.275873], [-124.802451, 49.276426], [-124.8025, 49.28352], [-124.817968, 49.283666], [-124.82051, 49.28415], [-124.821013, 49.284159], [-124.82355, 49.283918], [-124.82592, 49.286205], [-124.827853, 49.289], [-124.829553, 49.288903], [-124.829597, 49.291025], [-124.830035, 49.296729], [-124.831034, 49.296716], [-124.831137, 49.296661], [-124.833134, 49.296451], [-124.835182, 49.296282], [-124.835433, 49.302936], [-124.840343, 49.30306], [-124.844252, 49.30305], [-124.844205, 49.30341], [-124.844488, 49.309135], [-124.844396, 49.310318], [-124.84457, 49.310783], [-124.844575, 49.311253], [-124.844655, 49.311302], [-124.844693, 49.311534], [-124.84548, 49.311483], [-124.850047, 49.311591], [-124.85784, 49.311444], [-124.858558, 49.318417], [-124.858456, 49.322126], [-124.868693, 49.322016], [-124.869115, 49.322103], [-124.874368, 49.322151], [-124.882566, 49.322444], [-124.883392, 49.332337], [-124.884249, 49.332278], [-124.892467, 49.332709], [-124.909094, 49.332797]]]]}, "properties": {"name": "Alberni-Clayoquot E", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alberni-Clayoquot E", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923037", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.790841, 49.304854], [-124.79198, 49.305556], [-124.792455, 49.305774], [-124.793896, 49.306093], [-124.796788, 49.306921], [-124.798892, 49.307653], [-124.800116, 49.307904], [-124.800224, 49.300571], [-124.805688, 49.300588], [-124.805687, 49.29825], [-124.808485, 49.298037], [-124.808446, 49.297001], [-124.811582, 49.296769], [-124.811133, 49.293565], [-124.811218, 49.293336], [-124.811159, 49.292715], [-124.809741, 49.292848], [-124.80812, 49.293361], [-124.807081, 49.293327], [-124.805015, 49.293384], [-124.804739, 49.293325], [-124.800182, 49.294209], [-124.800194, 49.293376], [-124.802606, 49.29293], [-124.802634, 49.288611], [-124.8025, 49.28352], [-124.802451, 49.276426], [-124.800989, 49.275873], [-124.800959, 49.275698], [-124.800593, 49.275407], [-124.799896, 49.275156], [-124.799753, 49.275015], [-124.799659, 49.274702], [-124.79995, 49.274455], [-124.797121, 49.274215], [-124.794097, 49.27436], [-124.792725, 49.274325], [-124.786339, 49.273397], [-124.785991, 49.272322], [-124.786082, 49.270922], [-124.782901, 49.270681], [-124.782972, 49.268453], [-124.779072, 49.269001], [-124.779128, 49.26879], [-124.780764, 49.267428], [-124.780867, 49.267262], [-124.780862, 49.266072], [-124.782907, 49.266132], [-124.782998, 49.264862], [-124.782827, 49.263784], [-124.782882, 49.26289], [-124.783462, 49.260617], [-124.783615, 49.259424], [-124.783753, 49.259415], [-124.783606, 49.258419], [-124.777874, 49.258926], [-124.778482, 49.259777], [-124.777386, 49.265323], [-124.777079, 49.265413], [-124.777559, 49.260348], [-124.77657, 49.258153], [-124.775971, 49.258159], [-124.77529, 49.258773], [-124.77565, 49.258943], [-124.775492, 49.259103], [-124.775165, 49.258952], [-124.77487, 49.259235], [-124.775183, 49.25938], [-124.774792, 49.259746], [-124.773791, 49.259203], [-124.77627, 49.257191], [-124.777657, 49.255719], [-124.778809, 49.254212], [-124.780033, 49.252137], [-124.780564, 49.251368], [-124.781105, 49.250801], [-124.781307, 49.250436], [-124.78097, 49.250458], [-124.780721, 49.248886], [-124.780653, 49.245363], [-124.772575, 49.245695], [-124.768658, 49.245672], [-124.766062, 49.245527], [-124.761301, 49.245718], [-124.761479, 49.242173], [-124.761895, 49.24037], [-124.762221, 49.238251], [-124.772241, 49.238125], [-124.772216, 49.237821], [-124.776385, 49.237809], [-124.77938, 49.237853], [-124.780721, 49.237933], [-124.783116, 49.238267], [-124.783032, 49.236148], [-124.782792, 49.234978], [-124.780608, 49.234989], [-124.780602, 49.234339], [-124.78287, 49.234287], [-124.783416, 49.230426], [-124.783465, 49.215435], [-124.790788, 49.215238], [-124.793113, 49.215355], [-124.793064, 49.210869], [-124.799281, 49.210813], [-124.812864, 49.211052], [-124.813649, 49.212041], [-124.813841, 49.212925], [-124.814251, 49.213833], [-124.815349, 49.215013], [-124.815728, 49.215663], [-124.815534, 49.216479], [-124.815264, 49.216808], [-124.814259, 49.217209], [-124.812366, 49.217792], [-124.811802, 49.21819], [-124.811356, 49.218363], [-124.8154, 49.218254], [-124.819513, 49.218279], [-124.819245, 49.219657], [-124.816748, 49.221355], [-124.816266, 49.222358], [-124.816604, 49.223401], [-124.817828, 49.225035], [-124.817247, 49.226423], [-124.815631, 49.227691], [-124.815423, 49.23031], [-124.816457, 49.231188], [-124.818714, 49.230448], [-124.819948, 49.229561], [-124.821732, 49.218351], [-124.822738, 49.214651], [-124.822013, 49.208841], [-124.820097, 49.189966], [-124.822108, 49.180451], [-124.821874, 49.178067], [-124.820577, 49.17521], [-124.817972, 49.171349], [-124.810035, 49.162425], [-124.800823, 49.153089], [-124.800815, 49.146378], [-124.776143, 49.126493], [-124.761509, 49.114584], [-124.746682, 49.115597], [-124.747595, 49.119278], [-124.740209, 49.119993], [-124.739237, 49.120026], [-124.740683, 49.124933], [-124.742538, 49.124765], [-124.744653, 49.13574], [-124.744957, 49.136921], [-124.728485, 49.138611], [-124.725631, 49.125474], [-124.714907, 49.12641], [-124.715412, 49.129534], [-124.682014, 49.133437], [-124.68209, 49.133357], [-124.679847, 49.126975], [-124.670511, 49.128093], [-124.669271, 49.124226], [-124.660907, 49.125511], [-124.657972, 49.119431], [-124.646256, 49.121298], [-124.646059, 49.120099], [-124.645964, 49.120117], [-124.644374, 49.115078], [-124.629508, 49.116864], [-124.627186, 49.108527], [-124.629229, 49.107598], [-124.630593, 49.106802], [-124.631728, 49.105995], [-124.632959, 49.10496], [-124.633795, 49.103976], [-124.634385, 49.103132], [-124.635107, 49.101421], [-124.634979, 49.100508], [-124.634575, 49.09936], [-124.634091, 49.098627], [-124.633174, 49.097478], [-124.631484, 49.096279], [-124.630508, 49.095825], [-124.629176, 49.095345], [-124.629048, 49.097174], [-124.625173, 49.097272], [-124.624467, 49.098749], [-124.622921, 49.098762], [-124.620282, 49.099619], [-124.616292, 49.104114], [-124.607383, 49.103407], [-124.60785, 49.097353], [-124.608644, 49.096932], [-124.608691, 49.090697], [-124.611208, 49.090324], [-124.611797, 49.081261], [-124.606495, 49.081023], [-124.605921, 49.079374], [-124.603323, 49.079128], [-124.602804, 49.07564], [-124.597334, 49.075596], [-124.596816, 49.077306], [-124.597024, 49.079094], [-124.598818, 49.0822], [-124.599317, 49.084097], [-124.599912, 49.086956], [-124.599694, 49.088555], [-124.598766, 49.089941], [-124.595284, 49.096526], [-124.595123, 49.098191], [-124.595426, 49.099163], [-124.596659, 49.101611], [-124.599023, 49.104073], [-124.599313, 49.10557], [-124.598983, 49.106344], [-124.597644, 49.106415], [-124.598593, 49.109001], [-124.58869, 49.115255], [-124.584321, 49.112715], [-124.59047, 49.10742], [-124.588628, 49.105983], [-124.587018, 49.10562], [-124.583583, 49.104076], [-124.582168, 49.103734], [-124.579334, 49.10695], [-124.577391, 49.107756], [-124.577325, 49.10921], [-124.580089, 49.114248], [-124.578956, 49.11653], [-124.577928, 49.120159], [-124.577433, 49.124024], [-124.577841, 49.124955], [-124.578774, 49.126342], [-124.578851, 49.127656], [-124.578319, 49.129108], [-124.578504, 49.131465], [-124.5809, 49.131789], [-124.581043, 49.135245], [-124.582485, 49.135229], [-124.582555, 49.140058], [-124.584662, 49.140133], [-124.585419, 49.141681], [-124.589933, 49.141798], [-124.589914, 49.146948], [-124.594047, 49.147093], [-124.594105, 49.1481], [-124.59546, 49.148055], [-124.59554, 49.152178], [-124.590136, 49.152093], [-124.590467, 49.159665], [-124.613322, 49.159911], [-124.613455, 49.158112], [-124.624421, 49.158157], [-124.629273, 49.158245], [-124.629586, 49.162211], [-124.634912, 49.162495], [-124.634977, 49.165675], [-124.640469, 49.165928], [-124.640644, 49.171894], [-124.646881, 49.172122], [-124.646924, 49.173834], [-124.65649, 49.173861], [-124.653718, 49.179132], [-124.665323, 49.181072], [-124.67012, 49.173126], [-124.672667, 49.172843], [-124.672587, 49.171584], [-124.688292, 49.171556], [-124.68861, 49.174801], [-124.698787, 49.175039], [-124.697739, 49.176038], [-124.698836, 49.176514], [-124.699245, 49.178772], [-124.694582, 49.18076], [-124.695633, 49.184429], [-124.69806, 49.188347], [-124.697318, 49.191287], [-124.689588, 49.197332], [-124.683249, 49.200069], [-124.680303, 49.205602], [-124.688386, 49.201076], [-124.692949, 49.205474], [-124.688122, 49.211333], [-124.681902, 49.215806], [-124.677406, 49.215322], [-124.676468, 49.217829], [-124.67486, 49.220458], [-124.674736, 49.220556], [-124.679799, 49.220887], [-124.679656, 49.227678], [-124.67414, 49.227478], [-124.674175, 49.224168], [-124.663075, 49.224023], [-124.663125, 49.227395], [-124.668287, 49.227624], [-124.668405, 49.231346], [-124.673927, 49.231251], [-124.674238, 49.233893], [-124.674348, 49.247157], [-124.677074, 49.249797], [-124.677198, 49.25764], [-124.68782, 49.257646], [-124.687718, 49.267807], [-124.693089, 49.267945], [-124.693083, 49.274822], [-124.69844, 49.275016], [-124.698355, 49.28217], [-124.705292, 49.282174], [-124.705454, 49.278851], [-124.709295, 49.278806], [-124.709755, 49.278885], [-124.709756, 49.278835], [-124.714734, 49.278823], [-124.715016, 49.275161], [-124.724282, 49.275112], [-124.742233, 49.275128], [-124.742229, 49.275609], [-124.747493, 49.275513], [-124.747263, 49.289698], [-124.753345, 49.28971], [-124.753225, 49.300957], [-124.759144, 49.300986], [-124.759121, 49.294036], [-124.764952, 49.29388], [-124.765044, 49.290425], [-124.770702, 49.290449], [-124.770869, 49.292301], [-124.771593, 49.29239], [-124.771953, 49.296168], [-124.771429, 49.296224], [-124.771816, 49.298311], [-124.775658, 49.29889], [-124.776355, 49.299114], [-124.777725, 49.299776], [-124.779714, 49.300366], [-124.781212, 49.301072], [-124.782311, 49.301406], [-124.783613, 49.302051], [-124.78734, 49.303532], [-124.788625, 49.304106], [-124.789695, 49.304386], [-124.790841, 49.304854]]]]}, "properties": {"name": "Alberni-Clayoquot F", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alberni-Clayoquot F", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923039", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.203305, 49.184258], [-125.206851, 49.187767], [-125.212805, 49.191122], [-125.217386, 49.193178], [-125.227276, 49.192965], [-125.227944, 49.183947], [-125.230588, 49.181578], [-125.231767, 49.179504], [-125.22613, 49.173923], [-125.210531, 49.161196], [-125.209139, 49.158664], [-125.208944, 49.157717], [-125.213883, 49.149186], [-125.212621, 49.146314], [-125.209898, 49.144722], [-125.206946, 49.143361], [-125.205354, 49.142794], [-125.201888, 49.140611], [-125.198638, 49.139647], [-125.195686, 49.138285], [-125.194554, 49.13507], [-125.195302, 49.133606], [-125.193945, 49.131354], [-125.194612, 49.128461], [-125.187409, 49.128923], [-125.180571, 49.127833], [-125.175287, 49.125312], [-125.170372, 49.121497], [-125.165446, 49.119133], [-125.160389, 49.118823], [-125.158, 49.116382], [-125.14989, 49.115323], [-125.147056, 49.116053], [-125.13944, 49.114814], [-125.130458, 49.107881], [-125.130119, 49.103485], [-125.12941, 49.098795], [-125.128476, 49.097257], [-125.125407, 49.097225], [-125.11455, 49.097719], [-125.109717, 49.096184], [-125.109717, 49.093263], [-125.107977, 49.091304], [-125.104527, 49.09084], [-125.104512, 49.089985], [-125.104323, 49.089394], [-125.104426, 49.089222], [-125.104711, 49.089172], [-125.105187, 49.089397], [-125.106223, 49.089314], [-125.106585, 49.089398], [-125.107327, 49.08916], [-125.107432, 49.089041], [-125.107446, 49.088734], [-125.107333, 49.088331], [-125.107711, 49.087884], [-125.107337, 49.086487], [-125.107628, 49.08561], [-125.107557, 49.084863], [-125.107407, 49.08457], [-125.107416, 49.083841], [-125.107571, 49.083596], [-125.108129, 49.083207], [-125.108263, 49.082504], [-125.108405, 49.082267], [-125.108327, 49.081737], [-125.108823, 49.081179], [-125.108924, 49.080926], [-125.108442, 49.079936], [-125.108282, 49.07903], [-125.107976, 49.078623], [-125.107581, 49.078332], [-125.107545, 49.077838], [-125.107244, 49.07751], [-125.107031, 49.076633], [-125.106812, 49.07635], [-125.106371, 49.075971], [-125.106253, 49.075766], [-125.106181, 49.075363], [-125.105942, 49.075205], [-125.105023, 49.074853], [-125.1041, 49.074411], [-125.104071, 49.073937], [-125.105764, 49.054106], [-125.114663, 49.053881], [-125.141421, 49.053868], [-125.140551, 49.053319], [-125.14018, 49.052957], [-125.139904, 49.052269], [-125.139605, 49.052031], [-125.139267, 49.051497], [-125.138592, 49.049801], [-125.13855, 49.049127], [-125.138223, 49.048845], [-125.137554, 49.047922], [-125.137633, 49.04784], [-125.138378, 49.047682], [-125.138712, 49.047459], [-125.138718, 49.047297], [-125.138432, 49.046988], [-125.138237, 49.046901], [-125.1377, 49.046857], [-125.137583, 49.046689], [-125.138154, 49.046256], [-125.138148, 49.046112], [-125.137938, 49.04599], [-125.13789, 49.045883], [-125.13834, 49.045514], [-125.138531, 49.045466], [-125.13901, 49.045493], [-125.139595, 49.045743], [-125.139827, 49.045739], [-125.140228, 49.046099], [-125.140391, 49.046106], [-125.140522, 49.045995], [-125.140562, 49.045581], [-125.140435, 49.045223], [-125.14033, 49.045018], [-125.139974, 49.044657], [-125.139856, 49.044145], [-125.139709, 49.043896], [-125.139841, 49.043804], [-125.140407, 49.043623], [-125.140423, 49.043316], [-125.140347, 49.043174], [-125.140219, 49.043069], [-125.139998, 49.043019], [-125.139288, 49.04305], [-125.13897, 49.042966], [-125.131856, 49.038116], [-125.125868, 49.0333], [-125.120109, 49.026159], [-125.114579, 49.016694], [-125.108795, 48.981804], [-125.105204, 48.953973], [-125.208533, 48.877307], [-125.280781, 48.821217], [-125.374761, 48.747654], [-125.337342, 48.729589], [-125.18472, 48.637625], [-125.097122, 48.596941], [-125.029858, 48.569665], [-124.98259, 48.553103], [-124.891024, 48.529398], [-124.842934, 48.521572], [-124.845094, 48.547705], [-124.855227, 48.662307], [-124.8521, 48.668343], [-124.851869, 48.670755], [-124.852117, 48.671092], [-124.852177, 48.671444], [-124.85174, 48.672368], [-124.852249, 48.672548], [-124.852495, 48.672716], [-124.852578, 48.673046], [-124.852336, 48.67349], [-124.852728, 48.67411], [-124.852911, 48.674634], [-124.852737, 48.675384], [-124.852771, 48.675699], [-124.852568, 48.676488], [-124.852502, 48.677192], [-124.852985, 48.678062], [-124.853122, 48.678582], [-124.853437, 48.679056], [-124.854157, 48.679656], [-124.854647, 48.680557], [-124.854567, 48.681631], [-124.854981, 48.682635], [-124.854964, 48.683246], [-124.853421, 48.684772], [-124.849746, 48.687432], [-124.847333, 48.687874], [-124.838585, 48.686537], [-124.819775, 48.689417], [-124.809799, 48.693192], [-124.801968, 48.696575], [-124.79407, 48.707019], [-124.793875, 48.70847], [-124.78801, 48.717006], [-124.784172, 48.721291], [-124.781133, 48.722599], [-124.774898, 48.730445], [-124.773444, 48.731685], [-124.757995, 48.739639], [-124.756884, 48.740598], [-124.749415, 48.74323], [-124.741608, 48.744845], [-124.736624, 48.7505], [-124.735686, 48.753819], [-124.738467, 48.758895], [-124.730872, 48.770721], [-124.727917, 48.773107], [-124.720399, 48.77964], [-124.707935, 48.786081], [-124.703778, 48.790025], [-124.698549, 48.793554], [-124.693646, 48.796088], [-124.692235, 48.799032], [-124.690637, 48.802829], [-124.689232, 48.804583], [-124.685411, 48.808434], [-124.683418, 48.811031], [-124.678964, 48.813426], [-124.68166, 48.820453], [-124.681898, 48.821444], [-124.681857, 48.822313], [-124.681409, 48.823443], [-124.681099, 48.82386], [-124.680418, 48.824324], [-124.679248, 48.824985], [-124.678185, 48.825466], [-124.677475, 48.825408], [-124.677156, 48.825465], [-124.676159, 48.826019], [-124.674214, 48.826814], [-124.673167, 48.827423], [-124.671805, 48.827893], [-124.670201, 48.82832], [-124.669517, 48.828675], [-124.669249, 48.829335], [-124.669409, 48.829877], [-124.670336, 48.830673], [-124.670872, 48.830994], [-124.671467, 48.831646], [-124.672438, 48.83313], [-124.672725, 48.833913], [-124.672709, 48.834024], [-124.672321, 48.83454], [-124.672008, 48.835695], [-124.671707, 48.837098], [-124.671831, 48.837784], [-124.671594, 48.838457], [-124.669634, 48.840841], [-124.669106, 48.841296], [-124.668246, 48.841586], [-124.666982, 48.841621], [-124.666181, 48.841473], [-124.665456, 48.841201], [-124.664521, 48.840462], [-124.663761, 48.83914], [-124.663325, 48.838702], [-124.66151, 48.83743], [-124.660782, 48.837149], [-124.659968, 48.837039], [-124.659038, 48.837031], [-124.657666, 48.837219], [-124.656664, 48.837629], [-124.654848, 48.838928], [-124.654662, 48.839263], [-124.654387, 48.839479], [-124.654011, 48.839694], [-124.653679, 48.839751], [-124.651641, 48.841756], [-124.651091, 48.842454], [-124.650558, 48.842604], [-124.650136, 48.842845], [-124.649595, 48.843171], [-124.649309, 48.843498], [-124.649178, 48.844185], [-124.649332, 48.844616], [-124.649238, 48.845484], [-124.649458, 48.847233], [-124.652534, 48.850495], [-124.65393, 48.852471], [-124.654442, 48.853812], [-124.654777, 48.854049], [-124.654956, 48.85449], [-124.654968, 48.854903], [-124.654751, 48.855215], [-124.654703, 48.855876], [-124.654266, 48.85646], [-124.650636, 48.858767], [-124.649947, 48.859344], [-124.650117, 48.859872], [-124.651035, 48.860825], [-124.653366, 48.86171], [-124.653859, 48.86203], [-124.654082, 48.86238], [-124.654101, 48.862862], [-124.653344, 48.864493], [-124.653258, 48.866489], [-124.652847, 48.867351], [-124.651699, 48.868321], [-124.650953, 48.868537], [-124.650518, 48.86854], [-124.649539, 48.868359], [-124.646272, 48.867519], [-124.645172, 48.867322], [-124.644509, 48.867095], [-124.644362, 48.867197], [-124.644065, 48.867174], [-124.643469, 48.866897], [-124.643257, 48.866672], [-124.64222, 48.86627], [-124.640511, 48.865502], [-124.639946, 48.864769], [-124.639921, 48.863815], [-124.640273, 48.862435], [-124.640191, 48.86198], [-124.640021, 48.861687], [-124.639495, 48.8616], [-124.638862, 48.861701], [-124.637952, 48.862238], [-124.637567, 48.862564], [-124.636602, 48.863843], [-124.634524, 48.865378], [-124.631125, 48.867508], [-124.630126, 48.86827], [-124.624179, 48.871978], [-124.622897, 48.873184], [-124.622377, 48.87381], [-124.621494, 48.874657], [-124.620265, 48.874969], [-124.619066, 48.875072], [-124.618709, 48.87517], [-124.617794, 48.875848], [-124.617293, 48.876496], [-124.616365, 48.876822], [-124.615709, 48.876805], [-124.61347, 48.876296], [-124.611345, 48.875992], [-124.610417, 48.875973], [-124.609988, 48.876071], [-124.609691, 48.876227], [-124.608055, 48.878249], [-124.607021, 48.879014], [-124.605925, 48.879585], [-124.605132, 48.879814], [-124.604481, 48.879895], [-124.602065, 48.879824], [-124.600689, 48.879907], [-124.599133, 48.879897], [-124.597697, 48.879583], [-124.596333, 48.878975], [-124.594262, 48.878376], [-124.593081, 48.878259], [-124.592099, 48.878245], [-124.590941, 48.878437], [-124.588877, 48.879011], [-124.588292, 48.879346], [-124.58782, 48.879854], [-124.587719, 48.880333], [-124.589226, 48.881529], [-124.58949, 48.881952], [-124.589508, 48.882449], [-124.589382, 48.883158], [-124.588977, 48.883974], [-124.588686, 48.884262], [-124.585228, 48.88617], [-124.58455, 48.886816], [-124.584044, 48.887461], [-124.583014, 48.888261], [-124.582043, 48.888809], [-124.580329, 48.889398], [-124.57887, 48.889822], [-124.578211, 48.889806], [-124.576744, 48.889426], [-124.576337, 48.889445], [-124.575877, 48.889214], [-124.57559, 48.88876], [-124.575625, 48.888539], [-124.575178, 48.888308], [-124.5742, 48.888305], [-124.573298, 48.888545], [-124.572116, 48.889231], [-124.571931, 48.889482], [-124.571778, 48.890188], [-124.571798, 48.894025], [-124.57165, 48.895227], [-124.571335, 48.895737], [-124.570606, 48.896019], [-124.57048, 48.896287], [-124.570563, 48.896597], [-124.571095, 48.897106], [-124.570994, 48.897809], [-124.57054, 48.898387], [-124.569988, 48.898597], [-124.569471, 48.898711], [-124.56857, 48.898715], [-124.568014, 48.898607], [-124.566544, 48.89811], [-124.564608, 48.89758], [-124.563565, 48.897077], [-124.562034, 48.896147], [-124.560691, 48.895676], [-124.560338, 48.895451], [-124.559869, 48.894869], [-124.559377, 48.894835], [-124.558815, 48.894931], [-124.558501, 48.895196], [-124.558382, 48.895647], [-124.558064, 48.895864], [-124.557146, 48.896247], [-124.556417, 48.896738], [-124.554817, 48.897447], [-124.554208, 48.897808], [-124.553875, 48.898585], [-124.552377, 48.899925], [-124.552226, 48.900179], [-124.551872, 48.90041], [-124.550637, 48.900338], [-124.550267, 48.900468], [-124.550171, 48.900732], [-124.550219, 48.901417], [-124.550637, 48.902287], [-124.550672, 48.90266], [-124.550568, 48.90482], [-124.550778, 48.905779], [-124.551207, 48.906696], [-124.551043, 48.907687], [-124.550753, 48.908049], [-124.549987, 48.908488], [-124.548656, 48.908887], [-124.546815, 48.909696], [-124.545744, 48.909938], [-124.545344, 48.91025], [-124.545221, 48.910462], [-124.545276, 48.911857], [-124.544975, 48.912402], [-124.54496, 48.912712], [-124.545128, 48.915053], [-124.545052, 48.916992], [-124.545897, 48.917843], [-124.546079, 48.918285], [-124.54614, 48.918867], [-124.545833, 48.919953], [-124.545853, 48.920753], [-124.546249, 48.92179], [-124.547498, 48.923614], [-124.547583, 48.924499], [-124.547763, 48.924906], [-124.548077, 48.925234], [-124.548406, 48.925383], [-124.549812, 48.925668], [-124.55021, 48.926064], [-124.550039, 48.926458], [-124.549508, 48.926659], [-124.547098, 48.926746], [-124.546156, 48.926948], [-124.545716, 48.92724], [-124.545719, 48.927586], [-124.546255, 48.928526], [-124.546611, 48.928806], [-124.548815, 48.930053], [-124.549416, 48.930178], [-124.549691, 48.930348], [-124.549787, 48.930553], [-124.549732, 48.930727], [-124.549942, 48.931079], [-124.549786, 48.932097], [-124.549501, 48.932473], [-124.548826, 48.932793], [-124.548414, 48.932842], [-124.5456, 48.932896], [-124.544393, 48.933097], [-124.542118, 48.933658], [-124.539922, 48.93399], [-124.539345, 48.934394], [-124.603021, 48.985223], [-124.638252, 49.014321], [-124.637539, 49.014404], [-124.6334, 49.013958], [-124.633137, 49.01488], [-124.628935, 49.015059], [-124.628629, 49.016084], [-124.625846, 49.015994], [-124.625826, 49.014139], [-124.621787, 49.013958], [-124.621729, 49.014973], [-124.619325, 49.015089], [-124.618756, 49.01237], [-124.617852, 49.012112], [-124.617536, 49.011253], [-124.616746, 49.011331], [-124.616069, 49.010241], [-124.606843, 49.010166], [-124.606653, 49.011016], [-124.605622, 49.010966], [-124.6059, 49.012897], [-124.607377, 49.013083], [-124.607349, 49.014046], [-124.605684, 49.014101], [-124.605558, 49.014797], [-124.601741, 49.014569], [-124.601703, 49.017353], [-124.605209, 49.01752], [-124.605038, 49.019921], [-124.6026, 49.019917], [-124.602692, 49.021095], [-124.603645, 49.02113], [-124.603418, 49.02576], [-124.606091, 49.026107], [-124.60581, 49.034957], [-124.61114, 49.035095], [-124.611417, 49.037633], [-124.613895, 49.037447], [-124.61422, 49.04027], [-124.615359, 49.040366], [-124.615584, 49.048119], [-124.618326, 49.048008], [-124.61847, 49.048864], [-124.624459, 49.048843], [-124.6247, 49.051568], [-124.630404, 49.051524], [-124.630054, 49.059449], [-124.628196, 49.059662], [-124.627972, 49.061391], [-124.630028, 49.061406], [-124.630072, 49.063989], [-124.631516, 49.064059], [-124.631499, 49.068182], [-124.633377, 49.06822], [-124.633207, 49.070017], [-124.637133, 49.07029], [-124.637421, 49.0717], [-124.6389, 49.071886], [-124.638695, 49.07556], [-124.635774, 49.075389], [-124.635377, 49.086198], [-124.629832, 49.086048], [-124.629176, 49.095345], [-124.630508, 49.095825], [-124.631484, 49.096279], [-124.633174, 49.097478], [-124.634091, 49.098627], [-124.634575, 49.09936], [-124.634979, 49.100508], [-124.635107, 49.101421], [-124.634385, 49.103132], [-124.633795, 49.103976], [-124.632959, 49.10496], [-124.631728, 49.105995], [-124.630593, 49.106802], [-124.629229, 49.107598], [-124.627186, 49.108527], [-124.629508, 49.116864], [-124.644374, 49.115078], [-124.645964, 49.120117], [-124.646059, 49.120099], [-124.646256, 49.121298], [-124.657972, 49.119431], [-124.660907, 49.125511], [-124.669271, 49.124226], [-124.670511, 49.128093], [-124.679847, 49.126975], [-124.68209, 49.133357], [-124.682014, 49.133437], [-124.715412, 49.129534], [-124.714907, 49.12641], [-124.725631, 49.125474], [-124.728485, 49.138611], [-124.744957, 49.136921], [-124.744653, 49.13574], [-124.742538, 49.124765], [-124.740683, 49.124933], [-124.739237, 49.120026], [-124.740209, 49.119993], [-124.747595, 49.119278], [-124.746682, 49.115597], [-124.761509, 49.114584], [-124.776143, 49.126493], [-124.800815, 49.146378], [-124.820078, 49.146093], [-124.82552, 49.152627], [-124.841048, 49.152543], [-124.841057, 49.145353], [-124.890304, 49.145628], [-124.890179, 49.132609], [-124.900323, 49.132854], [-124.901825, 49.152409], [-124.91821, 49.152248], [-124.91825, 49.149417], [-124.920841, 49.149188], [-124.928309, 49.149253], [-124.938518, 49.149417], [-124.938494, 49.149654], [-124.938998, 49.149425], [-124.995401, 49.150274], [-125.000012, 49.153507], [-124.999979, 49.14654], [-125.012779, 49.154116], [-125.029457, 49.163654], [-125.03707, 49.168581], [-125.041646, 49.170669], [-125.04478, 49.171852], [-125.041701, 49.165553], [-125.041408, 49.142648], [-125.060473, 49.145082], [-125.069145, 49.143928], [-125.072744, 49.145144], [-125.072477, 49.148274], [-125.072784, 49.152853], [-125.075277, 49.157819], [-125.079458, 49.162603], [-125.087384, 49.166125], [-125.099025, 49.168092], [-125.105731, 49.169953], [-125.109498, 49.172014], [-125.113238, 49.176814], [-125.121229, 49.183039], [-125.131127, 49.187482], [-125.138232, 49.188737], [-125.14427, 49.190092], [-125.148983, 49.194677], [-125.153462, 49.196621], [-125.156495, 49.197445], [-125.160141, 49.197126], [-125.164673, 49.195714], [-125.164516, 49.192132], [-125.168045, 49.186699], [-125.172467, 49.184114], [-125.190137, 49.188188], [-125.195869, 49.18814], [-125.200553, 49.184543], [-125.203305, 49.184258]], [[-125.047171, 49.018264], [-125.05799, 49.018687], [-125.057043, 49.031134], [-125.02944, 49.030153], [-125.029884, 49.027133], [-125.03031, 49.027126], [-125.030322, 49.027072], [-125.030256, 49.026488], [-125.030117, 49.026103], [-125.030345, 49.025982], [-125.030537, 49.025961], [-125.031265, 49.026074], [-125.03132, 49.025705], [-125.031918, 49.025307], [-125.032023, 49.024829], [-125.031864, 49.023329], [-125.031939, 49.023165], [-125.032247, 49.022989], [-125.032267, 49.022791], [-125.032157, 49.02245], [-125.033133, 49.02086], [-125.033585, 49.020545], [-125.033616, 49.020293], [-125.033902, 49.019955], [-125.034386, 49.019757], [-125.034478, 49.019324], [-125.034872, 49.018921], [-125.035432, 49.018903], [-125.035539, 49.018829], [-125.035586, 49.018656], [-125.035709, 49.018609], [-125.036176, 49.018682], [-125.036183, 49.018871], [-125.036339, 49.019012], [-125.036085, 49.019485], [-125.03679, 49.019652], [-125.036875, 49.019713], [-125.036813, 49.019877], [-125.036897, 49.019938], [-125.03746, 49.019982], [-125.037528, 49.019964], [-125.037601, 49.019764], [-125.037779, 49.019751], [-125.038142, 49.019934], [-125.039315, 49.020174], [-125.039524, 49.020251], [-125.039507, 49.020549], [-125.039607, 49.020654], [-125.041646, 49.020646], [-125.041875, 49.020587], [-125.042387, 49.020723], [-125.042604, 49.020674], [-125.04262, 49.020385], [-125.042725, 49.020276], [-125.043889, 49.019985], [-125.044115, 49.01981], [-125.044764, 49.019646], [-125.044974, 49.019417], [-125.045664, 49.019252], [-125.045756, 49.019125], [-125.045789, 49.018611], [-125.045946, 49.01842], [-125.046162, 49.018361], [-125.046572, 49.018363], [-125.046907, 49.01852], [-125.047171, 49.018264]], [[-125.003952, 48.91442], [-125.004159, 48.914794], [-125.004656, 48.91529], [-125.005145, 48.915465], [-125.001288, 48.915687], [-125.002077, 48.908814], [-124.983465, 48.908664], [-124.969584, 48.908891], [-124.969493, 48.900632], [-124.969145, 48.887644], [-124.984067, 48.887558], [-125.001125, 48.887664], [-125.001222, 48.894657], [-125.019209, 48.894504], [-125.018812, 48.895331], [-125.017299, 48.896042], [-125.017161, 48.896341], [-125.016937, 48.896543], [-125.016928, 48.897352], [-125.017337, 48.897363], [-125.017449, 48.897433], [-125.017496, 48.897567], [-125.017034, 48.898628], [-125.016671, 48.898779], [-125.016358, 48.898758], [-125.015447, 48.899266], [-125.011344, 48.900743], [-125.012655, 48.902223], [-125.012608, 48.90226], [-125.012353, 48.902362], [-125.011891, 48.902442], [-125.010664, 48.902401], [-125.010401, 48.902334], [-125.009956, 48.902503], [-125.009907, 48.90263], [-125.009459, 48.902666], [-125.009387, 48.902909], [-125.009559, 48.90314], [-125.009535, 48.903221], [-125.009024, 48.903761], [-125.008722, 48.904711], [-125.00881, 48.904845], [-125.009198, 48.905], [-125.009283, 48.905097], [-125.009159, 48.905729], [-125.009306, 48.906014], [-125.009571, 48.906181], [-125.010364, 48.906221], [-125.010496, 48.90639], [-125.010589, 48.906703], [-125.010942, 48.906984], [-125.010922, 48.907156], [-125.010069, 48.908017], [-125.009842, 48.908488], [-125.008873, 48.909189], [-125.008679, 48.909435], [-125.008632, 48.909634], [-125.008696, 48.909848], [-125.008897, 48.910079], [-125.009133, 48.910191], [-125.009149, 48.910281], [-125.008294, 48.911052], [-125.007055, 48.911496], [-125.006775, 48.911673], [-125.006715, 48.911845], [-125.006818, 48.91205], [-125.006944, 48.91211], [-125.007422, 48.91212], [-125.007591, 48.912244], [-125.007554, 48.912316], [-125.00734, 48.912436], [-125.006907, 48.912534], [-125.006345, 48.912832], [-125.005959, 48.912748], [-125.005042, 48.912332], [-125.004522, 48.912288], [-125.003953, 48.912415], [-125.003701, 48.912608], [-125.003826, 48.912983], [-125.003759, 48.913362], [-125.003952, 48.91442]], [[-125.105371, 48.83804], [-125.105306, 48.837723], [-125.103182, 48.837953], [-125.102846, 48.836264], [-125.108259, 48.83561], [-125.107816, 48.836303], [-125.107448, 48.836644], [-125.106478, 48.836913], [-125.106457, 48.83704], [-125.107044, 48.837047], [-125.107115, 48.837108], [-125.107035, 48.837199], [-125.106142, 48.837639], [-125.106158, 48.837729], [-125.106268, 48.837745], [-125.107277, 48.83742], [-125.107631, 48.837414], [-125.108061, 48.837595], [-125.108158, 48.837721], [-125.105371, 48.83804]], [[-125.127263, 48.79856], [-125.128443, 48.807265], [-125.117072, 48.806962], [-125.116948, 48.795215], [-125.117087, 48.793119], [-125.119777, 48.794493], [-125.123529, 48.795971], [-125.124767, 48.796559], [-125.125341, 48.796964], [-125.12574, 48.797388], [-125.125951, 48.79787], [-125.126196, 48.798172], [-125.126559, 48.798407], [-125.126767, 48.798466], [-125.127178, 48.798452], [-125.127263, 48.79856]]]]}, "properties": {"name": "Alberni-Clayoquot A", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alberni-Clayoquot A", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923047", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.556698, 49.539777], [-126.557057, 49.539821], [-126.558146, 49.541001], [-126.558729, 49.541444], [-126.558918, 49.541483], [-126.614458, 49.540446], [-126.607238, 49.527995], [-126.617543, 49.456936], [-126.624575, 49.426721], [-126.62862, 49.399604], [-126.623466, 49.384112], [-126.613003, 49.366587], [-126.593996, 49.347994], [-126.572677, 49.337652], [-126.508153, 49.319587], [-126.430371, 49.302605], [-126.373549, 49.290042], [-126.297405, 49.26854], [-126.251477, 49.25102], [-126.17479, 49.184953], [-126.089301, 49.122702], [-125.967599, 49.044568], [-125.923524, 49.006407], [-125.858294, 48.961968], [-125.799775, 48.925642], [-125.750888, 48.901269], [-125.627839, 48.849154], [-125.500298, 48.80805], [-125.374761, 48.747654], [-125.280781, 48.821217], [-125.208533, 48.877307], [-125.105204, 48.953973], [-125.108795, 48.981804], [-125.114579, 49.016694], [-125.120109, 49.026159], [-125.125868, 49.0333], [-125.131856, 49.038116], [-125.13897, 49.042966], [-125.139288, 49.04305], [-125.139998, 49.043019], [-125.140219, 49.043069], [-125.140347, 49.043174], [-125.140423, 49.043316], [-125.140407, 49.043623], [-125.139841, 49.043804], [-125.139709, 49.043896], [-125.139856, 49.044145], [-125.139974, 49.044657], [-125.14033, 49.045018], [-125.140435, 49.045223], [-125.140562, 49.045581], [-125.140522, 49.045995], [-125.140391, 49.046106], [-125.140228, 49.046099], [-125.139827, 49.045739], [-125.139595, 49.045743], [-125.13901, 49.045493], [-125.138531, 49.045466], [-125.13834, 49.045514], [-125.13789, 49.045883], [-125.137938, 49.04599], [-125.138148, 49.046112], [-125.138154, 49.046256], [-125.137583, 49.046689], [-125.1377, 49.046857], [-125.138237, 49.046901], [-125.138432, 49.046988], [-125.138718, 49.047297], [-125.138712, 49.047459], [-125.138378, 49.047682], [-125.137633, 49.04784], [-125.137554, 49.047922], [-125.138223, 49.048845], [-125.13855, 49.049127], [-125.138592, 49.049801], [-125.139267, 49.051497], [-125.139605, 49.052031], [-125.139904, 49.052269], [-125.14018, 49.052957], [-125.140551, 49.053319], [-125.141421, 49.053868], [-125.114663, 49.053881], [-125.105764, 49.054106], [-125.104071, 49.073937], [-125.1041, 49.074411], [-125.105023, 49.074853], [-125.105942, 49.075205], [-125.106181, 49.075363], [-125.106253, 49.075766], [-125.106371, 49.075971], [-125.106812, 49.07635], [-125.107031, 49.076633], [-125.107244, 49.07751], [-125.107545, 49.077838], [-125.107581, 49.078332], [-125.107976, 49.078623], [-125.108282, 49.07903], [-125.108442, 49.079936], [-125.108924, 49.080926], [-125.108823, 49.081179], [-125.108327, 49.081737], [-125.108405, 49.082267], [-125.108263, 49.082504], [-125.108129, 49.083207], [-125.107571, 49.083596], [-125.107416, 49.083841], [-125.107407, 49.08457], [-125.107557, 49.084863], [-125.107628, 49.08561], [-125.107337, 49.086487], [-125.107711, 49.087884], [-125.107333, 49.088331], [-125.107446, 49.088734], [-125.107432, 49.089041], [-125.107327, 49.08916], [-125.106585, 49.089398], [-125.106223, 49.089314], [-125.105187, 49.089397], [-125.104711, 49.089172], [-125.104426, 49.089222], [-125.104323, 49.089394], [-125.104512, 49.089985], [-125.104527, 49.09084], [-125.107977, 49.091304], [-125.109717, 49.093263], [-125.109717, 49.096184], [-125.11455, 49.097719], [-125.125407, 49.097225], [-125.128476, 49.097257], [-125.12941, 49.098795], [-125.130119, 49.103485], [-125.130458, 49.107881], [-125.13944, 49.114814], [-125.147056, 49.116053], [-125.14989, 49.115323], [-125.158, 49.116382], [-125.160389, 49.118823], [-125.165446, 49.119133], [-125.170372, 49.121497], [-125.175287, 49.125312], [-125.180571, 49.127833], [-125.187409, 49.128923], [-125.194612, 49.128461], [-125.193945, 49.131354], [-125.195302, 49.133606], [-125.194554, 49.13507], [-125.195686, 49.138285], [-125.198638, 49.139647], [-125.201888, 49.140611], [-125.205354, 49.142794], [-125.206946, 49.143361], [-125.209898, 49.144722], [-125.212621, 49.146314], [-125.213883, 49.149186], [-125.208944, 49.157717], [-125.209139, 49.158664], [-125.210531, 49.161196], [-125.22613, 49.173923], [-125.231767, 49.179504], [-125.230588, 49.181578], [-125.227944, 49.183947], [-125.22726, 49.193131], [-125.229813, 49.194287], [-125.236596, 49.196529], [-125.246966, 49.1984], [-125.253466, 49.197628], [-125.260978, 49.195048], [-125.272126, 49.195343], [-125.276084, 49.197949], [-125.276058, 49.206176], [-125.279341, 49.209607], [-125.28667, 49.212207], [-125.286468, 49.214409], [-125.283327, 49.21744], [-125.28063, 49.220728], [-125.291448, 49.226258], [-125.292598, 49.230215], [-125.290103, 49.233001], [-125.292537, 49.23718], [-125.29558, 49.240703], [-125.307313, 49.246027], [-125.321597, 49.249812], [-125.321411, 49.249848], [-125.321731, 49.250371], [-125.325064, 49.254963], [-125.326963, 49.258827], [-125.328422, 49.263323], [-125.332037, 49.266745], [-125.33665, 49.269532], [-125.340066, 49.26999], [-125.347869, 49.270274], [-125.347868, 49.279096], [-125.349194, 49.280326], [-125.35053, 49.281751], [-125.350892, 49.281564], [-125.352587, 49.280994], [-125.353962, 49.280323], [-125.354632, 49.285331], [-125.375195, 49.291215], [-125.383576, 49.29269], [-125.388558, 49.295183], [-125.386608, 49.300641], [-125.390263, 49.301296], [-125.411565, 49.304587], [-125.430699, 49.307403], [-125.440293, 49.307376], [-125.450885, 49.306265], [-125.462094, 49.303645], [-125.469396, 49.304473], [-125.475632, 49.307273], [-125.488044, 49.309892], [-125.493349, 49.311898], [-125.501559, 49.317248], [-125.508166, 49.317052], [-125.51598, 49.318684], [-125.525853, 49.322114], [-125.530177, 49.325208], [-125.549453, 49.328383], [-125.555342, 49.331027], [-125.557565, 49.333485], [-125.55668, 49.338295], [-125.554834, 49.342072], [-125.549731, 49.3461], [-125.547232, 49.347356], [-125.545544, 49.349249], [-125.544391, 49.352819], [-125.542331, 49.358614], [-125.541498, 49.360653], [-125.542137, 49.362447], [-125.545528, 49.366641], [-125.545865, 49.369177], [-125.545964, 49.371176], [-125.546603, 49.37297], [-125.548893, 49.374448], [-125.555403, 49.375243], [-125.561419, 49.375756], [-125.566014, 49.377918], [-125.569322, 49.380261], [-125.571865, 49.383368], [-125.572501, 49.387045], [-125.571333, 49.391406], [-125.571143, 49.39524], [-125.57115, 49.398216], [-125.576015, 49.403102], [-125.578046, 49.40766], [-125.580562, 49.410464], [-125.588396, 49.411379], [-125.594462, 49.411399], [-125.597759, 49.412647], [-125.599211, 49.415073], [-125.599535, 49.418399], [-125.592404, 49.425017], [-125.586027, 49.427893], [-125.582423, 49.430352], [-125.577265, 49.433239], [-125.57075, 49.435693], [-125.559241, 49.437981], [-125.556088, 49.439325], [-125.55512, 49.440945], [-125.555942, 49.442671], [-125.560634, 49.443855], [-125.56435, 49.447458], [-125.568968, 49.450715], [-125.580532, 49.455236], [-125.587507, 49.457746], [-125.589321, 49.460035], [-125.58933, 49.463011], [-125.582583, 49.46791], [-125.573753, 49.47265], [-125.566024, 49.476188], [-125.562937, 49.481118], [-125.563271, 49.485538], [-125.56592, 49.490647], [-125.566709, 49.493954], [-125.567045, 49.498376], [-125.584722, 49.496408], [-125.606244, 49.498062], [-125.618811, 49.499486], [-125.632656, 49.498114], [-125.634084, 49.499788], [-125.633954, 49.504534], [-125.634624, 49.511403], [-125.637653, 49.515294], [-125.643119, 49.518847], [-125.65658, 49.512023], [-125.682369, 49.511035], [-125.686932, 49.514338], [-125.692929, 49.514412], [-125.699029, 49.511314], [-125.700741, 49.511142], [-125.704542, 49.512836], [-125.70934, 49.517347], [-125.716074, 49.520641], [-125.722397, 49.520924], [-125.736096, 49.523462], [-125.741068, 49.522518], [-125.74925, 49.517619], [-125.75613, 49.513695], [-125.761041, 49.513224], [-125.766272, 49.515791], [-125.769374, 49.519492], [-125.768541, 49.522336], [-125.770019, 49.52666], [-125.774351, 49.529574], [-125.780993, 49.536652], [-125.784606, 49.539842], [-125.789396, 49.540841], [-125.799477, 49.539639], [-125.807506, 49.539387], [-125.815182, 49.54022], [-125.826097, 49.541542], [-125.836317, 49.54424], [-125.852515, 49.54415], [-125.862213, 49.545465], [-125.866335, 49.545453], [-125.877779, 49.543873], [-125.88433, 49.544662], [-125.888607, 49.546963], [-125.892073, 49.551316], [-125.893255, 49.554495], [-125.897812, 49.557637], [-125.902877, 49.558526], [-125.936685, 49.566809], [-125.939003, 49.568285], [-125.9433, 49.568996], [-125.946691, 49.570849], [-125.949353, 49.573774], [-125.952991, 49.579643], [-125.954196, 49.581234], [-125.958055, 49.583064], [-125.960567, 49.582882], [-125.964876, 49.582002], [-125.965294, 49.583263], [-125.967221, 49.584575], [-125.969693, 49.584884], [-125.976567, 49.580148], [-125.981671, 49.578005], [-125.987053, 49.5775], [-125.991833, 49.580872], [-125.994744, 49.582594], [-125.998841, 49.580683], [-125.999135, 49.577546], [-125.999218, 49.572584], [-126.002237, 49.571092], [-126.007866, 49.571124], [-126.011707, 49.570264], [-126.015661, 49.573797], [-126.025648, 49.576731], [-126.027766, 49.576383], [-126.031114, 49.571263], [-126.037868, 49.567997], [-126.043569, 49.56784], [-126.045512, 49.565175], [-126.04638, 49.55895], [-126.064148, 49.551227], [-126.067873, 49.551838], [-126.071032, 49.554095], [-126.073392, 49.555078], [-126.078122, 49.555455], [-126.082343, 49.557141], [-126.084194, 49.559431], [-126.085363, 49.56151], [-126.088789, 49.564455], [-126.091505, 49.566092], [-126.092107, 49.567284], [-126.094284, 49.56913], [-126.096719, 49.569926], [-126.099616, 49.571493], [-126.101481, 49.571401], [-126.105859, 49.569532], [-126.111772, 49.570399], [-126.113675, 49.567428], [-126.116007, 49.565722], [-126.119487, 49.564998], [-126.122533, 49.565396], [-126.126612, 49.567453], [-126.13141, 49.56923], [-126.139941, 49.570026], [-126.145742, 49.572363], [-126.146093, 49.573811], [-126.145294, 49.575071], [-126.144778, 49.577171], [-126.146637, 49.578666], [-126.15704, 49.572211], [-126.163585, 49.572035], [-126.168857, 49.569812], [-126.174631, 49.56946], [-126.178073, 49.56843], [-126.178862, 49.567963], [-126.175151, 49.565267], [-126.17425, 49.564025], [-126.174482, 49.555014], [-126.179821, 49.550217], [-126.182402, 49.549842], [-126.184405, 49.550963], [-126.186793, 49.554628], [-126.191701, 49.555725], [-126.197401, 49.555559], [-126.200591, 49.554785], [-126.202919, 49.553077], [-126.206825, 49.551227], [-126.210767, 49.552066], [-126.215315, 49.554096], [-126.219676, 49.558577], [-126.221215, 49.559721], [-126.234618, 49.55494], [-126.243757, 49.55374], [-126.249061, 49.554996], [-126.252283, 49.557703], [-126.255019, 49.561074], [-126.255838, 49.563292], [-126.255029, 49.56852], [-126.256995, 49.571718], [-126.26022, 49.57363], [-126.264451, 49.572924], [-126.270179, 49.569081], [-126.276238, 49.571947], [-126.281078, 49.571637], [-126.283909, 49.574179], [-126.282824, 49.576187], [-126.283753, 49.578521], [-126.28777, 49.579964], [-126.292467, 49.583205], [-126.295407, 49.58507], [-126.300607, 49.589383], [-126.308716, 49.592081], [-126.310509, 49.59376], [-126.312191, 49.597704], [-126.314594, 49.600573], [-126.318217, 49.604235], [-126.321987, 49.60514], [-126.324282, 49.604715], [-126.327368, 49.604616], [-126.330923, 49.606082], [-126.334654, 49.605888], [-126.335235, 49.600713], [-126.335003, 49.598091], [-126.336508, 49.59734], [-126.339772, 49.59717], [-126.346628, 49.598769], [-126.349062, 49.597174], [-126.354652, 49.595291], [-126.352099, 49.58991], [-126.352796, 49.586444], [-126.352841, 49.582277], [-126.354396, 49.578155], [-126.3597, 49.577022], [-126.365219, 49.576121], [-126.363025, 49.570599], [-126.363807, 49.569334], [-126.371341, 49.57114], [-126.376927, 49.569257], [-126.380183, 49.562229], [-126.383187, 49.560725], [-126.391937, 49.561732], [-126.398676, 49.561622], [-126.402197, 49.565957], [-126.403994, 49.570016], [-126.407369, 49.571549], [-126.412677, 49.572002], [-126.420145, 49.574786], [-126.427103, 49.574907], [-126.434429, 49.578064], [-126.443027, 49.576261], [-126.449701, 49.577129], [-126.458523, 49.577149], [-126.474184, 49.570316], [-126.485853, 49.558674], [-126.502215, 49.547086], [-126.506536, 49.540377], [-126.556698, 49.539777]], [[-126.478896, 49.387159], [-126.479305, 49.402734], [-126.476098, 49.402722], [-126.475909, 49.402555], [-126.474975, 49.402193], [-126.474753, 49.401981], [-126.474388, 49.401811], [-126.474035, 49.401695], [-126.473203, 49.401542], [-126.472723, 49.401235], [-126.471302, 49.400718], [-126.471068, 49.400695], [-126.469984, 49.400868], [-126.469895, 49.401002], [-126.47009, 49.401249], [-126.470633, 49.401648], [-126.471142, 49.402217], [-126.471157, 49.402469], [-126.470703, 49.403196], [-126.463103, 49.40355], [-126.464474, 49.401864], [-126.465263, 49.40126], [-126.465905, 49.400564], [-126.466426, 49.400117], [-126.467071, 49.399366], [-126.46765, 49.3991], [-126.467694, 49.399037], [-126.467608, 49.398838], [-126.467813, 49.398338], [-126.468403, 49.397829], [-126.468701, 49.397153], [-126.46853, 49.395637], [-126.468446, 49.395428], [-126.468055, 49.394996], [-126.467852, 49.394911], [-126.467079, 49.394912], [-126.466683, 49.39485], [-126.465544, 49.394492], [-126.465058, 49.394032], [-126.465017, 49.393483], [-126.464885, 49.393074], [-126.464374, 49.392568], [-126.463715, 49.392229], [-126.463653, 49.39213], [-126.464458, 49.39203], [-126.464996, 49.391745], [-126.465388, 49.391322], [-126.46557, 49.390751], [-126.465883, 49.390307], [-126.466057, 49.389898], [-126.467356, 49.389008], [-126.467876, 49.388516], [-126.469677, 49.387297], [-126.478896, 49.387159]], [[-126.273171, 49.362887], [-126.273592, 49.368963], [-126.272571, 49.370173], [-126.2725, 49.369997], [-126.271859, 49.369631], [-126.271225, 49.36816], [-126.271067, 49.367266], [-126.27049, 49.366262], [-126.270294, 49.365816], [-126.270199, 49.365283], [-126.269665, 49.364253], [-126.269551, 49.363531], [-126.269639, 49.362957], [-126.26953, 49.362208], [-126.2696, 49.362129], [-126.273171, 49.362887]], [[-126.064826, 49.278343], [-126.065256, 49.278584], [-126.066037, 49.279549], [-126.067128, 49.279721], [-126.067275, 49.279815], [-126.067302, 49.279912], [-126.067441, 49.2879], [-126.066872, 49.287956], [-126.066299, 49.28813], [-126.065985, 49.288101], [-126.057389, 49.289128], [-126.056556, 49.288692], [-126.056474, 49.287951], [-126.05664, 49.287489], [-126.056874, 49.287269], [-126.057032, 49.287157], [-126.057733, 49.286922], [-126.0574, 49.286725], [-126.05763, 49.286335], [-126.05763, 49.285876], [-126.057842, 49.285782], [-126.058008, 49.285787], [-126.058039, 49.285724], [-126.057732, 49.283269], [-126.057887, 49.282716], [-126.057878, 49.282193], [-126.057265, 49.281827], [-126.056821, 49.281681], [-126.056472, 49.281303], [-126.056155, 49.281088], [-126.056089, 49.280808], [-126.055786, 49.280593], [-126.055685, 49.280221], [-126.055615, 49.279086], [-126.055251, 49.278717], [-126.055193, 49.278059], [-126.054518, 49.276944], [-126.054304, 49.276857], [-126.053821, 49.277106], [-126.053359, 49.277229], [-126.052945, 49.277048], [-126.052524, 49.276713], [-126.051708, 49.276566], [-126.051149, 49.276273], [-126.051092, 49.276055], [-126.051183, 49.275931], [-126.050811, 49.275698], [-126.050606, 49.274748], [-126.0502, 49.274413], [-126.050092, 49.274168], [-126.049884, 49.273946], [-126.049455, 49.273755], [-126.049437, 49.273628], [-126.049838, 49.273325], [-126.049757, 49.272863], [-126.049598, 49.272761], [-126.048865, 49.272597], [-126.048224, 49.272275], [-126.048149, 49.272147], [-126.048101, 49.271579], [-126.047896, 49.271304], [-126.047879, 49.271142], [-126.04751, 49.270862], [-126.047439, 49.270707], [-126.047014, 49.270427], [-126.04733, 49.270202], [-126.047469, 49.269727], [-126.047787, 49.2697], [-126.047998, 49.269598], [-126.048075, 49.269482], [-126.048087, 49.268817], [-126.04821, 49.268614], [-126.049408, 49.268562], [-126.053359, 49.266423], [-126.053874, 49.266086], [-126.057705, 49.266547], [-126.057761, 49.26704], [-126.057637, 49.267064], [-126.057605, 49.267135], [-126.057924, 49.267332], [-126.058238, 49.267357], [-126.058546, 49.267716], [-126.05884, 49.26785], [-126.059114, 49.268109], [-126.05925, 49.268831], [-126.058889, 49.269129], [-126.05889, 49.269336], [-126.059401, 49.269528], [-126.059416, 49.269969], [-126.059261, 49.270496], [-126.059742, 49.270743], [-126.059908, 49.270936], [-126.059972, 49.271469], [-126.060099, 49.271678], [-126.06008, 49.27246], [-126.060575, 49.272915], [-126.060599, 49.273194], [-126.061099, 49.273098], [-126.061313, 49.272996], [-126.061464, 49.273009], [-126.061792, 49.273234], [-126.06232, 49.273428], [-126.06301, 49.274065], [-126.064114, 49.274434], [-126.064489, 49.274624], [-126.065056, 49.275259], [-126.065386, 49.275484], [-126.065379, 49.275619], [-126.065183, 49.275901], [-126.065042, 49.276626], [-126.064909, 49.276776], [-126.064729, 49.276834], [-126.06394, 49.276904], [-126.063395, 49.277052], [-126.062593, 49.27758], [-126.061723, 49.277874], [-126.061585, 49.277888], [-126.061196, 49.277717], [-126.060138, 49.277699], [-126.059125, 49.27716], [-126.058441, 49.276891], [-126.058248, 49.276885], [-126.058157, 49.277495], [-126.057589, 49.277804], [-126.056963, 49.277915], [-126.057491, 49.278297], [-126.057553, 49.278856], [-126.057688, 49.27913], [-126.057964, 49.279352], [-126.058608, 49.27963], [-126.058993, 49.279865], [-126.060165, 49.280722], [-126.060454, 49.280721], [-126.060826, 49.280496], [-126.061424, 49.280385], [-126.061748, 49.280232], [-126.06191, 49.280064], [-126.061909, 49.279822], [-126.062453, 49.279485], [-126.062779, 49.279079], [-126.062859, 49.278919], [-126.062872, 49.278461], [-126.062962, 49.27831], [-126.063435, 49.278233], [-126.063949, 49.278381], [-126.064496, 49.278439], [-126.064826, 49.278343]], [[-125.916637, 49.173482], [-125.91747, 49.173442], [-125.917847, 49.173532], [-125.918298, 49.173497], [-125.918641, 49.179381], [-125.901992, 49.17911], [-125.90197, 49.176362], [-125.902488, 49.176528], [-125.903286, 49.177021], [-125.904105, 49.177189], [-125.904431, 49.177128], [-125.904522, 49.177044], [-125.90465, 49.176637], [-125.904582, 49.175936], [-125.904709, 49.175754], [-125.905041, 49.175574], [-125.905089, 49.17524], [-125.905215, 49.17503], [-125.905027, 49.174891], [-125.904679, 49.174801], [-125.904545, 49.174606], [-125.904582, 49.174542], [-125.904828, 49.174509], [-125.904905, 49.174426], [-125.904934, 49.174227], [-125.905468, 49.173521], [-125.905594, 49.173095], [-125.905913, 49.172907], [-125.906333, 49.172816], [-125.906893, 49.172793], [-125.90917, 49.172995], [-125.910627, 49.173039], [-125.911861, 49.172991], [-125.912631, 49.173035], [-125.913006, 49.173106], [-125.9134, 49.173284], [-125.91416, 49.173364], [-125.915203, 49.173842], [-125.916147, 49.173791], [-125.916407, 49.173569], [-125.916637, 49.173482]], [[-125.850108, 49.093758], [-125.855435, 49.093919], [-125.855441, 49.095475], [-125.858944, 49.095518], [-125.858971, 49.097424], [-125.874273, 49.098208], [-125.875375, 49.098218], [-125.875369, 49.101587], [-125.876368, 49.104833], [-125.877146, 49.105919], [-125.878321, 49.106321], [-125.882113, 49.106355], [-125.882665, 49.107528], [-125.884477, 49.109535], [-125.887503, 49.110071], [-125.891343, 49.109819], [-125.894111, 49.113107], [-125.895805, 49.116613], [-125.897321, 49.119528], [-125.899338, 49.120859], [-125.905307, 49.121499], [-125.907651, 49.122967], [-125.907485, 49.125144], [-125.903999, 49.129615], [-125.904195, 49.131352], [-125.905234, 49.132357], [-125.90788, 49.13214], [-125.910519, 49.132593], [-125.910729, 49.134526], [-125.91019, 49.136417], [-125.912687, 49.136591], [-125.914557, 49.137877], [-125.915911, 49.139497], [-125.921585, 49.145399], [-125.925084, 49.149446], [-125.925991, 49.151558], [-125.925973, 49.153455], [-125.925204, 49.154686], [-125.924347, 49.155432], [-125.895951, 49.16673], [-125.886278, 49.163695], [-125.880345, 49.161771], [-125.878243, 49.160284], [-125.877646, 49.159542], [-125.877218, 49.158691], [-125.877096, 49.157809], [-125.876768, 49.156697], [-125.876123, 49.155754], [-125.874755, 49.154226], [-125.88702, 49.14873], [-125.887155, 49.14745], [-125.885049, 49.143035], [-125.884697, 49.14154], [-125.884937, 49.136608], [-125.885976, 49.133705], [-125.885625, 49.132711], [-125.882461, 49.13157], [-125.881874, 49.124081], [-125.883393, 49.122165], [-125.882494, 49.120853], [-125.879329, 49.119426], [-125.876216, 49.116051], [-125.874347, 49.11665], [-125.875093, 49.119106], [-125.876919, 49.121075], [-125.876783, 49.122468], [-125.874559, 49.123674], [-125.871699, 49.123727], [-125.865529, 49.125009], [-125.862695, 49.125986], [-125.858791, 49.125313], [-125.85342, 49.12468], [-125.850581, 49.120866], [-125.848795, 49.119633], [-125.848507, 49.118151], [-125.850426, 49.116281], [-125.852032, 49.114865], [-125.857256, 49.114708], [-125.85975, 49.113157], [-125.860289, 49.112152], [-125.858628, 49.109711], [-125.859633, 49.107824], [-125.858763, 49.106451], [-125.857577, 49.105236], [-125.853924, 49.103792], [-125.852109, 49.10234], [-125.851501, 49.100308], [-125.851817, 49.098416], [-125.850317, 49.097644], [-125.848924, 49.097305], [-125.848252, 49.096592], [-125.848367, 49.093778], [-125.850108, 49.093758]], [[-125.79739, 49.071185], [-125.797336, 49.082335], [-125.796094, 49.082495], [-125.793524, 49.082409], [-125.791331, 49.082472], [-125.790537, 49.082331], [-125.789685, 49.082004], [-125.788988, 49.081482], [-125.788728, 49.081053], [-125.788615, 49.080477], [-125.788513, 49.07879], [-125.788331, 49.078289], [-125.788005, 49.077874], [-125.785428, 49.075806], [-125.786029, 49.075079], [-125.784945, 49.074275], [-125.78407, 49.073871], [-125.784152, 49.074795], [-125.78251, 49.073492], [-125.781375, 49.072669], [-125.781016, 49.072512], [-125.780608, 49.072413], [-125.780121, 49.072384], [-125.777701, 49.072683], [-125.777756, 49.071965], [-125.77911, 49.071684], [-125.781472, 49.07106], [-125.782547, 49.070953], [-125.782527, 49.070611], [-125.782609, 49.070366], [-125.783263, 49.069542], [-125.783562, 49.069022], [-125.784031, 49.073423], [-125.784997, 49.073781], [-125.786484, 49.074956], [-125.788103, 49.074151], [-125.788808, 49.068854], [-125.79739, 49.071185]], [[-125.574121, 48.976387], [-125.573991, 48.976507], [-125.574061, 48.977072], [-125.574293, 48.977858], [-125.57444, 48.978053], [-125.574666, 48.978192], [-125.575431, 48.978445], [-125.577411, 48.978755], [-125.576809, 48.980694], [-125.573575, 48.980682], [-125.573252, 48.977153], [-125.573647, 48.974294], [-125.573786, 48.974388], [-125.574467, 48.974607], [-125.574262, 48.975142], [-125.574684, 48.975367], [-125.574762, 48.976094], [-125.574121, 48.976387]], [[-125.552313, 48.92885], [-125.556251, 48.932826], [-125.557397, 48.933279], [-125.559281, 48.935755], [-125.564038, 48.936519], [-125.565492, 48.936361], [-125.567203, 48.936866], [-125.568332, 48.93764], [-125.571183, 48.938557], [-125.573615, 48.939994], [-125.575325, 48.941621], [-125.578469, 48.943456], [-125.581682, 48.944501], [-125.586291, 48.945367], [-125.588327, 48.947047], [-125.589042, 48.94834], [-125.590661, 48.949194], [-125.59177, 48.952174], [-125.59396, 48.954467], [-125.595528, 48.955341], [-125.596278, 48.955525], [-125.595018, 48.958783], [-125.589915, 48.961797], [-125.590877, 48.962061], [-125.591167, 48.962186], [-125.591431, 48.962395], [-125.590282, 48.963582], [-125.590016, 48.963454], [-125.589842, 48.96325], [-125.589687, 48.963173], [-125.589274, 48.963138], [-125.588743, 48.96318], [-125.586939, 48.963176], [-125.586802, 48.963087], [-125.585488, 48.963073], [-125.584393, 48.963585], [-125.582769, 48.964031], [-125.580848, 48.963605], [-125.579256, 48.962782], [-125.573768, 48.961084], [-125.568468, 48.959716], [-125.565484, 48.958533], [-125.564136, 48.957213], [-125.563166, 48.956016], [-125.56276, 48.953749], [-125.55542, 48.950072], [-125.55216, 48.948755], [-125.550138, 48.948101], [-125.547258, 48.946992], [-125.546587, 48.946493], [-125.546561, 48.946211], [-125.546711, 48.945893], [-125.546706, 48.945562], [-125.546229, 48.944923], [-125.545674, 48.944603], [-125.544631, 48.944241], [-125.543902, 48.944217], [-125.543414, 48.944346], [-125.542011, 48.943801], [-125.538125, 48.940558], [-125.536331, 48.939264], [-125.535145, 48.938028], [-125.533912, 48.936521], [-125.53084, 48.935025], [-125.529262, 48.933816], [-125.526876, 48.932553], [-125.525152, 48.931128], [-125.523133, 48.92766], [-125.521931, 48.925776], [-125.521298, 48.923249], [-125.52371, 48.921305], [-125.527222, 48.921759], [-125.531362, 48.921638], [-125.53502, 48.921716], [-125.538903, 48.919334], [-125.543396, 48.919764], [-125.545324, 48.921404], [-125.545712, 48.923773], [-125.546116, 48.927036], [-125.545945, 48.93106], [-125.549652, 48.928674], [-125.552313, 48.92885]], [[-125.529978, 48.93731], [-125.530286, 48.937429], [-125.530566, 48.937837], [-125.530425, 48.9383], [-125.530533, 48.938566], [-125.530431, 48.938956], [-125.530583, 48.939529], [-125.530983, 48.939906], [-125.531446, 48.940138], [-125.532299, 48.940786], [-125.533245, 48.941134], [-125.533756, 48.942068], [-125.535083, 48.94373], [-125.535466, 48.943974], [-125.536145, 48.944212], [-125.524379, 48.944211], [-125.521652, 48.94426], [-125.522091, 48.942094], [-125.521593, 48.934911], [-125.523087, 48.93523], [-125.523619, 48.935507], [-125.523763, 48.935656], [-125.524447, 48.935686], [-125.525144, 48.935923], [-125.52555, 48.935851], [-125.52599, 48.935652], [-125.526133, 48.935497], [-125.526014, 48.935058], [-125.526079, 48.934984], [-125.526295, 48.934944], [-125.526258, 48.934756], [-125.526478, 48.934796], [-125.527051, 48.935008], [-125.528157, 48.935559], [-125.528202, 48.935649], [-125.528101, 48.935804], [-125.527818, 48.9359], [-125.527532, 48.935915], [-125.527483, 48.935997], [-125.527881, 48.936321], [-125.528114, 48.936622], [-125.528293, 48.936942], [-125.528315, 48.937347], [-125.528417, 48.937471], [-125.528887, 48.937595], [-125.529518, 48.937634], [-125.529717, 48.937549], [-125.529791, 48.937377], [-125.529978, 48.93731]], [[-125.385211, 48.997642], [-125.3697, 48.997606], [-125.370119, 48.997333], [-125.370904, 48.997146], [-125.37171, 48.996823], [-125.372879, 48.996142], [-125.373523, 48.995886], [-125.374559, 48.995244], [-125.375787, 48.994878], [-125.377103, 48.994374], [-125.378399, 48.994059], [-125.381597, 48.992877], [-125.38263, 48.992172], [-125.382726, 48.991593], [-125.382903, 48.991293], [-125.383671, 48.990485], [-125.384081, 48.990208], [-125.384904, 48.989272], [-125.385211, 48.997642]]]]}, "properties": {"name": "Alberni-Clayoquot C", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alberni-Clayoquot C", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923049", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.822613, 49.260181], [-124.822774, 49.265087], [-124.822704, 49.265237], [-124.822643, 49.266732], [-124.822669, 49.2694], [-124.827241, 49.269501], [-124.828336, 49.269457], [-124.828185, 49.268422], [-124.82845, 49.261201], [-124.828526, 49.260999], [-124.826389, 49.260635], [-124.82544, 49.26057], [-124.822613, 49.260181]]]]}, "properties": {"name": "Ahahswinis 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Ahahswinis 1", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923801", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.811356, 49.218363], [-124.811802, 49.21819], [-124.812366, 49.217792], [-124.814259, 49.217209], [-124.815264, 49.216808], [-124.815534, 49.216479], [-124.815728, 49.215663], [-124.815349, 49.215013], [-124.814251, 49.213833], [-124.813841, 49.212925], [-124.813649, 49.212041], [-124.812924, 49.211107], [-124.812864, 49.211052], [-124.805125, 49.210933], [-124.805116, 49.213674], [-124.804804, 49.218269], [-124.811356, 49.218363]]]]}, "properties": {"name": "Alberni 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alberni 2", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923802", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.117072, 48.806962], [-125.128443, 48.807265], [-125.127263, 48.79856], [-125.127178, 48.798452], [-125.126767, 48.798466], [-125.126615, 48.798424], [-125.126196, 48.798172], [-125.125951, 48.79787], [-125.12574, 48.797388], [-125.125341, 48.796964], [-125.124767, 48.796559], [-125.123529, 48.795971], [-125.119777, 48.794493], [-125.117087, 48.793119], [-125.116948, 48.795215], [-125.117072, 48.806962]]]]}, "properties": {"name": "Anacla 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Anacla 12", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923803", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.573252, 48.977153], [-125.573575, 48.980682], [-125.576809, 48.980694], [-125.577411, 48.978755], [-125.575431, 48.978445], [-125.574666, 48.978192], [-125.574396, 48.978018], [-125.574095, 48.977215], [-125.573991, 48.976507], [-125.574067, 48.976416], [-125.574762, 48.976094], [-125.574684, 48.975367], [-125.574262, 48.975142], [-125.574467, 48.974607], [-125.573786, 48.974388], [-125.573647, 48.974294], [-125.573252, 48.977153]]]]}, "properties": {"name": "Clakamucus 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Clakamucus 2", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923804", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.057043, 49.031134], [-125.05799, 49.018687], [-125.047155, 49.018263], [-125.046907, 49.01852], [-125.046682, 49.01838], [-125.046162, 49.018361], [-125.045878, 49.018457], [-125.045789, 49.018611], [-125.045756, 49.019125], [-125.045664, 49.019252], [-125.044974, 49.019417], [-125.044764, 49.019646], [-125.044115, 49.01981], [-125.043889, 49.019985], [-125.042725, 49.020276], [-125.04262, 49.020385], [-125.042604, 49.020674], [-125.042387, 49.020723], [-125.041875, 49.020587], [-125.041646, 49.020646], [-125.039607, 49.020654], [-125.039507, 49.020549], [-125.039524, 49.020251], [-125.039315, 49.020174], [-125.038142, 49.019934], [-125.037779, 49.019751], [-125.037601, 49.019764], [-125.037528, 49.019964], [-125.03746, 49.019982], [-125.036897, 49.019938], [-125.036813, 49.019877], [-125.036875, 49.019713], [-125.03679, 49.019652], [-125.036085, 49.019485], [-125.036339, 49.019012], [-125.036183, 49.018871], [-125.036176, 49.018682], [-125.035709, 49.018609], [-125.035586, 49.018656], [-125.035539, 49.018829], [-125.035432, 49.018903], [-125.034872, 49.018921], [-125.034478, 49.019324], [-125.034386, 49.019757], [-125.033902, 49.019955], [-125.033616, 49.020293], [-125.033585, 49.020545], [-125.033133, 49.02086], [-125.032157, 49.02245], [-125.032267, 49.022791], [-125.032247, 49.022989], [-125.031939, 49.023165], [-125.031864, 49.023329], [-125.032023, 49.024829], [-125.031918, 49.025307], [-125.03132, 49.025705], [-125.031265, 49.026074], [-125.030537, 49.025961], [-125.030345, 49.025982], [-125.030117, 49.026103], [-125.030256, 49.026488], [-125.030322, 49.027072], [-125.03031, 49.027126], [-125.029884, 49.027133], [-125.02944, 49.030153], [-125.057043, 49.031134]]]]}, "properties": {"name": "Elhlateese 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Elhlateese 2", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923805", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.468675, 49.396603], [-126.468682, 49.39726], [-126.468403, 49.397829], [-126.467813, 49.398338], [-126.467608, 49.398838], [-126.467694, 49.399037], [-126.46765, 49.3991], [-126.467071, 49.399366], [-126.466426, 49.400117], [-126.465905, 49.400564], [-126.465263, 49.40126], [-126.464474, 49.401864], [-126.463103, 49.40355], [-126.470703, 49.403196], [-126.471157, 49.402469], [-126.471142, 49.402217], [-126.470633, 49.401648], [-126.47009, 49.401249], [-126.469895, 49.401002], [-126.469984, 49.400868], [-126.471068, 49.400695], [-126.471302, 49.400718], [-126.472723, 49.401235], [-126.473203, 49.401542], [-126.474035, 49.401695], [-126.474388, 49.401811], [-126.474753, 49.401981], [-126.474975, 49.402193], [-126.475909, 49.402555], [-126.476098, 49.402722], [-126.479305, 49.402734], [-126.478896, 49.387159], [-126.469677, 49.387297], [-126.467876, 49.388516], [-126.467356, 49.389008], [-126.466057, 49.389898], [-126.465883, 49.390307], [-126.46557, 49.390751], [-126.465388, 49.391322], [-126.465169, 49.391595], [-126.464795, 49.391885], [-126.464458, 49.39203], [-126.46378, 49.392087], [-126.463653, 49.39213], [-126.463651, 49.392184], [-126.464374, 49.392568], [-126.464885, 49.393074], [-126.465017, 49.393483], [-126.465058, 49.394032], [-126.465544, 49.394492], [-126.466683, 49.39485], [-126.467079, 49.394912], [-126.467852, 49.394911], [-126.468055, 49.394996], [-126.468446, 49.395428], [-126.46853, 49.395637], [-126.468675, 49.396603]]]]}, "properties": {"name": "Hesquiat 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Hesquiat 1", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923806", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.522091, 48.942094], [-125.521652, 48.94426], [-125.524379, 48.944211], [-125.536145, 48.944212], [-125.535466, 48.943974], [-125.535083, 48.94373], [-125.533756, 48.942068], [-125.533245, 48.941134], [-125.532299, 48.940786], [-125.531446, 48.940138], [-125.530983, 48.939906], [-125.530583, 48.939529], [-125.530431, 48.938956], [-125.530533, 48.938566], [-125.530425, 48.9383], [-125.530566, 48.937837], [-125.530286, 48.937429], [-125.530089, 48.937325], [-125.529857, 48.937331], [-125.529651, 48.937596], [-125.529313, 48.93764], [-125.528612, 48.937548], [-125.528417, 48.937471], [-125.528315, 48.937347], [-125.528293, 48.936942], [-125.528114, 48.936622], [-125.527881, 48.936321], [-125.527483, 48.935997], [-125.527532, 48.935915], [-125.527818, 48.9359], [-125.528101, 48.935804], [-125.528202, 48.935649], [-125.528157, 48.935559], [-125.527051, 48.935008], [-125.526258, 48.934756], [-125.526295, 48.934944], [-125.526079, 48.934984], [-125.526014, 48.935058], [-125.526108, 48.935551], [-125.525831, 48.935746], [-125.525144, 48.935923], [-125.524447, 48.935686], [-125.523763, 48.935656], [-125.523619, 48.935507], [-125.523087, 48.93523], [-125.521593, 48.934911], [-125.522091, 48.942094]]]]}, "properties": {"name": "Ittatsoo 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Ittatsoo 1", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923807", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.066872, 49.287956], [-126.067441, 49.2879], [-126.067275, 49.279815], [-126.067128, 49.279721], [-126.066037, 49.279549], [-126.065256, 49.278584], [-126.064777, 49.278321], [-126.064634, 49.278425], [-126.064496, 49.278439], [-126.063949, 49.278381], [-126.063435, 49.278233], [-126.063131, 49.278251], [-126.062962, 49.27831], [-126.062872, 49.278461], [-126.062859, 49.278919], [-126.062779, 49.279079], [-126.062453, 49.279485], [-126.061909, 49.279822], [-126.06191, 49.280064], [-126.061748, 49.280232], [-126.061424, 49.280385], [-126.060826, 49.280496], [-126.060454, 49.280721], [-126.060165, 49.280722], [-126.058993, 49.279865], [-126.057779, 49.279231], [-126.057553, 49.278856], [-126.057491, 49.278297], [-126.056963, 49.277915], [-126.057589, 49.277804], [-126.058157, 49.277495], [-126.058217, 49.277425], [-126.058203, 49.276957], [-126.058248, 49.276885], [-126.058373, 49.27688], [-126.059125, 49.27716], [-126.060138, 49.277699], [-126.061196, 49.277717], [-126.061613, 49.277889], [-126.06217, 49.27776], [-126.062593, 49.27758], [-126.063395, 49.277052], [-126.06394, 49.276904], [-126.064729, 49.276834], [-126.064909, 49.276776], [-126.065042, 49.276626], [-126.065183, 49.275901], [-126.065379, 49.275619], [-126.065386, 49.275484], [-126.065056, 49.275259], [-126.064489, 49.274624], [-126.064114, 49.274434], [-126.06301, 49.274065], [-126.06232, 49.273428], [-126.061792, 49.273234], [-126.061464, 49.273009], [-126.061313, 49.272996], [-126.061099, 49.273098], [-126.060599, 49.273194], [-126.060575, 49.272915], [-126.06008, 49.27246], [-126.060099, 49.271678], [-126.059972, 49.271469], [-126.059908, 49.270936], [-126.059742, 49.270743], [-126.059261, 49.270496], [-126.059416, 49.269969], [-126.059401, 49.269528], [-126.05889, 49.269336], [-126.058889, 49.269129], [-126.05925, 49.268831], [-126.059114, 49.268109], [-126.05884, 49.26785], [-126.058546, 49.267716], [-126.058238, 49.267357], [-126.057924, 49.267332], [-126.057605, 49.267135], [-126.057637, 49.267064], [-126.057761, 49.26704], [-126.057705, 49.266547], [-126.053874, 49.266086], [-126.053359, 49.266423], [-126.049408, 49.268562], [-126.04821, 49.268614], [-126.048087, 49.268817], [-126.048075, 49.269482], [-126.047998, 49.269598], [-126.047787, 49.2697], [-126.047469, 49.269727], [-126.04733, 49.270202], [-126.047014, 49.270427], [-126.047439, 49.270707], [-126.04751, 49.270862], [-126.047879, 49.271142], [-126.047896, 49.271304], [-126.048101, 49.271579], [-126.048149, 49.272147], [-126.048224, 49.272275], [-126.048865, 49.272597], [-126.049598, 49.272761], [-126.049757, 49.272863], [-126.049838, 49.273325], [-126.049437, 49.273628], [-126.049455, 49.273755], [-126.049884, 49.273946], [-126.050092, 49.274168], [-126.0502, 49.274413], [-126.050606, 49.274748], [-126.050811, 49.275698], [-126.051183, 49.275931], [-126.051092, 49.276055], [-126.051149, 49.276273], [-126.051708, 49.276566], [-126.052524, 49.276713], [-126.052945, 49.277048], [-126.053359, 49.277229], [-126.053821, 49.277106], [-126.054304, 49.276857], [-126.054518, 49.276944], [-126.055193, 49.278059], [-126.055251, 49.278717], [-126.055615, 49.279086], [-126.055685, 49.280221], [-126.055786, 49.280593], [-126.056089, 49.280808], [-126.056155, 49.281088], [-126.056472, 49.281303], [-126.056821, 49.281681], [-126.057265, 49.281827], [-126.057878, 49.282193], [-126.057887, 49.282716], [-126.057732, 49.283269], [-126.058039, 49.285724], [-126.058008, 49.285787], [-126.057842, 49.285782], [-126.05763, 49.285876], [-126.05763, 49.286335], [-126.0574, 49.286725], [-126.057733, 49.286922], [-126.057032, 49.287157], [-126.05664, 49.287489], [-126.056533, 49.287674], [-126.056474, 49.287951], [-126.056556, 49.288692], [-126.057389, 49.289128], [-126.065985, 49.288101], [-126.066299, 49.28813], [-126.066872, 49.287956]]]]}, "properties": {"name": "Marktosis 15", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Marktosis 15", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923808", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.001288, 48.915687], [-125.005145, 48.915465], [-125.004823, 48.915385], [-125.004513, 48.915176], [-125.003997, 48.914537], [-125.00377, 48.913622], [-125.003826, 48.912983], [-125.003701, 48.912608], [-125.003953, 48.912415], [-125.004237, 48.912319], [-125.004795, 48.912292], [-125.005319, 48.912426], [-125.005959, 48.912748], [-125.006345, 48.912832], [-125.006907, 48.912534], [-125.00734, 48.912436], [-125.007554, 48.912316], [-125.007591, 48.912244], [-125.007422, 48.91212], [-125.006944, 48.91211], [-125.006818, 48.91205], [-125.006715, 48.911845], [-125.006775, 48.911673], [-125.007055, 48.911496], [-125.008294, 48.911052], [-125.009149, 48.910281], [-125.009133, 48.910191], [-125.008897, 48.910079], [-125.008696, 48.909848], [-125.008632, 48.909634], [-125.008679, 48.909435], [-125.008873, 48.909189], [-125.009842, 48.908488], [-125.010069, 48.908017], [-125.010922, 48.907156], [-125.010942, 48.906984], [-125.010589, 48.906703], [-125.010496, 48.90639], [-125.010364, 48.906221], [-125.009571, 48.906181], [-125.009306, 48.906014], [-125.009159, 48.905729], [-125.009283, 48.905097], [-125.009198, 48.905], [-125.00881, 48.904845], [-125.008722, 48.904711], [-125.009024, 48.903761], [-125.009535, 48.903221], [-125.009559, 48.90314], [-125.009387, 48.902909], [-125.009459, 48.902666], [-125.009907, 48.90263], [-125.009956, 48.902503], [-125.010401, 48.902334], [-125.010664, 48.902401], [-125.011891, 48.902442], [-125.012353, 48.902362], [-125.012608, 48.90226], [-125.012655, 48.902223], [-125.011344, 48.900743], [-125.015447, 48.899266], [-125.016358, 48.898758], [-125.016671, 48.898779], [-125.017034, 48.898628], [-125.017496, 48.897567], [-125.017449, 48.897433], [-125.017337, 48.897363], [-125.016928, 48.897352], [-125.016937, 48.896543], [-125.017161, 48.896341], [-125.017299, 48.896042], [-125.018812, 48.895331], [-125.019209, 48.894504], [-125.001222, 48.894657], [-125.001125, 48.887664], [-124.984067, 48.887558], [-124.969145, 48.887644], [-124.969493, 48.900632], [-124.969584, 48.908891], [-124.983465, 48.908664], [-125.002077, 48.908814], [-125.001288, 48.915687]]]]}, "properties": {"name": "Numukamis 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Numukamis 1", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923809", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.385211, 48.997642], [-125.384904, 48.989272], [-125.384081, 48.990208], [-125.383671, 48.990485], [-125.382903, 48.991293], [-125.382726, 48.991593], [-125.38263, 48.992172], [-125.381597, 48.992877], [-125.378399, 48.994059], [-125.377103, 48.994374], [-125.375787, 48.994878], [-125.374559, 48.995244], [-125.373523, 48.995886], [-125.372879, 48.996142], [-125.37171, 48.996823], [-125.370904, 48.997146], [-125.370119, 48.997333], [-125.3697, 48.997606], [-125.385211, 48.997642]]]]}, "properties": {"name": "Macoah 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Macoah 1", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923810", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.918641, 49.179381], [-125.918298, 49.173497], [-125.917847, 49.173532], [-125.91747, 49.173442], [-125.916637, 49.173482], [-125.916407, 49.173569], [-125.916147, 49.173791], [-125.915203, 49.173842], [-125.91416, 49.173364], [-125.9134, 49.173284], [-125.913006, 49.173106], [-125.912631, 49.173035], [-125.911861, 49.172991], [-125.910627, 49.173039], [-125.90917, 49.172995], [-125.906893, 49.172793], [-125.906333, 49.172816], [-125.905913, 49.172907], [-125.905594, 49.173095], [-125.905468, 49.173521], [-125.904934, 49.174227], [-125.904905, 49.174426], [-125.904828, 49.174509], [-125.904582, 49.174542], [-125.904545, 49.174606], [-125.904679, 49.174801], [-125.905027, 49.174891], [-125.905215, 49.17503], [-125.905089, 49.17524], [-125.905041, 49.175574], [-125.904709, 49.175754], [-125.904582, 49.175936], [-125.90465, 49.176637], [-125.904522, 49.177044], [-125.904431, 49.177128], [-125.904105, 49.177189], [-125.903286, 49.177021], [-125.902488, 49.176528], [-125.90197, 49.176362], [-125.901992, 49.17911], [-125.918641, 49.179381]]]]}, "properties": {"name": "Opitsat 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Opitsat 1", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923813", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.108158, 48.837721], [-125.108061, 48.837595], [-125.107631, 48.837414], [-125.107277, 48.83742], [-125.106268, 48.837745], [-125.106158, 48.837729], [-125.106142, 48.837639], [-125.107035, 48.837199], [-125.107115, 48.837108], [-125.107044, 48.837047], [-125.106457, 48.83704], [-125.106478, 48.836913], [-125.107448, 48.836644], [-125.107816, 48.836303], [-125.108259, 48.83561], [-125.102846, 48.836264], [-125.103182, 48.837953], [-125.105306, 48.837723], [-125.105371, 48.83804], [-125.108158, 48.837721]]]]}, "properties": {"name": "Sachsa 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Sachsa 4", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923814", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.868459, 49.28168], [-124.868237, 49.28251], [-124.868386, 49.282911], [-124.87066, 49.282807], [-124.877706, 49.282879], [-124.877277, 49.277897], [-124.887245, 49.278098], [-124.887309, 49.264712], [-124.875954, 49.264487], [-124.873565, 49.26471], [-124.873192, 49.264644], [-124.872883, 49.264479], [-124.872424, 49.264369], [-124.870207, 49.264243], [-124.86865, 49.264493], [-124.868258, 49.264716], [-124.867756, 49.264441], [-124.858996, 49.264301], [-124.858466, 49.263844], [-124.857843, 49.263514], [-124.856975, 49.263167], [-124.855928, 49.262927], [-124.84255, 49.263081], [-124.842614, 49.264184], [-124.842806, 49.26448], [-124.842909, 49.264526], [-124.841111, 49.264377], [-124.84651, 49.26699], [-124.847146, 49.267256], [-124.84781, 49.267383], [-124.849622, 49.268068], [-124.850174, 49.268059], [-124.850404, 49.267655], [-124.850845, 49.267389], [-124.851854, 49.267313], [-124.852423, 49.267401], [-124.852801, 49.267951], [-124.853385, 49.270334], [-124.853882, 49.271495], [-124.854274, 49.271502], [-124.85542, 49.271721], [-124.856446, 49.272257], [-124.857193, 49.273184], [-124.857294, 49.273497], [-124.857064, 49.273842], [-124.857273, 49.274101], [-124.857354, 49.274954], [-124.857074, 49.276042], [-124.856647, 49.276441], [-124.855455, 49.277169], [-124.855214, 49.277456], [-124.855129, 49.277921], [-124.855383, 49.278911], [-124.868636, 49.278911], [-124.868554, 49.278717], [-124.869912, 49.278717], [-124.869965, 49.278829], [-124.868459, 49.28168]]]]}, "properties": {"name": "Tsahaheh 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tsahaheh 1", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923816", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.882967, 49.295313], [-124.882943, 49.29585], [-124.88334, 49.296813], [-124.883721, 49.297056], [-124.886657, 49.296613], [-124.888297, 49.297281], [-124.889129, 49.297532], [-124.900456, 49.297525], [-124.905627, 49.297336], [-124.905387, 49.291958], [-124.905029, 49.291003], [-124.905032, 49.290547], [-124.90521, 49.290119], [-124.904536, 49.290083], [-124.903692, 49.290344], [-124.90335, 49.290363], [-124.902554, 49.290195], [-124.901874, 49.289921], [-124.901616, 49.290011], [-124.901282, 49.289991], [-124.900447, 49.289715], [-124.898855, 49.289357], [-124.898024, 49.289351], [-124.897378, 49.289532], [-124.896418, 49.289588], [-124.894928, 49.289537], [-124.8939, 49.289408], [-124.892699, 49.2894], [-124.892276, 49.289545], [-124.891945, 49.289954], [-124.89188, 49.290535], [-124.892144, 49.291391], [-124.892094, 49.29162], [-124.891824, 49.291909], [-124.891262, 49.292079], [-124.890057, 49.29087], [-124.88966, 49.290689], [-124.889266, 49.290622], [-124.888577, 49.290635], [-124.887533, 49.290783], [-124.887131, 49.291066], [-124.886669, 49.291174], [-124.885969, 49.291199], [-124.884838, 49.291059], [-124.883664, 49.291183], [-124.883086, 49.291388], [-124.882942, 49.291552], [-124.882477, 49.292915], [-124.882073, 49.293435], [-124.882133, 49.293711], [-124.882906, 49.293715], [-124.88354, 49.293907], [-124.883545, 49.294226], [-124.883379, 49.294736], [-124.882967, 49.295313]]]]}, "properties": {"name": "Klehkoot 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Klehkoot 2", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923822", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.785428, 49.075806], [-125.788005, 49.077874], [-125.788331, 49.078289], [-125.788513, 49.07879], [-125.788615, 49.080477], [-125.788728, 49.081053], [-125.788988, 49.081482], [-125.789685, 49.082004], [-125.790537, 49.082331], [-125.791331, 49.082472], [-125.793524, 49.082409], [-125.796094, 49.082495], [-125.797336, 49.082335], [-125.79739, 49.071185], [-125.788808, 49.068854], [-125.788103, 49.074151], [-125.786484, 49.074956], [-125.784997, 49.073781], [-125.784031, 49.073423], [-125.783562, 49.069022], [-125.783263, 49.069542], [-125.782609, 49.070366], [-125.782527, 49.070611], [-125.782547, 49.070953], [-125.781472, 49.07106], [-125.77911, 49.071684], [-125.777756, 49.071965], [-125.777701, 49.072683], [-125.780121, 49.072384], [-125.780608, 49.072413], [-125.781016, 49.072512], [-125.781375, 49.072669], [-125.78251, 49.073492], [-125.784152, 49.074795], [-125.78407, 49.073871], [-125.784945, 49.074275], [-125.786029, 49.075079], [-125.785428, 49.075806]]]]}, "properties": {"name": "Esowista 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Esowista 3", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923823", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.26953, 49.362208], [-126.269639, 49.362957], [-126.269551, 49.363531], [-126.269665, 49.364253], [-126.270199, 49.365283], [-126.270294, 49.365816], [-126.27049, 49.366262], [-126.271067, 49.367266], [-126.271225, 49.36816], [-126.271859, 49.369631], [-126.2725, 49.369997], [-126.272571, 49.370173], [-126.273592, 49.368963], [-126.273171, 49.362887], [-126.2696, 49.362129], [-126.26953, 49.362208]]]]}, "properties": {"name": "Refuge Cove 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Refuge Cove 6", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923824", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.895276, 49.129452], [-125.895841, 49.130248], [-125.895935, 49.130709], [-125.895675, 49.131105], [-125.894574, 49.132041], [-125.902949, 49.132034], [-125.902241, 49.131234], [-125.90158, 49.130157], [-125.898957, 49.130175], [-125.899043, 49.128793], [-125.895994, 49.128787], [-125.896022, 49.129442], [-125.895276, 49.129452]]]]}, "properties": {"name": "Tin Wis 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tin Wis 11", "economic_region_id": "5910", "census_division_code": "5923", "census_subdivision_code": "5923825", "regional_district_aka_census_division": "Alberni-Clayoquot"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.05704, 49.793708], [-126.057362, 49.788351], [-126.059596, 49.788519], [-126.059905, 49.785344], [-126.060102, 49.785314], [-126.060888, 49.784942], [-126.061172, 49.784713], [-126.061591, 49.783955], [-126.061573, 49.78381], [-126.060913, 49.78333], [-126.060686, 49.782968], [-126.059977, 49.782316], [-126.059873, 49.782018], [-126.059708, 49.777081], [-126.059357, 49.771839], [-126.058104, 49.771071], [-126.087659, 49.732259], [-126.103177, 49.70904], [-126.10553, 49.70761], [-126.108082, 49.70547], [-126.110263, 49.703339], [-126.111577, 49.701771], [-126.113643, 49.699115], [-126.115357, 49.697615], [-126.117826, 49.695858], [-126.118542, 49.694892], [-126.118745, 49.693962], [-126.119439, 49.694182], [-126.126327, 49.694181], [-126.126864, 49.686077], [-126.13821, 49.686283], [-126.138734, 49.671971], [-126.099251, 49.671486], [-126.09771, 49.671417], [-126.096865, 49.683595], [-126.102919, 49.683808], [-126.10297, 49.69329], [-126.102091, 49.693192], [-126.101251, 49.708683], [-126.084644, 49.731194], [-126.08205, 49.734908], [-126.080254, 49.740053], [-126.072217, 49.747059], [-126.071304, 49.749529], [-126.069737, 49.753112], [-126.067778, 49.752686], [-126.065937, 49.752729], [-126.062242, 49.75209], [-126.061065, 49.751836], [-126.060456, 49.751865], [-126.057966, 49.751731], [-126.056177, 49.751452], [-126.052218, 49.751942], [-126.049079, 49.752887], [-126.048523, 49.753243], [-126.04821, 49.753803], [-126.048153, 49.754733], [-126.048326, 49.755579], [-126.048651, 49.756204], [-126.049267, 49.756855], [-126.050506, 49.757726], [-126.051754, 49.758418], [-126.053323, 49.75945], [-126.053859, 49.75988], [-126.05406, 49.76031], [-126.054108, 49.761884], [-126.054314, 49.763034], [-126.054356, 49.764073], [-126.05409, 49.766003], [-126.054078, 49.767072], [-126.043017, 49.767253], [-126.042452, 49.779167], [-126.042451, 49.783245], [-126.041851, 49.793464], [-126.044907, 49.793589], [-126.048703, 49.793638], [-126.048794, 49.793799], [-126.048849, 49.794251], [-126.049382, 49.794866], [-126.049764, 49.795191], [-126.049978, 49.795574], [-126.050322, 49.795647], [-126.050636, 49.795493], [-126.05077, 49.795352], [-126.050407, 49.794237], [-126.050442, 49.794111], [-126.050598, 49.793836], [-126.050694, 49.793839], [-126.050827, 49.793959], [-126.051117, 49.793974], [-126.051302, 49.793926], [-126.051461, 49.793814], [-126.051371, 49.793694], [-126.05704, 49.793708]], [[-126.122759, 49.682826], [-126.122709, 49.686756], [-126.121909, 49.686799], [-126.120336, 49.686608], [-126.119102, 49.686392], [-126.116661, 49.686321], [-126.11622, 49.685307], [-126.116238, 49.684474], [-126.11638, 49.684406], [-126.117087, 49.683462], [-126.117319, 49.683323], [-126.117469, 49.68312], [-126.117687, 49.682955], [-126.118254, 49.682735], [-126.118416, 49.682577], [-126.122759, 49.682826]]]]}, "properties": {"name": "Gold River", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Gold River", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924025", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.866476, 49.992125], [-126.866529, 49.985188], [-126.864452, 49.985148], [-126.86438, 49.985606], [-126.857486, 49.98544], [-126.857569, 49.985112], [-126.857883, 49.984659], [-126.85862, 49.984042], [-126.858991, 49.983582], [-126.859471, 49.983438], [-126.859672, 49.983289], [-126.859881, 49.982978], [-126.859933, 49.982466], [-126.859737, 49.981833], [-126.859852, 49.98116], [-126.859805, 49.980935], [-126.859884, 49.980432], [-126.859819, 49.980297], [-126.859107, 49.979716], [-126.858524, 49.978976], [-126.85744, 49.978273], [-126.857055, 49.97787], [-126.857538, 49.977663], [-126.857502, 49.977501], [-126.857028, 49.976907], [-126.857399, 49.976366], [-126.857167, 49.97592], [-126.857545, 49.975604], [-126.857641, 49.975329], [-126.855912, 49.975293], [-126.84515, 49.969275], [-126.845055, 49.969525], [-126.84482, 49.969782], [-126.84408, 49.970101], [-126.844053, 49.970406], [-126.843682, 49.970894], [-126.843729, 49.972019], [-126.843526, 49.972196], [-126.843617, 49.972979], [-126.843446, 49.973364], [-126.843703, 49.974136], [-126.84198, 49.973935], [-126.842704, 49.979756], [-126.844094, 49.979736], [-126.844142, 49.99342], [-126.848566, 49.994145], [-126.850888, 49.992262], [-126.866476, 49.992125]]]]}, "properties": {"name": "Zeballos", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Zeballos", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924029", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.637612, 49.937589], [-126.648638, 49.937753], [-126.648176, 49.94492], [-126.652579, 49.944862], [-126.659821, 49.9451], [-126.660824, 49.926599], [-126.666631, 49.926997], [-126.666825, 49.915863], [-126.668928, 49.91599], [-126.668916, 49.910493], [-126.671908, 49.910744], [-126.671639, 49.889699], [-126.666515, 49.889791], [-126.662418, 49.889677], [-126.654597, 49.91003], [-126.654503, 49.909938], [-126.649019, 49.910086], [-126.648012, 49.910043], [-126.647674, 49.90936], [-126.647562, 49.909367], [-126.647568, 49.909817], [-126.647232, 49.910133], [-126.647272, 49.910197], [-126.647204, 49.910139], [-126.646783, 49.910231], [-126.646744, 49.910159], [-126.646922, 49.90965], [-126.64698, 49.908445], [-126.646898, 49.9084], [-126.645719, 49.908294], [-126.645301, 49.908313], [-126.645101, 49.908408], [-126.644695, 49.908742], [-126.644528, 49.909016], [-126.644226, 49.909236], [-126.644123, 49.909639], [-126.644239, 49.910178], [-126.629081, 49.910196], [-126.628423, 49.917074], [-126.644822, 49.917324], [-126.644949, 49.915143], [-126.645182, 49.913733], [-126.646932, 49.913811], [-126.648661, 49.914255], [-126.649004, 49.914074], [-126.648987, 49.913866], [-126.649457, 49.913642], [-126.650248, 49.913441], [-126.650999, 49.913457], [-126.651526, 49.913216], [-126.651842, 49.913303], [-126.652028, 49.913469], [-126.652122, 49.913597], [-126.652015, 49.913765], [-126.652281, 49.914031], [-126.652304, 49.914149], [-126.652587, 49.914343], [-126.652404, 49.914636], [-126.652361, 49.914933], [-126.652084, 49.915188], [-126.651958, 49.915482], [-126.651648, 49.91589], [-126.65153, 49.916301], [-126.651125, 49.916607], [-126.65091, 49.916991], [-126.650915, 49.917206], [-126.65151, 49.917663], [-126.650994, 49.917573], [-126.648758, 49.917623], [-126.648141, 49.925213], [-126.649475, 49.925287], [-126.649152, 49.93148], [-126.638035, 49.930904], [-126.637612, 49.937589]]]]}, "properties": {"name": "Tahsis", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tahsis", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924030", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.342621, 50.119638], [-125.34803, 50.120676], [-125.351069, 50.120114], [-125.351648, 50.116183], [-125.351917, 50.115196], [-125.352282, 50.115102], [-125.35266, 50.115085], [-125.35369, 50.11528], [-125.354616, 50.115352], [-125.356039, 50.115557], [-125.357058, 50.1155], [-125.358026, 50.115296], [-125.356366, 50.111812], [-125.361481, 50.111487], [-125.362867, 50.095386], [-125.381683, 50.096366], [-125.386185, 50.096554], [-125.386497, 50.088489], [-125.362929, 50.087984], [-125.344871, 50.08766], [-125.315162, 50.08761], [-125.314131, 50.087034], [-125.314295, 50.086864], [-125.314529, 50.08149], [-125.314359, 50.080945], [-125.313538, 50.079613], [-125.313532, 50.079326], [-125.313624, 50.079232], [-125.31478, 50.078929], [-125.316678, 50.07862], [-125.318426, 50.078191], [-125.318735, 50.077969], [-125.318808, 50.077779], [-125.318775, 50.077142], [-125.31887, 50.076823], [-125.313377, 50.077061], [-125.313492, 50.073637], [-125.319969, 50.073738], [-125.320714, 50.065337], [-125.320596, 50.059567], [-125.3145, 50.059542], [-125.31501, 50.05225], [-125.363913, 50.051805], [-125.363861, 50.045936], [-125.376072, 50.046219], [-125.381512, 50.045209], [-125.387103, 50.043727], [-125.391518, 50.039666], [-125.396824, 50.03772], [-125.400192, 50.038514], [-125.403425, 50.038483], [-125.405602, 50.037886], [-125.406106, 50.036865], [-125.402763, 50.031927], [-125.401122, 50.029961], [-125.399267, 50.029397], [-125.397367, 50.029736], [-125.396373, 50.02941], [-125.395527, 50.028861], [-125.394306, 50.027851], [-125.393646, 50.02754], [-125.392798, 50.027302], [-125.391404, 50.026714], [-125.391034, 50.026257], [-125.391634, 50.025715], [-125.392297, 50.025306], [-125.393666, 50.025126], [-125.395666, 50.025215], [-125.396394, 50.025102], [-125.399815, 50.025388], [-125.409587, 50.025123], [-125.410543, 50.011197], [-125.411127, 50.005226], [-125.410747, 50.000073], [-125.381557, 50.000079], [-125.381057, 49.999495], [-125.381032, 49.999355], [-125.380889, 49.999254], [-125.379401, 49.999404], [-125.379451, 49.999666], [-125.379543, 49.999675], [-125.372897, 49.999562], [-125.343126, 49.999795], [-125.327072, 49.999801], [-125.330727, 49.996521], [-125.334924, 49.996485], [-125.336668, 49.995705], [-125.337983, 49.993937], [-125.33806, 49.992335], [-125.337289, 49.990156], [-125.32517, 49.988272], [-125.323508, 49.989577], [-125.318379, 49.989669], [-125.317253, 49.988049], [-125.315415, 49.988107], [-125.316161, 49.982611], [-125.316502, 49.980638], [-125.316434, 49.975559], [-125.316136, 49.974211], [-125.316358, 49.959635], [-125.305844, 49.959705], [-125.306565, 49.945168], [-125.295007, 49.94504], [-125.296803, 49.93097], [-125.287667, 49.930969], [-125.288894, 49.916365], [-125.26779, 49.91676], [-125.24143, 49.916146], [-125.205363, 49.915393], [-125.195442, 49.91536], [-125.195713, 49.916431], [-125.195713, 49.917649], [-125.195109, 49.919182], [-125.195803, 49.923473], [-125.195208, 49.928301], [-125.194692, 49.928998], [-125.195546, 49.929198], [-125.195106, 49.929569], [-125.196694, 49.929486], [-125.199133, 49.929266], [-125.202151, 49.929448], [-125.203303, 49.929707], [-125.203395, 49.929828], [-125.203523, 49.938808], [-125.203463, 49.944947], [-125.209093, 49.945037], [-125.208982, 49.946423], [-125.207071, 49.946378], [-125.207117, 49.945736], [-125.206859, 49.945733], [-125.206822, 49.946416], [-125.206207, 49.946408], [-125.206184, 49.946714], [-125.205202, 49.946391], [-125.204362, 49.946369], [-125.204417, 49.945702], [-125.204025, 49.945698], [-125.203959, 49.946377], [-125.202034, 49.946301], [-125.202118, 49.945674], [-125.201708, 49.945669], [-125.201628, 49.946295], [-125.200677, 49.94626], [-125.200744, 49.945657], [-125.200491, 49.945654], [-125.200417, 49.946263], [-125.200101, 49.946249], [-125.200186, 49.94565], [-125.198219, 49.945655], [-125.197771, 49.945774], [-125.196959, 49.946168], [-125.198851, 49.947381], [-125.197871, 49.948145], [-125.19766, 49.94838], [-125.200741, 49.950405], [-125.199908, 49.950374], [-125.198662, 49.949616], [-125.197916, 49.95037], [-125.191357, 49.950875], [-125.198522, 49.955552], [-125.201472, 49.958962], [-125.202203, 49.96151], [-125.202558, 49.96487], [-125.203825, 49.967935], [-125.206697, 49.97095], [-125.20941, 49.973124], [-125.210016, 49.973527], [-125.211486, 49.974307], [-125.213055, 49.975321], [-125.214778, 49.976736], [-125.216436, 49.978578], [-125.219503, 49.982766], [-125.221164, 49.985454], [-125.22553, 49.992986], [-125.226532, 49.994964], [-125.228278, 50.000337], [-125.224745, 50.000468], [-125.226715, 50.003829], [-125.227102, 50.004632], [-125.227631, 50.006143], [-125.227629, 50.008292], [-125.227409, 50.010007], [-125.227561, 50.011326], [-125.228023, 50.013362], [-125.228826, 50.015722], [-125.232343, 50.02135], [-125.233343, 50.023087], [-125.234914, 50.02517], [-125.23575, 50.026015], [-125.239633, 50.031269], [-125.245776, 50.03119], [-125.247753, 50.030543], [-125.248563, 50.03038], [-125.250022, 50.030512], [-125.26189, 50.030514], [-125.261203, 50.032662], [-125.26074, 50.032758], [-125.258785, 50.033371], [-125.258509, 50.033548], [-125.256613, 50.039874], [-125.253478, 50.041675], [-125.250254, 50.043432], [-125.24435, 50.046443], [-125.249517, 50.051983], [-125.261893, 50.068734], [-125.267857, 50.077476], [-125.274861, 50.08276], [-125.277506, 50.084644], [-125.2937, 50.085796], [-125.312214, 50.09509], [-125.320356, 50.104314], [-125.321901, 50.10643], [-125.321294, 50.10902], [-125.32092, 50.110201], [-125.320653, 50.110613], [-125.33754, 50.112185], [-125.338372, 50.112191], [-125.340763, 50.112377], [-125.34189, 50.112361], [-125.343521, 50.111947], [-125.343831, 50.111777], [-125.343991, 50.111479], [-125.345226, 50.111588], [-125.345004, 50.112095], [-125.344195, 50.112742], [-125.341096, 50.113913], [-125.339925, 50.115548], [-125.339095, 50.118228], [-125.342621, 50.119638]], [[-125.292242, 50.024983], [-125.291326, 50.025854], [-125.289995, 50.026793], [-125.288579, 50.027626], [-125.28841, 50.027866], [-125.288449, 50.028623], [-125.288614, 50.029301], [-125.286373, 50.029329], [-125.286828, 50.023536], [-125.28353, 50.02317], [-125.28376, 50.01863], [-125.283888, 50.014023], [-125.288028, 50.013975], [-125.302768, 50.01434], [-125.302738, 50.014576], [-125.303248, 50.015072], [-125.30379, 50.015438], [-125.303863, 50.015821], [-125.303676, 50.016058], [-125.302883, 50.016276], [-125.302477, 50.016472], [-125.301927, 50.016912], [-125.301499, 50.017466], [-125.301466, 50.017921], [-125.30169, 50.018356], [-125.301802, 50.019096], [-125.30155, 50.019605], [-125.301265, 50.019817], [-125.300915, 50.019918], [-125.300009, 50.019749], [-125.299648, 50.019797], [-125.299244, 50.020083], [-125.299075, 50.020929], [-125.29793, 50.021005], [-125.297548, 50.02116], [-125.29751, 50.021404], [-125.295654, 50.023231], [-125.292669, 50.023389], [-125.292242, 50.024983]], [[-125.241545, 49.957448], [-125.241201, 49.95756], [-125.241226, 49.95653], [-125.241065, 49.95273], [-125.237924, 49.953048], [-125.237427, 49.950588], [-125.23643, 49.944735], [-125.248337, 49.94403], [-125.249038, 49.952153], [-125.241668, 49.952687], [-125.241545, 49.957448]]], [[[-125.462921, 49.915983], [-125.46294, 49.916183], [-125.463603, 49.916296], [-125.463978, 49.916614], [-125.464661, 49.915912], [-125.465703, 49.915061], [-125.464954, 49.915014], [-125.462627, 49.915834], [-125.462921, 49.915983]]], [[[-125.472004, 49.914116], [-125.475509, 49.912643], [-125.476006, 49.912318], [-125.476287, 49.91206], [-125.476409, 49.911627], [-125.476378, 49.911264], [-125.477002, 49.910612], [-125.477866, 49.910494], [-125.478895, 49.910506], [-125.479783, 49.910448], [-125.480555, 49.910265], [-125.48086, 49.910043], [-125.48096, 49.909852], [-125.480795, 49.909317], [-125.480807, 49.908732], [-125.481882, 49.90799], [-125.482097, 49.907588], [-125.482108, 49.90748], [-125.482007, 49.907464], [-125.480194, 49.907675], [-125.479633, 49.907624], [-125.479613, 49.9073], [-125.479208, 49.906895], [-125.478961, 49.906811], [-125.478679, 49.906807], [-125.47823, 49.906664], [-125.481848, 49.904675], [-125.481721, 49.903995], [-125.477475, 49.901852], [-125.476246, 49.901841], [-125.475747, 49.901732], [-125.472216, 49.901814], [-125.472065, 49.90286], [-125.471153, 49.904272], [-125.468365, 49.903657], [-125.466408, 49.906739], [-125.46807, 49.908013], [-125.467687, 49.908756], [-125.4666, 49.909166], [-125.466314, 49.909612], [-125.464427, 49.90923], [-125.464155, 49.909827], [-125.464894, 49.91007], [-125.46544, 49.910411], [-125.464738, 49.910754], [-125.465541, 49.911024], [-125.466253, 49.910834], [-125.467016, 49.911467], [-125.468191, 49.911699], [-125.46924, 49.910264], [-125.471912, 49.910712], [-125.472149, 49.910883], [-125.47405, 49.911185], [-125.472004, 49.914116]]], [[[-125.465866, 49.918704], [-125.467654, 49.919434], [-125.468164, 49.91893], [-125.467904, 49.91882], [-125.467964, 49.918174], [-125.467413, 49.917654], [-125.466552, 49.91777], [-125.465866, 49.918704]]], [[[-125.463971, 49.921756], [-125.464352, 49.922414], [-125.46493, 49.922887], [-125.465435, 49.923139], [-125.466001, 49.923281], [-125.465844, 49.922878], [-125.465379, 49.922273], [-125.463702, 49.920648], [-125.463971, 49.921756]]], [[[-125.457669, 49.93401], [-125.457761, 49.934111], [-125.458472, 49.934022], [-125.457529, 49.933514], [-125.457076, 49.932039], [-125.456363, 49.932287], [-125.454842, 49.933552], [-125.455935, 49.93481], [-125.45628, 49.934718], [-125.456148, 49.934581], [-125.457669, 49.93401]]], [[[-125.486275, 49.937217], [-125.48461, 49.939362], [-125.4854, 49.939413], [-125.489165, 49.93763], [-125.488598, 49.937459], [-125.488424, 49.937309], [-125.488767, 49.935247], [-125.49002, 49.935349], [-125.48986, 49.935878], [-125.490494, 49.935952], [-125.490698, 49.935459], [-125.491227, 49.935417], [-125.491076, 49.934798], [-125.49035, 49.934345], [-125.489797, 49.934085], [-125.489665, 49.933668], [-125.490066, 49.932945], [-125.489545, 49.932362], [-125.485379, 49.930661], [-125.485342, 49.930259], [-125.485598, 49.929845], [-125.486352, 49.92915], [-125.485287, 49.928511], [-125.485439, 49.927882], [-125.483064, 49.92758], [-125.482832, 49.927148], [-125.479419, 49.927393], [-125.478086, 49.926283], [-125.47701, 49.925544], [-125.474379, 49.924871], [-125.471905, 49.924815], [-125.471757, 49.924298], [-125.469544, 49.924352], [-125.469075, 49.924797], [-125.468357, 49.924919], [-125.468086, 49.925052], [-125.467924, 49.925154], [-125.467849, 49.925308], [-125.467256, 49.925717], [-125.467323, 49.926228], [-125.467118, 49.926574], [-125.466386, 49.926977], [-125.465392, 49.927159], [-125.464752, 49.927416], [-125.464808, 49.927721], [-125.46495, 49.92779], [-125.465455, 49.927833], [-125.465936, 49.927994], [-125.46625, 49.928139], [-125.466413, 49.928316], [-125.466391, 49.928443], [-125.466121, 49.928844], [-125.465945, 49.928965], [-125.46552, 49.929676], [-125.467778, 49.930316], [-125.471019, 49.927337], [-125.477377, 49.934527], [-125.478723, 49.934863], [-125.486275, 49.937217]]]]}, "properties": {"name": "Campbell River", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Campbell River", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924034", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.95319, 50.39198], [-125.951411, 50.394764], [-125.954348, 50.395723], [-125.954827, 50.396888], [-125.956773, 50.398047], [-125.957082, 50.399886], [-125.959011, 50.402096], [-125.962362, 50.40022], [-125.961995, 50.397801], [-125.96205, 50.397744], [-125.961998, 50.397677], [-125.962222, 50.386238], [-125.966018, 50.386093], [-125.965902, 50.378264], [-125.962585, 50.378414], [-125.96262, 50.376891], [-125.962363, 50.372584], [-125.957889, 50.372514], [-125.957649, 50.368864], [-125.951585, 50.368807], [-125.951063, 50.357651], [-125.925501, 50.35765], [-125.925572, 50.357988], [-125.92669, 50.359657], [-125.927561, 50.360595], [-125.928083, 50.361037], [-125.928634, 50.361369], [-125.932388, 50.363067], [-125.932118, 50.36307], [-125.932022, 50.363417], [-125.932251, 50.36361], [-125.934618, 50.373214], [-125.936113, 50.373246], [-125.937246, 50.373388], [-125.93847, 50.373609], [-125.939286, 50.37385], [-125.940643, 50.374662], [-125.943473, 50.376111], [-125.94483, 50.377823], [-125.945121, 50.379837], [-125.94622, 50.385337], [-125.952921, 50.384652], [-125.953368, 50.387344], [-125.952414, 50.388239], [-125.95319, 50.39198]]]]}, "properties": {"name": "Sayward", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Sayward", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924039", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.908571, 49.999547], [-125.907625, 49.997749], [-125.904485, 49.996449], [-125.901759, 49.994099], [-125.899899, 49.989097], [-125.900153, 49.985785], [-125.898291, 49.981677], [-125.89429, 49.977049], [-125.895846, 49.973952], [-125.898809, 49.973881], [-125.903076, 49.973132], [-125.902972, 49.966743], [-125.905305, 49.962097], [-125.907552, 49.958556], [-125.909474, 49.95496], [-125.917728, 49.951961], [-125.920703, 49.94921], [-125.921245, 49.943823], [-125.919626, 49.93998], [-125.918619, 49.935902], [-125.917939, 49.930984], [-125.919455, 49.926652], [-125.919256, 49.924942], [-125.912713, 49.919235], [-125.914677, 49.901634], [-125.907102, 49.901549], [-125.897704, 49.905126], [-125.890516, 49.904521], [-125.883786, 49.89816], [-125.882407, 49.891985], [-125.884804, 49.884919], [-125.881777, 49.876956], [-125.88116, 49.871606], [-125.886512, 49.866196], [-125.890001, 49.860943], [-125.892, 49.858126], [-125.898408, 49.852307], [-125.903042, 49.845495], [-125.905961, 49.842204], [-125.906858, 49.840811], [-125.907771, 49.841267], [-125.908423, 49.841349], [-125.91066, 49.84146], [-125.911429, 49.841442], [-125.914857, 49.837377], [-125.913649, 49.820692], [-125.919873, 49.819092], [-125.919445, 49.81829], [-125.917504, 49.813934], [-125.91371, 49.807926], [-125.917979, 49.804932], [-125.919449, 49.800694], [-125.918746, 49.796768], [-125.917037, 49.793235], [-125.914362, 49.791893], [-125.91405, 49.786351], [-125.914758, 49.779859], [-125.914508, 49.77612], [-125.912391, 49.771287], [-125.909443, 49.768779], [-125.906341, 49.766694], [-125.90305, 49.765583], [-125.902156, 49.763194], [-125.899792, 49.759551], [-125.894372, 49.75299], [-125.891835, 49.749709], [-125.88668, 49.745861], [-125.881611, 49.744077], [-125.87928, 49.74336], [-125.876748, 49.742333], [-125.866311, 49.742727], [-125.862038, 49.745213], [-125.854506, 49.739822], [-125.850061, 49.735582], [-125.848577, 49.732976], [-125.846666, 49.726907], [-125.837014, 49.726362], [-125.833477, 49.722836], [-125.836167, 49.719681], [-125.837898, 49.715833], [-125.831278, 49.706073], [-125.824305, 49.702385], [-125.822965, 49.702161], [-125.819524, 49.699969], [-125.814321, 49.693935], [-125.806323, 49.69236], [-125.802842, 49.688202], [-125.801993, 49.681559], [-125.802334, 49.676574], [-125.803622, 49.673339], [-125.804568, 49.670446], [-125.802712, 49.66285], [-125.796707, 49.658424], [-125.784546, 49.655104], [-125.771795, 49.653276], [-125.765549, 49.653576], [-125.755729, 49.655678], [-125.754582, 49.656107], [-125.734329, 49.648617], [-125.73268, 49.646745], [-125.73283, 49.643823], [-125.730278, 49.635677], [-125.723285, 49.628967], [-125.722175, 49.627026], [-125.71854, 49.628293], [-125.717648, 49.628194], [-125.717126, 49.628295], [-125.716342, 49.62862], [-125.715806, 49.628705], [-125.715599, 49.628953], [-125.715185, 49.629223], [-125.714326, 49.629468], [-125.714237, 49.629614], [-125.714274, 49.630095], [-125.700925, 49.630655], [-125.696408, 49.625925], [-125.69488, 49.61914], [-125.686554, 49.607373], [-125.692043, 49.602845], [-125.697761, 49.603181], [-125.704736, 49.605256], [-125.715465, 49.605018], [-125.716873, 49.604301], [-125.721216, 49.602421], [-125.722214, 49.600588], [-125.723477, 49.593048], [-125.725298, 49.587231], [-125.727799, 49.58046], [-125.728179, 49.580433], [-125.735225, 49.57918], [-125.743128, 49.578592], [-125.748476, 49.572647], [-125.741949, 49.562906], [-125.734158, 49.563215], [-125.734302, 49.562861], [-125.734501, 49.559417], [-125.733749, 49.554299], [-125.730073, 49.547732], [-125.727535, 49.544273], [-125.728935, 49.541256], [-125.732575, 49.537382], [-125.736078, 49.53427], [-125.739324, 49.531787], [-125.741281, 49.529088], [-125.741584, 49.524541], [-125.741131, 49.522481], [-125.736096, 49.523462], [-125.722397, 49.520924], [-125.716074, 49.520641], [-125.70934, 49.517347], [-125.704542, 49.512836], [-125.700741, 49.511142], [-125.699029, 49.511314], [-125.692929, 49.514412], [-125.686932, 49.514338], [-125.682369, 49.511035], [-125.65658, 49.512023], [-125.643119, 49.518847], [-125.637653, 49.515294], [-125.634624, 49.511403], [-125.633954, 49.504534], [-125.634084, 49.499788], [-125.632656, 49.498114], [-125.618811, 49.499486], [-125.606244, 49.498062], [-125.584722, 49.496408], [-125.567045, 49.498376], [-125.567034, 49.49825], [-125.558296, 49.498869], [-125.552993, 49.498685], [-125.551142, 49.497187], [-125.553178, 49.490695], [-125.551202, 49.488918], [-125.534152, 49.485702], [-125.524198, 49.483128], [-125.516109, 49.480538], [-125.504149, 49.478236], [-125.501043, 49.478116], [-125.499812, 49.478169], [-125.499804, 49.479339], [-125.498947, 49.479545], [-125.494796, 49.48407], [-125.492545, 49.489575], [-125.490917, 49.495252], [-125.491468, 49.496653], [-125.49334, 49.500313], [-125.492636, 49.50426], [-125.489949, 49.507578], [-125.483451, 49.509803], [-125.482393, 49.512964], [-125.48312, 49.516139], [-125.479507, 49.518425], [-125.477457, 49.52127], [-125.473667, 49.524544], [-125.468817, 49.528217], [-125.454577, 49.531288], [-125.446154, 49.534927], [-125.442095, 49.538299], [-125.441982, 49.541331], [-125.434274, 49.55367], [-125.430081, 49.555711], [-125.411781, 49.545534], [-125.4036, 49.544698], [-125.395194, 49.547172], [-125.390124, 49.545853], [-125.38757, 49.542197], [-125.381588, 49.540715], [-125.379574, 49.547903], [-125.385141, 49.558828], [-125.385336, 49.561829], [-125.391666, 49.575826], [-125.392798, 49.584462], [-125.395887, 49.594019], [-125.398459, 49.597014], [-125.402636, 49.604017], [-125.404991, 49.606771], [-125.411879, 49.613438], [-125.414415, 49.616011], [-125.424246, 49.626326], [-125.427349, 49.633135], [-125.427633, 49.638445], [-125.426521, 49.642666], [-125.433745, 49.648189], [-125.452403, 49.662871], [-125.498788, 49.699019], [-125.513744, 49.710211], [-125.513449, 49.710373], [-125.515, 49.715427], [-125.496193, 49.724971], [-125.495645, 49.730062], [-125.495011, 49.734298], [-125.491371, 49.739002], [-125.491288, 49.74081], [-125.497927, 49.743874], [-125.5219, 49.754572], [-125.528315, 49.756265], [-125.545891, 49.755348], [-125.546233, 49.756091], [-125.548088, 49.762576], [-125.54512, 49.76867], [-125.553072, 49.78519], [-125.535518, 49.79661], [-125.524355, 49.800424], [-125.511545, 49.802964], [-125.510002, 49.81567], [-125.506173, 49.816521], [-125.504868, 49.822918], [-125.502316, 49.82701], [-125.496976, 49.828553], [-125.49332, 49.836713], [-125.486353, 49.837395], [-125.485706, 49.827474], [-125.460894, 49.828135], [-125.423151, 49.828856], [-125.423296, 49.836108], [-125.388294, 49.836231], [-125.388309, 49.839781], [-125.382762, 49.839723], [-125.38279, 49.848161], [-125.402557, 49.848289], [-125.403433, 49.874479], [-125.355997, 49.874506], [-125.355035, 49.87594], [-125.354912, 49.877022], [-125.355017, 49.878661], [-125.355412, 49.88062], [-125.357228, 49.88299], [-125.357843, 49.883973], [-125.358036, 49.885222], [-125.357396, 49.886464], [-125.357365, 49.887404], [-125.357833, 49.888835], [-125.358985, 49.89108], [-125.358549, 49.892852], [-125.357339, 49.894987], [-125.355641, 49.897252], [-125.354246, 49.900706], [-125.353373, 49.902177], [-125.353796, 49.903375], [-125.353996, 49.907372], [-125.35361, 49.909018], [-125.351887, 49.910524], [-125.347838, 49.912107], [-125.343693, 49.913583], [-125.339889, 49.915073], [-125.337281, 49.916188], [-125.335048, 49.917234], [-125.33209, 49.919454], [-125.32982, 49.919735], [-125.326639, 49.919935], [-125.324548, 49.919932], [-125.323728, 49.91974], [-125.314107, 49.915939], [-125.313806, 49.915974], [-125.30983, 49.913176], [-125.308881, 49.912264], [-125.307915, 49.911103], [-125.307407, 49.910084], [-125.307301, 49.909396], [-125.30751, 49.908828], [-125.308061, 49.908209], [-125.310494, 49.90667], [-125.310921, 49.90625], [-125.311306, 49.905625], [-125.308904, 49.902896], [-125.308306, 49.902559], [-125.306197, 49.901913], [-125.30519, 49.901459], [-125.303616, 49.900354], [-125.299843, 49.897178], [-125.299242, 49.896428], [-125.297502, 49.895124], [-125.292623, 49.893117], [-125.285391, 49.890433], [-125.283889, 49.889197], [-125.282192, 49.887114], [-125.281666, 49.885866], [-125.281064, 49.885018], [-125.279976, 49.88402], [-125.278605, 49.883197], [-125.277834, 49.882967], [-125.277775, 49.883008], [-125.276753, 49.882913], [-125.275431, 49.883205], [-125.274434, 49.883606], [-125.274303, 49.883853], [-125.27495, 49.884745], [-125.274952, 49.884885], [-125.2748, 49.885035], [-125.274436, 49.885151], [-125.273257, 49.885209], [-125.272094, 49.885649], [-125.271395, 49.885728], [-125.269362, 49.885576], [-125.268576, 49.885612], [-125.266389, 49.886025], [-125.264705, 49.88644], [-125.26455, 49.886629], [-125.264665, 49.887064], [-125.265244, 49.888049], [-125.265832, 49.888797], [-125.267014, 49.889941], [-125.267081, 49.8902], [-125.266882, 49.890749], [-125.266586, 49.891116], [-125.26635, 49.891897], [-125.265958, 49.894284], [-125.265381, 49.895384], [-125.264609, 49.895965], [-125.264071, 49.896133], [-125.263634, 49.896139], [-125.263078, 49.895963], [-125.262378, 49.894797], [-125.261974, 49.894374], [-125.261368, 49.894028], [-125.260785, 49.894169], [-125.260216, 49.894746], [-125.259553, 49.895756], [-125.258679, 49.896515], [-125.257787, 49.896911], [-125.257353, 49.896982], [-125.256636, 49.89694], [-125.256032, 49.896731], [-125.254549, 49.895935], [-125.252554, 49.895203], [-125.252082, 49.895093], [-125.25129, 49.895103], [-125.250466, 49.895528], [-125.249934, 49.895616], [-125.249675, 49.895599], [-125.248963, 49.895283], [-125.248542, 49.895197], [-125.247329, 49.895439], [-125.246415, 49.895389], [-125.243801, 49.894605], [-125.240941, 49.894169], [-125.240202, 49.893827], [-125.239163, 49.893138], [-125.238236, 49.892735], [-125.237547, 49.892729], [-125.236938, 49.892961], [-125.236348, 49.893309], [-125.236184, 49.893665], [-125.236287, 49.893975], [-125.236844, 49.894457], [-125.237254, 49.895019], [-125.237231, 49.895585], [-125.236931, 49.895865], [-125.23658, 49.895912], [-125.236304, 49.895824], [-125.235464, 49.895043], [-125.234766, 49.89482], [-125.234238, 49.894811], [-125.233705, 49.894881], [-125.233068, 49.89512], [-125.232442, 49.895515], [-125.232073, 49.895907], [-125.231772, 49.89608], [-125.230736, 49.896001], [-125.229061, 49.896572], [-125.227869, 49.896788], [-125.226845, 49.896811], [-125.225755, 49.896656], [-125.224377, 49.896106], [-125.224031, 49.8958], [-125.224005, 49.895494], [-125.224342, 49.895172], [-125.224967, 49.8948], [-125.226026, 49.89434], [-125.226375, 49.894094], [-125.226937, 49.893562], [-125.227125, 49.89297], [-125.227019, 49.892644], [-125.226769, 49.892366], [-125.225501, 49.891667], [-125.224736, 49.890952], [-125.224472, 49.89008], [-125.224633, 49.889767], [-125.225433, 49.889002], [-125.225487, 49.888368], [-125.225216, 49.888079], [-125.224861, 49.887912], [-125.22412, 49.887833], [-125.223422, 49.887827], [-125.221455, 49.88838], [-125.219833, 49.888102], [-125.219436, 49.887949], [-125.218117, 49.887254], [-125.217291, 49.886559], [-125.217022, 49.88624], [-125.216303, 49.884422], [-125.215928, 49.884087], [-125.21528, 49.88388], [-125.214487, 49.883932], [-125.213646, 49.884293], [-125.21312, 49.884869], [-125.213049, 49.885289], [-125.213369, 49.886279], [-125.21328, 49.886609], [-125.21257, 49.887046], [-125.211609, 49.887344], [-125.209196, 49.88723], [-125.207313, 49.887001], [-125.206822, 49.887049], [-125.206078, 49.88736], [-125.205568, 49.887726], [-125.205173, 49.888391], [-125.204836, 49.888568], [-125.204496, 49.888588], [-125.204021, 49.888526], [-125.203148, 49.888068], [-125.20297, 49.887368], [-125.202769, 49.887081], [-125.202358, 49.886794], [-125.201966, 49.886676], [-125.200257, 49.886745], [-125.199109, 49.886928], [-125.198386, 49.886941], [-125.1977, 49.886698], [-125.196279, 49.885722], [-125.19613, 49.885382], [-125.196224, 49.884976], [-125.196662, 49.884417], [-125.196694, 49.884074], [-125.196438, 49.883774], [-125.195812, 49.883472], [-125.194011, 49.882986], [-125.192897, 49.882748], [-125.192037, 49.882658], [-125.190408, 49.882644], [-125.188832, 49.882912], [-125.188148, 49.882942], [-125.187669, 49.882801], [-125.187491, 49.882436], [-125.187424, 49.880727], [-125.187239, 49.880441], [-125.186009, 49.879819], [-125.185556, 49.879529], [-125.185108, 49.878897], [-125.184627, 49.878554], [-125.184358, 49.878583], [-125.184177, 49.878718], [-125.183492, 49.879703], [-125.183262, 49.879824], [-125.182953, 49.879824], [-125.18224, 49.879611], [-125.181668, 49.879221], [-125.181317, 49.878661], [-125.180707, 49.876671], [-125.18007, 49.875856], [-125.179811, 49.875757], [-125.178624, 49.875661], [-125.176476, 49.875298], [-125.174978, 49.875233], [-125.173414, 49.874825], [-125.172542, 49.874431], [-125.172017, 49.874045], [-125.171714, 49.873544], [-125.170258, 49.87185], [-125.169586, 49.871451], [-125.168921, 49.871184], [-125.166528, 49.870687], [-125.163957, 49.870434], [-125.163392, 49.870234], [-125.162744, 49.869816], [-125.162313, 49.869302], [-125.162031, 49.868653], [-125.162002, 49.868113], [-125.162649, 49.866918], [-125.162674, 49.86629], [-125.162508, 49.865795], [-125.162249, 49.865467], [-125.161745, 49.865152], [-125.161451, 49.865041], [-125.160814, 49.864951], [-125.159783, 49.864981], [-125.15707, 49.865369], [-125.155086, 49.865282], [-125.154392, 49.865342], [-125.153891, 49.865525], [-125.153211, 49.866582], [-125.152645, 49.866985], [-125.152083, 49.867146], [-125.151503, 49.867127], [-125.15039, 49.866754], [-125.149668, 49.866874], [-125.148781, 49.8674], [-125.147894, 49.868245], [-125.147826, 49.868664], [-125.147527, 49.869042], [-125.146987, 49.869466], [-125.145313, 49.870003], [-125.144732, 49.870042], [-125.143977, 49.869782], [-125.143671, 49.869473], [-125.143316, 49.868845], [-125.142853, 49.868496], [-125.139785, 49.869584], [-125.138234, 49.869829], [-125.13711, 49.869841], [-125.136088, 49.869692], [-125.13512, 49.869374], [-125.132933, 49.868122], [-125.132383, 49.867879], [-125.131781, 49.867821], [-125.131411, 49.867897], [-125.129977, 49.868439], [-125.129498, 49.86855], [-125.127804, 49.868683], [-125.126286, 49.868498], [-125.125812, 49.868586], [-125.124981, 49.868861], [-125.123838, 49.869462], [-125.121825, 49.870721], [-125.11935, 49.871839], [-125.117093, 49.87203], [-125.116078, 49.872434], [-125.114939, 49.873666], [-125.112507, 49.874733], [-125.084219, 49.873438], [-125.053552, 49.872457], [-125.000305, 49.870987], [-124.884182, 49.873206], [-124.900699, 49.893428], [-124.906768, 49.900521], [-124.922805, 49.919919], [-124.931055, 49.92955], [-124.939892, 49.94017], [-124.959239, 49.939728], [-124.975408, 49.938933], [-124.988384, 49.938406], [-125.001433, 49.937372], [-125.013163, 49.938826], [-125.022683, 49.940367], [-125.036512, 49.943585], [-125.047309, 49.946937], [-125.056392, 49.950443], [-125.064413, 49.953013], [-125.071718, 49.955154], [-125.085908, 49.958299], [-125.103251, 49.962356], [-125.11524, 49.965272], [-125.123567, 49.967444], [-125.191357, 49.950875], [-125.197916, 49.95037], [-125.198662, 49.949616], [-125.199908, 49.950374], [-125.200741, 49.950405], [-125.19766, 49.94838], [-125.197871, 49.948145], [-125.198851, 49.947381], [-125.196959, 49.946168], [-125.197771, 49.945774], [-125.198219, 49.945655], [-125.200186, 49.94565], [-125.200101, 49.946249], [-125.200417, 49.946263], [-125.200491, 49.945654], [-125.200744, 49.945657], [-125.200677, 49.94626], [-125.201628, 49.946295], [-125.201708, 49.945669], [-125.202118, 49.945674], [-125.202034, 49.946301], [-125.203959, 49.946377], [-125.204025, 49.945698], [-125.204417, 49.945702], [-125.204362, 49.946369], [-125.205202, 49.946391], [-125.206184, 49.946714], [-125.206207, 49.946408], [-125.206822, 49.946416], [-125.206859, 49.945733], [-125.207117, 49.945736], [-125.207071, 49.946378], [-125.208982, 49.946423], [-125.209093, 49.945037], [-125.203463, 49.944947], [-125.203523, 49.938808], [-125.203395, 49.929828], [-125.203303, 49.929707], [-125.202151, 49.929448], [-125.199133, 49.929266], [-125.196694, 49.929486], [-125.195106, 49.929569], [-125.195546, 49.929198], [-125.194692, 49.928998], [-125.195208, 49.928301], [-125.195803, 49.923473], [-125.195109, 49.919182], [-125.195713, 49.917649], [-125.195713, 49.916431], [-125.195583, 49.915915], [-125.194023, 49.915843], [-125.194022, 49.908543], [-125.199433, 49.908674], [-125.199736, 49.904795], [-125.205676, 49.903021], [-125.206083, 49.902952], [-125.206518, 49.902926], [-125.21048, 49.903036], [-125.210369, 49.904867], [-125.215937, 49.905269], [-125.216075, 49.903483], [-125.21687, 49.90399], [-125.218491, 49.905649], [-125.219164, 49.906169], [-125.22052, 49.906877], [-125.222845, 49.907843], [-125.224371, 49.908597], [-125.223457, 49.915772], [-125.26779, 49.91676], [-125.288894, 49.916365], [-125.287667, 49.930969], [-125.296803, 49.93097], [-125.295007, 49.94504], [-125.306565, 49.945168], [-125.305844, 49.959705], [-125.316358, 49.959635], [-125.316136, 49.974211], [-125.316434, 49.975559], [-125.316502, 49.980638], [-125.316161, 49.982611], [-125.315415, 49.988107], [-125.317253, 49.988049], [-125.318379, 49.989669], [-125.323508, 49.989577], [-125.32517, 49.988272], [-125.337289, 49.990156], [-125.33806, 49.992335], [-125.337983, 49.993937], [-125.336668, 49.995705], [-125.334924, 49.996485], [-125.330727, 49.996521], [-125.327072, 49.999801], [-125.343126, 49.999795], [-125.372897, 49.999562], [-125.379543, 49.999675], [-125.379451, 49.999666], [-125.379401, 49.999404], [-125.380889, 49.999254], [-125.381032, 49.999355], [-125.381057, 49.999495], [-125.381557, 50.000079], [-125.410747, 50.000073], [-125.411127, 50.005226], [-125.410766, 50.008533], [-125.415394, 50.009354], [-125.418143, 50.009715], [-125.422179, 50.009107], [-125.447324, 50.015679], [-125.44904, 50.017091], [-125.450883, 50.018297], [-125.452486, 50.019219], [-125.454915, 50.020491], [-125.457882, 50.021797], [-125.467536, 50.024621], [-125.469085, 50.0249], [-125.483658, 50.026482], [-125.489821, 50.025425], [-125.496581, 50.023866], [-125.501126, 50.022274], [-125.505563, 50.020642], [-125.515953, 50.017479], [-125.527392, 50.014626], [-125.531838, 50.013739], [-125.556249, 50.017934], [-125.560652, 50.015205], [-125.562188, 50.013942], [-125.562646, 50.012584], [-125.563366, 50.012092], [-125.564282, 50.011616], [-125.565241, 50.010752], [-125.566531, 50.010024], [-125.567159, 50.009383], [-125.567597, 50.009114], [-125.56841, 50.008831], [-125.569217, 50.007889], [-125.56998, 50.006509], [-125.571327, 50.004787], [-125.572091, 50.004193], [-125.572828, 50.003285], [-125.573016, 50.002949], [-125.573191, 50.002], [-125.573599, 50.001577], [-125.574179, 50.001233], [-125.575836, 50.000693], [-125.577196, 50.000458], [-125.577899, 50.000206], [-125.58121, 49.999898], [-125.583645, 49.999793], [-125.595061, 49.99995], [-125.594986, 49.99934], [-125.596085, 49.993243], [-125.608094, 49.993218], [-125.609716, 49.989949], [-125.625789, 49.990055], [-125.626295, 49.982914], [-125.635688, 49.983273], [-125.636226, 49.990423], [-125.631419, 49.990561], [-125.631165, 49.999484], [-125.684375, 49.999401], [-125.706224, 49.999658], [-125.776097, 49.99709], [-125.908571, 49.999547]], [[-125.488424, 49.937309], [-125.488598, 49.937459], [-125.489165, 49.93763], [-125.4854, 49.939413], [-125.48461, 49.939362], [-125.486275, 49.937217], [-125.478723, 49.934863], [-125.477377, 49.934527], [-125.471019, 49.927337], [-125.467778, 49.930316], [-125.46552, 49.929676], [-125.465945, 49.928965], [-125.466121, 49.928844], [-125.466391, 49.928443], [-125.466413, 49.928316], [-125.46625, 49.928139], [-125.465936, 49.927994], [-125.465455, 49.927833], [-125.46495, 49.92779], [-125.464808, 49.927721], [-125.464752, 49.927416], [-125.465392, 49.927159], [-125.466386, 49.926977], [-125.467118, 49.926574], [-125.467323, 49.926228], [-125.467256, 49.925717], [-125.467849, 49.925308], [-125.467924, 49.925154], [-125.468086, 49.925052], [-125.468357, 49.924919], [-125.469075, 49.924797], [-125.469544, 49.924352], [-125.471757, 49.924298], [-125.471905, 49.924815], [-125.474379, 49.924871], [-125.47701, 49.925544], [-125.478086, 49.926283], [-125.479419, 49.927393], [-125.482832, 49.927148], [-125.483064, 49.92758], [-125.485439, 49.927882], [-125.485287, 49.928511], [-125.486352, 49.92915], [-125.485598, 49.929845], [-125.485342, 49.930259], [-125.485379, 49.930661], [-125.489545, 49.932362], [-125.490066, 49.932945], [-125.489665, 49.933668], [-125.489797, 49.934085], [-125.49035, 49.934345], [-125.491076, 49.934798], [-125.491227, 49.935417], [-125.490698, 49.935459], [-125.490494, 49.935952], [-125.48986, 49.935878], [-125.49002, 49.935349], [-125.488767, 49.935247], [-125.488424, 49.937309]], [[-125.458472, 49.934022], [-125.457761, 49.934111], [-125.457669, 49.93401], [-125.456148, 49.934581], [-125.45628, 49.934718], [-125.455935, 49.93481], [-125.454842, 49.933552], [-125.456363, 49.932287], [-125.457076, 49.932039], [-125.457529, 49.933514], [-125.458472, 49.934022]], [[-125.465379, 49.922273], [-125.465844, 49.922878], [-125.466001, 49.923281], [-125.465435, 49.923139], [-125.46493, 49.922887], [-125.464352, 49.922414], [-125.463971, 49.921756], [-125.463702, 49.920648], [-125.465379, 49.922273]], [[-125.465866, 49.918704], [-125.466552, 49.91777], [-125.467413, 49.917654], [-125.467964, 49.918174], [-125.467904, 49.91882], [-125.468164, 49.91893], [-125.467654, 49.919434], [-125.465866, 49.918704]], [[-125.476287, 49.91206], [-125.475509, 49.912643], [-125.472004, 49.914116], [-125.47405, 49.911185], [-125.472149, 49.910883], [-125.471912, 49.910712], [-125.46924, 49.910264], [-125.468191, 49.911699], [-125.467016, 49.911467], [-125.466253, 49.910834], [-125.465541, 49.911024], [-125.464738, 49.910754], [-125.46544, 49.910411], [-125.464894, 49.91007], [-125.464155, 49.909827], [-125.464427, 49.90923], [-125.466314, 49.909612], [-125.4666, 49.909166], [-125.467687, 49.908756], [-125.46807, 49.908013], [-125.466408, 49.906739], [-125.468365, 49.903657], [-125.471153, 49.904272], [-125.472065, 49.90286], [-125.472216, 49.901814], [-125.475747, 49.901732], [-125.476246, 49.901841], [-125.477475, 49.901852], [-125.481721, 49.903995], [-125.481848, 49.904675], [-125.47823, 49.906664], [-125.478679, 49.906807], [-125.478961, 49.906811], [-125.479208, 49.906895], [-125.479613, 49.9073], [-125.479633, 49.907624], [-125.480194, 49.907675], [-125.481412, 49.907504], [-125.482108, 49.90748], [-125.481882, 49.90799], [-125.480807, 49.908732], [-125.480795, 49.909317], [-125.48096, 49.909852], [-125.48086, 49.910043], [-125.480555, 49.910265], [-125.479783, 49.910448], [-125.478895, 49.910506], [-125.477866, 49.910494], [-125.477002, 49.910612], [-125.476378, 49.911264], [-125.476409, 49.911627], [-125.476287, 49.91206]], [[-125.464954, 49.915014], [-125.465703, 49.915061], [-125.464661, 49.915912], [-125.463978, 49.916614], [-125.463603, 49.916296], [-125.46294, 49.916183], [-125.462921, 49.915983], [-125.462627, 49.915834], [-125.464954, 49.915014]]]]}, "properties": {"name": "Strathcona D (Oyster Bay - Buttle Lake)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Strathcona D (Oyster Bay - Buttle Lake)", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924042", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.579738, 50.283708], [-127.585763, 50.282579], [-127.589286, 50.284094], [-127.592528, 50.283763], [-127.599092, 50.281107], [-127.598209, 50.279172], [-127.596618, 50.273924], [-127.598079, 50.267115], [-127.604853, 50.262083], [-127.611238, 50.260804], [-127.616473, 50.258356], [-127.623816, 50.257016], [-127.62558, 50.254665], [-127.632444, 50.250246], [-127.638537, 50.250228], [-127.637134, 50.246212], [-127.637055, 50.241988], [-127.639777, 50.239576], [-127.644471, 50.238652], [-127.650677, 50.23875], [-127.661863, 50.239768], [-127.664138, 50.233279], [-127.68462, 50.215794], [-127.688946, 50.215016], [-127.692583, 50.213537], [-127.695529, 50.211357], [-127.692485, 50.203095], [-127.700638, 50.202069], [-127.701339, 50.189337], [-127.706849, 50.188731], [-127.715325, 50.188552], [-127.734726, 50.189646], [-127.741275, 50.183375], [-127.739465, 50.180507], [-127.72709, 50.175705], [-127.732194, 50.16642], [-127.736224, 50.163795], [-127.742457, 50.162891], [-127.748059, 50.162897], [-127.757774, 50.164495], [-127.763324, 50.159283], [-127.769857, 50.156617], [-127.766725, 50.153959], [-127.765376, 50.15156], [-127.767986, 50.148529], [-127.771384, 50.146814], [-127.775303, 50.147177], [-127.779051, 50.148918], [-127.782511, 50.148814], [-127.7895, 50.146613], [-127.794118, 50.144072], [-127.799425, 50.14223], [-127.803379, 50.141596], [-127.807395, 50.142572], [-127.814967, 50.144059], [-127.821716, 50.145226], [-127.827909, 50.145313], [-127.838456, 50.140014], [-127.843496, 50.137234], [-127.850642, 50.143863], [-127.860854, 50.142232], [-127.880454, 50.12618], [-127.892123, 50.119714], [-127.895411, 50.115405], [-127.90232, 50.115753], [-127.907587, 50.119101], [-127.909549, 50.124435], [-127.917327, 50.128661], [-127.967404, 50.122169], [-127.95201, 50.090809], [-127.897964, 50.055448], [-127.914189, 50.011831], [-127.923521, 49.934807], [-127.832567, 49.833945], [-127.783161, 49.77306], [-127.704774, 49.69929], [-127.5, 49.578701], [-127.452074, 49.55262], [-127.294904, 49.513784], [-127.0, 49.521272], [-126.960292, 49.523409], [-126.647866, 49.53902], [-126.614458, 49.540446], [-126.558918, 49.541483], [-126.558729, 49.541444], [-126.558146, 49.541001], [-126.557057, 49.539821], [-126.556698, 49.539777], [-126.506536, 49.540377], [-126.502215, 49.547086], [-126.485853, 49.558674], [-126.474184, 49.570316], [-126.458523, 49.577149], [-126.449701, 49.577129], [-126.443027, 49.576261], [-126.434429, 49.578064], [-126.427103, 49.574907], [-126.420145, 49.574786], [-126.412677, 49.572002], [-126.407369, 49.571549], [-126.403994, 49.570016], [-126.402197, 49.565957], [-126.398676, 49.561622], [-126.391937, 49.561732], [-126.383187, 49.560725], [-126.380183, 49.562229], [-126.376927, 49.569257], [-126.371341, 49.57114], [-126.363807, 49.569334], [-126.363025, 49.570599], [-126.365219, 49.576121], [-126.3597, 49.577022], [-126.354396, 49.578155], [-126.352841, 49.582277], [-126.352796, 49.586444], [-126.352099, 49.58991], [-126.354652, 49.595291], [-126.349062, 49.597174], [-126.346628, 49.598769], [-126.339772, 49.59717], [-126.336508, 49.59734], [-126.335003, 49.598091], [-126.335235, 49.600713], [-126.334654, 49.605888], [-126.330923, 49.606082], [-126.327368, 49.604616], [-126.324282, 49.604715], [-126.321987, 49.60514], [-126.318217, 49.604235], [-126.314594, 49.600573], [-126.312191, 49.597704], [-126.310509, 49.59376], [-126.308716, 49.592081], [-126.300607, 49.589383], [-126.295407, 49.58507], [-126.292467, 49.583205], [-126.28777, 49.579964], [-126.283753, 49.578521], [-126.282824, 49.576187], [-126.283909, 49.574179], [-126.281078, 49.571637], [-126.276238, 49.571947], [-126.270179, 49.569081], [-126.264451, 49.572924], [-126.26022, 49.57363], [-126.256995, 49.571718], [-126.255029, 49.56852], [-126.255838, 49.563292], [-126.255019, 49.561074], [-126.252283, 49.557703], [-126.249061, 49.554996], [-126.243757, 49.55374], [-126.234618, 49.55494], [-126.221215, 49.559721], [-126.219676, 49.558577], [-126.215315, 49.554096], [-126.210767, 49.552066], [-126.206825, 49.551227], [-126.202919, 49.553077], [-126.200591, 49.554785], [-126.197401, 49.555559], [-126.191701, 49.555725], [-126.186793, 49.554628], [-126.184405, 49.550963], [-126.182402, 49.549842], [-126.179821, 49.550217], [-126.174482, 49.555014], [-126.17425, 49.564025], [-126.175151, 49.565267], [-126.178862, 49.567963], [-126.178073, 49.56843], [-126.174631, 49.56946], [-126.168857, 49.569812], [-126.163585, 49.572035], [-126.15704, 49.572211], [-126.146637, 49.578666], [-126.144778, 49.577171], [-126.145294, 49.575071], [-126.146093, 49.573811], [-126.145742, 49.572363], [-126.139941, 49.570026], [-126.13141, 49.56923], [-126.126612, 49.567453], [-126.122533, 49.565396], [-126.119487, 49.564998], [-126.116007, 49.565722], [-126.113675, 49.567428], [-126.111772, 49.570399], [-126.105859, 49.569532], [-126.101481, 49.571401], [-126.099616, 49.571493], [-126.096719, 49.569926], [-126.094284, 49.56913], [-126.092107, 49.567284], [-126.091505, 49.566092], [-126.088789, 49.564455], [-126.085363, 49.56151], [-126.084194, 49.559431], [-126.082343, 49.557141], [-126.078122, 49.555455], [-126.073392, 49.555078], [-126.071032, 49.554095], [-126.067873, 49.551838], [-126.064148, 49.551227], [-126.04638, 49.55895], [-126.045512, 49.565175], [-126.043569, 49.56784], [-126.037868, 49.567997], [-126.031114, 49.571263], [-126.027766, 49.576383], [-126.025648, 49.576731], [-126.015661, 49.573797], [-126.011707, 49.570264], [-126.007866, 49.571124], [-126.002237, 49.571092], [-125.999218, 49.572584], [-125.999135, 49.577546], [-125.998841, 49.580683], [-125.994744, 49.582594], [-125.991833, 49.580872], [-125.987053, 49.5775], [-125.981671, 49.578005], [-125.976567, 49.580148], [-125.969693, 49.584884], [-125.967221, 49.584575], [-125.965294, 49.583263], [-125.964876, 49.582002], [-125.960567, 49.582882], [-125.958055, 49.583064], [-125.954196, 49.581234], [-125.952991, 49.579643], [-125.949353, 49.573774], [-125.946691, 49.570849], [-125.9433, 49.568996], [-125.939003, 49.568285], [-125.936685, 49.566809], [-125.902877, 49.558526], [-125.897812, 49.557637], [-125.893255, 49.554495], [-125.892073, 49.551316], [-125.888607, 49.546963], [-125.88433, 49.544662], [-125.877779, 49.543873], [-125.866335, 49.545453], [-125.862213, 49.545465], [-125.852515, 49.54415], [-125.836317, 49.54424], [-125.826097, 49.541542], [-125.815182, 49.54022], [-125.807506, 49.539387], [-125.799477, 49.539639], [-125.789396, 49.540841], [-125.784606, 49.539842], [-125.780993, 49.536652], [-125.774351, 49.529574], [-125.770019, 49.52666], [-125.768541, 49.522336], [-125.769374, 49.519492], [-125.766272, 49.515791], [-125.761041, 49.513224], [-125.75613, 49.513695], [-125.74925, 49.517619], [-125.741131, 49.522481], [-125.741584, 49.524541], [-125.741281, 49.529088], [-125.739324, 49.531787], [-125.736078, 49.53427], [-125.732575, 49.537382], [-125.728935, 49.541256], [-125.727535, 49.544273], [-125.730073, 49.547732], [-125.733749, 49.554299], [-125.734501, 49.559417], [-125.734302, 49.562861], [-125.734158, 49.563215], [-125.741949, 49.562906], [-125.748476, 49.572647], [-125.743128, 49.578592], [-125.735225, 49.57918], [-125.728179, 49.580433], [-125.727799, 49.58046], [-125.725298, 49.587231], [-125.723477, 49.593048], [-125.722214, 49.600588], [-125.721216, 49.602421], [-125.716873, 49.604301], [-125.715465, 49.605018], [-125.704736, 49.605256], [-125.697761, 49.603181], [-125.692043, 49.602845], [-125.686554, 49.607373], [-125.69488, 49.61914], [-125.696408, 49.625925], [-125.700925, 49.630655], [-125.714274, 49.630095], [-125.714237, 49.629614], [-125.714326, 49.629468], [-125.715185, 49.629223], [-125.715599, 49.628953], [-125.715806, 49.628705], [-125.716342, 49.62862], [-125.717126, 49.628295], [-125.717648, 49.628194], [-125.71854, 49.628293], [-125.722175, 49.627026], [-125.723285, 49.628967], [-125.730278, 49.635677], [-125.73283, 49.643823], [-125.73268, 49.646745], [-125.734329, 49.648617], [-125.754582, 49.656107], [-125.755729, 49.655678], [-125.765549, 49.653576], [-125.771795, 49.653276], [-125.784546, 49.655104], [-125.796707, 49.658424], [-125.802712, 49.66285], [-125.804568, 49.670446], [-125.803622, 49.673339], [-125.802334, 49.676574], [-125.801993, 49.681559], [-125.802842, 49.688202], [-125.806323, 49.69236], [-125.814321, 49.693935], [-125.819524, 49.699969], [-125.822965, 49.702161], [-125.824305, 49.702385], [-125.831278, 49.706073], [-125.837898, 49.715833], [-125.836167, 49.719681], [-125.833477, 49.722836], [-125.837014, 49.726362], [-125.846666, 49.726907], [-125.848577, 49.732976], [-125.850061, 49.735582], [-125.854506, 49.739822], [-125.862038, 49.745213], [-125.866311, 49.742727], [-125.876748, 49.742333], [-125.87928, 49.74336], [-125.881611, 49.744077], [-125.88668, 49.745861], [-125.891835, 49.749709], [-125.894372, 49.75299], [-125.899792, 49.759551], [-125.902156, 49.763194], [-125.90305, 49.765583], [-125.906341, 49.766694], [-125.909443, 49.768779], [-125.912391, 49.771287], [-125.914508, 49.77612], [-125.914758, 49.779859], [-125.91405, 49.786351], [-125.914362, 49.791893], [-125.917037, 49.793235], [-125.918746, 49.796768], [-125.919449, 49.800694], [-125.917979, 49.804932], [-125.91371, 49.807926], [-125.917504, 49.813934], [-125.919445, 49.81829], [-125.919873, 49.819092], [-125.913649, 49.820692], [-125.914857, 49.837377], [-125.911429, 49.841442], [-125.91066, 49.84146], [-125.908423, 49.841349], [-125.907771, 49.841267], [-125.906858, 49.840811], [-125.905961, 49.842204], [-125.903042, 49.845495], [-125.898408, 49.852307], [-125.892, 49.858126], [-125.890001, 49.860943], [-125.886512, 49.866196], [-125.88116, 49.871606], [-125.881777, 49.876956], [-125.884804, 49.884919], [-125.882407, 49.891985], [-125.883786, 49.89816], [-125.890516, 49.904521], [-125.897704, 49.905126], [-125.907102, 49.901549], [-125.914677, 49.901634], [-125.912713, 49.919235], [-125.919256, 49.924942], [-125.919455, 49.926652], [-125.917939, 49.930984], [-125.918619, 49.935902], [-125.919626, 49.93998], [-125.921245, 49.943823], [-125.920703, 49.94921], [-125.917728, 49.951961], [-125.909474, 49.95496], [-125.907552, 49.958556], [-125.905305, 49.962097], [-125.902972, 49.966743], [-125.903076, 49.973132], [-125.898809, 49.973881], [-125.895846, 49.973952], [-125.89429, 49.977049], [-125.898291, 49.981677], [-125.900153, 49.985785], [-125.899899, 49.989097], [-125.901759, 49.994099], [-125.904485, 49.996449], [-125.907625, 49.997749], [-125.908571, 49.999547], [-125.776097, 49.99709], [-125.706224, 49.999658], [-125.684375, 49.999401], [-125.631165, 49.999484], [-125.631419, 49.990561], [-125.636226, 49.990423], [-125.635688, 49.983273], [-125.626295, 49.982914], [-125.625789, 49.990055], [-125.609716, 49.989949], [-125.608094, 49.993218], [-125.596085, 49.993243], [-125.594986, 49.99934], [-125.595061, 49.99995], [-125.583645, 49.999793], [-125.58121, 49.999898], [-125.577899, 50.000206], [-125.577196, 50.000458], [-125.575836, 50.000693], [-125.574179, 50.001233], [-125.573599, 50.001577], [-125.573191, 50.002], [-125.573016, 50.002949], [-125.572828, 50.003285], [-125.572091, 50.004193], [-125.571327, 50.004787], [-125.56998, 50.006509], [-125.569217, 50.007889], [-125.56841, 50.008831], [-125.567597, 50.009114], [-125.567159, 50.009383], [-125.566531, 50.010024], [-125.565241, 50.010752], [-125.564282, 50.011616], [-125.563366, 50.012092], [-125.562646, 50.012584], [-125.562188, 50.013942], [-125.560652, 50.015205], [-125.556249, 50.017934], [-125.531838, 50.013739], [-125.527392, 50.014626], [-125.515953, 50.017479], [-125.505563, 50.020642], [-125.501126, 50.022274], [-125.496581, 50.023866], [-125.489821, 50.025425], [-125.483658, 50.026482], [-125.469085, 50.0249], [-125.467536, 50.024621], [-125.457882, 50.021797], [-125.454915, 50.020491], [-125.452486, 50.019219], [-125.450883, 50.018297], [-125.44904, 50.017091], [-125.447324, 50.015679], [-125.422179, 50.009107], [-125.418143, 50.009715], [-125.415394, 50.009354], [-125.410766, 50.008533], [-125.409587, 50.025123], [-125.399815, 50.025388], [-125.396394, 50.025102], [-125.395666, 50.025215], [-125.393666, 50.025126], [-125.392297, 50.025306], [-125.391634, 50.025715], [-125.391034, 50.026257], [-125.391404, 50.026714], [-125.392798, 50.027302], [-125.393646, 50.02754], [-125.394306, 50.027851], [-125.395527, 50.028861], [-125.396373, 50.02941], [-125.397367, 50.029736], [-125.399267, 50.029397], [-125.401122, 50.029961], [-125.402763, 50.031927], [-125.406106, 50.036865], [-125.405602, 50.037886], [-125.403425, 50.038483], [-125.400192, 50.038514], [-125.396824, 50.03772], [-125.391518, 50.039666], [-125.387103, 50.043727], [-125.381512, 50.045209], [-125.376072, 50.046219], [-125.363861, 50.045936], [-125.363913, 50.051805], [-125.31501, 50.05225], [-125.3145, 50.059542], [-125.320596, 50.059567], [-125.320714, 50.065337], [-125.319969, 50.073738], [-125.313492, 50.073637], [-125.313377, 50.077061], [-125.31887, 50.076823], [-125.318775, 50.077142], [-125.318808, 50.077779], [-125.318735, 50.077969], [-125.318426, 50.078191], [-125.316678, 50.07862], [-125.31478, 50.078929], [-125.313624, 50.079232], [-125.313532, 50.079326], [-125.313538, 50.079613], [-125.314359, 50.080945], [-125.314529, 50.08149], [-125.314295, 50.086864], [-125.314131, 50.087034], [-125.315162, 50.08761], [-125.344871, 50.08766], [-125.362929, 50.087984], [-125.386497, 50.088489], [-125.386185, 50.096554], [-125.381683, 50.096366], [-125.362867, 50.095386], [-125.361481, 50.111487], [-125.356366, 50.111812], [-125.358026, 50.115296], [-125.357058, 50.1155], [-125.356039, 50.115557], [-125.354616, 50.115352], [-125.35369, 50.11528], [-125.35266, 50.115085], [-125.352282, 50.115102], [-125.351917, 50.115196], [-125.351648, 50.116183], [-125.351069, 50.120114], [-125.34803, 50.120676], [-125.342621, 50.119638], [-125.339095, 50.118228], [-125.339925, 50.115548], [-125.341096, 50.113913], [-125.344195, 50.112742], [-125.345004, 50.112095], [-125.345226, 50.111588], [-125.343991, 50.111479], [-125.343831, 50.111777], [-125.343521, 50.111947], [-125.34189, 50.112361], [-125.340763, 50.112377], [-125.338372, 50.112191], [-125.33754, 50.112185], [-125.320653, 50.110613], [-125.32092, 50.110201], [-125.321294, 50.10902], [-125.321901, 50.10643], [-125.320356, 50.104314], [-125.312214, 50.09509], [-125.294923, 50.097639], [-125.332018, 50.123175], [-125.350508, 50.123986], [-125.354776, 50.142237], [-125.361095, 50.166928], [-125.366831, 50.192777], [-125.378191, 50.244891], [-125.379073, 50.251663], [-125.384972, 50.258259], [-125.392616, 50.265712], [-125.400696, 50.275392], [-125.404484, 50.281679], [-125.412206, 50.297484], [-125.415801, 50.306477], [-125.422326, 50.321523], [-125.427602, 50.333995], [-125.430776, 50.339812], [-125.433872, 50.343716], [-125.447407, 50.340197], [-125.462445, 50.338829], [-125.470498, 50.340366], [-125.482815, 50.344565], [-125.493698, 50.348381], [-125.50751, 50.351946], [-125.519084, 50.355319], [-125.526375, 50.358021], [-125.543066, 50.363404], [-125.557027, 50.369625], [-125.576141, 50.375828], [-125.58328, 50.376786], [-125.596237, 50.376259], [-125.616152, 50.375173], [-125.624603, 50.374864], [-125.646634, 50.374264], [-125.676486, 50.372036], [-125.704649, 50.36878], [-125.725982, 50.367908], [-125.742196, 50.36878], [-125.770754, 50.371869], [-125.788916, 50.377961], [-125.794725, 50.381138], [-125.804781, 50.384736], [-125.819394, 50.389087], [-125.820809, 50.389394], [-125.830136, 50.389336], [-125.843419, 50.387147], [-125.855709, 50.385998], [-125.876667, 50.388858], [-125.902062, 50.395419], [-125.956906, 50.413946], [-125.987479, 50.427677], [-126.014337, 50.445941], [-126.033527, 50.453818], [-126.08806, 50.467212], [-126.108965, 50.47117], [-126.112819, 50.406149], [-126.111078, 50.397593], [-126.09045, 50.396068], [-126.081177, 50.396402], [-126.063953, 50.401968], [-126.056011, 50.404622], [-126.053981, 50.403085], [-126.046918, 50.394987], [-126.037758, 50.390643], [-126.029745, 50.382913], [-126.025869, 50.37193], [-126.020804, 50.366841], [-126.014584, 50.367179], [-126.009182, 50.363955], [-126.000633, 50.363508], [-125.994037, 50.356249], [-125.992375, 50.348138], [-125.994861, 50.340388], [-125.999851, 50.339529], [-126.008632, 50.343535], [-126.018966, 50.342373], [-126.027987, 50.342039], [-126.038917, 50.344748], [-126.047148, 50.3434], [-126.054846, 50.339586], [-126.055379, 50.331115], [-126.051692, 50.326375], [-126.042127, 50.324866], [-126.037219, 50.322769], [-126.037065, 50.317549], [-126.040028, 50.314608], [-126.042324, 50.312673], [-126.04017, 50.307858], [-126.030032, 50.303702], [-126.021777, 50.303709], [-126.012592, 50.305477], [-126.009315, 50.304084], [-126.010702, 50.294598], [-125.999936, 50.290262], [-125.995701, 50.286418], [-125.995403, 50.28219], [-125.999579, 50.279357], [-126.00342, 50.279228], [-126.009034, 50.27587], [-126.010297, 50.271931], [-126.013944, 50.268507], [-126.020968, 50.265129], [-126.027708, 50.259223], [-126.027235, 50.255295], [-126.023597, 50.250697], [-126.024529, 50.248111], [-126.029511, 50.245613], [-126.033475, 50.241166], [-126.033627, 50.239029], [-126.028627, 50.230485], [-126.042387, 50.221234], [-126.044581, 50.212752], [-126.038763, 50.203098], [-126.044109, 50.194624], [-126.04458, 50.18056], [-126.079159, 50.178512], [-126.093243, 50.178098], [-126.095147, 50.169318], [-126.10081, 50.159507], [-126.117001, 50.157981], [-126.12945, 50.141951], [-126.149171, 50.144223], [-126.167659, 50.131316], [-126.160345, 50.121435], [-126.225728, 50.123173], [-126.217952, 50.11], [-126.241713, 50.10032], [-126.235627, 50.094263], [-126.225758, 50.080535], [-126.237861, 50.083264], [-126.243962, 50.076988], [-126.242752, 50.074638], [-126.254226, 50.068996], [-126.253102, 50.064931], [-126.244873, 50.057933], [-126.241799, 50.059926], [-126.235223, 50.060731], [-126.234074, 50.051813], [-126.238124, 50.045152], [-126.226694, 50.035622], [-126.237774, 50.025047], [-126.226477, 50.02214], [-126.226292, 50.01623], [-126.228932, 50.014823], [-126.231738, 50.013912], [-126.23836, 50.011063], [-126.240986, 50.007997], [-126.243772, 50.005478], [-126.263141, 50.000115], [-126.281835, 49.988504], [-126.306756, 49.970205], [-126.308543, 49.967115], [-126.311602, 49.963466], [-126.317449, 49.961], [-126.323502, 49.958906], [-126.326026, 49.953783], [-126.330186, 49.952973], [-126.334264, 49.952377], [-126.339373, 49.951831], [-126.344791, 49.951616], [-126.348434, 49.950554], [-126.352462, 49.947796], [-126.354819, 49.945056], [-126.356621, 49.942623], [-126.35595, 49.940701], [-126.351761, 49.937419], [-126.349692, 49.936858], [-126.34347, 49.931548], [-126.342139, 49.927564], [-126.342659, 49.92436], [-126.34502, 49.922527], [-126.348758, 49.920064], [-126.356101, 49.918005], [-126.361885, 49.917736], [-126.367602, 49.91604], [-126.37229, 49.914748], [-126.374391, 49.912788], [-126.374312, 49.909998], [-126.376198, 49.908259], [-126.384448, 49.907475], [-126.388829, 49.906755], [-126.394042, 49.908429], [-126.397232, 49.908538], [-126.401078, 49.907846], [-126.404415, 49.908714], [-126.407053, 49.909584], [-126.411829, 49.909887], [-126.416072, 49.911112], [-126.418446, 49.914691], [-126.425723, 49.916153], [-126.431668, 49.917093], [-126.435887, 49.914987], [-126.442024, 49.913129], [-126.448181, 49.910991], [-126.453092, 49.907523], [-126.459977, 49.906913], [-126.465988, 49.908822], [-126.466253, 49.911799], [-126.470506, 49.917975], [-126.477199, 49.919708], [-126.476138, 49.921571], [-126.473904, 49.923981], [-126.471421, 49.926126], [-126.46952, 49.929041], [-126.470703, 49.933744], [-126.473276, 49.936182], [-126.479827, 49.943003], [-126.481328, 49.945498], [-126.478034, 49.94678], [-126.475905, 49.949603], [-126.47813, 49.952269], [-126.481718, 49.955037], [-126.487206, 49.957878], [-126.493986, 49.963887], [-126.498973, 49.962295], [-126.505779, 49.96099], [-126.512054, 49.960619], [-126.514987, 49.963734], [-126.517676, 49.967488], [-126.52208, 49.971116], [-126.527576, 49.971413], [-126.533668, 49.971294], [-126.533616, 49.972584], [-126.539196, 49.977158], [-126.542669, 49.980244], [-126.545232, 49.980419], [-126.552402, 49.980694], [-126.555921, 49.981584], [-126.560267, 49.985145], [-126.562966, 49.98681], [-126.568222, 49.987745], [-126.571569, 49.990245], [-126.572264, 49.995461], [-126.56777, 49.99921], [-126.557575, 49.998587], [-126.553035, 50.005021], [-126.548786, 50.010564], [-126.547216, 50.01355], [-126.551253, 50.017257], [-126.55165, 50.01783], [-126.554406, 50.018668], [-126.560392, 50.020249], [-126.562361, 50.020847], [-126.563037, 50.02277], [-126.559549, 50.026419], [-126.558745, 50.02947], [-126.5909, 50.028642], [-126.592092, 50.027815], [-126.59931, 50.023376], [-126.607872, 50.021407], [-126.61332, 50.021512], [-126.62023, 50.024369], [-126.627915, 50.028197], [-126.634708, 50.025099], [-126.641111, 50.024422], [-126.647276, 50.022746], [-126.659035, 50.018346], [-126.665991, 50.01736], [-126.672043, 50.017953], [-126.674755, 50.024279], [-126.678536, 50.027994], [-126.683306, 50.030046], [-126.688261, 50.030932], [-126.693206, 50.03255], [-126.6935, 50.035676], [-126.691931, 50.038029], [-126.690062, 50.039771], [-126.689131, 50.042055], [-126.691467, 50.044058], [-126.697116, 50.04686], [-126.698937, 50.049065], [-126.696705, 50.051316], [-126.694694, 50.054392], [-126.695486, 50.055815], [-126.697886, 50.059664], [-126.69675, 50.060843], [-126.695425, 50.061822], [-126.68822, 50.062392], [-126.68293, 50.06439], [-126.680956, 50.068546], [-126.677679, 50.073261], [-126.674381, 50.073197], [-126.668748, 50.069602], [-126.66268, 50.068538], [-126.654857, 50.070987], [-126.651596, 50.073641], [-126.647018, 50.091095], [-126.647056, 50.093362], [-126.650374, 50.094162], [-126.653866, 50.093803], [-126.659635, 50.092103], [-126.665385, 50.090682], [-126.667089, 50.092022], [-126.667342, 50.095848], [-126.668833, 50.096815], [-126.674037, 50.097062], [-126.678592, 50.098563], [-126.679757, 50.102899], [-126.683031, 50.107365], [-126.687934, 50.109824], [-126.702964, 50.114707], [-126.714144, 50.114806], [-126.723022, 50.110391], [-126.734429, 50.106397], [-126.747113, 50.103448], [-126.756412, 50.112122], [-126.773436, 50.118178], [-126.791006, 50.124795], [-126.786466, 50.13943], [-126.782568, 50.140973], [-126.778838, 50.139716], [-126.772444, 50.136236], [-126.769523, 50.138213], [-126.766447, 50.141804], [-126.765566, 50.144437], [-126.766462, 50.147739], [-126.771678, 50.151994], [-126.781348, 50.156739], [-126.785861, 50.162183], [-126.787568, 50.165441], [-126.789407, 50.166912], [-126.78847, 50.168745], [-126.785161, 50.169871], [-126.781425, 50.172627], [-126.779919, 50.175049], [-126.781174, 50.178577], [-126.788142, 50.178862], [-126.796183, 50.176542], [-126.799783, 50.172547], [-126.804691, 50.16963], [-126.808734, 50.170875], [-126.807899, 50.174588], [-126.813874, 50.173984], [-126.820802, 50.171095], [-126.821935, 50.169743], [-126.818558, 50.161532], [-126.816161, 50.156752], [-126.820081, 50.143365], [-126.827196, 50.141725], [-126.839624, 50.138759], [-126.842956, 50.140236], [-126.871909, 50.159498], [-126.878313, 50.162466], [-126.885, 50.164233], [-126.887204, 50.166609], [-126.885978, 50.173518], [-126.900283, 50.183017], [-126.903667, 50.190154], [-126.91818, 50.194141], [-126.92765, 50.190259], [-126.931843, 50.18441], [-126.94061, 50.182579], [-126.96976, 50.181986], [-126.990524, 50.181643], [-126.989039, 50.195998], [-126.989634, 50.196373], [-126.992472, 50.197433], [-126.992455, 50.198056], [-126.991967, 50.199972], [-126.989587, 50.221562], [-126.988498, 50.224924], [-126.97294, 50.231114], [-126.972017, 50.234652], [-126.972808, 50.240271], [-126.976575, 50.244139], [-126.986917, 50.245354], [-126.998873, 50.25002], [-126.998818, 50.250086], [-126.998421, 50.277948], [-126.998944, 50.279388], [-126.999754, 50.280532], [-127.006384, 50.281665], [-127.010639, 50.281359], [-127.013434, 50.28309], [-127.021306, 50.287298], [-127.024547, 50.288305], [-127.027956, 50.295879], [-127.02961, 50.299983], [-127.035142, 50.303378], [-127.041245, 50.304993], [-127.04394, 50.306765], [-127.044458, 50.310129], [-127.048164, 50.313103], [-127.046824, 50.323154], [-127.053791, 50.326258], [-127.058609, 50.326826], [-127.064911, 50.326717], [-127.067522, 50.329438], [-127.066681, 50.332426], [-127.066955, 50.33598], [-127.071145, 50.336339], [-127.075411, 50.335297], [-127.07856, 50.335609], [-127.094771, 50.340295], [-127.096834, 50.337448], [-127.097974, 50.334751], [-127.093667, 50.333024], [-127.095346, 50.33089], [-127.094713, 50.329016], [-127.094592, 50.328084], [-127.094924, 50.325747], [-127.095599, 50.324173], [-127.097339, 50.322505], [-127.101456, 50.320634], [-127.105183, 50.321413], [-127.108243, 50.322168], [-127.110515, 50.324218], [-127.112373, 50.324139], [-127.114962, 50.322953], [-127.115552, 50.322031], [-127.12007, 50.319023], [-127.127653, 50.312036], [-127.136194, 50.307336], [-127.141648, 50.303601], [-127.147694, 50.296082], [-127.156162, 50.292521], [-127.161477, 50.287481], [-127.161246, 50.286864], [-127.161908, 50.284477], [-127.163789, 50.280952], [-127.165474, 50.276687], [-127.167498, 50.272778], [-127.178719, 50.262811], [-127.186952, 50.265032], [-127.190594, 50.26834], [-127.194059, 50.270816], [-127.197917, 50.272644], [-127.201557, 50.275296], [-127.204764, 50.273288], [-127.214678, 50.271687], [-127.217862, 50.270587], [-127.220554, 50.268046], [-127.225455, 50.264464], [-127.236616, 50.267034], [-127.240108, 50.269663], [-127.243113, 50.273881], [-127.245237, 50.277465], [-127.248847, 50.280211], [-127.253344, 50.280718], [-127.257028, 50.283148], [-127.265579, 50.284328], [-127.265834, 50.282173], [-127.269319, 50.278559], [-127.275779, 50.277109], [-127.284943, 50.279331], [-127.294386, 50.280045], [-127.296923, 50.276806], [-127.295597, 50.270923], [-127.2945, 50.26077], [-127.291098, 50.24011], [-127.295733, 50.234084], [-127.30426, 50.236555], [-127.306644, 50.23226], [-127.313094, 50.230808], [-127.321035, 50.230438], [-127.333925, 50.232004], [-127.348241, 50.240831], [-127.365, 50.250361], [-127.376562, 50.251897], [-127.377765, 50.257576], [-127.382261, 50.260497], [-127.39303, 50.256966], [-127.402284, 50.253207], [-127.410386, 50.250475], [-127.414265, 50.255051], [-127.421041, 50.258796], [-127.4283, 50.259463], [-127.440442, 50.257838], [-127.443821, 50.259738], [-127.45583, 50.261101], [-127.461813, 50.263583], [-127.468346, 50.267148], [-127.475972, 50.267665], [-127.48538, 50.268442], [-127.488946, 50.27157], [-127.50606, 50.276581], [-127.512457, 50.277917], [-127.521453, 50.277226], [-127.526162, 50.278917], [-127.528868, 50.285324], [-127.53541, 50.288885], [-127.542089, 50.292065], [-127.551462, 50.293832], [-127.56265, 50.292253], [-127.566283, 50.288168], [-127.579738, 50.283708]], [[-127.377803, 50.029596], [-127.378082, 50.029591], [-127.378761, 50.029762], [-127.379959, 50.029411], [-127.380321, 50.029506], [-127.380384, 50.029633], [-127.379995, 50.03004], [-127.380087, 50.030195], [-127.380888, 50.030777], [-127.381013, 50.03251], [-127.374541, 50.032832], [-127.374294, 50.030941], [-127.375874, 50.030909], [-127.37592, 50.030775], [-127.375576, 50.030627], [-127.375459, 50.030409], [-127.375482, 50.03013], [-127.375645, 50.029872], [-127.375956, 50.029697], [-127.37614, 50.029663], [-127.376333, 50.029701], [-127.37639, 50.030107], [-127.376693, 50.030238], [-127.376999, 50.030242], [-127.377154, 50.030225], [-127.37744, 50.030041], [-127.377575, 50.02971], [-127.377803, 50.029596]], [[-127.405034, 50.014755], [-127.404753, 50.014832], [-127.404335, 50.014817], [-127.40409, 50.014616], [-127.403466, 50.014445], [-127.403295, 50.014173], [-127.403131, 50.014082], [-127.402701, 50.013985], [-127.402044, 50.014031], [-127.400977, 50.014196], [-127.400047, 50.014435], [-127.39975, 50.014575], [-127.399774, 50.0147], [-127.400219, 50.014734], [-127.400355, 50.014852], [-127.40031, 50.014932], [-127.400001, 50.015], [-127.399457, 50.014975], [-127.398865, 50.014716], [-127.398503, 50.014683], [-127.398367, 50.014627], [-127.398316, 50.014473], [-127.39796, 50.01428], [-127.397498, 50.01431], [-127.39633, 50.014599], [-127.396719, 50.013381], [-127.396732, 50.012958], [-127.396402, 50.011578], [-127.396435, 50.01058], [-127.39623, 50.010028], [-127.396065, 50.009944], [-127.395911, 50.010006], [-127.395831, 50.009843], [-127.396066, 50.00954], [-127.396071, 50.009369], [-127.395895, 50.009214], [-127.395899, 50.00907], [-127.39603, 50.008892], [-127.396129, 50.008893], [-127.396539, 50.009116], [-127.396638, 50.009107], [-127.396921, 50.008959], [-127.396888, 50.00867], [-127.397227, 50.008603], [-127.397726, 50.008664], [-127.397831, 50.008899], [-127.398051, 50.008975], [-127.398653, 50.008938], [-127.398841, 50.00876], [-127.398846, 50.008616], [-127.399, 50.008564], [-127.399235, 50.008621], [-127.399446, 50.008607], [-127.399787, 50.008405], [-127.400025, 50.007976], [-127.399878, 50.007767], [-127.39987, 50.007596], [-127.399969, 50.007525], [-127.400207, 50.007529], [-127.400425, 50.007271], [-127.40062, 50.007291], [-127.400714, 50.007365], [-127.400736, 50.007607], [-127.400845, 50.007673], [-127.400929, 50.007674], [-127.401372, 50.007328], [-127.401471, 50.007321], [-127.401647, 50.007486], [-127.401669, 50.00762], [-127.401568, 50.007764], [-127.401399, 50.007788], [-127.401379, 50.007922], [-127.401614, 50.008043], [-127.401975, 50.00811], [-127.402184, 50.00806], [-127.402185, 50.007627], [-127.402312, 50.00763], [-127.402818, 50.007898], [-127.403376, 50.007914], [-127.404081, 50.007671], [-127.404281, 50.00753], [-127.40429, 50.007305], [-127.4046, 50.00722], [-127.404752, 50.00725], [-127.404956, 50.007414], [-127.405066, 50.007919], [-127.405417, 50.00824], [-127.405707, 50.008297], [-127.406633, 50.008201], [-127.407252, 50.008445], [-127.407646, 50.008774], [-127.408193, 50.008727], [-127.408344, 50.008782], [-127.40859, 50.009371], [-127.408763, 50.00959], [-127.409074, 50.009926], [-127.409691, 50.010259], [-127.409845, 50.010665], [-127.409818, 50.011043], [-127.409359, 50.011037], [-127.408891, 50.010832], [-127.408447, 50.010728], [-127.408232, 50.01094], [-127.407299, 50.01126], [-127.407008, 50.011221], [-127.406706, 50.011018], [-127.406499, 50.011007], [-127.406357, 50.01104], [-127.40603, 50.01126], [-127.405838, 50.011537], [-127.405855, 50.011879], [-127.405975, 50.012061], [-127.406428, 50.012246], [-127.406573, 50.012528], [-127.406562, 50.01286], [-127.40674, 50.012988], [-127.407117, 50.012958], [-127.407449, 50.013016], [-127.407643, 50.013126], [-127.407637, 50.013288], [-127.407281, 50.013508], [-127.407184, 50.013516], [-127.406687, 50.01333], [-127.406335, 50.013361], [-127.405941, 50.013499], [-127.404817, 50.014122], [-127.404641, 50.014372], [-127.404651, 50.014533], [-127.405034, 50.014755]], [[-126.937951, 49.987117], [-126.938393, 49.987243], [-126.938673, 49.987536], [-126.9388, 49.987798], [-126.94005, 49.988271], [-126.940144, 49.988343], [-126.94011, 49.988514], [-126.940179, 49.988543], [-126.941256, 49.988453], [-126.941954, 49.988466], [-126.943463, 49.988893], [-126.943579, 49.991218], [-126.938022, 49.990911], [-126.937951, 49.987117]], [[-126.863909, 49.979735], [-126.864452, 49.985148], [-126.866529, 49.985188], [-126.866476, 49.992125], [-126.850888, 49.992262], [-126.848566, 49.994145], [-126.844142, 49.99342], [-126.844094, 49.979736], [-126.842704, 49.979756], [-126.84198, 49.973935], [-126.843703, 49.974136], [-126.843446, 49.973364], [-126.843617, 49.972979], [-126.843526, 49.972196], [-126.843729, 49.972019], [-126.843682, 49.970894], [-126.844053, 49.970406], [-126.84408, 49.970101], [-126.84482, 49.969782], [-126.845055, 49.969525], [-126.84515, 49.969275], [-126.855912, 49.975293], [-126.857641, 49.975329], [-126.857545, 49.975604], [-126.857167, 49.97592], [-126.857399, 49.976366], [-126.857028, 49.976907], [-126.857502, 49.977501], [-126.857538, 49.977663], [-126.857055, 49.97787], [-126.85744, 49.978273], [-126.85866, 49.979096], [-126.858999, 49.979597], [-126.859323, 49.979915], [-126.85928, 49.979723], [-126.863909, 49.979735]], [[-126.980178, 49.876529], [-126.980377, 49.877117], [-126.980374, 49.877396], [-126.974354, 49.876959], [-126.973745, 49.871169], [-126.974112, 49.871501], [-126.974534, 49.871716], [-126.974781, 49.872108], [-126.975255, 49.872107], [-126.975355, 49.872064], [-126.975533, 49.872102], [-126.975927, 49.872343], [-126.976329, 49.872386], [-126.976415, 49.872316], [-126.976468, 49.872055], [-126.976639, 49.871978], [-126.976763, 49.872015], [-126.976965, 49.872145], [-126.976977, 49.872218], [-126.976768, 49.872555], [-126.976758, 49.872763], [-126.976975, 49.87292], [-126.977319, 49.873015], [-126.977753, 49.872987], [-126.9783, 49.872834], [-126.97835, 49.872682], [-126.978111, 49.87239], [-126.978117, 49.872246], [-126.97829, 49.872105], [-126.978569, 49.872084], [-126.97883, 49.872178], [-126.978837, 49.872332], [-126.97909, 49.872632], [-126.979024, 49.872874], [-126.978735, 49.873129], [-126.978698, 49.873327], [-126.978912, 49.873538], [-126.979418, 49.873744], [-126.980208, 49.87384], [-126.980592, 49.873621], [-126.980982, 49.873601], [-126.980781, 49.873427], [-126.98076, 49.8733], [-126.981097, 49.873189], [-126.980966, 49.872673], [-126.981205, 49.872651], [-126.981532, 49.872756], [-126.981626, 49.872866], [-126.981647, 49.873685], [-126.981608, 49.873962], [-126.981395, 49.874418], [-126.981266, 49.874488], [-126.98075, 49.874505], [-126.980647, 49.874639], [-126.980681, 49.874828], [-126.980483, 49.874914], [-126.980105, 49.874971], [-126.979919, 49.875103], [-126.979945, 49.875822], [-126.980073, 49.87605], [-126.980305, 49.876153], [-126.980394, 49.876352], [-126.980178, 49.876529]], [[-126.659821, 49.9451], [-126.652579, 49.944862], [-126.648176, 49.94492], [-126.648638, 49.937753], [-126.637612, 49.937589], [-126.638035, 49.930904], [-126.649152, 49.93148], [-126.649475, 49.925287], [-126.648141, 49.925213], [-126.648749, 49.917671], [-126.648758, 49.917623], [-126.650994, 49.917573], [-126.65151, 49.917663], [-126.65089, 49.917143], [-126.651125, 49.916607], [-126.65153, 49.916301], [-126.651738, 49.91573], [-126.651958, 49.915482], [-126.652084, 49.915188], [-126.652361, 49.914933], [-126.652404, 49.914636], [-126.652587, 49.914343], [-126.652304, 49.914149], [-126.652281, 49.914031], [-126.652015, 49.913765], [-126.652122, 49.913597], [-126.652028, 49.913469], [-126.651842, 49.913303], [-126.651526, 49.913216], [-126.650999, 49.913457], [-126.650248, 49.913441], [-126.649896, 49.913507], [-126.649202, 49.913735], [-126.648987, 49.913866], [-126.649004, 49.914074], [-126.648661, 49.914255], [-126.646932, 49.913811], [-126.645182, 49.913733], [-126.644949, 49.915143], [-126.644822, 49.917324], [-126.628423, 49.917074], [-126.629081, 49.910196], [-126.644239, 49.910178], [-126.644123, 49.909639], [-126.644226, 49.909236], [-126.644528, 49.909016], [-126.644695, 49.908742], [-126.645101, 49.908408], [-126.645301, 49.908313], [-126.645719, 49.908294], [-126.646898, 49.9084], [-126.64698, 49.908445], [-126.646922, 49.90965], [-126.646744, 49.910159], [-126.646783, 49.910231], [-126.647204, 49.910139], [-126.647272, 49.910197], [-126.647232, 49.910133], [-126.647568, 49.909817], [-126.647562, 49.909367], [-126.647674, 49.90936], [-126.648012, 49.910043], [-126.649019, 49.910086], [-126.654503, 49.909938], [-126.654597, 49.91003], [-126.662418, 49.889677], [-126.666515, 49.889791], [-126.671639, 49.889699], [-126.671908, 49.910744], [-126.668916, 49.910493], [-126.668928, 49.91599], [-126.666825, 49.915863], [-126.666631, 49.926997], [-126.660824, 49.926599], [-126.659821, 49.9451]], [[-126.081199, 49.816151], [-126.081413, 49.816553], [-126.082564, 49.818141], [-126.083038, 49.818977], [-126.074477, 49.820709], [-126.074271, 49.820307], [-126.073745, 49.819962], [-126.072941, 49.819563], [-126.07204, 49.818597], [-126.071983, 49.817522], [-126.071172, 49.816759], [-126.070957, 49.816293], [-126.070856, 49.815415], [-126.069503, 49.814575], [-126.068613, 49.813551], [-126.068208, 49.812879], [-126.067302, 49.811966], [-126.067282, 49.811501], [-126.066676, 49.811041], [-126.066859, 49.809563], [-126.06841, 49.807989], [-126.069576, 49.80641], [-126.069895, 49.805087], [-126.069989, 49.80405], [-126.069705, 49.803777], [-126.069521, 49.803423], [-126.069167, 49.802263], [-126.068763, 49.801511], [-126.069741, 49.801346], [-126.069901, 49.801716], [-126.070294, 49.802226], [-126.071153, 49.802965], [-126.072494, 49.803585], [-126.072732, 49.803848], [-126.073007, 49.804529], [-126.073261, 49.804815], [-126.074279, 49.805524], [-126.075079, 49.805957], [-126.075501, 49.806113], [-126.075846, 49.806145], [-126.077085, 49.80592], [-126.077946, 49.805888], [-126.078444, 49.806039], [-126.079038, 49.806516], [-126.080318, 49.808465], [-126.080882, 49.810035], [-126.080723, 49.811316], [-126.080947, 49.81257], [-126.080931, 49.813377], [-126.081084, 49.815553], [-126.081199, 49.816151]], [[-126.616261, 49.590889], [-126.616135, 49.590663], [-126.614986, 49.59063], [-126.614344, 49.59022], [-126.61455, 49.589955], [-126.614811, 49.589969], [-126.615148, 49.590166], [-126.615396, 49.590197], [-126.615522, 49.58985], [-126.615829, 49.58982], [-126.61621, 49.589971], [-126.616425, 49.590389], [-126.616825, 49.590398], [-126.616942, 49.590274], [-126.61751, 49.590258], [-126.617393, 49.590103], [-126.617056, 49.589917], [-126.617074, 49.589835], [-126.617448, 49.589519], [-126.618331, 49.589565], [-126.618851, 49.589702], [-126.619161, 49.589888], [-126.619181, 49.59032], [-126.618508, 49.590765], [-126.618521, 49.59082], [-126.618852, 49.590835], [-126.619034, 49.590767], [-126.619211, 49.590573], [-126.619853, 49.590172], [-126.619844, 49.590055], [-126.61967, 49.589917], [-126.619744, 49.589855], [-126.620919, 49.58988], [-126.62131, 49.590068], [-126.621321, 49.590139], [-126.620897, 49.590301], [-126.621044, 49.590395], [-126.621306, 49.590445], [-126.621344, 49.590509], [-126.620759, 49.590596], [-126.620714, 49.590657], [-126.620861, 49.590751], [-126.620607, 49.590871], [-126.620574, 49.590969], [-126.620776, 49.591396], [-126.621296, 49.591767], [-126.621593, 49.591926], [-126.623497, 49.592648], [-126.626843, 49.593518], [-126.62775, 49.593672], [-126.629906, 49.593706], [-126.630741, 49.593617], [-126.631122, 49.593499], [-126.631273, 49.593222], [-126.631457, 49.593137], [-126.631858, 49.593162], [-126.632321, 49.593306], [-126.632902, 49.593328], [-126.63405, 49.593333], [-126.634607, 49.593228], [-126.635273, 49.593224], [-126.635539, 49.593165], [-126.636516, 49.592691], [-126.637003, 49.592665], [-126.637081, 49.592756], [-126.637204, 49.592759], [-126.637156, 49.598827], [-126.626468, 49.598971], [-126.614052, 49.598995], [-126.614068, 49.59868], [-126.613707, 49.598448], [-126.614068, 49.598104], [-126.614131, 49.597943], [-126.614053, 49.597834], [-126.61374, 49.597747], [-126.613659, 49.597673], [-126.613551, 49.597357], [-126.613864, 49.597164], [-126.614003, 49.597186], [-126.614284, 49.597362], [-126.61441, 49.597365], [-126.614417, 49.597211], [-126.614149, 49.597009], [-126.614532, 49.596837], [-126.614548, 49.596783], [-126.613608, 49.596746], [-126.613571, 49.596673], [-126.613904, 49.596643], [-126.614607, 49.596442], [-126.615551, 49.596363], [-126.61557, 49.596525], [-126.615942, 49.597136], [-126.616057, 49.597614], [-126.616263, 49.597637], [-126.616646, 49.597483], [-126.616834, 49.597315], [-126.616569, 49.597049], [-126.616456, 49.596525], [-126.616737, 49.596162], [-126.616963, 49.596068], [-126.617281, 49.596065], [-126.617494, 49.595989], [-126.617486, 49.595556], [-126.617734, 49.595302], [-126.618219, 49.595312], [-126.618582, 49.595498], [-126.619232, 49.595512], [-126.619528, 49.595428], [-126.619939, 49.5955], [-126.620221, 49.595118], [-126.620092, 49.594927], [-126.620096, 49.594837], [-126.620254, 49.594705], [-126.620219, 49.594282], [-126.619474, 49.592855], [-126.618343, 49.592193], [-126.617498, 49.59194], [-126.617445, 49.591868], [-126.617507, 49.591734], [-126.617778, 49.59156], [-126.617853, 49.591435], [-126.617644, 49.591216], [-126.617666, 49.591045], [-126.617451, 49.590878], [-126.617048, 49.590915], [-126.616619, 49.591213], [-126.615886, 49.591188], [-126.615878, 49.591107], [-126.616215, 49.590961], [-126.616261, 49.590889]], [[-126.05704, 49.793708], [-126.051369, 49.793661], [-126.051461, 49.793814], [-126.051117, 49.793974], [-126.050827, 49.793959], [-126.050694, 49.793839], [-126.050598, 49.793836], [-126.050407, 49.794237], [-126.05077, 49.795352], [-126.050636, 49.795493], [-126.050322, 49.795647], [-126.049978, 49.795574], [-126.049764, 49.795191], [-126.049382, 49.794866], [-126.048849, 49.794251], [-126.048794, 49.793799], [-126.048703, 49.793638], [-126.044907, 49.793589], [-126.041851, 49.793464], [-126.042451, 49.783245], [-126.042452, 49.779167], [-126.043017, 49.767253], [-126.054078, 49.767072], [-126.05409, 49.766003], [-126.054356, 49.764073], [-126.054314, 49.763034], [-126.054108, 49.761884], [-126.05406, 49.76031], [-126.053859, 49.75988], [-126.053323, 49.75945], [-126.051754, 49.758418], [-126.050506, 49.757726], [-126.049267, 49.756855], [-126.048651, 49.756204], [-126.048326, 49.755579], [-126.048153, 49.754733], [-126.04821, 49.753803], [-126.048523, 49.753243], [-126.049079, 49.752887], [-126.052218, 49.751942], [-126.056177, 49.751452], [-126.057966, 49.751731], [-126.060456, 49.751865], [-126.061065, 49.751836], [-126.062242, 49.75209], [-126.065937, 49.752729], [-126.067778, 49.752686], [-126.069737, 49.753112], [-126.071304, 49.749529], [-126.072217, 49.747059], [-126.080254, 49.740053], [-126.08205, 49.734908], [-126.084644, 49.731194], [-126.101251, 49.708683], [-126.102091, 49.693192], [-126.10297, 49.69329], [-126.102919, 49.683808], [-126.096865, 49.683595], [-126.09771, 49.671417], [-126.099251, 49.671486], [-126.138734, 49.671971], [-126.13821, 49.686283], [-126.126864, 49.686077], [-126.126327, 49.694181], [-126.119439, 49.694182], [-126.118745, 49.693962], [-126.118542, 49.694892], [-126.117826, 49.695858], [-126.115357, 49.697615], [-126.113643, 49.699115], [-126.111577, 49.701771], [-126.110263, 49.703339], [-126.108082, 49.70547], [-126.10553, 49.70761], [-126.103177, 49.70904], [-126.087659, 49.732259], [-126.058104, 49.771071], [-126.059357, 49.771839], [-126.059708, 49.777081], [-126.059873, 49.782018], [-126.059977, 49.782316], [-126.060686, 49.782968], [-126.060913, 49.78333], [-126.061573, 49.78381], [-126.061591, 49.783955], [-126.061172, 49.784713], [-126.060888, 49.784942], [-126.060102, 49.785314], [-126.059905, 49.785344], [-126.059596, 49.788519], [-126.057362, 49.788351], [-126.05704, 49.793708]], [[-125.928634, 50.361369], [-125.928083, 50.361037], [-125.927561, 50.360595], [-125.92669, 50.359657], [-125.925572, 50.357988], [-125.925501, 50.35765], [-125.951063, 50.357651], [-125.951585, 50.368807], [-125.957649, 50.368864], [-125.957889, 50.372514], [-125.962363, 50.372584], [-125.96262, 50.376891], [-125.962585, 50.378414], [-125.965902, 50.378264], [-125.966018, 50.386093], [-125.962222, 50.386238], [-125.961998, 50.397677], [-125.96205, 50.397744], [-125.961995, 50.397801], [-125.962362, 50.40022], [-125.959011, 50.402096], [-125.957082, 50.399886], [-125.956773, 50.398047], [-125.954827, 50.396888], [-125.954348, 50.395723], [-125.951411, 50.394764], [-125.95319, 50.39198], [-125.952414, 50.388239], [-125.953368, 50.387344], [-125.952921, 50.384652], [-125.94622, 50.385337], [-125.945121, 50.379837], [-125.94483, 50.377823], [-125.943473, 50.376111], [-125.940643, 50.374662], [-125.939286, 50.37385], [-125.93847, 50.373609], [-125.937246, 50.373388], [-125.936113, 50.373246], [-125.934618, 50.373214], [-125.932251, 50.36361], [-125.932022, 50.363417], [-125.932118, 50.36307], [-125.932388, 50.363067], [-125.928634, 50.361369]]]]}, "properties": {"name": "Strathcona A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Strathcona A", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924048", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.932801, 50.192654], [-124.939224, 50.19861], [-124.954032, 50.209231], [-124.966866, 50.22343], [-124.980772, 50.238236], [-124.997821, 50.249478], [-125.009593, 50.259859], [-125.01021, 50.242262], [-125.011318, 50.232123], [-125.008131, 50.212976], [-125.00335, 50.185826], [-125.004056, 50.179491], [-125.007086, 50.174102], [-125.022505, 50.165194], [-125.054919, 50.146259], [-125.081848, 50.131136], [-125.093646, 50.11973], [-125.098469, 50.115272], [-125.101497, 50.107305], [-125.110006, 50.085569], [-125.120638, 50.056091], [-125.117696, 50.041862], [-125.107575, 50.010898], [-125.100129, 50.006735], [-125.025853, 49.966043], [-124.939892, 49.94017], [-124.946244, 49.949385], [-124.954943, 49.96239], [-124.963004, 49.977128], [-124.9701, 49.992624], [-124.970872, 49.999433], [-124.950266, 50.005502], [-124.93386, 50.010396], [-124.89237, 50.006687], [-124.87232, 50.002376], [-124.870426, 50.002546], [-124.868011, 50.002669], [-124.864784, 50.003182], [-124.861426, 50.004122], [-124.858844, 50.005204], [-124.854978, 50.007605], [-124.85113, 50.010755], [-124.846394, 50.014936], [-124.840449, 50.021218], [-124.841489, 50.0236], [-124.841543, 50.025056], [-124.844968, 50.03312], [-124.853654, 50.050602], [-124.856233, 50.055995], [-124.857989, 50.06703], [-124.859477, 50.07035], [-124.87571, 50.108111], [-124.878138, 50.113593], [-124.878464, 50.113583], [-124.877739, 50.114828], [-124.877451, 50.134463], [-124.89004, 50.151204], [-124.903067, 50.164188], [-124.903924, 50.164689], [-124.90378, 50.16474], [-124.932801, 50.192654]], [[-124.924879, 50.145819], [-124.920743, 50.147684], [-124.920603, 50.147073], [-124.920262, 50.14662], [-124.918315, 50.145167], [-124.917745, 50.144917], [-124.916969, 50.144407], [-124.916446, 50.143975], [-124.916309, 50.143708], [-124.916283, 50.143376], [-124.916426, 50.143085], [-124.916794, 50.142882], [-124.917211, 50.142766], [-124.917704, 50.142884], [-124.918062, 50.143085], [-124.918315, 50.143099], [-124.918538, 50.143033], [-124.918867, 50.142577], [-124.919277, 50.142292], [-124.919498, 50.142242], [-124.919855, 50.142741], [-124.919923, 50.143406], [-124.920287, 50.143786], [-124.920445, 50.143873], [-124.920698, 50.143896], [-124.921369, 50.143832], [-124.921844, 50.143859], [-124.922302, 50.143726], [-124.923111, 50.143628], [-124.924879, 50.145819]], [[-124.934248, 50.136748], [-124.934239, 50.136403], [-124.933855, 50.135547], [-124.933579, 50.135291], [-124.932991, 50.134949], [-124.932552, 50.134489], [-124.931717, 50.133882], [-124.9317, 50.133801], [-124.932087, 50.133364], [-124.932088, 50.13303], [-124.932026, 50.132861], [-124.931665, 50.132579], [-124.931383, 50.132539], [-124.931176, 50.132604], [-124.930877, 50.132835], [-124.930643, 50.132911], [-124.929418, 50.13276], [-124.929177, 50.132683], [-124.92866, 50.132341], [-124.928136, 50.132187], [-124.928194, 50.131898], [-124.928146, 50.13171], [-124.92839, 50.131545], [-124.9284, 50.131464], [-124.927964, 50.131029], [-124.927723, 50.130935], [-124.92719, 50.130917], [-124.926718, 50.131024], [-124.926429, 50.131163], [-124.92598, 50.131099], [-124.924924, 50.130595], [-124.924531, 50.1299], [-124.923982, 50.129485], [-124.92383, 50.129488], [-124.923425, 50.129873], [-124.923418, 50.130359], [-124.923543, 50.13068], [-124.923506, 50.130826], [-124.923093, 50.131371], [-124.922798, 50.131314], [-124.922306, 50.130944], [-124.921387, 50.129673], [-124.921405, 50.129394], [-124.921683, 50.128976], [-124.921639, 50.128617], [-124.921459, 50.128286], [-124.921299, 50.128164], [-124.921217, 50.128155], [-124.920933, 50.128403], [-124.92082, 50.128423], [-124.920734, 50.128362], [-124.921001, 50.128033], [-124.920975, 50.127737], [-124.920315, 50.126956], [-124.920021, 50.126278], [-124.920056, 50.125764], [-124.920291, 50.125347], [-124.920763, 50.123135], [-124.920775, 50.122406], [-124.920618, 50.121581], [-124.920528, 50.121439], [-124.920182, 50.121202], [-124.919431, 50.120989], [-124.918436, 50.120205], [-124.917664, 50.119966], [-124.946511, 50.120149], [-124.946047, 50.133], [-124.946281, 50.136711], [-124.934248, 50.136748]], [[-124.911607, 50.117988], [-124.911061, 50.118042], [-124.908778, 50.117989], [-124.908118, 50.117911], [-124.907703, 50.11771], [-124.907015, 50.117596], [-124.90656, 50.117442], [-124.906428, 50.1173], [-124.906317, 50.11697], [-124.906323, 50.116396], [-124.91162, 50.116263], [-124.911712, 50.117558], [-124.911535, 50.117585], [-124.911607, 50.117988]]]]}, "properties": {"name": "Strathcona B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Strathcona B", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924052", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.2146, 51.392295], [-125.221878, 51.393036], [-125.228199, 51.394685], [-125.243194, 51.394694], [-125.251004, 51.393741], [-125.256204, 51.388672], [-125.257908, 51.382901], [-125.266668, 51.376858], [-125.264428, 51.375239], [-125.259938, 51.372315], [-125.260013, 51.372271], [-125.246459, 51.363095], [-125.235357, 51.353624], [-125.216309, 51.335206], [-125.20493, 51.330336], [-125.203662, 51.323186], [-125.221248, 51.310864], [-125.221617, 51.30662], [-125.22512, 51.301858], [-125.233551, 51.300656], [-125.243231, 51.296534], [-125.24691, 51.292322], [-125.256259, 51.291403], [-125.261757, 51.290232], [-125.27759, 51.283873], [-125.283999, 51.282977], [-125.284763, 51.281387], [-125.294779, 51.270245], [-125.307773, 51.261672], [-125.328644, 51.249649], [-125.322439, 51.225557], [-125.322149, 51.221238], [-125.323713, 51.218937], [-125.330271, 51.215393], [-125.331514, 51.199744], [-125.305445, 51.196943], [-125.298629, 51.187506], [-125.297429, 51.181255], [-125.293986, 51.179269], [-125.287769, 51.17439], [-125.282648, 51.168815], [-125.270919, 51.167532], [-125.262339, 51.164705], [-125.26009, 51.160366], [-125.264878, 51.157331], [-125.27439, 51.159417], [-125.285474, 51.153787], [-125.296201, 51.150171], [-125.298429, 51.147274], [-125.293201, 51.140896], [-125.286498, 51.131535], [-125.285908, 51.1254], [-125.288259, 51.123153], [-125.286808, 51.119168], [-125.289787, 51.115204], [-125.290418, 51.1116], [-125.295969, 51.107688], [-125.296691, 51.103468], [-125.278186, 51.092998], [-125.253052, 51.082831], [-125.242898, 51.064221], [-125.245617, 51.053609], [-125.258869, 51.05645], [-125.261105, 51.055253], [-125.266759, 51.054675], [-125.274313, 51.050952], [-125.279754, 51.049597], [-125.283562, 51.047564], [-125.291908, 51.049925], [-125.30049, 51.048693], [-125.309477, 51.048587], [-125.314175, 51.046425], [-125.325079, 51.045934], [-125.327785, 51.042707], [-125.325139, 51.033142], [-125.321903, 51.025949], [-125.315614, 51.023663], [-125.315284, 51.01756], [-125.312217, 51.011502], [-125.308968, 51.007028], [-125.298899, 51.007637], [-125.28573, 51.01093], [-125.27997, 51.010722], [-125.279637, 51.005978], [-125.276891, 51.00451], [-125.275972, 51.000499], [-125.274032, 50.997301], [-125.261654, 50.991141], [-125.254797, 50.988225], [-125.252738, 50.985031], [-125.254726, 50.980476], [-125.254531, 50.974647], [-125.252324, 50.969235], [-125.252771, 50.962733], [-125.25476, 50.959965], [-125.259797, 50.960045], [-125.271972, 50.956803], [-125.274702, 50.956617], [-125.278384, 50.958529], [-125.285204, 50.95929], [-125.297128, 50.958585], [-125.302651, 50.957578], [-125.305223, 50.955816], [-125.308256, 50.954906], [-125.311507, 50.954936], [-125.317985, 50.956024], [-125.325855, 50.954765], [-125.338303, 50.95182], [-125.366469, 50.942475], [-125.374536, 50.940729], [-125.387333, 50.941322], [-125.407029, 50.943454], [-125.411563, 50.943825], [-125.415736, 50.943102], [-125.420569, 50.940297], [-125.427937, 50.934819], [-125.431787, 50.933397], [-125.439268, 50.932065], [-125.443118, 50.930643], [-125.4554, 50.922629], [-125.464517, 50.917828], [-125.466417, 50.915694], [-125.469353, 50.91154], [-125.471435, 50.909952], [-125.474941, 50.90886], [-125.478529, 50.908554], [-125.483821, 50.909048], [-125.486406, 50.908704], [-125.490651, 50.906315], [-125.497049, 50.900674], [-125.498382, 50.89793], [-125.503114, 50.878993], [-125.503401, 50.875818], [-125.501115, 50.871959], [-125.500665, 50.87008], [-125.504774, 50.860579], [-125.504721, 50.857735], [-125.503298, 50.853761], [-125.503046, 50.851399], [-125.503901, 50.845355], [-125.504893, 50.842942], [-125.511138, 50.837148], [-125.514157, 50.836232], [-125.520861, 50.837219], [-125.524963, 50.837127], [-125.530744, 50.836412], [-125.543959, 50.832934], [-125.544454, 50.831728], [-125.538861, 50.825003], [-125.53512, 50.819229], [-125.530464, 50.810726], [-125.528389, 50.808836], [-125.518882, 50.805199], [-125.510099, 50.801293], [-125.503455, 50.795165], [-125.503231, 50.794225], [-125.513287, 50.788037], [-125.520778, 50.781165], [-125.523132, 50.779881], [-125.541201, 50.779677], [-125.54991, 50.77411], [-125.550741, 50.766912], [-125.546658, 50.753032], [-125.547238, 50.748664], [-125.549014, 50.744205], [-125.542685, 50.739066], [-125.537587, 50.73509], [-125.537363, 50.731732], [-125.543667, 50.730096], [-125.552766, 50.725094], [-125.560959, 50.719111], [-125.570288, 50.71488], [-125.576641, 50.714335], [-125.575707, 50.70952], [-125.570447, 50.703986], [-125.567124, 50.696923], [-125.561887, 50.689509], [-125.561617, 50.684549], [-125.569323, 50.677529], [-125.57532, 50.675396], [-125.578764, 50.669458], [-125.585455, 50.667418], [-125.584679, 50.661323], [-125.582784, 50.656904], [-125.590593, 50.644328], [-125.58882, 50.642011], [-125.592324, 50.639507], [-125.597607, 50.634124], [-125.597232, 50.625839], [-125.598577, 50.618552], [-125.605212, 50.609363], [-125.621643, 50.60252], [-125.64348, 50.597681], [-125.662876, 50.596337], [-125.678224, 50.600957], [-125.693083, 50.602933], [-125.740439, 50.605124], [-125.744137, 50.604464], [-125.780093, 50.593268], [-125.787047, 50.593259], [-125.798915, 50.587913], [-125.805995, 50.581395], [-125.814312, 50.574669], [-125.819761, 50.573216], [-125.827828, 50.57369], [-125.832162, 50.576469], [-125.835857, 50.580271], [-125.842638, 50.59141], [-125.846256, 50.598303], [-125.846721, 50.599944], [-125.84732, 50.604527], [-125.847456, 50.60635], [-125.848465, 50.610135], [-125.84991, 50.616586], [-125.848507, 50.621169], [-125.849794, 50.624318], [-125.849682, 50.624428], [-125.84901, 50.625983], [-125.849103, 50.626972], [-125.849914, 50.627515], [-125.851093, 50.627496], [-125.851391, 50.628225], [-125.855263, 50.634915], [-125.856314, 50.640005], [-125.859688, 50.641126], [-125.864676, 50.638916], [-125.874276, 50.633988], [-125.88171, 50.633887], [-125.926691, 50.633912], [-125.937566, 50.63299], [-125.943337, 50.632445], [-125.998459, 50.623223], [-126.038299, 50.617351], [-126.061878, 50.61444], [-126.08337, 50.608617], [-126.191952, 50.575937], [-126.202249, 50.572776], [-126.191614, 50.537302], [-126.228097, 50.543154], [-126.243657, 50.536838], [-126.250596, 50.534645], [-126.280496, 50.532515], [-126.286995, 50.530188], [-126.310998, 50.518084], [-126.313835, 50.515291], [-126.319544, 50.498956], [-126.297027, 50.498666], [-126.283615, 50.493488], [-126.274535, 50.491941], [-126.240387, 50.48676], [-126.192383, 50.478551], [-126.156047, 50.475491], [-126.133129, 50.472211], [-126.108961, 50.471222], [-126.108965, 50.47117], [-126.08806, 50.467212], [-126.033527, 50.453818], [-126.014337, 50.445941], [-125.987479, 50.427677], [-125.956906, 50.413946], [-125.902062, 50.395419], [-125.876667, 50.388858], [-125.855709, 50.385998], [-125.843419, 50.387147], [-125.830136, 50.389336], [-125.820809, 50.389394], [-125.819394, 50.389087], [-125.804781, 50.384736], [-125.794725, 50.381138], [-125.788916, 50.377961], [-125.770754, 50.371869], [-125.742196, 50.36878], [-125.725982, 50.367908], [-125.704649, 50.36878], [-125.676486, 50.372036], [-125.646634, 50.374264], [-125.624603, 50.374864], [-125.616152, 50.375173], [-125.596237, 50.376259], [-125.58328, 50.376786], [-125.576141, 50.375828], [-125.557027, 50.369625], [-125.543066, 50.363404], [-125.526375, 50.358021], [-125.519084, 50.355319], [-125.50751, 50.351946], [-125.493698, 50.348381], [-125.482815, 50.344565], [-125.470498, 50.340366], [-125.462445, 50.338829], [-125.447407, 50.340197], [-125.433872, 50.343716], [-125.430776, 50.339812], [-125.427602, 50.333995], [-125.422326, 50.321523], [-125.415801, 50.306477], [-125.412206, 50.297484], [-125.404484, 50.281679], [-125.400696, 50.275392], [-125.392616, 50.265712], [-125.384972, 50.258259], [-125.379073, 50.251663], [-125.378191, 50.244891], [-125.366831, 50.192777], [-125.361095, 50.166928], [-125.354776, 50.142237], [-125.350508, 50.123986], [-125.332018, 50.123175], [-125.294923, 50.097639], [-125.312214, 50.09509], [-125.2937, 50.085796], [-125.277506, 50.084644], [-125.274861, 50.08276], [-125.267857, 50.077476], [-125.261893, 50.068734], [-125.249517, 50.051983], [-125.244089, 50.046203], [-125.242089, 50.043873], [-125.240734, 50.041769], [-125.239769, 50.038557], [-125.239228, 50.035964], [-125.239039, 50.033861], [-125.239633, 50.031269], [-125.23575, 50.026015], [-125.234914, 50.02517], [-125.233343, 50.023087], [-125.232343, 50.02135], [-125.228826, 50.015722], [-125.228023, 50.013362], [-125.227575, 50.011426], [-125.227409, 50.010007], [-125.227629, 50.008292], [-125.227631, 50.006143], [-125.227102, 50.004632], [-125.226715, 50.003829], [-125.224745, 50.000468], [-125.228278, 50.000337], [-125.226532, 49.994964], [-125.22553, 49.992986], [-125.221004, 49.985194], [-125.219503, 49.982766], [-125.216436, 49.978578], [-125.214778, 49.976736], [-125.213055, 49.975321], [-125.211486, 49.974307], [-125.210016, 49.973527], [-125.20941, 49.973124], [-125.206697, 49.97095], [-125.203825, 49.967935], [-125.202558, 49.96487], [-125.202203, 49.96151], [-125.201472, 49.958962], [-125.198522, 49.955552], [-125.191357, 49.950875], [-125.123567, 49.967444], [-125.11524, 49.965272], [-125.103251, 49.962356], [-125.085908, 49.958299], [-125.071718, 49.955154], [-125.064413, 49.953013], [-125.056392, 49.950443], [-125.047309, 49.946937], [-125.036512, 49.943585], [-125.022683, 49.940367], [-125.013163, 49.938826], [-125.001433, 49.937372], [-124.988384, 49.938406], [-124.975408, 49.938933], [-124.959239, 49.939728], [-124.939892, 49.94017], [-125.025853, 49.966043], [-125.100129, 50.006735], [-125.107575, 50.010898], [-125.117696, 50.041862], [-125.120638, 50.056091], [-125.110006, 50.085569], [-125.101497, 50.107305], [-125.098469, 50.115272], [-125.093646, 50.11973], [-125.081848, 50.131136], [-125.054919, 50.146259], [-125.022505, 50.165194], [-125.007086, 50.174102], [-125.004056, 50.179491], [-125.00335, 50.185826], [-125.008131, 50.212976], [-125.011318, 50.232123], [-125.01021, 50.242262], [-125.009593, 50.259859], [-124.997821, 50.249478], [-124.980772, 50.238236], [-124.966866, 50.22343], [-124.954032, 50.209231], [-124.939224, 50.19861], [-124.932801, 50.192654], [-124.90378, 50.16474], [-124.903924, 50.164689], [-124.903067, 50.164188], [-124.89004, 50.151204], [-124.877451, 50.134463], [-124.877739, 50.114828], [-124.878464, 50.113583], [-124.878138, 50.113593], [-124.87571, 50.108111], [-124.865899, 50.085269], [-124.852573, 50.093066], [-124.845081, 50.096008], [-124.841456, 50.094187], [-124.819811, 50.10503], [-124.808174, 50.11097], [-124.763342, 50.133468], [-124.724554, 50.15449], [-124.685734, 50.164971], [-124.668653, 50.173027], [-124.642608, 50.191358], [-124.633785, 50.205552], [-124.629065, 50.212303], [-124.62532, 50.24998], [-124.634579, 50.260965], [-124.640222, 50.277537], [-124.658329, 50.29203], [-124.690715, 50.30592], [-124.704659, 50.310322], [-124.728963, 50.314011], [-124.748109, 50.313871], [-124.760022, 50.312848], [-124.768482, 50.321926], [-124.754176, 50.333233], [-124.699403, 50.369053], [-124.667174, 50.406118], [-124.659033, 50.411515], [-124.648225, 50.413906], [-124.633663, 50.413686], [-124.620756, 50.413169], [-124.575228, 50.413919], [-124.574066, 50.462589], [-124.550108, 50.483448], [-124.52461, 50.490196], [-124.524557, 50.490363], [-124.513356, 50.498702], [-124.514652, 50.518439], [-124.512598, 50.523458], [-124.515574, 50.526141], [-124.524334, 50.527515], [-124.53084, 50.52941], [-124.534908, 50.53401], [-124.534323, 50.537444], [-124.536384, 50.540456], [-124.541938, 50.541443], [-124.54943, 50.540866], [-124.554845, 50.54681], [-124.555807, 50.552673], [-124.560679, 50.555444], [-124.561427, 50.5597], [-124.566371, 50.561868], [-124.570691, 50.566572], [-124.577482, 50.568605], [-124.581275, 50.574076], [-124.578856, 50.578509], [-124.581604, 50.584164], [-124.583984, 50.591107], [-124.577415, 50.597514], [-124.569483, 50.602388], [-124.568711, 50.604569], [-124.582988, 50.625842], [-124.589119, 50.632195], [-124.603342, 50.639001], [-124.598373, 50.663104], [-124.591331, 50.661666], [-124.536307, 50.68083], [-124.530254, 50.681058], [-124.522018, 50.691517], [-124.51233, 50.695983], [-124.497884, 50.699985], [-124.489259, 50.697952], [-124.478487, 50.699448], [-124.470778, 50.703001], [-124.461072, 50.705], [-124.44045, 50.712188], [-124.434944, 50.712976], [-124.433196, 50.716956], [-124.428781, 50.722482], [-124.421478, 50.72194], [-124.409241, 50.721782], [-124.387021, 50.720852], [-124.381893, 50.723472], [-124.378503, 50.729811], [-124.368154, 50.737055], [-124.348357, 50.746473], [-124.352084, 50.757479], [-124.382164, 50.773008], [-124.377603, 50.779815], [-124.36516, 50.784238], [-124.352128, 50.785818], [-124.346081, 50.790405], [-124.361861, 50.797912], [-124.338365, 50.810522], [-124.327476, 50.818348], [-124.331301, 50.831932], [-124.323495, 50.853603], [-124.311198, 50.860397], [-124.294675, 50.863502], [-124.273637, 50.861493], [-124.261086, 50.857092], [-124.252319, 50.847696], [-124.258435, 50.833344], [-124.262118, 50.824423], [-124.2457, 50.818345], [-124.226254, 50.822475], [-124.213236, 50.820523], [-124.204866, 50.816473], [-124.196613, 50.808727], [-124.190605, 50.800798], [-124.17984, 50.800029], [-124.171518, 50.796571], [-124.153092, 50.796371], [-124.10927, 50.787459], [-124.097694, 50.78849], [-124.091893, 50.808176], [-124.080333, 50.828972], [-124.069262, 50.840466], [-124.049921, 50.838127], [-124.038589, 50.831761], [-124.032352, 50.811443], [-124.00072, 50.806267], [-123.985868, 50.809038], [-123.974264, 50.803982], [-123.967412, 50.79392], [-123.959856, 50.787448], [-123.94436, 50.780109], [-123.948172, 50.775128], [-123.930365, 50.766776], [-123.919245, 50.742415], [-123.889536, 50.726384], [-123.874707, 50.715627], [-123.864282, 50.71077], [-123.847602, 50.710828], [-123.832055, 50.713938], [-123.829398, 50.716675], [-123.827678, 50.721705], [-123.835643, 50.730896], [-123.849411, 50.740671], [-123.862911, 50.742857], [-123.867283, 50.747764], [-123.857929, 50.755676], [-123.847045, 50.761048], [-123.839771, 50.768767], [-123.837234, 50.777014], [-123.822902, 50.786476], [-123.811587, 50.795134], [-123.801191, 50.797182], [-123.803854, 50.807796], [-123.812039, 50.819313], [-123.823235, 50.823243], [-123.828712, 50.82877], [-123.827291, 50.837271], [-123.823508, 50.839803], [-123.809774, 50.837365], [-123.795303, 50.833681], [-123.782962, 50.835578], [-123.769473, 50.840837], [-123.743179, 50.844072], [-123.731266, 50.843925], [-123.729508, 50.842861], [-123.719516, 50.848329], [-123.714025, 50.84877], [-123.717619, 50.851197], [-123.718232, 50.87127], [-123.727648, 50.876241], [-123.738192, 50.875524], [-123.74606, 50.87279], [-123.758217, 50.883464], [-123.761364, 50.888296], [-123.758707, 50.905017], [-123.765789, 50.91079], [-123.779823, 50.906598], [-123.790066, 50.910617], [-123.80459, 50.91118], [-123.823557, 50.904288], [-123.831527, 50.904486], [-123.835105, 50.912792], [-123.827242, 50.924094], [-123.834617, 50.92779], [-123.838297, 50.934415], [-123.849532, 50.93776], [-123.864988, 50.939969], [-123.87413, 50.945685], [-123.874857, 50.950705], [-123.881876, 50.948601], [-123.888553, 50.944314], [-123.894209, 50.940052], [-123.909791, 50.944187], [-123.919865, 50.942006], [-123.916484, 50.93694], [-123.936655, 50.936185], [-123.943442, 50.946345], [-123.951851, 50.950007], [-123.963637, 50.952164], [-123.971377, 50.958036], [-123.982715, 50.962655], [-123.995798, 50.962711], [-124.002268, 50.964741], [-124.002249, 50.958172], [-124.027696, 50.944372], [-124.032052, 50.945252], [-124.032262, 50.944337], [-124.042168, 50.942623], [-124.045416, 50.946527], [-124.045792, 50.951438], [-124.050688, 50.955261], [-124.059945, 50.958892], [-124.066752, 50.977076], [-124.073426, 50.985074], [-124.082929, 50.986297], [-124.090631, 50.99171], [-124.087312, 50.997226], [-124.08328, 51.001211], [-124.084192, 51.004206], [-124.087148, 51.009699], [-124.097826, 51.014172], [-124.113901, 51.014976], [-124.130139, 51.023459], [-124.134904, 51.028699], [-124.137683, 51.030663], [-124.148373, 51.031858], [-124.148674, 51.031852], [-124.155204, 51.036633], [-124.160186, 51.042291], [-124.163519, 51.048035], [-124.161632, 51.052841], [-124.169227, 51.05541], [-124.173168, 51.061484], [-124.166452, 51.068473], [-124.159891, 51.077776], [-124.165694, 51.080977], [-124.170261, 51.088116], [-124.169523, 51.100817], [-124.174605, 51.109605], [-124.174821, 51.11822], [-124.168028, 51.126024], [-124.175629, 51.132123], [-124.180044, 51.1299], [-124.184132, 51.129783], [-124.186798, 51.132802], [-124.185326, 51.135293], [-124.245271, 51.148528], [-124.256763, 51.143154], [-124.26897, 51.139179], [-124.277723, 51.138403], [-124.29732, 51.137434], [-124.319915, 51.141018], [-124.339942, 51.145836], [-124.350884, 51.146925], [-124.362655, 51.145405], [-124.375973, 51.142674], [-124.378036, 51.158282], [-124.376042, 51.173173], [-124.366406, 51.19603], [-124.368969, 51.200085], [-124.37705, 51.195581], [-124.379184, 51.193279], [-124.391443, 51.190479], [-124.397017, 51.188511], [-124.40249, 51.188115], [-124.408646, 51.18133], [-124.418014, 51.174355], [-124.424994, 51.171651], [-124.429841, 51.168873], [-124.423189, 51.163538], [-124.419843, 51.157271], [-124.422271, 51.151817], [-124.433783, 51.148399], [-124.498402, 51.166542], [-124.516687, 51.169326], [-124.524531, 51.169854], [-124.540176, 51.175558], [-124.544805, 51.179543], [-124.560548, 51.181238], [-124.560631, 51.181187], [-124.570179, 51.179612], [-124.580826, 51.181085], [-124.59402, 51.187418], [-124.603573, 51.187781], [-124.606985, 51.191124], [-124.612447, 51.195618], [-124.620444, 51.194812], [-124.625994, 51.19647], [-124.630434, 51.200672], [-124.630555, 51.201065], [-124.648172, 51.205399], [-124.655818, 51.20715], [-124.676755, 51.219248], [-124.679592, 51.208947], [-124.686615, 51.204452], [-124.714691, 51.225605], [-124.736938, 51.230931], [-124.749279, 51.235812], [-124.762032, 51.238224], [-124.766799, 51.243488], [-124.771313, 51.260129], [-124.782265, 51.289089], [-124.792008, 51.299226], [-124.799763, 51.305424], [-124.803803, 51.305618], [-124.805676, 51.306924], [-124.810473, 51.308758], [-124.821004, 51.308544], [-124.830154, 51.30943], [-124.840298, 51.310753], [-124.847311, 51.314688], [-124.853027, 51.315073], [-124.862097, 51.3193], [-124.872374, 51.321741], [-124.879087, 51.320927], [-124.883407, 51.324518], [-124.887875, 51.330392], [-124.899393, 51.332715], [-124.904099, 51.332151], [-124.912629, 51.332506], [-124.9209, 51.330291], [-124.930311, 51.328507], [-124.937011, 51.330124], [-124.942904, 51.328572], [-124.965293, 51.328251], [-124.965712, 51.334738], [-124.969289, 51.338969], [-124.975014, 51.341308], [-124.980413, 51.341334], [-124.985927, 51.342626], [-124.994508, 51.342864], [-125.001042, 51.346408], [-125.009007, 51.349718], [-125.020167, 51.351786], [-125.041704, 51.352133], [-125.048129, 51.35506], [-125.055812, 51.355289], [-125.061929, 51.357391], [-125.065789, 51.353944], [-125.075699, 51.352529], [-125.082867, 51.355608], [-125.093832, 51.359238], [-125.113578, 51.360544], [-125.131186, 51.364069], [-125.146869, 51.370207], [-125.152955, 51.373722], [-125.160769, 51.375864], [-125.167308, 51.375002], [-125.170571, 51.376914], [-125.166752, 51.379746], [-125.166553, 51.383097], [-125.171366, 51.392037], [-125.177112, 51.39858], [-125.185346, 51.400196], [-125.197265, 51.399637], [-125.205627, 51.394742], [-125.2146, 51.392295]], [[-125.196419, 50.011097], [-125.195867, 50.01341], [-125.195858, 50.014696], [-125.196208, 50.015661], [-125.196939, 50.016979], [-125.197251, 50.017396], [-125.198015, 50.018874], [-125.198179, 50.01968], [-125.198026, 50.020961], [-125.197805, 50.021892], [-125.197651, 50.02221], [-125.197307, 50.02262], [-125.196927, 50.023446], [-125.196908, 50.02395], [-125.196984, 50.024103], [-125.197625, 50.024675], [-125.197951, 50.025397], [-125.198478, 50.025935], [-125.199476, 50.027301], [-125.20042, 50.028418], [-125.200783, 50.028717], [-125.201189, 50.029321], [-125.201493, 50.029566], [-125.202367, 50.03008], [-125.203274, 50.030378], [-125.203867, 50.030511], [-125.206423, 50.030813], [-125.20703, 50.030946], [-125.208083, 50.031402], [-125.209106, 50.032084], [-125.209779, 50.03245], [-125.210944, 50.032867], [-125.211935, 50.033053], [-125.208728, 50.033336], [-125.1941, 50.033324], [-125.187622, 50.033473], [-125.187556, 50.030354], [-125.188325, 50.019256], [-125.177429, 50.019045], [-125.177957, 50.006472], [-125.177501, 49.996243], [-125.178325, 49.995922], [-125.180118, 49.995402], [-125.182948, 49.99506], [-125.186258, 49.994845], [-125.188196, 49.995402], [-125.190691, 49.996246], [-125.192, 49.996491], [-125.193072, 49.996768], [-125.19336, 49.996968], [-125.194301, 49.99741], [-125.195639, 49.998293], [-125.197077, 49.999525], [-125.197226, 49.99972], [-125.197395, 50.000355], [-125.197793, 50.000842], [-125.197903, 50.00111], [-125.197906, 50.002091], [-125.197782, 50.002436], [-125.197076, 50.003187], [-125.196461, 50.004691], [-125.195615, 50.005696], [-125.195368, 50.006125], [-125.195296, 50.006989], [-125.195928, 50.008893], [-125.196362, 50.009838], [-125.196436, 50.010259], [-125.196419, 50.011097]]]]}, "properties": {"name": "Strathcona C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Strathcona C", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924054", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.11622, 49.685307], [-126.116661, 49.686321], [-126.119102, 49.686392], [-126.120336, 49.686608], [-126.121909, 49.686799], [-126.122709, 49.686756], [-126.122759, 49.682826], [-126.118416, 49.682577], [-126.118254, 49.682735], [-126.117687, 49.682955], [-126.117319, 49.683323], [-126.117087, 49.683462], [-126.11638, 49.684406], [-126.116238, 49.684474], [-126.11622, 49.685307]]]]}, "properties": {"name": "Ahaminaquus 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Ahaminaquus 12", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924803", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.240734, 50.041769], [-125.242089, 50.043873], [-125.24435, 50.046443], [-125.250254, 50.043432], [-125.253478, 50.041675], [-125.256613, 50.039874], [-125.258509, 50.033548], [-125.258785, 50.033371], [-125.26074, 50.032758], [-125.261203, 50.032662], [-125.26189, 50.030514], [-125.250022, 50.030512], [-125.248563, 50.03038], [-125.247753, 50.030543], [-125.245776, 50.03119], [-125.239633, 50.031269], [-125.239039, 50.033861], [-125.239228, 50.035964], [-125.239769, 50.038557], [-125.240734, 50.041769]]]]}, "properties": {"name": "Campbell River 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Campbell River 11", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924804", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.980374, 49.877396], [-126.980377, 49.877117], [-126.980178, 49.876529], [-126.980394, 49.876352], [-126.980372, 49.876235], [-126.980073, 49.87605], [-126.979945, 49.875822], [-126.979919, 49.875103], [-126.980105, 49.874971], [-126.980483, 49.874914], [-126.980681, 49.874828], [-126.980647, 49.874639], [-126.98075, 49.874505], [-126.981266, 49.874488], [-126.981395, 49.874418], [-126.981608, 49.873962], [-126.981647, 49.873685], [-126.981626, 49.872866], [-126.981532, 49.872756], [-126.981205, 49.872651], [-126.980966, 49.872673], [-126.981097, 49.873189], [-126.98076, 49.8733], [-126.980781, 49.873427], [-126.980982, 49.873601], [-126.980592, 49.873621], [-126.980208, 49.87384], [-126.979418, 49.873744], [-126.978912, 49.873538], [-126.978698, 49.873327], [-126.978735, 49.873129], [-126.979024, 49.872874], [-126.97909, 49.872632], [-126.978837, 49.872332], [-126.97883, 49.872178], [-126.978569, 49.872084], [-126.97829, 49.872105], [-126.978117, 49.872246], [-126.978111, 49.87239], [-126.97835, 49.872682], [-126.9783, 49.872834], [-126.977753, 49.872987], [-126.977319, 49.873015], [-126.976975, 49.87292], [-126.976758, 49.872763], [-126.976768, 49.872555], [-126.976977, 49.872218], [-126.976965, 49.872145], [-126.976763, 49.872015], [-126.976639, 49.871978], [-126.976468, 49.872055], [-126.976415, 49.872316], [-126.976329, 49.872386], [-126.975927, 49.872343], [-126.975533, 49.872102], [-126.975355, 49.872064], [-126.975255, 49.872107], [-126.974781, 49.872108], [-126.974534, 49.871716], [-126.974112, 49.871501], [-126.973745, 49.871169], [-126.974354, 49.876959], [-126.980374, 49.877396]]]]}, "properties": {"name": "Chenahkint 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Chenahkint 12", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924805", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.374541, 50.032832], [-127.381013, 50.03251], [-127.380888, 50.030777], [-127.380087, 50.030195], [-127.379995, 50.03004], [-127.380384, 50.029633], [-127.380321, 50.029506], [-127.379959, 50.029411], [-127.378761, 50.029762], [-127.378082, 50.029591], [-127.377803, 50.029596], [-127.377575, 50.02971], [-127.37744, 50.030041], [-127.377154, 50.030225], [-127.376999, 50.030242], [-127.376693, 50.030238], [-127.37639, 50.030107], [-127.376387, 50.029757], [-127.376251, 50.029664], [-127.375956, 50.029697], [-127.375716, 50.029819], [-127.375482, 50.03013], [-127.375459, 50.030409], [-127.375576, 50.030627], [-127.37592, 50.030775], [-127.375874, 50.030909], [-127.374294, 50.030941], [-127.374541, 50.032832]]]]}, "properties": {"name": "Houpsitas 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Houpsitas 6", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924806", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.286373, 50.029329], [-125.288614, 50.029301], [-125.288449, 50.028623], [-125.28841, 50.027866], [-125.288579, 50.027626], [-125.288983, 50.027345], [-125.289995, 50.026793], [-125.291326, 50.025854], [-125.292242, 50.024983], [-125.292669, 50.023389], [-125.295654, 50.023231], [-125.29751, 50.021404], [-125.297548, 50.02116], [-125.29793, 50.021005], [-125.299075, 50.020929], [-125.299244, 50.020083], [-125.299648, 50.019797], [-125.300009, 50.019749], [-125.300915, 50.019918], [-125.301265, 50.019817], [-125.30155, 50.019605], [-125.301802, 50.019096], [-125.30169, 50.018356], [-125.301466, 50.017921], [-125.301499, 50.017466], [-125.301927, 50.016912], [-125.302477, 50.016472], [-125.302883, 50.016276], [-125.303676, 50.016058], [-125.303863, 50.015821], [-125.30379, 50.015438], [-125.303248, 50.015072], [-125.302738, 50.014576], [-125.302768, 50.01434], [-125.288028, 50.013975], [-125.283888, 50.014023], [-125.28376, 50.01863], [-125.28353, 50.02317], [-125.286828, 50.023536], [-125.286373, 50.029329]]]]}, "properties": {"name": "Quinsam 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Quinsam 12", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924812", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.397142, 50.008612], [-127.396888, 50.00867], [-127.396921, 50.008959], [-127.396638, 50.009107], [-127.396539, 50.009116], [-127.396129, 50.008893], [-127.39603, 50.008892], [-127.395899, 50.00907], [-127.395895, 50.009214], [-127.396071, 50.009369], [-127.396066, 50.00954], [-127.395831, 50.009843], [-127.395911, 50.010006], [-127.396065, 50.009944], [-127.39623, 50.010028], [-127.396435, 50.01058], [-127.396402, 50.011578], [-127.396732, 50.012958], [-127.396719, 50.013381], [-127.39633, 50.014599], [-127.397498, 50.01431], [-127.39796, 50.01428], [-127.398316, 50.014473], [-127.398367, 50.014627], [-127.398503, 50.014683], [-127.398865, 50.014716], [-127.399457, 50.014975], [-127.400001, 50.015], [-127.40031, 50.014932], [-127.400355, 50.014852], [-127.400219, 50.014734], [-127.399774, 50.0147], [-127.39975, 50.014575], [-127.400047, 50.014435], [-127.400977, 50.014196], [-127.402044, 50.014031], [-127.402701, 50.013985], [-127.403131, 50.014082], [-127.403295, 50.014173], [-127.403466, 50.014445], [-127.40409, 50.014616], [-127.404335, 50.014817], [-127.404753, 50.014832], [-127.405034, 50.014755], [-127.404651, 50.014533], [-127.404641, 50.014372], [-127.404817, 50.014122], [-127.405047, 50.013964], [-127.406167, 50.013404], [-127.406687, 50.01333], [-127.407184, 50.013516], [-127.40738, 50.013465], [-127.407637, 50.013288], [-127.407643, 50.013126], [-127.407449, 50.013016], [-127.407117, 50.012958], [-127.40674, 50.012988], [-127.406562, 50.01286], [-127.406573, 50.012528], [-127.406428, 50.012246], [-127.405975, 50.012061], [-127.405855, 50.011879], [-127.405838, 50.011537], [-127.40603, 50.01126], [-127.406357, 50.01104], [-127.406499, 50.011007], [-127.406706, 50.011018], [-127.407008, 50.011221], [-127.407299, 50.01126], [-127.408232, 50.01094], [-127.408447, 50.010728], [-127.408891, 50.010832], [-127.409359, 50.011037], [-127.409818, 50.011043], [-127.409845, 50.010665], [-127.409691, 50.010259], [-127.409074, 50.009926], [-127.408763, 50.00959], [-127.40859, 50.009371], [-127.408344, 50.008782], [-127.408193, 50.008727], [-127.407646, 50.008774], [-127.407252, 50.008445], [-127.406633, 50.008201], [-127.405707, 50.008297], [-127.405417, 50.00824], [-127.405066, 50.007919], [-127.404956, 50.007414], [-127.404752, 50.00725], [-127.4046, 50.00722], [-127.40429, 50.007305], [-127.404281, 50.00753], [-127.404081, 50.007671], [-127.403376, 50.007914], [-127.402818, 50.007898], [-127.402312, 50.00763], [-127.402185, 50.007627], [-127.402184, 50.00806], [-127.401975, 50.00811], [-127.401614, 50.008043], [-127.401379, 50.007922], [-127.401399, 50.007788], [-127.401568, 50.007764], [-127.401669, 50.00762], [-127.401647, 50.007486], [-127.401471, 50.007321], [-127.401372, 50.007328], [-127.400929, 50.007674], [-127.400845, 50.007673], [-127.400736, 50.007607], [-127.400714, 50.007365], [-127.40062, 50.007291], [-127.400425, 50.007271], [-127.400207, 50.007529], [-127.399969, 50.007525], [-127.39987, 50.007596], [-127.399878, 50.007767], [-127.400025, 50.007976], [-127.399787, 50.008405], [-127.399446, 50.008607], [-127.399235, 50.008621], [-127.399, 50.008564], [-127.398846, 50.008616], [-127.398841, 50.00876], [-127.398653, 50.008938], [-127.398051, 50.008975], [-127.397831, 50.008899], [-127.397726, 50.008664], [-127.397142, 50.008612]]]]}, "properties": {"name": "Village Island 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Village Island 1", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924813", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.614811, 49.589969], [-126.61455, 49.589955], [-126.614359, 49.590157], [-126.614382, 49.590276], [-126.615111, 49.590659], [-126.616135, 49.590663], [-126.616261, 49.590889], [-126.616215, 49.590961], [-126.615878, 49.591107], [-126.615886, 49.591188], [-126.616619, 49.591213], [-126.617048, 49.590915], [-126.617231, 49.590865], [-126.617451, 49.590878], [-126.617666, 49.591045], [-126.617644, 49.591216], [-126.617853, 49.591435], [-126.617778, 49.59156], [-126.617507, 49.591734], [-126.617445, 49.591868], [-126.617498, 49.59194], [-126.618343, 49.592193], [-126.619474, 49.592855], [-126.620219, 49.594282], [-126.620254, 49.594705], [-126.620096, 49.594837], [-126.620092, 49.594927], [-126.620221, 49.595118], [-126.619939, 49.5955], [-126.619528, 49.595428], [-126.619232, 49.595512], [-126.618582, 49.595498], [-126.618219, 49.595312], [-126.617734, 49.595302], [-126.617486, 49.595556], [-126.617494, 49.595989], [-126.617281, 49.596065], [-126.616963, 49.596068], [-126.616737, 49.596162], [-126.616456, 49.596525], [-126.616569, 49.597049], [-126.616834, 49.597315], [-126.616646, 49.597483], [-126.616263, 49.597637], [-126.616057, 49.597614], [-126.615942, 49.597136], [-126.61557, 49.596525], [-126.615551, 49.596363], [-126.614607, 49.596442], [-126.613904, 49.596643], [-126.613571, 49.596673], [-126.613608, 49.596746], [-126.614548, 49.596783], [-126.614532, 49.596837], [-126.614149, 49.597009], [-126.614417, 49.597211], [-126.61441, 49.597365], [-126.614284, 49.597362], [-126.614003, 49.597186], [-126.613864, 49.597164], [-126.613551, 49.597357], [-126.613659, 49.597673], [-126.61374, 49.597747], [-126.614053, 49.597834], [-126.614131, 49.597943], [-126.614068, 49.598104], [-126.613707, 49.598448], [-126.614068, 49.59868], [-126.614052, 49.598995], [-126.626468, 49.598971], [-126.637156, 49.598827], [-126.637204, 49.592759], [-126.637081, 49.592756], [-126.637003, 49.592665], [-126.636516, 49.592691], [-126.635539, 49.593165], [-126.635273, 49.593224], [-126.634607, 49.593228], [-126.63405, 49.593333], [-126.632902, 49.593328], [-126.632321, 49.593306], [-126.631858, 49.593162], [-126.631457, 49.593137], [-126.631273, 49.593222], [-126.631122, 49.593499], [-126.630741, 49.593617], [-126.629906, 49.593706], [-126.62775, 49.593672], [-126.626843, 49.593518], [-126.623497, 49.592648], [-126.621593, 49.591926], [-126.621296, 49.591767], [-126.620776, 49.591396], [-126.620574, 49.590969], [-126.620607, 49.590871], [-126.620861, 49.590751], [-126.620714, 49.590657], [-126.620759, 49.590596], [-126.621344, 49.590509], [-126.621306, 49.590445], [-126.621044, 49.590395], [-126.620897, 49.590301], [-126.621321, 49.590139], [-126.62131, 49.590068], [-126.620919, 49.58988], [-126.619744, 49.589855], [-126.61967, 49.589917], [-126.619844, 49.590055], [-126.619853, 49.590172], [-126.619211, 49.590573], [-126.619034, 49.590767], [-126.618852, 49.590835], [-126.618521, 49.59082], [-126.618508, 49.590765], [-126.619181, 49.59032], [-126.619161, 49.589888], [-126.618851, 49.589702], [-126.618331, 49.589565], [-126.617448, 49.589519], [-126.617074, 49.589835], [-126.617056, 49.589917], [-126.617393, 49.590103], [-126.61751, 49.590258], [-126.616942, 49.590274], [-126.616825, 49.590398], [-126.616425, 49.590389], [-126.61621, 49.589971], [-126.615829, 49.58982], [-126.615522, 49.58985], [-126.615396, 49.590197], [-126.615228, 49.590194], [-126.614811, 49.589969]]]]}, "properties": {"name": "Yuquot 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Yuquot 1", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924814", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.177957, 50.006472], [-125.177429, 50.019045], [-125.188325, 50.019256], [-125.187556, 50.030354], [-125.187622, 50.033473], [-125.1941, 50.033324], [-125.208728, 50.033336], [-125.211935, 50.033053], [-125.210944, 50.032867], [-125.209779, 50.03245], [-125.209106, 50.032084], [-125.208083, 50.031402], [-125.20703, 50.030946], [-125.206423, 50.030813], [-125.203867, 50.030511], [-125.203274, 50.030378], [-125.202367, 50.03008], [-125.201493, 50.029566], [-125.201189, 50.029321], [-125.200858, 50.028805], [-125.20042, 50.028418], [-125.199476, 50.027301], [-125.198478, 50.025935], [-125.197951, 50.025397], [-125.197625, 50.024675], [-125.197102, 50.024225], [-125.196908, 50.02395], [-125.196927, 50.023446], [-125.197307, 50.02262], [-125.197651, 50.02221], [-125.197805, 50.021892], [-125.198169, 50.020076], [-125.198165, 50.019376], [-125.198094, 50.019061], [-125.197693, 50.018206], [-125.196208, 50.015661], [-125.195858, 50.014696], [-125.195867, 50.01341], [-125.196419, 50.011097], [-125.196428, 50.010088], [-125.195769, 50.008455], [-125.195274, 50.006818], [-125.195432, 50.005961], [-125.196461, 50.004691], [-125.197076, 50.003187], [-125.197782, 50.002436], [-125.197906, 50.002091], [-125.197884, 50.001012], [-125.197395, 50.000355], [-125.197226, 49.99972], [-125.197077, 49.999525], [-125.195466, 49.998162], [-125.195224, 49.998067], [-125.194301, 49.99741], [-125.19336, 49.996968], [-125.193072, 49.996768], [-125.192, 49.996491], [-125.190691, 49.996246], [-125.188762, 49.995581], [-125.186896, 49.995059], [-125.186386, 49.994861], [-125.185757, 49.994863], [-125.182948, 49.99506], [-125.180118, 49.995402], [-125.178325, 49.995922], [-125.177501, 49.996243], [-125.177957, 50.006472]]]]}, "properties": {"name": "Cape Mudge 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cape Mudge 10", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924817", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.920378, 50.146734], [-124.920603, 50.147073], [-124.920743, 50.147684], [-124.924879, 50.145819], [-124.923111, 50.143628], [-124.922302, 50.143726], [-124.921844, 50.143859], [-124.921369, 50.143832], [-124.920698, 50.143896], [-124.920445, 50.143873], [-124.920287, 50.143786], [-124.919923, 50.143406], [-124.919855, 50.142741], [-124.919498, 50.142242], [-124.919277, 50.142292], [-124.918867, 50.142577], [-124.918538, 50.143033], [-124.918315, 50.143099], [-124.918062, 50.143085], [-124.917704, 50.142884], [-124.917211, 50.142766], [-124.916576, 50.142984], [-124.916318, 50.14324], [-124.916309, 50.143708], [-124.916592, 50.144116], [-124.917745, 50.144917], [-124.918315, 50.145167], [-124.920378, 50.146734]]]]}, "properties": {"name": "Squirrel Cove 8", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Squirrel Cove 8", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924818", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.931383, 50.132539], [-124.931665, 50.132579], [-124.931878, 50.13271], [-124.932088, 50.13303], [-124.932087, 50.133364], [-124.9317, 50.133801], [-124.931717, 50.133882], [-124.932552, 50.134489], [-124.932991, 50.134949], [-124.933579, 50.135291], [-124.933855, 50.135547], [-124.934239, 50.136403], [-124.934248, 50.136748], [-124.946281, 50.136711], [-124.946047, 50.133], [-124.946511, 50.120149], [-124.917664, 50.119966], [-124.918436, 50.120205], [-124.919431, 50.120989], [-124.920182, 50.121202], [-124.920528, 50.121439], [-124.920618, 50.121581], [-124.920775, 50.122406], [-124.920763, 50.123135], [-124.920291, 50.125347], [-124.920056, 50.125764], [-124.920021, 50.126278], [-124.920315, 50.126956], [-124.920975, 50.127737], [-124.921001, 50.128033], [-124.920734, 50.128362], [-124.92082, 50.128423], [-124.920933, 50.128403], [-124.921217, 50.128155], [-124.921299, 50.128164], [-124.921459, 50.128286], [-124.921639, 50.128617], [-124.921683, 50.128976], [-124.921405, 50.129394], [-124.921387, 50.129673], [-124.922306, 50.130944], [-124.922798, 50.131314], [-124.923093, 50.131371], [-124.923506, 50.130826], [-124.923543, 50.13068], [-124.923418, 50.130359], [-124.923425, 50.129873], [-124.92383, 50.129488], [-124.923982, 50.129485], [-124.924531, 50.1299], [-124.924924, 50.130595], [-124.92598, 50.131099], [-124.926429, 50.131163], [-124.926718, 50.131024], [-124.92719, 50.130917], [-124.927723, 50.130935], [-124.927964, 50.131029], [-124.9284, 50.131464], [-124.92839, 50.131545], [-124.928146, 50.13171], [-124.928194, 50.131898], [-124.928136, 50.132187], [-124.92866, 50.132341], [-124.929177, 50.132683], [-124.929418, 50.13276], [-124.930643, 50.132911], [-124.931383, 50.132539]]], [[[-124.910557, 50.118042], [-124.911607, 50.117988], [-124.911535, 50.117585], [-124.911712, 50.117558], [-124.91162, 50.116263], [-124.906323, 50.116396], [-124.906295, 50.11679], [-124.906428, 50.1173], [-124.90656, 50.117442], [-124.906759, 50.117528], [-124.907703, 50.11771], [-124.908315, 50.117952], [-124.910557, 50.118042]]]]}, "properties": {"name": "Tork 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tork 7", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924820", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.93793, 49.987107], [-126.938022, 49.990911], [-126.943579, 49.991218], [-126.943463, 49.988893], [-126.941954, 49.988466], [-126.941256, 49.988453], [-126.940179, 49.988543], [-126.94011, 49.988514], [-126.940144, 49.988343], [-126.94005, 49.988271], [-126.9388, 49.987798], [-126.938673, 49.987536], [-126.938393, 49.987243], [-126.93793, 49.987107]]]]}, "properties": {"name": "Oclucje 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Oclucje 7", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924833", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.069167, 49.802263], [-126.069521, 49.803423], [-126.069705, 49.803777], [-126.069989, 49.80405], [-126.069895, 49.805087], [-126.069576, 49.80641], [-126.06841, 49.807989], [-126.066859, 49.809563], [-126.066676, 49.811041], [-126.067282, 49.811501], [-126.067302, 49.811966], [-126.068208, 49.812879], [-126.068613, 49.813551], [-126.069503, 49.814575], [-126.070856, 49.815415], [-126.070957, 49.816293], [-126.071172, 49.816759], [-126.071983, 49.817522], [-126.07204, 49.818597], [-126.072941, 49.819563], [-126.073745, 49.819962], [-126.074271, 49.820307], [-126.074477, 49.820709], [-126.083038, 49.818977], [-126.082564, 49.818141], [-126.081413, 49.816553], [-126.081199, 49.816151], [-126.081084, 49.815553], [-126.080931, 49.813377], [-126.080947, 49.81257], [-126.080723, 49.811316], [-126.080882, 49.810035], [-126.080318, 49.808465], [-126.079038, 49.806516], [-126.078718, 49.806214], [-126.078235, 49.805946], [-126.077609, 49.805874], [-126.077085, 49.80592], [-126.075846, 49.806145], [-126.075501, 49.806113], [-126.075079, 49.805957], [-126.074279, 49.805524], [-126.073261, 49.804815], [-126.073007, 49.804529], [-126.072732, 49.803848], [-126.072494, 49.803585], [-126.071153, 49.802965], [-126.070294, 49.802226], [-126.069901, 49.801716], [-126.069741, 49.801346], [-126.068763, 49.801511], [-126.069167, 49.802263]]]]}, "properties": {"name": "Tsa Xana 18", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tsa Xana 18", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924835", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.858855, 49.983805], [-126.857883, 49.984659], [-126.857569, 49.985112], [-126.857486, 49.98544], [-126.86438, 49.985606], [-126.864452, 49.985148], [-126.863909, 49.979735], [-126.85928, 49.979723], [-126.859323, 49.979915], [-126.859819, 49.980297], [-126.859884, 49.980432], [-126.859818, 49.981573], [-126.859737, 49.981833], [-126.859923, 49.982358], [-126.859905, 49.982808], [-126.859835, 49.983085], [-126.859672, 49.983289], [-126.859471, 49.983438], [-126.859077, 49.983521], [-126.858855, 49.983805]]]]}, "properties": {"name": "Ehatis 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Ehatis 11", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924836", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.241226, 49.95653], [-125.241201, 49.95756], [-125.241545, 49.957448], [-125.241668, 49.952687], [-125.249038, 49.952153], [-125.248337, 49.94403], [-125.23643, 49.944735], [-125.237427, 49.950588], [-125.237924, 49.953048], [-125.241065, 49.95273], [-125.241226, 49.95653]]]]}, "properties": {"name": "Homalco 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Homalco 9", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924840", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.223457, 49.915772], [-125.224371, 49.908597], [-125.222845, 49.907843], [-125.22052, 49.906877], [-125.219164, 49.906169], [-125.218491, 49.905649], [-125.21687, 49.90399], [-125.216075, 49.903483], [-125.215937, 49.905269], [-125.210369, 49.904867], [-125.21048, 49.903036], [-125.206518, 49.902926], [-125.205676, 49.903021], [-125.199736, 49.904795], [-125.199433, 49.908674], [-125.194022, 49.908543], [-125.194023, 49.915843], [-125.195583, 49.915915], [-125.195442, 49.91536], [-125.205363, 49.915393], [-125.223457, 49.915772]]]]}, "properties": {"name": "Nenagwas 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nenagwas 12", "economic_region_id": "5910", "census_division_code": "5924", "census_subdivision_code": "5924843", "regional_district_aka_census_division": "Strathcona"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.911389, 49.726569], [-124.911836, 49.724946], [-124.913447, 49.724981], [-124.913249, 49.724455], [-124.912627, 49.723314], [-124.91113, 49.723298], [-124.911112, 49.722864], [-124.91239, 49.722965], [-124.911298, 49.721355], [-124.910585, 49.720826], [-124.909703, 49.719337], [-124.908867, 49.718324], [-124.908931, 49.715023], [-124.914453, 49.714955], [-124.91448, 49.713729], [-124.914577, 49.713138], [-124.916458, 49.713177], [-124.916573, 49.713128], [-124.916654, 49.713053], [-124.916656, 49.711779], [-124.920059, 49.711877], [-124.919929, 49.706465], [-124.92014, 49.703132], [-124.923015, 49.703041], [-124.923052, 49.702249], [-124.924826, 49.702073], [-124.92569, 49.701926], [-124.927684, 49.701364], [-124.927557, 49.701162], [-124.928794, 49.701125], [-124.928859, 49.700982], [-124.930701, 49.70098], [-124.931297, 49.700935], [-124.933271, 49.700973], [-124.933235, 49.701434], [-124.934239, 49.701967], [-124.934534, 49.69484], [-124.925838, 49.694662], [-124.925653, 49.697331], [-124.92124, 49.69738], [-124.921777, 49.689171], [-124.921635, 49.68801], [-124.924482, 49.688063], [-124.923701, 49.686589], [-124.923725, 49.685801], [-124.926741, 49.685847], [-124.927086, 49.684677], [-124.930236, 49.684839], [-124.930162, 49.686934], [-124.930747, 49.686933], [-124.930697, 49.688205], [-124.932864, 49.688256], [-124.932523, 49.689709], [-124.933184, 49.68974], [-124.933147, 49.689567], [-124.934815, 49.689613], [-124.934826, 49.689226], [-124.937907, 49.689338], [-124.938364, 49.692046], [-124.941013, 49.692091], [-124.941203, 49.693507], [-124.944552, 49.693663], [-124.944283, 49.69346], [-124.948474, 49.69098], [-124.958101, 49.685867], [-124.956402, 49.684387], [-124.955602, 49.68484], [-124.949788, 49.682461], [-124.94932, 49.682208], [-124.94943, 49.678427], [-124.949786, 49.675786], [-124.949929, 49.673862], [-124.950226, 49.67402], [-124.950352, 49.673265], [-124.951882, 49.670379], [-124.948477, 49.668871], [-124.947082, 49.668656], [-124.94353, 49.669042], [-124.940758, 49.668895], [-124.936913, 49.668143], [-124.932988, 49.668999], [-124.930823, 49.669238], [-124.928284, 49.667719], [-124.924959, 49.666319], [-124.91742, 49.666588], [-124.91576, 49.665755], [-124.911868, 49.664961], [-124.908212, 49.66596], [-124.909233, 49.669376], [-124.909126, 49.670233], [-124.908967, 49.673852], [-124.906811, 49.673817], [-124.904891, 49.67344], [-124.904973, 49.673744], [-124.905003, 49.674602], [-124.90893, 49.674627], [-124.908603, 49.682016], [-124.906415, 49.681981], [-124.906461, 49.680031], [-124.904285, 49.680263], [-124.904212, 49.678382], [-124.901979, 49.678318], [-124.902076, 49.674745], [-124.902181, 49.674584], [-124.89752, 49.674528], [-124.897366, 49.682387], [-124.897067, 49.682875], [-124.896253, 49.683447], [-124.895355, 49.683825], [-124.893909, 49.684197], [-124.895239, 49.685851], [-124.897229, 49.687888], [-124.898038, 49.687952], [-124.898225, 49.692658], [-124.909281, 49.692559], [-124.909061, 49.69681], [-124.910138, 49.696939], [-124.909479, 49.704544], [-124.907357, 49.70505], [-124.906765, 49.705156], [-124.906158, 49.705183], [-124.903719, 49.70476], [-124.902848, 49.702954], [-124.899674, 49.703141], [-124.899764, 49.704074], [-124.890068, 49.702392], [-124.888467, 49.704845], [-124.885551, 49.706799], [-124.881614, 49.704337], [-124.879662, 49.702474], [-124.880264, 49.701188], [-124.878857, 49.701215], [-124.878306, 49.702032], [-124.876768, 49.701755], [-124.877118, 49.701035], [-124.875916, 49.700896], [-124.875403, 49.700729], [-124.87413, 49.700168], [-124.873462, 49.699791], [-124.869568, 49.697261], [-124.867517, 49.695861], [-124.868781, 49.695043], [-124.869376, 49.695266], [-124.870706, 49.694498], [-124.871597, 49.694097], [-124.869116, 49.693599], [-124.869549, 49.693197], [-124.869669, 49.692526], [-124.869809, 49.692606], [-124.870561, 49.691844], [-124.870977, 49.692041], [-124.872794, 49.691371], [-124.872961, 49.69119], [-124.875518, 49.69211], [-124.876964, 49.690634], [-124.879641, 49.69127], [-124.880021, 49.690752], [-124.878415, 49.690369], [-124.879166, 49.689272], [-124.877798, 49.688876], [-124.877141, 49.689638], [-124.874865, 49.689044], [-124.87588, 49.688321], [-124.876753, 49.688574], [-124.87678, 49.688244], [-124.876583, 49.687954], [-124.883196, 49.686014], [-124.880619, 49.684969], [-124.880523, 49.684708], [-124.879352, 49.684197], [-124.877233, 49.68642], [-124.876084, 49.687508], [-124.875234, 49.688485], [-124.874548, 49.689036], [-124.873811, 49.689427], [-124.87271, 49.689902], [-124.87133, 49.690446], [-124.870424, 49.690712], [-124.869193, 49.691497], [-124.86733, 49.692813], [-124.865924, 49.693375], [-124.865067, 49.693794], [-124.864474, 49.694263], [-124.864182, 49.694582], [-124.863272, 49.696171], [-124.86244, 49.696903], [-124.862027, 49.69736], [-124.861224, 49.699226], [-124.860717, 49.700116], [-124.859861, 49.700912], [-124.859736, 49.701266], [-124.860677, 49.70268], [-124.860967, 49.703413], [-124.86134, 49.704802], [-124.863041, 49.704286], [-124.863771, 49.70519], [-124.865166, 49.704232], [-124.863229, 49.702913], [-124.863943, 49.701764], [-124.864303, 49.702261], [-124.865403, 49.701171], [-124.871092, 49.704885], [-124.87167, 49.705045], [-124.873155, 49.704982], [-124.873771, 49.705021], [-124.874095, 49.705096], [-124.874227, 49.705202], [-124.874235, 49.705329], [-124.874109, 49.705453], [-124.87389, 49.705514], [-124.873234, 49.70541], [-124.872629, 49.70541], [-124.871981, 49.705502], [-124.869998, 49.70594], [-124.870011, 49.705623], [-124.868082, 49.706294], [-124.866701, 49.706186], [-124.865344, 49.706244], [-124.863599, 49.706457], [-124.863355, 49.706656], [-124.863546, 49.707357], [-124.863089, 49.707388], [-124.862747, 49.706783], [-124.855781, 49.709103], [-124.856721, 49.710343], [-124.858629, 49.711621], [-124.861082, 49.712489], [-124.864485, 49.712513], [-124.86896, 49.711515], [-124.873849, 49.709587], [-124.88081, 49.718384], [-124.882127, 49.719573], [-124.882814, 49.721235], [-124.882587, 49.722611], [-124.88303, 49.724075], [-124.884054, 49.726043], [-124.885927, 49.727984], [-124.88783, 49.729224], [-124.891572, 49.726738], [-124.894736, 49.726843], [-124.896264, 49.72653], [-124.89764, 49.726593], [-124.898369, 49.726446], [-124.898957, 49.726413], [-124.911389, 49.726569]]]]}, "properties": {"name": "Comox", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Comox", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926005", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.964407, 49.740803], [-124.965983, 49.740725], [-124.965948, 49.740687], [-124.967144, 49.739162], [-124.97116, 49.737067], [-124.972486, 49.736259], [-124.973127, 49.735964], [-124.974498, 49.735528], [-124.976169, 49.734807], [-124.977979, 49.733833], [-124.970963, 49.728323], [-124.969095, 49.724521], [-124.979602, 49.723604], [-124.983478, 49.721549], [-124.987296, 49.719614], [-124.986387, 49.718594], [-124.98737, 49.718586], [-124.987364, 49.718335], [-124.988561, 49.71832], [-124.988568, 49.718037], [-124.990151, 49.71804], [-124.990177, 49.717316], [-124.990002, 49.716039], [-124.991163, 49.715981], [-124.992562, 49.716339], [-124.993274, 49.716342], [-124.993274, 49.719701], [-124.993729, 49.720294], [-124.995003, 49.721265], [-124.996376, 49.722638], [-124.999811, 49.725353], [-125.001704, 49.72468], [-125.005734, 49.722523], [-124.999491, 49.717056], [-124.997395, 49.718094], [-124.99553, 49.716632], [-125.000621, 49.713698], [-125.002435, 49.712891], [-125.006524, 49.710498], [-125.01144, 49.707918], [-125.011883, 49.70774], [-125.012444, 49.707625], [-125.013042, 49.707627], [-125.012111, 49.706545], [-125.011821, 49.706324], [-125.009065, 49.704662], [-125.007242, 49.704218], [-125.006246, 49.703803], [-125.005522, 49.703669], [-125.004765, 49.70361], [-125.003913, 49.703648], [-125.003228, 49.703775], [-125.002737, 49.703749], [-125.001939, 49.703476], [-125.001302, 49.70274], [-125.001067, 49.70259], [-124.999881, 49.702411], [-124.99929, 49.702546], [-124.99895, 49.702774], [-124.998651, 49.703776], [-124.998459, 49.703969], [-124.997864, 49.70413], [-124.997423, 49.704098], [-124.997135, 49.703843], [-124.996985, 49.703207], [-124.997073, 49.702801], [-124.997844, 49.701652], [-124.997957, 49.70121], [-124.997852, 49.700844], [-124.997586, 49.700453], [-124.997534, 49.700403], [-124.996865, 49.700411], [-124.99632, 49.700977], [-124.995076, 49.701579], [-124.994676, 49.701691], [-124.994324, 49.701671], [-124.993994, 49.701514], [-124.992755, 49.700655], [-124.992188, 49.700185], [-124.992, 49.699857], [-124.991863, 49.699415], [-124.991842, 49.698617], [-124.991846, 49.698064], [-124.991977, 49.697473], [-124.992281, 49.697027], [-124.992703, 49.696636], [-124.994315, 49.695793], [-124.994784, 49.695747], [-124.99493, 49.695781], [-124.995076, 49.696506], [-124.995427, 49.696977], [-124.996685, 49.698098], [-124.996993, 49.698926], [-124.997424, 49.699605], [-124.998714, 49.699668], [-124.999281, 49.699501], [-124.99995, 49.698956], [-125.000276, 49.698427], [-125.000239, 49.698038], [-125.000553, 49.696557], [-125.001797, 49.69457], [-125.002778, 49.693552], [-125.003387, 49.692749], [-125.003837, 49.692544], [-125.00658, 49.692205], [-125.00862, 49.691695], [-125.010784, 49.690658], [-125.012135, 49.689858], [-125.01377, 49.689147], [-125.014294, 49.68914], [-125.015332, 49.68954], [-125.015942, 49.68956], [-125.01819, 49.688694], [-125.018511, 49.688299], [-125.019029, 49.687954], [-125.019963, 49.687697], [-125.020892, 49.687523], [-125.026801, 49.687446], [-125.028116, 49.68673], [-125.028182, 49.686481], [-125.028533, 49.685999], [-125.028781, 49.685505], [-125.029147, 49.685166], [-125.02677, 49.683326], [-125.028795, 49.6822], [-125.029537, 49.682739], [-125.029575, 49.682853], [-125.029709, 49.682884], [-125.032084, 49.68166], [-125.027708, 49.67824], [-125.027126, 49.678539], [-125.026052, 49.677678], [-125.026442, 49.677479], [-125.026691, 49.677446], [-125.026452, 49.677259], [-125.025883, 49.677553], [-125.025787, 49.677477], [-125.025477, 49.677661], [-125.02533, 49.677559], [-125.024532, 49.677994], [-125.025515, 49.678769], [-125.023538, 49.679876], [-125.022782, 49.680153], [-125.014769, 49.674026], [-125.015257, 49.673718], [-125.014416, 49.673033], [-125.013604, 49.673134], [-125.011344, 49.67139], [-125.011885, 49.671162], [-125.011626, 49.670916], [-125.013802, 49.669872], [-125.013289, 49.669399], [-125.020019, 49.666915], [-125.020456, 49.666321], [-125.015389, 49.663229], [-125.011782, 49.660414], [-125.009476, 49.662147], [-125.011818, 49.663169], [-125.005186, 49.666609], [-125.000633, 49.663017], [-125.0, 49.662594], [-124.998976, 49.661658], [-124.998051, 49.660917], [-124.998618, 49.659863], [-124.995621, 49.659316], [-124.995645, 49.659159], [-124.993283, 49.657315], [-124.988698, 49.657216], [-124.986157, 49.657227], [-124.986308, 49.654481], [-124.981813, 49.654768], [-124.981631, 49.649867], [-124.967216, 49.649632], [-124.967146, 49.647224], [-124.959186, 49.647244], [-124.959248, 49.64756], [-124.963164, 49.647465], [-124.96322, 49.649397], [-124.963104, 49.652656], [-124.961453, 49.652013], [-124.961544, 49.651731], [-124.959717, 49.650834], [-124.95926, 49.65154], [-124.962548, 49.653541], [-124.962188, 49.655272], [-124.964501, 49.656702], [-124.960241, 49.658118], [-124.963014, 49.659418], [-124.964755, 49.660661], [-124.967226, 49.662578], [-124.968414, 49.664115], [-124.969229, 49.66577], [-124.971688, 49.671454], [-124.972554, 49.672291], [-124.973256, 49.672661], [-124.974528, 49.673007], [-124.975896, 49.679423], [-124.976844, 49.680488], [-124.978111, 49.681204], [-124.979424, 49.681443], [-124.9806, 49.682089], [-124.981345, 49.682336], [-124.981945, 49.682631], [-124.978649, 49.684416], [-124.979468, 49.684515], [-124.983976, 49.68459], [-124.984827, 49.68474], [-124.985624, 49.685054], [-124.986983, 49.685952], [-124.988353, 49.686631], [-124.989235, 49.687179], [-124.974481, 49.69443], [-124.974075, 49.694194], [-124.972281, 49.695163], [-124.971487, 49.69474], [-124.970554, 49.694018], [-124.969233, 49.692238], [-124.969012, 49.691711], [-124.96871, 49.69129], [-124.967056, 49.689836], [-124.965835, 49.688878], [-124.964915, 49.688324], [-124.96415, 49.687987], [-124.963712, 49.687928], [-124.963049, 49.687966], [-124.962326, 49.688081], [-124.961991, 49.688224], [-124.961439, 49.688597], [-124.960434, 49.689389], [-124.960202, 49.689463], [-124.959698, 49.689425], [-124.959511, 49.689275], [-124.959467, 49.688909], [-124.959823, 49.688453], [-124.956301, 49.689321], [-124.955903, 49.688641], [-124.953704, 49.689249], [-124.952916, 49.688621], [-124.948474, 49.69098], [-124.944283, 49.69346], [-124.945396, 49.694301], [-124.945543, 49.698951], [-124.9439, 49.704996], [-124.943872, 49.706107], [-124.939921, 49.705834], [-124.939921, 49.709665], [-124.933942, 49.709558], [-124.933357, 49.726124], [-124.933196, 49.72724], [-124.932881, 49.727798], [-124.933191, 49.727895], [-124.933308, 49.72805], [-124.933267, 49.729728], [-124.944529, 49.729983], [-124.944785, 49.733868], [-124.93314, 49.733772], [-124.932957, 49.738422], [-124.933161, 49.739161], [-124.93342, 49.739532], [-124.933838, 49.739846], [-124.935685, 49.740934], [-124.943861, 49.74092], [-124.944057, 49.73714], [-124.949809, 49.73703], [-124.949893, 49.737092], [-124.955449, 49.73694], [-124.955327, 49.740602], [-124.964407, 49.740803]]], [[[-125.027116, 49.673919], [-125.028606, 49.673073], [-125.028636, 49.672963], [-125.027388, 49.671976], [-125.027889, 49.671702], [-125.027384, 49.671255], [-125.025266, 49.672407], [-125.02373, 49.671207], [-125.023253, 49.671339], [-125.022593, 49.671663], [-125.022255, 49.671921], [-125.021735, 49.672481], [-125.022944, 49.673518], [-125.022857, 49.673561], [-125.023043, 49.673718], [-125.023754, 49.673332], [-125.024475, 49.673878], [-125.025212, 49.673505], [-125.025245, 49.673534], [-125.025966, 49.673207], [-125.027116, 49.673919]]]]}, "properties": {"name": "Courtenay", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Courtenay", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926010", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.074434, 49.656622], [-125.077889, 49.657074], [-125.079049, 49.657329], [-125.088778, 49.655241], [-125.089919, 49.654673], [-125.091855, 49.653202], [-125.09265, 49.652388], [-125.093411, 49.650841], [-125.093237, 49.649669], [-125.09335, 49.648248], [-125.093624, 49.648413], [-125.093221, 49.64683], [-125.092056, 49.646774], [-125.080329, 49.64663], [-125.080809, 49.629539], [-125.080666, 49.62721], [-125.080787, 49.625681], [-125.0784, 49.625783], [-125.072452, 49.625163], [-125.069546, 49.625073], [-125.067761, 49.624884], [-125.067874, 49.623889], [-125.067363, 49.618967], [-125.06738, 49.616353], [-125.061351, 49.616237], [-125.061209, 49.614687], [-125.056297, 49.614556], [-125.055944, 49.610416], [-125.057099, 49.608625], [-125.062483, 49.608479], [-125.066733, 49.608429], [-125.066697, 49.606389], [-125.075328, 49.606329], [-125.087195, 49.608754], [-125.087291, 49.60708], [-125.086958, 49.603024], [-125.087346, 49.601797], [-125.088192, 49.60012], [-125.088471, 49.599255], [-125.088148, 49.598916], [-125.089445, 49.596521], [-125.092955, 49.594571], [-125.093092, 49.595545], [-125.098148, 49.594516], [-125.098239, 49.591318], [-125.097941, 49.589402], [-125.097315, 49.588981], [-125.094559, 49.588105], [-125.092967, 49.588225], [-125.092136, 49.588929], [-125.0844, 49.589919], [-125.084726, 49.591927], [-125.090203, 49.591373], [-125.090317, 49.590539], [-125.091547, 49.590552], [-125.092006, 49.590932], [-125.092628, 49.592041], [-125.092529, 49.593024], [-125.092098, 49.592948], [-125.091035, 49.594212], [-125.087678, 49.596175], [-125.086899, 49.597883], [-125.085029, 49.597946], [-125.082705, 49.598177], [-125.080719, 49.598519], [-125.079765, 49.599345], [-125.078434, 49.600154], [-125.077179, 49.600778], [-125.075737, 49.600918], [-125.075571, 49.601137], [-125.074649, 49.601321], [-125.075098, 49.600438], [-125.068378, 49.599219], [-125.068128, 49.60002], [-125.067092, 49.600483], [-125.065506, 49.59949], [-125.065407, 49.59992], [-125.061377, 49.598333], [-125.060514, 49.599126], [-125.062087, 49.600191], [-125.040952, 49.600369], [-125.041156, 49.601001], [-125.039104, 49.599469], [-125.038316, 49.597861], [-125.035418, 49.596881], [-125.032832, 49.59626], [-125.03246, 49.596791], [-125.028797, 49.596727], [-125.026891, 49.597433], [-125.027095, 49.598065], [-125.029383, 49.598152], [-125.029746, 49.598961], [-125.028633, 49.599609], [-125.028875, 49.600148], [-125.030125, 49.60031], [-125.032148, 49.599548], [-125.036822, 49.600791], [-125.038664, 49.601203], [-125.03921, 49.601944], [-125.041234, 49.601735], [-125.041644, 49.602054], [-125.040871, 49.602813], [-125.040893, 49.603513], [-125.041522, 49.604616], [-125.04254, 49.605337], [-125.042499, 49.607149], [-125.042662, 49.612202], [-125.038127, 49.612082], [-125.018968, 49.61265], [-124.994191, 49.61209], [-124.994252, 49.625387], [-124.994982, 49.625361], [-124.99611, 49.625954], [-124.995972, 49.626077], [-124.99738, 49.626833], [-124.997227, 49.632277], [-124.997708, 49.632293], [-124.997662, 49.632632], [-124.999449, 49.632403], [-125.002635, 49.632132], [-125.002633, 49.638271], [-125.002317, 49.638761], [-125.002536, 49.639704], [-125.006336, 49.646572], [-125.007266, 49.647607], [-125.007574, 49.648081], [-125.003381, 49.648349], [-125.003938, 49.653942], [-125.007011, 49.653989], [-125.010017, 49.653365], [-125.010329, 49.652686], [-125.010296, 49.651961], [-125.01004, 49.651633], [-125.009635, 49.651366], [-125.017351, 49.647252], [-125.025877, 49.653817], [-125.033905, 49.654433], [-125.044989, 49.655078], [-125.069105, 49.654596], [-125.069638, 49.654854], [-125.074434, 49.656622]]]]}, "properties": {"name": "Cumberland", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Cumberland", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926014", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.960349, 49.667183], [-124.967069, 49.671818], [-124.971138, 49.674738], [-124.975923, 49.679531], [-124.974528, 49.673007], [-124.973256, 49.672661], [-124.972554, 49.672291], [-124.971688, 49.671454], [-124.969229, 49.66577], [-124.968414, 49.664115], [-124.967226, 49.662578], [-124.964755, 49.660661], [-124.963014, 49.659418], [-124.960241, 49.658118], [-124.964501, 49.656702], [-124.962188, 49.655272], [-124.962548, 49.653541], [-124.95926, 49.65154], [-124.959717, 49.650834], [-124.961544, 49.651731], [-124.961453, 49.652013], [-124.963104, 49.652656], [-124.96322, 49.649397], [-124.963164, 49.647465], [-124.959248, 49.64756], [-124.959186, 49.647244], [-124.967146, 49.647224], [-124.967216, 49.649632], [-124.981631, 49.649867], [-124.981813, 49.654768], [-124.986308, 49.654481], [-124.986157, 49.657227], [-124.988698, 49.657216], [-124.993283, 49.657315], [-124.995645, 49.659159], [-124.995621, 49.659316], [-124.998618, 49.659863], [-124.998051, 49.660917], [-124.998976, 49.661658], [-125.0, 49.662594], [-125.000633, 49.663017], [-125.005186, 49.666609], [-125.00847, 49.664897], [-125.008411, 49.662508], [-125.009191, 49.659592], [-125.008795, 49.657084], [-125.0089, 49.654629], [-125.010017, 49.653365], [-125.007011, 49.653989], [-125.003938, 49.653942], [-125.003381, 49.648349], [-125.007574, 49.648081], [-125.007266, 49.647607], [-125.006336, 49.646572], [-125.002536, 49.639704], [-125.002317, 49.638761], [-125.002633, 49.638271], [-125.002635, 49.632132], [-124.999449, 49.632403], [-124.997662, 49.632632], [-124.997708, 49.632293], [-124.997227, 49.632277], [-124.99738, 49.626833], [-124.995972, 49.626077], [-124.99611, 49.625954], [-124.994982, 49.625361], [-124.994252, 49.625387], [-124.994191, 49.61209], [-125.018968, 49.61265], [-125.038127, 49.612082], [-125.042662, 49.612202], [-125.042499, 49.607149], [-125.04254, 49.605337], [-125.041522, 49.604616], [-125.040893, 49.603513], [-125.040871, 49.602813], [-125.041644, 49.602054], [-125.041234, 49.601735], [-125.03921, 49.601944], [-125.038664, 49.601203], [-125.036822, 49.600791], [-125.032148, 49.599548], [-125.030125, 49.60031], [-125.028875, 49.600148], [-125.028633, 49.599609], [-125.029746, 49.598961], [-125.029383, 49.598152], [-125.027095, 49.598065], [-125.026891, 49.597433], [-125.028797, 49.596727], [-125.03246, 49.596791], [-125.032832, 49.59626], [-125.035418, 49.596881], [-125.038316, 49.597861], [-125.039104, 49.599469], [-125.041156, 49.601001], [-125.040952, 49.600369], [-125.062087, 49.600191], [-125.060514, 49.599126], [-125.061377, 49.598333], [-125.065407, 49.59992], [-125.065506, 49.59949], [-125.067092, 49.600483], [-125.068128, 49.60002], [-125.068378, 49.599219], [-125.075098, 49.600438], [-125.074649, 49.601321], [-125.075571, 49.601137], [-125.075737, 49.600918], [-125.077179, 49.600778], [-125.078434, 49.600154], [-125.079765, 49.599345], [-125.080719, 49.598519], [-125.082705, 49.598177], [-125.085029, 49.597946], [-125.086899, 49.597883], [-125.087678, 49.596175], [-125.091035, 49.594212], [-125.092098, 49.592948], [-125.092529, 49.593024], [-125.092628, 49.592041], [-125.092006, 49.590932], [-125.091547, 49.590552], [-125.090317, 49.590539], [-125.090203, 49.591373], [-125.084726, 49.591927], [-125.0844, 49.589919], [-125.092136, 49.588929], [-125.092967, 49.588225], [-125.094559, 49.588105], [-125.097315, 49.588981], [-125.097941, 49.589402], [-125.098239, 49.591318], [-125.098148, 49.594516], [-125.093092, 49.595545], [-125.092955, 49.594571], [-125.089445, 49.596521], [-125.088148, 49.598916], [-125.088471, 49.599255], [-125.088192, 49.60012], [-125.087346, 49.601797], [-125.086958, 49.603024], [-125.087291, 49.60708], [-125.088927, 49.607184], [-125.10499, 49.607487], [-125.110041, 49.607712], [-125.110367, 49.60413], [-125.118991, 49.604357], [-125.13025, 49.604501], [-125.130845, 49.604464], [-125.130859, 49.595495], [-125.125322, 49.595527], [-125.125194, 49.5937], [-125.122508, 49.593684], [-125.122545, 49.591797], [-125.119824, 49.591865], [-125.119956, 49.590083], [-125.115693, 49.590017], [-125.115802, 49.585272], [-125.108321, 49.585878], [-125.10827, 49.582938], [-125.107181, 49.58267], [-125.106998, 49.581397], [-125.105591, 49.581386], [-125.105338, 49.579766], [-125.10703, 49.579742], [-125.107064, 49.578897], [-125.108774, 49.578864], [-125.111223, 49.578735], [-125.111455, 49.577007], [-125.116285, 49.576779], [-125.116226, 49.575253], [-125.11491, 49.57522], [-125.114942, 49.573142], [-125.126705, 49.572734], [-125.127238, 49.57472], [-125.133989, 49.574464], [-125.134428, 49.571418], [-125.144304, 49.571048], [-125.148862, 49.570971], [-125.148911, 49.569655], [-125.152978, 49.569499], [-125.152944, 49.566844], [-125.151644, 49.566755], [-125.151728, 49.565354], [-125.154331, 49.56517], [-125.154371, 49.564218], [-125.158202, 49.564294], [-125.158241, 49.563342], [-125.161167, 49.563397], [-125.161234, 49.561354], [-125.162601, 49.561273], [-125.162815, 49.559895], [-125.164205, 49.559589], [-125.164227, 49.557995], [-125.154631, 49.558065], [-125.154635, 49.557198], [-125.153252, 49.55714], [-125.153183, 49.554571], [-125.151765, 49.554598], [-125.15177, 49.553731], [-125.140994, 49.553594], [-125.140754, 49.551007], [-125.139499, 49.550892], [-125.139496, 49.549362], [-125.140408, 49.548939], [-125.140598, 49.547262], [-125.142209, 49.547149], [-125.14211, 49.546457], [-125.143086, 49.546227], [-125.142893, 49.543674], [-125.143849, 49.543668], [-125.143927, 49.542107], [-125.135546, 49.542235], [-125.13549, 49.542968], [-125.132922, 49.543048], [-125.132696, 49.541164], [-125.128788, 49.54116], [-125.128517, 49.540169], [-125.124167, 49.540183], [-125.124035, 49.538046], [-125.119955, 49.538104], [-125.119567, 49.536283], [-125.114052, 49.536235], [-125.111251, 49.536349], [-125.111193, 49.535931], [-125.111561, 49.535781], [-125.111946, 49.535791], [-125.112088, 49.535527], [-125.112707, 49.535489], [-125.113225, 49.5353], [-125.113396, 49.535082], [-125.113356, 49.53483], [-125.11342, 49.534703], [-125.114249, 49.534355], [-125.114605, 49.533962], [-125.115122, 49.533754], [-125.115627, 49.533296], [-125.116617, 49.532863], [-125.117527, 49.532191], [-125.117453, 49.531723], [-125.117175, 49.531377], [-125.116292, 49.530765], [-125.115728, 49.53055], [-125.115258, 49.530513], [-125.115236, 49.530316], [-125.115378, 49.530115], [-125.115032, 49.529752], [-125.114593, 49.529509], [-125.114268, 49.5292], [-125.119479, 49.529147], [-125.119509, 49.525946], [-125.12379, 49.525795], [-125.123767, 49.522406], [-125.121051, 49.522281], [-125.120868, 49.519827], [-125.118164, 49.519837], [-125.118172, 49.519016], [-125.114881, 49.518976], [-125.114704, 49.514749], [-125.108509, 49.51479], [-125.108274, 49.511512], [-125.107273, 49.511472], [-125.107178, 49.504012], [-125.102309, 49.503971], [-125.102117, 49.502307], [-125.092799, 49.502213], [-125.093159, 49.493431], [-125.088786, 49.493334], [-125.088859, 49.491844], [-125.082803, 49.49154], [-125.08274, 49.488082], [-125.077952, 49.487998], [-125.077729, 49.4846], [-125.074574, 49.484182], [-125.074572, 49.481154], [-125.071855, 49.480989], [-125.07202, 49.479117], [-125.068935, 49.479021], [-125.069056, 49.477583], [-125.052722, 49.477618], [-125.05265, 49.481514], [-125.045773, 49.481817], [-125.045638, 49.483595], [-125.042781, 49.483741], [-125.042543, 49.48528], [-125.037058, 49.485349], [-125.036866, 49.486941], [-125.034919, 49.48703], [-125.035017, 49.490517], [-125.03696, 49.49065], [-125.036747, 49.493907], [-125.025684, 49.493938], [-125.025723, 49.492517], [-125.022507, 49.492376], [-125.022134, 49.48682], [-125.01999, 49.486563], [-125.019873, 49.481543], [-125.024631, 49.481338], [-125.02434, 49.476243], [-125.022013, 49.476264], [-125.021752, 49.472423], [-125.016074, 49.472389], [-125.016122, 49.470612], [-125.013289, 49.470541], [-125.013158, 49.467214], [-125.015742, 49.466859], [-125.01572, 49.464758], [-125.013221, 49.464702], [-125.012995, 49.4631], [-125.010334, 49.463104], [-125.009856, 49.459135], [-125.002405, 49.459021], [-125.002189, 49.457064], [-124.995189, 49.457097], [-124.995158, 49.4553], [-124.996694, 49.455207], [-124.99695, 49.454772], [-125.000247, 49.453792], [-125.000619, 49.453246], [-124.997445, 49.453293], [-124.991526, 49.453231], [-124.991345, 49.451958], [-124.991257, 49.451917], [-124.987053, 49.451909], [-124.986868, 49.453158], [-124.982421, 49.45321], [-124.982151, 49.445625], [-124.97533, 49.445652], [-124.975332, 49.442503], [-124.970942, 49.442498], [-124.971012, 49.434773], [-124.97077, 49.433957], [-124.970836, 49.433513], [-124.968132, 49.433387], [-124.948465, 49.433345], [-124.946683, 49.43131], [-124.93938, 49.430411], [-124.925579, 49.430352], [-124.912385, 49.427954], [-124.910378, 49.429255], [-124.907244, 49.43114], [-124.905658, 49.431879], [-124.903351, 49.432403], [-124.88677, 49.432712], [-124.859345, 49.433087], [-124.859292, 49.425912], [-124.856735, 49.42582], [-124.85656, 49.419623], [-124.823246, 49.419431], [-124.823141, 49.404898], [-124.759911, 49.404861], [-124.733573, 49.404744], [-124.73381, 49.414556], [-124.733806, 49.421601], [-124.733473, 49.427081], [-124.733454, 49.439579], [-124.753809, 49.440632], [-124.756756, 49.440624], [-124.756896, 49.447258], [-124.756655, 49.4547], [-124.756635, 49.464816], [-124.756308, 49.47025], [-124.707542, 49.47012], [-124.694214, 49.470258], [-124.679033, 49.470273], [-124.579977, 49.470068], [-124.517446, 49.469821], [-124.465133, 49.469779], [-124.501668, 49.499879], [-124.500351, 49.499874], [-124.500631, 49.548688], [-124.514122, 49.562981], [-124.530371, 49.57497], [-124.562306, 49.592398], [-124.585896, 49.603757], [-124.626245, 49.623306], [-124.652875, 49.637584], [-124.690322, 49.662689], [-124.694666, 49.665996], [-124.738955, 49.660326], [-124.762982, 49.657893], [-124.776685, 49.656446], [-124.827241, 49.653065], [-124.862295, 49.652201], [-124.89371, 49.652711], [-124.910401, 49.654368], [-124.927256, 49.658084], [-124.927334, 49.659487], [-124.927188, 49.660464], [-124.926801, 49.661399], [-124.925249, 49.662462], [-124.923414, 49.66328], [-124.919039, 49.664654], [-124.915669, 49.665257], [-124.914284, 49.665455], [-124.91576, 49.665755], [-124.91742, 49.666588], [-124.924959, 49.666319], [-124.928284, 49.667719], [-124.930823, 49.669238], [-124.932988, 49.668999], [-124.936913, 49.668143], [-124.940758, 49.668895], [-124.94353, 49.669042], [-124.947082, 49.668656], [-124.948477, 49.668871], [-124.951882, 49.670379], [-124.955235, 49.664839], [-124.960349, 49.667183]]]]}, "properties": {"name": "Comox Valley A", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Comox Valley A", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926021", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.048123, 49.778405], [-125.049027, 49.778332], [-125.050125, 49.778427], [-125.050252, 49.777628], [-125.047838, 49.771463], [-125.047314, 49.771214], [-125.046594, 49.771264], [-125.045079, 49.770885], [-125.044891, 49.770682], [-125.0447, 49.770155], [-125.044187, 49.770136], [-125.0433, 49.770521], [-125.040485, 49.768313], [-125.039819, 49.768028], [-125.039278, 49.767705], [-125.039144, 49.767491], [-125.039221, 49.767013], [-125.039169, 49.766735], [-125.039039, 49.766603], [-125.038469, 49.766288], [-125.038149, 49.765935], [-125.038096, 49.765693], [-125.038223, 49.765421], [-125.037821, 49.765094], [-125.037499, 49.764677], [-125.036717, 49.764602], [-125.035893, 49.764103], [-125.034736, 49.764367], [-125.033981, 49.764236], [-125.033808, 49.764059], [-125.033651, 49.764008], [-125.03308, 49.764251], [-125.032827, 49.764228], [-125.032161, 49.763871], [-125.031576, 49.763199], [-125.030931, 49.762697], [-125.030185, 49.76244], [-125.029331, 49.762274], [-125.028807, 49.762059], [-125.02742, 49.762119], [-125.027182, 49.762042], [-125.026977, 49.761813], [-125.02732, 49.761384], [-125.027327, 49.760872], [-125.027237, 49.760692], [-125.026508, 49.759886], [-125.026323, 49.759459], [-125.0263, 49.758873], [-125.025876, 49.758351], [-125.025037, 49.757898], [-125.024562, 49.757852], [-125.024293, 49.757704], [-125.024262, 49.757606], [-125.024636, 49.757275], [-125.024518, 49.756791], [-125.024618, 49.756492], [-125.024845, 49.7563], [-125.024882, 49.756165], [-125.024736, 49.75568], [-125.024451, 49.755146], [-125.024291, 49.754987], [-125.023754, 49.754763], [-125.023132, 49.753793], [-125.023188, 49.753523], [-125.023058, 49.753353], [-125.02269, 49.753198], [-125.022203, 49.753152], [-125.02203, 49.753047], [-125.021472, 49.752319], [-125.021024, 49.75222], [-125.020628, 49.751731], [-125.020032, 49.751418], [-125.019852, 49.750765], [-125.018928, 49.750196], [-125.0189, 49.749872], [-125.019588, 49.749402], [-125.019696, 49.748968], [-125.019661, 49.748484], [-125.02012, 49.748196], [-125.020265, 49.748014], [-125.020061, 49.747766], [-125.019394, 49.747381], [-125.019103, 49.746739], [-125.018891, 49.746625], [-125.018329, 49.745816], [-125.018317, 49.745529], [-125.018635, 49.745137], [-125.018735, 49.744577], [-125.018672, 49.744389], [-125.018212, 49.743983], [-125.017867, 49.743387], [-125.017798, 49.743038], [-125.017862, 49.742605], [-125.01729, 49.742165], [-125.016312, 49.741705], [-125.015948, 49.74127], [-125.015844, 49.740804], [-125.015523, 49.740424], [-125.015467, 49.740055], [-125.01582, 49.739528], [-125.015585, 49.739208], [-125.01542, 49.73859], [-125.014951, 49.737977], [-125.014956, 49.737789], [-125.015196, 49.73756], [-125.015376, 49.737178], [-125.015349, 49.736874], [-125.014688, 49.736031], [-125.014188, 49.735652], [-125.01389, 49.735505], [-125.014069, 49.735133], [-125.013876, 49.734813], [-125.013828, 49.734336], [-125.012771, 49.733931], [-125.012724, 49.733851], [-125.012833, 49.733463], [-125.013059, 49.733189], [-125.013315, 49.733031], [-125.013293, 49.732789], [-125.013077, 49.732622], [-125.012867, 49.732581], [-125.012766, 49.732493], [-125.012249, 49.731747], [-125.011947, 49.731455], [-125.011606, 49.731308], [-125.010925, 49.731274], [-125.010555, 49.731029], [-125.010723, 49.730747], [-125.010701, 49.730567], [-125.010794, 49.730431], [-125.011195, 49.730396], [-125.011344, 49.730331], [-125.011782, 49.729838], [-125.018523, 49.726197], [-125.026493, 49.723964], [-125.026155, 49.723768], [-125.025527, 49.722902], [-125.025272, 49.72274], [-125.023585, 49.722157], [-125.022919, 49.722183], [-125.022463, 49.72237], [-125.022417, 49.722528], [-125.022618, 49.723023], [-125.02254, 49.723198], [-125.022369, 49.723257], [-125.02175, 49.723265], [-125.021368, 49.723143], [-125.021044, 49.722902], [-125.019687, 49.721461], [-125.019726, 49.721175], [-125.020391, 49.720427], [-125.021074, 49.720002], [-125.022437, 49.719421], [-125.023066, 49.718884], [-125.022981, 49.718662], [-125.019882, 49.717165], [-125.019393, 49.716546], [-125.019165, 49.715537], [-125.018301, 49.714793], [-125.017815, 49.714562], [-125.017523, 49.714525], [-125.016911, 49.714653], [-125.016252, 49.714907], [-125.016001, 49.715256], [-125.015562, 49.716436], [-125.015196, 49.716772], [-125.014337, 49.717261], [-125.014081, 49.717492], [-125.013615, 49.717633], [-125.013254, 49.717637], [-125.012689, 49.717511], [-125.012359, 49.717319], [-125.012228, 49.717026], [-125.012337, 49.716374], [-125.012693, 49.715959], [-125.012739, 49.71556], [-125.012612, 49.71527], [-125.012268, 49.714966], [-125.012197, 49.714754], [-125.012297, 49.714494], [-125.013714, 49.714082], [-125.013987, 49.713742], [-125.01424, 49.711642], [-125.014179, 49.711009], [-125.014456, 49.710029], [-125.013434, 49.708374], [-125.013428, 49.708012], [-125.013042, 49.707627], [-125.012444, 49.707625], [-125.011883, 49.70774], [-125.01144, 49.707918], [-125.006524, 49.710498], [-125.002435, 49.712891], [-125.000621, 49.713698], [-124.99553, 49.716632], [-124.997395, 49.718094], [-124.999491, 49.717056], [-125.005734, 49.722523], [-125.0013, 49.724853], [-124.999811, 49.725353], [-124.996376, 49.722638], [-124.995003, 49.721265], [-124.993729, 49.720294], [-124.993274, 49.719701], [-124.993274, 49.716342], [-124.992562, 49.716339], [-124.991555, 49.716055], [-124.991163, 49.715981], [-124.990725, 49.715971], [-124.990002, 49.716039], [-124.990177, 49.717316], [-124.990151, 49.71804], [-124.988568, 49.718037], [-124.988561, 49.71832], [-124.987364, 49.718335], [-124.98737, 49.718586], [-124.986387, 49.718594], [-124.987296, 49.719614], [-124.983478, 49.721549], [-124.979602, 49.723604], [-124.969095, 49.724521], [-124.970963, 49.728323], [-124.977979, 49.733833], [-124.976169, 49.734807], [-124.974498, 49.735528], [-124.973127, 49.735964], [-124.972486, 49.736259], [-124.97116, 49.737067], [-124.967144, 49.739162], [-124.965948, 49.740687], [-124.965983, 49.740725], [-124.964407, 49.740803], [-124.955327, 49.740602], [-124.955449, 49.73694], [-124.949893, 49.737092], [-124.949809, 49.73703], [-124.944057, 49.73714], [-124.943861, 49.74092], [-124.935685, 49.740934], [-124.933838, 49.739846], [-124.93342, 49.739532], [-124.933161, 49.739161], [-124.932957, 49.738422], [-124.93314, 49.733772], [-124.944785, 49.733868], [-124.944529, 49.729983], [-124.933267, 49.729728], [-124.933308, 49.72805], [-124.933191, 49.727895], [-124.932881, 49.727798], [-124.933196, 49.72724], [-124.933357, 49.726124], [-124.933942, 49.709558], [-124.939921, 49.709665], [-124.939921, 49.705834], [-124.943872, 49.706107], [-124.9439, 49.704996], [-124.945543, 49.698951], [-124.945396, 49.694301], [-124.944552, 49.693663], [-124.941203, 49.693507], [-124.941013, 49.692091], [-124.938364, 49.692046], [-124.937907, 49.689338], [-124.934826, 49.689226], [-124.934815, 49.689613], [-124.933147, 49.689567], [-124.933184, 49.68974], [-124.932523, 49.689709], [-124.932864, 49.688256], [-124.930697, 49.688205], [-124.930747, 49.686933], [-124.930162, 49.686934], [-124.930236, 49.684839], [-124.927086, 49.684677], [-124.926741, 49.685847], [-124.923725, 49.685801], [-124.923701, 49.686589], [-124.924482, 49.688063], [-124.921635, 49.68801], [-124.921777, 49.689171], [-124.92124, 49.69738], [-124.925653, 49.697331], [-124.925838, 49.694662], [-124.934534, 49.69484], [-124.934239, 49.701967], [-124.933235, 49.701434], [-124.933271, 49.700973], [-124.931297, 49.700935], [-124.930701, 49.70098], [-124.928859, 49.700982], [-124.928794, 49.701125], [-124.927557, 49.701162], [-124.927684, 49.701364], [-124.92569, 49.701926], [-124.924826, 49.702073], [-124.923052, 49.702249], [-124.923015, 49.703041], [-124.92014, 49.703132], [-124.919929, 49.706465], [-124.920059, 49.711877], [-124.916656, 49.711779], [-124.916654, 49.713053], [-124.916573, 49.713128], [-124.916458, 49.713177], [-124.914577, 49.713138], [-124.91448, 49.713729], [-124.914453, 49.714955], [-124.908931, 49.715023], [-124.908867, 49.718324], [-124.909703, 49.719337], [-124.910585, 49.720826], [-124.911298, 49.721355], [-124.91239, 49.722965], [-124.911112, 49.722864], [-124.91113, 49.723298], [-124.912627, 49.723314], [-124.913249, 49.724455], [-124.913447, 49.724981], [-124.911836, 49.724946], [-124.911389, 49.726569], [-124.898957, 49.726413], [-124.898369, 49.726446], [-124.89764, 49.726593], [-124.896264, 49.72653], [-124.894736, 49.726843], [-124.891572, 49.726738], [-124.88783, 49.729224], [-124.885927, 49.727984], [-124.884054, 49.726043], [-124.88303, 49.724075], [-124.882587, 49.722611], [-124.882814, 49.721235], [-124.882127, 49.719573], [-124.88081, 49.718384], [-124.873849, 49.709587], [-124.86896, 49.711515], [-124.864485, 49.712513], [-124.861082, 49.712489], [-124.858629, 49.711621], [-124.856721, 49.710343], [-124.855781, 49.709103], [-124.862747, 49.706783], [-124.863089, 49.707388], [-124.863546, 49.707357], [-124.863355, 49.706656], [-124.863599, 49.706457], [-124.865344, 49.706244], [-124.866701, 49.706186], [-124.868082, 49.706294], [-124.870011, 49.705623], [-124.869998, 49.70594], [-124.871981, 49.705502], [-124.872629, 49.70541], [-124.873234, 49.70541], [-124.87389, 49.705514], [-124.874109, 49.705453], [-124.874235, 49.705329], [-124.874227, 49.705202], [-124.874095, 49.705096], [-124.873771, 49.705021], [-124.873155, 49.704982], [-124.87167, 49.705045], [-124.871092, 49.704885], [-124.865403, 49.701171], [-124.864303, 49.702261], [-124.863943, 49.701764], [-124.863229, 49.702913], [-124.865166, 49.704232], [-124.863771, 49.70519], [-124.863041, 49.704286], [-124.86134, 49.704802], [-124.860967, 49.703413], [-124.860677, 49.70268], [-124.860262, 49.702003], [-124.859797, 49.701435], [-124.859757, 49.701093], [-124.860008, 49.700757], [-124.860717, 49.700116], [-124.861224, 49.699226], [-124.862027, 49.69736], [-124.863364, 49.696062], [-124.864023, 49.694801], [-124.864474, 49.694263], [-124.865216, 49.69371], [-124.86733, 49.692813], [-124.869193, 49.691497], [-124.870424, 49.690712], [-124.87133, 49.690446], [-124.87271, 49.689902], [-124.873811, 49.689427], [-124.874548, 49.689036], [-124.875234, 49.688485], [-124.876084, 49.687508], [-124.877233, 49.68642], [-124.879352, 49.684197], [-124.880523, 49.684708], [-124.880619, 49.684969], [-124.883196, 49.686014], [-124.876583, 49.687954], [-124.87678, 49.688244], [-124.876753, 49.688574], [-124.87588, 49.688321], [-124.874865, 49.689044], [-124.877141, 49.689638], [-124.877798, 49.688876], [-124.879166, 49.689272], [-124.878415, 49.690369], [-124.880021, 49.690752], [-124.879641, 49.69127], [-124.876964, 49.690634], [-124.875518, 49.69211], [-124.872961, 49.69119], [-124.872794, 49.691371], [-124.870977, 49.692041], [-124.870561, 49.691844], [-124.869809, 49.692606], [-124.869669, 49.692526], [-124.869549, 49.693197], [-124.869116, 49.693599], [-124.871597, 49.694097], [-124.870706, 49.694498], [-124.869376, 49.695266], [-124.868781, 49.695043], [-124.867517, 49.695861], [-124.869568, 49.697261], [-124.873462, 49.699791], [-124.87413, 49.700168], [-124.875403, 49.700729], [-124.875916, 49.700896], [-124.877118, 49.701035], [-124.876768, 49.701755], [-124.878306, 49.702032], [-124.878857, 49.701215], [-124.880264, 49.701188], [-124.879662, 49.702474], [-124.881614, 49.704337], [-124.885551, 49.706799], [-124.888467, 49.704845], [-124.890068, 49.702392], [-124.899764, 49.704074], [-124.899674, 49.703141], [-124.902848, 49.702954], [-124.903719, 49.70476], [-124.906158, 49.705183], [-124.906765, 49.705156], [-124.907357, 49.70505], [-124.909479, 49.704544], [-124.910138, 49.696939], [-124.909061, 49.69681], [-124.909281, 49.692559], [-124.898225, 49.692658], [-124.898038, 49.687952], [-124.897229, 49.687888], [-124.895239, 49.685851], [-124.893909, 49.684197], [-124.895355, 49.683825], [-124.896253, 49.683447], [-124.897067, 49.682875], [-124.897366, 49.682387], [-124.89752, 49.674528], [-124.902181, 49.674584], [-124.902076, 49.674745], [-124.901979, 49.678318], [-124.904212, 49.678382], [-124.904285, 49.680263], [-124.906461, 49.680031], [-124.906415, 49.681981], [-124.908603, 49.682016], [-124.90893, 49.674627], [-124.905003, 49.674602], [-124.904973, 49.673744], [-124.904891, 49.67344], [-124.906811, 49.673817], [-124.908967, 49.673852], [-124.909126, 49.670233], [-124.909233, 49.669376], [-124.908212, 49.66596], [-124.911868, 49.664961], [-124.914284, 49.665455], [-124.915669, 49.665257], [-124.919039, 49.664654], [-124.923414, 49.66328], [-124.925249, 49.662462], [-124.926801, 49.661399], [-124.927188, 49.660464], [-124.927334, 49.659487], [-124.927256, 49.658084], [-124.910401, 49.654368], [-124.89371, 49.652711], [-124.862295, 49.652201], [-124.827241, 49.653065], [-124.776685, 49.656446], [-124.762982, 49.657893], [-124.738955, 49.660326], [-124.694666, 49.665996], [-124.720383, 49.685465], [-124.749044, 49.710262], [-124.779247, 49.74257], [-124.828215, 49.802891], [-124.898088, 49.798577], [-124.967012, 49.794811], [-125.000453, 49.794322], [-125.006824, 49.794039], [-125.007789, 49.792914], [-125.007833, 49.792779], [-125.00859, 49.792251], [-125.026754, 49.780295], [-125.039285, 49.781642], [-125.040219, 49.78165], [-125.041517, 49.781333], [-125.042357, 49.781015], [-125.0466, 49.778752], [-125.048123, 49.778405]]], [[[-124.974481, 49.69443], [-124.989235, 49.687179], [-124.988353, 49.686631], [-124.986983, 49.685952], [-124.985624, 49.685054], [-124.984827, 49.68474], [-124.983976, 49.68459], [-124.979468, 49.684515], [-124.978649, 49.684416], [-124.981945, 49.682631], [-124.981345, 49.682336], [-124.9806, 49.682089], [-124.979424, 49.681443], [-124.978111, 49.681204], [-124.976844, 49.680488], [-124.975896, 49.679423], [-124.975923, 49.679531], [-124.971138, 49.674738], [-124.967069, 49.671818], [-124.960349, 49.667183], [-124.955235, 49.664839], [-124.951908, 49.670321], [-124.950352, 49.673265], [-124.950226, 49.67402], [-124.951344, 49.674723], [-124.951603, 49.67498], [-124.952241, 49.675302], [-124.953608, 49.67553], [-124.954369, 49.675842], [-124.955109, 49.676323], [-124.955802, 49.676987], [-124.956155, 49.677484], [-124.957083, 49.677847], [-124.957851, 49.677978], [-124.959525, 49.677904], [-124.961058, 49.677989], [-124.961139, 49.67843], [-124.961155, 49.681856], [-124.956402, 49.684387], [-124.958101, 49.685867], [-124.952916, 49.688621], [-124.953704, 49.689249], [-124.955903, 49.688641], [-124.956301, 49.689321], [-124.959823, 49.688453], [-124.959467, 49.688909], [-124.959511, 49.689275], [-124.959698, 49.689425], [-124.960202, 49.689463], [-124.960434, 49.689389], [-124.961439, 49.688597], [-124.961991, 49.688224], [-124.962326, 49.688081], [-124.963049, 49.687966], [-124.963712, 49.687928], [-124.96415, 49.687987], [-124.964915, 49.688324], [-124.965835, 49.688878], [-124.967056, 49.689836], [-124.96871, 49.69129], [-124.969012, 49.691711], [-124.969233, 49.692238], [-124.970102, 49.693483], [-124.970554, 49.694018], [-124.971487, 49.69474], [-124.972281, 49.695163], [-124.974075, 49.694194], [-124.974481, 49.69443]]]]}, "properties": {"name": "Comox Valley B (Lazo North)", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Comox Valley B (Lazo North)", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926022", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.329332, 49.919766], [-125.33209, 49.919454], [-125.335048, 49.917234], [-125.337281, 49.916188], [-125.339889, 49.915073], [-125.343693, 49.913583], [-125.347838, 49.912107], [-125.351887, 49.910524], [-125.35361, 49.909018], [-125.353996, 49.907372], [-125.353796, 49.903375], [-125.353373, 49.902177], [-125.354246, 49.900706], [-125.355641, 49.897252], [-125.357339, 49.894987], [-125.358549, 49.892852], [-125.358985, 49.89108], [-125.357833, 49.888835], [-125.357365, 49.887404], [-125.357396, 49.886464], [-125.358036, 49.885222], [-125.357843, 49.883973], [-125.357228, 49.88299], [-125.355412, 49.88062], [-125.355017, 49.878661], [-125.354912, 49.877022], [-125.355035, 49.87594], [-125.355997, 49.874506], [-125.403433, 49.874479], [-125.402557, 49.848289], [-125.38279, 49.848161], [-125.382762, 49.839723], [-125.388309, 49.839781], [-125.388294, 49.836231], [-125.423296, 49.836108], [-125.423151, 49.828856], [-125.460894, 49.828135], [-125.485706, 49.827474], [-125.486353, 49.837395], [-125.49332, 49.836713], [-125.496976, 49.828553], [-125.502316, 49.82701], [-125.504868, 49.822918], [-125.506173, 49.816521], [-125.510002, 49.81567], [-125.511545, 49.802964], [-125.524355, 49.800424], [-125.535518, 49.79661], [-125.553072, 49.78519], [-125.54512, 49.76867], [-125.548088, 49.762576], [-125.546233, 49.756091], [-125.545891, 49.755348], [-125.528315, 49.756265], [-125.5219, 49.754572], [-125.497927, 49.743874], [-125.491288, 49.74081], [-125.491371, 49.739002], [-125.495011, 49.734298], [-125.495645, 49.730062], [-125.496193, 49.724971], [-125.515, 49.715427], [-125.513449, 49.710373], [-125.513744, 49.710211], [-125.498788, 49.699019], [-125.452403, 49.662871], [-125.433745, 49.648189], [-125.426521, 49.642666], [-125.363943, 49.593253], [-125.331011, 49.567383], [-125.268857, 49.519018], [-125.233954, 49.491033], [-125.229648, 49.491416], [-125.227233, 49.491444], [-125.224496, 49.491371], [-125.219982, 49.490478], [-125.215575, 49.491922], [-125.214366, 49.492391], [-125.212747, 49.492792], [-125.211029, 49.493079], [-125.206845, 49.493338], [-125.204936, 49.493021], [-125.20113, 49.493966], [-125.199561, 49.494422], [-125.19836, 49.494509], [-125.196278, 49.494258], [-125.194652, 49.493606], [-125.192743, 49.493288], [-125.19149, 49.492794], [-125.190322, 49.491745], [-125.188844, 49.490739], [-125.187317, 49.490199], [-125.185476, 49.490609], [-125.18408, 49.490999], [-125.180692, 49.491629], [-125.179096, 49.491793], [-125.176645, 49.49191], [-125.175368, 49.491649], [-125.173751, 49.491156], [-125.172357, 49.490652], [-125.170939, 49.490381], [-125.168842, 49.490528], [-125.166615, 49.491715], [-125.166514, 49.49721], [-125.170887, 49.497376], [-125.171039, 49.50049], [-125.173468, 49.500523], [-125.173199, 49.510151], [-125.171356, 49.510193], [-125.161744, 49.509845], [-125.161626, 49.508109], [-125.154037, 49.50781], [-125.153816, 49.506889], [-125.151021, 49.506834], [-125.151225, 49.506135], [-125.145396, 49.505885], [-125.145514, 49.50522], [-125.141033, 49.504939], [-125.141066, 49.503377], [-125.134179, 49.503354], [-125.134126, 49.510342], [-125.128773, 49.510372], [-125.128601, 49.511975], [-125.13446, 49.511976], [-125.141165, 49.511691], [-125.140882, 49.519687], [-125.14092, 49.520664], [-125.141751, 49.521762], [-125.149054, 49.521656], [-125.149147, 49.528793], [-125.143225, 49.528905], [-125.140538, 49.528874], [-125.140457, 49.525391], [-125.136829, 49.525092], [-125.136533, 49.521937], [-125.130996, 49.522026], [-125.13089, 49.518536], [-125.126253, 49.518575], [-125.126313, 49.515161], [-125.124732, 49.515158], [-125.114706, 49.514813], [-125.114881, 49.518976], [-125.118172, 49.519016], [-125.118164, 49.519837], [-125.120868, 49.519827], [-125.121051, 49.522281], [-125.123767, 49.522406], [-125.12379, 49.525795], [-125.119509, 49.525946], [-125.119479, 49.529147], [-125.114268, 49.5292], [-125.114593, 49.529509], [-125.115032, 49.529752], [-125.115378, 49.530115], [-125.115236, 49.530316], [-125.115258, 49.530513], [-125.115728, 49.53055], [-125.116292, 49.530765], [-125.117175, 49.531377], [-125.117453, 49.531723], [-125.117527, 49.532191], [-125.116617, 49.532863], [-125.115627, 49.533296], [-125.115122, 49.533754], [-125.114605, 49.533962], [-125.114249, 49.534355], [-125.11342, 49.534703], [-125.113356, 49.53483], [-125.113396, 49.535082], [-125.113225, 49.5353], [-125.112707, 49.535489], [-125.112088, 49.535527], [-125.111946, 49.535791], [-125.111561, 49.535781], [-125.111193, 49.535931], [-125.111251, 49.536349], [-125.114052, 49.536235], [-125.119567, 49.536283], [-125.119955, 49.538104], [-125.124035, 49.538046], [-125.124167, 49.540183], [-125.128517, 49.540169], [-125.128788, 49.54116], [-125.132696, 49.541164], [-125.132922, 49.543048], [-125.13549, 49.542968], [-125.135546, 49.542235], [-125.143927, 49.542107], [-125.143849, 49.543668], [-125.142893, 49.543674], [-125.143086, 49.546227], [-125.14211, 49.546457], [-125.142209, 49.547149], [-125.140598, 49.547262], [-125.140408, 49.548939], [-125.139496, 49.549362], [-125.139499, 49.550892], [-125.140754, 49.551007], [-125.140994, 49.553594], [-125.15177, 49.553731], [-125.151765, 49.554598], [-125.153183, 49.554571], [-125.153252, 49.55714], [-125.154635, 49.557198], [-125.154631, 49.558065], [-125.164227, 49.557995], [-125.164205, 49.559589], [-125.162815, 49.559895], [-125.162601, 49.561273], [-125.161234, 49.561354], [-125.161167, 49.563397], [-125.158241, 49.563342], [-125.158202, 49.564294], [-125.154371, 49.564218], [-125.154331, 49.56517], [-125.151728, 49.565354], [-125.151644, 49.566755], [-125.152944, 49.566844], [-125.152978, 49.569499], [-125.148911, 49.569655], [-125.148862, 49.570971], [-125.144304, 49.571048], [-125.134428, 49.571418], [-125.133989, 49.574464], [-125.127238, 49.57472], [-125.126705, 49.572734], [-125.114942, 49.573142], [-125.11491, 49.57522], [-125.116226, 49.575253], [-125.116285, 49.576779], [-125.111455, 49.577007], [-125.111223, 49.578735], [-125.108774, 49.578864], [-125.107064, 49.578897], [-125.10703, 49.579742], [-125.105338, 49.579766], [-125.105591, 49.581386], [-125.106998, 49.581397], [-125.107181, 49.58267], [-125.10827, 49.582938], [-125.108321, 49.585878], [-125.115802, 49.585272], [-125.115693, 49.590017], [-125.119956, 49.590083], [-125.119824, 49.591865], [-125.122545, 49.591797], [-125.122508, 49.593684], [-125.125194, 49.5937], [-125.125322, 49.595527], [-125.130859, 49.595495], [-125.130845, 49.604464], [-125.13025, 49.604501], [-125.118991, 49.604357], [-125.110367, 49.60413], [-125.110041, 49.607712], [-125.10499, 49.607487], [-125.088927, 49.607184], [-125.087291, 49.60708], [-125.087195, 49.608754], [-125.075328, 49.606329], [-125.066697, 49.606389], [-125.066733, 49.608429], [-125.062483, 49.608479], [-125.057099, 49.608625], [-125.055944, 49.610416], [-125.056297, 49.614556], [-125.061209, 49.614687], [-125.061351, 49.616237], [-125.06738, 49.616353], [-125.067363, 49.618967], [-125.067874, 49.623889], [-125.067761, 49.624884], [-125.069546, 49.625073], [-125.072452, 49.625163], [-125.0784, 49.625783], [-125.080787, 49.625681], [-125.080666, 49.62721], [-125.080809, 49.629539], [-125.080329, 49.64663], [-125.092056, 49.646774], [-125.093221, 49.64683], [-125.093624, 49.648413], [-125.09335, 49.648248], [-125.093237, 49.649669], [-125.093411, 49.650841], [-125.09265, 49.652388], [-125.091855, 49.653202], [-125.089919, 49.654673], [-125.088778, 49.655241], [-125.079049, 49.657329], [-125.077889, 49.657074], [-125.074434, 49.656622], [-125.069638, 49.654854], [-125.069105, 49.654596], [-125.044989, 49.655078], [-125.033905, 49.654433], [-125.025877, 49.653817], [-125.017351, 49.647252], [-125.009635, 49.651366], [-125.01004, 49.651633], [-125.010296, 49.651961], [-125.010359, 49.652386], [-125.010228, 49.652998], [-125.010017, 49.653365], [-125.0089, 49.654629], [-125.008795, 49.657084], [-125.009191, 49.659592], [-125.008411, 49.662508], [-125.00847, 49.664897], [-125.011818, 49.663169], [-125.009476, 49.662147], [-125.011782, 49.660414], [-125.015389, 49.663229], [-125.020456, 49.666321], [-125.020019, 49.666915], [-125.013289, 49.669399], [-125.013802, 49.669872], [-125.011626, 49.670916], [-125.011885, 49.671162], [-125.011344, 49.67139], [-125.013604, 49.673134], [-125.014416, 49.673033], [-125.015257, 49.673718], [-125.014769, 49.674026], [-125.022782, 49.680153], [-125.023538, 49.679876], [-125.025515, 49.678769], [-125.024532, 49.677994], [-125.02533, 49.677559], [-125.025477, 49.677661], [-125.025787, 49.677477], [-125.025883, 49.677553], [-125.026452, 49.677259], [-125.026691, 49.677446], [-125.026442, 49.677479], [-125.026052, 49.677678], [-125.027126, 49.678539], [-125.027708, 49.67824], [-125.032084, 49.68166], [-125.029709, 49.682884], [-125.029575, 49.682853], [-125.029537, 49.682739], [-125.028795, 49.6822], [-125.02677, 49.683326], [-125.029147, 49.685166], [-125.028781, 49.685505], [-125.028533, 49.685999], [-125.028182, 49.686481], [-125.028116, 49.68673], [-125.026801, 49.687446], [-125.020892, 49.687523], [-125.019963, 49.687697], [-125.019029, 49.687954], [-125.018511, 49.688299], [-125.01819, 49.688694], [-125.015942, 49.68956], [-125.015332, 49.68954], [-125.014294, 49.68914], [-125.01377, 49.689147], [-125.012135, 49.689858], [-125.010549, 49.69077], [-125.012718, 49.692703], [-125.015146, 49.694622], [-125.011931, 49.695945], [-124.99929, 49.702546], [-124.999881, 49.702411], [-125.001067, 49.70259], [-125.001302, 49.70274], [-125.001939, 49.703476], [-125.002737, 49.703749], [-125.003228, 49.703775], [-125.003913, 49.703648], [-125.004765, 49.70361], [-125.005522, 49.703669], [-125.006246, 49.703803], [-125.007242, 49.704218], [-125.009065, 49.704662], [-125.012111, 49.706545], [-125.012633, 49.707219], [-125.013428, 49.708012], [-125.013434, 49.708374], [-125.014456, 49.710029], [-125.014179, 49.711009], [-125.01424, 49.711642], [-125.013987, 49.713742], [-125.013714, 49.714082], [-125.012297, 49.714494], [-125.012197, 49.714754], [-125.012268, 49.714966], [-125.012612, 49.71527], [-125.012739, 49.71556], [-125.012693, 49.715959], [-125.012337, 49.716374], [-125.012228, 49.717026], [-125.012359, 49.717319], [-125.012689, 49.717511], [-125.013254, 49.717637], [-125.013615, 49.717633], [-125.014081, 49.717492], [-125.014337, 49.717261], [-125.015196, 49.716772], [-125.015562, 49.716436], [-125.016001, 49.715256], [-125.016252, 49.714907], [-125.016911, 49.714653], [-125.017523, 49.714525], [-125.017815, 49.714562], [-125.018301, 49.714793], [-125.019165, 49.715537], [-125.019393, 49.716546], [-125.019882, 49.717165], [-125.022981, 49.718662], [-125.023066, 49.718884], [-125.022437, 49.719421], [-125.021074, 49.720002], [-125.020391, 49.720427], [-125.019726, 49.721175], [-125.019687, 49.721461], [-125.021044, 49.722902], [-125.021368, 49.723143], [-125.02175, 49.723265], [-125.022369, 49.723257], [-125.02254, 49.723198], [-125.022618, 49.723023], [-125.022417, 49.722528], [-125.022463, 49.72237], [-125.022919, 49.722183], [-125.023585, 49.722157], [-125.025272, 49.72274], [-125.025527, 49.722902], [-125.026155, 49.723768], [-125.026493, 49.723964], [-125.018523, 49.726197], [-125.011782, 49.729838], [-125.011344, 49.730331], [-125.011195, 49.730396], [-125.010794, 49.730431], [-125.010701, 49.730567], [-125.010723, 49.730747], [-125.010555, 49.731029], [-125.010925, 49.731274], [-125.011606, 49.731308], [-125.011947, 49.731455], [-125.012249, 49.731747], [-125.012766, 49.732493], [-125.012867, 49.732581], [-125.013077, 49.732622], [-125.013293, 49.732789], [-125.013315, 49.733031], [-125.013059, 49.733189], [-125.012833, 49.733463], [-125.012724, 49.733851], [-125.012771, 49.733931], [-125.013828, 49.734336], [-125.013876, 49.734813], [-125.014069, 49.735133], [-125.01389, 49.735505], [-125.014188, 49.735652], [-125.014688, 49.736031], [-125.015349, 49.736874], [-125.015376, 49.737178], [-125.015196, 49.73756], [-125.014956, 49.737789], [-125.014951, 49.737977], [-125.01542, 49.73859], [-125.015585, 49.739208], [-125.01582, 49.739528], [-125.015467, 49.740055], [-125.015523, 49.740424], [-125.015844, 49.740804], [-125.015948, 49.74127], [-125.016312, 49.741705], [-125.01729, 49.742165], [-125.017862, 49.742605], [-125.017798, 49.743038], [-125.017867, 49.743387], [-125.018212, 49.743983], [-125.018672, 49.744389], [-125.018735, 49.744577], [-125.018635, 49.745137], [-125.018317, 49.745529], [-125.018329, 49.745816], [-125.018891, 49.746625], [-125.019103, 49.746739], [-125.019394, 49.747381], [-125.020061, 49.747766], [-125.020265, 49.748014], [-125.02012, 49.748196], [-125.019661, 49.748484], [-125.019696, 49.748968], [-125.019588, 49.749402], [-125.0189, 49.749872], [-125.018928, 49.750196], [-125.019852, 49.750765], [-125.020032, 49.751418], [-125.020628, 49.751731], [-125.021024, 49.75222], [-125.021472, 49.752319], [-125.02203, 49.753047], [-125.022203, 49.753152], [-125.02269, 49.753198], [-125.023058, 49.753353], [-125.023188, 49.753523], [-125.023132, 49.753793], [-125.023754, 49.754763], [-125.024291, 49.754987], [-125.024451, 49.755146], [-125.024736, 49.75568], [-125.024882, 49.756165], [-125.024845, 49.7563], [-125.024618, 49.756492], [-125.024518, 49.756791], [-125.024636, 49.757275], [-125.024262, 49.757606], [-125.024293, 49.757704], [-125.024562, 49.757852], [-125.025037, 49.757898], [-125.025876, 49.758351], [-125.0263, 49.758873], [-125.026323, 49.759459], [-125.026508, 49.759886], [-125.027237, 49.760692], [-125.027327, 49.760872], [-125.02732, 49.761384], [-125.026977, 49.761813], [-125.027182, 49.762042], [-125.02742, 49.762119], [-125.028807, 49.762059], [-125.029331, 49.762274], [-125.030185, 49.76244], [-125.030931, 49.762697], [-125.031576, 49.763199], [-125.032161, 49.763871], [-125.032827, 49.764228], [-125.03308, 49.764251], [-125.033651, 49.764008], [-125.033808, 49.764059], [-125.033981, 49.764236], [-125.034736, 49.764367], [-125.035893, 49.764103], [-125.036717, 49.764602], [-125.037499, 49.764677], [-125.037821, 49.765094], [-125.038223, 49.765421], [-125.038096, 49.765693], [-125.038149, 49.765935], [-125.038469, 49.766288], [-125.039039, 49.766603], [-125.039169, 49.766735], [-125.039221, 49.767013], [-125.039144, 49.767491], [-125.039278, 49.767705], [-125.039819, 49.768028], [-125.040485, 49.768313], [-125.0433, 49.770521], [-125.044187, 49.770136], [-125.0447, 49.770155], [-125.044891, 49.770682], [-125.045079, 49.770885], [-125.046594, 49.771264], [-125.047314, 49.771214], [-125.047838, 49.771463], [-125.050252, 49.777628], [-125.050125, 49.778427], [-125.049027, 49.778332], [-125.048123, 49.778405], [-125.0466, 49.778752], [-125.042357, 49.781015], [-125.041517, 49.781333], [-125.040219, 49.78165], [-125.039285, 49.781642], [-125.026754, 49.780295], [-125.00859, 49.792251], [-125.007833, 49.792779], [-125.007789, 49.792914], [-125.006824, 49.794039], [-125.000453, 49.794322], [-124.967012, 49.794811], [-124.898088, 49.798577], [-124.828215, 49.802891], [-124.840468, 49.817784], [-124.842103, 49.821264], [-124.861018, 49.844281], [-124.873845, 49.860423], [-124.88413, 49.873206], [-125.000305, 49.870987], [-125.053552, 49.872457], [-125.084219, 49.873438], [-125.112507, 49.874733], [-125.114939, 49.873666], [-125.116078, 49.872434], [-125.117093, 49.87203], [-125.11935, 49.871839], [-125.121825, 49.870721], [-125.123838, 49.869462], [-125.124981, 49.868861], [-125.125812, 49.868586], [-125.126286, 49.868498], [-125.127804, 49.868683], [-125.129498, 49.86855], [-125.129977, 49.868439], [-125.131411, 49.867897], [-125.131781, 49.867821], [-125.132383, 49.867879], [-125.132933, 49.868122], [-125.13512, 49.869374], [-125.136088, 49.869692], [-125.13711, 49.869841], [-125.138234, 49.869829], [-125.139785, 49.869584], [-125.142853, 49.868496], [-125.143316, 49.868845], [-125.143671, 49.869473], [-125.143977, 49.869782], [-125.144732, 49.870042], [-125.145313, 49.870003], [-125.146987, 49.869466], [-125.147527, 49.869042], [-125.147826, 49.868664], [-125.147894, 49.868245], [-125.148781, 49.8674], [-125.149668, 49.866874], [-125.15039, 49.866754], [-125.151503, 49.867127], [-125.152083, 49.867146], [-125.152645, 49.866985], [-125.153211, 49.866582], [-125.153891, 49.865525], [-125.154392, 49.865342], [-125.155086, 49.865282], [-125.15707, 49.865369], [-125.159783, 49.864981], [-125.160814, 49.864951], [-125.161451, 49.865041], [-125.161745, 49.865152], [-125.162249, 49.865467], [-125.162508, 49.865795], [-125.162674, 49.86629], [-125.162649, 49.866918], [-125.162002, 49.868113], [-125.162031, 49.868653], [-125.162313, 49.869302], [-125.162744, 49.869816], [-125.163392, 49.870234], [-125.163957, 49.870434], [-125.166528, 49.870687], [-125.168921, 49.871184], [-125.169586, 49.871451], [-125.170258, 49.87185], [-125.171714, 49.873544], [-125.172017, 49.874045], [-125.172542, 49.874431], [-125.173414, 49.874825], [-125.174978, 49.875233], [-125.176476, 49.875298], [-125.178624, 49.875661], [-125.179811, 49.875757], [-125.18007, 49.875856], [-125.180707, 49.876671], [-125.181317, 49.878661], [-125.181668, 49.879221], [-125.18224, 49.879611], [-125.182953, 49.879824], [-125.183262, 49.879824], [-125.183492, 49.879703], [-125.184177, 49.878718], [-125.184358, 49.878583], [-125.184627, 49.878554], [-125.185108, 49.878897], [-125.185556, 49.879529], [-125.186009, 49.879819], [-125.187239, 49.880441], [-125.187424, 49.880727], [-125.187491, 49.882436], [-125.187669, 49.882801], [-125.188148, 49.882942], [-125.188832, 49.882912], [-125.190408, 49.882644], [-125.192037, 49.882658], [-125.192897, 49.882748], [-125.194011, 49.882986], [-125.195812, 49.883472], [-125.196438, 49.883774], [-125.196694, 49.884074], [-125.196662, 49.884417], [-125.196224, 49.884976], [-125.19613, 49.885382], [-125.196279, 49.885722], [-125.1977, 49.886698], [-125.198386, 49.886941], [-125.199109, 49.886928], [-125.200257, 49.886745], [-125.201966, 49.886676], [-125.202358, 49.886794], [-125.202769, 49.887081], [-125.20297, 49.887368], [-125.203148, 49.888068], [-125.204021, 49.888526], [-125.204496, 49.888588], [-125.204836, 49.888568], [-125.205173, 49.888391], [-125.205568, 49.887726], [-125.206078, 49.88736], [-125.206822, 49.887049], [-125.207313, 49.887001], [-125.209196, 49.88723], [-125.211609, 49.887344], [-125.21257, 49.887046], [-125.21328, 49.886609], [-125.213369, 49.886279], [-125.213049, 49.885289], [-125.21312, 49.884869], [-125.213646, 49.884293], [-125.214487, 49.883932], [-125.21528, 49.88388], [-125.215928, 49.884087], [-125.216303, 49.884422], [-125.217022, 49.88624], [-125.217291, 49.886559], [-125.218117, 49.887254], [-125.219436, 49.887949], [-125.219833, 49.888102], [-125.221455, 49.88838], [-125.223422, 49.887827], [-125.22412, 49.887833], [-125.224861, 49.887912], [-125.225216, 49.888079], [-125.225487, 49.888368], [-125.225433, 49.889002], [-125.224633, 49.889767], [-125.224472, 49.89008], [-125.224736, 49.890952], [-125.225501, 49.891667], [-125.226769, 49.892366], [-125.227019, 49.892644], [-125.227125, 49.89297], [-125.226937, 49.893562], [-125.226375, 49.894094], [-125.226026, 49.89434], [-125.224967, 49.8948], [-125.224342, 49.895172], [-125.224005, 49.895494], [-125.224031, 49.8958], [-125.224377, 49.896106], [-125.225755, 49.896656], [-125.226845, 49.896811], [-125.227869, 49.896788], [-125.229061, 49.896572], [-125.230736, 49.896001], [-125.231772, 49.89608], [-125.232073, 49.895907], [-125.232442, 49.895515], [-125.233068, 49.89512], [-125.233705, 49.894881], [-125.234238, 49.894811], [-125.234766, 49.89482], [-125.235464, 49.895043], [-125.236304, 49.895824], [-125.23658, 49.895912], [-125.236931, 49.895865], [-125.237231, 49.895585], [-125.237254, 49.895019], [-125.236844, 49.894457], [-125.236287, 49.893975], [-125.236184, 49.893665], [-125.236348, 49.893309], [-125.236938, 49.892961], [-125.237547, 49.892729], [-125.238236, 49.892735], [-125.239163, 49.893138], [-125.240202, 49.893827], [-125.240941, 49.894169], [-125.243801, 49.894605], [-125.246415, 49.895389], [-125.247329, 49.895439], [-125.248542, 49.895197], [-125.248963, 49.895283], [-125.249675, 49.895599], [-125.249934, 49.895616], [-125.250466, 49.895528], [-125.25129, 49.895103], [-125.252082, 49.895093], [-125.252554, 49.895203], [-125.254549, 49.895935], [-125.256032, 49.896731], [-125.256636, 49.89694], [-125.257353, 49.896982], [-125.257787, 49.896911], [-125.258679, 49.896515], [-125.259553, 49.895756], [-125.260216, 49.894746], [-125.260785, 49.894169], [-125.261368, 49.894028], [-125.261974, 49.894374], [-125.262378, 49.894797], [-125.263078, 49.895963], [-125.263634, 49.896139], [-125.264071, 49.896133], [-125.264609, 49.895965], [-125.265381, 49.895384], [-125.265958, 49.894284], [-125.26635, 49.891897], [-125.266586, 49.891116], [-125.266882, 49.890749], [-125.267081, 49.8902], [-125.267014, 49.889941], [-125.265832, 49.888797], [-125.265244, 49.888049], [-125.264665, 49.887064], [-125.26455, 49.886629], [-125.264705, 49.88644], [-125.266389, 49.886025], [-125.268576, 49.885612], [-125.269362, 49.885576], [-125.271395, 49.885728], [-125.272094, 49.885649], [-125.273257, 49.885209], [-125.274436, 49.885151], [-125.2748, 49.885035], [-125.274952, 49.884885], [-125.27495, 49.884745], [-125.274303, 49.883853], [-125.274434, 49.883606], [-125.275431, 49.883205], [-125.276753, 49.882913], [-125.277775, 49.883008], [-125.277834, 49.882967], [-125.278605, 49.883197], [-125.279976, 49.88402], [-125.281064, 49.885018], [-125.281666, 49.885866], [-125.282192, 49.887114], [-125.283889, 49.889197], [-125.285391, 49.890433], [-125.292623, 49.893117], [-125.297502, 49.895124], [-125.299242, 49.896428], [-125.299843, 49.897178], [-125.303616, 49.900354], [-125.30519, 49.901459], [-125.306197, 49.901913], [-125.308306, 49.902559], [-125.308904, 49.902896], [-125.311306, 49.905625], [-125.310921, 49.90625], [-125.310494, 49.90667], [-125.308061, 49.908209], [-125.30751, 49.908828], [-125.307301, 49.909396], [-125.307407, 49.910084], [-125.307915, 49.911103], [-125.308881, 49.912264], [-125.30983, 49.913176], [-125.313806, 49.915974], [-125.314107, 49.915939], [-125.323728, 49.91974], [-125.324548, 49.919932], [-125.326639, 49.919935], [-125.329332, 49.919766]], [[-125.027889, 49.671702], [-125.027388, 49.671976], [-125.028636, 49.672963], [-125.028606, 49.673073], [-125.027116, 49.673919], [-125.025966, 49.673207], [-125.025245, 49.673534], [-125.025212, 49.673505], [-125.024475, 49.673878], [-125.023754, 49.673332], [-125.023043, 49.673718], [-125.022857, 49.673561], [-125.022944, 49.673518], [-125.021735, 49.672481], [-125.022255, 49.671921], [-125.022593, 49.671663], [-125.023253, 49.671339], [-125.02373, 49.671207], [-125.025266, 49.672407], [-125.027384, 49.671255], [-125.027889, 49.671702]]]]}, "properties": {"name": "Comox Valley C (Puntledge - Black Creek)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Comox Valley C (Puntledge - Black Creek)", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926024", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.955602, 49.68484], [-124.961155, 49.681856], [-124.961139, 49.67843], [-124.961058, 49.677989], [-124.959525, 49.677904], [-124.957851, 49.677978], [-124.957083, 49.677847], [-124.956155, 49.677484], [-124.955802, 49.676987], [-124.955109, 49.676323], [-124.954369, 49.675842], [-124.953608, 49.67553], [-124.952241, 49.675302], [-124.951603, 49.67498], [-124.951344, 49.674723], [-124.949929, 49.673862], [-124.949786, 49.675786], [-124.94943, 49.678427], [-124.94932, 49.682208], [-124.949788, 49.682461], [-124.955602, 49.68484]]]]}, "properties": {"name": "Comox 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Comox 1", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926801", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.997534, 49.700403], [-124.997852, 49.700844], [-124.997957, 49.70121], [-124.997844, 49.701652], [-124.997073, 49.702801], [-124.996985, 49.703207], [-124.997135, 49.703843], [-124.997423, 49.704098], [-124.997864, 49.70413], [-124.998459, 49.703969], [-124.998651, 49.703776], [-124.99895, 49.702774], [-124.999176, 49.702606], [-125.011931, 49.695945], [-125.015146, 49.694622], [-125.012718, 49.692703], [-125.010549, 49.69077], [-125.00862, 49.691695], [-125.00658, 49.692205], [-125.003837, 49.692544], [-125.003387, 49.692749], [-125.002778, 49.693552], [-125.001797, 49.69457], [-125.000553, 49.696557], [-125.000239, 49.698038], [-125.000276, 49.698427], [-124.99995, 49.698956], [-124.999281, 49.699501], [-124.998714, 49.699668], [-124.997424, 49.699605], [-124.996993, 49.698926], [-124.996685, 49.698098], [-124.995427, 49.696977], [-124.995076, 49.696506], [-124.99493, 49.695781], [-124.994784, 49.695747], [-124.994315, 49.695793], [-124.992703, 49.696636], [-124.992281, 49.697027], [-124.991977, 49.697473], [-124.991846, 49.698064], [-124.991842, 49.698617], [-124.991863, 49.699415], [-124.992, 49.699857], [-124.992188, 49.700185], [-124.992755, 49.700655], [-124.993994, 49.701514], [-124.994324, 49.701671], [-124.994676, 49.701691], [-124.995076, 49.701579], [-124.99632, 49.700977], [-124.996865, 49.700411], [-124.997534, 49.700403]]]]}, "properties": {"name": "Pentledge 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Pentledge 2", "economic_region_id": "5910", "census_division_code": "5926", "census_subdivision_code": "5926802", "regional_district_aka_census_division": "Comox Valley"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.521271, 49.880319], [-124.524936, 49.880521], [-124.525104, 49.881016], [-124.525346, 49.88123], [-124.525369, 49.881518], [-124.525263, 49.881653], [-124.525254, 49.881851], [-124.52536, 49.88212], [-124.525324, 49.882696], [-124.52511, 49.882986], [-124.5242, 49.883836], [-124.526785, 49.887333], [-124.532455, 49.896403], [-124.533273, 49.897359], [-124.537111, 49.896849], [-124.557971, 49.896846], [-124.557994, 49.899772], [-124.563892, 49.900299], [-124.563963, 49.903974], [-124.566083, 49.904105], [-124.56594, 49.9082], [-124.576854, 49.907974], [-124.577018, 49.900468], [-124.58776, 49.895791], [-124.608089, 49.8865], [-124.606126, 49.884909], [-124.600698, 49.88381], [-124.598844, 49.882497], [-124.582769, 49.872099], [-124.576296, 49.87033], [-124.563538, 49.864097], [-124.561545, 49.862037], [-124.560011, 49.859601], [-124.552601, 49.853169], [-124.545747, 49.848665], [-124.542991, 49.84328], [-124.539542, 49.832717], [-124.538071, 49.825545], [-124.536961, 49.820646], [-124.537991, 49.807511], [-124.537941, 49.801194], [-124.533846, 49.797691], [-124.519555, 49.793207], [-124.509978, 49.792573], [-124.508268, 49.800442], [-124.509517, 49.801664], [-124.50945, 49.801892], [-124.509472, 49.802391], [-124.50881, 49.804801], [-124.507839, 49.809035], [-124.508288, 49.812767], [-124.508562, 49.816026], [-124.503128, 49.815969], [-124.503801, 49.821737], [-124.503664, 49.829602], [-124.494968, 49.829654], [-124.487087, 49.830389], [-124.487048, 49.833682], [-124.487316, 49.833418], [-124.492778, 49.833422], [-124.493264, 49.836982], [-124.492835, 49.837423], [-124.492855, 49.840947], [-124.498154, 49.840835], [-124.49819, 49.836979], [-124.503832, 49.836976], [-124.503884, 49.843244], [-124.503576, 49.846613], [-124.503907, 49.856506], [-124.503874, 49.858653], [-124.503746, 49.858955], [-124.503897, 49.865835], [-124.498291, 49.865852], [-124.498349, 49.867521], [-124.498244, 49.871428], [-124.498384, 49.872347], [-124.498434, 49.873651], [-124.520401, 49.873526], [-124.520353, 49.875013], [-124.518325, 49.874988], [-124.521271, 49.880319]]]]}, "properties": {"name": "Powell River", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Powell River", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927008", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.262118, 50.824423], [-124.258435, 50.833344], [-124.252319, 50.847696], [-124.261086, 50.857092], [-124.273637, 50.861493], [-124.294675, 50.863502], [-124.311198, 50.860397], [-124.323495, 50.853603], [-124.331301, 50.831932], [-124.327476, 50.818348], [-124.338365, 50.810522], [-124.361861, 50.797912], [-124.346081, 50.790405], [-124.352128, 50.785818], [-124.36516, 50.784238], [-124.377603, 50.779815], [-124.382164, 50.773008], [-124.352084, 50.757479], [-124.348357, 50.746473], [-124.368154, 50.737055], [-124.378503, 50.729811], [-124.381893, 50.723472], [-124.387021, 50.720852], [-124.409241, 50.721782], [-124.421478, 50.72194], [-124.428781, 50.722482], [-124.433196, 50.716956], [-124.434944, 50.712976], [-124.44045, 50.712188], [-124.461072, 50.705], [-124.470778, 50.703001], [-124.478487, 50.699448], [-124.489259, 50.697952], [-124.497884, 50.699985], [-124.51233, 50.695983], [-124.522018, 50.691517], [-124.530254, 50.681058], [-124.536307, 50.68083], [-124.591331, 50.661666], [-124.598373, 50.663104], [-124.603342, 50.639001], [-124.589119, 50.632195], [-124.582988, 50.625842], [-124.568711, 50.604569], [-124.569483, 50.602388], [-124.577415, 50.597514], [-124.583984, 50.591107], [-124.581604, 50.584164], [-124.578856, 50.578509], [-124.581275, 50.574076], [-124.577482, 50.568605], [-124.570691, 50.566572], [-124.566371, 50.561868], [-124.561427, 50.5597], [-124.560679, 50.555444], [-124.555807, 50.552673], [-124.554845, 50.54681], [-124.54943, 50.540866], [-124.541938, 50.541443], [-124.536384, 50.540456], [-124.534323, 50.537444], [-124.534908, 50.53401], [-124.53084, 50.52941], [-124.524334, 50.527515], [-124.515574, 50.526141], [-124.512598, 50.523458], [-124.514652, 50.518439], [-124.513356, 50.498702], [-124.524557, 50.490363], [-124.52461, 50.490196], [-124.550108, 50.483448], [-124.574066, 50.462589], [-124.575228, 50.413919], [-124.620756, 50.413169], [-124.633663, 50.413686], [-124.648225, 50.413906], [-124.659033, 50.411515], [-124.667174, 50.406118], [-124.699403, 50.369053], [-124.754176, 50.333233], [-124.768482, 50.321926], [-124.760022, 50.312848], [-124.748109, 50.313871], [-124.728963, 50.314011], [-124.704659, 50.310322], [-124.690715, 50.30592], [-124.658329, 50.29203], [-124.640222, 50.277537], [-124.634579, 50.260965], [-124.62532, 50.24998], [-124.629065, 50.212303], [-124.633785, 50.205552], [-124.642608, 50.191358], [-124.668653, 50.173027], [-124.685734, 50.164971], [-124.724554, 50.15449], [-124.763342, 50.133468], [-124.808174, 50.11097], [-124.819811, 50.10503], [-124.841456, 50.094187], [-124.845081, 50.096008], [-124.852573, 50.093066], [-124.865899, 50.085269], [-124.857989, 50.06703], [-124.856233, 50.055995], [-124.853654, 50.050602], [-124.844968, 50.03312], [-124.841543, 50.025056], [-124.841489, 50.0236], [-124.840449, 50.021218], [-124.846394, 50.014936], [-124.85113, 50.010755], [-124.854978, 50.007605], [-124.858844, 50.005204], [-124.861426, 50.004122], [-124.864784, 50.003182], [-124.868011, 50.002669], [-124.870426, 50.002546], [-124.87232, 50.002376], [-124.89237, 50.006687], [-124.93386, 50.010396], [-124.950266, 50.005502], [-124.970872, 49.999433], [-124.9701, 49.992624], [-124.963004, 49.977128], [-124.954943, 49.96239], [-124.946244, 49.949385], [-124.939892, 49.94017], [-124.931055, 49.92955], [-124.922805, 49.919919], [-124.906768, 49.900521], [-124.900699, 49.893428], [-124.88413, 49.873206], [-124.873845, 49.860423], [-124.861018, 49.844281], [-124.842103, 49.821264], [-124.840468, 49.817784], [-124.828215, 49.802891], [-124.799514, 49.76753], [-124.771438, 49.770549], [-124.580846, 49.831947], [-124.558059, 49.803063], [-124.540023, 49.779229], [-124.53468, 49.774763], [-124.527569, 49.770941], [-124.51388, 49.765808], [-124.509978, 49.792573], [-124.519555, 49.793207], [-124.533846, 49.797691], [-124.537941, 49.801194], [-124.537991, 49.807511], [-124.536961, 49.820646], [-124.538071, 49.825545], [-124.539542, 49.832717], [-124.542991, 49.84328], [-124.545747, 49.848665], [-124.552601, 49.853169], [-124.560011, 49.859601], [-124.561545, 49.862037], [-124.563538, 49.864097], [-124.576296, 49.87033], [-124.582769, 49.872099], [-124.598844, 49.882497], [-124.600698, 49.88381], [-124.606126, 49.884909], [-124.608089, 49.8865], [-124.598262, 49.890992], [-124.599413, 49.891304], [-124.600532, 49.891882], [-124.600893, 49.892236], [-124.601329, 49.892843], [-124.60231, 49.89345], [-124.603491, 49.893766], [-124.60516, 49.894562], [-124.605844, 49.894598], [-124.605625, 49.894717], [-124.605251, 49.894794], [-124.60517, 49.894877], [-124.605307, 49.895162], [-124.605752, 49.895219], [-124.605997, 49.894999], [-124.606135, 49.894998], [-124.606363, 49.89512], [-124.606272, 49.895311], [-124.606363, 49.895552], [-124.606816, 49.895771], [-124.60711, 49.895848], [-124.607699, 49.895956], [-124.609306, 49.896115], [-124.611384, 49.896211], [-124.61304, 49.896179], [-124.613579, 49.896082], [-124.614159, 49.895902], [-124.614334, 49.89572], [-124.614868, 49.895488], [-124.615834, 49.895214], [-124.616817, 49.895075], [-124.616996, 49.894982], [-124.617714, 49.895224], [-124.618872, 49.895297], [-124.619407, 49.895488], [-124.61965, 49.895683], [-124.61987, 49.896012], [-124.619991, 49.896703], [-124.620192, 49.897275], [-124.620415, 49.897687], [-124.620648, 49.89843], [-124.620779, 49.89859], [-124.620802, 49.898859], [-124.621163, 49.899647], [-124.621886, 49.900904], [-124.622392, 49.901464], [-124.622648, 49.901613], [-124.623521, 49.901898], [-124.624244, 49.902274], [-124.62475, 49.902419], [-124.62594, 49.902583], [-124.626844, 49.902526], [-124.627703, 49.902828], [-124.628173, 49.903119], [-124.628439, 49.903177], [-124.629223, 49.903743], [-124.629519, 49.903837], [-124.630924, 49.904618], [-124.631313, 49.905009], [-124.631196, 49.9052], [-124.630361, 49.905219], [-124.629958, 49.905288], [-124.628904, 49.905833], [-124.62805, 49.905711], [-124.626798, 49.905342], [-124.624836, 49.905369], [-124.624271, 49.905511], [-124.6235, 49.905856], [-124.623354, 49.906047], [-124.623316, 49.906524], [-124.623377, 49.906704], [-124.623737, 49.907463], [-124.623955, 49.907747], [-124.624268, 49.90795], [-124.624548, 49.908035], [-124.62505, 49.908434], [-124.626159, 49.908679], [-124.626743, 49.908652], [-124.627372, 49.90832], [-124.627568, 49.908317], [-124.627753, 49.908441], [-124.628089, 49.908904], [-124.628447, 49.909231], [-124.628943, 49.909466], [-124.630396, 49.909599], [-124.631812, 49.909868], [-124.632727, 49.91017], [-124.633288, 49.910278], [-124.634347, 49.910677], [-124.634615, 49.9108], [-124.635019, 49.911225], [-124.635545, 49.911569], [-124.636362, 49.911818], [-124.637257, 49.912328], [-124.63826, 49.913132], [-124.639239, 49.913685], [-124.640173, 49.91449], [-124.641212, 49.915141], [-124.641475, 49.915524], [-124.642518, 49.91586], [-124.644453, 49.915868], [-124.645129, 49.915798], [-124.644858, 49.917757], [-124.644891, 49.919354], [-124.644693, 49.919567], [-124.640869, 49.920075], [-124.635472, 49.92012], [-124.635751, 49.914453], [-124.621091, 49.91447], [-124.609564, 49.913965], [-124.599425, 49.914363], [-124.577333, 49.914665], [-124.576854, 49.907974], [-124.56594, 49.9082], [-124.566083, 49.904105], [-124.563963, 49.903974], [-124.563892, 49.900299], [-124.557994, 49.899772], [-124.557971, 49.896846], [-124.537111, 49.896849], [-124.533273, 49.897359], [-124.532455, 49.896403], [-124.526785, 49.887333], [-124.530593, 49.898482], [-124.530533, 49.898549], [-124.530645, 49.899731], [-124.530848, 49.900875], [-124.5344, 49.912574], [-124.534523, 49.91329], [-124.534203, 49.917307], [-124.533213, 49.926121], [-124.535083, 49.932755], [-124.536061, 49.93778], [-124.536015, 49.942965], [-124.536515, 49.947945], [-124.538605, 49.95994], [-124.539081, 49.96194], [-124.539254, 49.963103], [-124.538965, 49.966485], [-124.539511, 49.976244], [-124.538635, 49.981325], [-124.534993, 49.98513], [-124.531096, 49.986825], [-124.52195, 49.988524], [-124.506017, 49.991656], [-124.497982, 49.993886], [-124.490691, 49.996522], [-124.471902, 50.003958], [-124.454847, 50.010266], [-124.443108, 50.014407], [-124.440108, 50.015534], [-124.420308, 50.019174], [-124.381118, 50.024228], [-124.351603, 50.025302], [-124.347895, 50.024705], [-124.336782, 50.025663], [-124.306934, 50.024619], [-124.287129, 50.025202], [-124.270455, 50.025392], [-124.251131, 50.025012], [-124.237357, 50.020915], [-124.212581, 50.008205], [-124.198766, 50.007517], [-124.176739, 50.018387], [-124.165786, 50.022857], [-124.153438, 50.023296], [-124.141828, 50.023982], [-124.130018, 50.024421], [-124.113657, 50.024655], [-124.113386, 50.033138], [-124.110095, 50.040961], [-124.131786, 50.048987], [-124.13729, 50.054035], [-124.147374, 50.058736], [-124.150785, 50.061024], [-124.137777, 50.079529], [-124.146992, 50.092856], [-124.153648, 50.094908], [-124.146217, 50.11539], [-124.136751, 50.118403], [-124.136899, 50.135529], [-124.117199, 50.137018], [-124.10731, 50.142208], [-124.094714, 50.138941], [-124.084827, 50.139141], [-124.075519, 50.144673], [-124.069382, 50.150551], [-124.080864, 50.162524], [-124.083372, 50.168093], [-124.090619, 50.17382], [-124.096944, 50.174982], [-124.096798, 50.180457], [-124.094293, 50.187801], [-124.092144, 50.193705], [-124.073257, 50.1965], [-124.070516, 50.201547], [-124.077498, 50.209629], [-124.087481, 50.21034], [-124.101923, 50.21031], [-124.105899, 50.209647], [-124.119196, 50.209709], [-124.133643, 50.211762], [-124.154256, 50.219098], [-124.163848, 50.21854], [-124.172628, 50.219108], [-124.175161, 50.222376], [-124.167953, 50.228252], [-124.165414, 50.235627], [-124.159937, 50.241277], [-124.150348, 50.249502], [-124.144231, 50.255748], [-124.149862, 50.262242], [-124.169011, 50.270016], [-124.167868, 50.280498], [-124.17049, 50.282521], [-124.165789, 50.284751], [-124.163488, 50.287419], [-124.158175, 50.29227], [-124.154821, 50.297717], [-124.154849, 50.304731], [-124.157062, 50.318917], [-124.159172, 50.321678], [-124.155079, 50.326278], [-124.159537, 50.333386], [-124.150924, 50.339416], [-124.136707, 50.352621], [-124.114627, 50.350957], [-124.102918, 50.36141], [-124.075802, 50.366423], [-124.063967, 50.363418], [-124.055426, 50.357212], [-124.049441, 50.350284], [-124.041168, 50.346385], [-124.029791, 50.350236], [-124.01502, 50.360832], [-123.999977, 50.346404], [-123.995468, 50.346523], [-123.988094, 50.345995], [-123.979019, 50.348839], [-123.975911, 50.347909], [-123.97323, 50.344796], [-123.969414, 50.343378], [-123.965804, 50.339856], [-123.962499, 50.339364], [-123.954847, 50.341517], [-123.952244, 50.343177], [-123.94827, 50.344582], [-123.944929, 50.347057], [-123.942011, 50.347349], [-123.935699, 50.351058], [-123.931846, 50.352605], [-123.925698, 50.351823], [-123.920832, 50.355204], [-123.909963, 50.359414], [-123.911903, 50.362079], [-123.923954, 50.382049], [-123.921277, 50.392905], [-123.923007, 50.398902], [-123.944193, 50.408502], [-123.951464, 50.421907], [-123.939486, 50.434952], [-123.934465, 50.446088], [-123.936495, 50.45143], [-123.948709, 50.457592], [-123.96258, 50.473633], [-123.96505, 50.480475], [-123.961507, 50.488338], [-123.968099, 50.490974], [-123.971426, 50.48486], [-123.976438, 50.478702], [-123.984368, 50.475915], [-123.9964, 50.473883], [-124.003314, 50.496793], [-123.998821, 50.505546], [-123.985385, 50.511951], [-123.982813, 50.513962], [-123.956171, 50.520073], [-123.939418, 50.527639], [-123.925125, 50.531461], [-123.912979, 50.522182], [-123.904407, 50.52138], [-123.897295, 50.528388], [-123.886394, 50.530595], [-123.85565, 50.528561], [-123.84211, 50.528773], [-123.838014, 50.529857], [-123.832466, 50.5335], [-123.818495, 50.532973], [-123.80747, 50.53605], [-123.801714, 50.540481], [-123.79314, 50.535292], [-123.788882, 50.530255], [-123.776994, 50.527097], [-123.762909, 50.528575], [-123.751122, 50.533475], [-123.744124, 50.538055], [-123.742331, 50.543981], [-123.745312, 50.545897], [-123.745529, 50.549635], [-123.746257, 50.555419], [-123.743352, 50.559294], [-123.74422, 50.565824], [-123.744843, 50.571486], [-123.740801, 50.574328], [-123.742288, 50.576352], [-123.745888, 50.579386], [-123.745421, 50.581456], [-123.748183, 50.583512], [-123.752701, 50.583844], [-123.755482, 50.586211], [-123.755805, 50.590071], [-123.757243, 50.592906], [-123.75531, 50.595012], [-123.758178, 50.59719], [-123.764033, 50.600233], [-123.76486, 50.602647], [-123.762964, 50.605376], [-123.763736, 50.606854], [-123.764183, 50.611149], [-123.759731, 50.61207], [-123.755809, 50.615347], [-123.757868, 50.621284], [-123.759711, 50.625223], [-123.761249, 50.633856], [-123.756833, 50.638977], [-123.756339, 50.644651], [-123.754992, 50.648016], [-123.753798, 50.653863], [-123.745005, 50.657846], [-123.744796, 50.664169], [-123.739192, 50.670716], [-123.73628, 50.676328], [-123.737231, 50.680914], [-123.736137, 50.685735], [-123.730772, 50.691405], [-123.728011, 50.694584], [-123.727875, 50.697327], [-123.731468, 50.701788], [-123.732258, 50.703576], [-123.733328, 50.705107], [-123.734695, 50.706694], [-123.73615, 50.708092], [-123.738653, 50.708966], [-123.739582, 50.709754], [-123.740493, 50.71023], [-123.741422, 50.711017], [-123.745399, 50.7136], [-123.748759, 50.714017], [-123.750897, 50.715336], [-123.754574, 50.716119], [-123.757884, 50.717347], [-123.762563, 50.720161], [-123.766364, 50.721377], [-123.770631, 50.720524], [-123.774463, 50.720616], [-123.778269, 50.723576], [-123.788607, 50.72251], [-123.789684, 50.720862], [-123.789752, 50.71718], [-123.792933, 50.716228], [-123.797243, 50.717742], [-123.79976, 50.717181], [-123.802969, 50.715105], [-123.804112, 50.712957], [-123.806172, 50.713428], [-123.816193, 50.710428], [-123.819899, 50.703776], [-123.827933, 50.708757], [-123.832965, 50.713001], [-123.832055, 50.713938], [-123.847602, 50.710828], [-123.864282, 50.71077], [-123.874707, 50.715627], [-123.889536, 50.726384], [-123.919245, 50.742415], [-123.930365, 50.766776], [-123.948172, 50.775128], [-123.94436, 50.780109], [-123.959856, 50.787448], [-123.967412, 50.79392], [-123.974264, 50.803982], [-123.985868, 50.809038], [-124.00072, 50.806267], [-124.032352, 50.811443], [-124.038589, 50.831761], [-124.049921, 50.838127], [-124.069262, 50.840466], [-124.080333, 50.828972], [-124.091893, 50.808176], [-124.097694, 50.78849], [-124.10927, 50.787459], [-124.153092, 50.796371], [-124.171518, 50.796571], [-124.17984, 50.800029], [-124.190605, 50.800798], [-124.196613, 50.808727], [-124.204866, 50.816473], [-124.213236, 50.820523], [-124.226254, 50.822475], [-124.2457, 50.818345], [-124.262118, 50.824423]]]]}, "properties": {"name": "qathet A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "qathet A", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927010", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.497982, 49.993886], [-124.506017, 49.991656], [-124.52195, 49.988524], [-124.531096, 49.986825], [-124.534993, 49.98513], [-124.538635, 49.981325], [-124.539511, 49.976244], [-124.538965, 49.966485], [-124.539254, 49.963103], [-124.539081, 49.96194], [-124.538605, 49.95994], [-124.536515, 49.947945], [-124.536015, 49.942965], [-124.536061, 49.93778], [-124.535083, 49.932755], [-124.533213, 49.926121], [-124.534203, 49.917307], [-124.534523, 49.91329], [-124.5344, 49.912574], [-124.530848, 49.900875], [-124.530645, 49.899731], [-124.530533, 49.898549], [-124.530593, 49.898482], [-124.526785, 49.887333], [-124.5242, 49.883836], [-124.52511, 49.882986], [-124.525324, 49.882696], [-124.52536, 49.88212], [-124.525254, 49.881851], [-124.525263, 49.881653], [-124.525369, 49.881518], [-124.525346, 49.88123], [-124.525104, 49.881016], [-124.524936, 49.880521], [-124.521271, 49.880319], [-124.518325, 49.874988], [-124.520353, 49.875013], [-124.520401, 49.873526], [-124.498434, 49.873651], [-124.498384, 49.872347], [-124.498244, 49.871428], [-124.498349, 49.867521], [-124.498291, 49.865852], [-124.503897, 49.865835], [-124.503746, 49.858955], [-124.503874, 49.858653], [-124.503907, 49.856506], [-124.503576, 49.846613], [-124.503884, 49.843244], [-124.503832, 49.836976], [-124.49819, 49.836979], [-124.498154, 49.840835], [-124.492855, 49.840947], [-124.492835, 49.837423], [-124.493264, 49.836982], [-124.492778, 49.833422], [-124.487316, 49.833418], [-124.487048, 49.833682], [-124.487087, 49.830389], [-124.494968, 49.829654], [-124.503664, 49.829602], [-124.503801, 49.821737], [-124.503128, 49.815969], [-124.508562, 49.816026], [-124.508288, 49.812767], [-124.507839, 49.809035], [-124.50881, 49.804801], [-124.509472, 49.802391], [-124.50945, 49.801892], [-124.509517, 49.801664], [-124.508268, 49.800442], [-124.509978, 49.792573], [-124.51388, 49.765808], [-124.512165, 49.765064], [-124.501075, 49.761437], [-124.487286, 49.757071], [-124.484941, 49.75658], [-124.442033, 49.748762], [-124.432906, 49.748732], [-124.4321, 49.772575], [-124.433373, 49.773685], [-124.433346, 49.774966], [-124.433279, 49.77563], [-124.433059, 49.776051], [-124.432906, 49.776182], [-124.431741, 49.77643], [-124.433592, 49.778586], [-124.433506, 49.779474], [-124.437524, 49.779768], [-124.436284, 49.793851], [-124.436959, 49.79942], [-124.43777, 49.802734], [-124.428252, 49.802749], [-124.409796, 49.802914], [-124.409416, 49.808084], [-124.407967, 49.81834], [-124.408373, 49.840152], [-124.431571, 49.840095], [-124.432358, 49.849885], [-124.43249, 49.856292], [-124.442265, 49.856349], [-124.441223, 49.875166], [-124.437303, 49.875328], [-124.436989, 49.882504], [-124.436955, 49.885691], [-124.43194, 49.885766], [-124.432569, 49.894207], [-124.425795, 49.898562], [-124.419803, 49.903603], [-124.417834, 49.913409], [-124.415853, 49.952287], [-124.428894, 49.952349], [-124.42891, 49.955877], [-124.435052, 49.955973], [-124.433684, 49.978498], [-124.438553, 49.978627], [-124.439069, 49.978685], [-124.438614, 49.987473], [-124.445142, 49.987795], [-124.444352, 50.000028], [-124.443108, 50.014407], [-124.454847, 50.010266], [-124.471902, 50.003958], [-124.490691, 49.996522], [-124.497982, 49.993886]]]]}, "properties": {"name": "qathet B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "qathet B", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927012", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.381118, 50.024228], [-124.420308, 50.019174], [-124.440108, 50.015534], [-124.443108, 50.014407], [-124.444352, 50.000028], [-124.445142, 49.987795], [-124.438614, 49.987473], [-124.439069, 49.978685], [-124.438553, 49.978627], [-124.433684, 49.978498], [-124.435052, 49.955973], [-124.42891, 49.955877], [-124.428894, 49.952349], [-124.415853, 49.952287], [-124.417834, 49.913409], [-124.419803, 49.903603], [-124.425795, 49.898562], [-124.432569, 49.894207], [-124.43194, 49.885766], [-124.436955, 49.885691], [-124.436989, 49.882504], [-124.437303, 49.875328], [-124.441223, 49.875166], [-124.442265, 49.856349], [-124.43249, 49.856292], [-124.432358, 49.849885], [-124.431571, 49.840095], [-124.408373, 49.840152], [-124.407967, 49.81834], [-124.409416, 49.808084], [-124.409796, 49.802914], [-124.428252, 49.802749], [-124.43777, 49.802734], [-124.436959, 49.79942], [-124.436284, 49.793851], [-124.437524, 49.779768], [-124.433506, 49.779474], [-124.433592, 49.778586], [-124.431741, 49.77643], [-124.432906, 49.776182], [-124.433059, 49.776051], [-124.433279, 49.77563], [-124.433346, 49.774966], [-124.433373, 49.773685], [-124.4321, 49.772575], [-124.432906, 49.748732], [-124.442033, 49.748762], [-124.405661, 49.742343], [-124.361901, 49.735058], [-124.333207, 49.730095], [-124.318641, 49.725353], [-124.309447, 49.720184], [-124.291885, 49.701569], [-124.257905, 49.73091], [-124.237088, 49.748455], [-124.22054, 49.757261], [-124.206962, 49.760427], [-124.186461, 49.763135], [-124.167622, 49.763996], [-124.137078, 49.769427], [-124.119753, 49.774902], [-124.090826, 49.784404], [-124.049784, 49.799281], [-124.034993, 49.805472], [-124.029807, 49.813657], [-124.0255, 49.825245], [-124.02517, 49.839999], [-124.03351, 49.852063], [-124.045719, 49.867706], [-124.044869, 49.875408], [-124.040903, 49.89301], [-124.034177, 49.927967], [-124.039607, 49.928915], [-124.062944, 49.933246], [-124.060244, 49.962982], [-124.069403, 49.964668], [-124.069244, 49.984121], [-124.067563, 50.000617], [-124.079349, 50.000237], [-124.087109, 50.009065], [-124.093296, 50.012418], [-124.096639, 50.01644], [-124.105052, 50.014738], [-124.113303, 50.017514], [-124.114774, 50.02202], [-124.113657, 50.024655], [-124.130018, 50.024421], [-124.141828, 50.023982], [-124.153438, 50.023296], [-124.165786, 50.022857], [-124.176739, 50.018387], [-124.198766, 50.007517], [-124.212581, 50.008205], [-124.237357, 50.020915], [-124.251131, 50.025012], [-124.270455, 50.025392], [-124.287129, 50.025202], [-124.306934, 50.024619], [-124.336782, 50.025663], [-124.347895, 50.024705], [-124.351603, 50.025302], [-124.381118, 50.024228]], [[-124.334032, 49.772549], [-124.337645, 49.77266], [-124.339297, 49.772557], [-124.339218, 49.776303], [-124.329765, 49.776291], [-124.32982, 49.776163], [-124.329643, 49.775725], [-124.329868, 49.775297], [-124.3299, 49.77483], [-124.330596, 49.773459], [-124.330822, 49.773503], [-124.331341, 49.77321], [-124.332216, 49.7732], [-124.332811, 49.77313], [-124.333224, 49.77299], [-124.333825, 49.772579], [-124.334032, 49.772549]]]]}, "properties": {"name": "qathet C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "qathet C", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927016", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.233358, 49.650124], [-124.25405, 49.659738], [-124.291924, 49.701535], [-124.291885, 49.701569], [-124.309447, 49.720184], [-124.318641, 49.725353], [-124.333207, 49.730095], [-124.361901, 49.735058], [-124.405661, 49.742343], [-124.442033, 49.748762], [-124.484941, 49.75658], [-124.487286, 49.757071], [-124.501075, 49.761437], [-124.512165, 49.765064], [-124.51388, 49.765808], [-124.527569, 49.770941], [-124.53468, 49.774763], [-124.540023, 49.779229], [-124.558059, 49.803063], [-124.580846, 49.831947], [-124.771438, 49.770549], [-124.799514, 49.76753], [-124.779247, 49.74257], [-124.749044, 49.710262], [-124.720383, 49.685465], [-124.690322, 49.662689], [-124.652875, 49.637584], [-124.626245, 49.623306], [-124.585896, 49.603757], [-124.562306, 49.592398], [-124.530371, 49.57497], [-124.514122, 49.562981], [-124.500631, 49.548688], [-124.500745, 49.550324], [-124.487588, 49.550772], [-124.388646, 49.550457], [-124.36267, 49.550271], [-124.352528, 49.547733], [-124.341596, 49.545419], [-124.339444, 49.544875], [-124.335622, 49.544055], [-124.330242, 49.543201], [-124.31887, 49.542168], [-124.305265, 49.540466], [-124.298012, 49.538316], [-124.289133, 49.535322], [-124.279642, 49.531805], [-124.273333, 49.529674], [-124.269432, 49.528638], [-124.260448, 49.527546], [-124.253871, 49.527097], [-124.235698, 49.523201], [-124.219957, 49.517969], [-124.206502, 49.514174], [-124.199882, 49.511989], [-124.195437, 49.510131], [-124.188487, 49.505891], [-124.173601, 49.495756], [-124.161059, 49.486701], [-124.154757, 49.481092], [-124.14842, 49.474557], [-124.142271, 49.468054], [-124.133995, 49.4577], [-124.129932, 49.452826], [-124.12641, 49.447243], [-124.121552, 49.438834], [-124.074178, 49.438569], [-124.045083, 49.43857], [-124.045561, 49.440705], [-124.050791, 49.457193], [-124.060903, 49.480957], [-124.068703, 49.492885], [-124.072716, 49.499436], [-124.074182, 49.505305], [-124.076841, 49.51972], [-124.079833, 49.532325], [-124.083045, 49.541459], [-124.086625, 49.548185], [-124.0922, 49.55615], [-124.102682, 49.567453], [-124.130849, 49.590879], [-124.138007, 49.595326], [-124.137946, 49.59538], [-124.157943, 49.608739], [-124.175707, 49.618846], [-124.197933, 49.632494], [-124.233358, 49.650124]]]]}, "properties": {"name": "qathet D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "qathet D", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927018", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.36267, 49.550271], [-124.388646, 49.550457], [-124.487588, 49.550772], [-124.500745, 49.550324], [-124.500631, 49.548688], [-124.500351, 49.499874], [-124.501668, 49.499879], [-124.465133, 49.469779], [-124.465367, 49.46978], [-124.449869, 49.455042], [-124.430921, 49.441927], [-124.416773, 49.433602], [-124.397144, 49.423976], [-124.372214, 49.414745], [-124.360493, 49.411263], [-124.340941, 49.40532], [-124.314311, 49.399036], [-124.292744, 49.39503], [-124.253472, 49.38937], [-124.200277, 49.38264], [-124.163039, 49.377815], [-124.040044, 49.365001], [-124.038705, 49.382396], [-124.03825, 49.393653], [-124.038495, 49.402566], [-124.03984, 49.414779], [-124.042419, 49.42743], [-124.045083, 49.43857], [-124.074178, 49.438569], [-124.121552, 49.438834], [-124.12641, 49.447243], [-124.129932, 49.452826], [-124.133995, 49.4577], [-124.142271, 49.468054], [-124.14842, 49.474557], [-124.154757, 49.481092], [-124.161059, 49.486701], [-124.173601, 49.495756], [-124.188487, 49.505891], [-124.195437, 49.510131], [-124.199882, 49.511989], [-124.206502, 49.514174], [-124.219957, 49.517969], [-124.235698, 49.523201], [-124.253871, 49.527097], [-124.260448, 49.527546], [-124.269432, 49.528638], [-124.273333, 49.529674], [-124.279642, 49.531805], [-124.289133, 49.535322], [-124.298012, 49.538316], [-124.305265, 49.540466], [-124.31887, 49.542168], [-124.330242, 49.543201], [-124.335622, 49.544055], [-124.339444, 49.544875], [-124.341596, 49.545419], [-124.352528, 49.547733], [-124.36267, 49.550271]]]]}, "properties": {"name": "qathet E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "qathet E", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927020", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.621091, 49.91447], [-124.635751, 49.914453], [-124.635472, 49.92012], [-124.640869, 49.920075], [-124.64448, 49.91962], [-124.644824, 49.91949], [-124.644891, 49.919354], [-124.644858, 49.917757], [-124.645129, 49.915798], [-124.644453, 49.915868], [-124.642518, 49.91586], [-124.641475, 49.915524], [-124.641212, 49.915141], [-124.640173, 49.91449], [-124.639239, 49.913685], [-124.63826, 49.913132], [-124.637257, 49.912328], [-124.636362, 49.911818], [-124.635545, 49.911569], [-124.635019, 49.911225], [-124.634615, 49.9108], [-124.634347, 49.910677], [-124.633288, 49.910278], [-124.632727, 49.91017], [-124.631812, 49.909868], [-124.630396, 49.909599], [-124.628943, 49.909466], [-124.628447, 49.909231], [-124.628089, 49.908904], [-124.627753, 49.908441], [-124.627568, 49.908317], [-124.627372, 49.90832], [-124.626743, 49.908652], [-124.626159, 49.908679], [-124.62505, 49.908434], [-124.624548, 49.908035], [-124.624268, 49.90795], [-124.623955, 49.907747], [-124.623737, 49.907463], [-124.623377, 49.906704], [-124.623316, 49.906524], [-124.623354, 49.906047], [-124.6235, 49.905856], [-124.624271, 49.905511], [-124.624836, 49.905369], [-124.626798, 49.905342], [-124.62805, 49.905711], [-124.628904, 49.905833], [-124.629958, 49.905288], [-124.630361, 49.905219], [-124.631196, 49.9052], [-124.631313, 49.905009], [-124.630924, 49.904618], [-124.629519, 49.903837], [-124.629223, 49.903743], [-124.628439, 49.903177], [-124.628173, 49.903119], [-124.627703, 49.902828], [-124.626844, 49.902526], [-124.62594, 49.902583], [-124.62475, 49.902419], [-124.624244, 49.902274], [-124.623521, 49.901898], [-124.622648, 49.901613], [-124.622392, 49.901464], [-124.621886, 49.900904], [-124.621163, 49.899647], [-124.620802, 49.898859], [-124.620779, 49.89859], [-124.620648, 49.89843], [-124.620415, 49.897687], [-124.620192, 49.897275], [-124.619991, 49.896703], [-124.61987, 49.896012], [-124.61965, 49.895683], [-124.619407, 49.895488], [-124.618872, 49.895297], [-124.617714, 49.895224], [-124.616996, 49.894982], [-124.616817, 49.895075], [-124.615834, 49.895214], [-124.614868, 49.895488], [-124.614334, 49.89572], [-124.614159, 49.895902], [-124.613855, 49.896006], [-124.61304, 49.896179], [-124.612582, 49.896204], [-124.611384, 49.896211], [-124.609306, 49.896115], [-124.607699, 49.895956], [-124.60711, 49.895848], [-124.606816, 49.895771], [-124.606363, 49.895552], [-124.606272, 49.895311], [-124.606363, 49.89512], [-124.606135, 49.894998], [-124.605997, 49.894999], [-124.605752, 49.895219], [-124.605307, 49.895162], [-124.60517, 49.894877], [-124.605251, 49.894794], [-124.605625, 49.894717], [-124.605844, 49.894598], [-124.60516, 49.894562], [-124.603491, 49.893766], [-124.60231, 49.89345], [-124.601329, 49.892843], [-124.600893, 49.892236], [-124.600532, 49.891882], [-124.599413, 49.891304], [-124.598262, 49.890992], [-124.58776, 49.895791], [-124.577018, 49.900468], [-124.576854, 49.907974], [-124.577333, 49.914665], [-124.599425, 49.914363], [-124.609564, 49.913965], [-124.621091, 49.91447]]]]}, "properties": {"name": "Sliammon 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Sliammon 1", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927802", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.3299, 49.77483], [-124.329868, 49.775297], [-124.329643, 49.775725], [-124.32982, 49.776163], [-124.329765, 49.776291], [-124.339218, 49.776303], [-124.339297, 49.772557], [-124.337645, 49.77266], [-124.335241, 49.772553], [-124.334102, 49.772539], [-124.333825, 49.772579], [-124.333224, 49.77299], [-124.332811, 49.77313], [-124.332216, 49.7732], [-124.331341, 49.77321], [-124.330822, 49.773503], [-124.330596, 49.773459], [-124.3299, 49.77483]]]]}, "properties": {"name": "Sechelt (Part) - qathet", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Sechelt (Part) - qathet", "economic_region_id": "5910", "census_division_code": "5927", "census_subdivision_code": "5927806", "regional_district_aka_census_division": "qathet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.533426, 49.412634], [-123.533375, 49.411687], [-123.535163, 49.411614], [-123.535043, 49.410547], [-123.537241, 49.410485], [-123.537084, 49.409042], [-123.534434, 49.408958], [-123.534284, 49.406491], [-123.535561, 49.406462], [-123.535487, 49.405787], [-123.53509, 49.405344], [-123.532925, 49.405367], [-123.532917, 49.405619], [-123.531786, 49.405627], [-123.531769, 49.406166], [-123.53002, 49.406204], [-123.530013, 49.406049], [-123.52828, 49.406094], [-123.528278, 49.405657], [-123.527573, 49.40567], [-123.52752, 49.404316], [-123.524341, 49.404338], [-123.52419, 49.403407], [-123.521212, 49.403293], [-123.520963, 49.400398], [-123.521623, 49.400413], [-123.521186, 49.396136], [-123.520742, 49.396226], [-123.52075, 49.392251], [-123.523901, 49.392188], [-123.524176, 49.391317], [-123.524123, 49.390014], [-123.519396, 49.390441], [-123.518807, 49.388495], [-123.517576, 49.388734], [-123.51726, 49.388656], [-123.517283, 49.388033], [-123.517601, 49.387123], [-123.517303, 49.384184], [-123.51415, 49.384286], [-123.511035, 49.385593], [-123.51001, 49.3866], [-123.50916, 49.38815], [-123.507146, 49.388432], [-123.506199, 49.389038], [-123.50428, 49.38898], [-123.502108, 49.389537], [-123.502075, 49.390203], [-123.500619, 49.390356], [-123.499325, 49.390706], [-123.497617, 49.392361], [-123.497086, 49.39431], [-123.498252, 49.396769], [-123.500285, 49.398519], [-123.501978, 49.399077], [-123.501274, 49.400876], [-123.498239, 49.403175], [-123.501461, 49.405128], [-123.501694, 49.405198], [-123.501589, 49.405384], [-123.501115, 49.405715], [-123.501292, 49.405722], [-123.501259, 49.408099], [-123.503449, 49.40859], [-123.503487, 49.409738], [-123.507235, 49.409762], [-123.507328, 49.412172], [-123.508939, 49.412164], [-123.510241, 49.412066], [-123.51023, 49.41326], [-123.509941, 49.41323], [-123.509965, 49.414237], [-123.519727, 49.414204], [-123.529546, 49.413971], [-123.529456, 49.412759], [-123.533426, 49.412634]]]]}, "properties": {"name": "Gibsons", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Gibsons", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929005", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.798353, 49.50898], [-123.798557, 49.503269], [-123.798306, 49.499289], [-123.80819, 49.499187], [-123.816806, 49.498902], [-123.816797, 49.496387], [-123.827338, 49.496373], [-123.827256, 49.481758], [-123.847944, 49.481561], [-123.848056, 49.478957], [-123.848364, 49.476179], [-123.849086, 49.472663], [-123.848469, 49.472426], [-123.831928, 49.46779], [-123.816096, 49.46463], [-123.810879, 49.464091], [-123.80756, 49.463901], [-123.801588, 49.463733], [-123.791583, 49.463293], [-123.781557, 49.463407], [-123.770071, 49.464359], [-123.759728, 49.465056], [-123.75375, 49.466052], [-123.75334, 49.470645], [-123.753506, 49.470908], [-123.753475, 49.47339], [-123.753345, 49.473459], [-123.753461, 49.474194], [-123.753455, 49.475036], [-123.751766, 49.475421], [-123.751491, 49.475943], [-123.751454, 49.477329], [-123.753438, 49.47736], [-123.753392, 49.480691], [-123.753455, 49.481412], [-123.753378, 49.483072], [-123.755132, 49.483556], [-123.75527, 49.483634], [-123.755988, 49.483563], [-123.756386, 49.484348], [-123.758391, 49.485013], [-123.758394, 49.485112], [-123.758836, 49.485675], [-123.759659, 49.486213], [-123.761539, 49.48685], [-123.762589, 49.486784], [-123.763089, 49.488186], [-123.767473, 49.488197], [-123.767591, 49.488677], [-123.767552, 49.488848], [-123.767279, 49.489091], [-123.767193, 49.489445], [-123.768263, 49.489895], [-123.768671, 49.491177], [-123.768683, 49.491918], [-123.765729, 49.491916], [-123.765789, 49.489903], [-123.765499, 49.489931], [-123.764637, 49.490423], [-123.76382, 49.492083], [-123.763924, 49.493432], [-123.766904, 49.496848], [-123.768035, 49.497632], [-123.770554, 49.498857], [-123.771856, 49.499972], [-123.773092, 49.502159], [-123.773965, 49.503223], [-123.775094, 49.50389], [-123.779002, 49.505564], [-123.779952, 49.506232], [-123.781355, 49.507572], [-123.783098, 49.508631], [-123.784648, 49.508791], [-123.78637, 49.508501], [-123.78749, 49.508556], [-123.79, 49.50916], [-123.793286, 49.509761], [-123.795858, 49.509326], [-123.796591, 49.508936], [-123.798353, 49.50898]]], [[[-123.742747, 49.464486], [-123.74333, 49.464373], [-123.748712, 49.464053], [-123.746811, 49.462423], [-123.744351, 49.460088], [-123.742656, 49.457892], [-123.741779, 49.456323], [-123.741762, 49.454655], [-123.740902, 49.45241], [-123.73752, 49.44926], [-123.735749, 49.447507], [-123.734307, 49.445502], [-123.731315, 49.44034], [-123.728794, 49.437939], [-123.726232, 49.436363], [-123.723304, 49.438849], [-123.723298, 49.439193], [-123.723451, 49.439273], [-123.723096, 49.439684], [-123.721134, 49.439747], [-123.710025, 49.439676], [-123.709971, 49.438694], [-123.709869, 49.4386], [-123.709911, 49.437702], [-123.71044, 49.437078], [-123.710626, 49.436528], [-123.709952, 49.434865], [-123.70527, 49.434835], [-123.698819, 49.434308], [-123.688736, 49.434066], [-123.686219, 49.433423], [-123.683123, 49.432031], [-123.68048, 49.434128], [-123.67949, 49.438578], [-123.680743, 49.44066], [-123.681326, 49.452753], [-123.675563, 49.452674], [-123.675547, 49.457846], [-123.68806, 49.457507], [-123.688279, 49.460183], [-123.69935, 49.459994], [-123.699715, 49.46807], [-123.708681, 49.467931], [-123.708807, 49.471279], [-123.715818, 49.471207], [-123.719691, 49.471094], [-123.719635, 49.46794], [-123.731036, 49.467471], [-123.732733, 49.467353], [-123.732732, 49.467952], [-123.734005, 49.468555], [-123.734537, 49.468418], [-123.73467, 49.467251], [-123.736031, 49.467192], [-123.736066, 49.464492], [-123.742747, 49.464486]]], [[[-123.747617, 49.476243], [-123.74835, 49.476526], [-123.750541, 49.476541], [-123.751023, 49.475256], [-123.750421, 49.475251], [-123.750431, 49.474339], [-123.749169, 49.474353], [-123.748385, 49.474217], [-123.747617, 49.476243]]], [[[-123.749768, 49.543819], [-123.749826, 49.546311], [-123.753203, 49.546112], [-123.754064, 49.550208], [-123.763093, 49.550114], [-123.76814, 49.550224], [-123.768535, 49.548256], [-123.769556, 49.546304], [-123.76921, 49.544758], [-123.768205, 49.543447], [-123.769976, 49.54123], [-123.771013, 49.532439], [-123.77197, 49.528841], [-123.775333, 49.526059], [-123.780139, 49.52412], [-123.781982, 49.522274], [-123.782553, 49.520085], [-123.780521, 49.517156], [-123.771223, 49.510793], [-123.767765, 49.509299], [-123.763418, 49.509083], [-123.763025, 49.510126], [-123.761116, 49.51084], [-123.758964, 49.512618], [-123.760403, 49.51296], [-123.761026, 49.516703], [-123.75695, 49.51658], [-123.754259, 49.516315], [-123.754062, 49.513196], [-123.754846, 49.511545], [-123.756132, 49.5113], [-123.75883, 49.511381], [-123.758751, 49.509784], [-123.760053, 49.509157], [-123.76018, 49.507114], [-123.76017, 49.505324], [-123.759048, 49.503297], [-123.758451, 49.502835], [-123.757703, 49.502493], [-123.755336, 49.501144], [-123.751894, 49.50383], [-123.748854, 49.503816], [-123.748659, 49.503435], [-123.748967, 49.502825], [-123.752119, 49.497921], [-123.754889, 49.4929], [-123.754863, 49.491158], [-123.757811, 49.487289], [-123.752741, 49.486168], [-123.750619, 49.486221], [-123.735488, 49.486297], [-123.735472, 49.487399], [-123.735887, 49.487428], [-123.736832, 49.48763], [-123.735553, 49.490377], [-123.736453, 49.49699], [-123.737382, 49.497344], [-123.738191, 49.500758], [-123.738072, 49.503416], [-123.742454, 49.503547], [-123.742183, 49.507575], [-123.742007, 49.509109], [-123.742311, 49.521286], [-123.749019, 49.521488], [-123.752206, 49.527713], [-123.754336, 49.533835], [-123.75324, 49.542158], [-123.751699, 49.542338], [-123.749768, 49.543819]]]]}, "properties": {"name": "Sechelt", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sechelt", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929011", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.136707, 50.352621], [-124.150924, 50.339416], [-124.159537, 50.333386], [-124.155079, 50.326278], [-124.159172, 50.321678], [-124.157062, 50.318917], [-124.154849, 50.304731], [-124.154821, 50.297717], [-124.158175, 50.29227], [-124.163488, 50.287419], [-124.165789, 50.284751], [-124.17049, 50.282521], [-124.167868, 50.280498], [-124.169011, 50.270016], [-124.149862, 50.262242], [-124.144231, 50.255748], [-124.150348, 50.249502], [-124.159937, 50.241277], [-124.165414, 50.235627], [-124.167953, 50.228252], [-124.175161, 50.222376], [-124.172628, 50.219108], [-124.163848, 50.21854], [-124.154256, 50.219098], [-124.133643, 50.211762], [-124.119196, 50.209709], [-124.105899, 50.209647], [-124.101923, 50.21031], [-124.087481, 50.21034], [-124.077498, 50.209629], [-124.070516, 50.201547], [-124.073257, 50.1965], [-124.092144, 50.193705], [-124.094293, 50.187801], [-124.096798, 50.180457], [-124.096944, 50.174982], [-124.090619, 50.17382], [-124.083372, 50.168093], [-124.080864, 50.162524], [-124.069382, 50.150551], [-124.075519, 50.144673], [-124.084827, 50.139141], [-124.094714, 50.138941], [-124.10731, 50.142208], [-124.117199, 50.137018], [-124.136899, 50.135529], [-124.136751, 50.118403], [-124.146217, 50.11539], [-124.153648, 50.094908], [-124.146992, 50.092856], [-124.137777, 50.079529], [-124.150785, 50.061024], [-124.147374, 50.058736], [-124.13729, 50.054035], [-124.131786, 50.048987], [-124.110095, 50.040961], [-124.113386, 50.033138], [-124.113657, 50.024655], [-124.114774, 50.02202], [-124.113303, 50.017514], [-124.105052, 50.014738], [-124.096639, 50.01644], [-124.093296, 50.012418], [-124.087109, 50.009065], [-124.079349, 50.000237], [-124.067563, 50.000617], [-124.069244, 49.984121], [-124.069403, 49.964668], [-124.060244, 49.962982], [-124.062944, 49.933246], [-124.039607, 49.928915], [-124.034177, 49.927967], [-124.040903, 49.89301], [-124.044869, 49.875408], [-124.045719, 49.867706], [-124.03351, 49.852063], [-124.02517, 49.839999], [-124.0255, 49.825245], [-124.029807, 49.813657], [-124.034993, 49.805472], [-124.049784, 49.799281], [-124.090826, 49.784404], [-124.119753, 49.774902], [-124.137078, 49.769427], [-124.167622, 49.763996], [-124.186461, 49.763135], [-124.206962, 49.760427], [-124.22054, 49.757261], [-124.237088, 49.748455], [-124.257905, 49.73091], [-124.291924, 49.701535], [-124.25405, 49.659738], [-124.233358, 49.650124], [-124.197933, 49.632494], [-124.175707, 49.618846], [-124.157943, 49.608739], [-124.137946, 49.59538], [-124.138007, 49.595326], [-124.130849, 49.590879], [-124.102682, 49.567453], [-124.0922, 49.55615], [-124.086625, 49.548185], [-124.085647, 49.546323], [-124.052152, 49.549758], [-123.993992, 49.551272], [-123.991639, 49.551473], [-123.990267, 49.5515], [-123.990263, 49.551558], [-123.936953, 49.553651], [-123.917927, 49.579643], [-123.918349, 49.586815], [-123.913003, 49.586822], [-123.913465, 49.594705], [-123.914062, 49.595036], [-123.918666, 49.596869], [-123.916574, 49.603075], [-123.915605, 49.605613], [-123.913555, 49.60746], [-123.913507, 49.6078], [-123.909456, 49.612526], [-123.906127, 49.612902], [-123.904367, 49.613015], [-123.903738, 49.612924], [-123.901881, 49.613052], [-123.898913, 49.613042], [-123.900705, 49.621021], [-123.899477, 49.630727], [-123.893417, 49.634937], [-123.890506, 49.643249], [-123.895167, 49.651281], [-123.908661, 49.655686], [-123.90677, 49.658444], [-123.907451, 49.662597], [-123.910008, 49.664878], [-123.915057, 49.667202], [-123.919707, 49.668338], [-123.927268, 49.669769], [-123.928504, 49.671458], [-123.928331, 49.673652], [-123.930347, 49.678765], [-123.928908, 49.683625], [-123.93477, 49.691692], [-123.935572, 49.700118], [-123.939439, 49.706866], [-123.939363, 49.719265], [-123.924803, 49.728217], [-123.913517, 49.724794], [-123.904169, 49.727683], [-123.904219, 49.733962], [-123.884568, 49.734268], [-123.884588, 49.734646], [-123.884858, 49.734772], [-123.885408, 49.742639], [-123.878906, 49.742029], [-123.873885, 49.741622], [-123.857247, 49.745722], [-123.835822, 49.747303], [-123.818477, 49.753167], [-123.805631, 49.759664], [-123.797567, 49.769915], [-123.797242, 49.787612], [-123.796932, 49.787805], [-123.797107, 49.788253], [-123.797229, 49.788294], [-123.797049, 49.798119], [-123.771731, 49.825543], [-123.76688, 49.840731], [-123.77327, 49.853687], [-123.772769, 49.854128], [-123.775683, 49.856373], [-123.775152, 49.861264], [-123.770265, 49.868371], [-123.758962, 49.870365], [-123.746818, 49.886087], [-123.741868, 49.885155], [-123.739153, 49.891154], [-123.733487, 49.895511], [-123.723004, 49.894187], [-123.715192, 49.900309], [-123.709559, 49.905322], [-123.702388, 49.904838], [-123.688671, 49.907674], [-123.682488, 49.91204], [-123.675687, 49.921826], [-123.660217, 49.929971], [-123.634724, 49.926887], [-123.620171, 49.930669], [-123.615954, 49.934647], [-123.613545, 49.936372], [-123.611366, 49.93814], [-123.610475, 49.93983], [-123.608945, 49.940994], [-123.603624, 49.94362], [-123.602867, 49.945012], [-123.60333, 49.946474], [-123.607096, 49.949776], [-123.608185, 49.951519], [-123.607768, 49.953541], [-123.603284, 49.954871], [-123.600737, 49.955519], [-123.597635, 49.957112], [-123.596253, 49.958223], [-123.595794, 49.95951], [-123.594277, 49.96092], [-123.586261, 49.971118], [-123.590814, 49.972145], [-123.597598, 49.974888], [-123.60063, 49.975949], [-123.602275, 49.976746], [-123.602793, 49.977815], [-123.602699, 49.978848], [-123.602009, 49.980091], [-123.602149, 49.982543], [-123.601895, 49.984759], [-123.601245, 49.985363], [-123.601287, 49.986098], [-123.602456, 49.986563], [-123.603817, 49.98771], [-123.604104, 49.988735], [-123.604853, 49.989847], [-123.605453, 49.991012], [-123.605129, 49.992001], [-123.604357, 49.993148], [-123.604007, 49.995022], [-123.602965, 49.996765], [-123.601312, 49.998472], [-123.598572, 49.999811], [-123.600968, 50.001721], [-123.602111, 50.00307], [-123.602494, 50.004436], [-123.602389, 50.0066], [-123.60284, 50.007817], [-123.603101, 50.009726], [-123.603975, 50.011671], [-123.60486, 50.012485], [-123.609528, 50.011349], [-123.612347, 50.009861], [-123.616035, 50.008943], [-123.620232, 50.004724], [-123.6229, 50.003289], [-123.630276, 50.000077], [-123.632834, 49.99943], [-123.634032, 50.000384], [-123.634146, 50.002346], [-123.633328, 50.006637], [-123.631775, 50.010061], [-123.63068, 50.012198], [-123.63154, 50.013897], [-123.633489, 50.015964], [-123.633713, 50.018513], [-123.635036, 50.020299], [-123.641184, 50.026394], [-123.643216, 50.028557], [-123.643779, 50.030361], [-123.641599, 50.033506], [-123.636825, 50.036563], [-123.630432, 50.037939], [-123.631545, 50.042678], [-123.635771, 50.045822], [-123.63753, 50.047206], [-123.638377, 50.04866], [-123.637971, 50.049553], [-123.635582, 50.050394], [-123.631658, 50.051026], [-123.627951, 50.051455], [-123.615174, 50.055826], [-123.616027, 50.060031], [-123.6175, 50.061765], [-123.619476, 50.062948], [-123.622733, 50.063807], [-123.623608, 50.065752], [-123.625054, 50.066995], [-123.625833, 50.068598], [-123.626912, 50.070096], [-123.629011, 50.070736], [-123.63145, 50.070631], [-123.634095, 50.071455], [-123.636713, 50.073163], [-123.638024, 50.074704], [-123.639267, 50.076395], [-123.640072, 50.077113], [-123.641886, 50.078103], [-123.643141, 50.078663], [-123.644472, 50.080986], [-123.645764, 50.081746], [-123.649062, 50.084796], [-123.648851, 50.085141], [-123.646283, 50.085321], [-123.642944, 50.086615], [-123.637934, 50.090597], [-123.633504, 50.093847], [-123.626448, 50.096622], [-123.618543, 50.098666], [-123.61297, 50.097943], [-123.608201, 50.096353], [-123.60172, 50.097627], [-123.597927, 50.098906], [-123.597657, 50.099976], [-123.599939, 50.10167], [-123.603681, 50.105182], [-123.603976, 50.108006], [-123.603059, 50.1099], [-123.599158, 50.111649], [-123.595371, 50.115418], [-123.591571, 50.118377], [-123.590309, 50.121142], [-123.58989, 50.123166], [-123.59022, 50.124927], [-123.592895, 50.127618], [-123.596034, 50.129021], [-123.597263, 50.130467], [-123.596053, 50.132017], [-123.595103, 50.134102], [-123.595651, 50.135662], [-123.596378, 50.139035], [-123.595809, 50.141111], [-123.592856, 50.142898], [-123.589576, 50.144299], [-123.58684, 50.145884], [-123.585375, 50.151026], [-123.583428, 50.151709], [-123.582108, 50.152672], [-123.581101, 50.153776], [-123.581458, 50.156028], [-123.583496, 50.160944], [-123.583608, 50.162907], [-123.583298, 50.165518], [-123.582702, 50.168479], [-123.581331, 50.173964], [-123.588202, 50.176316], [-123.592369, 50.176861], [-123.60043, 50.177172], [-123.60431, 50.176691], [-123.608056, 50.175134], [-123.609546, 50.174363], [-123.611175, 50.174007], [-123.61288, 50.173926], [-123.614669, 50.174198], [-123.617566, 50.175312], [-123.620435, 50.175934], [-123.626693, 50.175498], [-123.630054, 50.175323], [-123.633143, 50.175823], [-123.635058, 50.175641], [-123.636694, 50.174877], [-123.638321, 50.173808], [-123.640275, 50.173125], [-123.641955, 50.173037], [-123.642572, 50.173447], [-123.642791, 50.174246], [-123.642577, 50.175824], [-123.64303, 50.177042], [-123.64422, 50.177751], [-123.64386, 50.180757], [-123.644603, 50.183], [-123.646904, 50.185699], [-123.647822, 50.187004], [-123.647333, 50.187802], [-123.646655, 50.189292], [-123.646745, 50.19214], [-123.6464, 50.195391], [-123.646036, 50.197021], [-123.644484, 50.197941], [-123.642168, 50.198879], [-123.63932, 50.199879], [-123.634087, 50.20059], [-123.632535, 50.20151], [-123.632595, 50.203868], [-123.634403, 50.205988], [-123.636347, 50.207811], [-123.637884, 50.210528], [-123.639884, 50.212533], [-123.660935, 50.209394], [-123.686663, 50.20253], [-123.698686, 50.190605], [-123.712776, 50.191122], [-123.726753, 50.195514], [-123.726511, 50.203262], [-123.71603, 50.208025], [-123.703568, 50.219501], [-123.698409, 50.229516], [-123.705762, 50.235148], [-123.71466, 50.232561], [-123.725541, 50.235308], [-123.730805, 50.239483], [-123.739406, 50.237548], [-123.754541, 50.244276], [-123.767961, 50.262018], [-123.7879, 50.270344], [-123.811028, 50.281384], [-123.832934, 50.282978], [-123.848078, 50.300669], [-123.870356, 50.302676], [-123.88391, 50.321481], [-123.878334, 50.323987], [-123.878056, 50.330664], [-123.897951, 50.342848], [-123.909963, 50.359414], [-123.920832, 50.355204], [-123.925698, 50.351823], [-123.931846, 50.352605], [-123.935699, 50.351058], [-123.942011, 50.347349], [-123.944929, 50.347057], [-123.94827, 50.344582], [-123.952244, 50.343177], [-123.954847, 50.341517], [-123.962499, 50.339364], [-123.965804, 50.339856], [-123.969414, 50.343378], [-123.97323, 50.344796], [-123.975911, 50.347909], [-123.979019, 50.348839], [-123.988094, 50.345995], [-123.995468, 50.346523], [-123.999977, 50.346404], [-124.01502, 50.360832], [-124.029791, 50.350236], [-124.041168, 50.346385], [-124.049441, 50.350284], [-124.055426, 50.357212], [-124.063967, 50.363418], [-124.075802, 50.366423], [-124.102918, 50.36141], [-124.114627, 50.350957], [-124.136707, 50.352621]], [[-123.988557, 50.208131], [-123.991144, 50.209263], [-123.992148, 50.210324], [-123.992745, 50.211444], [-123.993004, 50.211721], [-123.994765, 50.211917], [-123.994088, 50.214464], [-123.996673, 50.214748], [-123.995933, 50.217442], [-123.970787, 50.215699], [-123.969789, 50.208332], [-123.970039, 50.208569], [-123.969998, 50.208669], [-123.970212, 50.208837], [-123.970171, 50.209186], [-123.973629, 50.210553], [-123.976596, 50.211524], [-123.979766, 50.212741], [-123.982915, 50.213037], [-123.983359, 50.212963], [-123.984391, 50.212018], [-123.986555, 50.211011], [-123.987441, 50.208422], [-123.988557, 50.208131]], [[-123.855193, 50.162442], [-123.855815, 50.162752], [-123.856079, 50.16267], [-123.856051, 50.163138], [-123.854392, 50.163112], [-123.854305, 50.162916], [-123.854399, 50.162727], [-123.854622, 50.162571], [-123.855193, 50.162442]], [[-123.85181, 50.162701], [-123.852037, 50.16295], [-123.852053, 50.163067], [-123.851805, 50.163241], [-123.851623, 50.163278], [-123.851201, 50.163172], [-123.851334, 50.162731], [-123.851612, 50.16263], [-123.85181, 50.162701]], [[-123.811171, 50.140839], [-123.811468, 50.140901], [-123.811391, 50.141324], [-123.812162, 50.141516], [-123.812333, 50.141658], [-123.812736, 50.142357], [-123.813543, 50.142783], [-123.810846, 50.142874], [-123.810947, 50.140698], [-123.811171, 50.140839]], [[-123.799492, 50.1277], [-123.799829, 50.127805], [-123.800322, 50.128071], [-123.800891, 50.128571], [-123.800995, 50.128884], [-123.800753, 50.129498], [-123.798238, 50.129475], [-123.798202, 50.127768], [-123.799492, 50.1277]], [[-123.74594, 50.093815], [-123.746274, 50.09456], [-123.746513, 50.095574], [-123.747258, 50.09682], [-123.748266, 50.09773], [-123.749796, 50.098482], [-123.738661, 50.098764], [-123.738644, 50.101089], [-123.73316, 50.101059], [-123.733169, 50.099347], [-123.728672, 50.099225], [-123.728426, 50.100343], [-123.715056, 50.100274], [-123.715476, 50.096538], [-123.720387, 50.09636], [-123.720221, 50.094154], [-123.720994, 50.094097], [-123.730096, 50.09399], [-123.730365, 50.091332], [-123.737217, 50.091243], [-123.73809, 50.083501], [-123.750782, 50.083075], [-123.751132, 50.078166], [-123.756312, 50.078147], [-123.756531, 50.072771], [-123.764004, 50.072632], [-123.764042, 50.07093], [-123.766188, 50.0709], [-123.766286, 50.070995], [-123.766843, 50.071239], [-123.768124, 50.071422], [-123.769414, 50.071883], [-123.769842, 50.072261], [-123.770035, 50.072705], [-123.770429, 50.072749], [-123.772187, 50.072355], [-123.772807, 50.072293], [-123.773592, 50.072315], [-123.775166, 50.072625], [-123.776161, 50.073208], [-123.775922, 50.073498], [-123.775984, 50.073813], [-123.776127, 50.07402], [-123.775975, 50.074182], [-123.775766, 50.074229], [-123.775473, 50.074168], [-123.774998, 50.074279], [-123.774369, 50.07421], [-123.774023, 50.074384], [-123.773502, 50.074135], [-123.772975, 50.074473], [-123.772711, 50.074564], [-123.771749, 50.074723], [-123.771431, 50.074833], [-123.771126, 50.075051], [-123.771145, 50.075347], [-123.770391, 50.075407], [-123.769807, 50.075591], [-123.769476, 50.07589], [-123.769337, 50.075935], [-123.768097, 50.076132], [-123.76796, 50.076268], [-123.767975, 50.076402], [-123.767851, 50.076448], [-123.767645, 50.076666], [-123.767158, 50.076912], [-123.766311, 50.077169], [-123.765829, 50.077604], [-123.764954, 50.077979], [-123.764288, 50.078369], [-123.764001, 50.078785], [-123.763452, 50.079356], [-123.762416, 50.080127], [-123.761841, 50.080869], [-123.761788, 50.081067], [-123.761705, 50.081085], [-123.761619, 50.081022], [-123.7609, 50.081441], [-123.758938, 50.082884], [-123.755042, 50.084898], [-123.75418, 50.085244], [-123.753273, 50.085403], [-123.752854, 50.085325], [-123.751714, 50.084936], [-123.751269, 50.084993], [-123.750059, 50.085388], [-123.749333, 50.085429], [-123.748579, 50.08556], [-123.747315, 50.08599], [-123.7467, 50.086003], [-123.746045, 50.086205], [-123.744526, 50.086432], [-123.742941, 50.087017], [-123.742762, 50.087198], [-123.742602, 50.087658], [-123.742786, 50.08869], [-123.744507, 50.091441], [-123.744539, 50.091836], [-123.744083, 50.092091], [-123.742369, 50.092551], [-123.74212, 50.092653], [-123.742092, 50.092734], [-123.742219, 50.092795], [-123.742527, 50.092821], [-123.743714, 50.092714], [-123.744302, 50.09272], [-123.744723, 50.092815], [-123.745555, 50.093332], [-123.74594, 50.093815]], [[-124.01282, 49.995474], [-124.013043, 49.995331], [-124.013342, 49.995537], [-124.013907, 49.995108], [-124.014538, 49.995105], [-124.015009, 49.995456], [-124.015689, 49.998101], [-124.010805, 49.998284], [-124.010808, 49.997344], [-124.01073, 49.996904], [-124.01106, 49.996686], [-124.011423, 49.996071], [-124.011642, 49.995926], [-124.012078, 49.995957], [-124.012177, 49.996083], [-124.012198, 49.996406], [-124.012382, 49.996567], [-124.012632, 49.996547], [-124.012874, 49.996023], [-124.012754, 49.995664], [-124.01282, 49.995474]], [[-124.00917, 49.997782], [-124.009548, 49.997842], [-124.009804, 49.997974], [-124.010189, 49.998306], [-124.008425, 49.99832], [-124.008411, 49.998094], [-124.008935, 49.997837], [-124.00917, 49.997782]], [[-123.870325, 49.922041], [-123.871012, 49.922351], [-123.87127, 49.922709], [-123.871281, 49.923249], [-123.871507, 49.923543], [-123.871497, 49.923706], [-123.872169, 49.923852], [-123.873312, 49.923952], [-123.87462, 49.924582], [-123.874942, 49.924641], [-123.875696, 49.92465], [-123.875704, 49.924774], [-123.872505, 49.924787], [-123.872508, 49.924046], [-123.871263, 49.924051], [-123.871194, 49.923454], [-123.870457, 49.923677], [-123.867423, 49.923632], [-123.868392, 49.923099], [-123.869131, 49.922274], [-123.869363, 49.922102], [-123.869516, 49.922019], [-123.870325, 49.922041]], [[-123.923904, 49.760023], [-123.924402, 49.760427], [-123.924114, 49.760593], [-123.924058, 49.760795], [-123.924282, 49.761069], [-123.92446, 49.761104], [-123.924454, 49.761196], [-123.923167, 49.76123], [-123.923207, 49.760507], [-123.923342, 49.760448], [-123.923317, 49.760174], [-123.923462, 49.759983], [-123.923904, 49.760023]], [[-124.069861, 49.65155], [-124.069263, 49.654286], [-124.06764, 49.654397], [-124.064027, 49.654364], [-124.064072, 49.653171], [-124.064383, 49.650959], [-124.069059, 49.650768], [-124.069847, 49.650812], [-124.068778, 49.651361], [-124.068291, 49.65186], [-124.068596, 49.651894], [-124.068873, 49.651828], [-124.069482, 49.651813], [-124.069861, 49.65155]], [[-124.052915, 49.629505], [-124.053538, 49.6295], [-124.053682, 49.629786], [-124.053674, 49.630028], [-124.0535, 49.630273], [-124.053295, 49.630428], [-124.052992, 49.630485], [-124.052589, 49.630417], [-124.052392, 49.630256], [-124.052315, 49.629951], [-124.052421, 49.629708], [-124.052613, 49.629571], [-124.052915, 49.629505]], [[-124.050703, 49.630317], [-124.050387, 49.63041], [-124.050064, 49.630206], [-124.050059, 49.629944], [-124.05033, 49.629682], [-124.050815, 49.629713], [-124.050942, 49.629775], [-124.050959, 49.629954], [-124.050703, 49.630317]], [[-124.051143, 49.629512], [-124.050906, 49.62946], [-124.0509, 49.629182], [-124.051037, 49.629108], [-124.051424, 49.629087], [-124.051483, 49.62923], [-124.051143, 49.629512]], [[-124.050462, 49.629401], [-124.050367, 49.629493], [-124.049951, 49.629433], [-124.049976, 49.62928], [-124.05018, 49.629107], [-124.050345, 49.629115], [-124.050402, 49.629168], [-124.050462, 49.629401]], [[-124.025979, 49.631968], [-124.026285, 49.632104], [-124.026148, 49.633066], [-124.023391, 49.63281], [-124.02368, 49.631595], [-124.024131, 49.631689], [-124.024328, 49.631848], [-124.024708, 49.631857], [-124.025005, 49.631984], [-124.025412, 49.632063], [-124.025787, 49.632042], [-124.025979, 49.631968]], [[-123.985716, 49.643823], [-123.982919, 49.643865], [-123.982944, 49.64193], [-123.985736, 49.641954], [-123.985716, 49.643823]], [[-124.020497, 49.630744], [-124.02051, 49.630285], [-124.020906, 49.630421], [-124.02148, 49.630749], [-124.020497, 49.630744]], [[-124.028372, 49.6205], [-124.028244, 49.620479], [-124.028157, 49.62038], [-124.028235, 49.62022], [-124.028386, 49.62014], [-124.028098, 49.620011], [-124.027849, 49.619997], [-124.027848, 49.619449], [-124.028706, 49.619432], [-124.028831, 49.619522], [-124.02882, 49.619647], [-124.02847, 49.620172], [-124.028648, 49.620346], [-124.028532, 49.620357], [-124.028372, 49.6205]], [[-124.033737, 49.617736], [-124.033776, 49.617669], [-124.033272, 49.617314], [-124.033056, 49.616974], [-124.032734, 49.616806], [-124.032732, 49.616707], [-124.032895, 49.616552], [-124.033242, 49.616549], [-124.033605, 49.616744], [-124.034117, 49.616749], [-124.034192, 49.616999], [-124.034484, 49.616921], [-124.034452, 49.61774], [-124.033737, 49.617736]], [[-124.033211, 49.616428], [-124.033089, 49.616095], [-124.032747, 49.615908], [-124.032737, 49.615468], [-124.033164, 49.615488], [-124.033165, 49.615588], [-124.033479, 49.61599], [-124.033403, 49.616387], [-124.033211, 49.616428]], [[-124.024539, 49.604927], [-124.024494, 49.606059], [-124.024946, 49.606407], [-124.018756, 49.606406], [-124.018754, 49.605006], [-124.024539, 49.604927]]]]}, "properties": {"name": "Sunshine Coast A", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sunshine Coast A", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929018", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.634724, 49.926887], [-123.660217, 49.929971], [-123.675687, 49.921826], [-123.682488, 49.91204], [-123.688671, 49.907674], [-123.702388, 49.904838], [-123.709559, 49.905322], [-123.715192, 49.900309], [-123.723004, 49.894187], [-123.733487, 49.895511], [-123.739153, 49.891154], [-123.741868, 49.885155], [-123.746818, 49.886087], [-123.758962, 49.870365], [-123.770265, 49.868371], [-123.775152, 49.861264], [-123.775683, 49.856373], [-123.772769, 49.854128], [-123.77327, 49.853687], [-123.76688, 49.840731], [-123.771731, 49.825543], [-123.797049, 49.798119], [-123.797229, 49.788294], [-123.797107, 49.788253], [-123.796932, 49.787805], [-123.797242, 49.787612], [-123.797567, 49.769915], [-123.805631, 49.759664], [-123.818477, 49.753167], [-123.835822, 49.747303], [-123.857247, 49.745722], [-123.873885, 49.741622], [-123.878906, 49.742029], [-123.885408, 49.742639], [-123.884858, 49.734772], [-123.884588, 49.734646], [-123.884568, 49.734268], [-123.893273, 49.734133], [-123.893143, 49.733973], [-123.893165, 49.73372], [-123.894048, 49.733453], [-123.894324, 49.733306], [-123.894502, 49.733144], [-123.894603, 49.732692], [-123.894553, 49.732118], [-123.893863, 49.731682], [-123.891783, 49.730987], [-123.890748, 49.73051], [-123.889414, 49.730448], [-123.889121, 49.730378], [-123.888672, 49.730076], [-123.888599, 49.729869], [-123.888659, 49.729392], [-123.888895, 49.729283], [-123.889752, 49.729096], [-123.889888, 49.728978], [-123.889936, 49.7286], [-123.889723, 49.728296], [-123.888839, 49.727836], [-123.887841, 49.727124], [-123.886938, 49.726258], [-123.886863, 49.72597], [-123.886883, 49.725574], [-123.887176, 49.72487], [-123.904066, 49.724969], [-123.904169, 49.727683], [-123.913517, 49.724794], [-123.924803, 49.728217], [-123.939363, 49.719265], [-123.939439, 49.706866], [-123.935572, 49.700118], [-123.93477, 49.691692], [-123.928908, 49.683625], [-123.930347, 49.678765], [-123.928331, 49.673652], [-123.928504, 49.671458], [-123.927268, 49.669769], [-123.919707, 49.668338], [-123.915057, 49.667202], [-123.910008, 49.664878], [-123.907451, 49.662597], [-123.90677, 49.658444], [-123.908661, 49.655686], [-123.895167, 49.651281], [-123.890506, 49.643249], [-123.893417, 49.634937], [-123.899477, 49.630727], [-123.900705, 49.621021], [-123.898913, 49.613042], [-123.901881, 49.613052], [-123.903738, 49.612924], [-123.904367, 49.613015], [-123.906127, 49.612902], [-123.909456, 49.612526], [-123.913507, 49.6078], [-123.913555, 49.60746], [-123.915605, 49.605613], [-123.916574, 49.603075], [-123.918666, 49.596869], [-123.914062, 49.595036], [-123.913465, 49.594705], [-123.913003, 49.586822], [-123.918349, 49.586815], [-123.917927, 49.579643], [-123.936953, 49.553651], [-123.990263, 49.551558], [-123.990267, 49.5515], [-123.991639, 49.551473], [-123.993992, 49.551272], [-124.052152, 49.549758], [-124.085647, 49.546323], [-124.083045, 49.541459], [-124.079833, 49.532325], [-124.076841, 49.51972], [-124.074182, 49.505305], [-124.072716, 49.499436], [-124.068703, 49.492885], [-124.060903, 49.480957], [-124.050791, 49.457193], [-124.045561, 49.440705], [-124.042419, 49.42743], [-124.03984, 49.414779], [-124.038495, 49.402566], [-124.03825, 49.393653], [-124.038705, 49.382396], [-124.040044, 49.365001], [-124.024158, 49.363377], [-123.972972, 49.357034], [-123.917335, 49.349832], [-123.869933, 49.342054], [-123.835284, 49.335069], [-123.783955, 49.323566], [-123.767004, 49.319393], [-123.768381, 49.357081], [-123.770421, 49.433413], [-123.771719, 49.464224], [-123.781557, 49.463407], [-123.791583, 49.463293], [-123.801588, 49.463733], [-123.80756, 49.463901], [-123.810879, 49.464091], [-123.816096, 49.46463], [-123.831928, 49.46779], [-123.848469, 49.472426], [-123.849086, 49.472663], [-123.848364, 49.476179], [-123.848056, 49.478957], [-123.847944, 49.481561], [-123.827256, 49.481758], [-123.827338, 49.496373], [-123.816797, 49.496387], [-123.816806, 49.498902], [-123.80819, 49.499187], [-123.798306, 49.499289], [-123.798557, 49.503269], [-123.79823, 49.511304], [-123.796747, 49.511198], [-123.796564, 49.51104], [-123.796588, 49.510796], [-123.797052, 49.510487], [-123.797062, 49.510218], [-123.79648, 49.510158], [-123.796186, 49.509954], [-123.796072, 49.509604], [-123.795858, 49.509326], [-123.793286, 49.509761], [-123.79, 49.50916], [-123.78749, 49.508556], [-123.78637, 49.508501], [-123.784648, 49.508791], [-123.783098, 49.508631], [-123.781355, 49.507572], [-123.779952, 49.506232], [-123.779002, 49.505564], [-123.775094, 49.50389], [-123.773965, 49.503223], [-123.773092, 49.502159], [-123.771856, 49.499972], [-123.770554, 49.498857], [-123.768035, 49.497632], [-123.766904, 49.496848], [-123.763924, 49.493432], [-123.76382, 49.492083], [-123.764637, 49.490423], [-123.765499, 49.489931], [-123.766767, 49.489842], [-123.767097, 49.489642], [-123.767279, 49.489091], [-123.767552, 49.488848], [-123.767589, 49.488541], [-123.767473, 49.488197], [-123.763089, 49.488186], [-123.762589, 49.486784], [-123.761539, 49.48685], [-123.759659, 49.486213], [-123.758836, 49.485675], [-123.758394, 49.485112], [-123.758391, 49.485013], [-123.756386, 49.484348], [-123.755988, 49.483563], [-123.75527, 49.483634], [-123.755132, 49.483556], [-123.753378, 49.483072], [-123.753728, 49.483262], [-123.754107, 49.483719], [-123.754101, 49.484069], [-123.753993, 49.484349], [-123.753423, 49.485063], [-123.752941, 49.485966], [-123.752693, 49.48617], [-123.757811, 49.487289], [-123.754863, 49.491158], [-123.754889, 49.4929], [-123.752119, 49.497921], [-123.748966, 49.502826], [-123.749764, 49.503004], [-123.751894, 49.50383], [-123.755336, 49.501144], [-123.757703, 49.502493], [-123.758451, 49.502835], [-123.759048, 49.503297], [-123.76017, 49.505324], [-123.76018, 49.507114], [-123.760053, 49.509157], [-123.758751, 49.509784], [-123.75883, 49.511381], [-123.756132, 49.5113], [-123.754846, 49.511545], [-123.755934, 49.511735], [-123.756983, 49.51171], [-123.757179, 49.511916], [-123.75741, 49.512508], [-123.757566, 49.512696], [-123.757719, 49.512811], [-123.758023, 49.512873], [-123.758273, 49.512996], [-123.758457, 49.513157], [-123.758542, 49.513337], [-123.758439, 49.513833], [-123.758816, 49.514036], [-123.75948, 49.514105], [-123.760101, 49.514092], [-123.760548, 49.513831], [-123.760403, 49.51296], [-123.758964, 49.512618], [-123.761116, 49.51084], [-123.763025, 49.510126], [-123.763418, 49.509083], [-123.767765, 49.509299], [-123.771223, 49.510793], [-123.780521, 49.517156], [-123.782553, 49.520085], [-123.781982, 49.522274], [-123.780139, 49.52412], [-123.775333, 49.526059], [-123.77197, 49.528841], [-123.771013, 49.532439], [-123.769976, 49.54123], [-123.768205, 49.543447], [-123.76921, 49.544758], [-123.769556, 49.546304], [-123.768535, 49.548256], [-123.76814, 49.550224], [-123.763093, 49.550114], [-123.754064, 49.550208], [-123.753203, 49.546112], [-123.749826, 49.546311], [-123.749768, 49.543819], [-123.751699, 49.542338], [-123.75324, 49.542158], [-123.754336, 49.533835], [-123.752206, 49.527713], [-123.749019, 49.521488], [-123.742311, 49.521286], [-123.742007, 49.509109], [-123.742183, 49.507575], [-123.742454, 49.503547], [-123.738072, 49.503416], [-123.738191, 49.500758], [-123.737382, 49.497344], [-123.736453, 49.49699], [-123.735553, 49.490377], [-123.736832, 49.48763], [-123.735887, 49.487428], [-123.735472, 49.487399], [-123.735478, 49.487188], [-123.724488, 49.491073], [-123.721576, 49.492454], [-123.707553, 49.500191], [-123.695796, 49.500135], [-123.682082, 49.500312], [-123.681064, 49.511887], [-123.678961, 49.522581], [-123.674839, 49.540211], [-123.669166, 49.546455], [-123.663639, 49.551861], [-123.662511, 49.556526], [-123.658191, 49.570259], [-123.655169, 49.574919], [-123.648965, 49.575861], [-123.644772, 49.577017], [-123.640461, 49.579591], [-123.639938, 49.580371], [-123.6401, 49.582052], [-123.641007, 49.5833], [-123.643131, 49.585387], [-123.644494, 49.586324], [-123.646108, 49.588422], [-123.646204, 49.590806], [-123.644105, 49.592825], [-123.639588, 49.595155], [-123.635918, 49.596547], [-123.627151, 49.599734], [-123.623403, 49.600644], [-123.621211, 49.601382], [-123.610339, 49.603621], [-123.60633, 49.604921], [-123.602576, 49.605981], [-123.593868, 49.607215], [-123.588806, 49.608507], [-123.579184, 49.610678], [-123.578344, 49.610967], [-123.575888, 49.611989], [-123.572632, 49.612843], [-123.568319, 49.614302], [-123.5669, 49.616029], [-123.567524, 49.618641], [-123.569873, 49.62098], [-123.572113, 49.622957], [-123.572887, 49.624036], [-123.5716, 49.625844], [-123.568537, 49.627475], [-123.56468, 49.630569], [-123.562766, 49.63116], [-123.554391, 49.631895], [-123.550248, 49.632003], [-123.546401, 49.632387], [-123.541625, 49.633374], [-123.538369, 49.634775], [-123.535136, 49.634181], [-123.531402, 49.632833], [-123.523379, 49.627139], [-123.519834, 49.62547], [-123.510122, 49.622655], [-123.503369, 49.620574], [-123.500437, 49.619935], [-123.495061, 49.618958], [-123.488334, 49.617491], [-123.480519, 49.615881], [-123.477835, 49.61567], [-123.472528, 49.615804], [-123.468383, 49.616264], [-123.462163, 49.617533], [-123.457752, 49.619031], [-123.455572, 49.620586], [-123.453322, 49.623319], [-123.449898, 49.63153], [-123.45034, 49.63594], [-123.451975, 49.640325], [-123.453555, 49.642027], [-123.45663, 49.644356], [-123.457701, 49.645738], [-123.457192, 49.647649], [-123.454373, 49.650477], [-123.450394, 49.6524], [-123.446221, 49.654286], [-123.443285, 49.655422], [-123.437017, 49.655863], [-123.4292, 49.655034], [-123.419485, 49.653391], [-123.401756, 49.650585], [-123.390914, 49.649623], [-123.382388, 49.6494], [-123.374708, 49.64951], [-123.373104, 49.649624], [-123.368616, 49.651138], [-123.363125, 49.653683], [-123.359732, 49.655443], [-123.356822, 49.657297], [-123.35132, 49.662753], [-123.35162, 49.665161], [-123.351609, 49.665671], [-123.351822, 49.665982], [-123.351918, 49.668712], [-123.352925, 49.669789], [-123.355195, 49.671106], [-123.361535, 49.673357], [-123.364016, 49.674351], [-123.361643, 49.677106], [-123.359325, 49.678785], [-123.354177, 49.681761], [-123.351207, 49.68412], [-123.346382, 49.690267], [-123.34642, 49.696175], [-123.338443, 49.705431], [-123.328561, 49.711774], [-123.3271, 49.71477], [-123.326094, 49.715046], [-123.325002, 49.715679], [-123.32438, 49.716157], [-123.32408, 49.716707], [-123.323919, 49.717543], [-123.323986, 49.717693], [-123.319821, 49.723709], [-123.3229, 49.727533], [-123.335524, 49.734867], [-123.33573, 49.747314], [-123.328998, 49.749965], [-123.303006, 49.750053], [-123.280615, 49.746672], [-123.276744, 49.74997], [-123.28384, 49.759956], [-123.276275, 49.76532], [-123.272508, 49.770917], [-123.282262, 49.7718], [-123.292196, 49.776514], [-123.300678, 49.778035], [-123.306459, 49.790041], [-123.305224, 49.79651], [-123.312638, 49.802883], [-123.32286, 49.815876], [-123.329399, 49.821192], [-123.333311, 49.827328], [-123.330711, 49.82999], [-123.331186, 49.837423], [-123.327064, 49.845485], [-123.328417, 49.851443], [-123.353906, 49.860675], [-123.35864, 49.86526], [-123.371135, 49.866058], [-123.39912, 49.881232], [-123.416619, 49.879108], [-123.422864, 49.894884], [-123.425855, 49.89538], [-123.426189, 49.8982], [-123.427952, 49.900928], [-123.447593, 49.902746], [-123.457143, 49.910443], [-123.473521, 49.912063], [-123.487947, 49.911353], [-123.500135, 49.903345], [-123.507247, 49.897416], [-123.518515, 49.890735], [-123.524894, 49.887746], [-123.527528, 49.885821], [-123.527588, 49.884053], [-123.526429, 49.882212], [-123.525381, 49.879584], [-123.527444, 49.87836], [-123.530155, 49.877907], [-123.533651, 49.877926], [-123.540506, 49.878263], [-123.544436, 49.877879], [-123.546661, 49.876848], [-123.548399, 49.875238], [-123.550306, 49.871071], [-123.550191, 49.86312], [-123.551269, 49.85475], [-123.549385, 49.850668], [-123.548499, 49.848233], [-123.547936, 49.846184], [-123.548403, 49.843523], [-123.549382, 49.84193], [-123.549279, 49.839969], [-123.549661, 49.838586], [-123.551016, 49.838359], [-123.553912, 49.838587], [-123.557808, 49.840461], [-123.560052, 49.842666], [-123.562243, 49.843891], [-123.565246, 49.846079], [-123.569524, 49.84657], [-123.574941, 49.845661], [-123.578136, 49.845784], [-123.579136, 49.847429], [-123.579649, 49.851242], [-123.580297, 49.854758], [-123.582733, 49.857645], [-123.586144, 49.85894], [-123.587444, 49.86048], [-123.587037, 49.861372], [-123.584222, 49.862612], [-123.581, 49.864744], [-123.577506, 49.867471], [-123.575771, 49.871825], [-123.573982, 49.8752], [-123.570325, 49.877734], [-123.569078, 49.87992], [-123.573436, 49.884627], [-123.567583, 49.888682], [-123.567797, 49.8926], [-123.568823, 49.897482], [-123.567656, 49.901137], [-123.564997, 49.905316], [-123.56028, 49.907972], [-123.553689, 49.912532], [-123.549348, 49.916552], [-123.549156, 49.918616], [-123.552436, 49.92021], [-123.558973, 49.92016], [-123.565647, 49.919812], [-123.570828, 49.919988], [-123.575465, 49.921354], [-123.580073, 49.924978], [-123.581348, 49.925341], [-123.582977, 49.924518], [-123.587077, 49.921577], [-123.588557, 49.920806], [-123.589696, 49.92078], [-123.591473, 49.921279], [-123.595988, 49.923187], [-123.598592, 49.923519], [-123.601156, 49.923116], [-123.602743, 49.922932], [-123.607829, 49.925513], [-123.611491, 49.927096], [-123.616334, 49.928014], [-123.619237, 49.928241], [-123.620648, 49.928993], [-123.620852, 49.92992], [-123.620171, 49.930669], [-123.634724, 49.926887]], [[-123.709941, 49.822956], [-123.709939, 49.825455], [-123.709021, 49.825455], [-123.709072, 49.824662], [-123.709279, 49.824103], [-123.709287, 49.823298], [-123.709378, 49.823108], [-123.709941, 49.822956]], [[-123.709942, 49.821838], [-123.709941, 49.82254], [-123.709335, 49.822911], [-123.709294, 49.822578], [-123.709037, 49.822319], [-123.708972, 49.821915], [-123.709166, 49.821915], [-123.709377, 49.821837], [-123.709942, 49.821838]], [[-123.725663, 49.80049], [-123.721558, 49.800508], [-123.721567, 49.794036], [-123.715595, 49.793762], [-123.715699, 49.786993], [-123.716346, 49.786516], [-123.716793, 49.786781], [-123.716932, 49.786825], [-123.717068, 49.786798], [-123.717496, 49.787171], [-123.718217, 49.787366], [-123.718836, 49.78783], [-123.719072, 49.787892], [-123.719323, 49.787909], [-123.720418, 49.787793], [-123.720919, 49.787818], [-123.721421, 49.78794], [-123.722117, 49.787927], [-123.722322, 49.787728], [-123.722386, 49.787412], [-123.722608, 49.787385], [-123.722943, 49.787499], [-123.723336, 49.787811], [-123.724836, 49.787802], [-123.726392, 49.787721], [-123.726592, 49.787646], [-123.727152, 49.794978], [-123.725711, 49.79501], [-123.725663, 49.80049]], [[-123.727871, 49.779846], [-123.7238, 49.779931], [-123.723454, 49.779788], [-123.723269, 49.779608], [-123.723126, 49.779268], [-123.723122, 49.779025], [-123.723414, 49.778025], [-123.723897, 49.776897], [-123.723885, 49.776213], [-123.724604, 49.774977], [-123.725327, 49.774046], [-123.727251, 49.772705], [-123.727812, 49.77916], [-123.727871, 49.779846]], [[-123.719268, 49.778572], [-123.719693, 49.7791], [-123.719909, 49.779594], [-123.719878, 49.780305], [-123.719597, 49.781053], [-123.719171, 49.781058], [-123.719092, 49.778476], [-123.719268, 49.778572]], [[-123.864626, 49.725527], [-123.864616, 49.723573], [-123.863255, 49.723576], [-123.863241, 49.720851], [-123.866367, 49.720845], [-123.866387, 49.721521], [-123.866295, 49.7218], [-123.866172, 49.721954], [-123.864935, 49.722529], [-123.864772, 49.722737], [-123.86476, 49.722864], [-123.865297, 49.723364], [-123.865841, 49.723512], [-123.866567, 49.723785], [-123.866736, 49.723901], [-123.867163, 49.72451], [-123.867553, 49.725469], [-123.864626, 49.725527]], [[-123.716494, 49.773184], [-123.71665, 49.773362], [-123.717295, 49.773791], [-123.717642, 49.774172], [-123.713531, 49.774287], [-123.711798, 49.759452], [-123.718013, 49.75943], [-123.717579, 49.760063], [-123.717423, 49.760883], [-123.717171, 49.761585], [-123.717205, 49.761973], [-123.717478, 49.762636], [-123.717513, 49.763103], [-123.717028, 49.764123], [-123.716883, 49.764646], [-123.717059, 49.768089], [-123.717021, 49.768467], [-123.716807, 49.768954], [-123.716819, 49.769737], [-123.716724, 49.770016], [-123.716176, 49.770478], [-123.716081, 49.770667], [-123.716111, 49.771666], [-123.716494, 49.773184]], [[-123.879557, 49.725531], [-123.878641, 49.72553], [-123.877917, 49.725463], [-123.876736, 49.725273], [-123.876053, 49.72509], [-123.874261, 49.724214], [-123.873936, 49.723911], [-123.873931, 49.72364], [-123.874124, 49.723557], [-123.874693, 49.723563], [-123.875364, 49.723854], [-123.876418, 49.723864], [-123.877142, 49.72393], [-123.877505, 49.724017], [-123.878021, 49.724275], [-123.878886, 49.724493], [-123.879307, 49.724732], [-123.879631, 49.725073], [-123.879982, 49.725268], [-123.879875, 49.725457], [-123.879557, 49.725531]]]]}, "properties": {"name": "Sunshine Coast B", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sunshine Coast B", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929022", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.573715, 49.602929], [-123.573716, 49.605431], [-123.574713, 49.607929], [-123.577197, 49.610277], [-123.578344, 49.610967], [-123.579184, 49.610678], [-123.588806, 49.608507], [-123.593868, 49.607215], [-123.602576, 49.605981], [-123.60633, 49.604921], [-123.610339, 49.603621], [-123.621211, 49.601382], [-123.623403, 49.600644], [-123.627151, 49.599734], [-123.635918, 49.596547], [-123.639588, 49.595155], [-123.644105, 49.592825], [-123.646204, 49.590806], [-123.646108, 49.588422], [-123.644494, 49.586324], [-123.643131, 49.585387], [-123.641007, 49.5833], [-123.6401, 49.582052], [-123.639938, 49.580371], [-123.640461, 49.579591], [-123.644772, 49.577017], [-123.648965, 49.575861], [-123.655169, 49.574919], [-123.658191, 49.570259], [-123.662511, 49.556526], [-123.663639, 49.551861], [-123.669166, 49.546455], [-123.674839, 49.540211], [-123.678961, 49.522581], [-123.681064, 49.511887], [-123.682082, 49.500312], [-123.695796, 49.500135], [-123.707553, 49.500191], [-123.721576, 49.492454], [-123.724488, 49.491073], [-123.735478, 49.487188], [-123.735542, 49.471638], [-123.73513, 49.467211], [-123.73467, 49.467251], [-123.734537, 49.468418], [-123.734005, 49.468555], [-123.732732, 49.467952], [-123.732733, 49.467353], [-123.731036, 49.467471], [-123.719635, 49.46794], [-123.719691, 49.471094], [-123.715818, 49.471207], [-123.708807, 49.471279], [-123.708681, 49.467931], [-123.699715, 49.46807], [-123.69935, 49.459994], [-123.688279, 49.460183], [-123.68806, 49.457507], [-123.675547, 49.457846], [-123.675563, 49.452674], [-123.681326, 49.452753], [-123.680743, 49.44066], [-123.67949, 49.438578], [-123.68048, 49.434128], [-123.683123, 49.432031], [-123.686219, 49.433423], [-123.688736, 49.434066], [-123.698819, 49.434308], [-123.70527, 49.434835], [-123.709952, 49.434865], [-123.710626, 49.436528], [-123.71044, 49.437078], [-123.709911, 49.437702], [-123.709869, 49.4386], [-123.709981, 49.438699], [-123.710561, 49.438669], [-123.711345, 49.438475], [-123.711649, 49.438528], [-123.712092, 49.438767], [-123.712382, 49.43873], [-123.712573, 49.438639], [-123.712652, 49.43835], [-123.712438, 49.437865], [-123.712434, 49.437532], [-123.712895, 49.436991], [-123.713188, 49.43635], [-123.713992, 49.436552], [-123.71456, 49.4368], [-123.71524, 49.437012], [-123.715779, 49.437098], [-123.717315, 49.437485], [-123.71867, 49.437656], [-123.721095, 49.438334], [-123.723205, 49.438446], [-123.723304, 49.438849], [-123.726232, 49.436363], [-123.728794, 49.437939], [-123.731315, 49.44034], [-123.734307, 49.445502], [-123.735749, 49.447507], [-123.73752, 49.44926], [-123.740902, 49.45241], [-123.741762, 49.454655], [-123.741779, 49.456323], [-123.742656, 49.457892], [-123.744351, 49.460088], [-123.746811, 49.462423], [-123.748712, 49.464053], [-123.74333, 49.464373], [-123.74349, 49.464519], [-123.743437, 49.464719], [-123.742824, 49.465136], [-123.742287, 49.466102], [-123.742242, 49.466849], [-123.742956, 49.46938], [-123.743296, 49.4699], [-123.744172, 49.470336], [-123.744642, 49.470386], [-123.744986, 49.470357], [-123.745063, 49.469978], [-123.745287, 49.470094], [-123.745331, 49.470418], [-123.745486, 49.470615], [-123.745833, 49.470693], [-123.748499, 49.470901], [-123.750379, 49.470942], [-123.751178, 49.470928], [-123.753407, 49.470752], [-123.75334, 49.470645], [-123.75375, 49.466052], [-123.759728, 49.465056], [-123.771719, 49.464224], [-123.770421, 49.433413], [-123.768381, 49.357081], [-123.767004, 49.319393], [-123.738389, 49.312339], [-123.709628, 49.31224], [-123.668397, 49.311943], [-123.638205, 49.31093], [-123.571321, 49.310882], [-123.570135, 49.364021], [-123.56972, 49.391369], [-123.569986, 49.402111], [-123.569096, 49.405719], [-123.563953, 49.405803], [-123.562915, 49.40567], [-123.562656, 49.405786], [-123.562606, 49.405944], [-123.562834, 49.410695], [-123.564133, 49.413043], [-123.563768, 49.418859], [-123.563729, 49.424506], [-123.56498, 49.430685], [-123.557297, 49.431262], [-123.557468, 49.433629], [-123.56313, 49.433615], [-123.563635, 49.440509], [-123.56696, 49.440803], [-123.566981, 49.448251], [-123.576023, 49.448212], [-123.575998, 49.450211], [-123.56775, 49.450333], [-123.56744, 49.453781], [-123.572872, 49.453902], [-123.572923, 49.460984], [-123.566117, 49.460962], [-123.56614, 49.475362], [-123.579803, 49.475387], [-123.605338, 49.475836], [-123.621489, 49.476023], [-123.621489, 49.476099], [-123.62801, 49.475927], [-123.628539, 49.490369], [-123.62143, 49.490183], [-123.621428, 49.490416], [-123.598556, 49.490847], [-123.598663, 49.499207], [-123.599019, 49.514058], [-123.599358, 49.514056], [-123.599591, 49.520586], [-123.597402, 49.523315], [-123.59593, 49.526539], [-123.595355, 49.528345], [-123.594613, 49.529209], [-123.593523, 49.531597], [-123.590304, 49.540119], [-123.589626, 49.542911], [-123.589879, 49.546548], [-123.590677, 49.549917], [-123.592114, 49.55276], [-123.593059, 49.5539], [-123.594795, 49.554886], [-123.594332, 49.561454], [-123.593792, 49.567375], [-123.591888, 49.571653], [-123.589554, 49.575508], [-123.586521, 49.578986], [-123.585103, 49.57969], [-123.5817, 49.579499], [-123.580284, 49.579102], [-123.578598, 49.578202], [-123.577236, 49.578236], [-123.574592, 49.579224], [-123.572291, 49.580716], [-123.571205, 49.582002], [-123.570755, 49.583312], [-123.571038, 49.585413], [-123.571986, 49.586928], [-123.573084, 49.58779], [-123.57331, 49.58871], [-123.572626, 49.589553], [-123.57085, 49.590383], [-123.568999, 49.592415], [-123.568152, 49.594266], [-123.568447, 49.595363], [-123.569769, 49.596496], [-123.572796, 49.598576], [-123.574821, 49.600186], [-123.573715, 49.602929]]]]}, "properties": {"name": "Sunshine Coast D", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sunshine Coast D", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929024", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.572872, 49.455601], [-123.572872, 49.453902], [-123.56744, 49.453781], [-123.56775, 49.450333], [-123.575998, 49.450211], [-123.576023, 49.448212], [-123.566981, 49.448251], [-123.56696, 49.440803], [-123.563635, 49.440509], [-123.56313, 49.433615], [-123.557468, 49.433629], [-123.557297, 49.431262], [-123.56498, 49.430685], [-123.563729, 49.424506], [-123.563768, 49.418859], [-123.564133, 49.413043], [-123.562834, 49.410695], [-123.562606, 49.405944], [-123.562656, 49.405786], [-123.562915, 49.40567], [-123.563953, 49.405803], [-123.569096, 49.405719], [-123.569986, 49.402111], [-123.56972, 49.391369], [-123.570135, 49.364021], [-123.571321, 49.310882], [-123.5602, 49.310786], [-123.548923, 49.310255], [-123.52734, 49.309824], [-123.511532, 49.30909], [-123.510813, 49.372176], [-123.510858, 49.383597], [-123.511035, 49.385593], [-123.51415, 49.384286], [-123.517303, 49.384184], [-123.517601, 49.387123], [-123.517283, 49.388033], [-123.51726, 49.388656], [-123.517576, 49.388734], [-123.518807, 49.388495], [-123.519396, 49.390441], [-123.524123, 49.390014], [-123.524176, 49.391317], [-123.523901, 49.392188], [-123.52075, 49.392251], [-123.520742, 49.396226], [-123.521186, 49.396136], [-123.521623, 49.400413], [-123.520963, 49.400398], [-123.521212, 49.403293], [-123.52419, 49.403407], [-123.524341, 49.404338], [-123.52752, 49.404316], [-123.527573, 49.40567], [-123.528278, 49.405657], [-123.52828, 49.406094], [-123.530013, 49.406049], [-123.53002, 49.406204], [-123.531769, 49.406166], [-123.531786, 49.405627], [-123.532917, 49.405619], [-123.532925, 49.405367], [-123.53509, 49.405344], [-123.535487, 49.405787], [-123.535561, 49.406462], [-123.534284, 49.406491], [-123.534434, 49.408958], [-123.537084, 49.409042], [-123.537241, 49.410485], [-123.535043, 49.410547], [-123.535163, 49.411614], [-123.533375, 49.411687], [-123.533426, 49.412634], [-123.529456, 49.412759], [-123.529546, 49.413971], [-123.519727, 49.414204], [-123.513739, 49.414217], [-123.513791, 49.417558], [-123.513716, 49.417844], [-123.518532, 49.41778], [-123.518839, 49.424503], [-123.519013, 49.42464], [-123.519272, 49.424662], [-123.519531, 49.424603], [-123.520324, 49.424051], [-123.52073, 49.423822], [-123.520985, 49.423758], [-123.521182, 49.423808], [-123.52157, 49.424169], [-123.52177, 49.42424], [-123.52197, 49.42421], [-123.522197, 49.4239], [-123.522399, 49.42382], [-123.527906, 49.425013], [-123.528103, 49.427767], [-123.529332, 49.455499], [-123.572872, 49.455601]]]]}, "properties": {"name": "Sunshine Coast E", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sunshine Coast E", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929026", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.546401, 49.632387], [-123.550248, 49.632003], [-123.554391, 49.631895], [-123.562766, 49.63116], [-123.56468, 49.630569], [-123.568537, 49.627475], [-123.5716, 49.625844], [-123.572887, 49.624036], [-123.572113, 49.622957], [-123.569873, 49.62098], [-123.567524, 49.618641], [-123.5669, 49.616029], [-123.568319, 49.614302], [-123.572632, 49.612843], [-123.575888, 49.611989], [-123.578344, 49.610967], [-123.577197, 49.610277], [-123.574713, 49.607929], [-123.573716, 49.605431], [-123.573715, 49.602929], [-123.574821, 49.600186], [-123.572796, 49.598576], [-123.569769, 49.596496], [-123.568447, 49.595363], [-123.568152, 49.594266], [-123.568999, 49.592415], [-123.57085, 49.590383], [-123.572626, 49.589553], [-123.57331, 49.58871], [-123.573084, 49.58779], [-123.571986, 49.586928], [-123.571038, 49.585413], [-123.570755, 49.583312], [-123.571205, 49.582002], [-123.572291, 49.580716], [-123.574592, 49.579224], [-123.577236, 49.578236], [-123.578598, 49.578202], [-123.580284, 49.579102], [-123.5817, 49.579499], [-123.585103, 49.57969], [-123.586521, 49.578986], [-123.589554, 49.575508], [-123.591888, 49.571653], [-123.593792, 49.567375], [-123.594332, 49.561454], [-123.594795, 49.554886], [-123.593059, 49.5539], [-123.592114, 49.55276], [-123.590677, 49.549917], [-123.589879, 49.546548], [-123.589626, 49.542911], [-123.590304, 49.540119], [-123.593523, 49.531597], [-123.594613, 49.529209], [-123.595355, 49.528345], [-123.59593, 49.526539], [-123.597402, 49.523315], [-123.599591, 49.520586], [-123.599358, 49.514056], [-123.599019, 49.514058], [-123.598663, 49.499207], [-123.598556, 49.490847], [-123.621428, 49.490416], [-123.62143, 49.490183], [-123.628539, 49.490369], [-123.62801, 49.475927], [-123.621489, 49.476099], [-123.621489, 49.476023], [-123.605338, 49.475836], [-123.579803, 49.475387], [-123.56614, 49.475362], [-123.566117, 49.460962], [-123.572923, 49.460984], [-123.572872, 49.455601], [-123.529332, 49.455499], [-123.528103, 49.427767], [-123.527906, 49.425013], [-123.522399, 49.42382], [-123.522197, 49.4239], [-123.52197, 49.42421], [-123.52177, 49.42424], [-123.52157, 49.424169], [-123.521182, 49.423808], [-123.520985, 49.423758], [-123.52073, 49.423822], [-123.520324, 49.424051], [-123.519531, 49.424603], [-123.519272, 49.424662], [-123.519013, 49.42464], [-123.518839, 49.424503], [-123.518532, 49.41778], [-123.513716, 49.417844], [-123.513791, 49.417558], [-123.513739, 49.414217], [-123.509965, 49.414237], [-123.509941, 49.41323], [-123.51023, 49.41326], [-123.510241, 49.412066], [-123.508939, 49.412164], [-123.507328, 49.412172], [-123.507235, 49.409762], [-123.503487, 49.409738], [-123.503449, 49.40859], [-123.501259, 49.408099], [-123.501319, 49.410667], [-123.499999, 49.410703], [-123.497354, 49.411105], [-123.496308, 49.411128], [-123.496658, 49.410713], [-123.497036, 49.40984], [-123.498483, 49.408421], [-123.498796, 49.408024], [-123.498861, 49.407645], [-123.498739, 49.406594], [-123.49912, 49.406197], [-123.499957, 49.405698], [-123.501115, 49.405715], [-123.501589, 49.405384], [-123.501694, 49.405198], [-123.501461, 49.405128], [-123.498239, 49.403175], [-123.501274, 49.400876], [-123.501978, 49.399077], [-123.500285, 49.398519], [-123.498252, 49.396769], [-123.497086, 49.39431], [-123.497617, 49.392361], [-123.499325, 49.390706], [-123.500619, 49.390356], [-123.502075, 49.390203], [-123.502108, 49.389537], [-123.50428, 49.38898], [-123.506199, 49.389038], [-123.507146, 49.388432], [-123.50916, 49.38815], [-123.51001, 49.3866], [-123.511035, 49.385593], [-123.510858, 49.383597], [-123.510813, 49.372176], [-123.511532, 49.30909], [-123.474559, 49.307178], [-123.453652, 49.329122], [-123.446722, 49.336648], [-123.439467, 49.337723], [-123.439174, 49.341909], [-123.438263, 49.344689], [-123.437368, 49.346988], [-123.435437, 49.348647], [-123.433492, 49.350039], [-123.430639, 49.350956], [-123.429235, 49.351879], [-123.429019, 49.353251], [-123.429935, 49.354761], [-123.431424, 49.356476], [-123.431586, 49.358188], [-123.431207, 49.360367], [-123.431874, 49.361694], [-123.433843, 49.363695], [-123.43515, 49.36473], [-123.434853, 49.365389], [-123.429705, 49.374476], [-123.428547, 49.376041], [-123.423303, 49.377292], [-123.420446, 49.379303], [-123.417201, 49.381454], [-123.415506, 49.383048], [-123.415426, 49.385385], [-123.409678, 49.388761], [-123.405301, 49.391974], [-123.395906, 49.396938], [-123.393656, 49.399036], [-123.390315, 49.402823], [-123.39264, 49.405595], [-123.39309, 49.408378], [-123.389634, 49.410163], [-123.381149, 49.413843], [-123.377253, 49.4151], [-123.376657, 49.414753], [-123.375628, 49.413789], [-123.373455, 49.412271], [-123.372354, 49.41259], [-123.37107, 49.412827], [-123.369818, 49.412829], [-123.36595, 49.415033], [-123.36296, 49.416923], [-123.357959, 49.418861], [-123.353227, 49.419884], [-123.348243, 49.420329], [-123.344978, 49.420363], [-123.341429, 49.420319], [-123.336619, 49.419916], [-123.332479, 49.419353], [-123.3299, 49.419285], [-123.328042, 49.420226], [-123.325442, 49.421793], [-123.323323, 49.422972], [-123.319696, 49.423712], [-123.31555, 49.423967], [-123.311513, 49.423664], [-123.307519, 49.422454], [-123.304412, 49.420935], [-123.302969, 49.419106], [-123.29723, 49.427402], [-123.288932, 49.439864], [-123.281647, 49.458279], [-123.274888, 49.481103], [-123.271511, 49.508928], [-123.270112, 49.521064], [-123.264852, 49.536196], [-123.245038, 49.57629], [-123.276383, 49.569098], [-123.276691, 49.576086], [-123.276744, 49.58366], [-123.276915, 49.590758], [-123.281896, 49.590347], [-123.284604, 49.59176], [-123.287441, 49.594736], [-123.288437, 49.596624], [-123.291106, 49.601903], [-123.294065, 49.610063], [-123.29664, 49.613387], [-123.299914, 49.617089], [-123.303954, 49.621019], [-123.308886, 49.624637], [-123.316152, 49.629675], [-123.319037, 49.631524], [-123.321395, 49.633433], [-123.324167, 49.636067], [-123.326642, 49.638806], [-123.32901, 49.641644], [-123.330065, 49.64314], [-123.331161, 49.646983], [-123.333765, 49.650795], [-123.336254, 49.653778], [-123.339474, 49.656256], [-123.34353, 49.658814], [-123.348538, 49.662283], [-123.351004, 49.664776], [-123.351609, 49.665671], [-123.35162, 49.665161], [-123.35132, 49.662753], [-123.356822, 49.657297], [-123.359732, 49.655443], [-123.363125, 49.653683], [-123.368616, 49.651138], [-123.373104, 49.649624], [-123.374708, 49.64951], [-123.382388, 49.6494], [-123.390914, 49.649623], [-123.401756, 49.650585], [-123.419485, 49.653391], [-123.4292, 49.655034], [-123.437017, 49.655863], [-123.443285, 49.655422], [-123.446221, 49.654286], [-123.450394, 49.6524], [-123.454373, 49.650477], [-123.457192, 49.647649], [-123.457701, 49.645738], [-123.45663, 49.644356], [-123.453555, 49.642027], [-123.451975, 49.640325], [-123.45034, 49.63594], [-123.449898, 49.63153], [-123.453322, 49.623319], [-123.455572, 49.620586], [-123.457752, 49.619031], [-123.462163, 49.617533], [-123.468383, 49.616264], [-123.472528, 49.615804], [-123.477835, 49.61567], [-123.480519, 49.615881], [-123.488334, 49.617491], [-123.495061, 49.618958], [-123.500437, 49.619935], [-123.503369, 49.620574], [-123.510122, 49.622655], [-123.519834, 49.62547], [-123.523379, 49.627139], [-123.531402, 49.632833], [-123.535136, 49.634181], [-123.538369, 49.634775], [-123.541625, 49.633374], [-123.546401, 49.632387]]]]}, "properties": {"name": "Sunshine Coast F", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sunshine Coast F", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929028", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.499957, 49.405698], [-123.49912, 49.406197], [-123.498739, 49.406594], [-123.498861, 49.407645], [-123.498796, 49.408024], [-123.498483, 49.408421], [-123.497036, 49.40984], [-123.496658, 49.410713], [-123.496308, 49.411128], [-123.497354, 49.411105], [-123.499999, 49.410703], [-123.501319, 49.410667], [-123.501292, 49.405722], [-123.499957, 49.405698]]]]}, "properties": {"name": "Chekwelp 26", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Chekwelp 26", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929801", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.749796, 50.098482], [-123.748266, 50.09773], [-123.747258, 50.09682], [-123.746513, 50.095574], [-123.746128, 50.094182], [-123.74594, 50.093815], [-123.745555, 50.093332], [-123.744723, 50.092815], [-123.744386, 50.092728], [-123.743714, 50.092714], [-123.742527, 50.092821], [-123.742219, 50.092795], [-123.742092, 50.092734], [-123.74212, 50.092653], [-123.742369, 50.092551], [-123.744083, 50.092091], [-123.744539, 50.091836], [-123.744507, 50.091441], [-123.742786, 50.08869], [-123.742602, 50.087658], [-123.742762, 50.087198], [-123.742941, 50.087017], [-123.744526, 50.086432], [-123.746045, 50.086205], [-123.7467, 50.086003], [-123.747315, 50.08599], [-123.748579, 50.08556], [-123.749333, 50.085429], [-123.750059, 50.085388], [-123.751269, 50.084993], [-123.751714, 50.084936], [-123.752854, 50.085325], [-123.753273, 50.085403], [-123.75418, 50.085244], [-123.755333, 50.08477], [-123.758938, 50.082884], [-123.7609, 50.081441], [-123.761619, 50.081022], [-123.761705, 50.081085], [-123.761788, 50.081067], [-123.761841, 50.080869], [-123.762416, 50.080127], [-123.763452, 50.079356], [-123.764001, 50.078785], [-123.764288, 50.078369], [-123.764954, 50.077979], [-123.765829, 50.077604], [-123.766311, 50.077169], [-123.767158, 50.076912], [-123.767645, 50.076666], [-123.767851, 50.076448], [-123.767975, 50.076402], [-123.76796, 50.076268], [-123.768097, 50.076132], [-123.769337, 50.075935], [-123.769476, 50.07589], [-123.769807, 50.075591], [-123.770391, 50.075407], [-123.771145, 50.075347], [-123.771126, 50.075051], [-123.771431, 50.074833], [-123.771749, 50.074723], [-123.772711, 50.074564], [-123.772975, 50.074473], [-123.773502, 50.074135], [-123.774023, 50.074384], [-123.774369, 50.07421], [-123.774998, 50.074279], [-123.775473, 50.074168], [-123.775766, 50.074229], [-123.775975, 50.074182], [-123.776127, 50.07402], [-123.775984, 50.073813], [-123.775922, 50.073498], [-123.776161, 50.073208], [-123.775166, 50.072625], [-123.773592, 50.072315], [-123.772807, 50.072293], [-123.772187, 50.072355], [-123.770429, 50.072749], [-123.770035, 50.072705], [-123.769842, 50.072261], [-123.769414, 50.071883], [-123.768124, 50.071422], [-123.766843, 50.071239], [-123.766286, 50.070995], [-123.766188, 50.0709], [-123.764042, 50.07093], [-123.764004, 50.072632], [-123.756531, 50.072771], [-123.756312, 50.078147], [-123.751132, 50.078166], [-123.750782, 50.083075], [-123.73809, 50.083501], [-123.737217, 50.091243], [-123.730365, 50.091332], [-123.730096, 50.09399], [-123.720994, 50.094097], [-123.720221, 50.094154], [-123.720387, 50.09636], [-123.715476, 50.096538], [-123.715056, 50.100274], [-123.728426, 50.100343], [-123.728672, 50.099225], [-123.733169, 50.099347], [-123.73316, 50.101059], [-123.738644, 50.101089], [-123.738661, 50.098764], [-123.749796, 50.098482]]], [[[-123.710025, 49.439676], [-123.722235, 49.439738], [-123.723096, 49.439684], [-123.723451, 49.439273], [-123.723298, 49.439193], [-123.723324, 49.438914], [-123.723205, 49.438446], [-123.721095, 49.438334], [-123.71867, 49.437656], [-123.717315, 49.437485], [-123.715779, 49.437098], [-123.71524, 49.437012], [-123.71456, 49.4368], [-123.713992, 49.436552], [-123.713188, 49.43635], [-123.712895, 49.436991], [-123.712434, 49.437532], [-123.712438, 49.437865], [-123.712652, 49.43835], [-123.712573, 49.438639], [-123.712382, 49.43873], [-123.712092, 49.438767], [-123.711649, 49.438528], [-123.711345, 49.438475], [-123.710561, 49.438669], [-123.709971, 49.438694], [-123.710025, 49.439676]]], [[[-123.735488, 49.486297], [-123.750619, 49.486221], [-123.752693, 49.48617], [-123.752941, 49.485966], [-123.753423, 49.485063], [-123.753886, 49.484502], [-123.754073, 49.484151], [-123.754107, 49.483719], [-123.753728, 49.483262], [-123.753378, 49.483072], [-123.753455, 49.481412], [-123.753392, 49.480691], [-123.753438, 49.47736], [-123.751454, 49.477329], [-123.751491, 49.475943], [-123.751766, 49.475421], [-123.753455, 49.475036], [-123.753461, 49.474194], [-123.753345, 49.473459], [-123.753475, 49.47339], [-123.753506, 49.470908], [-123.753407, 49.470752], [-123.751178, 49.470928], [-123.750379, 49.470942], [-123.748499, 49.470901], [-123.745833, 49.470693], [-123.745584, 49.470668], [-123.74536, 49.47049], [-123.745287, 49.470094], [-123.745174, 49.469997], [-123.745021, 49.470007], [-123.744986, 49.470357], [-123.744642, 49.470386], [-123.744172, 49.470336], [-123.743448, 49.469998], [-123.743296, 49.4699], [-123.742956, 49.46938], [-123.742375, 49.467442], [-123.742221, 49.466399], [-123.742287, 49.466102], [-123.742689, 49.465317], [-123.742878, 49.465082], [-123.743437, 49.464719], [-123.74349, 49.464519], [-123.74333, 49.464373], [-123.742747, 49.464486], [-123.736066, 49.464492], [-123.736031, 49.467192], [-123.73513, 49.467211], [-123.735542, 49.471638], [-123.735488, 49.486297]], [[-123.750541, 49.476541], [-123.74835, 49.476526], [-123.747617, 49.476243], [-123.748385, 49.474217], [-123.749169, 49.474353], [-123.750431, 49.474339], [-123.750421, 49.475251], [-123.751023, 49.475256], [-123.750541, 49.476541]]], [[[-123.765729, 49.491916], [-123.768683, 49.491918], [-123.768671, 49.491177], [-123.768263, 49.489895], [-123.767193, 49.489445], [-123.767097, 49.489642], [-123.766767, 49.489842], [-123.765789, 49.489903], [-123.765729, 49.491916]]], [[[-123.748659, 49.503435], [-123.748854, 49.503816], [-123.751894, 49.50383], [-123.749764, 49.503004], [-123.749084, 49.502829], [-123.748966, 49.502826], [-123.748659, 49.503435]]], [[[-123.754259, 49.516315], [-123.75695, 49.51658], [-123.761026, 49.516703], [-123.760548, 49.513831], [-123.760101, 49.514092], [-123.75948, 49.514105], [-123.758649, 49.513983], [-123.758439, 49.513833], [-123.758542, 49.513337], [-123.758457, 49.513157], [-123.758273, 49.512996], [-123.758023, 49.512873], [-123.757719, 49.512811], [-123.757566, 49.512696], [-123.75741, 49.512508], [-123.757179, 49.511916], [-123.756983, 49.51171], [-123.755934, 49.511735], [-123.754846, 49.511545], [-123.754062, 49.513196], [-123.754259, 49.516315]]], [[[-123.795858, 49.509326], [-123.796072, 49.509604], [-123.796186, 49.509954], [-123.79648, 49.510158], [-123.797062, 49.510218], [-123.797052, 49.510487], [-123.796588, 49.510796], [-123.796564, 49.51104], [-123.796747, 49.511198], [-123.79823, 49.511304], [-123.798353, 49.50898], [-123.796591, 49.508936], [-123.795858, 49.509326]]], [[[-124.018756, 49.606406], [-124.024946, 49.606407], [-124.024494, 49.606059], [-124.024539, 49.604927], [-124.018754, 49.605006], [-124.018756, 49.606406]]], [[[-124.032747, 49.615908], [-124.033089, 49.616095], [-124.033211, 49.616428], [-124.033321, 49.616433], [-124.033481, 49.616169], [-124.033479, 49.61599], [-124.033165, 49.615588], [-124.033164, 49.615488], [-124.032737, 49.615468], [-124.032747, 49.615908]]], [[[-124.033341, 49.617377], [-124.033776, 49.617669], [-124.033737, 49.617736], [-124.034452, 49.61774], [-124.034484, 49.616921], [-124.034192, 49.616999], [-124.034117, 49.616749], [-124.033605, 49.616744], [-124.033242, 49.616549], [-124.032978, 49.616534], [-124.032732, 49.616707], [-124.032721, 49.616782], [-124.033056, 49.616974], [-124.033341, 49.617377]]], [[[-124.028244, 49.620479], [-124.02838, 49.620499], [-124.028532, 49.620357], [-124.028648, 49.620346], [-124.02847, 49.620172], [-124.02882, 49.619647], [-124.028831, 49.619522], [-124.028706, 49.619432], [-124.027848, 49.619449], [-124.027849, 49.619997], [-124.028098, 49.620011], [-124.028389, 49.620145], [-124.028192, 49.620287], [-124.028157, 49.62038], [-124.028244, 49.620479]]], [[[-124.020497, 49.630744], [-124.02148, 49.630749], [-124.020906, 49.630421], [-124.02051, 49.630285], [-124.020497, 49.630744]]], [[[-123.982919, 49.643865], [-123.985716, 49.643823], [-123.985736, 49.641954], [-123.982944, 49.64193], [-123.982919, 49.643865]]], [[[-124.026148, 49.633066], [-124.026285, 49.632104], [-124.025979, 49.631968], [-124.025787, 49.632042], [-124.025467, 49.632072], [-124.025128, 49.632011], [-124.024708, 49.631857], [-124.024328, 49.631848], [-124.024131, 49.631689], [-124.02368, 49.631595], [-124.023391, 49.63281], [-124.026148, 49.633066]]], [[[-124.049935, 49.629389], [-124.050021, 49.629477], [-124.05045, 49.629464], [-124.050345, 49.629115], [-124.05018, 49.629107], [-124.049935, 49.629389]]], [[[-124.05086, 49.629263], [-124.050906, 49.62946], [-124.051143, 49.629512], [-124.051416, 49.62933], [-124.051482, 49.629131], [-124.051341, 49.62907], [-124.051037, 49.629108], [-124.05086, 49.629263]]], [[[-124.050059, 49.629944], [-124.050064, 49.630206], [-124.050387, 49.63041], [-124.050539, 49.63039], [-124.050813, 49.630216], [-124.050959, 49.629954], [-124.050942, 49.629775], [-124.050815, 49.629713], [-124.05033, 49.629682], [-124.050059, 49.629944]]], [[[-124.052421, 49.629708], [-124.052315, 49.629951], [-124.052392, 49.630256], [-124.052589, 49.630417], [-124.052866, 49.630477], [-124.053295, 49.630428], [-124.053674, 49.630028], [-124.053682, 49.629786], [-124.053538, 49.6295], [-124.052915, 49.629505], [-124.052613, 49.629571], [-124.052421, 49.629708]]], [[[-123.713531, 49.774287], [-123.717642, 49.774172], [-123.717295, 49.773791], [-123.71665, 49.773362], [-123.716494, 49.773184], [-123.716111, 49.771666], [-123.71607, 49.770838], [-123.716176, 49.770478], [-123.716724, 49.770016], [-123.716819, 49.769737], [-123.716807, 49.768954], [-123.717021, 49.768467], [-123.717059, 49.768089], [-123.716883, 49.764646], [-123.717028, 49.764123], [-123.717513, 49.763103], [-123.717478, 49.762636], [-123.717205, 49.761973], [-123.717171, 49.761585], [-123.717423, 49.760883], [-123.717579, 49.760063], [-123.718013, 49.75943], [-123.711798, 49.759452], [-123.713531, 49.774287]]], [[[-123.863255, 49.723576], [-123.864616, 49.723573], [-123.864626, 49.725527], [-123.867553, 49.725469], [-123.867163, 49.72451], [-123.866736, 49.723901], [-123.866567, 49.723785], [-123.865841, 49.723512], [-123.865297, 49.723364], [-123.86476, 49.722864], [-123.864772, 49.722737], [-123.864935, 49.722529], [-123.866172, 49.721954], [-123.866295, 49.7218], [-123.866387, 49.721521], [-123.866367, 49.720845], [-123.863241, 49.720851], [-123.863255, 49.723576]]], [[[-124.064027, 49.654364], [-124.06764, 49.654397], [-124.069263, 49.654286], [-124.069861, 49.65155], [-124.069482, 49.651813], [-124.068873, 49.651828], [-124.068596, 49.651894], [-124.068333, 49.651878], [-124.06829, 49.651833], [-124.068778, 49.651361], [-124.069847, 49.650812], [-124.069059, 49.650768], [-124.064383, 49.650959], [-124.064027, 49.654364]]], [[[-123.719093, 49.778506], [-123.719171, 49.781058], [-123.719597, 49.781053], [-123.719878, 49.780305], [-123.719909, 49.779594], [-123.719693, 49.7791], [-123.719354, 49.778653], [-123.719093, 49.778506]]], [[[-123.873931, 49.72364], [-123.873936, 49.723911], [-123.874261, 49.724214], [-123.876277, 49.725161], [-123.876736, 49.725273], [-123.878432, 49.725513], [-123.879557, 49.725531], [-123.879875, 49.725457], [-123.879982, 49.725268], [-123.879631, 49.725073], [-123.879307, 49.724732], [-123.878886, 49.724493], [-123.878021, 49.724275], [-123.877505, 49.724017], [-123.877142, 49.72393], [-123.876418, 49.723864], [-123.875364, 49.723854], [-123.874693, 49.723563], [-123.874124, 49.723557], [-123.873931, 49.72364]]], [[[-123.726331, 49.773392], [-123.726041, 49.77352], [-123.725327, 49.774046], [-123.724874, 49.774561], [-123.723885, 49.776213], [-123.723897, 49.776897], [-123.723467, 49.777871], [-123.723122, 49.779025], [-123.723126, 49.779268], [-123.723269, 49.779608], [-123.723454, 49.779788], [-123.7238, 49.779931], [-123.727871, 49.779846], [-123.727251, 49.772705], [-123.726331, 49.773392]]], [[[-123.893143, 49.733973], [-123.893273, 49.734133], [-123.904219, 49.733962], [-123.904169, 49.727683], [-123.904066, 49.724969], [-123.887176, 49.72487], [-123.886883, 49.725574], [-123.886863, 49.72597], [-123.886938, 49.726258], [-123.887841, 49.727124], [-123.888839, 49.727836], [-123.889723, 49.728296], [-123.889936, 49.7286], [-123.889888, 49.728978], [-123.889752, 49.729096], [-123.888895, 49.729283], [-123.888659, 49.729392], [-123.888599, 49.729869], [-123.888672, 49.730076], [-123.889121, 49.730378], [-123.889414, 49.730448], [-123.890748, 49.73051], [-123.891783, 49.730987], [-123.893863, 49.731682], [-123.894553, 49.732118], [-123.894603, 49.732692], [-123.894502, 49.733144], [-123.894048, 49.733453], [-123.893165, 49.73372], [-123.893143, 49.733973]]], [[[-123.721558, 49.800508], [-123.725663, 49.80049], [-123.725711, 49.79501], [-123.727152, 49.794978], [-123.726592, 49.787646], [-123.726392, 49.787721], [-123.724836, 49.787802], [-123.723336, 49.787811], [-123.722943, 49.787499], [-123.722608, 49.787385], [-123.722386, 49.787412], [-123.722322, 49.787728], [-123.722117, 49.787927], [-123.721421, 49.78794], [-123.720919, 49.787818], [-123.720418, 49.787793], [-123.719323, 49.787909], [-123.719072, 49.787892], [-123.718836, 49.78783], [-123.718217, 49.787366], [-123.717496, 49.787171], [-123.717068, 49.786798], [-123.716932, 49.786825], [-123.716793, 49.786781], [-123.716346, 49.786516], [-123.715699, 49.786993], [-123.715595, 49.793762], [-123.721567, 49.794036], [-123.721558, 49.800508]]], [[[-123.709003, 49.822214], [-123.709294, 49.822578], [-123.709335, 49.822911], [-123.709941, 49.82254], [-123.709982, 49.82184], [-123.709377, 49.821837], [-123.709166, 49.821915], [-123.708972, 49.821915], [-123.709003, 49.822214]]], [[[-123.709287, 49.823298], [-123.709279, 49.824103], [-123.709072, 49.824662], [-123.709021, 49.825455], [-123.709939, 49.825455], [-123.709941, 49.822956], [-123.709378, 49.823108], [-123.709287, 49.823298]]], [[[-123.923317, 49.760174], [-123.923342, 49.760448], [-123.923207, 49.760507], [-123.923167, 49.76123], [-123.924454, 49.761196], [-123.92446, 49.761104], [-123.924282, 49.761069], [-123.924058, 49.760795], [-123.924114, 49.760593], [-123.924402, 49.760427], [-123.923904, 49.760023], [-123.923462, 49.759983], [-123.923317, 49.760174]]], [[[-123.869131, 49.922274], [-123.868392, 49.923099], [-123.867423, 49.923632], [-123.870457, 49.923677], [-123.871194, 49.923454], [-123.871263, 49.924051], [-123.872508, 49.924046], [-123.872505, 49.924787], [-123.875704, 49.924774], [-123.875696, 49.92465], [-123.874942, 49.924641], [-123.87462, 49.924582], [-123.873312, 49.923952], [-123.872169, 49.923852], [-123.871497, 49.923706], [-123.871507, 49.923543], [-123.871281, 49.923249], [-123.87127, 49.922709], [-123.871012, 49.922351], [-123.870618, 49.922138], [-123.870198, 49.922007], [-123.869516, 49.922019], [-123.869131, 49.922274]]], [[[-124.008425, 49.99832], [-124.010189, 49.998306], [-124.009804, 49.997974], [-124.009548, 49.997842], [-124.00917, 49.997782], [-124.008935, 49.997837], [-124.008411, 49.998094], [-124.008425, 49.99832]]], [[[-124.010808, 49.997344], [-124.010805, 49.998284], [-124.015689, 49.998101], [-124.015009, 49.995456], [-124.014538, 49.995105], [-124.013907, 49.995108], [-124.013342, 49.995537], [-124.013043, 49.995331], [-124.012766, 49.995537], [-124.012874, 49.996023], [-124.012591, 49.996574], [-124.012382, 49.996567], [-124.012198, 49.996406], [-124.012177, 49.996083], [-124.012078, 49.995957], [-124.011642, 49.995926], [-124.011423, 49.996071], [-124.01106, 49.996686], [-124.01073, 49.996904], [-124.010808, 49.997344]]], [[[-123.798238, 50.129475], [-123.800753, 50.129498], [-123.800995, 50.128884], [-123.800891, 50.128571], [-123.800535, 50.128214], [-123.799829, 50.127805], [-123.799492, 50.1277], [-123.798202, 50.127768], [-123.798238, 50.129475]]], [[[-123.810846, 50.142874], [-123.813543, 50.142783], [-123.812736, 50.142357], [-123.812333, 50.141658], [-123.812162, 50.141516], [-123.811391, 50.141324], [-123.811468, 50.140901], [-123.811171, 50.140839], [-123.810947, 50.140698], [-123.810846, 50.142874]]], [[[-123.851334, 50.162731], [-123.851201, 50.163172], [-123.851623, 50.163278], [-123.851805, 50.163241], [-123.852053, 50.163067], [-123.852037, 50.16295], [-123.85181, 50.162701], [-123.851612, 50.16263], [-123.851334, 50.162731]]], [[[-123.854399, 50.162727], [-123.854305, 50.162916], [-123.854392, 50.163112], [-123.856051, 50.163138], [-123.856079, 50.16267], [-123.855815, 50.162752], [-123.855193, 50.162442], [-123.854622, 50.162571], [-123.854399, 50.162727]]], [[[-123.995933, 50.217442], [-123.996673, 50.214748], [-123.994088, 50.214464], [-123.994765, 50.211917], [-123.993004, 50.211721], [-123.992745, 50.211444], [-123.992148, 50.210324], [-123.991144, 50.209263], [-123.988557, 50.208131], [-123.987441, 50.208422], [-123.986555, 50.211011], [-123.984391, 50.212018], [-123.983359, 50.212963], [-123.982915, 50.213037], [-123.979766, 50.212741], [-123.976596, 50.211524], [-123.973629, 50.210553], [-123.970171, 50.209186], [-123.970212, 50.208837], [-123.969998, 50.208669], [-123.970039, 50.208569], [-123.969789, 50.208332], [-123.970787, 50.215699], [-123.995933, 50.217442]]]]}, "properties": {"name": "Sechelt (Part) - Sunshine Coast", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Sechelt (Part) - Sunshine Coast", "economic_region_id": "5920", "census_division_code": "5929", "census_subdivision_code": "5929803", "regional_district_aka_census_division": "Sunshine Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.117419, 49.819767], [-123.125808, 49.819758], [-123.125836, 49.830539], [-123.132693, 49.830532], [-123.132409, 49.842349], [-123.142819, 49.84233], [-123.142871, 49.847742], [-123.148467, 49.847735], [-123.148496, 49.85709], [-123.151987, 49.85716], [-123.152036, 49.872884], [-123.185941, 49.872834], [-123.165854, 49.835603], [-123.162932, 49.831995], [-123.162905, 49.822304], [-123.161331, 49.822297], [-123.162397, 49.810157], [-123.155148, 49.809604], [-123.151963, 49.809706], [-123.146754, 49.80968], [-123.146464, 49.809458], [-123.146239, 49.809161], [-123.1464, 49.807191], [-123.14676, 49.806174], [-123.147132, 49.805634], [-123.147437, 49.805256], [-123.148448, 49.804428], [-123.149114, 49.803933], [-123.150142, 49.803329], [-123.150405, 49.80305], [-123.150781, 49.802882], [-123.150767, 49.802702], [-123.151608, 49.802389], [-123.152902, 49.802196], [-123.153425, 49.802037], [-123.15403, 49.80111], [-123.157113, 49.799634], [-123.161378, 49.797801], [-123.16514, 49.796379], [-123.165686, 49.796225], [-123.169269, 49.796575], [-123.171456, 49.797308], [-123.17214, 49.796842], [-123.172602, 49.796865], [-123.173002, 49.796676], [-123.173284, 49.796366], [-123.173808, 49.796184], [-123.174809, 49.795521], [-123.175391, 49.795228], [-123.17651, 49.794985], [-123.177874, 49.794771], [-123.179256, 49.794239], [-123.180455, 49.793647], [-123.181018, 49.79301], [-123.181726, 49.792703], [-123.181799, 49.79249], [-123.182938, 49.792016], [-123.183846, 49.79149], [-123.184615, 49.791203], [-123.186589, 49.791165], [-123.186957, 49.791104], [-123.188243, 49.790541], [-123.189153, 49.790393], [-123.1897, 49.791029], [-123.191414, 49.7926], [-123.19193, 49.793309], [-123.192258, 49.793527], [-123.19414, 49.792451], [-123.194182, 49.788834], [-123.185589, 49.779971], [-123.185556, 49.771411], [-123.180316, 49.771419], [-123.180289, 49.764085], [-123.163448, 49.753337], [-123.160035, 49.753333], [-123.160014, 49.746908], [-123.165571, 49.746901], [-123.165546, 49.739681], [-123.169098, 49.739676], [-123.169095, 49.731148], [-123.170862, 49.729974], [-123.172604, 49.727269], [-123.173078, 49.725452], [-123.17678, 49.725399], [-123.176885, 49.718163], [-123.18793, 49.718542], [-123.187997, 49.71132], [-123.188269, 49.703336], [-123.193848, 49.703408], [-123.194112, 49.696197], [-123.199689, 49.696263], [-123.199822, 49.688881], [-123.197684, 49.688885], [-123.197682, 49.683886], [-123.200362, 49.683595], [-123.204744, 49.682945], [-123.209585, 49.68135], [-123.214661, 49.678915], [-123.221943, 49.677047], [-123.227912, 49.673999], [-123.230498, 49.673497], [-123.234264, 49.672063], [-123.239604, 49.670216], [-123.251578, 49.6702], [-123.251588, 49.675632], [-123.257198, 49.675637], [-123.257111, 49.668081], [-123.260355, 49.668084], [-123.260299, 49.653003], [-123.260158, 49.653003], [-123.260238, 49.652628], [-123.258684, 49.652787], [-123.258209, 49.653003], [-123.254745, 49.653003], [-123.254446, 49.653465], [-123.253389, 49.656017], [-123.25338, 49.656845], [-123.253857, 49.658048], [-123.254446, 49.659053], [-123.254682, 49.659625], [-123.254671, 49.660279], [-123.254574, 49.660531], [-123.254028, 49.66121], [-123.25365, 49.661513], [-123.253341, 49.661655], [-123.248078, 49.663085], [-123.247257, 49.663485], [-123.246724, 49.663825], [-123.245316, 49.665155], [-123.244074, 49.665789], [-123.242886, 49.666126], [-123.242352, 49.666209], [-123.241353, 49.666294], [-123.23972, 49.666279], [-123.237786, 49.666475], [-123.235747, 49.666836], [-123.23449, 49.667347], [-123.232159, 49.668496], [-123.230502, 49.669227], [-123.229483, 49.669604], [-123.228682, 49.669816], [-123.225954, 49.670288], [-123.224745, 49.670597], [-123.222827, 49.671388], [-123.221374, 49.672114], [-123.21969, 49.673252], [-123.217443, 49.674359], [-123.216508, 49.674695], [-123.21506, 49.675014], [-123.210775, 49.675434], [-123.210016, 49.675618], [-123.209362, 49.675885], [-123.204468, 49.678447], [-123.202914, 49.678985], [-123.201957, 49.679092], [-123.161904, 49.679421], [-123.162008, 49.679136], [-123.162522, 49.678344], [-123.163327, 49.67768], [-123.164615, 49.677041], [-123.165738, 49.676576], [-123.168704, 49.675184], [-123.17078, 49.673803], [-123.171472, 49.673064], [-123.171908, 49.672251], [-123.171928, 49.671788], [-123.172037, 49.67154], [-123.17305, 49.670863], [-123.173738, 49.670078], [-123.174257, 49.668888], [-123.173951, 49.667583], [-123.174672, 49.667268], [-123.175414, 49.666785], [-123.175693, 49.666493], [-123.176154, 49.666197], [-123.176775, 49.666005], [-123.177589, 49.665635], [-123.178137, 49.665278], [-123.17872, 49.664859], [-123.179216, 49.66404], [-123.179588, 49.663793], [-123.180932, 49.66325], [-123.182506, 49.662421], [-123.18303, 49.66222], [-123.184529, 49.661965], [-123.18551, 49.661972], [-123.187296, 49.661828], [-123.188444, 49.661469], [-123.190029, 49.660645], [-123.190569, 49.660495], [-123.191225, 49.660448], [-123.193032, 49.660499], [-123.194023, 49.660368], [-123.195284, 49.659986], [-123.197097, 49.659623], [-123.198271, 49.659647], [-123.199228, 49.659759], [-123.200659, 49.660112], [-123.20133, 49.660156], [-123.203871, 49.660029], [-123.205446, 49.660068], [-123.207241, 49.660225], [-123.210294, 49.660155], [-123.212038, 49.659877], [-123.213176, 49.6596], [-123.215614, 49.658777], [-123.220605, 49.65771], [-123.222122, 49.657099], [-123.223259, 49.656474], [-123.223623, 49.656148], [-123.224001, 49.65564], [-123.226539, 49.650797], [-123.227113, 49.650252], [-123.228522, 49.649118], [-123.228844, 49.64877], [-123.229298, 49.648092], [-123.229513, 49.647382], [-123.229468, 49.646897], [-123.229298, 49.646595], [-123.22881, 49.64601], [-123.227411, 49.644732], [-123.22703, 49.644302], [-123.22635, 49.643379], [-123.225436, 49.641843], [-123.224981, 49.640933], [-123.223594, 49.63909], [-123.20947, 49.638699], [-123.209466, 49.639162], [-123.203543, 49.639209], [-123.202735, 49.642834], [-123.202735, 49.646331], [-123.200356, 49.6499], [-123.189526, 49.649687], [-123.189411, 49.653395], [-123.18373, 49.653326], [-123.183635, 49.656557], [-123.182612, 49.656805], [-123.168609, 49.656821], [-123.168587, 49.660632], [-123.156985, 49.660537], [-123.156971, 49.671839], [-123.151182, 49.671847], [-123.151208, 49.680039], [-123.13116, 49.67958], [-123.131061, 49.694114], [-123.128243, 49.694116], [-123.128246, 49.695916], [-123.125449, 49.69605], [-123.109309, 49.696064], [-123.109325, 49.703278], [-123.091134, 49.703223], [-123.091116, 49.70866], [-123.017542, 49.708694], [-123.017548, 49.726683], [-123.09097, 49.726648], [-123.091268, 49.735666], [-123.09117, 49.742954], [-123.102395, 49.74291], [-123.102593, 49.74999], [-123.101513, 49.749948], [-123.096677, 49.749997], [-123.09569, 49.764645], [-123.089212, 49.764801], [-123.089278, 49.77035], [-123.089218, 49.779185], [-123.103189, 49.779196], [-123.10322, 49.787024], [-123.108809, 49.787019], [-123.108837, 49.793919], [-123.117356, 49.793839], [-123.117419, 49.819767]], [[-123.159198, 49.766923], [-123.159156, 49.768139], [-123.159, 49.768446], [-123.159115, 49.768525], [-123.159355, 49.768529], [-123.160185, 49.768759], [-123.162343, 49.769853], [-123.163177, 49.770364], [-123.164331, 49.770794], [-123.164956, 49.77109], [-123.165263, 49.771431], [-123.16539, 49.771683], [-123.165468, 49.772171], [-123.166165, 49.772549], [-123.166575, 49.772971], [-123.166516, 49.774293], [-123.163645, 49.774193], [-123.163667, 49.772981], [-123.163599, 49.772382], [-123.160959, 49.772263], [-123.160879, 49.770555], [-123.15803, 49.770448], [-123.158141, 49.769562], [-123.158116, 49.766852], [-123.159198, 49.766923]], [[-123.157364, 49.768254], [-123.157684, 49.768458], [-123.157604, 49.768513], [-123.156877, 49.768064], [-123.157364, 49.768254]], [[-123.142055, 49.753229], [-123.142354, 49.754048], [-123.142451, 49.754615], [-123.142415, 49.755928], [-123.142471, 49.756224], [-123.142611, 49.756566], [-123.142938, 49.756865], [-123.141254, 49.756848], [-123.141188, 49.756646], [-123.14131, 49.753233], [-123.142055, 49.753229]], [[-123.1407, 49.742398], [-123.14048, 49.742685], [-123.140541, 49.742941], [-123.140813, 49.743149], [-123.141367, 49.743394], [-123.141719, 49.743337], [-123.143057, 49.743284], [-123.143432, 49.74461], [-123.143373, 49.745805], [-123.142721, 49.746798], [-123.142005, 49.746777], [-123.14105, 49.746229], [-123.140351, 49.745599], [-123.138309, 49.745662], [-123.138022, 49.745406], [-123.137974, 49.745206], [-123.138173, 49.744387], [-123.138159, 49.743009], [-123.138043, 49.742585], [-123.1373, 49.741858], [-123.137063, 49.741497], [-123.136983, 49.741153], [-123.137008, 49.739406], [-123.143662, 49.739163], [-123.143166, 49.739752], [-123.14195, 49.740305], [-123.141755, 49.740677], [-123.141716, 49.740781], [-123.142426, 49.741569], [-123.141965, 49.741877], [-123.141389, 49.742021], [-123.1407, 49.742398]], [[-123.163884, 49.72586], [-123.163601, 49.726137], [-123.162121, 49.726512], [-123.160122, 49.726091], [-123.16046, 49.725104], [-123.163884, 49.72586]], [[-123.15324, 49.693007], [-123.152811, 49.69335], [-123.152395, 49.693575], [-123.152091, 49.694115], [-123.151623, 49.694367], [-123.151303, 49.694656], [-123.14789, 49.695428], [-123.147921, 49.692577], [-123.147311, 49.692597], [-123.14587, 49.692468], [-123.144799, 49.69249], [-123.144812, 49.690947], [-123.144326, 49.690962], [-123.143857, 49.691104], [-123.143458, 49.691318], [-123.142879, 49.691827], [-123.142901, 49.690657], [-123.143222, 49.69051], [-123.144318, 49.690464], [-123.144593, 49.69014], [-123.144801, 49.690004], [-123.145814, 49.689717], [-123.147544, 49.689543], [-123.148292, 49.689308], [-123.148721, 49.689308], [-123.149165, 49.689415], [-123.14983, 49.689297], [-123.150052, 49.689207], [-123.15062, 49.688801], [-123.151132, 49.688747], [-123.15152, 49.688522], [-123.151906, 49.688097], [-123.152169, 49.687674], [-123.152501, 49.687441], [-123.152972, 49.687395], [-123.153306, 49.687466], [-123.153515, 49.687637], [-123.153542, 49.687781], [-123.153475, 49.688663], [-123.153768, 49.68895], [-123.154059, 49.689084], [-123.153315, 49.690299], [-123.153388, 49.691639], [-123.153679, 49.691873], [-123.153681, 49.692071], [-123.15366, 49.692413], [-123.153225, 49.692407], [-123.15324, 49.693007]]]]}, "properties": {"name": "Squamish", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Squamish", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931006", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.979408, 50.341951], [-122.997436, 50.337567], [-123.0, 50.331493], [-122.991302, 50.321866], [-122.980047, 50.316062], [-122.961375, 50.314878], [-122.957286, 50.313391], [-122.940556, 50.306907], [-122.917073, 50.302934], [-122.90946, 50.30379], [-122.905179, 50.305299], [-122.899515, 50.301217], [-122.890709, 50.296093], [-122.881068, 50.292713], [-122.879642, 50.297418], [-122.870974, 50.301336], [-122.868741, 50.301796], [-122.863212, 50.301782], [-122.858824, 50.303182], [-122.855233, 50.305378], [-122.851342, 50.306875], [-122.845629, 50.308014], [-122.838603, 50.309997], [-122.832933, 50.310854], [-122.828688, 50.310316], [-122.829076, 50.303094], [-122.836514, 50.303067], [-122.84113, 50.303199], [-122.843353, 50.290791], [-122.848293, 50.288319], [-122.854517, 50.288392], [-122.85567, 50.284104], [-122.861219, 50.284079], [-122.861949, 50.280269], [-122.869862, 50.28023], [-122.87054, 50.27588], [-122.890688, 50.27642], [-122.890626, 50.271974], [-122.886952, 50.27003], [-122.884336, 50.268908], [-122.88425, 50.261], [-122.879697, 50.261021], [-122.866787, 50.26136], [-122.866971, 50.26078], [-122.867062, 50.259865], [-122.866945, 50.259275], [-122.866452, 50.258042], [-122.866573, 50.256188], [-122.866457, 50.255344], [-122.866354, 50.254975], [-122.865907, 50.254128], [-122.865024, 50.252707], [-122.864897, 50.25223], [-122.865393, 50.250102], [-122.865426, 50.249336], [-122.865318, 50.248201], [-122.865448, 50.247584], [-122.866752, 50.244943], [-122.867226, 50.243638], [-122.867983, 50.242151], [-122.856371, 50.242425], [-122.856125, 50.242877], [-122.856749, 50.243509], [-122.857628, 50.244573], [-122.858303, 50.245512], [-122.858151, 50.246153], [-122.857113, 50.24689], [-122.853593, 50.246917], [-122.853834, 50.256766], [-122.864313, 50.256581], [-122.864627, 50.259488], [-122.864037, 50.261024], [-122.864796, 50.263168], [-122.865812, 50.264641], [-122.865733, 50.265771], [-122.864487, 50.266714], [-122.862152, 50.267442], [-122.86239, 50.268465], [-122.86181, 50.27009], [-122.861145, 50.271614], [-122.859657, 50.272509], [-122.859695, 50.273534], [-122.862814, 50.275591], [-122.862454, 50.275919], [-122.860927, 50.276808], [-122.85971, 50.277625], [-122.858927, 50.278841], [-122.858641, 50.279006], [-122.85802, 50.2796], [-122.857323, 50.280889], [-122.856734, 50.281488], [-122.852159, 50.284349], [-122.851652, 50.285108], [-122.85116, 50.285527], [-122.850636, 50.285686], [-122.850306, 50.285678], [-122.850058, 50.285607], [-122.849212, 50.28515], [-122.848931, 50.285045], [-122.848583, 50.285003], [-122.848287, 50.28507], [-122.84816, 50.285188], [-122.848324, 50.285814], [-122.848225, 50.286009], [-122.847297, 50.286778], [-122.846387, 50.287145], [-122.845754, 50.287217], [-122.845203, 50.2872], [-122.84336, 50.286822], [-122.842869, 50.28681], [-122.842431, 50.28689], [-122.840957, 50.287579], [-122.839336, 50.287762], [-122.83892, 50.287875], [-122.837417, 50.28857], [-122.836875, 50.288897], [-122.833159, 50.292528], [-122.832795, 50.29284], [-122.832344, 50.293099], [-122.831432, 50.29341], [-122.830066, 50.293587], [-122.829514, 50.293745], [-122.82337, 50.296263], [-122.821942, 50.296781], [-122.82074, 50.29716], [-122.81409, 50.298902], [-122.813249, 50.299197], [-122.812541, 50.29956], [-122.812058, 50.300025], [-122.810372, 50.302505], [-122.80993, 50.303393], [-122.809542, 50.304482], [-122.809189, 50.297736], [-122.808928, 50.296372], [-122.804092, 50.296327], [-122.804281, 50.308075], [-122.79901, 50.30817], [-122.799271, 50.314274], [-122.795743, 50.314408], [-122.792537, 50.312979], [-122.792673, 50.315672], [-122.773836, 50.315636], [-122.773684, 50.31038], [-122.769755, 50.310356], [-122.769595, 50.309735], [-122.768828, 50.309042], [-122.768133, 50.308627], [-122.766719, 50.308251], [-122.767149, 50.307762], [-122.767937, 50.307395], [-122.769033, 50.307352], [-122.769975, 50.307201], [-122.77048, 50.307292], [-122.771827, 50.307341], [-122.774552, 50.307328], [-122.775424, 50.306898], [-122.775285, 50.306583], [-122.775116, 50.306456], [-122.774796, 50.306338], [-122.774261, 50.306284], [-122.773152, 50.306318], [-122.772477, 50.30628], [-122.772114, 50.306109], [-122.772016, 50.305992], [-122.772074, 50.305488], [-122.772399, 50.305335], [-122.774702, 50.305313], [-122.775108, 50.305243], [-122.7757, 50.304965], [-122.776138, 50.304408], [-122.776575, 50.304039], [-122.776912, 50.303897], [-122.777348, 50.303736], [-122.779808, 50.303399], [-122.780102, 50.303265], [-122.780246, 50.302967], [-122.780219, 50.30259], [-122.779855, 50.3024], [-122.779475, 50.302309], [-122.778874, 50.301886], [-122.778134, 50.301066], [-122.777994, 50.300688], [-122.777944, 50.299627], [-122.778507, 50.299106], [-122.779239, 50.298882], [-122.780461, 50.298731], [-122.781136, 50.298733], [-122.782214, 50.298961], [-122.782258, 50.298817], [-122.78209, 50.298627], [-122.781389, 50.298203], [-122.78118, 50.297951], [-122.781155, 50.297259], [-122.781452, 50.296827], [-122.781411, 50.296675], [-122.779755, 50.296374], [-122.77831, 50.296363], [-122.776413, 50.296728], [-122.774798, 50.296896], [-122.77366, 50.29684], [-122.772803, 50.296874], [-122.771892, 50.296467], [-122.771543, 50.296377], [-122.771151, 50.296124], [-122.770099, 50.29606], [-122.76955, 50.296156], [-122.768847, 50.296443], [-122.768424, 50.296757], [-122.768254, 50.297135], [-122.767521, 50.297511], [-122.767157, 50.297618], [-122.766483, 50.297562], [-122.765879, 50.297606], [-122.765051, 50.297361], [-122.764297, 50.296649], [-122.763931, 50.296478], [-122.763553, 50.296514], [-122.762441, 50.296888], [-122.761005, 50.297938], [-122.75995, 50.298466], [-122.759626, 50.298521], [-122.757757, 50.298525], [-122.756944, 50.298605], [-122.756523, 50.298739], [-122.756367, 50.299026], [-122.755774, 50.29924], [-122.754648, 50.299949], [-122.753931, 50.3], [-122.753327, 50.299955], [-122.753075, 50.299999], [-122.753005, 50.300099], [-122.752779, 50.300124], [-122.749844, 50.300146], [-122.748934, 50.300099], [-122.746859, 50.299404], [-122.746214, 50.299412], [-122.744906, 50.299634], [-122.74356, 50.300304], [-122.743007, 50.300293], [-122.741887, 50.299854], [-122.74037, 50.299633], [-122.739614, 50.299575], [-122.738918, 50.299417], [-122.737867, 50.299276], [-122.737136, 50.299233], [-122.735541, 50.299317], [-122.734557, 50.29946], [-122.733618, 50.299721], [-122.732979, 50.299931], [-122.732564, 50.300147], [-122.732546, 50.300296], [-122.733231, 50.300725], [-122.733206, 50.30089], [-122.732843, 50.301267], [-122.732764, 50.301658], [-122.722883, 50.302932], [-122.724973, 50.304323], [-122.725238, 50.304277], [-122.726036, 50.305971], [-122.728284, 50.306626], [-122.729813, 50.306764], [-122.731752, 50.306743], [-122.732972, 50.306664], [-122.734437, 50.306325], [-122.73622, 50.306015], [-122.738486, 50.305354], [-122.739217, 50.304961], [-122.740259, 50.30462], [-122.740922, 50.30419], [-122.741469, 50.303985], [-122.741864, 50.303645], [-122.742089, 50.303564], [-122.742582, 50.303403], [-122.743735, 50.303243], [-122.74441, 50.303084], [-122.745476, 50.302977], [-122.746403, 50.302961], [-122.750826, 50.30334], [-122.753113, 50.303642], [-122.75408, 50.303841], [-122.754992, 50.303934], [-122.755988, 50.304115], [-122.757083, 50.304487], [-122.758892, 50.304895], [-122.759845, 50.305266], [-122.760503, 50.30568], [-122.761232, 50.305971], [-122.760636, 50.305244], [-122.761206, 50.305475], [-122.762168, 50.306253], [-122.763856, 50.307906], [-122.764559, 50.308299], [-122.766284, 50.308448], [-122.767716, 50.308873], [-122.768165, 50.309084], [-122.768865, 50.309717], [-122.76921, 50.310361], [-122.769436, 50.311564], [-122.769329, 50.31218], [-122.768899, 50.313292], [-122.768933, 50.313542], [-122.769255, 50.313949], [-122.769173, 50.315945], [-122.767604, 50.316176], [-122.76604, 50.316282], [-122.763818, 50.315888], [-122.763547, 50.315918], [-122.761367, 50.31489], [-122.760917, 50.314517], [-122.760825, 50.314212], [-122.760962, 50.312958], [-122.76095, 50.312681], [-122.7608, 50.312371], [-122.760543, 50.312073], [-122.759614, 50.311352], [-122.758988, 50.311114], [-122.758353, 50.31104], [-122.756668, 50.311037], [-122.75574, 50.311117], [-122.750824, 50.31213], [-122.749969, 50.312216], [-122.749251, 50.312213], [-122.748383, 50.312062], [-122.747735, 50.311877], [-122.746333, 50.311303], [-122.745953, 50.311076], [-122.745676, 50.310818], [-122.744572, 50.309528], [-122.744324, 50.309329], [-122.743422, 50.308965], [-122.743036, 50.308899], [-122.742538, 50.308885], [-122.74205, 50.308946], [-122.741637, 50.309061], [-122.740039, 50.309774], [-122.739252, 50.310008], [-122.736795, 50.310601], [-122.735615, 50.310746], [-122.73487, 50.310728], [-122.733693, 50.310539], [-122.732022, 50.309883], [-122.731428, 50.309725], [-122.730511, 50.309682], [-122.730499, 50.309546], [-122.730055, 50.30956], [-122.729477, 50.309779], [-122.728922, 50.309832], [-122.727936, 50.309858], [-122.726348, 50.309788], [-122.725684, 50.309836], [-122.725236, 50.309949], [-122.725081, 50.317078], [-122.726866, 50.317075], [-122.730818, 50.315037], [-122.73054, 50.310198], [-122.732103, 50.310398], [-122.733447, 50.310856], [-122.735592, 50.311105], [-122.738015, 50.310665], [-122.739471, 50.310281], [-122.738587, 50.324578], [-122.733746, 50.324645], [-122.734196, 50.331033], [-122.736436, 50.331088], [-122.737925, 50.331666], [-122.739727, 50.331598], [-122.740315, 50.33631], [-122.743902, 50.336459], [-122.74433, 50.33626], [-122.744404, 50.334506], [-122.744681, 50.333705], [-122.746092, 50.333707], [-122.751991, 50.338484], [-122.753701, 50.33769], [-122.755032, 50.336538], [-122.756446, 50.335898], [-122.75714, 50.330798], [-122.762564, 50.331128], [-122.762444, 50.341224], [-122.764417, 50.34126], [-122.76468, 50.333386], [-122.765116, 50.332482], [-122.766329, 50.331802], [-122.768336, 50.33188], [-122.769411, 50.332057], [-122.770245, 50.332965], [-122.771443, 50.333804], [-122.776695, 50.337813], [-122.778971, 50.337863], [-122.783254, 50.338083], [-122.786832, 50.334332], [-122.786755, 50.333114], [-122.784445, 50.332976], [-122.784623, 50.330919], [-122.78349, 50.330323], [-122.781961, 50.32972], [-122.77819, 50.32918], [-122.777938, 50.332257], [-122.770164, 50.331596], [-122.767344, 50.329194], [-122.767842, 50.326215], [-122.766565, 50.325998], [-122.764928, 50.324071], [-122.765087, 50.324017], [-122.765922, 50.324211], [-122.766441, 50.324143], [-122.766523, 50.324049], [-122.765946, 50.32385], [-122.765736, 50.323688], [-122.765291, 50.322634], [-122.76493, 50.322013], [-122.76487, 50.320016], [-122.764535, 50.31927], [-122.763655, 50.318602], [-122.762826, 50.318447], [-122.761884, 50.318464], [-122.761758, 50.318581], [-122.761772, 50.318697], [-122.762023, 50.318922], [-122.762133, 50.31922], [-122.762146, 50.319823], [-122.762031, 50.320083], [-122.761495, 50.320451], [-122.761045, 50.32053], [-122.759543, 50.320527], [-122.759347, 50.320455], [-122.759249, 50.32032], [-122.759265, 50.320032], [-122.760321, 50.319485], [-122.760618, 50.319063], [-122.760595, 50.3182], [-122.760314, 50.317876], [-122.760217, 50.317642], [-122.760277, 50.316987], [-122.763286, 50.316066], [-122.764313, 50.316653], [-122.765495, 50.316854], [-122.7673, 50.31672], [-122.769174, 50.316336], [-122.772083, 50.315929], [-122.792678, 50.316], [-122.792673, 50.320562], [-122.792608, 50.321078], [-122.797794, 50.320872], [-122.797903, 50.320776], [-122.798048, 50.321248], [-122.798071, 50.321879], [-122.798035, 50.326271], [-122.802697, 50.326461], [-122.802735, 50.328395], [-122.803964, 50.328321], [-122.812266, 50.32837], [-122.812178, 50.331947], [-122.814059, 50.331984], [-122.814101, 50.335633], [-122.819335, 50.335443], [-122.819583, 50.330755], [-122.820101, 50.324835], [-122.820435, 50.323779], [-122.825469, 50.323568], [-122.82565, 50.322181], [-122.827524, 50.322723], [-122.828443, 50.323061], [-122.831543, 50.322947], [-122.833163, 50.323604], [-122.835516, 50.3254], [-122.838415, 50.325788], [-122.847181, 50.326024], [-122.852222, 50.326634], [-122.854739, 50.326413], [-122.856131, 50.326187], [-122.8583, 50.326596], [-122.860408, 50.327158], [-122.865535, 50.330289], [-122.87119, 50.336811], [-122.874642, 50.339457], [-122.880698, 50.336969], [-122.884293, 50.336614], [-122.889555, 50.338627], [-122.893892, 50.335953], [-122.903927, 50.336225], [-122.908956, 50.338414], [-122.912935, 50.34178], [-122.920678, 50.339086], [-122.923119, 50.339988], [-122.934821, 50.341856], [-122.942407, 50.337544], [-122.948816, 50.340778], [-122.952402, 50.345297], [-122.955812, 50.345328], [-122.964115, 50.342285], [-122.974773, 50.338006], [-122.979408, 50.341951]]]]}, "properties": {"name": "Pemberton", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Pemberton", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931012", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.795303, 50.833681], [-123.809774, 50.837365], [-123.823508, 50.839803], [-123.827291, 50.837271], [-123.828712, 50.82877], [-123.823235, 50.823243], [-123.812039, 50.819313], [-123.803854, 50.807796], [-123.801191, 50.797182], [-123.811587, 50.795134], [-123.822902, 50.786476], [-123.837234, 50.777014], [-123.839771, 50.768767], [-123.847045, 50.761048], [-123.857929, 50.755676], [-123.867283, 50.747764], [-123.862911, 50.742857], [-123.849411, 50.740671], [-123.835643, 50.730896], [-123.827678, 50.721705], [-123.829398, 50.716675], [-123.832965, 50.713001], [-123.827933, 50.708757], [-123.819899, 50.703776], [-123.816193, 50.710428], [-123.806172, 50.713428], [-123.804112, 50.712957], [-123.802969, 50.715105], [-123.79976, 50.717181], [-123.797243, 50.717742], [-123.792933, 50.716228], [-123.789752, 50.71718], [-123.789684, 50.720862], [-123.788607, 50.72251], [-123.778269, 50.723576], [-123.774463, 50.720616], [-123.770631, 50.720524], [-123.766364, 50.721377], [-123.762563, 50.720161], [-123.757884, 50.717347], [-123.754574, 50.716119], [-123.750897, 50.715336], [-123.748759, 50.714017], [-123.745399, 50.7136], [-123.741422, 50.711017], [-123.740493, 50.71023], [-123.739582, 50.709754], [-123.738653, 50.708966], [-123.73615, 50.708092], [-123.734695, 50.706694], [-123.733328, 50.705107], [-123.732258, 50.703576], [-123.731468, 50.701788], [-123.727875, 50.697327], [-123.728011, 50.694584], [-123.730772, 50.691405], [-123.736137, 50.685735], [-123.737231, 50.680914], [-123.73628, 50.676328], [-123.739192, 50.670716], [-123.744796, 50.664169], [-123.745005, 50.657846], [-123.753798, 50.653863], [-123.754992, 50.648016], [-123.756339, 50.644651], [-123.756833, 50.638977], [-123.761249, 50.633856], [-123.759711, 50.625223], [-123.757868, 50.621284], [-123.755809, 50.615347], [-123.759731, 50.61207], [-123.764183, 50.611149], [-123.763736, 50.606854], [-123.762964, 50.605376], [-123.76486, 50.602647], [-123.764033, 50.600233], [-123.758178, 50.59719], [-123.75531, 50.595012], [-123.757243, 50.592906], [-123.755805, 50.590071], [-123.755482, 50.586211], [-123.752701, 50.583844], [-123.748183, 50.583512], [-123.745421, 50.581456], [-123.745888, 50.579386], [-123.742288, 50.576352], [-123.740801, 50.574328], [-123.744843, 50.571486], [-123.74422, 50.565824], [-123.743352, 50.559294], [-123.746257, 50.555419], [-123.745529, 50.549635], [-123.745312, 50.545897], [-123.742331, 50.543981], [-123.744124, 50.538055], [-123.751122, 50.533475], [-123.762909, 50.528575], [-123.776994, 50.527097], [-123.788882, 50.530255], [-123.79314, 50.535292], [-123.801714, 50.540481], [-123.80747, 50.53605], [-123.818495, 50.532973], [-123.832466, 50.5335], [-123.838014, 50.529857], [-123.84211, 50.528773], [-123.85565, 50.528561], [-123.886394, 50.530595], [-123.897295, 50.528388], [-123.904407, 50.52138], [-123.912979, 50.522182], [-123.925125, 50.531461], [-123.939418, 50.527639], [-123.956171, 50.520073], [-123.982813, 50.513962], [-123.985385, 50.511951], [-123.998821, 50.505546], [-124.003314, 50.496793], [-123.9964, 50.473883], [-123.984368, 50.475915], [-123.976438, 50.478702], [-123.971426, 50.48486], [-123.968099, 50.490974], [-123.961507, 50.488338], [-123.96505, 50.480475], [-123.96258, 50.473633], [-123.948709, 50.457592], [-123.936495, 50.45143], [-123.934465, 50.446088], [-123.939486, 50.434952], [-123.951464, 50.421907], [-123.944193, 50.408502], [-123.923007, 50.398902], [-123.921277, 50.392905], [-123.923954, 50.382049], [-123.911903, 50.362079], [-123.897951, 50.342848], [-123.878056, 50.330664], [-123.878334, 50.323987], [-123.88391, 50.321481], [-123.870356, 50.302676], [-123.848078, 50.300669], [-123.832934, 50.282978], [-123.811028, 50.281384], [-123.7879, 50.270344], [-123.767961, 50.262018], [-123.754541, 50.244276], [-123.739406, 50.237548], [-123.730805, 50.239483], [-123.725541, 50.235308], [-123.71466, 50.232561], [-123.705762, 50.235148], [-123.698409, 50.229516], [-123.703568, 50.219501], [-123.71603, 50.208025], [-123.726511, 50.203262], [-123.726753, 50.195514], [-123.712776, 50.191122], [-123.698686, 50.190605], [-123.686663, 50.20253], [-123.660935, 50.209394], [-123.639884, 50.212533], [-123.632801, 50.224888], [-123.631818, 50.229688], [-123.620543, 50.234283], [-123.61934, 50.241535], [-123.615104, 50.246298], [-123.599033, 50.245801], [-123.598758, 50.250271], [-123.584615, 50.249991], [-123.584235, 50.250604], [-123.584108, 50.25445], [-123.583809, 50.255303], [-123.583046, 50.256612], [-123.582023, 50.257706], [-123.581352, 50.258191], [-123.580362, 50.258732], [-123.576913, 50.260045], [-123.572841, 50.261489], [-123.570791, 50.262036], [-123.567561, 50.263059], [-123.558667, 50.266409], [-123.55414, 50.267956], [-123.547119, 50.270211], [-123.54191, 50.271456], [-123.536693, 50.272144], [-123.533299, 50.272701], [-123.531831, 50.273341], [-123.528222, 50.272868], [-123.525999, 50.272158], [-123.523098, 50.27083], [-123.521067, 50.270301], [-123.517509, 50.269934], [-123.512173, 50.270799], [-123.50997, 50.271622], [-123.508355, 50.272362], [-123.507526, 50.273026], [-123.505731, 50.275697], [-123.504038, 50.278943], [-123.501973, 50.280886], [-123.500512, 50.281946], [-123.496687, 50.283274], [-123.492583, 50.285185], [-123.485137, 50.28895], [-123.468125, 50.298364], [-123.461839, 50.30172], [-123.462551, 50.303789], [-123.465173, 50.308742], [-123.46703, 50.31202], [-123.467382, 50.315672], [-123.466617, 50.317508], [-123.461025, 50.323558], [-123.459502, 50.325322], [-123.458044, 50.328122], [-123.457252, 50.330292], [-123.45667, 50.334443], [-123.454387, 50.338689], [-123.452661, 50.340536], [-123.451692, 50.3409], [-123.446865, 50.341233], [-123.445474, 50.341098], [-123.441273, 50.341347], [-123.436568, 50.341687], [-123.434622, 50.341993], [-123.433, 50.342684], [-123.429768, 50.344857], [-123.428713, 50.34576], [-123.427846, 50.347158], [-123.427669, 50.349461], [-123.427915, 50.35153], [-123.428718, 50.35307], [-123.430482, 50.354824], [-123.432826, 50.356987], [-123.43513, 50.358555], [-123.440446, 50.361607], [-123.441597, 50.362366], [-123.443849, 50.364649], [-123.445376, 50.36585], [-123.445821, 50.366692], [-123.445519, 50.367569], [-123.444385, 50.368562], [-123.438641, 50.371749], [-123.437441, 50.372939], [-123.43582, 50.37587], [-123.43505, 50.376699], [-123.43406, 50.377268], [-123.430434, 50.378384], [-123.426329, 50.379804], [-123.42477, 50.381119], [-123.423161, 50.383472], [-123.422395, 50.389056], [-123.421379, 50.39124], [-123.416185, 50.399834], [-123.413484, 50.402044], [-123.413132, 50.402864], [-123.41392, 50.404521], [-123.414688, 50.407617], [-123.415151, 50.408939], [-123.414759, 50.409847], [-123.413421, 50.41106], [-123.411081, 50.412049], [-123.409271, 50.412705], [-123.408854, 50.413721], [-123.408763, 50.414438], [-123.408164, 50.415194], [-123.407114, 50.416929], [-123.407081, 50.417986], [-123.406315, 50.418496], [-123.383011, 50.401091], [-123.370469, 50.395405], [-123.340611, 50.375201], [-123.28865, 50.348473], [-123.287456, 50.348024], [-123.295108, 50.346625], [-123.302971, 50.346759], [-123.303157, 50.337052], [-123.297887, 50.333084], [-123.291477, 50.331336], [-123.291175, 50.32667], [-123.303427, 50.319809], [-123.302233, 50.314841], [-123.301201, 50.314379], [-123.303283, 50.31285], [-123.303913, 50.311197], [-123.303737, 50.310232], [-123.302764, 50.309336], [-123.298915, 50.306561], [-123.297308, 50.30479], [-123.295688, 50.302751], [-123.295005, 50.300934], [-123.294888, 50.29865], [-123.295697, 50.293926], [-123.297311, 50.291797], [-123.298901, 50.290017], [-123.300462, 50.289342], [-123.302233, 50.288663], [-123.303902, 50.287608], [-123.305216, 50.285377], [-123.30793, 50.281773], [-123.30966, 50.280287], [-123.311399, 50.279824], [-123.313069, 50.279658], [-123.314625, 50.279736], [-123.316257, 50.279652], [-123.31395, 50.278192], [-123.312119, 50.277799], [-123.308469, 50.277282], [-123.305061, 50.276544], [-123.302068, 50.275663], [-123.300367, 50.274671], [-123.299456, 50.274231], [-123.299079, 50.272782], [-123.298416, 50.272256], [-123.297378, 50.271791], [-123.296317, 50.270922], [-123.295346, 50.269404], [-123.294496, 50.268531], [-123.293834, 50.268005], [-123.293097, 50.266887], [-123.290923, 50.264206], [-123.290291, 50.262709], [-123.290784, 50.261783], [-123.29052, 50.260844], [-123.288828, 50.258478], [-123.28773, 50.25769], [-123.286442, 50.257311], [-123.285002, 50.257257], [-123.283978, 50.257061], [-123.283737, 50.256527], [-123.28336, 50.255079], [-123.282435, 50.254369], [-123.281435, 50.253822], [-123.281059, 50.253128], [-123.281514, 50.251529], [-123.281206, 50.250537], [-123.279469, 50.248873], [-123.276861, 50.246686], [-123.274463, 50.245249], [-123.272031, 50.244783], [-123.270369, 50.24371], [-123.268393, 50.242265], [-123.267041, 50.240674], [-123.266567, 50.23823], [-123.267008, 50.237116], [-123.268389, 50.236362], [-123.269897, 50.235631], [-123.269957, 50.235199], [-123.269243, 50.234485], [-123.267343, 50.232877], [-123.266442, 50.231816], [-123.266725, 50.230894], [-123.267696, 50.230282], [-123.270286, 50.229963], [-123.269254, 50.228533], [-123.268188, 50.228185], [-123.264002, 50.228533], [-123.26315, 50.228441], [-123.260482, 50.226385], [-123.258558, 50.226556], [-123.256353, 50.227211], [-123.254496, 50.228077], [-123.25365, 50.228814], [-123.252783, 50.229115], [-123.249782, 50.229438], [-123.247433, 50.229922], [-123.245981, 50.230758], [-123.245499, 50.231313], [-123.244417, 50.232076], [-123.243647, 50.232288], [-123.24277, 50.232371], [-123.241806, 50.232043], [-123.2411, 50.231404], [-123.240463, 50.230025], [-123.239884, 50.228406], [-123.239637, 50.22739], [-123.239504, 50.225892], [-123.239423, 50.223221], [-123.238848, 50.22171], [-123.237971, 50.220249], [-123.236482, 50.218778], [-123.234553, 50.217294], [-123.232941, 50.216087], [-123.232244, 50.215666], [-123.231799, 50.215544], [-123.231132, 50.215776], [-123.230809, 50.216109], [-123.231636, 50.219149], [-123.231819, 50.220804], [-123.231581, 50.222882], [-123.231306, 50.224197], [-123.230255, 50.225614], [-123.227373, 50.227721], [-123.225859, 50.228689], [-123.224813, 50.229495], [-123.224403, 50.230136], [-123.224625, 50.231223], [-123.224617, 50.232446], [-123.224782, 50.233054], [-123.224141, 50.23383], [-123.22291, 50.234312], [-123.221668, 50.234577], [-123.220309, 50.234496], [-123.218453, 50.233923], [-123.217346, 50.233423], [-123.216428, 50.233355], [-123.214888, 50.233778], [-123.212507, 50.234327], [-123.210552, 50.234562], [-123.208937, 50.234072], [-123.207995, 50.233459], [-123.207177, 50.232584], [-123.206591, 50.231573], [-123.206166, 50.230343], [-123.206279, 50.229415], [-123.206138, 50.228634], [-123.205271, 50.22739], [-123.203468, 50.226468], [-123.201668, 50.226374], [-123.199303, 50.22653], [-123.192633, 50.227403], [-123.183664, 50.228409], [-123.181164, 50.227862], [-123.17971, 50.227151], [-123.178339, 50.225946], [-123.177151, 50.224316], [-123.176258, 50.22242], [-123.175998, 50.220252], [-123.175898, 50.217037], [-123.176263, 50.215205], [-123.17665, 50.213915], [-123.176659, 50.213307], [-123.176205, 50.212633], [-123.166274, 50.20333], [-123.164196, 50.201456], [-123.162881, 50.200808], [-123.161278, 50.200534], [-123.159867, 50.200801], [-123.158277, 50.201573], [-123.156875, 50.202778], [-123.152619, 50.206022], [-123.151562, 50.206609], [-123.149992, 50.207097], [-123.14697, 50.2077], [-123.145267, 50.208234], [-123.143778, 50.209026], [-123.142546, 50.209508], [-123.142294, 50.209927], [-123.142099, 50.210825], [-123.142499, 50.212127], [-123.142586, 50.213261], [-123.142082, 50.214099], [-123.140655, 50.214759], [-123.139666, 50.215042], [-123.138638, 50.215124], [-123.137204, 50.214847], [-123.134847, 50.214057], [-123.132399, 50.21259], [-123.128523, 50.209251], [-123.125505, 50.207305], [-123.124587, 50.206409], [-123.123906, 50.205487], [-123.123657, 50.204361], [-123.123862, 50.203575], [-123.125953, 50.198363], [-123.125901, 50.197759], [-123.12574, 50.197501], [-123.12547, 50.197318], [-123.125069, 50.19725], [-123.124188, 50.197416], [-123.123752, 50.197615], [-123.123391, 50.197955], [-123.120659, 50.202292], [-123.120319, 50.202631], [-123.119833, 50.202848], [-123.119139, 50.202839], [-123.118147, 50.202602], [-123.117308, 50.202292], [-123.116545, 50.201659], [-123.114965, 50.199786], [-123.114495, 50.19948], [-123.113246, 50.199166], [-123.112825, 50.199022], [-123.112556, 50.198853], [-123.112305, 50.198145], [-123.109668, 50.187941], [-123.108255, 50.186421], [-123.10647, 50.185888], [-123.10356, 50.18651], [-123.09967, 50.187567], [-123.095656, 50.188474], [-123.092271, 50.188123], [-123.089723, 50.187076], [-123.087383, 50.185874], [-123.085259, 50.185649], [-123.082811, 50.186111], [-123.079801, 50.18715], [-123.075658, 50.189156], [-123.071453, 50.191087], [-123.068256, 50.191903], [-123.063283, 50.192374], [-123.058648, 50.192535], [-123.05742, 50.188182], [-123.05554, 50.185198], [-123.0539, 50.182323], [-123.052528, 50.180311], [-123.05284, 50.17925], [-123.054307, 50.177604], [-123.055673, 50.176375], [-123.056046, 50.175388], [-123.055966, 50.173316], [-123.057858, 50.172003], [-123.06216, 50.170537], [-123.068351, 50.169192], [-123.072303, 50.167845], [-123.075512, 50.165605], [-123.077118, 50.163051], [-123.07761, 50.160592], [-123.076813, 50.15676], [-123.075777, 50.152819], [-123.075494, 50.147094], [-123.074417, 50.14059], [-123.074218, 50.135504], [-123.074209, 50.132262], [-123.074026, 50.13038], [-123.073325, 50.128998], [-123.071969, 50.127363], [-123.069659, 50.125519], [-123.068736, 50.124993], [-123.006824, 50.165007], [-122.981902, 50.164747], [-122.95207, 50.16472], [-122.952048, 50.168202], [-122.933868, 50.168574], [-122.934267, 50.171095], [-122.929666, 50.171272], [-122.930259, 50.175357], [-122.92283, 50.175369], [-122.92278, 50.173998], [-122.908946, 50.173995], [-122.90868, 50.17028], [-122.897673, 50.170444], [-122.897339, 50.16648], [-122.896947, 50.166129], [-122.897256, 50.16594], [-122.897356, 50.165391], [-122.897566, 50.165041], [-122.897581, 50.164708], [-122.897947, 50.164161], [-122.897793, 50.163701], [-122.89785, 50.16353], [-122.898633, 50.163117], [-122.898705, 50.162937], [-122.898566, 50.162524], [-122.897992, 50.162145], [-122.897712, 50.161866], [-122.897629, 50.161372], [-122.897672, 50.16102], [-122.897827, 50.160851], [-122.898177, 50.160697], [-122.899059, 50.160653], [-122.899311, 50.16059], [-122.899732, 50.160106], [-122.900045, 50.159573], [-122.900394, 50.159262], [-122.900706, 50.159116], [-122.901102, 50.159092], [-122.901741, 50.159594], [-122.902655, 50.160154], [-122.904513, 50.160233], [-122.904575, 50.162545], [-122.907391, 50.162649], [-122.907321, 50.164908], [-122.909354, 50.165061], [-122.913988, 50.165293], [-122.913085, 50.155295], [-122.912963, 50.150474], [-122.914596, 50.150482], [-122.913656, 50.137159], [-122.860583, 50.13684], [-122.860387, 50.131991], [-122.860102, 50.118541], [-122.860795, 50.049962], [-122.861004, 50.04017], [-122.916316, 50.040188], [-122.914638, 50.039066], [-122.912595, 50.037906], [-122.911453, 50.037435], [-122.910228, 50.037369], [-122.906773, 50.037743], [-122.900248, 50.036015], [-122.895934, 50.033316], [-122.893423, 50.030674], [-122.89198, 50.029633], [-122.89039, 50.02953], [-122.888824, 50.030065], [-122.888342, 50.031307], [-122.887729, 50.032593], [-122.886799, 50.032884], [-122.885877, 50.032983], [-122.884827, 50.032723], [-122.882367, 50.030548], [-122.879593, 50.028804], [-122.872243, 50.026576], [-122.870761, 50.025791], [-122.870118, 50.024502], [-122.871026, 50.022254], [-122.870779, 50.020939], [-122.869473, 50.019555], [-122.867054, 50.018443], [-122.863641, 50.01724], [-122.86146, 50.016315], [-122.857596, 50.016289], [-122.854164, 50.016384], [-122.852176, 50.016201], [-122.849436, 50.015307], [-122.847816, 50.014353], [-122.845513, 50.01277], [-122.843433, 50.011866], [-122.840533, 50.01159], [-122.838196, 50.011795], [-122.834407, 50.012469], [-122.831945, 50.013336], [-122.829408, 50.014417], [-122.827238, 50.01513], [-122.824244, 50.015451], [-122.821957, 50.015209], [-122.820662, 50.014547], [-122.819185, 50.012952], [-122.817306, 50.012597], [-122.815065, 50.012715], [-122.81244, 50.01318], [-122.80358, 50.016629], [-122.802144, 50.017119], [-122.800915, 50.01786], [-122.800499, 50.019185], [-122.801178, 50.023474], [-122.800999, 50.025902], [-122.79996, 50.026875], [-122.792817, 50.029469], [-122.791497, 50.029999], [-122.790798, 50.030775], [-122.790381, 50.0321], [-122.791025, 50.033496], [-122.79219, 50.034713], [-122.793686, 50.035925], [-122.794635, 50.037082], [-122.794167, 50.038344], [-122.793221, 50.039635], [-122.791842, 50.041103], [-122.791378, 50.043067], [-122.79175, 50.045454], [-122.793234, 50.047396], [-122.79717, 50.051425], [-122.800179, 50.053935], [-122.802059, 50.055198], [-122.803921, 50.055923], [-122.80062, 50.057351], [-122.801855, 50.061431], [-122.802853, 50.066762], [-122.802842, 50.078368], [-122.805797, 50.087102], [-122.800739, 50.096413], [-122.794574, 50.102255], [-122.793118, 50.105589], [-122.793173, 50.105728], [-122.792975, 50.107291], [-122.792264, 50.109645], [-122.791198, 50.116071], [-122.789357, 50.123101], [-122.789425, 50.126144], [-122.790116, 50.129043], [-122.789692, 50.130073], [-122.788287, 50.131138], [-122.780632, 50.13213], [-122.777013, 50.13378], [-122.772493, 50.135947], [-122.768627, 50.138105], [-122.766905, 50.137625], [-122.764358, 50.136149], [-122.76228, 50.133237], [-122.749124, 50.140235], [-122.743529, 50.137876], [-122.741244, 50.140347], [-122.742402, 50.144199], [-122.739103, 50.147861], [-122.733962, 50.151296], [-122.725639, 50.153683], [-122.717206, 50.152707], [-122.713652, 50.148806], [-122.707509, 50.145781], [-122.701045, 50.144777], [-122.693024, 50.144298], [-122.681997, 50.144196], [-122.671367, 50.144171], [-122.659916, 50.143148], [-122.659291, 50.140382], [-122.658436, 50.134931], [-122.651752, 50.131237], [-122.637998, 50.127804], [-122.638225, 50.123263], [-122.573832, 50.123497], [-122.551151, 50.123819], [-122.532073, 50.123803], [-122.528469, 50.123725], [-122.522168, 50.12384], [-122.51885, 50.123741], [-122.405867, 50.123336], [-122.356993, 50.12405], [-122.25844, 50.123444], [-122.268204, 50.132256], [-122.275964, 50.141162], [-122.271197, 50.145238], [-122.286259, 50.152479], [-122.290864, 50.157457], [-122.298321, 50.173745], [-122.313553, 50.172309], [-122.316251, 50.18712], [-122.301555, 50.192589], [-122.303108, 50.198586], [-122.294982, 50.201099], [-122.283334, 50.199994], [-122.277951, 50.203316], [-122.27735, 50.214051], [-122.269033, 50.218923], [-122.267684, 50.222436], [-122.274956, 50.224425], [-122.286436, 50.223864], [-122.298996, 50.229073], [-122.30163, 50.229787], [-122.314867, 50.228718], [-122.353465, 50.230992], [-122.357874, 50.235495], [-122.351472, 50.246725], [-122.346985, 50.250691], [-122.360864, 50.257876], [-122.373659, 50.26161], [-122.371312, 50.270976], [-122.363505, 50.282195], [-122.357559, 50.287402], [-122.36057, 50.291893], [-122.364403, 50.304248], [-122.366382, 50.311555], [-122.385161, 50.318659], [-122.408058, 50.332909], [-122.438751, 50.335348], [-122.462446, 50.351185], [-122.47065, 50.358585], [-122.472092, 50.371647], [-122.473944, 50.376029], [-122.475527, 50.380167], [-122.476946, 50.38348], [-122.486759, 50.390596], [-122.49288, 50.391163], [-122.499115, 50.392923], [-122.517067, 50.387737], [-122.527524, 50.390485], [-122.527626, 50.392108], [-122.523207, 50.399916], [-122.52332, 50.407291], [-122.525925, 50.409914], [-122.525188, 50.4148], [-122.517257, 50.419696], [-122.505088, 50.417498], [-122.501942, 50.421547], [-122.495386, 50.420229], [-122.493986, 50.425694], [-122.500574, 50.430868], [-122.505363, 50.441018], [-122.498085, 50.444567], [-122.485435, 50.443464], [-122.465075, 50.437232], [-122.446005, 50.430342], [-122.441075, 50.426672], [-122.435146, 50.418289], [-122.42537, 50.408532], [-122.417992, 50.402905], [-122.414255, 50.398506], [-122.407863, 50.399293], [-122.406771, 50.405307], [-122.40421, 50.406315], [-122.401072, 50.408553], [-122.398732, 50.409995], [-122.396547, 50.411121], [-122.389829, 50.411502], [-122.380773, 50.410277], [-122.371275, 50.411052], [-122.355282, 50.414517], [-122.335937, 50.416168], [-122.33091, 50.418331], [-122.314799, 50.424078], [-122.304444, 50.430924], [-122.302779, 50.44095], [-122.306132, 50.454529], [-122.304067, 50.462985], [-122.293344, 50.469664], [-122.2873, 50.475429], [-122.290211, 50.48142], [-122.298345, 50.486854], [-122.311532, 50.494911], [-122.311093, 50.501693], [-122.314671, 50.507678], [-122.323897, 50.508034], [-122.333402, 50.515394], [-122.337767, 50.520568], [-122.340873, 50.520801], [-122.356391, 50.52323], [-122.360869, 50.524392], [-122.374606, 50.53131], [-122.387732, 50.53661], [-122.396695, 50.542622], [-122.407321, 50.545649], [-122.418853, 50.552642], [-122.439695, 50.555868], [-122.447422, 50.557456], [-122.450415, 50.558125], [-122.45528, 50.561371], [-122.449467, 50.563262], [-122.446439, 50.564312], [-122.441951, 50.566298], [-122.435345, 50.569446], [-122.427071, 50.574012], [-122.425543, 50.575132], [-122.422417, 50.577179], [-122.419225, 50.579678], [-122.416092, 50.582394], [-122.413988, 50.584456], [-122.409728, 50.590443], [-122.408934, 50.591312], [-122.409198, 50.591339], [-122.409811, 50.59188], [-122.410559, 50.59213], [-122.412171, 50.592078], [-122.416077, 50.593336], [-122.421342, 50.595203], [-122.432913, 50.59887], [-122.432616, 50.599141], [-122.43199, 50.599489], [-122.43186, 50.599856], [-122.431576, 50.599945], [-122.431206, 50.600177], [-122.431033, 50.600356], [-122.430916, 50.600761], [-122.43066, 50.600885], [-122.430093, 50.601017], [-122.429494, 50.601508], [-122.429067, 50.602945], [-122.429002, 50.603575], [-122.429099, 50.603746], [-122.43021, 50.60421], [-122.43054, 50.604851], [-122.43058, 50.605085], [-122.430456, 50.606054], [-122.430206, 50.60688], [-122.430182, 50.607745], [-122.42976, 50.608669], [-122.429771, 50.608857], [-122.430101, 50.609651], [-122.430111, 50.610074], [-122.429923, 50.610477], [-122.429736, 50.610675], [-122.429632, 50.611105], [-122.429371, 50.611653], [-122.429508, 50.61204], [-122.429592, 50.612085], [-122.430272, 50.611872], [-122.431114, 50.612489], [-122.431357, 50.613316], [-122.431246, 50.614369], [-122.431611, 50.615765], [-122.431493, 50.616142], [-122.431266, 50.616266], [-122.430485, 50.616622], [-122.429846, 50.616717], [-122.428864, 50.617234], [-122.428564, 50.617548], [-122.428377, 50.617942], [-122.428219, 50.618103], [-122.428186, 50.618491], [-122.428503, 50.619094], [-122.428963, 50.61961], [-122.42937, 50.619899], [-122.43025, 50.620704], [-122.430417, 50.620993], [-122.430415, 50.621172], [-122.429675, 50.622725], [-122.42931, 50.62372], [-122.428937, 50.62533], [-122.429091, 50.626697], [-122.428473, 50.628591], [-122.428423, 50.629202], [-122.428322, 50.629444], [-122.427455, 50.630256], [-122.437088, 50.63026], [-122.437029, 50.621492], [-122.436892, 50.619309], [-122.448161, 50.619451], [-122.448316, 50.613914], [-122.449349, 50.607628], [-122.449788, 50.60195], [-122.454024, 50.601995], [-122.458014, 50.602116], [-122.45827, 50.599394], [-122.458194, 50.598427], [-122.459995, 50.598198], [-122.462426, 50.597379], [-122.461292, 50.592161], [-122.466777, 50.591048], [-122.467137, 50.583779], [-122.467016, 50.578203], [-122.478083, 50.577682], [-122.478375, 50.566636], [-122.482997, 50.566677], [-122.504148, 50.566508], [-122.507739, 50.56836], [-122.537196, 50.580461], [-122.550394, 50.579817], [-122.585397, 50.593287], [-122.609863, 50.599792], [-122.607805, 50.604173], [-122.610818, 50.609456], [-122.612513, 50.615613], [-122.610888, 50.627217], [-122.609213, 50.633417], [-122.608912, 50.634302], [-122.618679, 50.639401], [-122.624784, 50.646794], [-122.629237, 50.652807], [-122.659216, 50.651132], [-122.663712, 50.649891], [-122.669515, 50.650412], [-122.671631, 50.651441], [-122.678116, 50.652096], [-122.687644, 50.650362], [-122.694141, 50.647039], [-122.702631, 50.643917], [-122.703928, 50.643555], [-122.716766, 50.65204], [-122.72901, 50.656097], [-122.751519, 50.65412], [-122.754263, 50.657389], [-122.757895, 50.658995], [-122.761247, 50.659174], [-122.7634, 50.659974], [-122.766959, 50.661413], [-122.769414, 50.65973], [-122.775199, 50.66308], [-122.780158, 50.665443], [-122.783165, 50.664125], [-122.784569, 50.661772], [-122.782821, 50.658903], [-122.78113, 50.657901], [-122.778609, 50.656942], [-122.777554, 50.655962], [-122.777527, 50.655028], [-122.78057, 50.653306], [-122.785721, 50.65143], [-122.788506, 50.650894], [-122.792442, 50.648452], [-122.801403, 50.646169], [-122.816386, 50.647399], [-122.832833, 50.6462], [-122.848739, 50.630272], [-122.858561, 50.626336], [-122.858525, 50.623508], [-122.861071, 50.619491], [-122.864907, 50.617011], [-122.871733, 50.615017], [-122.880948, 50.614421], [-122.888717, 50.614156], [-122.891972, 50.612897], [-122.896966, 50.609154], [-122.906889, 50.603505], [-122.913391, 50.602011], [-122.922929, 50.601064], [-122.927939, 50.601178], [-122.928995, 50.599794], [-122.92973, 50.596861], [-122.931383, 50.584776], [-122.932863, 50.58009], [-122.934934, 50.576546], [-122.941756, 50.562392], [-122.94163, 50.558882], [-122.94099, 50.55681], [-122.940893, 50.552895], [-122.942802, 50.551063], [-122.947247, 50.548124], [-122.951299, 50.54721], [-122.956761, 50.548728], [-122.96823, 50.561473], [-122.978533, 50.56865], [-122.981144, 50.569411], [-122.983385, 50.568247], [-122.98687, 50.567683], [-122.98985, 50.569183], [-122.990892, 50.57385], [-122.990779, 50.576241], [-122.998752, 50.584917], [-122.999284, 50.584828], [-122.99952, 50.585482], [-123.004206, 50.591103], [-123.01881, 50.60111], [-123.028443, 50.603087], [-123.038835, 50.601197], [-123.042685, 50.598986], [-123.043759, 50.59482], [-123.037123, 50.591641], [-123.034852, 50.590964], [-123.031596, 50.588087], [-123.031666, 50.58408], [-123.034529, 50.57967], [-123.035497, 50.578803], [-123.044597, 50.577311], [-123.060817, 50.583171], [-123.081475, 50.593997], [-123.095407, 50.605373], [-123.096677, 50.607469], [-123.104265, 50.617054], [-123.104661, 50.617203], [-123.107375, 50.619721], [-123.111909, 50.623388], [-123.116439, 50.626], [-123.121649, 50.629156], [-123.132515, 50.63271], [-123.141921, 50.633875], [-123.154233, 50.634543], [-123.163709, 50.6347], [-123.167271, 50.636723], [-123.167124, 50.642831], [-123.157318, 50.653222], [-123.180691, 50.656632], [-123.187465, 50.665407], [-123.198227, 50.675023], [-123.197963, 50.681757], [-123.200053, 50.688479], [-123.215028, 50.705837], [-123.220086, 50.710915], [-123.235801, 50.72296], [-123.268201, 50.731135], [-123.274767, 50.732692], [-123.290908, 50.732881], [-123.307673, 50.72969], [-123.321327, 50.731355], [-123.338189, 50.749659], [-123.358256, 50.761165], [-123.359463, 50.774854], [-123.36073, 50.791534], [-123.365514, 50.800621], [-123.369964, 50.796198], [-123.372124, 50.794662], [-123.376069, 50.792382], [-123.381979, 50.789697], [-123.407706, 50.780559], [-123.420551, 50.785808], [-123.426403, 50.790902], [-123.439073, 50.796549], [-123.454297, 50.798209], [-123.469838, 50.794092], [-123.488823, 50.785009], [-123.490207, 50.779644], [-123.49673, 50.779147], [-123.502803, 50.779854], [-123.511693, 50.786784], [-123.52029, 50.794349], [-123.525107, 50.797753], [-123.5332, 50.800561], [-123.53885, 50.801013], [-123.544485, 50.801204], [-123.549577, 50.800515], [-123.562817, 50.797549], [-123.575675, 50.792179], [-123.585183, 50.786097], [-123.59656, 50.780968], [-123.607078, 50.7768], [-123.612755, 50.776304], [-123.615203, 50.778658], [-123.617431, 50.781488], [-123.61923, 50.785715], [-123.630051, 50.7926], [-123.64004, 50.795175], [-123.675371, 50.801083], [-123.678867, 50.801074], [-123.683841, 50.800798], [-123.688853, 50.799677], [-123.696392, 50.792217], [-123.706557, 50.792373], [-123.719872, 50.801255], [-123.725131, 50.813325], [-123.72496, 50.828888], [-123.723802, 50.835756], [-123.725082, 50.840099], [-123.731266, 50.843925], [-123.743179, 50.844072], [-123.769473, 50.840837], [-123.782962, 50.835578], [-123.795303, 50.833681]], [[-122.485552, 50.541806], [-122.490019, 50.541827], [-122.491287, 50.541911], [-122.490976, 50.55331], [-122.490267, 50.553285], [-122.490281, 50.553507], [-122.477868, 50.549797], [-122.476025, 50.551813], [-122.475799, 50.552521], [-122.474747, 50.553159], [-122.474643, 50.553058], [-122.474306, 50.55295], [-122.474153, 50.552742], [-122.473789, 50.552488], [-122.473085, 50.552251], [-122.472662, 50.552222], [-122.472507, 50.552132], [-122.472384, 50.551879], [-122.472386, 50.551672], [-122.472501, 50.551385], [-122.472686, 50.551305], [-122.472687, 50.551251], [-122.472393, 50.551097], [-122.471983, 50.551006], [-122.471886, 50.550906], [-122.471841, 50.549989], [-122.471714, 50.549898], [-122.471591, 50.54951], [-122.470919, 50.549003], [-122.469738, 50.548657], [-122.46906, 50.548582], [-122.468454, 50.548588], [-122.467805, 50.54863], [-122.467451, 50.548736], [-122.467307, 50.548969], [-122.466768, 50.549147], [-122.466454, 50.54955], [-122.46584, 50.550104], [-122.465569, 50.550238], [-122.46601, 50.54225], [-122.485552, 50.541806]], [[-122.497102, 50.526568], [-122.497652, 50.526636], [-122.497016, 50.527626], [-122.496824, 50.528321], [-122.496079, 50.528343], [-122.491001, 50.527854], [-122.490967, 50.527429], [-122.491102, 50.52637], [-122.497102, 50.526568]], [[-122.485461, 50.529388], [-122.485537, 50.531076], [-122.482648, 50.53123], [-122.482526, 50.527251], [-122.485585, 50.527298], [-122.485461, 50.529388]], [[-123.0, 50.331493], [-122.997436, 50.337567], [-122.979408, 50.341951], [-122.974773, 50.338006], [-122.964115, 50.342285], [-122.955812, 50.345328], [-122.952402, 50.345297], [-122.948816, 50.340778], [-122.942407, 50.337544], [-122.934821, 50.341856], [-122.923119, 50.339988], [-122.920678, 50.339086], [-122.912935, 50.34178], [-122.908956, 50.338414], [-122.903927, 50.336225], [-122.893892, 50.335953], [-122.889555, 50.338627], [-122.884293, 50.336614], [-122.880698, 50.336969], [-122.874642, 50.339457], [-122.87119, 50.336811], [-122.865535, 50.330289], [-122.860408, 50.327158], [-122.8583, 50.326596], [-122.856131, 50.326187], [-122.854739, 50.326413], [-122.852222, 50.326634], [-122.847181, 50.326024], [-122.838415, 50.325788], [-122.835516, 50.3254], [-122.833163, 50.323604], [-122.831543, 50.322947], [-122.828443, 50.323061], [-122.827524, 50.322723], [-122.82565, 50.322181], [-122.825469, 50.323568], [-122.820435, 50.323779], [-122.820101, 50.324835], [-122.819583, 50.330755], [-122.819335, 50.335443], [-122.814101, 50.335633], [-122.814059, 50.331984], [-122.812178, 50.331947], [-122.812266, 50.32837], [-122.803964, 50.328321], [-122.802735, 50.328395], [-122.802697, 50.326461], [-122.798035, 50.326271], [-122.798071, 50.321879], [-122.798048, 50.321248], [-122.797903, 50.320776], [-122.797794, 50.320872], [-122.792608, 50.321078], [-122.792673, 50.320562], [-122.792678, 50.316], [-122.772083, 50.315929], [-122.769174, 50.316336], [-122.7673, 50.31672], [-122.765495, 50.316854], [-122.764313, 50.316653], [-122.763286, 50.316066], [-122.760277, 50.316987], [-122.760217, 50.317642], [-122.760314, 50.317876], [-122.760595, 50.3182], [-122.760618, 50.319063], [-122.760321, 50.319485], [-122.759265, 50.320032], [-122.759249, 50.32032], [-122.759347, 50.320455], [-122.759543, 50.320527], [-122.761045, 50.32053], [-122.761495, 50.320451], [-122.762031, 50.320083], [-122.762146, 50.319823], [-122.762133, 50.31922], [-122.762023, 50.318922], [-122.761772, 50.318697], [-122.761758, 50.318581], [-122.761884, 50.318464], [-122.762826, 50.318447], [-122.763655, 50.318602], [-122.764535, 50.31927], [-122.76487, 50.320016], [-122.76493, 50.322013], [-122.765291, 50.322634], [-122.765736, 50.323688], [-122.765946, 50.32385], [-122.766523, 50.324049], [-122.766441, 50.324143], [-122.765922, 50.324211], [-122.765087, 50.324017], [-122.764928, 50.324071], [-122.766565, 50.325998], [-122.767842, 50.326215], [-122.767344, 50.329194], [-122.770164, 50.331596], [-122.777938, 50.332257], [-122.77819, 50.32918], [-122.781961, 50.32972], [-122.78349, 50.330323], [-122.784623, 50.330919], [-122.784445, 50.332976], [-122.786755, 50.333114], [-122.786832, 50.334332], [-122.783254, 50.338083], [-122.778971, 50.337863], [-122.776695, 50.337813], [-122.771443, 50.333804], [-122.770245, 50.332965], [-122.769411, 50.332057], [-122.768336, 50.33188], [-122.766329, 50.331802], [-122.765116, 50.332482], [-122.76468, 50.333386], [-122.764417, 50.34126], [-122.762444, 50.341224], [-122.762564, 50.331128], [-122.75714, 50.330798], [-122.756446, 50.335898], [-122.755032, 50.336538], [-122.753701, 50.33769], [-122.751991, 50.338484], [-122.746092, 50.333707], [-122.744681, 50.333705], [-122.744404, 50.334506], [-122.74433, 50.33626], [-122.743902, 50.336459], [-122.740315, 50.33631], [-122.739727, 50.331598], [-122.737925, 50.331666], [-122.736436, 50.331088], [-122.734196, 50.331033], [-122.733746, 50.324645], [-122.738587, 50.324578], [-122.739471, 50.310281], [-122.738015, 50.310665], [-122.735592, 50.311105], [-122.733447, 50.310856], [-122.732103, 50.310398], [-122.73054, 50.310198], [-122.730818, 50.315037], [-122.726866, 50.317075], [-122.725692, 50.317077], [-122.725564, 50.318896], [-122.725089, 50.31894], [-122.725008, 50.324692], [-122.724214, 50.324754], [-122.717776, 50.32463], [-122.717665, 50.317218], [-122.721997, 50.317005], [-122.725081, 50.317078], [-122.725236, 50.309949], [-122.725684, 50.309836], [-122.726348, 50.309788], [-122.728166, 50.309852], [-122.727449, 50.309689], [-122.726186, 50.309518], [-122.723356, 50.30982], [-122.722428, 50.31125], [-122.721515, 50.311583], [-122.720136, 50.311868], [-122.718825, 50.312522], [-122.718248, 50.312654], [-122.717713, 50.312905], [-122.71649, 50.313271], [-122.716027, 50.313243], [-122.715537, 50.313026], [-122.715021, 50.312243], [-122.714797, 50.312179], [-122.714067, 50.312204], [-122.71128, 50.313106], [-122.709591, 50.313938], [-122.708733, 50.313945], [-122.707676, 50.31355], [-122.707326, 50.313604], [-122.70603, 50.314], [-122.705626, 50.314568], [-122.705507, 50.316085], [-122.705114, 50.317336], [-122.704381, 50.318707], [-122.702758, 50.320577], [-122.7015, 50.321494], [-122.700999, 50.32135], [-122.700844, 50.32192], [-122.702204, 50.322615], [-122.702666, 50.322761], [-122.704533, 50.323125], [-122.705066, 50.323289], [-122.705783, 50.323299], [-122.706036, 50.323192], [-122.706268, 50.323003], [-122.70631, 50.322641], [-122.706998, 50.322125], [-122.708235, 50.321795], [-122.709011, 50.321383], [-122.709704, 50.320854], [-122.710287, 50.320556], [-122.710964, 50.320337], [-122.711773, 50.32018], [-122.708684, 50.345923], [-122.708549, 50.353091], [-122.706305, 50.353064], [-122.693851, 50.352556], [-122.686998, 50.352448], [-122.684594, 50.344073], [-122.680284, 50.344237], [-122.659282, 50.344184], [-122.659249, 50.341212], [-122.63811, 50.341206], [-122.639108, 50.331579], [-122.640167, 50.323107], [-122.633293, 50.323137], [-122.631062, 50.323221], [-122.630799, 50.310523], [-122.630963, 50.310522], [-122.628672, 50.309487], [-122.628465, 50.309287], [-122.628069, 50.30942], [-122.62732, 50.31005], [-122.626741, 50.310218], [-122.625941, 50.309191], [-122.624038, 50.309183], [-122.623092, 50.309366], [-122.622597, 50.30902], [-122.621526, 50.308948], [-122.61998, 50.308604], [-122.617618, 50.308912], [-122.612687, 50.308707], [-122.61246, 50.308379], [-122.610923, 50.307704], [-122.610386, 50.305706], [-122.611749, 50.305737], [-122.612635, 50.305489], [-122.614039, 50.305358], [-122.615701, 50.304978], [-122.61708, 50.304613], [-122.617714, 50.304273], [-122.618337, 50.303736], [-122.61866, 50.303567], [-122.619716, 50.303282], [-122.62609, 50.303239], [-122.626485, 50.303151], [-122.627077, 50.302815], [-122.627274, 50.302776], [-122.628253, 50.303454], [-122.629058, 50.304364], [-122.629632, 50.304653], [-122.630641, 50.30491], [-122.634176, 50.305505], [-122.639287, 50.305439], [-122.639767, 50.305136], [-122.640841, 50.304239], [-122.641883, 50.303883], [-122.643139, 50.303248], [-122.643831, 50.303289], [-122.645126, 50.303264], [-122.646138, 50.303182], [-122.647149, 50.303058], [-122.648235, 50.302779], [-122.64975, 50.301707], [-122.650122, 50.301214], [-122.65132, 50.300072], [-122.652998, 50.299211], [-122.655205, 50.2998], [-122.655968, 50.299941], [-122.65646, 50.300015], [-122.657989, 50.300092], [-122.660295, 50.299792], [-122.663356, 50.299513], [-122.664312, 50.299255], [-122.665398, 50.298808], [-122.666016, 50.298666], [-122.668474, 50.298664], [-122.669106, 50.298711], [-122.670115, 50.298885], [-122.671963, 50.29961], [-122.673252, 50.3], [-122.673532, 50.300136], [-122.673996, 50.3002], [-122.675213, 50.300563], [-122.676714, 50.300838], [-122.677821, 50.30111], [-122.679252, 50.301276], [-122.682244, 50.301329], [-122.683211, 50.301449], [-122.684307, 50.301479], [-122.686454, 50.301754], [-122.687854, 50.302154], [-122.689888, 50.302447], [-122.69111, 50.302748], [-122.692609, 50.303021], [-122.693548, 50.303275], [-122.695345, 50.303505], [-122.696986, 50.303599], [-122.697701, 50.303807], [-122.698727, 50.303972], [-122.701612, 50.30487], [-122.703002, 50.305099], [-122.703521, 50.305109], [-122.704323, 50.304985], [-122.704688, 50.304985], [-122.70696, 50.305216], [-122.708786, 50.305222], [-122.709814, 50.304962], [-122.710854, 50.304579], [-122.711247, 50.304498], [-122.711782, 50.304401], [-122.712752, 50.304394], [-122.714255, 50.304227], [-122.715323, 50.303933], [-122.716872, 50.303253], [-122.717982, 50.303319], [-122.718879, 50.303528], [-122.719199, 50.303861], [-122.719577, 50.304123], [-122.720516, 50.304333], [-122.721527, 50.304371], [-122.721808, 50.304534], [-122.722632, 50.3053], [-122.723402, 50.305724], [-122.724521, 50.306194], [-122.725614, 50.306781], [-122.726119, 50.306864], [-122.726834, 50.307153], [-122.727772, 50.307381], [-122.728124, 50.307435], [-122.729332, 50.307456], [-122.729517, 50.307648], [-122.73217, 50.30879], [-122.732811, 50.309449], [-122.732958, 50.310065], [-122.732896, 50.310228], [-122.733693, 50.310539], [-122.734187, 50.310641], [-122.73487, 50.310728], [-122.735615, 50.310746], [-122.736795, 50.310601], [-122.740039, 50.309774], [-122.741637, 50.309061], [-122.742538, 50.308885], [-122.743422, 50.308965], [-122.744324, 50.309329], [-122.744572, 50.309528], [-122.745676, 50.310818], [-122.745953, 50.311076], [-122.746333, 50.311303], [-122.747735, 50.311877], [-122.748383, 50.312062], [-122.749251, 50.312213], [-122.749969, 50.312216], [-122.750824, 50.31213], [-122.75574, 50.311117], [-122.756668, 50.311037], [-122.758353, 50.31104], [-122.758988, 50.311114], [-122.759614, 50.311352], [-122.760543, 50.312073], [-122.7608, 50.312371], [-122.76095, 50.312681], [-122.760962, 50.312958], [-122.760825, 50.314212], [-122.760917, 50.314517], [-122.761367, 50.31489], [-122.763547, 50.315918], [-122.763818, 50.315888], [-122.76604, 50.316282], [-122.767604, 50.316176], [-122.769173, 50.315945], [-122.769255, 50.313949], [-122.768933, 50.313542], [-122.768899, 50.313292], [-122.769329, 50.31218], [-122.769436, 50.311564], [-122.76921, 50.310361], [-122.768865, 50.309717], [-122.768165, 50.309084], [-122.767716, 50.308873], [-122.766284, 50.308448], [-122.764559, 50.308299], [-122.763856, 50.307906], [-122.762168, 50.306253], [-122.761206, 50.305475], [-122.760636, 50.305244], [-122.761232, 50.305971], [-122.760503, 50.30568], [-122.759845, 50.305266], [-122.759172, 50.304985], [-122.758414, 50.304759], [-122.757083, 50.304487], [-122.755765, 50.304069], [-122.75408, 50.303841], [-122.753113, 50.303642], [-122.752187, 50.303549], [-122.751681, 50.303431], [-122.74792, 50.303082], [-122.7458, 50.30296], [-122.74441, 50.303084], [-122.743735, 50.303243], [-122.742582, 50.303403], [-122.741864, 50.303645], [-122.741469, 50.303985], [-122.740922, 50.30419], [-122.740357, 50.304576], [-122.739217, 50.304961], [-122.738486, 50.305354], [-122.73622, 50.306015], [-122.734437, 50.306325], [-122.732972, 50.306664], [-122.731752, 50.306743], [-122.729519, 50.306755], [-122.728284, 50.306626], [-122.726036, 50.305971], [-122.725238, 50.304277], [-122.724973, 50.304323], [-122.722883, 50.302932], [-122.732764, 50.301658], [-122.732843, 50.301267], [-122.733206, 50.30089], [-122.733231, 50.300725], [-122.732546, 50.300296], [-122.732564, 50.300147], [-122.732979, 50.299931], [-122.733618, 50.299721], [-122.734557, 50.29946], [-122.735541, 50.299317], [-122.737136, 50.299233], [-122.737867, 50.299276], [-122.738918, 50.299417], [-122.739614, 50.299575], [-122.74037, 50.299633], [-122.741887, 50.299854], [-122.743007, 50.300293], [-122.74356, 50.300304], [-122.744906, 50.299634], [-122.746214, 50.299412], [-122.746859, 50.299404], [-122.748934, 50.300099], [-122.749844, 50.300146], [-122.752779, 50.300124], [-122.753005, 50.300099], [-122.753075, 50.299999], [-122.753327, 50.299955], [-122.753931, 50.3], [-122.754648, 50.299949], [-122.755774, 50.29924], [-122.756367, 50.299026], [-122.756523, 50.298739], [-122.756944, 50.298605], [-122.757757, 50.298525], [-122.759626, 50.298521], [-122.75995, 50.298466], [-122.761005, 50.297938], [-122.762441, 50.296888], [-122.763553, 50.296514], [-122.763931, 50.296478], [-122.764297, 50.296649], [-122.765051, 50.297361], [-122.765879, 50.297606], [-122.766483, 50.297562], [-122.767157, 50.297618], [-122.767521, 50.297511], [-122.768254, 50.297135], [-122.768424, 50.296757], [-122.768847, 50.296443], [-122.76955, 50.296156], [-122.770099, 50.29606], [-122.771151, 50.296124], [-122.771543, 50.296377], [-122.771892, 50.296467], [-122.772803, 50.296874], [-122.77366, 50.29684], [-122.774798, 50.296896], [-122.776413, 50.296728], [-122.77831, 50.296363], [-122.779755, 50.296374], [-122.781411, 50.296675], [-122.781452, 50.296827], [-122.781155, 50.297259], [-122.78118, 50.297951], [-122.781389, 50.298203], [-122.78209, 50.298627], [-122.782258, 50.298817], [-122.782214, 50.298961], [-122.781136, 50.298733], [-122.780461, 50.298731], [-122.779239, 50.298882], [-122.778507, 50.299106], [-122.777944, 50.299627], [-122.777994, 50.300688], [-122.778134, 50.301066], [-122.778874, 50.301886], [-122.779475, 50.302309], [-122.779855, 50.3024], [-122.780219, 50.30259], [-122.780246, 50.302967], [-122.780102, 50.303265], [-122.779808, 50.303399], [-122.777348, 50.303736], [-122.776912, 50.303897], [-122.776575, 50.304039], [-122.776138, 50.304408], [-122.7757, 50.304965], [-122.775108, 50.305243], [-122.774702, 50.305313], [-122.772399, 50.305335], [-122.772074, 50.305488], [-122.772016, 50.305992], [-122.772114, 50.306109], [-122.772477, 50.30628], [-122.773152, 50.306318], [-122.774261, 50.306284], [-122.774796, 50.306338], [-122.775116, 50.306456], [-122.775285, 50.306583], [-122.775424, 50.306898], [-122.774552, 50.307328], [-122.771827, 50.307341], [-122.77048, 50.307292], [-122.769975, 50.307201], [-122.769033, 50.307352], [-122.767937, 50.307395], [-122.767149, 50.307762], [-122.766719, 50.308251], [-122.768133, 50.308627], [-122.768828, 50.309042], [-122.769595, 50.309735], [-122.769755, 50.310356], [-122.773684, 50.31038], [-122.773836, 50.315636], [-122.792673, 50.315672], [-122.792537, 50.312979], [-122.795743, 50.314408], [-122.799271, 50.314274], [-122.79901, 50.30817], [-122.804281, 50.308075], [-122.804092, 50.296327], [-122.808928, 50.296372], [-122.809189, 50.297736], [-122.809542, 50.304482], [-122.80993, 50.303393], [-122.810372, 50.302505], [-122.812058, 50.300025], [-122.812541, 50.29956], [-122.813249, 50.299197], [-122.81409, 50.298902], [-122.82074, 50.29716], [-122.821942, 50.296781], [-122.82337, 50.296263], [-122.829514, 50.293745], [-122.830066, 50.293587], [-122.831432, 50.29341], [-122.832344, 50.293099], [-122.832795, 50.29284], [-122.833159, 50.292528], [-122.836875, 50.288897], [-122.837417, 50.28857], [-122.83892, 50.287875], [-122.839336, 50.287762], [-122.840957, 50.287579], [-122.842431, 50.28689], [-122.842869, 50.28681], [-122.84336, 50.286822], [-122.845203, 50.2872], [-122.845754, 50.287217], [-122.846387, 50.287145], [-122.847297, 50.286778], [-122.848225, 50.286009], [-122.848324, 50.285814], [-122.84816, 50.285188], [-122.848287, 50.28507], [-122.848583, 50.285003], [-122.848931, 50.285045], [-122.849212, 50.28515], [-122.850058, 50.285607], [-122.850306, 50.285678], [-122.850636, 50.285686], [-122.85116, 50.285527], [-122.851652, 50.285108], [-122.852159, 50.284349], [-122.856734, 50.281488], [-122.857323, 50.280889], [-122.85802, 50.2796], [-122.858641, 50.279006], [-122.858927, 50.278841], [-122.85971, 50.277625], [-122.860927, 50.276808], [-122.862454, 50.275919], [-122.862814, 50.275591], [-122.859695, 50.273534], [-122.859657, 50.272509], [-122.861145, 50.271614], [-122.86181, 50.27009], [-122.86239, 50.268465], [-122.862152, 50.267442], [-122.864487, 50.266714], [-122.865733, 50.265771], [-122.865812, 50.264641], [-122.864796, 50.263168], [-122.864037, 50.261024], [-122.864627, 50.259488], [-122.864313, 50.256581], [-122.853834, 50.256766], [-122.853593, 50.246917], [-122.857113, 50.24689], [-122.858151, 50.246153], [-122.858303, 50.245512], [-122.856749, 50.243509], [-122.856125, 50.242877], [-122.856371, 50.242425], [-122.867983, 50.242151], [-122.867226, 50.243638], [-122.866752, 50.244943], [-122.865448, 50.247584], [-122.865318, 50.248201], [-122.865426, 50.249336], [-122.865393, 50.250102], [-122.864897, 50.25223], [-122.865024, 50.252707], [-122.865907, 50.254128], [-122.866354, 50.254975], [-122.866457, 50.255344], [-122.866573, 50.256188], [-122.866452, 50.258042], [-122.866945, 50.259275], [-122.867062, 50.259865], [-122.866971, 50.26078], [-122.866787, 50.26136], [-122.879697, 50.261021], [-122.88425, 50.261], [-122.884336, 50.268908], [-122.886952, 50.27003], [-122.890626, 50.271974], [-122.890688, 50.27642], [-122.87054, 50.27588], [-122.869862, 50.28023], [-122.861949, 50.280269], [-122.861219, 50.284079], [-122.85567, 50.284104], [-122.854517, 50.288392], [-122.848293, 50.288319], [-122.843353, 50.290791], [-122.84113, 50.303199], [-122.836514, 50.303067], [-122.829076, 50.303094], [-122.828688, 50.310316], [-122.832933, 50.310854], [-122.838603, 50.309997], [-122.845629, 50.308014], [-122.851342, 50.306875], [-122.855233, 50.305378], [-122.858824, 50.303182], [-122.863212, 50.301782], [-122.868741, 50.301796], [-122.870974, 50.301336], [-122.879642, 50.297418], [-122.881068, 50.292713], [-122.890709, 50.296093], [-122.899515, 50.301217], [-122.905179, 50.305299], [-122.90946, 50.30379], [-122.917073, 50.302934], [-122.940556, 50.306907], [-122.957286, 50.313391], [-122.961375, 50.314878], [-122.980047, 50.316062], [-122.991302, 50.321866], [-123.0, 50.331493]], [[-122.745311, 50.307717], [-122.744948, 50.307258], [-122.744669, 50.307023], [-122.744249, 50.30677], [-122.744017, 50.306729], [-122.743968, 50.304035], [-122.744236, 50.303893], [-122.744587, 50.303839], [-122.74831, 50.30382], [-122.750288, 50.304058], [-122.751242, 50.304088], [-122.753109, 50.304415], [-122.755943, 50.305024], [-122.757712, 50.305457], [-122.75812, 50.310765], [-122.755266, 50.310752], [-122.753176, 50.31045], [-122.751841, 50.310455], [-122.751532, 50.310483], [-122.750674, 50.310769], [-122.750055, 50.31118], [-122.749406, 50.311485], [-122.748522, 50.311546], [-122.747581, 50.311481], [-122.747133, 50.311283], [-122.746138, 50.310696], [-122.745719, 50.310299], [-122.745552, 50.310001], [-122.745518, 50.308321], [-122.745311, 50.307717]]]]}, "properties": {"name": "Squamish-Lillooet C", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Squamish-Lillooet C", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931017", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.981902, 50.164747], [-123.006824, 50.165007], [-123.068736, 50.124993], [-123.101439, 50.1015], [-123.113257, 50.101391], [-123.124949, 50.101541], [-123.154979, 50.101707], [-123.15266, 50.067543], [-123.150559, 50.039947], [-123.124197, 50.040284], [-123.123148, 50.040254], [-123.116832, 50.04065], [-123.113545, 50.040589], [-123.11379, 50.036082], [-123.113837, 50.032961], [-123.095921, 50.033282], [-123.058267, 50.027016], [-123.054157, 50.027011], [-122.978297, 50.025912], [-122.978656, 50.040365], [-122.916316, 50.040188], [-122.861004, 50.04017], [-122.860795, 50.049962], [-122.860102, 50.118541], [-122.860387, 50.131991], [-122.860583, 50.13684], [-122.913656, 50.137159], [-122.914596, 50.150482], [-122.912963, 50.150474], [-122.913085, 50.155295], [-122.913988, 50.165293], [-122.909354, 50.165061], [-122.907321, 50.164908], [-122.907391, 50.162649], [-122.904575, 50.162545], [-122.904513, 50.160233], [-122.902655, 50.160154], [-122.901741, 50.159594], [-122.901102, 50.159092], [-122.900706, 50.159116], [-122.900198, 50.159415], [-122.899311, 50.16059], [-122.899059, 50.160653], [-122.898177, 50.160697], [-122.897827, 50.160851], [-122.897672, 50.16102], [-122.897629, 50.161372], [-122.897712, 50.161866], [-122.897992, 50.162145], [-122.898566, 50.162524], [-122.898705, 50.162937], [-122.898633, 50.163117], [-122.89785, 50.16353], [-122.897793, 50.163701], [-122.897947, 50.164161], [-122.897581, 50.164708], [-122.897566, 50.165041], [-122.897356, 50.165391], [-122.897256, 50.16594], [-122.896947, 50.166129], [-122.897339, 50.16648], [-122.897673, 50.170444], [-122.90868, 50.17028], [-122.908946, 50.173995], [-122.92278, 50.173998], [-122.92283, 50.175369], [-122.930259, 50.175357], [-122.929666, 50.171272], [-122.934267, 50.171095], [-122.933868, 50.168574], [-122.952048, 50.168202], [-122.95207, 50.16472], [-122.981902, 50.164747]]]]}, "properties": {"name": "Whistler", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Whistler", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931020", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.383011, 50.401091], [-123.406315, 50.418496], [-123.407081, 50.417986], [-123.407114, 50.416929], [-123.408164, 50.415194], [-123.408763, 50.414438], [-123.408854, 50.413721], [-123.409271, 50.412705], [-123.411081, 50.412049], [-123.413421, 50.41106], [-123.414759, 50.409847], [-123.415151, 50.408939], [-123.414688, 50.407617], [-123.41392, 50.404521], [-123.413132, 50.402864], [-123.413484, 50.402044], [-123.416185, 50.399834], [-123.421379, 50.39124], [-123.422395, 50.389056], [-123.423161, 50.383472], [-123.42477, 50.381119], [-123.426329, 50.379804], [-123.430434, 50.378384], [-123.43406, 50.377268], [-123.43505, 50.376699], [-123.43582, 50.37587], [-123.437441, 50.372939], [-123.438641, 50.371749], [-123.444385, 50.368562], [-123.445519, 50.367569], [-123.445821, 50.366692], [-123.445376, 50.36585], [-123.443849, 50.364649], [-123.441597, 50.362366], [-123.440446, 50.361607], [-123.43513, 50.358555], [-123.432826, 50.356987], [-123.430482, 50.354824], [-123.428718, 50.35307], [-123.427915, 50.35153], [-123.427669, 50.349461], [-123.427846, 50.347158], [-123.428713, 50.34576], [-123.429768, 50.344857], [-123.433, 50.342684], [-123.434622, 50.341993], [-123.436568, 50.341687], [-123.441273, 50.341347], [-123.445474, 50.341098], [-123.446865, 50.341233], [-123.451692, 50.3409], [-123.452661, 50.340536], [-123.454387, 50.338689], [-123.45667, 50.334443], [-123.457252, 50.330292], [-123.458044, 50.328122], [-123.459502, 50.325322], [-123.461025, 50.323558], [-123.466617, 50.317508], [-123.467382, 50.315672], [-123.46703, 50.31202], [-123.465173, 50.308742], [-123.462551, 50.303789], [-123.461839, 50.30172], [-123.468125, 50.298364], [-123.485137, 50.28895], [-123.492583, 50.285185], [-123.496687, 50.283274], [-123.500512, 50.281946], [-123.501973, 50.280886], [-123.504038, 50.278943], [-123.505731, 50.275697], [-123.507526, 50.273026], [-123.508355, 50.272362], [-123.50997, 50.271622], [-123.512173, 50.270799], [-123.517509, 50.269934], [-123.521067, 50.270301], [-123.523098, 50.27083], [-123.525999, 50.272158], [-123.528222, 50.272868], [-123.531831, 50.273341], [-123.533299, 50.272701], [-123.536693, 50.272144], [-123.54191, 50.271456], [-123.547119, 50.270211], [-123.55414, 50.267956], [-123.558667, 50.266409], [-123.567561, 50.263059], [-123.570791, 50.262036], [-123.572841, 50.261489], [-123.576913, 50.260045], [-123.580362, 50.258732], [-123.581352, 50.258191], [-123.582023, 50.257706], [-123.583046, 50.256612], [-123.583809, 50.255303], [-123.584108, 50.25445], [-123.584235, 50.250604], [-123.584615, 50.249991], [-123.598758, 50.250271], [-123.599033, 50.245801], [-123.615104, 50.246298], [-123.61934, 50.241535], [-123.620543, 50.234283], [-123.631818, 50.229688], [-123.632801, 50.224888], [-123.639884, 50.212533], [-123.637884, 50.210528], [-123.636347, 50.207811], [-123.634403, 50.205988], [-123.632595, 50.203868], [-123.632535, 50.20151], [-123.634087, 50.20059], [-123.63932, 50.199879], [-123.642168, 50.198879], [-123.644484, 50.197941], [-123.646036, 50.197021], [-123.6464, 50.195391], [-123.646745, 50.19214], [-123.646655, 50.189292], [-123.647333, 50.187802], [-123.647822, 50.187004], [-123.646904, 50.185699], [-123.644603, 50.183], [-123.64386, 50.180757], [-123.64422, 50.177751], [-123.64303, 50.177042], [-123.642577, 50.175824], [-123.642791, 50.174246], [-123.642572, 50.173447], [-123.641955, 50.173037], [-123.640275, 50.173125], [-123.638321, 50.173808], [-123.636694, 50.174877], [-123.635058, 50.175641], [-123.633143, 50.175823], [-123.630054, 50.175323], [-123.626693, 50.175498], [-123.620435, 50.175934], [-123.617566, 50.175312], [-123.614669, 50.174198], [-123.61288, 50.173926], [-123.611175, 50.174007], [-123.609546, 50.174363], [-123.608056, 50.175134], [-123.60431, 50.176691], [-123.60043, 50.177172], [-123.592369, 50.176861], [-123.588202, 50.176316], [-123.581331, 50.173964], [-123.582702, 50.168479], [-123.583298, 50.165518], [-123.583608, 50.162907], [-123.583496, 50.160944], [-123.581458, 50.156028], [-123.581101, 50.153776], [-123.582108, 50.152672], [-123.583428, 50.151709], [-123.585375, 50.151026], [-123.58684, 50.145884], [-123.589576, 50.144299], [-123.592856, 50.142898], [-123.595809, 50.141111], [-123.596378, 50.139035], [-123.595651, 50.135662], [-123.595103, 50.134102], [-123.596053, 50.132017], [-123.597263, 50.130467], [-123.596034, 50.129021], [-123.592895, 50.127618], [-123.59022, 50.124927], [-123.58989, 50.123166], [-123.590309, 50.121142], [-123.591571, 50.118377], [-123.595371, 50.115418], [-123.599158, 50.111649], [-123.603059, 50.1099], [-123.603976, 50.108006], [-123.603681, 50.105182], [-123.599939, 50.10167], [-123.597657, 50.099976], [-123.597927, 50.098906], [-123.60172, 50.097627], [-123.608201, 50.096353], [-123.61297, 50.097943], [-123.618543, 50.098666], [-123.626448, 50.096622], [-123.633504, 50.093847], [-123.637934, 50.090597], [-123.642944, 50.086615], [-123.646283, 50.085321], [-123.648851, 50.085141], [-123.649062, 50.084796], [-123.645764, 50.081746], [-123.644472, 50.080986], [-123.643141, 50.078663], [-123.641886, 50.078103], [-123.640072, 50.077113], [-123.639267, 50.076395], [-123.638024, 50.074704], [-123.636713, 50.073163], [-123.634095, 50.071455], [-123.63145, 50.070631], [-123.629011, 50.070736], [-123.626912, 50.070096], [-123.625833, 50.068598], [-123.625054, 50.066995], [-123.623608, 50.065752], [-123.622733, 50.063807], [-123.619476, 50.062948], [-123.6175, 50.061765], [-123.616027, 50.060031], [-123.615174, 50.055826], [-123.627951, 50.051455], [-123.631658, 50.051026], [-123.635582, 50.050394], [-123.637971, 50.049553], [-123.638377, 50.04866], [-123.63753, 50.047206], [-123.635771, 50.045822], [-123.631545, 50.042678], [-123.630432, 50.037939], [-123.636825, 50.036563], [-123.641599, 50.033506], [-123.643779, 50.030361], [-123.643216, 50.028557], [-123.641184, 50.026394], [-123.635036, 50.020299], [-123.633713, 50.018513], [-123.633489, 50.015964], [-123.63154, 50.013897], [-123.63068, 50.012198], [-123.631775, 50.010061], [-123.633328, 50.006637], [-123.634146, 50.002346], [-123.634032, 50.000384], [-123.632834, 49.99943], [-123.630276, 50.000077], [-123.6229, 50.003289], [-123.620232, 50.004724], [-123.616035, 50.008943], [-123.612347, 50.009861], [-123.609528, 50.011349], [-123.60486, 50.012485], [-123.603975, 50.011671], [-123.603101, 50.009726], [-123.60284, 50.007817], [-123.602389, 50.0066], [-123.602494, 50.004436], [-123.602111, 50.00307], [-123.600968, 50.001721], [-123.598572, 49.999811], [-123.601312, 49.998472], [-123.602965, 49.996765], [-123.604007, 49.995022], [-123.604357, 49.993148], [-123.605129, 49.992001], [-123.605453, 49.991012], [-123.604853, 49.989847], [-123.604104, 49.988735], [-123.603817, 49.98771], [-123.602456, 49.986563], [-123.601287, 49.986098], [-123.601245, 49.985363], [-123.601895, 49.984759], [-123.602149, 49.982543], [-123.602009, 49.980091], [-123.602699, 49.978848], [-123.602793, 49.977815], [-123.602275, 49.976746], [-123.60063, 49.975949], [-123.597598, 49.974888], [-123.590814, 49.972145], [-123.586261, 49.971118], [-123.594277, 49.96092], [-123.595794, 49.95951], [-123.596253, 49.958223], [-123.597635, 49.957112], [-123.600737, 49.955519], [-123.603284, 49.954871], [-123.607768, 49.953541], [-123.608185, 49.951519], [-123.607096, 49.949776], [-123.60333, 49.946474], [-123.602867, 49.945012], [-123.603624, 49.94362], [-123.608945, 49.940994], [-123.610475, 49.93983], [-123.611366, 49.93814], [-123.613545, 49.936372], [-123.615954, 49.934647], [-123.61985, 49.931023], [-123.620852, 49.92992], [-123.620648, 49.928993], [-123.619237, 49.928241], [-123.616334, 49.928014], [-123.611491, 49.927096], [-123.607829, 49.925513], [-123.602743, 49.922932], [-123.601156, 49.923116], [-123.598592, 49.923519], [-123.595988, 49.923187], [-123.591473, 49.921279], [-123.589696, 49.92078], [-123.588557, 49.920806], [-123.587077, 49.921577], [-123.582977, 49.924518], [-123.581348, 49.925341], [-123.580073, 49.924978], [-123.575465, 49.921354], [-123.570828, 49.919988], [-123.565647, 49.919812], [-123.558973, 49.92016], [-123.552436, 49.92021], [-123.549156, 49.918616], [-123.549348, 49.916552], [-123.553689, 49.912532], [-123.56028, 49.907972], [-123.564997, 49.905316], [-123.567656, 49.901137], [-123.568823, 49.897482], [-123.567797, 49.8926], [-123.567583, 49.888682], [-123.573436, 49.884627], [-123.569078, 49.87992], [-123.570325, 49.877734], [-123.573982, 49.8752], [-123.575771, 49.871825], [-123.577506, 49.867471], [-123.581, 49.864744], [-123.584222, 49.862612], [-123.587037, 49.861372], [-123.587444, 49.86048], [-123.586144, 49.85894], [-123.582733, 49.857645], [-123.580297, 49.854758], [-123.579649, 49.851242], [-123.579136, 49.847429], [-123.578136, 49.845784], [-123.574941, 49.845661], [-123.569524, 49.84657], [-123.565246, 49.846079], [-123.562243, 49.843891], [-123.560052, 49.842666], [-123.557808, 49.840461], [-123.553912, 49.838587], [-123.551016, 49.838359], [-123.549661, 49.838586], [-123.549279, 49.839969], [-123.549382, 49.84193], [-123.548403, 49.843523], [-123.547936, 49.846184], [-123.548499, 49.848233], [-123.549385, 49.850668], [-123.551269, 49.85475], [-123.550191, 49.86312], [-123.550306, 49.871071], [-123.548399, 49.875238], [-123.546661, 49.876848], [-123.544436, 49.877879], [-123.540506, 49.878263], [-123.533651, 49.877926], [-123.530155, 49.877907], [-123.527444, 49.87836], [-123.525381, 49.879584], [-123.526429, 49.882212], [-123.527588, 49.884053], [-123.527528, 49.885821], [-123.524894, 49.887746], [-123.518515, 49.890735], [-123.507247, 49.897416], [-123.500135, 49.903345], [-123.487947, 49.911353], [-123.473521, 49.912063], [-123.457143, 49.910443], [-123.447593, 49.902746], [-123.427952, 49.900928], [-123.426189, 49.8982], [-123.425855, 49.89538], [-123.422864, 49.894884], [-123.416619, 49.879108], [-123.39912, 49.881232], [-123.371135, 49.866058], [-123.35864, 49.86526], [-123.353906, 49.860675], [-123.328417, 49.851443], [-123.327064, 49.845485], [-123.331186, 49.837423], [-123.330711, 49.82999], [-123.333311, 49.827328], [-123.329399, 49.821192], [-123.32286, 49.815876], [-123.312638, 49.802883], [-123.305224, 49.79651], [-123.306459, 49.790041], [-123.300678, 49.778035], [-123.292196, 49.776514], [-123.282262, 49.7718], [-123.272508, 49.770917], [-123.276275, 49.76532], [-123.28384, 49.759956], [-123.276744, 49.74997], [-123.280615, 49.746672], [-123.303006, 49.750053], [-123.328998, 49.749965], [-123.33573, 49.747314], [-123.335524, 49.734867], [-123.3229, 49.727533], [-123.319821, 49.723709], [-123.323986, 49.717693], [-123.323919, 49.717543], [-123.32408, 49.716707], [-123.32438, 49.716157], [-123.325002, 49.715679], [-123.326094, 49.715046], [-123.3271, 49.71477], [-123.328561, 49.711774], [-123.338443, 49.705431], [-123.34642, 49.696175], [-123.346382, 49.690267], [-123.351207, 49.68412], [-123.354177, 49.681761], [-123.359325, 49.678785], [-123.361643, 49.677106], [-123.364016, 49.674351], [-123.361535, 49.673357], [-123.355195, 49.671106], [-123.352925, 49.669789], [-123.351918, 49.668712], [-123.351822, 49.665982], [-123.351004, 49.664776], [-123.348538, 49.662283], [-123.34353, 49.658814], [-123.339474, 49.656256], [-123.336254, 49.653778], [-123.333765, 49.650795], [-123.331161, 49.646983], [-123.330065, 49.64314], [-123.32901, 49.641644], [-123.326642, 49.638806], [-123.324167, 49.636067], [-123.321395, 49.633433], [-123.319037, 49.631524], [-123.316152, 49.629675], [-123.308886, 49.624637], [-123.303954, 49.621019], [-123.299914, 49.617089], [-123.29664, 49.613387], [-123.294065, 49.610063], [-123.291106, 49.601903], [-123.288437, 49.596624], [-123.287441, 49.594736], [-123.284604, 49.59176], [-123.281896, 49.590347], [-123.276915, 49.590758], [-123.276744, 49.58366], [-123.276691, 49.576086], [-123.276383, 49.569098], [-123.245038, 49.57629], [-123.264852, 49.536196], [-123.270112, 49.521064], [-123.271511, 49.508928], [-123.274888, 49.481103], [-123.244467, 49.481496], [-123.243398, 49.481348], [-123.238597, 49.481515], [-123.226048, 49.481678], [-123.218577, 49.481881], [-123.215484, 49.482015], [-123.206948, 49.482104], [-123.193131, 49.482165], [-123.161803, 49.48216], [-123.126189, 49.482265], [-123.125532, 49.48223], [-123.122042, 49.482331], [-123.102823, 49.482197], [-123.101872, 49.501831], [-123.102329, 49.547784], [-123.061625, 49.548139], [-123.012082, 49.548203], [-122.924237, 49.54843], [-122.924813, 49.550971], [-122.924821, 49.553988], [-122.928882, 49.557247], [-122.934367, 49.560708], [-122.945068, 49.570543], [-122.939911, 49.571171], [-122.930704, 49.571772], [-122.877775, 49.572758], [-122.81611, 49.572354], [-122.819814, 49.577462], [-122.827085, 49.587054], [-122.832308, 49.590146], [-122.83158, 49.594388], [-122.83324, 49.596704], [-122.835602, 49.599657], [-122.840909, 49.602887], [-122.846266, 49.605162], [-122.852109, 49.608042], [-122.849417, 49.613649], [-122.827746, 49.612805], [-122.811386, 49.619233], [-122.809104, 49.625757], [-122.815769, 49.627776], [-122.821011, 49.631971], [-122.821236, 49.635797], [-122.825662, 49.639174], [-122.828359, 49.643045], [-122.825835, 49.648392], [-122.830073, 49.652033], [-122.831152, 49.657958], [-122.831254, 49.658087], [-122.836861, 49.660186], [-122.84189, 49.661159], [-122.847493, 49.663873], [-122.853856, 49.66596], [-122.852452, 49.671509], [-122.845679, 49.676502], [-122.837939, 49.681286], [-122.830252, 49.68621], [-122.823652, 49.690745], [-122.816997, 49.694967], [-122.815314, 49.696309], [-122.815701, 49.698136], [-122.813553, 49.700648], [-122.81423, 49.711244], [-122.81696, 49.714081], [-122.825002, 49.715867], [-122.828381, 49.719487], [-122.830975, 49.722623], [-122.832208, 49.725975], [-122.834688, 49.729904], [-122.842238, 49.734363], [-122.8465, 49.73718], [-122.850395, 49.741043], [-122.855946, 49.742774], [-122.855337, 49.743462], [-122.85441, 49.748138], [-122.854265, 49.750861], [-122.855033, 49.754735], [-122.855794, 49.75618], [-122.871436, 49.770472], [-122.86759, 49.775663], [-122.867881, 49.776022], [-122.874073, 49.781926], [-122.882724, 49.790428], [-122.887045, 49.794451], [-122.88983, 49.798772], [-122.889913, 49.801954], [-122.886879, 49.804819], [-122.88041, 49.811374], [-122.873671, 49.818478], [-122.872208, 49.821957], [-122.874773, 49.82337], [-122.877748, 49.824413], [-122.880551, 49.826995], [-122.884366, 49.827246], [-122.887722, 49.827336], [-122.892103, 49.826316], [-122.901945, 49.824653], [-122.907415, 49.826392], [-122.916238, 49.830355], [-122.924909, 49.831988], [-122.944635, 49.83367], [-122.948063, 49.833608], [-122.953474, 49.833609], [-122.964654, 49.834995], [-122.971886, 49.839129], [-122.975516, 49.842881], [-122.979154, 49.84688], [-122.985243, 49.857475], [-122.989214, 49.8576], [-122.995493, 49.85465], [-122.996395, 49.854335], [-123.000365, 49.85446], [-123.002481, 49.856107], [-122.987027, 49.872996], [-122.985889, 49.875644], [-122.985344, 49.877342], [-122.980498, 49.880901], [-122.973893, 49.882799], [-122.969116, 49.88893], [-122.965754, 49.897032], [-122.964495, 49.899706], [-122.962013, 49.902577], [-122.954567, 49.904468], [-122.950734, 49.911163], [-122.9437, 49.913135], [-122.936483, 49.917408], [-122.930045, 49.917159], [-122.916355, 49.913136], [-122.90605, 49.904373], [-122.90357, 49.900082], [-122.902853, 49.898692], [-122.896566, 49.894818], [-122.892451, 49.894003], [-122.887327, 49.895317], [-122.869935, 49.903515], [-122.860873, 49.915986], [-122.85714, 49.918158], [-122.850618, 49.91861], [-122.837257, 49.918287], [-122.829342, 49.917879], [-122.823674, 49.919373], [-122.809744, 49.91835], [-122.800561, 49.9206], [-122.797556, 49.927868], [-122.795213, 49.930897], [-122.795408, 49.93618], [-122.788147, 49.935357], [-122.783313, 49.933188], [-122.775824, 49.931309], [-122.770893, 49.934017], [-122.767794, 49.93271], [-122.768524, 49.935636], [-122.767831, 49.938751], [-122.766716, 49.940799], [-122.765487, 49.943378], [-122.763215, 49.946315], [-122.761228, 49.947967], [-122.757901, 49.949001], [-122.752522, 49.949769], [-122.74223, 49.952491], [-122.737523, 49.953674], [-122.733048, 49.953917], [-122.726197, 49.954112], [-122.723665, 49.95428], [-122.721256, 49.955213], [-122.718403, 49.956771], [-122.712355, 49.959741], [-122.700309, 49.965436], [-122.690917, 49.970498], [-122.686895, 49.972935], [-122.682138, 49.977338], [-122.68097, 49.979183], [-122.680304, 49.981234], [-122.680567, 49.986889], [-122.683493, 49.993359], [-122.683623, 49.997825], [-122.684634, 49.999684], [-122.686864, 50.002632], [-122.680954, 50.009519], [-122.679175, 50.01533], [-122.678906, 50.019716], [-122.679453, 50.022645], [-122.681096, 50.024665], [-122.683216, 50.02502], [-122.68603, 50.024897], [-122.689894, 50.024121], [-122.694546, 50.022781], [-122.697894, 50.022395], [-122.703234, 50.022407], [-122.707461, 50.02269], [-122.717447, 50.023701], [-122.719822, 50.024264], [-122.72149, 50.024369], [-122.724372, 50.023818], [-122.727622, 50.022496], [-122.736299, 50.018034], [-122.740606, 50.016782], [-122.742085, 50.016737], [-122.743215, 50.017096], [-122.745853, 50.017327], [-122.764784, 50.02327], [-122.765988, 50.029375], [-122.773351, 50.036589], [-122.782336, 50.038285], [-122.791842, 50.041103], [-122.793221, 50.039635], [-122.794167, 50.038344], [-122.794635, 50.037082], [-122.793686, 50.035925], [-122.79219, 50.034713], [-122.791025, 50.033496], [-122.790381, 50.0321], [-122.790798, 50.030775], [-122.791497, 50.029999], [-122.792817, 50.029469], [-122.79996, 50.026875], [-122.800999, 50.025902], [-122.801178, 50.023474], [-122.800499, 50.019185], [-122.800915, 50.01786], [-122.802144, 50.017119], [-122.80358, 50.016629], [-122.81244, 50.01318], [-122.815065, 50.012715], [-122.817306, 50.012597], [-122.819185, 50.012952], [-122.820662, 50.014547], [-122.821957, 50.015209], [-122.824244, 50.015451], [-122.827238, 50.01513], [-122.829408, 50.014417], [-122.831945, 50.013336], [-122.834407, 50.012469], [-122.838196, 50.011795], [-122.840533, 50.01159], [-122.843433, 50.011866], [-122.845513, 50.01277], [-122.847816, 50.014353], [-122.849436, 50.015307], [-122.852176, 50.016201], [-122.854164, 50.016384], [-122.857596, 50.016289], [-122.86146, 50.016315], [-122.863641, 50.01724], [-122.867054, 50.018443], [-122.869473, 50.019555], [-122.870779, 50.020939], [-122.871026, 50.022254], [-122.870118, 50.024502], [-122.870761, 50.025791], [-122.872243, 50.026576], [-122.879593, 50.028804], [-122.882367, 50.030548], [-122.884827, 50.032723], [-122.885877, 50.032983], [-122.886799, 50.032884], [-122.887729, 50.032593], [-122.888342, 50.031307], [-122.888824, 50.030065], [-122.89039, 50.02953], [-122.89198, 50.029633], [-122.893423, 50.030674], [-122.895934, 50.033316], [-122.900248, 50.036015], [-122.906773, 50.037743], [-122.910228, 50.037369], [-122.911453, 50.037435], [-122.912595, 50.037906], [-122.914638, 50.039066], [-122.916316, 50.040188], [-122.978656, 50.040365], [-122.978297, 50.025912], [-123.054157, 50.027011], [-123.058267, 50.027016], [-123.095921, 50.033282], [-123.113837, 50.032961], [-123.11379, 50.036082], [-123.113545, 50.040589], [-123.116832, 50.04065], [-123.123148, 50.040254], [-123.124197, 50.040284], [-123.150559, 50.039947], [-123.15266, 50.067543], [-123.154979, 50.101707], [-123.124949, 50.101541], [-123.113257, 50.101391], [-123.101439, 50.1015], [-123.068736, 50.124993], [-123.069659, 50.125519], [-123.071969, 50.127363], [-123.073325, 50.128998], [-123.074026, 50.13038], [-123.074209, 50.132262], [-123.074218, 50.135504], [-123.074417, 50.14059], [-123.075494, 50.147094], [-123.075777, 50.152819], [-123.076813, 50.15676], [-123.07761, 50.160592], [-123.077118, 50.163051], [-123.075512, 50.165605], [-123.072303, 50.167845], [-123.068351, 50.169192], [-123.06216, 50.170537], [-123.057858, 50.172003], [-123.055966, 50.173316], [-123.056046, 50.175388], [-123.055673, 50.176375], [-123.054307, 50.177604], [-123.05284, 50.17925], [-123.052528, 50.180311], [-123.0539, 50.182323], [-123.05554, 50.185198], [-123.05742, 50.188182], [-123.058648, 50.192535], [-123.063283, 50.192374], [-123.068256, 50.191903], [-123.071453, 50.191087], [-123.075658, 50.189156], [-123.079801, 50.18715], [-123.082811, 50.186111], [-123.085259, 50.185649], [-123.087383, 50.185874], [-123.089723, 50.187076], [-123.092271, 50.188123], [-123.095656, 50.188474], [-123.09967, 50.187567], [-123.10356, 50.18651], [-123.10647, 50.185888], [-123.108255, 50.186421], [-123.109668, 50.187941], [-123.112305, 50.198145], [-123.112556, 50.198853], [-123.112825, 50.199022], [-123.113246, 50.199166], [-123.114495, 50.19948], [-123.114965, 50.199786], [-123.116545, 50.201659], [-123.117308, 50.202292], [-123.118147, 50.202602], [-123.119139, 50.202839], [-123.119833, 50.202848], [-123.120319, 50.202631], [-123.120659, 50.202292], [-123.123391, 50.197955], [-123.123752, 50.197615], [-123.124188, 50.197416], [-123.125069, 50.19725], [-123.12547, 50.197318], [-123.12574, 50.197501], [-123.125901, 50.197759], [-123.125953, 50.198363], [-123.123862, 50.203575], [-123.123657, 50.204361], [-123.123906, 50.205487], [-123.124587, 50.206409], [-123.125505, 50.207305], [-123.128523, 50.209251], [-123.132399, 50.21259], [-123.134847, 50.214057], [-123.137204, 50.214847], [-123.138638, 50.215124], [-123.139666, 50.215042], [-123.140655, 50.214759], [-123.142082, 50.214099], [-123.142586, 50.213261], [-123.142499, 50.212127], [-123.142099, 50.210825], [-123.142294, 50.209927], [-123.142546, 50.209508], [-123.143778, 50.209026], [-123.145267, 50.208234], [-123.14697, 50.2077], [-123.149992, 50.207097], [-123.151562, 50.206609], [-123.152619, 50.206022], [-123.156875, 50.202778], [-123.158277, 50.201573], [-123.159867, 50.200801], [-123.161278, 50.200534], [-123.162881, 50.200808], [-123.164196, 50.201456], [-123.166274, 50.20333], [-123.176205, 50.212633], [-123.176659, 50.213307], [-123.17665, 50.213915], [-123.176263, 50.215205], [-123.175898, 50.217037], [-123.175998, 50.220252], [-123.176258, 50.22242], [-123.177151, 50.224316], [-123.178339, 50.225946], [-123.17971, 50.227151], [-123.181164, 50.227862], [-123.183664, 50.228409], [-123.192633, 50.227403], [-123.199303, 50.22653], [-123.201668, 50.226374], [-123.203468, 50.226468], [-123.205271, 50.22739], [-123.206138, 50.228634], [-123.206279, 50.229415], [-123.206166, 50.230343], [-123.206591, 50.231573], [-123.207177, 50.232584], [-123.207995, 50.233459], [-123.208937, 50.234072], [-123.210552, 50.234562], [-123.212507, 50.234327], [-123.214888, 50.233778], [-123.216428, 50.233355], [-123.217346, 50.233423], [-123.218453, 50.233923], [-123.220309, 50.234496], [-123.221668, 50.234577], [-123.22291, 50.234312], [-123.224141, 50.23383], [-123.224782, 50.233054], [-123.224617, 50.232446], [-123.224625, 50.231223], [-123.224403, 50.230136], [-123.224813, 50.229495], [-123.225859, 50.228689], [-123.227373, 50.227721], [-123.230255, 50.225614], [-123.231306, 50.224197], [-123.231581, 50.222882], [-123.231819, 50.220804], [-123.231636, 50.219149], [-123.230809, 50.216109], [-123.231132, 50.215776], [-123.231799, 50.215544], [-123.232244, 50.215666], [-123.232941, 50.216087], [-123.234553, 50.217294], [-123.236482, 50.218778], [-123.237971, 50.220249], [-123.238848, 50.22171], [-123.239423, 50.223221], [-123.239504, 50.225892], [-123.239637, 50.22739], [-123.239884, 50.228406], [-123.240463, 50.230025], [-123.2411, 50.231404], [-123.241806, 50.232043], [-123.24277, 50.232371], [-123.243647, 50.232288], [-123.244417, 50.232076], [-123.245499, 50.231313], [-123.245981, 50.230758], [-123.247433, 50.229922], [-123.249782, 50.229438], [-123.252783, 50.229115], [-123.25365, 50.228814], [-123.254496, 50.228077], [-123.256353, 50.227211], [-123.258558, 50.226556], [-123.260482, 50.226385], [-123.26315, 50.228441], [-123.264002, 50.228533], [-123.268188, 50.228185], [-123.269254, 50.228533], [-123.270286, 50.229963], [-123.267696, 50.230282], [-123.266725, 50.230894], [-123.266442, 50.231816], [-123.267343, 50.232877], [-123.269243, 50.234485], [-123.269957, 50.235199], [-123.269897, 50.235631], [-123.268389, 50.236362], [-123.267008, 50.237116], [-123.266567, 50.23823], [-123.267041, 50.240674], [-123.268393, 50.242265], [-123.270369, 50.24371], [-123.272031, 50.244783], [-123.274463, 50.245249], [-123.276861, 50.246686], [-123.279469, 50.248873], [-123.281206, 50.250537], [-123.281514, 50.251529], [-123.281059, 50.253128], [-123.281435, 50.253822], [-123.282435, 50.254369], [-123.28336, 50.255079], [-123.283737, 50.256527], [-123.283978, 50.257061], [-123.285002, 50.257257], [-123.286442, 50.257311], [-123.28773, 50.25769], [-123.288828, 50.258478], [-123.29052, 50.260844], [-123.290784, 50.261783], [-123.290291, 50.262709], [-123.290923, 50.264206], [-123.293097, 50.266887], [-123.293834, 50.268005], [-123.294496, 50.268531], [-123.295346, 50.269404], [-123.296317, 50.270922], [-123.297378, 50.271791], [-123.298416, 50.272256], [-123.299079, 50.272782], [-123.299456, 50.274231], [-123.300367, 50.274671], [-123.302068, 50.275663], [-123.305061, 50.276544], [-123.308469, 50.277282], [-123.312119, 50.277799], [-123.31395, 50.278192], [-123.316257, 50.279652], [-123.314625, 50.279736], [-123.313069, 50.279658], [-123.311399, 50.279824], [-123.30966, 50.280287], [-123.30793, 50.281773], [-123.305216, 50.285377], [-123.303902, 50.287608], [-123.302233, 50.288663], [-123.300462, 50.289342], [-123.298901, 50.290017], [-123.297311, 50.291797], [-123.295697, 50.293926], [-123.294888, 50.29865], [-123.295005, 50.300934], [-123.295688, 50.302751], [-123.297308, 50.30479], [-123.298915, 50.306561], [-123.302764, 50.309336], [-123.303737, 50.310232], [-123.303913, 50.311197], [-123.303283, 50.31285], [-123.301201, 50.314379], [-123.302233, 50.314841], [-123.303427, 50.319809], [-123.291175, 50.32667], [-123.291477, 50.331336], [-123.297887, 50.333084], [-123.303157, 50.337052], [-123.302971, 50.346759], [-123.295108, 50.346625], [-123.287456, 50.348024], [-123.28865, 50.348473], [-123.340611, 50.375201], [-123.370469, 50.395405], [-123.383011, 50.401091]], [[-123.250441, 49.869317], [-123.248705, 49.870113], [-123.247331, 49.870484], [-123.246498, 49.870649], [-123.224727, 49.870257], [-123.225354, 49.855763], [-123.214145, 49.85556], [-123.214617, 49.84469], [-123.20341, 49.844487], [-123.204055, 49.829735], [-123.198359, 49.826061], [-123.193027, 49.8216], [-123.193019, 49.816455], [-123.199023, 49.816565], [-123.199265, 49.811054], [-123.19867, 49.810857], [-123.171923, 49.810352], [-123.171858, 49.81044], [-123.171834, 49.811232], [-123.172002, 49.811824], [-123.171908, 49.812481], [-123.17195, 49.812885], [-123.168676, 49.812868], [-123.168654, 49.815024], [-123.168717, 49.815157], [-123.16894, 49.815345], [-123.170968, 49.815856], [-123.172942, 49.816627], [-123.173582, 49.816931], [-123.174306, 49.817784], [-123.174355, 49.814633], [-123.178168, 49.814637], [-123.178091, 49.822377], [-123.162905, 49.822304], [-123.162932, 49.831995], [-123.165854, 49.835603], [-123.185941, 49.872834], [-123.152036, 49.872884], [-123.151987, 49.85716], [-123.148496, 49.85709], [-123.148467, 49.847735], [-123.142871, 49.847742], [-123.142819, 49.84233], [-123.132409, 49.842349], [-123.132693, 49.830532], [-123.125836, 49.830539], [-123.125808, 49.819758], [-123.117419, 49.819767], [-123.117356, 49.793839], [-123.108837, 49.793919], [-123.108809, 49.787019], [-123.10322, 49.787024], [-123.103189, 49.779196], [-123.089218, 49.779185], [-123.089278, 49.77035], [-123.089212, 49.764801], [-123.09569, 49.764645], [-123.096677, 49.749997], [-123.101513, 49.749948], [-123.102593, 49.74999], [-123.102395, 49.74291], [-123.09117, 49.742954], [-123.091268, 49.735666], [-123.09097, 49.726648], [-123.017548, 49.726683], [-123.017542, 49.708694], [-123.091116, 49.70866], [-123.091134, 49.703223], [-123.109325, 49.703278], [-123.109309, 49.696064], [-123.125449, 49.69605], [-123.128246, 49.695916], [-123.128243, 49.694116], [-123.131061, 49.694114], [-123.13116, 49.67958], [-123.151208, 49.680039], [-123.151182, 49.671847], [-123.156971, 49.671839], [-123.156985, 49.660537], [-123.168587, 49.660632], [-123.168609, 49.656821], [-123.182612, 49.656805], [-123.183635, 49.656557], [-123.18373, 49.653326], [-123.189411, 49.653395], [-123.189526, 49.649687], [-123.200356, 49.6499], [-123.202735, 49.646331], [-123.202735, 49.642834], [-123.203543, 49.639209], [-123.209466, 49.639162], [-123.20947, 49.638699], [-123.223594, 49.63909], [-123.224981, 49.640933], [-123.225436, 49.641843], [-123.22635, 49.643379], [-123.22703, 49.644302], [-123.227411, 49.644732], [-123.22881, 49.64601], [-123.229298, 49.646595], [-123.229468, 49.646897], [-123.229513, 49.647382], [-123.229298, 49.648092], [-123.228844, 49.64877], [-123.228522, 49.649118], [-123.227113, 49.650252], [-123.226539, 49.650797], [-123.224001, 49.65564], [-123.223623, 49.656148], [-123.223259, 49.656474], [-123.222122, 49.657099], [-123.220605, 49.65771], [-123.215614, 49.658777], [-123.213176, 49.6596], [-123.212038, 49.659877], [-123.210294, 49.660155], [-123.207241, 49.660225], [-123.205446, 49.660068], [-123.203871, 49.660029], [-123.20133, 49.660156], [-123.200659, 49.660112], [-123.199228, 49.659759], [-123.198271, 49.659647], [-123.197097, 49.659623], [-123.195284, 49.659986], [-123.194023, 49.660368], [-123.193032, 49.660499], [-123.191225, 49.660448], [-123.190569, 49.660495], [-123.190029, 49.660645], [-123.188444, 49.661469], [-123.187296, 49.661828], [-123.18551, 49.661972], [-123.184529, 49.661965], [-123.18303, 49.66222], [-123.182506, 49.662421], [-123.180932, 49.66325], [-123.179588, 49.663793], [-123.179216, 49.66404], [-123.17872, 49.664859], [-123.178137, 49.665278], [-123.177589, 49.665635], [-123.176775, 49.666005], [-123.176154, 49.666197], [-123.175693, 49.666493], [-123.175414, 49.666785], [-123.174672, 49.667268], [-123.173951, 49.667583], [-123.174257, 49.668888], [-123.173738, 49.670078], [-123.17305, 49.670863], [-123.172037, 49.67154], [-123.171928, 49.671788], [-123.171908, 49.672251], [-123.171472, 49.673064], [-123.17078, 49.673803], [-123.168704, 49.675184], [-123.165738, 49.676576], [-123.164615, 49.677041], [-123.163327, 49.67768], [-123.162522, 49.678344], [-123.162008, 49.679136], [-123.161904, 49.679421], [-123.201957, 49.679092], [-123.202914, 49.678985], [-123.204468, 49.678447], [-123.209362, 49.675885], [-123.210016, 49.675618], [-123.210775, 49.675434], [-123.21506, 49.675014], [-123.216508, 49.674695], [-123.217443, 49.674359], [-123.21969, 49.673252], [-123.221374, 49.672114], [-123.222827, 49.671388], [-123.224745, 49.670597], [-123.225954, 49.670288], [-123.228682, 49.669816], [-123.229483, 49.669604], [-123.230502, 49.669227], [-123.232159, 49.668496], [-123.23449, 49.667347], [-123.235747, 49.666836], [-123.237786, 49.666475], [-123.23972, 49.666279], [-123.241353, 49.666294], [-123.242352, 49.666209], [-123.242886, 49.666126], [-123.244074, 49.665789], [-123.245316, 49.665155], [-123.246724, 49.663825], [-123.247257, 49.663485], [-123.248078, 49.663085], [-123.253341, 49.661655], [-123.25365, 49.661513], [-123.254028, 49.66121], [-123.254574, 49.660531], [-123.254671, 49.660279], [-123.254682, 49.659625], [-123.254446, 49.659053], [-123.253857, 49.658048], [-123.25338, 49.656845], [-123.253389, 49.656017], [-123.254446, 49.653465], [-123.254745, 49.653003], [-123.258209, 49.653003], [-123.258684, 49.652787], [-123.260238, 49.652628], [-123.260158, 49.653003], [-123.260299, 49.653003], [-123.260355, 49.668084], [-123.257111, 49.668081], [-123.257198, 49.675637], [-123.251588, 49.675632], [-123.251578, 49.6702], [-123.239604, 49.670216], [-123.234264, 49.672063], [-123.230498, 49.673497], [-123.227912, 49.673999], [-123.221943, 49.677047], [-123.214661, 49.678915], [-123.209585, 49.68135], [-123.204744, 49.682945], [-123.200362, 49.683595], [-123.197682, 49.683886], [-123.197684, 49.688885], [-123.199822, 49.688881], [-123.199689, 49.696263], [-123.194112, 49.696197], [-123.193848, 49.703408], [-123.188269, 49.703336], [-123.187997, 49.71132], [-123.18793, 49.718542], [-123.176885, 49.718163], [-123.17678, 49.725399], [-123.173078, 49.725452], [-123.172604, 49.727269], [-123.170862, 49.729974], [-123.169095, 49.731148], [-123.169098, 49.739676], [-123.165546, 49.739681], [-123.165571, 49.746901], [-123.160014, 49.746908], [-123.160035, 49.753333], [-123.163448, 49.753337], [-123.180289, 49.764085], [-123.180316, 49.771419], [-123.185556, 49.771411], [-123.185589, 49.779971], [-123.194182, 49.788834], [-123.19414, 49.792451], [-123.192258, 49.793527], [-123.193392, 49.793919], [-123.19481, 49.794222], [-123.195839, 49.794392], [-123.196672, 49.794453], [-123.199399, 49.794943], [-123.20111, 49.795534], [-123.202237, 49.796044], [-123.203254, 49.796618], [-123.205027, 49.798324], [-123.206377, 49.799186], [-123.207881, 49.799884], [-123.209453, 49.800475], [-123.211319, 49.801083], [-123.212225, 49.801459], [-123.212711, 49.801728], [-123.213102, 49.80207], [-123.213397, 49.80286], [-123.213582, 49.803894], [-123.213544, 49.804515], [-123.213702, 49.806008], [-123.213843, 49.806475], [-123.214165, 49.807104], [-123.214754, 49.80793], [-123.215466, 49.808585], [-123.216136, 49.809007], [-123.217042, 49.809977], [-123.218242, 49.810982], [-123.218522, 49.811593], [-123.218528, 49.812556], [-123.218433, 49.813302], [-123.217814, 49.814644], [-123.216848, 49.816309], [-123.216712, 49.816768], [-123.216785, 49.817568], [-123.217302, 49.818556], [-123.217709, 49.819078], [-123.218085, 49.819419], [-123.218684, 49.819814], [-123.2192, 49.820046], [-123.220648, 49.820485], [-123.223306, 49.820948], [-123.226215, 49.821715], [-123.226437, 49.821849], [-123.226704, 49.822199], [-123.227378, 49.823557], [-123.227338, 49.82398], [-123.226934, 49.824124], [-123.226559, 49.824142], [-123.225447, 49.823983], [-123.224348, 49.82395], [-123.224055, 49.823995], [-123.223264, 49.82432], [-123.222918, 49.824411], [-123.222321, 49.824448], [-123.222029, 49.824574], [-123.221311, 49.825421], [-123.221244, 49.826113], [-123.221456, 49.826753], [-123.222083, 49.82747], [-123.222866, 49.827972], [-123.223532, 49.828116], [-123.225425, 49.828291], [-123.226371, 49.82846], [-123.227012, 49.828729], [-123.227221, 49.828899], [-123.227264, 49.829088], [-123.22526, 49.831827], [-123.224957, 49.832448], [-123.224887, 49.832777], [-123.224383, 49.832788], [-123.223654, 49.832784], [-123.22297, 49.832619], [-123.21857, 49.831038], [-123.217517, 49.830504], [-123.216521, 49.829939], [-123.215911, 49.829449], [-123.215247, 49.828023], [-123.214785, 49.827493], [-123.214073, 49.82708], [-123.21321, 49.826777], [-123.212348, 49.82667], [-123.211375, 49.826788], [-123.210488, 49.827096], [-123.209974, 49.827385], [-123.20953, 49.827737], [-123.209005, 49.828439], [-123.208868, 49.828935], [-123.208966, 49.829339], [-123.209611, 49.830282], [-123.210365, 49.83165], [-123.210996, 49.832453], [-123.21135, 49.832757], [-123.211931, 49.833114], [-123.213418, 49.833776], [-123.214079, 49.834005], [-123.217594, 49.834285], [-123.218447, 49.834416], [-123.220428, 49.834867], [-123.221675, 49.835287], [-123.222353, 49.835643], [-123.223317, 49.836338], [-123.223583, 49.83677], [-123.222509, 49.838163], [-123.22129, 49.839542], [-123.220933, 49.840236], [-123.220866, 49.840901], [-123.220881, 49.841109], [-123.221288, 49.841755], [-123.223368, 49.843316], [-123.224425, 49.843745], [-123.22636, 49.844128], [-123.228686, 49.844726], [-123.232235, 49.845007], [-123.234641, 49.845309], [-123.236047, 49.845602], [-123.237331, 49.846014], [-123.238765, 49.84664], [-123.239826, 49.847367], [-123.240944, 49.848327], [-123.24177, 49.849215], [-123.242568, 49.850311], [-123.243185, 49.851253], [-123.24362, 49.852135], [-123.244615, 49.853562], [-123.246168, 49.855223], [-123.247018, 49.855932], [-123.248122, 49.856694], [-123.248054, 49.856875], [-123.247068, 49.85712], [-123.244273, 49.857305], [-123.242993, 49.857326], [-123.241753, 49.857463], [-123.240698, 49.857762], [-123.238546, 49.858819], [-123.237785, 49.859341], [-123.237591, 49.859541], [-123.236776, 49.860891], [-123.236251, 49.861566], [-123.235852, 49.862485], [-123.23573, 49.863187], [-123.235704, 49.863439], [-123.235944, 49.864095], [-123.236603, 49.865101], [-123.236727, 49.865172], [-123.237941, 49.865602], [-123.239265, 49.86595], [-123.240351, 49.865957], [-123.241726, 49.865819], [-123.244976, 49.864678], [-123.24602, 49.864487], [-123.247132, 49.864395], [-123.248093, 49.864402], [-123.248969, 49.864553], [-123.249541, 49.864714], [-123.250769, 49.86525], [-123.251564, 49.865797], [-123.252347, 49.866596], [-123.252713, 49.867333], [-123.252703, 49.868116], [-123.252579, 49.868341], [-123.252345, 49.868549], [-123.251914, 49.868792], [-123.250441, 49.869317]]]]}, "properties": {"name": "Squamish-Lillooet D", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Squamish-Lillooet D", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931021", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.923029, 50.726622], [-121.923135, 50.726928], [-121.923784, 50.727609], [-121.924376, 50.727786], [-121.925286, 50.728253], [-121.92691, 50.729724], [-121.927904, 50.730929], [-121.92819, 50.731373], [-121.928457, 50.732167], [-121.929425, 50.733822], [-121.930571, 50.735155], [-121.931721, 50.736217], [-121.932198, 50.737112], [-121.932445, 50.737419], [-121.93258, 50.737547], [-121.934691, 50.737785], [-121.934974, 50.733858], [-121.932811, 50.733822], [-121.932691, 50.73298], [-121.932497, 50.723023], [-121.933955, 50.722918], [-121.933641, 50.708566], [-121.928043, 50.708471], [-121.928152, 50.704311], [-121.934868, 50.704292], [-121.934808, 50.699655], [-121.937753, 50.699633], [-121.937883, 50.697622], [-121.94063, 50.696412], [-121.939642, 50.695934], [-121.941977, 50.694806], [-121.94288, 50.69428], [-121.94407, 50.694261], [-121.943951, 50.690369], [-121.943655, 50.687202], [-121.946545, 50.687244], [-121.946468, 50.683653], [-121.94398, 50.683593], [-121.943586, 50.683658], [-121.941397, 50.682287], [-121.942055, 50.681835], [-121.941361, 50.675761], [-121.940399, 50.675442], [-121.938933, 50.676533], [-121.937649, 50.677251], [-121.935873, 50.678366], [-121.934138, 50.679255], [-121.934316, 50.678652], [-121.933628, 50.679076], [-121.933152, 50.679253], [-121.930314, 50.680054], [-121.926856, 50.681805], [-121.922641, 50.679454], [-121.920856, 50.677608], [-121.927289, 50.676496], [-121.927624, 50.676628], [-121.928127, 50.676716], [-121.92806, 50.677002], [-121.929907, 50.677068], [-121.931161, 50.677006], [-121.933105, 50.676374], [-121.93522, 50.675385], [-121.937219, 50.673832], [-121.936022, 50.673103], [-121.933172, 50.675103], [-121.931816, 50.675782], [-121.930704, 50.676208], [-121.929289, 50.676216], [-121.928302, 50.675999], [-121.927982, 50.676232], [-121.927067, 50.675624], [-121.927031, 50.675425], [-121.926515, 50.674829], [-121.925704, 50.673404], [-121.925573, 50.672947], [-121.925559, 50.672509], [-121.925093, 50.672016], [-121.924891, 50.671086], [-121.927538, 50.666764], [-121.927023, 50.666184], [-121.927492, 50.665738], [-121.935318, 50.665829], [-121.935581, 50.671419], [-121.942638, 50.671111], [-121.947383, 50.670122], [-121.947817, 50.671034], [-121.946973, 50.671368], [-121.946318, 50.6715], [-121.945827, 50.671732], [-121.945643, 50.672289], [-121.945946, 50.672059], [-121.948391, 50.671158], [-121.949087, 50.670775], [-121.950076, 50.670607], [-121.950598, 50.670601], [-121.953296, 50.670816], [-121.954544, 50.67058], [-121.955204, 50.67185], [-121.964856, 50.671858], [-121.965103, 50.673266], [-121.979359, 50.673212], [-121.979347, 50.67089], [-121.991745, 50.670579], [-121.992386, 50.668528], [-121.990775, 50.668602], [-121.986759, 50.669234], [-121.986864, 50.668948], [-121.987182, 50.668839], [-121.988785, 50.66665], [-121.989529, 50.666909], [-121.98998, 50.666418], [-121.990336, 50.666296], [-121.990423, 50.666152], [-121.990638, 50.666019], [-121.990591, 50.66564], [-121.990953, 50.665249], [-121.991298, 50.665017], [-121.991966, 50.664834], [-121.993356, 50.664693], [-121.992941, 50.666002], [-121.993036, 50.666319], [-121.993415, 50.666428], [-121.994656, 50.666431], [-121.995369, 50.666257], [-121.995742, 50.665936], [-121.998155, 50.666011], [-121.997533, 50.658964], [-122.000627, 50.658958], [-122.00043, 50.655663], [-121.979382, 50.654618], [-121.979368, 50.656196], [-121.979055, 50.659821], [-121.976183, 50.659792], [-121.976164, 50.66321], [-121.96998, 50.663288], [-121.970032, 50.666911], [-121.946502, 50.66667], [-121.946283, 50.665618], [-121.945804, 50.665594], [-121.945496, 50.661968], [-121.934155, 50.6618], [-121.933904, 50.654546], [-121.922832, 50.654309], [-121.923195, 50.6608], [-121.92361, 50.663881], [-121.921406, 50.665393], [-121.919089, 50.665634], [-121.917126, 50.665984], [-121.916918, 50.664134], [-121.916688, 50.663637], [-121.915881, 50.662406], [-121.902795, 50.662541], [-121.887106, 50.662459], [-121.886458, 50.662525], [-121.884591, 50.662533], [-121.88559, 50.650609], [-121.884826, 50.649495], [-121.883362, 50.64941], [-121.882166, 50.649043], [-121.880853, 50.648749], [-121.880387, 50.64857], [-121.879955, 50.648318], [-121.879398, 50.647916], [-121.879099, 50.647615], [-121.878889, 50.648536], [-121.865034, 50.648601], [-121.864707, 50.662536], [-121.876032, 50.66264], [-121.875518, 50.676943], [-121.877919, 50.676992], [-121.877774, 50.680601], [-121.88354, 50.680709], [-121.881805, 50.699835], [-121.898804, 50.700546], [-121.898404, 50.707692], [-121.903883, 50.707858], [-121.904341, 50.714654], [-121.903727, 50.714636], [-121.903521, 50.720131], [-121.906938, 50.720369], [-121.906904, 50.71841], [-121.913242, 50.718395], [-121.913156, 50.718879], [-121.914557, 50.718806], [-121.915746, 50.718856], [-121.916252, 50.718695], [-121.916984, 50.719614], [-121.917154, 50.720282], [-121.917485, 50.720599], [-121.917738, 50.720736], [-121.91868, 50.721636], [-121.918643, 50.722014], [-121.918807, 50.722293], [-121.918975, 50.722358], [-121.919613, 50.722372], [-121.91986, 50.722663], [-121.919961, 50.723221], [-121.92044, 50.723936], [-121.921013, 50.724292], [-121.921221, 50.7245], [-121.921547, 50.725107], [-121.923029, 50.726622]]]]}, "properties": {"name": "Lillooet", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Lillooet", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931026", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.970224, 51.194115], [-123.018703, 51.198628], [-123.033159, 51.200651], [-123.052344, 51.213323], [-123.053403, 51.213638], [-123.054906, 51.213682], [-123.055635, 51.214041], [-123.056624, 51.214356], [-123.058213, 51.214427], [-123.058587, 51.214552], [-123.059274, 51.214948], [-123.059934, 51.215459], [-123.060937, 51.217158], [-123.061941, 51.218057], [-123.063732, 51.218714], [-123.065279, 51.21909], [-123.065937, 51.219332], [-123.067485, 51.220015], [-123.067938, 51.220323], [-123.080029, 51.212286], [-123.070265, 51.194882], [-123.059124, 51.180981], [-123.057131, 51.173697], [-123.058734, 51.159692], [-123.05032, 51.149795], [-123.049138, 51.143541], [-123.054606, 51.140255], [-123.061648, 51.139905], [-123.068215, 51.141158], [-123.083618, 51.133364], [-123.088113, 51.132715], [-123.098417, 51.136749], [-123.10069, 51.138488], [-123.109272, 51.139401], [-123.128688, 51.132596], [-123.146721, 51.122735], [-123.152134, 51.113237], [-123.162469, 51.093534], [-123.170872, 51.081658], [-123.179451, 51.077162], [-123.182325, 51.072265], [-123.200363, 51.072137], [-123.216593, 51.066386], [-123.221145, 51.061557], [-123.22568, 51.060527], [-123.230909, 51.058406], [-123.235104, 51.058088], [-123.237443, 51.051948], [-123.241112, 51.048476], [-123.249257, 51.043908], [-123.249282, 51.043955], [-123.252612, 51.04149], [-123.252301, 51.031439], [-123.254221, 51.029721], [-123.255194, 51.025465], [-123.253245, 51.022542], [-123.252717, 51.018112], [-123.249876, 51.012078], [-123.244323, 51.007305], [-123.242374, 51.002634], [-123.243442, 51.000394], [-123.24902, 50.998843], [-123.256927, 50.999232], [-123.262682, 50.998047], [-123.271049, 50.998022], [-123.277417, 50.996287], [-123.284691, 50.996248], [-123.294526, 50.994613], [-123.297955, 50.987215], [-123.31384, 50.981258], [-123.322346, 50.985194], [-123.325476, 50.991387], [-123.334852, 50.99238], [-123.348469, 50.990732], [-123.359564, 50.990408], [-123.366755, 50.996746], [-123.371487, 51.002899], [-123.377332, 51.004661], [-123.383819, 51.004325], [-123.390618, 50.996615], [-123.398066, 50.994246], [-123.40226, 50.98823], [-123.412842, 50.987088], [-123.434372, 50.985334], [-123.451748, 50.980804], [-123.468636, 50.973644], [-123.502893, 50.958867], [-123.512627, 50.954083], [-123.515727, 50.947043], [-123.52632, 50.943759], [-123.535535, 50.939663], [-123.544015, 50.933766], [-123.552586, 50.928136], [-123.577435, 50.931331], [-123.587833, 50.926094], [-123.593942, 50.921859], [-123.601001, 50.913535], [-123.601577, 50.908381], [-123.60709, 50.90157], [-123.617115, 50.897011], [-123.628787, 50.895306], [-123.636997, 50.899178], [-123.643619, 50.899555], [-123.655077, 50.901492], [-123.663922, 50.896094], [-123.6638, 50.890553], [-123.662188, 50.880379], [-123.666789, 50.876939], [-123.680996, 50.882547], [-123.698913, 50.885232], [-123.709469, 50.884215], [-123.737001, 50.887185], [-123.750653, 50.886736], [-123.758217, 50.883464], [-123.74606, 50.87279], [-123.738192, 50.875524], [-123.727648, 50.876241], [-123.718232, 50.87127], [-123.717619, 50.851197], [-123.714025, 50.84877], [-123.719516, 50.848329], [-123.729508, 50.842861], [-123.725082, 50.840099], [-123.723802, 50.835756], [-123.72496, 50.828888], [-123.725131, 50.813325], [-123.719872, 50.801255], [-123.706557, 50.792373], [-123.696392, 50.792217], [-123.688853, 50.799677], [-123.683841, 50.800798], [-123.678867, 50.801074], [-123.675371, 50.801083], [-123.64004, 50.795175], [-123.630051, 50.7926], [-123.61923, 50.785715], [-123.617431, 50.781488], [-123.615203, 50.778658], [-123.612755, 50.776304], [-123.607078, 50.7768], [-123.59656, 50.780968], [-123.585183, 50.786097], [-123.575675, 50.792179], [-123.562817, 50.797549], [-123.549577, 50.800515], [-123.544485, 50.801204], [-123.53885, 50.801013], [-123.5332, 50.800561], [-123.525107, 50.797753], [-123.52029, 50.794349], [-123.511693, 50.786784], [-123.502803, 50.779854], [-123.49673, 50.779147], [-123.490207, 50.779644], [-123.488823, 50.785009], [-123.469838, 50.794092], [-123.454297, 50.798209], [-123.439073, 50.796549], [-123.426403, 50.790902], [-123.420551, 50.785808], [-123.407706, 50.780559], [-123.381979, 50.789697], [-123.376069, 50.792382], [-123.372124, 50.794662], [-123.369964, 50.796198], [-123.365514, 50.800621], [-123.36073, 50.791534], [-123.359463, 50.774854], [-123.358256, 50.761165], [-123.338189, 50.749659], [-123.321327, 50.731355], [-123.307673, 50.72969], [-123.290908, 50.732881], [-123.274767, 50.732692], [-123.268201, 50.731135], [-123.235801, 50.72296], [-123.220086, 50.710915], [-123.215028, 50.705837], [-123.200053, 50.688479], [-123.197963, 50.681757], [-123.198227, 50.675023], [-123.187465, 50.665407], [-123.180691, 50.656632], [-123.157318, 50.653222], [-123.167124, 50.642831], [-123.167271, 50.636723], [-123.163709, 50.6347], [-123.154233, 50.634543], [-123.141921, 50.633875], [-123.132515, 50.63271], [-123.121649, 50.629156], [-123.116439, 50.626], [-123.111909, 50.623388], [-123.107375, 50.619721], [-123.104661, 50.617203], [-123.104265, 50.617054], [-123.096677, 50.607469], [-123.095407, 50.605373], [-123.081475, 50.593997], [-123.060817, 50.583171], [-123.044597, 50.577311], [-123.035497, 50.578803], [-123.034529, 50.57967], [-123.031666, 50.58408], [-123.031596, 50.588087], [-123.034852, 50.590964], [-123.037123, 50.591641], [-123.043759, 50.59482], [-123.042685, 50.598986], [-123.038835, 50.601197], [-123.028443, 50.603087], [-123.01881, 50.60111], [-123.004206, 50.591103], [-122.99952, 50.585482], [-122.999284, 50.584828], [-122.998752, 50.584917], [-122.990779, 50.576241], [-122.990892, 50.57385], [-122.98985, 50.569183], [-122.98687, 50.567683], [-122.983385, 50.568247], [-122.981144, 50.569411], [-122.978533, 50.56865], [-122.96823, 50.561473], [-122.956761, 50.548728], [-122.951299, 50.54721], [-122.947247, 50.548124], [-122.942802, 50.551063], [-122.940893, 50.552895], [-122.94099, 50.55681], [-122.94163, 50.558882], [-122.941756, 50.562392], [-122.934934, 50.576546], [-122.932863, 50.58009], [-122.931383, 50.584776], [-122.92973, 50.596861], [-122.928995, 50.599794], [-122.927939, 50.601178], [-122.922929, 50.601064], [-122.913391, 50.602011], [-122.906889, 50.603505], [-122.896966, 50.609154], [-122.891972, 50.612897], [-122.888717, 50.614156], [-122.880948, 50.614421], [-122.871733, 50.615017], [-122.864907, 50.617011], [-122.861071, 50.619491], [-122.858525, 50.623508], [-122.858561, 50.626336], [-122.848739, 50.630272], [-122.832833, 50.6462], [-122.816386, 50.647399], [-122.801403, 50.646169], [-122.792442, 50.648452], [-122.788506, 50.650894], [-122.785721, 50.65143], [-122.78057, 50.653306], [-122.777527, 50.655028], [-122.777554, 50.655962], [-122.778609, 50.656942], [-122.78113, 50.657901], [-122.782821, 50.658903], [-122.784569, 50.661772], [-122.783165, 50.664125], [-122.780158, 50.665443], [-122.775199, 50.66308], [-122.769414, 50.65973], [-122.766959, 50.661413], [-122.7634, 50.659974], [-122.761247, 50.659174], [-122.757895, 50.658995], [-122.754263, 50.657389], [-122.751519, 50.65412], [-122.72901, 50.656097], [-122.716766, 50.65204], [-122.703928, 50.643555], [-122.702631, 50.643917], [-122.694141, 50.647039], [-122.687644, 50.650362], [-122.678116, 50.652096], [-122.671631, 50.651441], [-122.669515, 50.650412], [-122.663712, 50.649891], [-122.659216, 50.651132], [-122.629237, 50.652807], [-122.624784, 50.646794], [-122.618679, 50.639401], [-122.611469, 50.635673], [-122.608138, 50.643046], [-122.58893, 50.642358], [-122.589144, 50.652382], [-122.582519, 50.656369], [-122.587688, 50.662799], [-122.586179, 50.66976], [-122.587672, 50.677729], [-122.592622, 50.680443], [-122.588182, 50.702156], [-122.513267, 50.731702], [-122.488938, 50.739714], [-122.448989, 50.743911], [-122.411238, 50.750118], [-122.39153, 50.75452], [-122.288017, 50.741291], [-122.26249, 50.738697], [-122.257734, 50.740905], [-122.251294, 50.744093], [-122.241745, 50.74854], [-122.23992, 50.7496], [-122.239586, 50.749589], [-122.234331, 50.751642], [-122.229308, 50.753869], [-122.22824, 50.754889], [-122.225962, 50.755659], [-122.21104, 50.757633], [-122.186672, 50.760583], [-122.184883, 50.761023], [-122.184779, 50.761113], [-122.172123, 50.763978], [-122.161496, 50.757986], [-122.150721, 50.754329], [-122.141173, 50.748798], [-122.128788, 50.74338], [-122.116866, 50.744557], [-122.099017, 50.741564], [-122.096166, 50.74882], [-122.094876, 50.763664], [-122.093469, 50.763506], [-122.09052, 50.763486], [-122.090398, 50.764401], [-122.090571, 50.766532], [-122.092944, 50.769039], [-122.107027, 50.780578], [-122.115572, 50.78687], [-122.130193, 50.793899], [-122.136569, 50.798094], [-122.145082, 50.806342], [-122.148148, 50.810334], [-122.149699, 50.810686], [-122.152452, 50.811612], [-122.156823, 50.813711], [-122.159371, 50.815797], [-122.161038, 50.817502], [-122.162398, 50.819064], [-122.162794, 50.821793], [-122.161914, 50.832972], [-122.149067, 50.832608], [-122.146967, 50.851954], [-122.148264, 50.853421], [-122.148728, 50.853764], [-122.149531, 50.854035], [-122.151041, 50.854055], [-122.151518, 50.854159], [-122.152201, 50.85453], [-122.153152, 50.855317], [-122.153821, 50.855717], [-122.154601, 50.856492], [-122.155152, 50.856701], [-122.156615, 50.856896], [-122.157301, 50.857216], [-122.157459, 50.857594], [-122.156879, 50.858631], [-122.156167, 50.859431], [-122.156211, 50.859777], [-122.156425, 50.860058], [-122.157286, 50.860884], [-122.158329, 50.861237], [-122.159146, 50.861181], [-122.159463, 50.861098], [-122.159679, 50.860962], [-122.160215, 50.86026], [-122.1605, 50.859589], [-122.160788, 50.859447], [-122.16148, 50.859383], [-122.162052, 50.859582], [-122.162396, 50.859978], [-122.162758, 50.860219], [-122.164043, 50.860603], [-122.166251, 50.861042], [-122.167617, 50.861402], [-122.170746, 50.861966], [-122.171232, 50.862213], [-122.171676, 50.862945], [-122.172275, 50.863346], [-122.173003, 50.863455], [-122.174207, 50.863362], [-122.175937, 50.86301], [-122.176769, 50.862751], [-122.177381, 50.862466], [-122.179008, 50.862109], [-122.179967, 50.861606], [-122.180324, 50.861498], [-122.18149, 50.861223], [-122.183081, 50.860984], [-122.188612, 50.859571], [-122.190388, 50.859175], [-122.19207, 50.858661], [-122.193301, 50.858489], [-122.196506, 50.863397], [-122.199242, 50.866835], [-122.199378, 50.86698], [-122.200967, 50.867559], [-122.205779, 50.866825], [-122.206051, 50.86661], [-122.205486, 50.86545], [-122.205094, 50.863993], [-122.206093, 50.862703], [-122.207922, 50.861992], [-122.210579, 50.861748], [-122.213609, 50.862401], [-122.218591, 50.86438], [-122.219204, 50.864337], [-122.22776, 50.861793], [-122.233517, 50.858706], [-122.247687, 50.849035], [-122.25976, 50.838821], [-122.273988, 50.831066], [-122.287877, 50.826854], [-122.295433, 50.82747], [-122.327331, 50.845892], [-122.348998, 50.855], [-122.408182, 50.887626], [-122.422369, 50.89598], [-122.429472, 50.903144], [-122.430015, 50.905834], [-122.430124, 50.905886], [-122.432114, 50.932792], [-122.438105, 50.938743], [-122.454231, 50.943767], [-122.477607, 50.945021], [-122.502142, 50.948989], [-122.526576, 50.95678], [-122.536767, 50.961516], [-122.587941, 51.009446], [-122.588634, 51.018188], [-122.595907, 51.022339], [-122.594537, 51.027279], [-122.578364, 51.030215], [-122.572617, 51.033841], [-122.572534, 51.03406], [-122.582047, 51.040321], [-122.586588, 51.044406], [-122.589087, 51.04988], [-122.587801, 51.053753], [-122.589793, 51.056363], [-122.598149, 51.060496], [-122.607075, 51.063727], [-122.614976, 51.067535], [-122.618449, 51.081197], [-122.625963, 51.079948], [-122.633831, 51.081509], [-122.646655, 51.086155], [-122.661912, 51.09264], [-122.675187, 51.098651], [-122.683501, 51.104071], [-122.697562, 51.116112], [-122.707479, 51.125044], [-122.712611, 51.137764], [-122.71345, 51.147911], [-122.710052, 51.162302], [-122.710245, 51.162386], [-122.710858, 51.16236], [-122.711692, 51.161805], [-122.712581, 51.161358], [-122.712739, 51.161385], [-122.713083, 51.161297], [-122.714313, 51.161272], [-122.714641, 51.161318], [-122.715241, 51.161544], [-122.716026, 51.161654], [-122.716411, 51.161673], [-122.7173, 51.161522], [-122.718658, 51.161624], [-122.719318, 51.161257], [-122.719691, 51.161213], [-122.719876, 51.161008], [-122.720206, 51.160899], [-122.720839, 51.160325], [-122.720827, 51.160065], [-122.721029, 51.159769], [-122.720932, 51.159645], [-122.72633, 51.158037], [-122.743034, 51.159111], [-122.776048, 51.13762], [-122.790921, 51.148786], [-122.807359, 51.145872], [-122.82252, 51.144786], [-122.888648, 51.177266], [-122.905259, 51.183902], [-122.970224, 51.194115]]]]}, "properties": {"name": "Squamish-Lillooet A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Squamish-Lillooet A", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931032", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.514703, 51.204232], [-122.522135, 51.209393], [-122.530226, 51.209121], [-122.530271, 51.209186], [-122.547628, 51.201806], [-122.552354, 51.191137], [-122.558014, 51.184349], [-122.568157, 51.178847], [-122.5777, 51.177294], [-122.589771, 51.176626], [-122.594143, 51.173395], [-122.593451, 51.168626], [-122.593806, 51.166429], [-122.593899, 51.166402], [-122.602496, 51.142573], [-122.596546, 51.132633], [-122.586617, 51.127595], [-122.586808, 51.122342], [-122.591143, 51.122407], [-122.592417, 51.121215], [-122.595333, 51.11923], [-122.595879, 51.118207], [-122.595795, 51.117694], [-122.594174, 51.114776], [-122.594006, 51.113346], [-122.59328, 51.112372], [-122.592551, 51.111974], [-122.588642, 51.111323], [-122.583267, 51.111134], [-122.581722, 51.110724], [-122.580908, 51.110326], [-122.580452, 51.109865], [-122.580367, 51.109407], [-122.581013, 51.108438], [-122.582473, 51.106906], [-122.582746, 51.106448], [-122.582749, 51.105424], [-122.582479, 51.104964], [-122.581851, 51.104503], [-122.579664, 51.103696], [-122.579393, 51.103407], [-122.587315, 51.096156], [-122.604118, 51.086237], [-122.617835, 51.081301], [-122.618449, 51.081197], [-122.614976, 51.067535], [-122.607075, 51.063727], [-122.598149, 51.060496], [-122.589793, 51.056363], [-122.587801, 51.053753], [-122.589087, 51.04988], [-122.586588, 51.044406], [-122.582047, 51.040321], [-122.572534, 51.03406], [-122.572617, 51.033841], [-122.578364, 51.030215], [-122.594537, 51.027279], [-122.595907, 51.022339], [-122.588634, 51.018188], [-122.587941, 51.009446], [-122.536767, 50.961516], [-122.526576, 50.95678], [-122.502142, 50.948989], [-122.477607, 50.945021], [-122.454231, 50.943767], [-122.438105, 50.938743], [-122.432114, 50.932792], [-122.430124, 50.905886], [-122.430015, 50.905834], [-122.429472, 50.903144], [-122.422369, 50.89598], [-122.408182, 50.887626], [-122.348998, 50.855], [-122.327331, 50.845892], [-122.295433, 50.82747], [-122.287877, 50.826854], [-122.273988, 50.831066], [-122.25976, 50.838821], [-122.247687, 50.849035], [-122.233517, 50.858706], [-122.22776, 50.861793], [-122.219204, 50.864337], [-122.218591, 50.86438], [-122.213609, 50.862401], [-122.210579, 50.861748], [-122.207922, 50.861992], [-122.206093, 50.862703], [-122.205094, 50.863993], [-122.205486, 50.86545], [-122.206051, 50.86661], [-122.205779, 50.866825], [-122.200967, 50.867559], [-122.199378, 50.86698], [-122.199242, 50.866835], [-122.196506, 50.863397], [-122.193301, 50.858489], [-122.19207, 50.858661], [-122.190388, 50.859175], [-122.188612, 50.859571], [-122.183081, 50.860984], [-122.18149, 50.861223], [-122.180324, 50.861498], [-122.179967, 50.861606], [-122.179008, 50.862109], [-122.177381, 50.862466], [-122.176769, 50.862751], [-122.175937, 50.86301], [-122.174207, 50.863362], [-122.173003, 50.863455], [-122.172547, 50.863419], [-122.172275, 50.863346], [-122.171676, 50.862945], [-122.171232, 50.862213], [-122.170746, 50.861966], [-122.167617, 50.861402], [-122.166251, 50.861042], [-122.164043, 50.860603], [-122.162758, 50.860219], [-122.162396, 50.859978], [-122.162052, 50.859582], [-122.16148, 50.859383], [-122.160788, 50.859447], [-122.1605, 50.859589], [-122.160215, 50.86026], [-122.159679, 50.860962], [-122.159463, 50.861098], [-122.159146, 50.861181], [-122.158329, 50.861237], [-122.157286, 50.860884], [-122.156425, 50.860058], [-122.156211, 50.859777], [-122.156167, 50.859431], [-122.156879, 50.858631], [-122.157459, 50.857594], [-122.157301, 50.857216], [-122.156615, 50.856896], [-122.155152, 50.856701], [-122.154601, 50.856492], [-122.153821, 50.855717], [-122.153152, 50.855317], [-122.152201, 50.85453], [-122.151518, 50.854159], [-122.151041, 50.854055], [-122.149531, 50.854035], [-122.148728, 50.853764], [-122.148264, 50.853421], [-122.146967, 50.851954], [-122.14297, 50.853599], [-122.140052, 50.852686], [-122.134346, 50.848798], [-122.131813, 50.844635], [-122.130069, 50.844127], [-122.128692, 50.843959], [-122.122109, 50.842806], [-122.109961, 50.835331], [-122.108676, 50.830587], [-122.107445, 50.828453], [-122.10707, 50.828036], [-122.105042, 50.826437], [-122.102279, 50.825187], [-122.089279, 50.822116], [-122.082529, 50.820134], [-122.082126, 50.820117], [-122.080801, 50.819796], [-122.080331, 50.81956], [-122.079066, 50.818655], [-122.078094, 50.817538], [-122.077198, 50.816871], [-122.075872, 50.81611], [-122.074224, 50.815429], [-122.07179, 50.81421], [-122.070783, 50.813597], [-122.069276, 50.812944], [-122.066502, 50.812588], [-122.06504, 50.813023], [-122.060951, 50.813308], [-122.05645, 50.813832], [-122.054992, 50.815336], [-122.052689, 50.817201], [-122.046792, 50.819191], [-122.043482, 50.81936], [-122.040676, 50.819145], [-122.039769, 50.819156], [-122.03675, 50.819489], [-122.034061, 50.821127], [-122.033368, 50.822508], [-122.023104, 50.826215], [-122.020949, 50.805802], [-122.013929, 50.801246], [-122.004788, 50.802198], [-121.989565, 50.79661], [-121.969777, 50.787773], [-121.967607, 50.783814], [-121.961136, 50.770542], [-121.960571, 50.769606], [-121.959382, 50.768455], [-121.958571, 50.767299], [-121.955269, 50.763079], [-121.9513, 50.759351], [-121.946812, 50.756942], [-121.94562, 50.756595], [-121.944804, 50.756568], [-121.943159, 50.756783], [-121.94101, 50.756738], [-121.939619, 50.756619], [-121.937665, 50.756192], [-121.936814, 50.75619], [-121.93336, 50.761434], [-121.92937, 50.765645], [-121.926103, 50.767425], [-121.928457, 50.770012], [-121.923413, 50.771139], [-121.920698, 50.771255], [-121.903094, 50.767249], [-121.903399, 50.763656], [-121.903875, 50.763576], [-121.904175, 50.763454], [-121.904584, 50.763556], [-121.904918, 50.763757], [-121.90621, 50.763787], [-121.906716, 50.763864], [-121.907134, 50.764246], [-121.908022, 50.764452], [-121.908781, 50.764791], [-121.910238, 50.764949], [-121.911607, 50.765231], [-121.912797, 50.765278], [-121.913512, 50.7656], [-121.913977, 50.765731], [-121.914655, 50.765799], [-121.914912, 50.765775], [-121.915795, 50.765576], [-121.916141, 50.765399], [-121.916624, 50.765378], [-121.917159, 50.765455], [-121.918257, 50.765842], [-121.918853, 50.765839], [-121.919407, 50.765754], [-121.919825, 50.765533], [-121.921222, 50.765141], [-121.923276, 50.764001], [-121.924114, 50.763918], [-121.924944, 50.763629], [-121.925635, 50.763167], [-121.92628, 50.762841], [-121.92708, 50.762651], [-121.928041, 50.762075], [-121.928497, 50.761467], [-121.928574, 50.76055], [-121.929092, 50.760141], [-121.929317, 50.759675], [-121.929308, 50.759425], [-121.930033, 50.758757], [-121.930538, 50.758384], [-121.930738, 50.758304], [-121.931358, 50.757788], [-121.93154, 50.757241], [-121.931469, 50.756656], [-121.932074, 50.756266], [-121.931873, 50.755752], [-121.932452, 50.755226], [-121.932628, 50.754921], [-121.932508, 50.754607], [-121.931995, 50.75408], [-121.931974, 50.753765], [-121.931626, 50.753501], [-121.930981, 50.752577], [-121.931282, 50.751825], [-121.931193, 50.751411], [-121.931455, 50.751008], [-121.931256, 50.74982], [-121.931525, 50.749504], [-121.932123, 50.749099], [-121.932184, 50.748937], [-121.931633, 50.747044], [-121.932134, 50.746131], [-121.932719, 50.745353], [-121.93297, 50.744871], [-121.933457, 50.743499], [-121.933424, 50.743101], [-121.93363, 50.742997], [-121.934308, 50.742935], [-121.976878, 50.74312], [-121.976787, 50.752552], [-121.976419, 50.761632], [-121.990941, 50.761566], [-121.990499, 50.778931], [-122.024354, 50.779197], [-122.024281, 50.793617], [-122.043611, 50.793701], [-122.043002, 50.808175], [-122.065436, 50.808474], [-122.065665, 50.804923], [-122.102574, 50.805136], [-122.102743, 50.808679], [-122.137062, 50.809284], [-122.137389, 50.826224], [-122.137406, 50.832356], [-122.149063, 50.832665], [-122.149067, 50.832608], [-122.161914, 50.832972], [-122.162794, 50.821793], [-122.162398, 50.819064], [-122.161038, 50.817502], [-122.159371, 50.815797], [-122.156823, 50.813711], [-122.152452, 50.811612], [-122.149699, 50.810686], [-122.148148, 50.810334], [-122.145082, 50.806342], [-122.136569, 50.798094], [-122.130193, 50.793899], [-122.115572, 50.78687], [-122.107027, 50.780578], [-122.092944, 50.769039], [-122.090571, 50.766532], [-122.090398, 50.764401], [-122.09052, 50.763486], [-122.093469, 50.763506], [-122.094876, 50.763664], [-122.096166, 50.74882], [-122.099017, 50.741564], [-122.116866, 50.744557], [-122.128788, 50.74338], [-122.141173, 50.748798], [-122.150721, 50.754329], [-122.161496, 50.757986], [-122.172123, 50.763978], [-122.184779, 50.761113], [-122.184883, 50.761023], [-122.186672, 50.760583], [-122.21104, 50.757633], [-122.225962, 50.755659], [-122.22824, 50.754889], [-122.229308, 50.753869], [-122.234331, 50.751642], [-122.239586, 50.749589], [-122.23992, 50.7496], [-122.241745, 50.74854], [-122.251294, 50.744093], [-122.257734, 50.740905], [-122.26249, 50.738697], [-122.288017, 50.741291], [-122.39153, 50.75452], [-122.411238, 50.750118], [-122.448989, 50.743911], [-122.488938, 50.739714], [-122.513267, 50.731702], [-122.588182, 50.702156], [-122.592622, 50.680443], [-122.587672, 50.677729], [-122.586179, 50.66976], [-122.587688, 50.662799], [-122.582519, 50.656369], [-122.589144, 50.652382], [-122.58893, 50.642358], [-122.608138, 50.643046], [-122.611469, 50.635673], [-122.608912, 50.634302], [-122.609213, 50.633417], [-122.610888, 50.627217], [-122.612513, 50.615613], [-122.610818, 50.609456], [-122.607805, 50.604173], [-122.609863, 50.599792], [-122.585397, 50.593287], [-122.550394, 50.579817], [-122.537196, 50.580461], [-122.507739, 50.56836], [-122.504148, 50.566508], [-122.482997, 50.566677], [-122.478375, 50.566636], [-122.478083, 50.577682], [-122.467016, 50.578203], [-122.467137, 50.583779], [-122.466777, 50.591048], [-122.461292, 50.592161], [-122.462426, 50.597379], [-122.459995, 50.598198], [-122.458194, 50.598427], [-122.45827, 50.599394], [-122.458014, 50.602116], [-122.454024, 50.601995], [-122.449788, 50.60195], [-122.449349, 50.607628], [-122.448316, 50.613914], [-122.448161, 50.619451], [-122.436892, 50.619309], [-122.437029, 50.621492], [-122.437088, 50.63026], [-122.427455, 50.630256], [-122.428322, 50.629444], [-122.428423, 50.629202], [-122.428473, 50.628591], [-122.429091, 50.626697], [-122.428937, 50.62533], [-122.42931, 50.62372], [-122.429675, 50.622725], [-122.430415, 50.621172], [-122.430417, 50.620993], [-122.43025, 50.620704], [-122.42937, 50.619899], [-122.428963, 50.61961], [-122.428503, 50.619094], [-122.428186, 50.618491], [-122.428219, 50.618103], [-122.428377, 50.617942], [-122.428564, 50.617548], [-122.428864, 50.617234], [-122.429846, 50.616717], [-122.430485, 50.616622], [-122.431266, 50.616266], [-122.431493, 50.616142], [-122.431611, 50.615765], [-122.431246, 50.614369], [-122.431357, 50.613316], [-122.431114, 50.612489], [-122.430272, 50.611872], [-122.429592, 50.612085], [-122.429508, 50.61204], [-122.429371, 50.611653], [-122.429632, 50.611105], [-122.429736, 50.610675], [-122.429923, 50.610477], [-122.430111, 50.610074], [-122.430101, 50.609651], [-122.429771, 50.608857], [-122.42976, 50.608669], [-122.430182, 50.607745], [-122.430206, 50.60688], [-122.430456, 50.606054], [-122.43058, 50.605085], [-122.43054, 50.604851], [-122.43021, 50.60421], [-122.429099, 50.603746], [-122.429002, 50.603575], [-122.429067, 50.602945], [-122.429494, 50.601508], [-122.430093, 50.601017], [-122.43066, 50.600885], [-122.430916, 50.600761], [-122.431033, 50.600356], [-122.431206, 50.600177], [-122.431576, 50.599945], [-122.43186, 50.599856], [-122.43199, 50.599489], [-122.432616, 50.599141], [-122.432913, 50.59887], [-122.421342, 50.595203], [-122.416077, 50.593336], [-122.412171, 50.592078], [-122.410559, 50.59213], [-122.409811, 50.59188], [-122.409198, 50.591339], [-122.408934, 50.591312], [-122.409728, 50.590443], [-122.413988, 50.584456], [-122.416092, 50.582394], [-122.419225, 50.579678], [-122.422417, 50.577179], [-122.425543, 50.575132], [-122.427071, 50.574012], [-122.435345, 50.569446], [-122.441951, 50.566298], [-122.446439, 50.564312], [-122.449467, 50.563262], [-122.45528, 50.561371], [-122.450415, 50.558125], [-122.447422, 50.557456], [-122.439695, 50.555868], [-122.418853, 50.552642], [-122.407321, 50.545649], [-122.396695, 50.542622], [-122.387732, 50.53661], [-122.374606, 50.53131], [-122.360869, 50.524392], [-122.356391, 50.52323], [-122.340873, 50.520801], [-122.337767, 50.520568], [-122.333402, 50.515394], [-122.323897, 50.508034], [-122.314671, 50.507678], [-122.311093, 50.501693], [-122.311532, 50.494911], [-122.298345, 50.486854], [-122.290211, 50.48142], [-122.2873, 50.475429], [-122.293344, 50.469664], [-122.304067, 50.462985], [-122.306132, 50.454529], [-122.302779, 50.44095], [-122.304444, 50.430924], [-122.314799, 50.424078], [-122.33091, 50.418331], [-122.335937, 50.416168], [-122.355282, 50.414517], [-122.371275, 50.411052], [-122.380773, 50.410277], [-122.389829, 50.411502], [-122.396547, 50.411121], [-122.398732, 50.409995], [-122.401072, 50.408553], [-122.40421, 50.406315], [-122.406771, 50.405307], [-122.407863, 50.399293], [-122.414255, 50.398506], [-122.417992, 50.402905], [-122.42537, 50.408532], [-122.435146, 50.418289], [-122.441075, 50.426672], [-122.446005, 50.430342], [-122.465075, 50.437232], [-122.485435, 50.443464], [-122.498085, 50.444567], [-122.505363, 50.441018], [-122.500574, 50.430868], [-122.493986, 50.425694], [-122.495386, 50.420229], [-122.501942, 50.421547], [-122.505088, 50.417498], [-122.517257, 50.419696], [-122.525188, 50.4148], [-122.525925, 50.409914], [-122.52332, 50.407291], [-122.523207, 50.399916], [-122.527626, 50.392108], [-122.527524, 50.390485], [-122.517067, 50.387737], [-122.499115, 50.392923], [-122.49288, 50.391163], [-122.486759, 50.390596], [-122.476946, 50.38348], [-122.475527, 50.380167], [-122.473944, 50.376029], [-122.472092, 50.371647], [-122.47065, 50.358585], [-122.462446, 50.351185], [-122.438751, 50.335348], [-122.408058, 50.332909], [-122.385161, 50.318659], [-122.366382, 50.311555], [-122.364403, 50.304248], [-122.36057, 50.291893], [-122.357559, 50.287402], [-122.363505, 50.282195], [-122.371312, 50.270976], [-122.373659, 50.26161], [-122.360864, 50.257876], [-122.346985, 50.250691], [-122.351472, 50.246725], [-122.357874, 50.235495], [-122.353465, 50.230992], [-122.314867, 50.228718], [-122.30163, 50.229787], [-122.30086, 50.232317], [-122.300532, 50.233739], [-122.297168, 50.235763], [-122.296089, 50.237389], [-122.295679, 50.238884], [-122.296022, 50.240263], [-122.296962, 50.241942], [-122.298234, 50.24342], [-122.300089, 50.244659], [-122.301556, 50.246117], [-122.303163, 50.248616], [-122.30307, 50.249371], [-122.299551, 50.251989], [-122.298309, 50.252719], [-122.295706, 50.253856], [-122.2937, 50.254251], [-122.291854, 50.254322], [-122.291158, 50.254507], [-122.289281, 50.255584], [-122.286491, 50.255968], [-122.282381, 50.256202], [-122.277416, 50.256946], [-122.275067, 50.258224], [-122.273364, 50.259604], [-122.272065, 50.260352], [-122.271479, 50.260411], [-122.269681, 50.260103], [-122.269061, 50.259946], [-122.267645, 50.259149], [-122.264974, 50.258633], [-122.262994, 50.258973], [-122.262525, 50.259264], [-122.261764, 50.260241], [-122.260535, 50.261509], [-122.258639, 50.26422], [-122.258117, 50.264619], [-122.255398, 50.265703], [-122.250503, 50.268367], [-122.250065, 50.268784], [-122.249532, 50.269956], [-122.247548, 50.271338], [-122.245329, 50.272255], [-122.243453, 50.273511], [-122.240062, 50.274635], [-122.236455, 50.274881], [-122.234971, 50.274875], [-122.234612, 50.275129], [-122.234531, 50.276423], [-122.235645, 50.278406], [-122.237354, 50.2806], [-122.237311, 50.281157], [-122.2362, 50.282747], [-122.236205, 50.285279], [-122.237139, 50.28678], [-122.238058, 50.287651], [-122.240673, 50.288956], [-122.243873, 50.290022], [-122.245864, 50.291081], [-122.246693, 50.291666], [-122.248035, 50.293756], [-122.248947, 50.296621], [-122.249402, 50.302579], [-122.24978, 50.304264], [-122.249392, 50.305615], [-122.243513, 50.308378], [-122.240788, 50.309371], [-122.23868, 50.310341], [-122.237318, 50.312059], [-122.237431, 50.313243], [-122.238696, 50.314453], [-122.24009, 50.315123], [-122.242264, 50.315534], [-122.243575, 50.316276], [-122.243808, 50.316651], [-122.243485, 50.318342], [-122.242166, 50.319503], [-122.241726, 50.321052], [-122.24214, 50.32191], [-122.241924, 50.322253], [-122.240007, 50.323024], [-122.237774, 50.323492], [-122.234296, 50.324689], [-122.226606, 50.325651], [-122.22215, 50.325723], [-122.218304, 50.325502], [-122.21637, 50.325554], [-122.215286, 50.325958], [-122.214791, 50.326393], [-122.214439, 50.328138], [-122.214372, 50.330061], [-122.214412, 50.331767], [-122.213791, 50.332832], [-122.212628, 50.333488], [-122.211595, 50.333694], [-122.206254, 50.33442], [-122.204832, 50.334844], [-122.203809, 50.3355], [-122.202412, 50.337002], [-122.201925, 50.337796], [-122.20137, 50.33807], [-122.199803, 50.338227], [-122.197168, 50.338283], [-122.194236, 50.338935], [-122.192196, 50.339293], [-122.191323, 50.339084], [-122.189117, 50.338184], [-122.185638, 50.336664], [-122.183117, 50.335371], [-122.181255, 50.334809], [-122.180383, 50.33469], [-122.176384, 50.335242], [-122.174335, 50.33515], [-122.172408, 50.33556], [-122.170791, 50.337315], [-122.170237, 50.3389], [-122.17062, 50.340945], [-122.169085, 50.343849], [-122.167948, 50.345762], [-122.167402, 50.346485], [-122.166624, 50.346833], [-122.161762, 50.347804], [-122.159512, 50.348863], [-122.158063, 50.349341], [-122.156748, 50.349549], [-122.155017, 50.349939], [-122.154321, 50.350214], [-122.152947, 50.351572], [-122.153126, 50.352056], [-122.153947, 50.353594], [-122.154015, 50.354114], [-122.15275, 50.355346], [-122.152002, 50.355818], [-122.151007, 50.35782], [-122.148569, 50.359348], [-122.145419, 50.360432], [-122.146836, 50.36218], [-122.147926, 50.364072], [-122.149496, 50.367045], [-122.151267, 50.36845], [-122.154261, 50.369089], [-122.156941, 50.369515], [-122.163079, 50.371241], [-122.163566, 50.371669], [-122.164124, 50.372796], [-122.163988, 50.373066], [-122.162376, 50.373959], [-122.160308, 50.37455], [-122.159298, 50.374611], [-122.157161, 50.374591], [-122.156742, 50.374684], [-122.154805, 50.376226], [-122.154472, 50.377827], [-122.155102, 50.379744], [-122.15081, 50.384413], [-122.147098, 50.384368], [-122.1441, 50.384857], [-122.143597, 50.385023], [-122.140095, 50.387079], [-122.140129, 50.387384], [-122.141147, 50.389083], [-122.140697, 50.390451], [-122.138955, 50.391974], [-122.138089, 50.393705], [-122.138363, 50.394745], [-122.138679, 50.395048], [-122.139533, 50.39558], [-122.139739, 50.396009], [-122.139755, 50.396817], [-122.139566, 50.397196], [-122.138367, 50.397726], [-122.137833, 50.397766], [-122.136028, 50.397455], [-122.133872, 50.397938], [-122.131059, 50.39936], [-122.130089, 50.400086], [-122.13007, 50.400589], [-122.132367, 50.404308], [-122.132675, 50.405653], [-122.132262, 50.406105], [-122.130061, 50.407236], [-122.127914, 50.408168], [-122.126836, 50.4092], [-122.123761, 50.413104], [-122.122533, 50.413598], [-122.119066, 50.414737], [-122.118402, 50.415317], [-122.117996, 50.416128], [-122.118349, 50.416916], [-122.119272, 50.418058], [-122.121927, 50.419942], [-122.125903, 50.421707], [-122.129626, 50.424911], [-122.131296, 50.426802], [-122.131653, 50.42777], [-122.131469, 50.428418], [-122.129522, 50.4296], [-122.126198, 50.430918], [-122.123396, 50.431567], [-122.121606, 50.432155], [-122.120097, 50.432741], [-122.119141, 50.432784], [-122.113856, 50.43158], [-122.110093, 50.430508], [-122.108261, 50.430341], [-122.107728, 50.430471], [-122.105504, 50.431924], [-122.104134, 50.432419], [-122.103292, 50.432515], [-122.100952, 50.432333], [-122.098898, 50.432329], [-122.095617, 50.432999], [-122.093116, 50.433231], [-122.087317, 50.431561], [-122.084209, 50.430863], [-122.079605, 50.428302], [-122.076676, 50.427456], [-122.076245, 50.42718], [-122.075342, 50.425901], [-122.072968, 50.425323], [-122.068639, 50.425567], [-122.061381, 50.425686], [-122.060485, 50.42598], [-122.059288, 50.426689], [-122.056648, 50.428593], [-122.054723, 50.42954], [-122.051131, 50.430174], [-122.046956, 50.431225], [-122.046307, 50.431122], [-122.045684, 50.430874], [-122.045281, 50.430372], [-122.04515, 50.429239], [-122.045542, 50.427346], [-122.04501, 50.425801], [-122.043814, 50.424927], [-122.043288, 50.423743], [-122.042964, 50.4211], [-122.042647, 50.420759], [-122.040727, 50.420285], [-122.035765, 50.41965], [-122.031804, 50.418326], [-122.030383, 50.417435], [-122.026465, 50.416955], [-122.02358, 50.41636], [-122.022984, 50.416065], [-122.021877, 50.415112], [-122.020007, 50.414278], [-122.017445, 50.414167], [-122.015574, 50.414454], [-122.015151, 50.414379], [-122.012931, 50.413294], [-122.011723, 50.412254], [-122.011397, 50.412125], [-122.007852, 50.412335], [-122.004356, 50.413614], [-122.002171, 50.414148], [-122.000743, 50.41457], [-121.997738, 50.414875], [-121.992094, 50.415591], [-121.990572, 50.416168], [-121.990049, 50.416187], [-121.987341, 50.415654], [-121.984765, 50.416406], [-121.982341, 50.416113], [-121.98043, 50.416286], [-121.97784, 50.416139], [-121.973496, 50.417242], [-121.968405, 50.417324], [-121.967856, 50.416283], [-121.966086, 50.414511], [-121.965232, 50.414], [-121.965019, 50.413505], [-121.965359, 50.412895], [-121.966615, 50.412167], [-121.967074, 50.410796], [-121.966772, 50.409358], [-121.966181, 50.407382], [-121.96475, 50.40568], [-121.962033, 50.40449], [-121.95993, 50.403008], [-121.957331, 50.40223], [-121.95504, 50.401307], [-121.954299, 50.402497], [-121.953301, 50.403455], [-121.95238, 50.403981], [-121.950059, 50.404875], [-121.949594, 50.405704], [-121.949229, 50.405778], [-121.948466, 50.40553], [-121.942733, 50.405134], [-121.942047, 50.405284], [-121.940206, 50.406148], [-121.938976, 50.40664], [-121.93553, 50.407539], [-121.932013, 50.407467], [-121.930469, 50.407695], [-121.929246, 50.408167], [-121.928097, 50.409015], [-121.926457, 50.410602], [-121.926333, 50.410971], [-121.926559, 50.411593], [-121.926891, 50.413064], [-121.927273, 50.414158], [-121.927162, 50.414284], [-121.923516, 50.415111], [-121.922008, 50.415874], [-121.920842, 50.416976], [-121.920687, 50.417929], [-121.919494, 50.419086], [-121.913816, 50.419491], [-121.907527, 50.420457], [-121.905054, 50.420631], [-121.903251, 50.420496], [-121.900795, 50.419896], [-121.896707, 50.419197], [-121.892483, 50.418947], [-121.886076, 50.419499], [-121.88312, 50.419332], [-121.880118, 50.419994], [-121.877795, 50.420975], [-121.876731, 50.421322], [-121.874735, 50.421475], [-121.872125, 50.422008], [-121.870443, 50.422465], [-121.867997, 50.424795], [-121.866804, 50.42613], [-121.865303, 50.427521], [-121.864507, 50.429088], [-121.864609, 50.430242], [-121.864937, 50.430792], [-121.865805, 50.431416], [-121.866859, 50.432381], [-121.867662, 50.433473], [-121.868299, 50.434799], [-121.868324, 50.436685], [-121.867606, 50.437731], [-121.865907, 50.43914], [-121.863575, 50.441613], [-121.861736, 50.443113], [-121.857045, 50.448383], [-121.854999, 50.449958], [-121.854943, 50.450261], [-121.855588, 50.451066], [-121.857552, 50.452637], [-121.858824, 50.45511], [-121.859229, 50.458091], [-121.861396, 50.460002], [-121.862247, 50.460497], [-121.862433, 50.460885], [-121.859427, 50.464521], [-121.858107, 50.467025], [-121.856723, 50.468918], [-121.854929, 50.471892], [-121.852946, 50.473213], [-121.850365, 50.474141], [-121.841234, 50.47846], [-121.840964, 50.479449], [-121.840728, 50.482999], [-121.840354, 50.484022], [-121.839339, 50.485299], [-121.833705, 50.487398], [-121.831958, 50.487831], [-121.830869, 50.491746], [-121.828538, 50.494803], [-121.826182, 50.499491], [-121.826054, 50.501517], [-121.824828, 50.503584], [-121.822397, 50.505906], [-121.818784, 50.50816], [-121.816362, 50.509441], [-121.814678, 50.511114], [-121.812512, 50.512628], [-121.807991, 50.516033], [-121.806974, 50.517309], [-121.784579, 50.516889], [-121.784561, 50.529965], [-121.784908, 50.530582], [-121.785465, 50.53066], [-121.804535, 50.531065], [-121.802993, 50.542374], [-121.802505, 50.555051], [-121.802266, 50.554921], [-121.798424, 50.554708], [-121.766642, 50.554119], [-121.766244, 50.546382], [-121.761929, 50.546396], [-121.762004, 50.555574], [-121.761942, 50.557734], [-121.762066, 50.560053], [-121.762356, 50.575331], [-121.766857, 50.575327], [-121.766576, 50.63235], [-121.765961, 50.670162], [-121.765969, 50.750212], [-121.743573, 50.750392], [-121.742914, 50.79371], [-121.720688, 50.793719], [-121.719893, 50.8377], [-121.696598, 50.837994], [-121.696323, 50.852703], [-121.672396, 50.852853], [-121.672833, 50.881634], [-121.649007, 50.881767], [-121.648728, 50.895666], [-121.625338, 50.896041], [-121.626085, 50.924955], [-121.626815, 50.947971], [-121.627495, 50.996109], [-121.652958, 50.996246], [-121.696996, 50.996808], [-121.844623, 50.99778], [-121.915103, 50.996834], [-121.915425, 50.996522], [-121.915204, 50.995285], [-121.915157, 50.993887], [-121.914651, 50.992405], [-121.9144, 50.990951], [-121.914428, 50.989725], [-121.914206, 50.988504], [-121.9136, 50.987092], [-121.924359, 50.987017], [-121.924361, 50.986977], [-121.967547, 50.986898], [-122.007811, 50.987455], [-122.165339, 50.990252], [-122.151959, 50.999342], [-122.144237, 50.999399], [-122.141762, 51.007568], [-122.144129, 51.014864], [-122.160518, 51.020931], [-122.169462, 51.019949], [-122.175365, 51.016273], [-122.197152, 51.018385], [-122.247121, 51.03104], [-122.271516, 51.037642], [-122.306385, 51.044416], [-122.301187, 51.061743], [-122.327319, 51.061275], [-122.344625, 51.066677], [-122.3584, 51.074552], [-122.364301, 51.08808], [-122.372211, 51.102007], [-122.376336, 51.106982], [-122.387074, 51.110494], [-122.429667, 51.112266], [-122.441181, 51.110871], [-122.454212, 51.111639], [-122.465339, 51.114228], [-122.477756, 51.125893], [-122.478969, 51.132291], [-122.475847, 51.139347], [-122.468759, 51.143157], [-122.464614, 51.148396], [-122.460777, 51.151876], [-122.470797, 51.156518], [-122.470784, 51.156658], [-122.507852, 51.187719], [-122.510263, 51.196239], [-122.514703, 51.204232]], [[-121.863408, 50.880273], [-121.862115, 50.884267], [-121.860722, 50.887239], [-121.860452, 50.888313], [-121.860718, 50.88921], [-121.860883, 50.891131], [-121.861572, 50.892442], [-121.863791, 50.89487], [-121.86537, 50.896243], [-121.866128, 50.897404], [-121.816469, 50.898025], [-121.816486, 50.895961], [-121.815241, 50.886527], [-121.814776, 50.881342], [-121.821323, 50.881437], [-121.821264, 50.884063], [-121.82215, 50.88398], [-121.823142, 50.884063], [-121.82367, 50.884032], [-121.82513, 50.883704], [-121.82602, 50.883345], [-121.826755, 50.882867], [-121.827744, 50.882049], [-121.828162, 50.88182], [-121.829553, 50.881294], [-121.830352, 50.880636], [-121.831492, 50.879974], [-121.832248, 50.879316], [-121.83239, 50.878669], [-121.832743, 50.878232], [-121.832848, 50.87799], [-121.832863, 50.877415], [-121.833577, 50.876703], [-121.833496, 50.875929], [-121.833191, 50.875089], [-121.833152, 50.873282], [-121.833069, 50.873109], [-121.832357, 50.872608], [-121.832262, 50.872454], [-121.832283, 50.872148], [-121.832631, 50.871387], [-121.832947, 50.871175], [-121.833448, 50.871063], [-121.834175, 50.870989], [-121.835164, 50.870667], [-121.836615, 50.870024], [-121.837551, 50.869522], [-121.838758, 50.869579], [-121.839776, 50.869741], [-121.840544, 50.869731], [-121.841302, 50.869586], [-121.842364, 50.869129], [-121.843316, 50.86912], [-121.843677, 50.868889], [-121.844838, 50.868542], [-121.845601, 50.868172], [-121.846395, 50.868143], [-121.84766, 50.867589], [-121.848858, 50.867492], [-121.849085, 50.867432], [-121.850652, 50.866727], [-121.854119, 50.866186], [-121.854833, 50.866032], [-121.855264, 50.865874], [-121.855638, 50.865644], [-121.856351, 50.86494], [-121.856753, 50.864765], [-121.856982, 50.864739], [-121.857435, 50.864781], [-121.858667, 50.865026], [-121.859703, 50.865037], [-121.86007, 50.865157], [-121.860446, 50.865413], [-121.860701, 50.865478], [-121.862361, 50.865565], [-121.863177, 50.865978], [-121.863885, 50.86604], [-121.864392, 50.866171], [-121.864919, 50.866202], [-121.865283, 50.866367], [-121.865781, 50.866373], [-121.866314, 50.866108], [-121.866485, 50.866101], [-121.86671, 50.866166], [-121.867593, 50.866678], [-121.86845, 50.867037], [-121.868677, 50.867075], [-121.86943, 50.867109], [-121.870034, 50.866837], [-121.870276, 50.866784], [-121.871526, 50.866878], [-121.871906, 50.866998], [-121.872228, 50.867199], [-121.871348, 50.867694], [-121.869758, 50.869132], [-121.871285, 50.868587], [-121.869952, 50.869735], [-121.86927, 50.87053], [-121.867347, 50.87245], [-121.866602, 50.873461], [-121.866207, 50.874669], [-121.865749, 50.875303], [-121.8658, 50.875972], [-121.865413, 50.877443], [-121.863408, 50.880273]], [[-121.851536, 50.783152], [-121.854002, 50.785988], [-121.855209, 50.787888], [-121.856016, 50.789436], [-121.841423, 50.789244], [-121.834531, 50.789071], [-121.835427, 50.782084], [-121.827526, 50.782196], [-121.829694, 50.76571], [-121.831123, 50.765706], [-121.830852, 50.758333], [-121.832804, 50.758402], [-121.832811, 50.758695], [-121.83297, 50.758967], [-121.833908, 50.759675], [-121.834333, 50.760174], [-121.835769, 50.762408], [-121.835938, 50.762807], [-121.835988, 50.763262], [-121.835717, 50.76462], [-121.835896, 50.765692], [-121.839502, 50.765779], [-121.841157, 50.768513], [-121.840571, 50.771925], [-121.842101, 50.773599], [-121.843142, 50.777424], [-121.845297, 50.778955], [-121.847097, 50.781655], [-121.851536, 50.783152]], [[-121.863988, 50.747689], [-121.863323, 50.747663], [-121.862117, 50.747467], [-121.860938, 50.742541], [-121.859715, 50.742615], [-121.85694, 50.742318], [-121.856412, 50.742364], [-121.856264, 50.739519], [-121.856558, 50.736531], [-121.856231, 50.728799], [-121.864997, 50.728807], [-121.86486, 50.73241], [-121.870384, 50.732422], [-121.870332, 50.739503], [-121.878213, 50.738143], [-121.887054, 50.741431], [-121.888, 50.744175], [-121.887121, 50.744167], [-121.887578, 50.744987], [-121.883206, 50.745056], [-121.877344, 50.743851], [-121.86829, 50.743518], [-121.86844, 50.746697], [-121.86793, 50.7468], [-121.866983, 50.747223], [-121.866127, 50.747285], [-121.865263, 50.747446], [-121.864717, 50.747638], [-121.863988, 50.747689]], [[-121.903883, 50.707858], [-121.898404, 50.707692], [-121.898804, 50.700546], [-121.881805, 50.699835], [-121.88354, 50.680709], [-121.877774, 50.680601], [-121.877919, 50.676992], [-121.875518, 50.676943], [-121.876032, 50.66264], [-121.864707, 50.662536], [-121.865034, 50.648601], [-121.878889, 50.648536], [-121.879099, 50.647615], [-121.879398, 50.647916], [-121.880387, 50.64857], [-121.880853, 50.648749], [-121.882166, 50.649043], [-121.883362, 50.64941], [-121.884125, 50.64948], [-121.88568, 50.649486], [-121.886959, 50.649301], [-121.887694, 50.649299], [-121.88885, 50.649444], [-121.891343, 50.649971], [-121.892853, 50.650067], [-121.893821, 50.650473], [-121.894748, 50.65075], [-121.895155, 50.650809], [-121.895534, 50.651028], [-121.895802, 50.651579], [-121.896012, 50.651734], [-121.89695, 50.652175], [-121.897335, 50.652529], [-121.899124, 50.653508], [-121.900156, 50.654193], [-121.900561, 50.654339], [-121.900881, 50.654594], [-121.903104, 50.655749], [-121.903505, 50.656104], [-121.904582, 50.656681], [-121.905165, 50.657154], [-121.905453, 50.657498], [-121.906289, 50.658081], [-121.906847, 50.658437], [-121.907408, 50.658695], [-121.907517, 50.658821], [-121.90851, 50.659298], [-121.909285, 50.659477], [-121.910971, 50.660013], [-121.912158, 50.660663], [-121.912663, 50.660821], [-121.913139, 50.66105], [-121.913953, 50.661301], [-121.9144, 50.66162], [-121.915114, 50.661869], [-121.915563, 50.662098], [-121.916114, 50.662705], [-121.916836, 50.663917], [-121.917126, 50.665984], [-121.919089, 50.665634], [-121.921406, 50.665393], [-121.921041, 50.665062], [-121.91991, 50.664404], [-121.919565, 50.664024], [-121.919009, 50.663632], [-121.918739, 50.662973], [-121.918743, 50.66291], [-121.919027, 50.662832], [-121.919044, 50.662697], [-121.918748, 50.662073], [-121.918637, 50.66129], [-121.918347, 50.661009], [-121.916963, 50.660213], [-121.91657, 50.660129], [-121.915617, 50.659768], [-121.915279, 50.659721], [-121.9149, 50.659592], [-121.914187, 50.659199], [-121.913075, 50.658918], [-121.912326, 50.65883], [-121.911781, 50.658628], [-121.910652, 50.658518], [-121.908583, 50.657958], [-121.906937, 50.657025], [-121.906007, 50.656279], [-121.905587, 50.656078], [-121.905072, 50.655668], [-121.90436, 50.655284], [-121.903957, 50.654956], [-121.903593, 50.654755], [-121.903442, 50.654583], [-121.90284, 50.654298], [-121.901795, 50.653604], [-121.900671, 50.652686], [-121.899483, 50.652018], [-121.898413, 50.651218], [-121.897898, 50.650906], [-121.89739, 50.650793], [-121.897195, 50.650683], [-121.897002, 50.650484], [-121.896026, 50.649855], [-121.895876, 50.649674], [-121.895008, 50.649251], [-121.894445, 50.64912], [-121.89397, 50.648926], [-121.893905, 50.648701], [-121.89364, 50.648456], [-121.892726, 50.648323], [-121.892775, 50.648085], [-121.89266, 50.64631], [-121.898718, 50.645891], [-121.898741, 50.64313], [-121.923805, 50.643059], [-121.922832, 50.654309], [-121.933904, 50.654546], [-121.934155, 50.6618], [-121.945496, 50.661968], [-121.945804, 50.665594], [-121.946283, 50.665618], [-121.946502, 50.66667], [-121.970032, 50.666911], [-121.96998, 50.663288], [-121.976164, 50.66321], [-121.976183, 50.659792], [-121.979055, 50.659821], [-121.979368, 50.656196], [-121.979382, 50.654618], [-122.00043, 50.655663], [-122.000627, 50.658958], [-121.997533, 50.658964], [-121.998155, 50.666011], [-121.995742, 50.665936], [-121.995369, 50.666257], [-121.994656, 50.666431], [-121.993415, 50.666428], [-121.993036, 50.666319], [-121.992941, 50.666002], [-121.993356, 50.664693], [-121.991966, 50.664834], [-121.99154, 50.66493], [-121.991298, 50.665017], [-121.990764, 50.665427], [-121.990591, 50.66564], [-121.990638, 50.666019], [-121.990423, 50.666152], [-121.990336, 50.666296], [-121.98998, 50.666418], [-121.989458, 50.666979], [-121.988897, 50.668072], [-121.988775, 50.668476], [-121.988006, 50.668703], [-121.987082, 50.668856], [-121.986864, 50.668948], [-121.986759, 50.669234], [-121.990775, 50.668602], [-121.992386, 50.668528], [-121.991745, 50.670579], [-121.979347, 50.67089], [-121.979359, 50.673212], [-121.965103, 50.673266], [-121.964856, 50.671858], [-121.956583, 50.671851], [-121.955287, 50.692086], [-121.963804, 50.692477], [-121.963945, 50.698367], [-121.969496, 50.698356], [-121.969132, 50.70889], [-121.967345, 50.708712], [-121.957907, 50.708594], [-121.957651, 50.701376], [-121.956535, 50.701421], [-121.952319, 50.701329], [-121.952687, 50.694268], [-121.94288, 50.69428], [-121.941977, 50.694806], [-121.939642, 50.695934], [-121.94063, 50.696412], [-121.937883, 50.697622], [-121.937753, 50.699633], [-121.934808, 50.699655], [-121.934868, 50.704292], [-121.928152, 50.704311], [-121.928043, 50.708471], [-121.933641, 50.708566], [-121.933955, 50.722918], [-121.932497, 50.723023], [-121.932691, 50.73298], [-121.932811, 50.733822], [-121.934974, 50.733858], [-121.934691, 50.737785], [-121.93258, 50.737547], [-121.932445, 50.737419], [-121.932198, 50.737112], [-121.931721, 50.736217], [-121.930571, 50.735155], [-121.929425, 50.733822], [-121.928457, 50.732167], [-121.92819, 50.731373], [-121.927904, 50.730929], [-121.92691, 50.729724], [-121.925286, 50.728253], [-121.924376, 50.727786], [-121.923784, 50.727609], [-121.92355, 50.727302], [-121.923217, 50.727028], [-121.923029, 50.726622], [-121.921547, 50.725107], [-121.921221, 50.7245], [-121.921013, 50.724292], [-121.92044, 50.723936], [-121.919961, 50.723221], [-121.91986, 50.722663], [-121.919613, 50.722372], [-121.918975, 50.722358], [-121.918807, 50.722293], [-121.918643, 50.722014], [-121.91868, 50.721636], [-121.917738, 50.720736], [-121.917485, 50.720599], [-121.917154, 50.720282], [-121.916984, 50.719614], [-121.916252, 50.718695], [-121.915746, 50.718856], [-121.914557, 50.718806], [-121.913156, 50.718879], [-121.913247, 50.719205], [-121.913444, 50.719499], [-121.915453, 50.721674], [-121.916009, 50.722736], [-121.906979, 50.722664], [-121.906938, 50.720369], [-121.903521, 50.720131], [-121.903727, 50.714636], [-121.904341, 50.714654], [-121.903883, 50.707858]], [[-121.839177, 50.705236], [-121.839181, 50.708849], [-121.833485, 50.708853], [-121.833483, 50.705238], [-121.839177, 50.705236]], [[-121.812027, 50.684242], [-121.812069, 50.688797], [-121.803929, 50.688725], [-121.803703, 50.687983], [-121.803379, 50.684309], [-121.812027, 50.684242]], [[-121.915918, 50.758602], [-121.913156, 50.758782], [-121.913438, 50.754957], [-121.92267, 50.755129], [-121.925722, 50.754166], [-121.930369, 50.752594], [-121.930664, 50.753385], [-121.930604, 50.754229], [-121.930811, 50.754456], [-121.931453, 50.75493], [-121.931574, 50.755209], [-121.931168, 50.755538], [-121.930955, 50.755618], [-121.930679, 50.755911], [-121.930636, 50.756568], [-121.930545, 50.756764], [-121.930329, 50.756942], [-121.930238, 50.757211], [-121.92893, 50.757963], [-121.928761, 50.757981], [-121.928498, 50.758247], [-121.927695, 50.759274], [-121.92741, 50.759919], [-121.926099, 50.761454], [-121.925819, 50.761983], [-121.9253, 50.762292], [-121.924373, 50.762554], [-121.923422, 50.762625], [-121.92268, 50.76278], [-121.922148, 50.763145], [-121.921429, 50.763506], [-121.921099, 50.763764], [-121.920555, 50.763929], [-121.919673, 50.764093], [-121.918956, 50.764382], [-121.918481, 50.764703], [-121.917772, 50.764758], [-121.917479, 50.764503], [-121.917156, 50.764357], [-121.916391, 50.764412], [-121.916217, 50.764546], [-121.915779, 50.764673], [-121.915918, 50.758602]], [[-122.234943, 50.735252], [-122.221252, 50.735079], [-122.173462, 50.733637], [-122.173581, 50.719579], [-122.174145, 50.719659], [-122.175429, 50.720011], [-122.176616, 50.720199], [-122.177097, 50.720212], [-122.177407, 50.720295], [-122.178383, 50.720373], [-122.178536, 50.720437], [-122.178662, 50.720618], [-122.178885, 50.720763], [-122.179478, 50.720957], [-122.180065, 50.721357], [-122.180176, 50.721546], [-122.180018, 50.721645], [-122.180085, 50.72187], [-122.180553, 50.722673], [-122.18137, 50.722975], [-122.183134, 50.723284], [-122.183486, 50.723441], [-122.183735, 50.723765], [-122.184126, 50.724083], [-122.185476, 50.724704], [-122.186068, 50.724825], [-122.188719, 50.724816], [-122.190146, 50.724997], [-122.190839, 50.725137], [-122.191582, 50.725564], [-122.191864, 50.725603], [-122.192771, 50.725546], [-122.193531, 50.725155], [-122.193857, 50.725123], [-122.194181, 50.725151], [-122.194745, 50.72538], [-122.195988, 50.725587], [-122.196639, 50.725564], [-122.196938, 50.725467], [-122.197649, 50.72539], [-122.197973, 50.725491], [-122.198586, 50.726098], [-122.198907, 50.72629], [-122.199837, 50.726656], [-122.200861, 50.727302], [-122.201621, 50.727612], [-122.20221, 50.727659], [-122.202373, 50.728256], [-122.203167, 50.72813], [-122.204227, 50.728146], [-122.206333, 50.728632], [-122.207229, 50.728715], [-122.20802, 50.728644], [-122.210048, 50.728033], [-122.211174, 50.727825], [-122.212952, 50.727767], [-122.21305, 50.728067], [-122.213658, 50.728061], [-122.214638, 50.727726], [-122.21628, 50.727632], [-122.21769, 50.728112], [-122.220086, 50.729697], [-122.221322, 50.730329], [-122.223106, 50.730512], [-122.22421, 50.730486], [-122.225914, 50.730102], [-122.226572, 50.729737], [-122.226733, 50.729005], [-122.229506, 50.729211], [-122.231839, 50.729498], [-122.23262, 50.729485], [-122.234934, 50.72923], [-122.235867, 50.729308], [-122.235974, 50.735199], [-122.234943, 50.735252]], [[-122.274818, 50.702891], [-122.28505, 50.702837], [-122.286245, 50.70279], [-122.286139, 50.7065], [-122.285864, 50.706526], [-122.285561, 50.706406], [-122.284921, 50.706391], [-122.284914, 50.706574], [-122.280027, 50.706379], [-122.28017, 50.709061], [-122.279873, 50.711315], [-122.2803, 50.728719], [-122.26123, 50.728509], [-122.253002, 50.728043], [-122.2524, 50.726659], [-122.252516, 50.723257], [-122.247043, 50.720489], [-122.249703, 50.719956], [-122.25081, 50.719881], [-122.251534, 50.71976], [-122.252275, 50.719414], [-122.253031, 50.719202], [-122.253471, 50.719125], [-122.254321, 50.719077], [-122.256583, 50.718551], [-122.258809, 50.718295], [-122.260159, 50.718061], [-122.262334, 50.716717], [-122.263146, 50.716389], [-122.263644, 50.716348], [-122.264619, 50.716506], [-122.26524, 50.716492], [-122.266037, 50.716291], [-122.267193, 50.715867], [-122.267646, 50.71577], [-122.268428, 50.715649], [-122.270284, 50.71557], [-122.270753, 50.715484], [-122.271424, 50.715102], [-122.272402, 50.714182], [-122.272759, 50.714039], [-122.273954, 50.713723], [-122.274724, 50.713404], [-122.275099, 50.712976], [-122.275172, 50.712723], [-122.275134, 50.71249], [-122.274625, 50.711551], [-122.273985, 50.710792], [-122.273789, 50.710638], [-122.273451, 50.7105], [-122.272352, 50.710126], [-122.271833, 50.70979], [-122.2711, 50.709569], [-122.270369, 50.70925], [-122.269373, 50.708346], [-122.27058, 50.707984], [-122.271067, 50.707676], [-122.271498, 50.707264], [-122.27192, 50.707061], [-122.272821, 50.707088], [-122.273281, 50.707256], [-122.273861, 50.70776], [-122.274899, 50.707831], [-122.275253, 50.707683], [-122.275277, 50.706254], [-122.274706, 50.70626], [-122.274818, 50.702891]], [[-122.29378, 50.700074], [-122.303166, 50.70023], [-122.302972, 50.700672], [-122.303206, 50.701096], [-122.303147, 50.701303], [-122.303003, 50.701347], [-122.30288, 50.701175], [-122.302806, 50.701256], [-122.302801, 50.701731], [-122.302712, 50.701946], [-122.302293, 50.702448], [-122.302191, 50.70269], [-122.302528, 50.702945], [-122.302963, 50.703086], [-122.302835, 50.705892], [-122.302465, 50.71024], [-122.291854, 50.71004], [-122.2919, 50.707617], [-122.294666, 50.706938], [-122.294999, 50.706935], [-122.295156, 50.706408], [-122.295415, 50.706039], [-122.295787, 50.705708], [-122.294044, 50.705674], [-122.29378, 50.700074]], [[-121.800242, 50.616299], [-121.803801, 50.616395], [-121.803645, 50.648572], [-121.810279, 50.64869], [-121.810419, 50.655301], [-121.801376, 50.655415], [-121.799722, 50.655377], [-121.799396, 50.653687], [-121.799451, 50.648569], [-121.797575, 50.64867], [-121.795347, 50.6487], [-121.795379, 50.617805], [-121.796036, 50.617854], [-121.796893, 50.617636], [-121.797246, 50.617179], [-121.797454, 50.616294], [-121.800242, 50.616299]], [[-121.857988, 50.579598], [-121.857165, 50.591821], [-121.851278, 50.591708], [-121.851133, 50.587777], [-121.851356, 50.586566], [-121.848902, 50.586794], [-121.846465, 50.586846], [-121.846488, 50.579568], [-121.857988, 50.579598]]]]}, "properties": {"name": "Squamish-Lillooet B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Squamish-Lillooet B", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931034", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.248705, 49.870113], [-123.250691, 49.869208], [-123.251914, 49.868792], [-123.252345, 49.868549], [-123.252579, 49.868341], [-123.252703, 49.868116], [-123.252743, 49.867595], [-123.252517, 49.866838], [-123.251914, 49.866112], [-123.250979, 49.865376], [-123.250058, 49.86491], [-123.248969, 49.864553], [-123.248093, 49.864402], [-123.247132, 49.864395], [-123.24602, 49.864487], [-123.244976, 49.864678], [-123.241726, 49.865819], [-123.240351, 49.865957], [-123.239265, 49.86595], [-123.237941, 49.865602], [-123.236966, 49.86528], [-123.236603, 49.865101], [-123.236056, 49.864329], [-123.235704, 49.863439], [-123.235852, 49.862485], [-123.236251, 49.861566], [-123.236776, 49.860891], [-123.237591, 49.859541], [-123.237785, 49.859341], [-123.238546, 49.858819], [-123.240698, 49.857762], [-123.241753, 49.857463], [-123.242993, 49.857326], [-123.244273, 49.857305], [-123.247068, 49.85712], [-123.248054, 49.856875], [-123.248122, 49.856694], [-123.247018, 49.855932], [-123.246168, 49.855223], [-123.244474, 49.853393], [-123.243465, 49.851883], [-123.242959, 49.850894], [-123.241475, 49.848865], [-123.240023, 49.847519], [-123.238989, 49.846774], [-123.237916, 49.846254], [-123.236382, 49.8457], [-123.235687, 49.845504], [-123.234641, 49.845309], [-123.231943, 49.844973], [-123.229632, 49.844833], [-123.228686, 49.844726], [-123.22636, 49.844128], [-123.224425, 49.843745], [-123.223368, 49.843316], [-123.221288, 49.841755], [-123.220881, 49.841109], [-123.220866, 49.840901], [-123.220933, 49.840236], [-123.22129, 49.839542], [-123.222509, 49.838163], [-123.223583, 49.83677], [-123.223317, 49.836338], [-123.222353, 49.835643], [-123.221675, 49.835287], [-123.220428, 49.834867], [-123.218447, 49.834416], [-123.217594, 49.834285], [-123.214079, 49.834005], [-123.213418, 49.833776], [-123.211931, 49.833114], [-123.21135, 49.832757], [-123.210996, 49.832453], [-123.210365, 49.83165], [-123.209611, 49.830282], [-123.208966, 49.829339], [-123.208868, 49.828935], [-123.209005, 49.828439], [-123.20953, 49.827737], [-123.209974, 49.827385], [-123.210488, 49.827096], [-123.211375, 49.826788], [-123.212348, 49.82667], [-123.21321, 49.826777], [-123.214073, 49.82708], [-123.214785, 49.827493], [-123.215247, 49.828023], [-123.215911, 49.829449], [-123.216521, 49.829939], [-123.217517, 49.830504], [-123.21857, 49.831038], [-123.22297, 49.832619], [-123.223654, 49.832784], [-123.224383, 49.832788], [-123.224887, 49.832777], [-123.224957, 49.832448], [-123.22526, 49.831827], [-123.227264, 49.829088], [-123.227221, 49.828899], [-123.227012, 49.828729], [-123.226371, 49.82846], [-123.225425, 49.828291], [-123.223532, 49.828116], [-123.222866, 49.827972], [-123.222083, 49.82747], [-123.221456, 49.826753], [-123.221244, 49.826113], [-123.221311, 49.825421], [-123.222029, 49.824574], [-123.222321, 49.824448], [-123.222918, 49.824411], [-123.223264, 49.82432], [-123.224055, 49.823995], [-123.224348, 49.82395], [-123.225447, 49.823983], [-123.226559, 49.824142], [-123.226934, 49.824124], [-123.227338, 49.82398], [-123.227378, 49.823557], [-123.226704, 49.822199], [-123.226437, 49.821849], [-123.226215, 49.821715], [-123.223306, 49.820948], [-123.220648, 49.820485], [-123.2192, 49.820046], [-123.218684, 49.819814], [-123.218085, 49.819419], [-123.217709, 49.819078], [-123.217302, 49.818556], [-123.216785, 49.817568], [-123.216712, 49.816768], [-123.216848, 49.816309], [-123.217814, 49.814644], [-123.218433, 49.813302], [-123.218528, 49.812556], [-123.218522, 49.811593], [-123.218242, 49.810982], [-123.217042, 49.809977], [-123.216136, 49.809007], [-123.215466, 49.808585], [-123.214754, 49.80793], [-123.214165, 49.807104], [-123.213843, 49.806475], [-123.213702, 49.806008], [-123.213544, 49.804515], [-123.213582, 49.803894], [-123.213397, 49.80286], [-123.213102, 49.80207], [-123.212711, 49.801728], [-123.212225, 49.801459], [-123.211319, 49.801083], [-123.209453, 49.800475], [-123.207881, 49.799884], [-123.206377, 49.799186], [-123.205027, 49.798324], [-123.203254, 49.796618], [-123.202237, 49.796044], [-123.20111, 49.795534], [-123.199399, 49.794943], [-123.196672, 49.794453], [-123.195839, 49.794392], [-123.19481, 49.794222], [-123.193392, 49.793919], [-123.192279, 49.793543], [-123.19193, 49.793309], [-123.191414, 49.7926], [-123.1897, 49.791029], [-123.189153, 49.790393], [-123.188243, 49.790541], [-123.186957, 49.791104], [-123.186589, 49.791165], [-123.184615, 49.791203], [-123.183846, 49.79149], [-123.182938, 49.792016], [-123.181799, 49.79249], [-123.181726, 49.792703], [-123.181018, 49.79301], [-123.180455, 49.793647], [-123.179256, 49.794239], [-123.177874, 49.794771], [-123.17651, 49.794985], [-123.175391, 49.795228], [-123.174809, 49.795521], [-123.173808, 49.796184], [-123.173284, 49.796366], [-123.173002, 49.796676], [-123.172602, 49.796865], [-123.17214, 49.796842], [-123.171456, 49.797308], [-123.169269, 49.796575], [-123.165686, 49.796225], [-123.16514, 49.796379], [-123.161378, 49.797801], [-123.157113, 49.799634], [-123.15403, 49.80111], [-123.153425, 49.802037], [-123.152902, 49.802196], [-123.151608, 49.802389], [-123.150767, 49.802702], [-123.150781, 49.802882], [-123.150405, 49.80305], [-123.150142, 49.803329], [-123.149114, 49.803933], [-123.148448, 49.804428], [-123.147437, 49.805256], [-123.147132, 49.805634], [-123.14676, 49.806174], [-123.1464, 49.807191], [-123.146239, 49.809161], [-123.146464, 49.809458], [-123.146754, 49.80968], [-123.151963, 49.809706], [-123.155148, 49.809604], [-123.162397, 49.810157], [-123.161331, 49.822297], [-123.178091, 49.822377], [-123.178168, 49.814637], [-123.174355, 49.814633], [-123.174306, 49.817784], [-123.173582, 49.816931], [-123.172942, 49.816627], [-123.170968, 49.815856], [-123.16894, 49.815345], [-123.168717, 49.815157], [-123.168654, 49.815024], [-123.168676, 49.812868], [-123.17195, 49.812885], [-123.171908, 49.812481], [-123.172002, 49.811824], [-123.171834, 49.811232], [-123.171858, 49.81044], [-123.171923, 49.810352], [-123.19867, 49.810857], [-123.199265, 49.811054], [-123.199023, 49.816565], [-123.193019, 49.816455], [-123.193027, 49.8216], [-123.198359, 49.826061], [-123.204055, 49.829735], [-123.20341, 49.844487], [-123.214617, 49.84469], [-123.214145, 49.85556], [-123.225354, 49.855763], [-123.224727, 49.870257], [-123.246498, 49.870649], [-123.248705, 49.870113]]]]}, "properties": {"name": "Cheakamus 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Cheakamus 11", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931801", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.138182, 49.743407], [-123.138173, 49.744387], [-123.137974, 49.745206], [-123.138133, 49.745544], [-123.138309, 49.745662], [-123.140351, 49.745599], [-123.14105, 49.746229], [-123.142005, 49.746777], [-123.142721, 49.746798], [-123.143373, 49.745805], [-123.143432, 49.74461], [-123.143057, 49.743284], [-123.141719, 49.743337], [-123.141367, 49.743394], [-123.140649, 49.743045], [-123.14047, 49.742798], [-123.14048, 49.742685], [-123.1407, 49.742398], [-123.140958, 49.742219], [-123.141389, 49.742021], [-123.141965, 49.741877], [-123.142426, 49.741569], [-123.141716, 49.740781], [-123.141755, 49.740677], [-123.14195, 49.740305], [-123.143166, 49.739752], [-123.143662, 49.739163], [-123.137008, 49.739406], [-123.136983, 49.741153], [-123.137063, 49.741497], [-123.1373, 49.741858], [-123.138043, 49.742585], [-123.138182, 49.743407]]]]}, "properties": {"name": "Kowtain 17", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Kowtain 17", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931802", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.141173, 49.756389], [-123.141254, 49.756848], [-123.142938, 49.756865], [-123.142611, 49.756566], [-123.142471, 49.756224], [-123.142415, 49.755928], [-123.142451, 49.754615], [-123.142354, 49.754048], [-123.142055, 49.753229], [-123.14131, 49.753233], [-123.141173, 49.756389]]]]}, "properties": {"name": "Seaichem 16", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Seaichem 16", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931806", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.14789, 49.695428], [-123.151303, 49.694656], [-123.151623, 49.694367], [-123.152091, 49.694115], [-123.152438, 49.693529], [-123.152811, 49.69335], [-123.15324, 49.693007], [-123.153225, 49.692407], [-123.15366, 49.692413], [-123.153679, 49.691873], [-123.153388, 49.691639], [-123.153315, 49.690299], [-123.154059, 49.689084], [-123.153768, 49.68895], [-123.153475, 49.688663], [-123.153542, 49.687781], [-123.153515, 49.687637], [-123.153306, 49.687466], [-123.152972, 49.687395], [-123.152501, 49.687441], [-123.152169, 49.687674], [-123.151906, 49.688097], [-123.15152, 49.688522], [-123.151132, 49.688747], [-123.15062, 49.688801], [-123.150052, 49.689207], [-123.14983, 49.689297], [-123.149165, 49.689415], [-123.148721, 49.689308], [-123.148292, 49.689308], [-123.147544, 49.689543], [-123.145814, 49.689717], [-123.144801, 49.690004], [-123.144593, 49.69014], [-123.144318, 49.690464], [-123.143222, 49.69051], [-123.142901, 49.690657], [-123.142879, 49.691827], [-123.143458, 49.691318], [-123.143857, 49.691104], [-123.144326, 49.690962], [-123.144812, 49.690947], [-123.144799, 49.69249], [-123.14587, 49.692468], [-123.147311, 49.692597], [-123.147921, 49.692577], [-123.14789, 49.695428]]]]}, "properties": {"name": "Stawamus 24", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Stawamus 24", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931807", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.158141, 49.769562], [-123.15803, 49.770448], [-123.160879, 49.770555], [-123.160959, 49.772263], [-123.163599, 49.772382], [-123.163667, 49.772981], [-123.163645, 49.774193], [-123.166516, 49.774293], [-123.166575, 49.772971], [-123.166165, 49.772549], [-123.165468, 49.772171], [-123.16539, 49.771683], [-123.165263, 49.771431], [-123.164956, 49.77109], [-123.164331, 49.770794], [-123.163177, 49.770364], [-123.162343, 49.769853], [-123.160185, 49.768759], [-123.159355, 49.768529], [-123.159115, 49.768525], [-123.159, 49.768446], [-123.159156, 49.768139], [-123.159198, 49.766923], [-123.158116, 49.766852], [-123.158141, 49.769562]]], [[[-123.157604, 49.768513], [-123.157684, 49.768458], [-123.157364, 49.768254], [-123.156877, 49.768064], [-123.157604, 49.768513]]]]}, "properties": {"name": "Waiwakum 14", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Waiwakum 14", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931808", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.162121, 49.726512], [-123.163601, 49.726137], [-123.163884, 49.72586], [-123.16046, 49.725104], [-123.160122, 49.726091], [-123.162121, 49.726512]]]]}, "properties": {"name": "Yekwaupsum 18", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Yekwaupsum 18", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931809", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.659794, 50.310885], [-122.660904, 50.310686], [-122.662093, 50.310229], [-122.664637, 50.308896], [-122.665185, 50.30883], [-122.665068, 50.308406], [-122.666066, 50.306731], [-122.66666, 50.306066], [-122.667045, 50.305747], [-122.668087, 50.305144], [-122.669494, 50.304516], [-122.671125, 50.303591], [-122.672133, 50.303131], [-122.672418, 50.303044], [-122.672848, 50.303022], [-122.673695, 50.302696], [-122.674566, 50.302453], [-122.675106, 50.302369], [-122.676274, 50.302446], [-122.677554, 50.302767], [-122.67844, 50.30291], [-122.680481, 50.302688], [-122.681761, 50.301336], [-122.679252, 50.301276], [-122.677821, 50.30111], [-122.676714, 50.300838], [-122.675213, 50.300563], [-122.673996, 50.3002], [-122.673532, 50.300136], [-122.673252, 50.3], [-122.671963, 50.29961], [-122.670115, 50.298885], [-122.669106, 50.298711], [-122.668474, 50.298664], [-122.666016, 50.298666], [-122.665398, 50.298808], [-122.664312, 50.299255], [-122.663356, 50.299513], [-122.660295, 50.299792], [-122.657989, 50.300092], [-122.65646, 50.300015], [-122.655968, 50.299941], [-122.655205, 50.2998], [-122.652998, 50.299211], [-122.65132, 50.300072], [-122.650122, 50.301214], [-122.64975, 50.301707], [-122.648235, 50.302779], [-122.647149, 50.303058], [-122.646138, 50.303182], [-122.645126, 50.303264], [-122.643831, 50.303289], [-122.643139, 50.303248], [-122.641883, 50.303883], [-122.640841, 50.304239], [-122.639767, 50.305136], [-122.639287, 50.305439], [-122.634176, 50.305505], [-122.630641, 50.30491], [-122.629632, 50.304653], [-122.629058, 50.304364], [-122.628253, 50.303454], [-122.627274, 50.302776], [-122.627077, 50.302815], [-122.626485, 50.303151], [-122.62609, 50.303239], [-122.619716, 50.303282], [-122.61866, 50.303567], [-122.618337, 50.303736], [-122.617714, 50.304273], [-122.61708, 50.304613], [-122.615701, 50.304978], [-122.614039, 50.305358], [-122.612635, 50.305489], [-122.611749, 50.305737], [-122.610386, 50.305706], [-122.610923, 50.307704], [-122.61246, 50.308379], [-122.612687, 50.308707], [-122.617618, 50.308912], [-122.61998, 50.308604], [-122.621526, 50.308948], [-122.622597, 50.30902], [-122.623092, 50.309366], [-122.624038, 50.309183], [-122.625941, 50.309191], [-122.626741, 50.310218], [-122.62732, 50.31005], [-122.628069, 50.30942], [-122.628465, 50.309287], [-122.628672, 50.309487], [-122.630963, 50.310522], [-122.632666, 50.310359], [-122.633599, 50.310192], [-122.636443, 50.310041], [-122.637455, 50.309698], [-122.637854, 50.309426], [-122.638411, 50.309221], [-122.639683, 50.309006], [-122.641011, 50.308667], [-122.64325, 50.308195], [-122.644675, 50.308168], [-122.645165, 50.308289], [-122.647594, 50.309238], [-122.648637, 50.309748], [-122.65029, 50.310118], [-122.653895, 50.310431], [-122.656424, 50.310887], [-122.657033, 50.310938], [-122.659794, 50.310885]]], [[[-122.672759, 50.311563], [-122.673713, 50.311689], [-122.674505, 50.312045], [-122.675363, 50.313084], [-122.676004, 50.313516], [-122.677459, 50.313849], [-122.678173, 50.314252], [-122.679265, 50.315252], [-122.680697, 50.315654], [-122.681838, 50.315686], [-122.683846, 50.3155], [-122.684629, 50.315491], [-122.685813, 50.315593], [-122.687805, 50.315953], [-122.688506, 50.316243], [-122.688953, 50.316557], [-122.6898, 50.31773], [-122.691251, 50.319048], [-122.692194, 50.319535], [-122.692819, 50.319743], [-122.693394, 50.319858], [-122.693957, 50.309287], [-122.688224, 50.309486], [-122.688068, 50.308828], [-122.667879, 50.309339], [-122.666836, 50.309492], [-122.666945, 50.310279], [-122.666595, 50.311109], [-122.666215, 50.311686], [-122.666229, 50.31206], [-122.666346, 50.312374], [-122.666778, 50.312758], [-122.667469, 50.312929], [-122.668409, 50.312918], [-122.669113, 50.312787], [-122.672114, 50.311588], [-122.672759, 50.311563]]]]}, "properties": {"name": "Nesuch 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Nesuch 3", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931812", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.060951, 50.813308], [-122.06504, 50.813023], [-122.066502, 50.812588], [-122.069276, 50.812944], [-122.070783, 50.813597], [-122.07179, 50.81421], [-122.074224, 50.815429], [-122.075872, 50.81611], [-122.077198, 50.816871], [-122.078094, 50.817538], [-122.079066, 50.818655], [-122.080331, 50.81956], [-122.080801, 50.819796], [-122.082126, 50.820117], [-122.082529, 50.820134], [-122.089279, 50.822116], [-122.102279, 50.825187], [-122.105042, 50.826437], [-122.10707, 50.828036], [-122.107445, 50.828453], [-122.108676, 50.830587], [-122.109961, 50.835331], [-122.122109, 50.842806], [-122.128692, 50.843959], [-122.130069, 50.844127], [-122.131813, 50.844635], [-122.134346, 50.848798], [-122.140052, 50.852686], [-122.14297, 50.853599], [-122.146967, 50.851954], [-122.149063, 50.832665], [-122.137406, 50.832356], [-122.137389, 50.826224], [-122.137062, 50.809284], [-122.102743, 50.808679], [-122.102574, 50.805136], [-122.065665, 50.804923], [-122.065436, 50.808474], [-122.043002, 50.808175], [-122.043611, 50.793701], [-122.024281, 50.793617], [-122.024354, 50.779197], [-121.990499, 50.778931], [-121.990941, 50.761566], [-121.976419, 50.761632], [-121.976787, 50.752552], [-121.976878, 50.74312], [-121.934308, 50.742935], [-121.93363, 50.742997], [-121.933424, 50.743101], [-121.933457, 50.743499], [-121.93297, 50.744871], [-121.932719, 50.745353], [-121.932134, 50.746131], [-121.931633, 50.747044], [-121.932184, 50.748937], [-121.932123, 50.749099], [-121.931525, 50.749504], [-121.931256, 50.74982], [-121.931455, 50.751008], [-121.931193, 50.751411], [-121.931282, 50.751825], [-121.930981, 50.752577], [-121.931626, 50.753501], [-121.931974, 50.753765], [-121.931995, 50.75408], [-121.932508, 50.754607], [-121.932628, 50.754921], [-121.932452, 50.755226], [-121.931873, 50.755752], [-121.932074, 50.756266], [-121.931469, 50.756656], [-121.93154, 50.757241], [-121.931358, 50.757788], [-121.930738, 50.758304], [-121.930538, 50.758384], [-121.930033, 50.758757], [-121.929308, 50.759425], [-121.929317, 50.759675], [-121.929092, 50.760141], [-121.928574, 50.76055], [-121.928497, 50.761467], [-121.928041, 50.762075], [-121.92708, 50.762651], [-121.92628, 50.762841], [-121.925635, 50.763167], [-121.924944, 50.763629], [-121.924114, 50.763918], [-121.923276, 50.764001], [-121.921222, 50.765141], [-121.919825, 50.765533], [-121.919407, 50.765754], [-121.918853, 50.765839], [-121.918257, 50.765842], [-121.917159, 50.765455], [-121.916624, 50.765378], [-121.916141, 50.765399], [-121.915795, 50.765576], [-121.914912, 50.765775], [-121.914655, 50.765799], [-121.913977, 50.765731], [-121.913512, 50.7656], [-121.912797, 50.765278], [-121.911607, 50.765231], [-121.910238, 50.764949], [-121.908781, 50.764791], [-121.908022, 50.764452], [-121.907134, 50.764246], [-121.906899, 50.763974], [-121.90652, 50.763817], [-121.904918, 50.763757], [-121.904584, 50.763556], [-121.904175, 50.763454], [-121.903875, 50.763576], [-121.903399, 50.763656], [-121.903094, 50.767249], [-121.920698, 50.771255], [-121.923413, 50.771139], [-121.928457, 50.770012], [-121.926103, 50.767425], [-121.92937, 50.765645], [-121.93336, 50.761434], [-121.936814, 50.75619], [-121.937665, 50.756192], [-121.939619, 50.756619], [-121.94101, 50.756738], [-121.943159, 50.756783], [-121.944804, 50.756568], [-121.94562, 50.756595], [-121.946812, 50.756942], [-121.9513, 50.759351], [-121.955269, 50.763079], [-121.958571, 50.767299], [-121.959382, 50.768455], [-121.960571, 50.769606], [-121.961136, 50.770542], [-121.967607, 50.783814], [-121.969777, 50.787773], [-121.989565, 50.79661], [-122.004788, 50.802198], [-122.013929, 50.801246], [-122.020949, 50.805802], [-122.023104, 50.826215], [-122.033368, 50.822508], [-122.034061, 50.821127], [-122.03675, 50.819489], [-122.039769, 50.819156], [-122.040676, 50.819145], [-122.043482, 50.81936], [-122.046792, 50.819191], [-122.052689, 50.817201], [-122.054992, 50.815336], [-122.05645, 50.813832], [-122.060951, 50.813308]]]]}, "properties": {"name": "Bridge River 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Bridge River 1", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931813", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.926856, 50.681805], [-121.930314, 50.680054], [-121.933152, 50.679253], [-121.933628, 50.679076], [-121.934316, 50.678652], [-121.934138, 50.679255], [-121.935873, 50.678366], [-121.937649, 50.677251], [-121.938933, 50.676533], [-121.940399, 50.675442], [-121.941519, 50.674032], [-121.942437, 50.673949], [-121.9437, 50.673568], [-121.94446, 50.673185], [-121.945643, 50.672289], [-121.945827, 50.671732], [-121.946318, 50.6715], [-121.946973, 50.671368], [-121.947817, 50.671034], [-121.947383, 50.670122], [-121.942638, 50.671111], [-121.935581, 50.671419], [-121.935318, 50.665829], [-121.927492, 50.665738], [-121.927023, 50.666184], [-121.927538, 50.666764], [-121.924891, 50.671086], [-121.925093, 50.672016], [-121.925559, 50.672509], [-121.925573, 50.672947], [-121.925704, 50.673404], [-121.926515, 50.674829], [-121.927031, 50.675425], [-121.927067, 50.675624], [-121.927982, 50.676232], [-121.928302, 50.675999], [-121.929289, 50.676216], [-121.930704, 50.676208], [-121.931816, 50.675782], [-121.933172, 50.675103], [-121.936022, 50.673103], [-121.937219, 50.673832], [-121.93522, 50.675385], [-121.933105, 50.676374], [-121.931161, 50.677006], [-121.929907, 50.677068], [-121.92806, 50.677002], [-121.928127, 50.676716], [-121.927624, 50.676628], [-121.927289, 50.676496], [-121.920856, 50.677608], [-121.922641, 50.679454], [-121.926856, 50.681805]]]]}, "properties": {"name": "Cayoosh Creek 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Cayoosh Creek 1", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931814", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.795347, 50.6487], [-121.797575, 50.64867], [-121.799451, 50.648569], [-121.799396, 50.653687], [-121.799722, 50.655377], [-121.801376, 50.655415], [-121.810419, 50.655301], [-121.810279, 50.64869], [-121.803645, 50.648572], [-121.803801, 50.616395], [-121.800242, 50.616299], [-121.797454, 50.616294], [-121.797246, 50.617179], [-121.796893, 50.617636], [-121.796036, 50.617854], [-121.795379, 50.617805], [-121.795347, 50.6487]]]]}, "properties": {"name": "Chilhil 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Chilhil 6", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931815", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.856558, 50.736531], [-121.856264, 50.739519], [-121.856412, 50.742364], [-121.85694, 50.742318], [-121.859715, 50.742615], [-121.864523, 50.742392], [-121.872198, 50.742142], [-121.870332, 50.739503], [-121.870384, 50.732422], [-121.86486, 50.73241], [-121.864997, 50.728807], [-121.856231, 50.728799], [-121.856558, 50.736531]]]]}, "properties": {"name": "Fountain 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 1", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931816", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.827526, 50.782196], [-121.835427, 50.782084], [-121.834531, 50.789071], [-121.841423, 50.789244], [-121.856016, 50.789436], [-121.855209, 50.787888], [-121.854002, 50.785988], [-121.851536, 50.783152], [-121.847097, 50.781655], [-121.845297, 50.778955], [-121.843142, 50.777424], [-121.842101, 50.773599], [-121.840571, 50.771925], [-121.841157, 50.768513], [-121.839502, 50.765779], [-121.835896, 50.765692], [-121.829694, 50.76571], [-121.827526, 50.782196]]]]}, "properties": {"name": "Fountain 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 3", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931817", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.917715, 50.764731], [-121.918481, 50.764703], [-121.918956, 50.764382], [-121.919673, 50.764093], [-121.920883, 50.763853], [-121.922148, 50.763145], [-121.92268, 50.76278], [-121.923422, 50.762625], [-121.924373, 50.762554], [-121.9253, 50.762292], [-121.925819, 50.761983], [-121.926099, 50.761454], [-121.92741, 50.759919], [-121.927695, 50.759274], [-121.928498, 50.758247], [-121.928761, 50.757981], [-121.92893, 50.757963], [-121.930238, 50.757211], [-121.930329, 50.756942], [-121.930545, 50.756764], [-121.930636, 50.756568], [-121.930679, 50.755911], [-121.930955, 50.755618], [-121.931168, 50.755538], [-121.931574, 50.755209], [-121.931453, 50.75493], [-121.930811, 50.754456], [-121.930604, 50.754229], [-121.930664, 50.753385], [-121.930369, 50.752594], [-121.925722, 50.754166], [-121.92267, 50.755129], [-121.913438, 50.754957], [-121.913156, 50.758782], [-121.915918, 50.758602], [-121.915779, 50.764673], [-121.916217, 50.764546], [-121.916391, 50.764412], [-121.917156, 50.764357], [-121.917479, 50.764503], [-121.917715, 50.764731]]]]}, "properties": {"name": "Fountain 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 10", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931818", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.906979, 50.722664], [-121.916009, 50.722736], [-121.915453, 50.721674], [-121.913444, 50.719499], [-121.913247, 50.719205], [-121.913154, 50.718873], [-121.913242, 50.718395], [-121.906904, 50.71841], [-121.906979, 50.722664]]]]}, "properties": {"name": "Fountain 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 11", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931819", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.803703, 50.687983], [-121.803929, 50.688725], [-121.812069, 50.688797], [-121.812027, 50.684242], [-121.803379, 50.684309], [-121.803703, 50.687983]]]]}, "properties": {"name": "Fountain 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 12", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931820", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.94407, 50.694261], [-121.952687, 50.694268], [-121.952319, 50.701329], [-121.956535, 50.701421], [-121.957651, 50.701376], [-121.957907, 50.708594], [-121.967345, 50.708712], [-121.969132, 50.70889], [-121.969496, 50.698356], [-121.963945, 50.698367], [-121.963804, 50.692477], [-121.955287, 50.692086], [-121.956583, 50.671851], [-121.955204, 50.67185], [-121.954544, 50.67058], [-121.953296, 50.670816], [-121.950598, 50.670601], [-121.950076, 50.670607], [-121.949087, 50.670775], [-121.948391, 50.671158], [-121.945946, 50.672059], [-121.94446, 50.673185], [-121.9437, 50.673568], [-121.942437, 50.673949], [-121.941519, 50.674032], [-121.940399, 50.675442], [-121.941361, 50.675761], [-121.942055, 50.681835], [-121.941397, 50.682287], [-121.943586, 50.683658], [-121.94398, 50.683593], [-121.946468, 50.683653], [-121.946545, 50.687244], [-121.943655, 50.687202], [-121.943951, 50.690369], [-121.94407, 50.694261]]]]}, "properties": {"name": "Lillooet 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Lillooet 1", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931821", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.833485, 50.708853], [-121.839181, 50.708849], [-121.839177, 50.705236], [-121.833483, 50.705238], [-121.833485, 50.708853]]]]}, "properties": {"name": "Fountain Creek 8", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain Creek 8", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931822", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.88559, 50.650609], [-121.884591, 50.662533], [-121.886458, 50.662525], [-121.887106, 50.662459], [-121.902795, 50.662541], [-121.915881, 50.662406], [-121.915452, 50.662024], [-121.9144, 50.66162], [-121.913953, 50.661301], [-121.913139, 50.66105], [-121.912663, 50.660821], [-121.912158, 50.660663], [-121.910971, 50.660013], [-121.909285, 50.659477], [-121.90851, 50.659298], [-121.907517, 50.658821], [-121.907408, 50.658695], [-121.906847, 50.658437], [-121.906289, 50.658081], [-121.905453, 50.657498], [-121.905165, 50.657154], [-121.904582, 50.656681], [-121.903505, 50.656104], [-121.903104, 50.655749], [-121.900881, 50.654594], [-121.900561, 50.654339], [-121.900156, 50.654193], [-121.899124, 50.653508], [-121.897335, 50.652529], [-121.89695, 50.652175], [-121.896012, 50.651734], [-121.895802, 50.651579], [-121.895534, 50.651028], [-121.895155, 50.650809], [-121.894748, 50.65075], [-121.893821, 50.650473], [-121.892853, 50.650067], [-121.891343, 50.649971], [-121.88885, 50.649444], [-121.887694, 50.649299], [-121.887172, 50.649285], [-121.885923, 50.64947], [-121.884826, 50.649495], [-121.88559, 50.650609]]]]}, "properties": {"name": "McCartney's Flat 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "McCartney's Flat 4", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931823", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.988775, 50.668476], [-121.988897, 50.668072], [-121.989529, 50.666909], [-121.988785, 50.66665], [-121.987182, 50.668839], [-121.988006, 50.668703], [-121.988775, 50.668476]]]]}, "properties": {"name": "Seton Lake 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Seton Lake 5", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931824", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.866983, 50.747223], [-121.86793, 50.7468], [-121.86844, 50.746697], [-121.86829, 50.743518], [-121.868382, 50.743522], [-121.868277, 50.742696], [-121.871172, 50.742148], [-121.860938, 50.742541], [-121.862117, 50.747467], [-121.863323, 50.747663], [-121.863988, 50.747689], [-121.864717, 50.747638], [-121.865263, 50.747446], [-121.866983, 50.747223]]]]}, "properties": {"name": "Fountain 1D", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 1D", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931825", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.294044, 50.705674], [-122.302843, 50.705707], [-122.302963, 50.703086], [-122.302528, 50.702945], [-122.302191, 50.70269], [-122.302293, 50.702448], [-122.302712, 50.701946], [-122.302801, 50.701731], [-122.302806, 50.701256], [-122.30288, 50.701175], [-122.303003, 50.701347], [-122.303147, 50.701303], [-122.303206, 50.701096], [-122.302972, 50.700672], [-122.303166, 50.70023], [-122.29378, 50.700074], [-122.294044, 50.705674]]]]}, "properties": {"name": "Necait 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Necait 6", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931826", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.766642, 50.554119], [-121.798424, 50.554708], [-121.802266, 50.554921], [-121.802505, 50.555051], [-121.802993, 50.542374], [-121.804535, 50.531065], [-121.785465, 50.53066], [-121.784908, 50.530582], [-121.784871, 50.530779], [-121.783865, 50.530983], [-121.783063, 50.531052], [-121.776566, 50.530985], [-121.776693, 50.531073], [-121.776691, 50.531162], [-121.776448, 50.531259], [-121.776444, 50.531466], [-121.7769, 50.531847], [-121.776938, 50.531983], [-121.776766, 50.532117], [-121.777044, 50.532299], [-121.777217, 50.532642], [-121.777199, 50.533317], [-121.777021, 50.533639], [-121.777011, 50.534062], [-121.777158, 50.534405], [-121.777172, 50.534962], [-121.777305, 50.535251], [-121.77679, 50.535508], [-121.776466, 50.535522], [-121.776152, 50.535617], [-121.775951, 50.535768], [-121.775759, 50.536072], [-121.775795, 50.536334], [-121.775938, 50.536514], [-121.769339, 50.536605], [-121.769218, 50.539863], [-121.767077, 50.539819], [-121.766411, 50.54638], [-121.766244, 50.546382], [-121.766642, 50.554119]]]]}, "properties": {"name": "Nesikep 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Nesikep 6", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931827", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.919009, 50.663632], [-121.919565, 50.664024], [-121.91991, 50.664404], [-121.921041, 50.665062], [-121.921406, 50.665393], [-121.92361, 50.663881], [-121.923195, 50.6608], [-121.922832, 50.654309], [-121.923805, 50.643059], [-121.898741, 50.64313], [-121.898718, 50.645891], [-121.89266, 50.64631], [-121.892775, 50.648085], [-121.892726, 50.648323], [-121.89364, 50.648456], [-121.893905, 50.648701], [-121.89397, 50.648926], [-121.894445, 50.64912], [-121.895008, 50.649251], [-121.895876, 50.649674], [-121.896026, 50.649855], [-121.897002, 50.650484], [-121.897195, 50.650683], [-121.89739, 50.650793], [-121.897898, 50.650906], [-121.898413, 50.651218], [-121.899483, 50.652018], [-121.900671, 50.652686], [-121.901795, 50.653604], [-121.90284, 50.654298], [-121.903442, 50.654583], [-121.903593, 50.654755], [-121.903957, 50.654956], [-121.90436, 50.655284], [-121.905072, 50.655668], [-121.905587, 50.656078], [-121.906007, 50.656279], [-121.906937, 50.657025], [-121.908583, 50.657958], [-121.910652, 50.658518], [-121.911781, 50.658628], [-121.912326, 50.65883], [-121.913075, 50.658918], [-121.914187, 50.659199], [-121.9149, 50.659592], [-121.915279, 50.659721], [-121.915617, 50.659768], [-121.91657, 50.660129], [-121.916963, 50.660213], [-121.917523, 50.660498], [-121.918347, 50.661009], [-121.918637, 50.66129], [-121.918748, 50.662073], [-121.919044, 50.662697], [-121.919027, 50.662832], [-121.918743, 50.66291], [-121.919009, 50.663632]]]]}, "properties": {"name": "Pashilqua 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Pashilqua 2", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931828", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.816486, 50.895961], [-121.816469, 50.898025], [-121.866128, 50.897404], [-121.86537, 50.896243], [-121.863791, 50.89487], [-121.861572, 50.892442], [-121.860883, 50.891131], [-121.860718, 50.88921], [-121.860452, 50.888313], [-121.860722, 50.887239], [-121.862115, 50.884267], [-121.863408, 50.880273], [-121.865413, 50.877443], [-121.8658, 50.875972], [-121.865749, 50.875303], [-121.866207, 50.874669], [-121.866602, 50.873461], [-121.867347, 50.87245], [-121.86927, 50.87053], [-121.869952, 50.869735], [-121.871285, 50.868587], [-121.869758, 50.869132], [-121.871348, 50.867694], [-121.872228, 50.867199], [-121.871906, 50.866998], [-121.871526, 50.866878], [-121.870504, 50.866787], [-121.870149, 50.866802], [-121.86943, 50.867109], [-121.868677, 50.867075], [-121.86845, 50.867037], [-121.867593, 50.866678], [-121.86671, 50.866166], [-121.866485, 50.866101], [-121.866314, 50.866108], [-121.865781, 50.866373], [-121.865283, 50.866367], [-121.864919, 50.866202], [-121.864392, 50.866171], [-121.863885, 50.86604], [-121.863177, 50.865978], [-121.862361, 50.865565], [-121.860701, 50.865478], [-121.860446, 50.865413], [-121.86007, 50.865157], [-121.859703, 50.865037], [-121.858667, 50.865026], [-121.857435, 50.864781], [-121.856982, 50.864739], [-121.856753, 50.864765], [-121.856351, 50.86494], [-121.855638, 50.865644], [-121.855264, 50.865874], [-121.854833, 50.866032], [-121.854119, 50.866186], [-121.850652, 50.866727], [-121.849085, 50.867432], [-121.848858, 50.867492], [-121.84766, 50.867589], [-121.846395, 50.868143], [-121.845601, 50.868172], [-121.844838, 50.868542], [-121.843677, 50.868889], [-121.843316, 50.86912], [-121.842364, 50.869129], [-121.841044, 50.869664], [-121.840544, 50.869731], [-121.839776, 50.869741], [-121.838758, 50.869579], [-121.837551, 50.869522], [-121.836615, 50.870024], [-121.835164, 50.870667], [-121.834175, 50.870989], [-121.833448, 50.871063], [-121.832745, 50.871262], [-121.832283, 50.872148], [-121.832262, 50.872454], [-121.832357, 50.872608], [-121.833069, 50.873109], [-121.833152, 50.873282], [-121.833191, 50.875089], [-121.833496, 50.875929], [-121.833577, 50.876703], [-121.832863, 50.877415], [-121.832848, 50.87799], [-121.832743, 50.878232], [-121.83239, 50.878669], [-121.832248, 50.879316], [-121.831492, 50.879974], [-121.830352, 50.880636], [-121.829553, 50.881294], [-121.828162, 50.88182], [-121.827744, 50.882049], [-121.826755, 50.882867], [-121.82602, 50.883345], [-121.82513, 50.883704], [-121.82367, 50.884032], [-121.823142, 50.884063], [-121.82215, 50.88398], [-121.821264, 50.884063], [-121.821323, 50.881437], [-121.814776, 50.881342], [-121.815241, 50.886527], [-121.816486, 50.895961]]]]}, "properties": {"name": "Pavilion 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Pavilion 1", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931829", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.221252, 50.735079], [-122.234943, 50.735252], [-122.235974, 50.735199], [-122.235867, 50.729308], [-122.234934, 50.72923], [-122.23262, 50.729485], [-122.231839, 50.729498], [-122.229506, 50.729211], [-122.226733, 50.729005], [-122.226572, 50.729737], [-122.225914, 50.730102], [-122.22421, 50.730486], [-122.223106, 50.730512], [-122.221322, 50.730329], [-122.220086, 50.729697], [-122.21769, 50.728112], [-122.21628, 50.727632], [-122.214638, 50.727726], [-122.213658, 50.728061], [-122.21305, 50.728067], [-122.212952, 50.727767], [-122.211174, 50.727825], [-122.210048, 50.728033], [-122.20802, 50.728644], [-122.207229, 50.728715], [-122.206333, 50.728632], [-122.204227, 50.728146], [-122.203167, 50.72813], [-122.202373, 50.728256], [-122.20221, 50.727659], [-122.201621, 50.727612], [-122.200861, 50.727302], [-122.199837, 50.726656], [-122.198907, 50.72629], [-122.198586, 50.726098], [-122.197973, 50.725491], [-122.197649, 50.72539], [-122.196938, 50.725467], [-122.196639, 50.725564], [-122.195988, 50.725587], [-122.194745, 50.72538], [-122.194181, 50.725151], [-122.193857, 50.725123], [-122.193531, 50.725155], [-122.192771, 50.725546], [-122.191864, 50.725603], [-122.191582, 50.725564], [-122.190839, 50.725137], [-122.190146, 50.724997], [-122.188719, 50.724816], [-122.186068, 50.724825], [-122.185476, 50.724704], [-122.184126, 50.724083], [-122.183735, 50.723765], [-122.183486, 50.723441], [-122.183134, 50.723284], [-122.18137, 50.722975], [-122.180553, 50.722673], [-122.180085, 50.72187], [-122.180018, 50.721645], [-122.180176, 50.721546], [-122.180065, 50.721357], [-122.179478, 50.720957], [-122.178885, 50.720763], [-122.178662, 50.720618], [-122.178536, 50.720437], [-122.178383, 50.720373], [-122.177407, 50.720295], [-122.177097, 50.720212], [-122.176616, 50.720199], [-122.175429, 50.720011], [-122.174145, 50.719659], [-122.173581, 50.719579], [-122.173462, 50.733637], [-122.221252, 50.735079]]], [[[-122.2803, 50.728719], [-122.279873, 50.711315], [-122.28017, 50.709061], [-122.280027, 50.706379], [-122.275274, 50.706313], [-122.275253, 50.707683], [-122.274899, 50.707831], [-122.273861, 50.70776], [-122.273281, 50.707256], [-122.272821, 50.707088], [-122.27192, 50.707061], [-122.271498, 50.707264], [-122.271067, 50.707676], [-122.27058, 50.707984], [-122.269373, 50.708346], [-122.270369, 50.70925], [-122.2711, 50.709569], [-122.271833, 50.70979], [-122.272675, 50.710271], [-122.273789, 50.710638], [-122.274164, 50.710982], [-122.274625, 50.711551], [-122.275134, 50.71249], [-122.275172, 50.712723], [-122.275099, 50.712976], [-122.274724, 50.713404], [-122.273954, 50.713723], [-122.272759, 50.714039], [-122.272402, 50.714182], [-122.271424, 50.715102], [-122.270753, 50.715484], [-122.270284, 50.71557], [-122.268428, 50.715649], [-122.267646, 50.71577], [-122.267193, 50.715867], [-122.266037, 50.716291], [-122.26524, 50.716492], [-122.264619, 50.716506], [-122.263644, 50.716348], [-122.263146, 50.716389], [-122.262334, 50.716717], [-122.260159, 50.718061], [-122.258809, 50.718295], [-122.256583, 50.718551], [-122.254321, 50.719077], [-122.253471, 50.719125], [-122.253031, 50.719202], [-122.252275, 50.719414], [-122.251534, 50.71976], [-122.25081, 50.719881], [-122.249703, 50.719956], [-122.247043, 50.720489], [-122.252516, 50.723257], [-122.2524, 50.726659], [-122.253002, 50.728043], [-122.26123, 50.728509], [-122.2803, 50.728719]]]]}, "properties": {"name": "Slosh 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Slosh 1", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931831", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.846465, 50.586846], [-121.848902, 50.586794], [-121.851356, 50.586566], [-121.851133, 50.587777], [-121.851278, 50.591708], [-121.857165, 50.591821], [-121.857988, 50.579598], [-121.846488, 50.579568], [-121.846465, 50.586846]]]]}, "properties": {"name": "Towinock 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Towinock 2", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931832", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.285561, 50.706406], [-122.285864, 50.706526], [-122.286139, 50.7065], [-122.286245, 50.70279], [-122.28505, 50.702837], [-122.274818, 50.702891], [-122.274706, 50.70626], [-122.275277, 50.706254], [-122.275274, 50.706313], [-122.279123, 50.706343], [-122.284914, 50.706574], [-122.284921, 50.706391], [-122.285561, 50.706406]]]]}, "properties": {"name": "Mission 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Mission 5", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931833", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.831123, 50.765706], [-121.835896, 50.765692], [-121.835717, 50.76462], [-121.835988, 50.763262], [-121.835938, 50.762807], [-121.835769, 50.762408], [-121.834333, 50.760174], [-121.833908, 50.759675], [-121.83297, 50.758967], [-121.832811, 50.758695], [-121.832804, 50.758402], [-121.830852, 50.758333], [-121.831123, 50.765706]]]]}, "properties": {"name": "Fountain 3A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 3A", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931834", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.291854, 50.71004], [-122.302465, 50.71024], [-122.302843, 50.705707], [-122.295711, 50.70568], [-122.295777, 50.705727], [-122.295415, 50.706039], [-122.295156, 50.706408], [-122.294999, 50.706935], [-122.294666, 50.706938], [-122.2919, 50.707617], [-122.291854, 50.71004]]]]}, "properties": {"name": "Whitecap 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Whitecap 1", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931835", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.887578, 50.744987], [-121.887121, 50.744167], [-121.888, 50.744175], [-121.887054, 50.741431], [-121.878213, 50.738143], [-121.870332, 50.739503], [-121.872198, 50.742142], [-121.871172, 50.742148], [-121.868277, 50.742696], [-121.868382, 50.743522], [-121.877344, 50.743851], [-121.883206, 50.745056], [-121.887578, 50.744987]]]]}, "properties": {"name": "Fountain 1B", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Fountain 1B", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931842", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.659249, 50.341212], [-122.659282, 50.344184], [-122.680284, 50.344237], [-122.684594, 50.344073], [-122.686998, 50.352448], [-122.693851, 50.352556], [-122.706305, 50.353064], [-122.708549, 50.353091], [-122.708684, 50.345923], [-122.711773, 50.32018], [-122.710964, 50.320337], [-122.710287, 50.320556], [-122.709704, 50.320854], [-122.709011, 50.321383], [-122.708235, 50.321795], [-122.706998, 50.322125], [-122.70631, 50.322641], [-122.706268, 50.323003], [-122.706036, 50.323192], [-122.705783, 50.323299], [-122.705066, 50.323289], [-122.704533, 50.323125], [-122.702666, 50.322761], [-122.702204, 50.322615], [-122.700844, 50.32192], [-122.700999, 50.32135], [-122.7015, 50.321494], [-122.702758, 50.320577], [-122.704381, 50.318707], [-122.705114, 50.317336], [-122.705507, 50.316085], [-122.705626, 50.314568], [-122.70603, 50.314], [-122.707326, 50.313604], [-122.707676, 50.31355], [-122.708733, 50.313945], [-122.709591, 50.313938], [-122.71128, 50.313106], [-122.714067, 50.312204], [-122.714797, 50.312179], [-122.715021, 50.312243], [-122.715537, 50.313026], [-122.716027, 50.313243], [-122.71649, 50.313271], [-122.717713, 50.312905], [-122.718248, 50.312654], [-122.718825, 50.312522], [-122.720136, 50.311868], [-122.721515, 50.311583], [-122.722428, 50.31125], [-122.723356, 50.30982], [-122.726186, 50.309518], [-122.727449, 50.309689], [-122.728166, 50.309852], [-122.728922, 50.309832], [-122.729477, 50.309779], [-122.730055, 50.30956], [-122.730499, 50.309546], [-122.730511, 50.309682], [-122.731428, 50.309725], [-122.732022, 50.309883], [-122.732896, 50.310228], [-122.732958, 50.310065], [-122.732811, 50.309449], [-122.732557, 50.309139], [-122.73217, 50.30879], [-122.729517, 50.307648], [-122.729332, 50.307456], [-122.728124, 50.307435], [-122.727772, 50.307381], [-122.726834, 50.307153], [-122.726119, 50.306864], [-122.725432, 50.30671], [-122.724521, 50.306194], [-122.723402, 50.305724], [-122.722632, 50.3053], [-122.721808, 50.304534], [-122.721527, 50.304371], [-122.720516, 50.304333], [-122.719577, 50.304123], [-122.719199, 50.303861], [-122.718879, 50.303528], [-122.717982, 50.303319], [-122.716872, 50.303253], [-122.715323, 50.303933], [-122.714255, 50.304227], [-122.712752, 50.304394], [-122.711782, 50.304401], [-122.711247, 50.304498], [-122.710854, 50.304579], [-122.709814, 50.304962], [-122.708786, 50.305222], [-122.70696, 50.305216], [-122.704688, 50.304985], [-122.704323, 50.304985], [-122.703521, 50.305109], [-122.703002, 50.305099], [-122.701612, 50.30487], [-122.698727, 50.303972], [-122.697701, 50.303807], [-122.696986, 50.303599], [-122.695345, 50.303505], [-122.693548, 50.303275], [-122.692609, 50.303021], [-122.69111, 50.302748], [-122.689888, 50.302447], [-122.687854, 50.302154], [-122.686454, 50.301754], [-122.68484, 50.301526], [-122.683211, 50.301449], [-122.682075, 50.301329], [-122.681761, 50.301336], [-122.680481, 50.302688], [-122.67844, 50.30291], [-122.677554, 50.302767], [-122.676274, 50.302446], [-122.675106, 50.302369], [-122.674566, 50.302453], [-122.673695, 50.302696], [-122.672848, 50.303022], [-122.672418, 50.303044], [-122.672133, 50.303131], [-122.671125, 50.303591], [-122.669494, 50.304516], [-122.668087, 50.305144], [-122.667045, 50.305747], [-122.66666, 50.306066], [-122.666066, 50.306731], [-122.665068, 50.308406], [-122.665185, 50.30883], [-122.664637, 50.308896], [-122.662093, 50.310229], [-122.660904, 50.310686], [-122.659794, 50.310885], [-122.657033, 50.310938], [-122.656424, 50.310887], [-122.653895, 50.310431], [-122.65029, 50.310118], [-122.648637, 50.309748], [-122.647594, 50.309238], [-122.645165, 50.308289], [-122.644675, 50.308168], [-122.64325, 50.308195], [-122.641011, 50.308667], [-122.639683, 50.309006], [-122.638411, 50.309221], [-122.637854, 50.309426], [-122.637455, 50.309698], [-122.636443, 50.310041], [-122.633599, 50.310192], [-122.632666, 50.310359], [-122.630799, 50.310523], [-122.631062, 50.323221], [-122.633293, 50.323137], [-122.640167, 50.323107], [-122.639108, 50.331579], [-122.63811, 50.341206], [-122.659249, 50.341212]], [[-122.693394, 50.319858], [-122.692819, 50.319743], [-122.692194, 50.319535], [-122.691251, 50.319048], [-122.6898, 50.31773], [-122.688953, 50.316557], [-122.688506, 50.316243], [-122.687805, 50.315953], [-122.685813, 50.315593], [-122.684629, 50.315491], [-122.683846, 50.3155], [-122.681838, 50.315686], [-122.680697, 50.315654], [-122.679265, 50.315252], [-122.678173, 50.314252], [-122.677459, 50.313849], [-122.676004, 50.313516], [-122.675363, 50.313084], [-122.674505, 50.312045], [-122.673713, 50.311689], [-122.672759, 50.311563], [-122.672114, 50.311588], [-122.669113, 50.312787], [-122.668409, 50.312918], [-122.667469, 50.312929], [-122.666778, 50.312758], [-122.666346, 50.312374], [-122.666229, 50.31206], [-122.666215, 50.311686], [-122.666595, 50.311109], [-122.666945, 50.310279], [-122.666836, 50.309492], [-122.667879, 50.309339], [-122.688068, 50.308828], [-122.688224, 50.309486], [-122.693957, 50.309287], [-122.693394, 50.319858]]], [[[-122.751532, 50.310483], [-122.753176, 50.31045], [-122.755266, 50.310752], [-122.75812, 50.310765], [-122.757712, 50.305457], [-122.754651, 50.304724], [-122.751242, 50.304088], [-122.750288, 50.304058], [-122.74831, 50.30382], [-122.744587, 50.303839], [-122.744236, 50.303893], [-122.743968, 50.304035], [-122.744017, 50.306729], [-122.744249, 50.30677], [-122.744669, 50.307023], [-122.744948, 50.307258], [-122.745408, 50.307861], [-122.745518, 50.308321], [-122.745552, 50.310001], [-122.745928, 50.310507], [-122.746138, 50.310696], [-122.747133, 50.311283], [-122.747581, 50.311481], [-122.74803, 50.311545], [-122.748901, 50.311546], [-122.749406, 50.311485], [-122.750055, 50.31118], [-122.750674, 50.310769], [-122.751532, 50.310483]]], [[[-122.717776, 50.32463], [-122.724214, 50.324754], [-122.725008, 50.324692], [-122.725089, 50.31894], [-122.725564, 50.318896], [-122.725692, 50.317077], [-122.721997, 50.317005], [-122.717665, 50.317218], [-122.717776, 50.32463]]]]}, "properties": {"name": "Mount Currie", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Mount Currie", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931843", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.490976, 50.55331], [-122.491287, 50.541911], [-122.490019, 50.541827], [-122.485552, 50.541806], [-122.46601, 50.54225], [-122.465569, 50.550238], [-122.46584, 50.550104], [-122.466454, 50.54955], [-122.466768, 50.549147], [-122.467307, 50.548969], [-122.467451, 50.548736], [-122.467805, 50.54863], [-122.468454, 50.548588], [-122.46906, 50.548582], [-122.469738, 50.548657], [-122.470919, 50.549003], [-122.471591, 50.54951], [-122.471714, 50.549898], [-122.471841, 50.549989], [-122.471886, 50.550906], [-122.471983, 50.551006], [-122.472393, 50.551097], [-122.472687, 50.551251], [-122.472686, 50.551305], [-122.472501, 50.551385], [-122.472386, 50.551672], [-122.472384, 50.551879], [-122.472507, 50.552132], [-122.472662, 50.552222], [-122.473085, 50.552251], [-122.473789, 50.552488], [-122.474153, 50.552742], [-122.474306, 50.55295], [-122.474643, 50.553058], [-122.474747, 50.553159], [-122.475799, 50.552521], [-122.476025, 50.551813], [-122.477868, 50.549797], [-122.490281, 50.553507], [-122.490267, 50.553285], [-122.490976, 50.55331]]], [[[-122.482648, 50.53123], [-122.485537, 50.531076], [-122.485461, 50.529388], [-122.485585, 50.527298], [-122.482526, 50.527251], [-122.482648, 50.53123]]], [[[-122.490967, 50.527429], [-122.491001, 50.527854], [-122.496079, 50.528343], [-122.496824, 50.528321], [-122.497016, 50.527626], [-122.497652, 50.526636], [-122.497102, 50.526568], [-122.491102, 50.52637], [-122.490967, 50.527429]]]]}, "properties": {"name": "Nequatque", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Mainland/Southwest", "census_subdivision": "Nequatque", "economic_region_id": "5920", "census_division_code": "5931", "census_subdivision_code": "5931844", "regional_district_aka_census_division": "Squamish-Lillooet"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.765665, 50.134629], [-120.813765, 50.134523], [-120.813468, 50.1266], [-120.807717, 50.126357], [-120.807265, 50.116232], [-120.80708, 50.115207], [-120.807712, 50.115302], [-120.808378, 50.115571], [-120.809144, 50.116329], [-120.809592, 50.116498], [-120.813487, 50.117394], [-120.815084, 50.117959], [-120.8155, 50.118146], [-120.816424, 50.118862], [-120.816744, 50.118962], [-120.817269, 50.11899], [-120.818781, 50.118935], [-120.820961, 50.118362], [-120.823337, 50.11832], [-120.823396, 50.10902], [-120.82326, 50.10834], [-120.822155, 50.108242], [-120.818466, 50.108258], [-120.818491, 50.105], [-120.807829, 50.105728], [-120.807606, 50.097529], [-120.806998, 50.080982], [-120.806638, 50.08132], [-120.805375, 50.08223], [-120.804791, 50.082442], [-120.804165, 50.082466], [-120.803868, 50.082605], [-120.803156, 50.083386], [-120.802936, 50.084048], [-120.801903, 50.08518], [-120.801484, 50.085467], [-120.800542, 50.08594], [-120.79858, 50.087254], [-120.797502, 50.088062], [-120.795799, 50.089578], [-120.795427, 50.090168], [-120.795444, 50.090742], [-120.795946, 50.091571], [-120.793963, 50.09247], [-120.792148, 50.092855], [-120.791508, 50.093115], [-120.790854, 50.093043], [-120.79015, 50.093169], [-120.789664, 50.093425], [-120.788281, 50.093499], [-120.788136, 50.091872], [-120.776798, 50.091942], [-120.776014, 50.09545], [-120.775113, 50.095199], [-120.774597, 50.094904], [-120.774104, 50.094429], [-120.774039, 50.094158], [-120.774191, 50.09391], [-120.775224, 50.093488], [-120.775518, 50.093238], [-120.775814, 50.092267], [-120.775975, 50.091249], [-120.773139, 50.090535], [-120.772876, 50.090842], [-120.772796, 50.091832], [-120.772955, 50.092599], [-120.773144, 50.093047], [-120.77279, 50.093138], [-120.772425, 50.09315], [-120.771434, 50.09404], [-120.770584, 50.094519], [-120.767779, 50.093678], [-120.767225, 50.094574], [-120.76651, 50.095374], [-120.769002, 50.096083], [-120.768648, 50.096828], [-120.768443, 50.097031], [-120.768333, 50.097047], [-120.766794, 50.09941], [-120.767455, 50.099422], [-120.767098, 50.100068], [-120.767108, 50.1], [-120.763325, 50.099888], [-120.763366, 50.099029], [-120.76322, 50.098622], [-120.749866, 50.09887], [-120.74984, 50.097459], [-120.749601, 50.096659], [-120.749695, 50.096238], [-120.748993, 50.091698], [-120.752725, 50.091747], [-120.752367, 50.085712], [-120.751797, 50.085782], [-120.751902, 50.085519], [-120.750587, 50.08447], [-120.750583, 50.083956], [-120.734231, 50.083852], [-120.734389, 50.090877], [-120.734348, 50.095256], [-120.739897, 50.09527], [-120.739778, 50.107738], [-120.739578, 50.120676], [-120.733915, 50.120595], [-120.733787, 50.127605], [-120.734209, 50.131632], [-120.733545, 50.13466], [-120.737847, 50.134794], [-120.738645, 50.134893], [-120.738629, 50.134838], [-120.739862, 50.134935], [-120.765665, 50.134629]]]]}, "properties": {"name": "Merritt", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Merritt", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933006", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.797485, 50.449902], [-120.797177, 50.459412], [-120.809935, 50.459333], [-120.863699, 50.459374], [-120.866138, 50.459295], [-120.888214, 50.459612], [-120.890471, 50.416219], [-120.903952, 50.416469], [-120.916736, 50.416484], [-120.934929, 50.416596], [-120.932799, 50.414155], [-120.931502, 50.413017], [-120.926439, 50.409632], [-120.922492, 50.406742], [-120.911483, 50.398077], [-120.902822, 50.390855], [-120.898634, 50.386641], [-120.89638, 50.384176], [-120.894729, 50.381612], [-120.893824, 50.379433], [-120.892385, 50.374377], [-120.890105, 50.362896], [-120.891716, 50.356183], [-120.892242, 50.353614], [-120.89415, 50.349579], [-120.896312, 50.344706], [-120.903166, 50.341784], [-120.904089, 50.337376], [-120.908891, 50.331455], [-120.911112, 50.326241], [-120.910579, 50.320997], [-120.914411, 50.313652], [-120.92661, 50.311121], [-120.939798, 50.310365], [-120.939788, 50.303729], [-120.940333, 50.300318], [-120.942422, 50.29273], [-120.944613, 50.291661], [-120.954146, 50.287248], [-120.959667, 50.279405], [-120.966076, 50.27295], [-120.963049, 50.263175], [-120.954246, 50.266012], [-120.947124, 50.264683], [-120.94826, 50.256234], [-120.944922, 50.252641], [-120.95215, 50.241532], [-120.970075, 50.227859], [-120.999552, 50.227743], [-120.999587, 50.221692], [-120.999486, 50.211363], [-120.999757, 50.17848], [-121.00442, 50.178585], [-121.004976, 50.146619], [-121.004976, 50.142974], [-121.005685, 50.138665], [-121.004397, 50.138647], [-121.003915, 50.138569], [-121.001697, 50.13778], [-121.001423, 50.137559], [-121.000988, 50.136881], [-121.00066, 50.136565], [-121.000321, 50.136401], [-120.999861, 50.13639], [-120.99926, 50.136549], [-120.99879, 50.136883], [-120.998322, 50.137469], [-120.997313, 50.138415], [-120.996909, 50.138549], [-120.996175, 50.138566], [-120.995638, 50.138496], [-120.994693, 50.138152], [-120.993817, 50.137995], [-120.992497, 50.137401], [-120.990696, 50.136743], [-120.989435, 50.136132], [-120.988808, 50.135946], [-120.988064, 50.135919], [-120.987288, 50.136032], [-120.987076, 50.136149], [-120.986831, 50.136575], [-120.986313, 50.136838], [-120.985476, 50.137082], [-120.985041, 50.137368], [-120.984477, 50.13804], [-120.983357, 50.138482], [-120.98238, 50.138748], [-120.980908, 50.138919], [-120.979609, 50.138894], [-120.978696, 50.138713], [-120.975887, 50.137639], [-120.975349, 50.137182], [-120.974624, 50.136883], [-120.973262, 50.136615], [-120.971987, 50.136487], [-120.971525, 50.136547], [-120.970773, 50.137155], [-120.970326, 50.137908], [-120.968762, 50.139451], [-120.968631, 50.139961], [-120.968714, 50.140147], [-120.969138, 50.140527], [-120.969243, 50.140774], [-120.969205, 50.141124], [-120.968981, 50.141295], [-120.968647, 50.141386], [-120.967609, 50.141436], [-120.967021, 50.14166], [-120.965911, 50.141803], [-120.965143, 50.141762], [-120.964522, 50.141553], [-120.964147, 50.141211], [-120.96369, 50.140388], [-120.963351, 50.140164], [-120.962341, 50.13976], [-120.961114, 50.139587], [-120.960674, 50.139716], [-120.95891, 50.140939], [-120.957739, 50.141426], [-120.957225, 50.141484], [-120.956133, 50.141396], [-120.955273, 50.141133], [-120.953781, 50.141026], [-120.951903, 50.139458], [-120.951584, 50.13889], [-120.951209, 50.138486], [-120.95026, 50.137864], [-120.949679, 50.137649], [-120.949071, 50.137666], [-120.948572, 50.137855], [-120.948119, 50.13823], [-120.947347, 50.139173], [-120.946906, 50.139452], [-120.946335, 50.139546], [-120.945696, 50.139545], [-120.944873, 50.139378], [-120.943908, 50.13907], [-120.943019, 50.139125], [-120.941818, 50.139347], [-120.940027, 50.139312], [-120.938288, 50.139154], [-120.937526, 50.138939], [-120.936878, 50.138555], [-120.934645, 50.137858], [-120.933427, 50.137592], [-120.932166, 50.137623], [-120.931688, 50.137737], [-120.931074, 50.138098], [-120.929986, 50.138546], [-120.928689, 50.138767], [-120.926445, 50.139291], [-120.926142, 50.139566], [-120.926614, 50.140787], [-120.926531, 50.141301], [-120.926277, 50.141748], [-120.926067, 50.141822], [-120.924427, 50.141953], [-120.923852, 50.142064], [-120.922843, 50.142702], [-120.922123, 50.143718], [-120.921663, 50.145135], [-120.920567, 50.14623], [-120.920277, 50.146406], [-120.919807, 50.146602], [-120.917994, 50.146874], [-120.917437, 50.146802], [-120.916894, 50.146563], [-120.916538, 50.14611], [-120.916376, 50.144756], [-120.915998, 50.144094], [-120.915808, 50.143937], [-120.915069, 50.143692], [-120.913915, 50.143576], [-120.913256, 50.143755], [-120.912514, 50.144223], [-120.912245, 50.145333], [-120.912361, 50.146565], [-120.912116, 50.146828], [-120.911997, 50.146835], [-120.910778, 50.146687], [-120.90953, 50.146321], [-120.908705, 50.145767], [-120.908372, 50.145384], [-120.908105, 50.144867], [-120.908169, 50.144048], [-120.908377, 50.143372], [-120.908842, 50.142534], [-120.908923, 50.142031], [-120.908825, 50.141671], [-120.908502, 50.141343], [-120.907791, 50.140873], [-120.907123, 50.140611], [-120.906533, 50.140485], [-120.905951, 50.140496], [-120.904586, 50.14089], [-120.903474, 50.141117], [-120.902904, 50.141348], [-120.901419, 50.142209], [-120.900717, 50.142423], [-120.899869, 50.142474], [-120.898005, 50.142337], [-120.897372, 50.142533], [-120.896901, 50.142929], [-120.896717, 50.14328], [-120.896436, 50.14351], [-120.895795, 50.143777], [-120.894367, 50.143764], [-120.891857, 50.143262], [-120.891404, 50.14323], [-120.89003, 50.1434], [-120.888229, 50.144196], [-120.887574, 50.144393], [-120.886887, 50.144397], [-120.886116, 50.144059], [-120.885309, 50.142765], [-120.884715, 50.142279], [-120.883926, 50.141913], [-120.882809, 50.140923], [-120.88205, 50.140742], [-120.880848, 50.140297], [-120.880188, 50.140164], [-120.879495, 50.139817], [-120.878991, 50.139691], [-120.878437, 50.139679], [-120.877543, 50.139995], [-120.876277, 50.140228], [-120.875836, 50.140432], [-120.875665, 50.140627], [-120.875185, 50.14091], [-120.874073, 50.141385], [-120.873645, 50.141439], [-120.873248, 50.1414], [-120.872864, 50.141228], [-120.872755, 50.141078], [-120.872769, 50.140804], [-120.873109, 50.140036], [-120.873109, 50.139677], [-120.872768, 50.139186], [-120.872264, 50.138911], [-120.871713, 50.138911], [-120.871512, 50.139013], [-120.871456, 50.139822], [-120.871091, 50.140059], [-120.870485, 50.140252], [-120.869724, 50.140274], [-120.869018, 50.140029], [-120.868382, 50.139543], [-120.867808, 50.138568], [-120.867956, 50.138076], [-120.868243, 50.137813], [-120.87013, 50.137357], [-120.870358, 50.137111], [-120.870285, 50.136713], [-120.869939, 50.136332], [-120.869502, 50.136027], [-120.868432, 50.135768], [-120.867609, 50.135806], [-120.867135, 50.136028], [-120.866714, 50.136591], [-120.866257, 50.13696], [-120.865196, 50.137246], [-120.864303, 50.137371], [-120.864307, 50.137459], [-120.865134, 50.138315], [-120.864675, 50.141277], [-120.865616, 50.148837], [-120.874173, 50.148272], [-120.875882, 50.148267], [-120.876019, 50.149044], [-120.875758, 50.151885], [-120.875228, 50.151818], [-120.87503, 50.151841], [-120.87473, 50.152006], [-120.874563, 50.152291], [-120.874391, 50.152387], [-120.873675, 50.15241], [-120.873245, 50.152655], [-120.872906, 50.152989], [-120.87291, 50.153241], [-120.872964, 50.153297], [-120.873478, 50.153378], [-120.873574, 50.153434], [-120.873554, 50.153569], [-120.873381, 50.153673], [-120.872857, 50.153807], [-120.872408, 50.153844], [-120.872307, 50.153914], [-120.872184, 50.154154], [-120.87208, 50.154909], [-120.871974, 50.155069], [-120.871638, 50.155107], [-120.870437, 50.155049], [-120.870178, 50.155188], [-120.869821, 50.155641], [-120.869773, 50.156107], [-120.869622, 50.156366], [-120.872695, 50.156411], [-120.872949, 50.159937], [-120.869676, 50.160011], [-120.870501, 50.17067], [-120.870436, 50.175642], [-120.870697, 50.177034], [-120.869823, 50.177052], [-120.869655, 50.177837], [-120.869763, 50.178784], [-120.870062, 50.179239], [-120.871484, 50.192235], [-120.868512, 50.192296], [-120.868418, 50.210137], [-120.86582, 50.210084], [-120.865646, 50.225555], [-120.86574, 50.235943], [-120.861634, 50.236061], [-120.861976, 50.239188], [-120.850666, 50.239558], [-120.850931, 50.243428], [-120.839596, 50.243716], [-120.835022, 50.243662], [-120.825158, 50.243838], [-120.825246, 50.249126], [-120.81661, 50.249285], [-120.816006, 50.218354], [-120.815511, 50.203807], [-120.815468, 50.190598], [-120.815076, 50.175224], [-120.815113, 50.162177], [-120.81453, 50.148444], [-120.820013, 50.148184], [-120.820243, 50.140853], [-120.823683, 50.140789], [-120.823882, 50.129126], [-120.82668, 50.127629], [-120.823455, 50.124937], [-120.829262, 50.126269], [-120.8357, 50.123172], [-120.835036, 50.122716], [-120.833999, 50.122394], [-120.832382, 50.122035], [-120.832022, 50.121771], [-120.83186, 50.121441], [-120.831936, 50.121214], [-120.831503, 50.120739], [-120.831472, 50.118855], [-120.83133, 50.118406], [-120.830984, 50.1181], [-120.82989, 50.117594], [-120.829422, 50.117501], [-120.829107, 50.117533], [-120.828364, 50.117845], [-120.827778, 50.118206], [-120.825907, 50.118338], [-120.822054, 50.118311], [-120.820961, 50.118362], [-120.818781, 50.118935], [-120.817269, 50.11899], [-120.816744, 50.118962], [-120.816424, 50.118862], [-120.8155, 50.118146], [-120.815084, 50.117959], [-120.813487, 50.117394], [-120.809592, 50.116498], [-120.809144, 50.116329], [-120.808378, 50.115571], [-120.807712, 50.115302], [-120.80708, 50.115207], [-120.807265, 50.116232], [-120.807717, 50.126357], [-120.813468, 50.1266], [-120.813765, 50.134523], [-120.765665, 50.134629], [-120.739862, 50.134935], [-120.738629, 50.134838], [-120.738645, 50.134893], [-120.737847, 50.134794], [-120.733545, 50.13466], [-120.734209, 50.131632], [-120.733787, 50.127605], [-120.724121, 50.12801], [-120.723858, 50.128107], [-120.723564, 50.128101], [-120.723338, 50.12816], [-120.723042, 50.128469], [-120.723008, 50.128917], [-120.72314, 50.129082], [-120.723502, 50.129117], [-120.723854, 50.129051], [-120.725052, 50.129192], [-120.725381, 50.129325], [-120.725454, 50.129568], [-120.725308, 50.129673], [-120.725069, 50.129713], [-120.723655, 50.129749], [-120.723134, 50.130108], [-120.722596, 50.130205], [-120.72201, 50.130193], [-120.721474, 50.129985], [-120.721138, 50.130005], [-120.721043, 50.130193], [-120.721198, 50.130492], [-120.721191, 50.130645], [-120.720818, 50.131106], [-120.72098, 50.131244], [-120.721189, 50.131274], [-120.721857, 50.131063], [-120.72216, 50.131132], [-120.722439, 50.131759], [-120.722358, 50.131999], [-120.722113, 50.13213], [-120.721626, 50.132093], [-120.720589, 50.131794], [-120.719629, 50.131721], [-120.719425, 50.131563], [-120.719405, 50.13142], [-120.719482, 50.13126], [-120.719959, 50.130918], [-120.719915, 50.130702], [-120.719502, 50.130549], [-120.718502, 50.130367], [-120.718076, 50.130233], [-120.717685, 50.130226], [-120.717584, 50.130269], [-120.717566, 50.130359], [-120.717814, 50.130723], [-120.717834, 50.130875], [-120.717645, 50.131044], [-120.717308, 50.131091], [-120.71682, 50.131026], [-120.716185, 50.131159], [-120.715975, 50.131128], [-120.715636, 50.130941], [-120.715174, 50.130932], [-120.71496, 50.131026], [-120.714906, 50.131538], [-120.71524, 50.131887], [-120.715258, 50.132093], [-120.714943, 50.13225], [-120.714478, 50.13234], [-120.714245, 50.132496], [-120.714207, 50.132711], [-120.714334, 50.132993], [-120.714281, 50.133208], [-120.713859, 50.13355], [-120.713201, 50.133852], [-120.712998, 50.13401], [-120.712765, 50.1345], [-120.712912, 50.13463], [-120.713664, 50.134707], [-120.714032, 50.134939], [-120.713974, 50.135262], [-120.713568, 50.135578], [-120.713041, 50.135756], [-120.712567, 50.135711], [-120.712294, 50.13495], [-120.712121, 50.134793], [-120.711683, 50.134691], [-120.711516, 50.134751], [-120.711351, 50.135669], [-120.711032, 50.135887], [-120.710612, 50.135906], [-120.709879, 50.135739], [-120.709731, 50.135592], [-120.709802, 50.135288], [-120.710061, 50.135148], [-120.710167, 50.134989], [-120.710119, 50.134816], [-120.709787, 50.134748], [-120.709286, 50.134972], [-120.70909, 50.134977], [-120.708897, 50.134883], [-120.708768, 50.134664], [-120.70848, 50.134524], [-120.707964, 50.134523], [-120.707521, 50.134675], [-120.707111, 50.135073], [-120.707066, 50.135423], [-120.707178, 50.135722], [-120.707549, 50.135882], [-120.707842, 50.135887], [-120.70845, 50.135773], [-120.709463, 50.135947], [-120.709521, 50.136208], [-120.709282, 50.136518], [-120.709256, 50.136752], [-120.709563, 50.137064], [-120.70957, 50.137208], [-120.709425, 50.137321], [-120.708358, 50.137679], [-120.708038, 50.137951], [-120.708032, 50.138076], [-120.708181, 50.13816], [-120.708421, 50.13812], [-120.708965, 50.137871], [-120.709369, 50.137905], [-120.709526, 50.13816], [-120.709489, 50.138348], [-120.7094, 50.13842], [-120.709146, 50.138486], [-120.708489, 50.138464], [-120.708035, 50.138572], [-120.707518, 50.138579], [-120.707276, 50.138637], [-120.706917, 50.138855], [-120.706865, 50.139043], [-120.70707, 50.139173], [-120.707658, 50.139149], [-120.707865, 50.139207], [-120.708087, 50.139572], [-120.708026, 50.139956], [-120.707569, 50.140164], [-120.707356, 50.140204], [-120.707076, 50.14019], [-120.706788, 50.140094], [-120.706256, 50.140111], [-120.705588, 50.140601], [-120.705598, 50.14097], [-120.705788, 50.141073], [-120.706317, 50.141137], [-120.707032, 50.141116], [-120.707323, 50.141175], [-120.707412, 50.141402], [-120.70727, 50.141714], [-120.707, 50.141808], [-120.705684, 50.141791], [-120.705095, 50.141546], [-120.704591, 50.141526], [-120.704122, 50.141678], [-120.704043, 50.141893], [-120.703752, 50.142085], [-120.703346, 50.142077], [-120.703041, 50.141748], [-120.702933, 50.141359], [-120.703036, 50.141261], [-120.70339, 50.14117], [-120.703651, 50.141013], [-120.703678, 50.140744], [-120.703334, 50.140601], [-120.702929, 50.140584], [-120.702322, 50.140681], [-120.701315, 50.140678], [-120.700734, 50.141108], [-120.699956, 50.141264], [-120.699567, 50.141517], [-120.698884, 50.141467], [-120.698375, 50.141574], [-120.698212, 50.141732], [-120.698232, 50.142219], [-120.698545, 50.142414], [-120.698821, 50.142464], [-120.699642, 50.142013], [-120.699937, 50.141991], [-120.700225, 50.142087], [-120.700427, 50.142254], [-120.700471, 50.142497], [-120.700353, 50.142917], [-120.699605, 50.143343], [-120.699072, 50.143971], [-120.699047, 50.144196], [-120.699178, 50.144378], [-120.699342, 50.144454], [-120.699555, 50.144421], [-120.699841, 50.144239], [-120.700193, 50.1442], [-120.700564, 50.144666], [-120.701085, 50.144903], [-120.701107, 50.145011], [-120.700804, 50.145481], [-120.700725, 50.146001], [-120.700395, 50.146139], [-120.700074, 50.146123], [-120.699912, 50.146003], [-120.70001, 50.14569], [-120.699824, 50.145515], [-120.699356, 50.145327], [-120.699104, 50.145313], [-120.698847, 50.145415], [-120.698656, 50.145627], [-120.69869, 50.145771], [-120.699079, 50.145861], [-120.699124, 50.146069], [-120.698444, 50.146567], [-120.698352, 50.146691], [-120.698301, 50.147167], [-120.697782, 50.147787], [-120.697028, 50.147762], [-120.696702, 50.147559], [-120.696615, 50.147322], [-120.696175, 50.147143], [-120.694877, 50.147046], [-120.694482, 50.147127], [-120.693797, 50.147411], [-120.69358, 50.147577], [-120.693611, 50.147767], [-120.694028, 50.147865], [-120.694535, 50.147768], [-120.694713, 50.147861], [-120.694763, 50.14797], [-120.694726, 50.148185], [-120.694362, 50.148466], [-120.694197, 50.148714], [-120.694284, 50.149211], [-120.694141, 50.149298], [-120.693887, 50.14931], [-120.693409, 50.14905], [-120.69273, 50.149234], [-120.692463, 50.149219], [-120.692077, 50.149121], [-120.691548, 50.148788], [-120.691226, 50.148791], [-120.691054, 50.148859], [-120.690895, 50.148954], [-120.690846, 50.14908], [-120.690981, 50.14946], [-120.69149, 50.149956], [-120.691975, 50.150063], [-120.692109, 50.150148], [-120.692046, 50.150424], [-120.691569, 50.150534], [-120.691436, 50.150668], [-120.691475, 50.150847], [-120.691868, 50.151236], [-120.691799, 50.151608], [-120.691269, 50.152138], [-120.690754, 50.152274], [-120.689949, 50.152763], [-120.689493, 50.152918], [-120.688785, 50.152944], [-120.688484, 50.153079], [-120.688374, 50.153876], [-120.688295, 50.154062], [-120.688041, 50.154252], [-120.68656, 50.154509], [-120.686234, 50.15468], [-120.686063, 50.154892], [-120.685325, 50.155222], [-120.684977, 50.155272], [-120.684325, 50.155215], [-120.683985, 50.155434], [-120.683685, 50.155799], [-120.683466, 50.155897], [-120.682531, 50.155903], [-120.681986, 50.15606], [-120.68189, 50.156117], [-120.681831, 50.156684], [-120.681489, 50.156686], [-120.680219, 50.156413], [-120.679637, 50.15652], [-120.678996, 50.156741], [-120.677668, 50.157587], [-120.677216, 50.158243], [-120.67715, 50.158431], [-120.677386, 50.158796], [-120.67726, 50.159518], [-120.670306, 50.157128], [-120.650358, 50.156871], [-120.650687, 50.131462], [-120.635867, 50.131436], [-120.603435, 50.131952], [-120.583868, 50.132097], [-120.578477, 50.132009], [-120.57847, 50.11464], [-120.578666, 50.099651], [-120.578809, 50.091996], [-120.578862, 50.091975], [-120.579363, 50.076877], [-120.579419, 50.057306], [-120.579525, 50.057292], [-120.579319, 50.021983], [-120.578566, 50.021974], [-120.57732, 50.021845], [-120.577189, 50.017195], [-120.577152, 49.999814], [-120.577368, 49.981069], [-120.577592, 49.980052], [-120.578034, 49.975572], [-120.57823, 49.975418], [-120.578224, 49.974891], [-120.566926, 49.974855], [-120.566734, 49.970008], [-120.56632, 49.963835], [-120.560742, 49.963508], [-120.559997, 49.962595], [-120.561245, 49.945952], [-120.555541, 49.946135], [-120.555686, 49.943162], [-120.554379, 49.916215], [-120.559821, 49.916427], [-120.559995, 49.914293], [-120.561826, 49.91106], [-120.56191, 49.904787], [-120.562772, 49.894658], [-120.568183, 49.840973], [-120.570422, 49.815499], [-120.57118, 49.796087], [-120.571734, 49.772868], [-120.53062, 49.7725], [-120.505677, 49.771976], [-120.50036, 49.77176], [-120.485716, 49.772232], [-120.445349, 49.81061], [-120.432923, 49.814586], [-120.423879, 49.817766], [-120.421748, 49.819452], [-120.419641, 49.822642], [-120.419639, 49.824315], [-120.419208, 49.826695], [-120.41653, 49.830207], [-120.413819, 49.832393], [-120.411158, 49.83504], [-120.407498, 49.837236], [-120.400418, 49.837307], [-120.396792, 49.83787], [-120.393709, 49.842224], [-120.391406, 49.846143], [-120.389274, 49.84891], [-120.388643, 49.849112], [-120.390467, 49.853508], [-120.386648, 49.858556], [-120.386797, 49.866029], [-120.390152, 49.873891], [-120.374037, 49.883539], [-120.374313, 49.88529], [-120.373858, 49.886879], [-120.371406, 49.888045], [-120.366714, 49.88911], [-120.363767, 49.891537], [-120.36337, 49.893107], [-120.364183, 49.896226], [-120.364316, 49.901276], [-120.363351, 49.903185], [-120.362039, 49.903921], [-120.35446, 49.904629], [-120.347618, 49.905824], [-120.343398, 49.907546], [-120.340468, 49.909205], [-120.337091, 49.910763], [-120.333644, 49.911724], [-120.330065, 49.912012], [-120.328789, 49.911307], [-120.320414, 49.905242], [-120.307843, 49.899964], [-120.303645, 49.898547], [-120.296993, 49.896887], [-120.294506, 49.896429], [-120.283528, 49.892048], [-120.268433, 49.887945], [-120.262766, 49.889031], [-120.258296, 49.894491], [-120.247191, 49.896586], [-120.238383, 49.89573], [-120.228717, 49.895923], [-120.224815, 49.892637], [-120.214136, 49.886237], [-120.212827, 49.881788], [-120.213001, 49.879015], [-120.21485, 49.875913], [-120.214829, 49.87468], [-120.214164, 49.871165], [-120.213394, 49.860529], [-120.210253, 49.859306], [-120.20662, 49.858711], [-120.203877, 49.859412], [-120.198192, 49.860446], [-120.19464, 49.860159], [-120.187295, 49.858563], [-120.184933, 49.85729], [-120.181074, 49.856193], [-120.176244, 49.856678], [-120.17391, 49.857633], [-120.17229, 49.85946], [-120.170683, 49.861711], [-120.168918, 49.863441], [-120.16679, 49.864475], [-120.164348, 49.865082], [-120.161141, 49.865258], [-120.157006, 49.863197], [-120.154713, 49.860512], [-120.151841, 49.857525], [-120.149353, 49.855762], [-120.146816, 49.85473], [-120.143493, 49.85413], [-120.136135, 49.850575], [-120.134019, 49.848222], [-120.130178, 49.845828], [-120.128177, 49.845917], [-120.125159, 49.847931], [-120.123259, 49.84946], [-120.11998, 49.844843], [-120.118388, 49.844094], [-120.111979, 49.843634], [-120.107313, 49.843828], [-120.098956, 49.843509], [-120.097517, 49.84424], [-120.094582, 49.844528], [-120.090063, 49.842645], [-120.082684, 49.838839], [-120.081622, 49.836366], [-120.07953, 49.834559], [-120.073263, 49.835907], [-120.068328, 49.839751], [-120.06677, 49.842938], [-120.06418, 49.847678], [-120.06209, 49.849507], [-120.059993, 49.850816], [-120.058593, 49.851958], [-120.056937, 49.853465], [-120.054804, 49.855704], [-120.053265, 49.86053], [-120.052243, 49.864786], [-120.056815, 49.868315], [-120.055827, 49.870417], [-120.053235, 49.872993], [-120.048301, 49.875124], [-120.043797, 49.87614], [-120.041018, 49.877461], [-120.038631, 49.879976], [-120.035732, 49.88248], [-120.034062, 49.884942], [-120.036315, 49.887847], [-120.036186, 49.890661], [-120.033802, 49.892847], [-120.027647, 49.894683], [-120.027808, 49.899531], [-120.026847, 49.9039], [-120.029104, 49.910251], [-120.029533, 49.911888], [-120.022094, 49.913893], [-120.017854, 49.916619], [-120.012884, 49.920267], [-120.009123, 49.92073], [-120.003494, 49.921284], [-120.000916, 49.923263], [-119.997183, 49.928109], [-119.991971, 49.929255], [-119.977493, 49.931405], [-119.967546, 49.926534], [-119.958044, 49.920869], [-119.950945, 49.920238], [-119.943476, 49.918401], [-119.947154, 49.923064], [-119.943864, 49.929029], [-119.938759, 49.933566], [-119.935773, 49.936463], [-119.931534, 49.936599], [-119.927393, 49.936864], [-119.924843, 49.938955], [-119.922105, 49.943572], [-119.917486, 49.948759], [-119.915561, 49.950659], [-119.904786, 49.954415], [-119.900388, 49.956075], [-119.894504, 49.958844], [-119.893489, 49.961291], [-119.893091, 49.96388], [-119.895644, 49.964913], [-119.895507, 49.965787], [-119.887996, 49.966505], [-119.882793, 49.967443], [-119.876542, 49.9659], [-119.866111, 49.968443], [-119.862052, 49.969195], [-119.858658, 49.97156], [-119.855363, 49.97406], [-119.84567, 49.976192], [-119.842182, 49.978386], [-119.840662, 49.980482], [-119.836963, 49.979941], [-119.832292, 49.980515], [-119.828275, 49.98303], [-119.828845, 49.984497], [-119.836366, 49.988773], [-119.836827, 49.990438], [-119.834958, 49.990667], [-119.830618, 49.990647], [-119.828337, 49.993792], [-119.827694, 49.997427], [-119.824767, 49.998302], [-119.820685, 49.999686], [-119.819675, 49.999942], [-119.820059, 49.999941], [-119.818557, 50.000601], [-119.816597, 50.00259], [-119.813676, 50.005379], [-119.800545, 50.017239], [-119.800738, 50.01858], [-119.801081, 50.01867], [-119.803362, 50.021769], [-119.803878, 50.024907], [-119.807057, 50.026086], [-119.810433, 50.027535], [-119.811414, 50.029215], [-119.810114, 50.030925], [-119.806143, 50.032125], [-119.803234, 50.035475], [-119.796606, 50.038628], [-119.789939, 50.039981], [-119.78433, 50.040684], [-119.778905, 50.04199], [-119.773099, 50.042422], [-119.769114, 50.04315], [-119.764929, 50.045057], [-119.761947, 50.047606], [-119.761068, 50.052324], [-119.760232, 50.055709], [-119.757648, 50.05883], [-119.758505, 50.059889], [-119.762789, 50.060907], [-119.766882, 50.063622], [-119.766386, 50.066426], [-119.762152, 50.069708], [-119.761526, 50.073029], [-119.767052, 50.079596], [-119.764636, 50.0851], [-119.759047, 50.086947], [-119.755017, 50.088819], [-119.750548, 50.08868], [-119.747177, 50.089694], [-119.741728, 50.093145], [-119.744876, 50.094666], [-119.746344, 50.096693], [-119.74345, 50.098717], [-119.741791, 50.101027], [-119.743035, 50.103452], [-119.742008, 50.105573], [-119.741384, 50.110372], [-119.741137, 50.116045], [-119.742759, 50.119345], [-119.748638, 50.124985], [-119.750784, 50.123016], [-119.754361, 50.121605], [-119.759538, 50.121689], [-119.765069, 50.123315], [-119.769557, 50.122453], [-119.772429, 50.120429], [-119.777213, 50.119971], [-119.780043, 50.124224], [-119.781738, 50.128326], [-119.780655, 50.131782], [-119.777057, 50.133194], [-119.779509, 50.136574], [-119.780279, 50.14046], [-119.779661, 50.147731], [-119.786165, 50.148903], [-119.792372, 50.14967], [-119.798606, 50.149768], [-119.802251, 50.152297], [-119.802669, 50.154975], [-119.804384, 50.159733], [-119.803534, 50.160646], [-119.808591, 50.167678], [-119.811101, 50.172022], [-119.811337, 50.174751], [-119.81313, 50.176851], [-119.817152, 50.177783], [-119.817571, 50.180462], [-119.821123, 50.18005], [-119.827894, 50.179823], [-119.831891, 50.181422], [-119.832843, 50.183775], [-119.829327, 50.185993], [-119.819671, 50.188251], [-119.814815, 50.192853], [-119.808053, 50.195555], [-119.805248, 50.203664], [-119.796066, 50.20425], [-119.793759, 50.205486], [-119.780488, 50.205774], [-119.765787, 50.203336], [-119.768173, 50.216537], [-119.767427, 50.219616], [-119.766045, 50.226186], [-119.764582, 50.228187], [-119.761722, 50.230948], [-119.761811, 50.232819], [-119.762428, 50.234501], [-119.762951, 50.236663], [-119.762812, 50.238151], [-119.757513, 50.242276], [-119.755532, 50.244925], [-119.753772, 50.248919], [-119.753163, 50.249708], [-119.752803, 50.250691], [-119.752585, 50.251866], [-119.752907, 50.253551], [-119.75294, 50.255827], [-119.752592, 50.258084], [-119.751861, 50.259548], [-119.751003, 50.260211], [-119.749303, 50.260928], [-119.74774, 50.261267], [-119.744289, 50.261709], [-119.741914, 50.261925], [-119.738503, 50.261852], [-119.73246, 50.261067], [-119.728175, 50.260354], [-119.724945, 50.259958], [-119.72203, 50.260069], [-119.716482, 50.260541], [-119.71343, 50.260391], [-119.71093, 50.260076], [-119.707963, 50.259398], [-119.705685, 50.258815], [-119.702591, 50.258678], [-119.700086, 50.257995], [-119.698545, 50.257791], [-119.697428, 50.257961], [-119.694084, 50.258905], [-119.692501, 50.259216], [-119.690722, 50.259184], [-119.688678, 50.258998], [-119.68775, 50.259144], [-119.687068, 50.259484], [-119.686181, 50.26039], [-119.684571, 50.261581], [-119.682321, 50.262395], [-119.681694, 50.263021], [-119.681809, 50.264364], [-119.682605, 50.266477], [-119.684042, 50.269237], [-119.685244, 50.270876], [-119.687455, 50.273337], [-119.690487, 50.276191], [-119.693005, 50.278359], [-119.694767, 50.280149], [-119.695799, 50.281386], [-119.696159, 50.282069], [-119.69657, 50.282371], [-119.698075, 50.285053], [-119.697002, 50.287214], [-119.693356, 50.289594], [-119.690395, 50.290797], [-119.689355, 50.292236], [-119.688523, 50.294081], [-119.687723, 50.296117], [-119.686443, 50.297996], [-119.682629, 50.30279], [-119.681853, 50.304053], [-119.68196, 50.305087], [-119.682678, 50.306171], [-119.683707, 50.306962], [-119.685435, 50.307642], [-119.688104, 50.307904], [-119.69035, 50.307793], [-119.693487, 50.307343], [-119.695533, 50.306957], [-119.696435, 50.306918], [-119.697178, 50.307161], [-119.697537, 50.30752], [-119.697927, 50.308069], [-119.69813, 50.308575], [-119.698489, 50.308933], [-119.701757, 50.309633], [-119.703112, 50.310225], [-119.704045, 50.311245], [-119.704829, 50.312276], [-119.705996, 50.313259], [-119.708002, 50.314256], [-119.710772, 50.315089], [-119.714186, 50.315594], [-119.718941, 50.316093], [-119.720061, 50.316356], [-119.720545, 50.316744], [-119.72054, 50.317178], [-119.719984, 50.317576], [-119.717075, 50.318804], [-119.712501, 50.32054], [-119.707644, 50.322143], [-119.696885, 50.324787], [-119.694235, 50.325503], [-119.691772, 50.32633], [-119.687066, 50.328721], [-119.68443, 50.329724], [-119.682055, 50.330201], [-119.678276, 50.330803], [-119.675094, 50.331151], [-119.669368, 50.332794], [-119.666565, 50.333092], [-119.666151, 50.333187], [-119.671552, 50.338352], [-119.681195, 50.34488], [-119.68452, 50.34863], [-119.671254, 50.351609], [-119.664228, 50.353404], [-119.663474, 50.356243], [-119.661874, 50.358413], [-119.660181, 50.35994], [-119.657671, 50.360967], [-119.655431, 50.361577], [-119.65348, 50.361926], [-119.648966, 50.362339], [-119.647314, 50.362804], [-119.646436, 50.363448], [-119.646286, 50.364205], [-119.646604, 50.365156], [-119.647988, 50.366667], [-119.648683, 50.3683], [-119.648501, 50.369469], [-119.647992, 50.370279], [-119.646539, 50.371039], [-119.644423, 50.371644], [-119.640573, 50.372491], [-119.63737, 50.372983], [-119.6358, 50.373405], [-119.63461, 50.374169], [-119.633762, 50.375492], [-119.63349, 50.376274], [-119.634022, 50.37727], [-119.634848, 50.378137], [-119.637879, 50.380696], [-119.639324, 50.38179], [-119.640196, 50.382808], [-119.640827, 50.383939], [-119.641756, 50.386012], [-119.642695, 50.387299], [-119.643805, 50.388288], [-119.645339, 50.389149], [-119.650275, 50.391165], [-119.652046, 50.392083], [-119.652801, 50.392851], [-119.653076, 50.393761], [-119.652909, 50.394596], [-119.652209, 50.39559], [-119.644494, 50.402106], [-119.6514, 50.402046], [-119.67417, 50.402016], [-119.674427, 50.387362], [-119.715787, 50.387359], [-119.715861, 50.380279], [-119.720354, 50.380178], [-119.720429, 50.372658], [-119.750814, 50.372727], [-119.751403, 50.365556], [-119.762647, 50.365588], [-119.762611, 50.372951], [-119.788735, 50.372105], [-119.788963, 50.366563], [-119.789173, 50.366477], [-119.788972, 50.366384], [-119.789358, 50.357865], [-119.83565, 50.357975], [-119.871795, 50.357962], [-119.908312, 50.358733], [-119.914647, 50.358773], [-119.932611, 50.35875], [-119.946841, 50.35886], [-119.961044, 50.358719], [-119.985797, 50.358666], [-120.015115, 50.358384], [-120.087295, 50.358039], [-120.091829, 50.357835], [-120.092152, 50.364076], [-120.092066, 50.36408], [-120.090504, 50.366518], [-120.090628, 50.367306], [-120.090621, 50.371107], [-120.132113, 50.371074], [-120.224955, 50.371404], [-120.225751, 50.385838], [-120.294254, 50.385876], [-120.313324, 50.385965], [-120.317553, 50.385735], [-120.317717, 50.391946], [-120.328001, 50.392075], [-120.334785, 50.392012], [-120.335085, 50.385952], [-120.340921, 50.385859], [-120.41794, 50.385634], [-120.422458, 50.385511], [-120.422747, 50.385601], [-120.423305, 50.385504], [-120.423873, 50.385903], [-120.431529, 50.385743], [-120.431799, 50.400157], [-120.524329, 50.401347], [-120.566266, 50.401484], [-120.567107, 50.415903], [-120.631621, 50.415748], [-120.632103, 50.420136], [-120.633081, 50.424131], [-120.634274, 50.43033], [-120.645779, 50.430494], [-120.67354, 50.430725], [-120.728496, 50.430991], [-120.728797, 50.445562], [-120.773042, 50.445549], [-120.773135, 50.449596], [-120.797485, 50.449902]], [[-120.675011, 50.192598], [-120.674951, 50.193647], [-120.663223, 50.193773], [-120.662977, 50.171165], [-120.674146, 50.171123], [-120.673887, 50.172048], [-120.6744, 50.177885], [-120.675011, 50.192598]], [[-120.463353, 50.237271], [-120.462616, 50.237471], [-120.463681, 50.236959], [-120.446991, 50.23689], [-120.447267, 50.214586], [-120.458646, 50.214376], [-120.459136, 50.206979], [-120.463232, 50.206864], [-120.45737, 50.19836], [-120.452731, 50.192484], [-120.426075, 50.193166], [-120.424383, 50.192727], [-120.424722, 50.190442], [-120.424685, 50.185324], [-120.476492, 50.186236], [-120.480072, 50.186475], [-120.479231, 50.188079], [-120.478893, 50.188639], [-120.478428, 50.189213], [-120.477494, 50.189903], [-120.475424, 50.19065], [-120.474285, 50.191246], [-120.473767, 50.191775], [-120.473638, 50.192105], [-120.473636, 50.192671], [-120.473719, 50.192961], [-120.474045, 50.193427], [-120.475312, 50.19465], [-120.475938, 50.19551], [-120.476272, 50.196362], [-120.47622, 50.197638], [-120.476404, 50.19812], [-120.476906, 50.198706], [-120.477427, 50.199176], [-120.477901, 50.199484], [-120.479111, 50.200481], [-120.480003, 50.201337], [-120.480348, 50.202244], [-120.480414, 50.203109], [-120.480518, 50.203291], [-120.481286, 50.203883], [-120.481296, 50.203947], [-120.481166, 50.203997], [-120.48114, 50.204249], [-120.481877, 50.204607], [-120.482061, 50.204872], [-120.482267, 50.205451], [-120.482545, 50.205773], [-120.482549, 50.205953], [-120.482261, 50.206387], [-120.48228, 50.206549], [-120.482521, 50.20677], [-120.482415, 50.206894], [-120.48212, 50.206915], [-120.482029, 50.2073], [-120.482254, 50.208105], [-120.482715, 50.208681], [-120.483042, 50.209643], [-120.483136, 50.210257], [-120.483355, 50.21278], [-120.483103, 50.213277], [-120.482912, 50.214767], [-120.482973, 50.215748], [-120.482792, 50.215979], [-120.48253, 50.216728], [-120.482127, 50.21717], [-120.482092, 50.217583], [-120.481882, 50.21757], [-120.481819, 50.21719], [-120.481915, 50.216959], [-120.481885, 50.216697], [-120.481359, 50.216065], [-120.48144, 50.215859], [-120.481578, 50.215862], [-120.481852, 50.215751], [-120.481866, 50.215464], [-120.481744, 50.215119], [-120.481625, 50.214991], [-120.481046, 50.214817], [-120.480345, 50.214828], [-120.479917, 50.214937], [-120.478915, 50.215868], [-120.477559, 50.216855], [-120.476786, 50.217701], [-120.476555, 50.218101], [-120.475009, 50.219219], [-120.474853, 50.219521], [-120.474497, 50.21991], [-120.474291, 50.220346], [-120.473891, 50.220742], [-120.473692, 50.221062], [-120.473414, 50.22208], [-120.473491, 50.222991], [-120.473683, 50.223624], [-120.473874, 50.224007], [-120.474381, 50.224486], [-120.474508, 50.224749], [-120.474932, 50.225208], [-120.47513, 50.225716], [-120.475253, 50.227095], [-120.475031, 50.227576], [-120.474537, 50.22788], [-120.474222, 50.228306], [-120.473229, 50.229048], [-120.473135, 50.229226], [-120.473193, 50.229983], [-120.473071, 50.230178], [-120.472295, 50.230522], [-120.472041, 50.230785], [-120.471827, 50.231654], [-120.471532, 50.231953], [-120.471411, 50.232382], [-120.470892, 50.232893], [-120.470755, 50.233393], [-120.47051, 50.233775], [-120.470345, 50.234247], [-120.469954, 50.234464], [-120.469731, 50.234702], [-120.468941, 50.234801], [-120.467664, 50.23535], [-120.467067, 50.23575], [-120.465384, 50.236559], [-120.464154, 50.237009], [-120.463614, 50.237114], [-120.463353, 50.237271]], [[-120.299636, 50.230055], [-120.300284, 50.24332], [-120.293238, 50.243719], [-120.279181, 50.242727], [-120.244579, 50.242738], [-120.244869, 50.213308], [-120.241091, 50.15741], [-120.241498, 50.156006], [-120.241, 50.155407], [-120.241774, 50.155298], [-120.243051, 50.155238], [-120.244511, 50.15467], [-120.244822, 50.154623], [-120.245817, 50.15462], [-120.246624, 50.15444], [-120.247254, 50.154204], [-120.2478, 50.153956], [-120.248992, 50.153201], [-120.249541, 50.152666], [-120.250219, 50.151566], [-120.250742, 50.150994], [-120.25133, 50.150504], [-120.251926, 50.150149], [-120.252576, 50.149535], [-120.252874, 50.149461], [-120.25328, 50.149228], [-120.254933, 50.148701], [-120.25864, 50.147808], [-120.260075, 50.147167], [-120.261214, 50.147319], [-120.262095, 50.147124], [-120.262429, 50.146908], [-120.263777, 50.146318], [-120.264991, 50.145673], [-120.265477, 50.145505], [-120.26661, 50.145253], [-120.267414, 50.145145], [-120.268365, 50.145159], [-120.269676, 50.145261], [-120.270726, 50.145241], [-120.271166, 50.145395], [-120.271737, 50.145462], [-120.272273, 50.145385], [-120.272927, 50.145212], [-120.275146, 50.145327], [-120.27564, 50.14523], [-120.276208, 50.144866], [-120.276924, 50.144568], [-120.278209, 50.14387], [-120.280405, 50.14241], [-120.281105, 50.141715], [-120.281542, 50.141133], [-120.281544, 50.140368], [-120.281684, 50.14011], [-120.282385, 50.139829], [-120.283051, 50.13971], [-120.283172, 50.13955], [-120.282888, 50.139382], [-120.282315, 50.139378], [-120.281828, 50.139546], [-120.281478, 50.139808], [-120.281235, 50.139902], [-120.280875, 50.139802], [-120.280592, 50.139878], [-120.279974, 50.139908], [-120.279277, 50.140126], [-120.279017, 50.140272], [-120.278527, 50.140728], [-120.277673, 50.140979], [-120.277257, 50.141167], [-120.276434, 50.14138], [-120.275962, 50.141577], [-120.275822, 50.141789], [-120.275869, 50.142195], [-120.275805, 50.142356], [-120.275357, 50.142355], [-120.275077, 50.142581], [-120.274742, 50.142574], [-120.273655, 50.142234], [-120.273267, 50.141927], [-120.272619, 50.141255], [-120.272451, 50.141242], [-120.27197, 50.141339], [-120.271569, 50.141033], [-120.271562, 50.140906], [-120.27183, 50.140626], [-120.271761, 50.140354], [-120.271357, 50.139822], [-120.270809, 50.139872], [-120.270673, 50.139788], [-120.270776, 50.138981], [-120.270677, 50.137989], [-120.270392, 50.137361], [-120.269903, 50.136856], [-120.269553, 50.136839], [-120.268926, 50.137022], [-120.26789, 50.137042], [-120.267678, 50.137091], [-120.26744, 50.137337], [-120.266973, 50.137444], [-120.26608, 50.137404], [-120.265458, 50.137265], [-120.264591, 50.136983], [-120.263567, 50.137004], [-120.263287, 50.137257], [-120.263043, 50.137629], [-120.262794, 50.137813], [-120.26271, 50.137811], [-120.260976, 50.13607], [-120.260037, 50.135607], [-120.259747, 50.135528], [-120.259245, 50.135526], [-120.258621, 50.135664], [-120.257349, 50.136334], [-120.256937, 50.136468], [-120.255309, 50.138005], [-120.254923, 50.138166], [-120.254013, 50.13838], [-120.253585, 50.138539], [-120.25289, 50.138964], [-120.252505, 50.139305], [-120.251191, 50.139284], [-120.250807, 50.139401], [-120.250358, 50.139642], [-120.249717, 50.140094], [-120.24961, 50.140245], [-120.249565, 50.140774], [-120.249226, 50.14109], [-120.248953, 50.14121], [-120.248587, 50.14122], [-120.247404, 50.141118], [-120.247263, 50.141376], [-120.246857, 50.14161], [-120.246793, 50.142004], [-120.246611, 50.142242], [-120.246428, 50.142283], [-120.246167, 50.142205], [-120.245871, 50.142216], [-120.245391, 50.142528], [-120.245082, 50.142817], [-120.244698, 50.14289], [-120.243453, 50.142906], [-120.24169, 50.142621], [-120.24105, 50.14283], [-120.240429, 50.143391], [-120.239344, 50.143743], [-120.236901, 50.143658], [-120.236855, 50.14371], [-120.237051, 50.143941], [-120.236957, 50.144136], [-120.236463, 50.144196], [-120.236078, 50.144574], [-120.235433, 50.14482], [-120.234822, 50.144977], [-120.23419, 50.145267], [-120.233835, 50.14534], [-120.232454, 50.145253], [-120.232192, 50.145183], [-120.231592, 50.14489], [-120.231303, 50.144847], [-120.230768, 50.144403], [-120.230374, 50.143943], [-120.230211, 50.143867], [-120.229973, 50.143871], [-120.229175, 50.144095], [-120.228996, 50.144064], [-120.228688, 50.143813], [-120.22851, 50.143763], [-120.227658, 50.143977], [-120.226741, 50.144081], [-120.226491, 50.144273], [-120.226415, 50.144622], [-120.226037, 50.144874], [-120.225782, 50.144931], [-120.225109, 50.144942], [-120.224678, 50.145129], [-120.224263, 50.145533], [-120.223769, 50.145593], [-120.223527, 50.145696], [-120.223139, 50.146082], [-120.222909, 50.146167], [-120.222831, 50.14656], [-120.222503, 50.146679], [-120.221707, 50.147315], [-120.224096, 50.130454], [-120.224202, 50.098605], [-120.254291, 50.098496], [-120.310229, 50.099226], [-120.310168, 50.107291], [-120.310407, 50.127796], [-120.321927, 50.127552], [-120.321855, 50.13638], [-120.336474, 50.136422], [-120.336576, 50.149288], [-120.33756, 50.157045], [-120.341231, 50.189667], [-120.331838, 50.189456], [-120.333673, 50.211048], [-120.332939, 50.21103], [-120.305623, 50.211818], [-120.299636, 50.230055]], [[-120.511518, 50.162078], [-120.510481, 50.161456], [-120.510941, 50.161252], [-120.515108, 50.158863], [-120.517536, 50.157916], [-120.520661, 50.159664], [-120.520619, 50.160455], [-120.519997, 50.161117], [-120.519381, 50.161365], [-120.518482, 50.161966], [-120.517332, 50.162544], [-120.515716, 50.163211], [-120.515388, 50.163312], [-120.515066, 50.163323], [-120.514891, 50.163454], [-120.514705, 50.163783], [-120.511518, 50.162078]]], [[[-120.848964, 50.148692], [-120.848307, 50.149742], [-120.848236, 50.152848], [-120.848571, 50.156565], [-120.860038, 50.156538], [-120.861276, 50.155834], [-120.86168, 50.155448], [-120.861845, 50.15486], [-120.861897, 50.150835], [-120.861813, 50.149568], [-120.861842, 50.147866], [-120.861303, 50.141989], [-120.851999, 50.142084], [-120.848964, 50.148692]]]]}, "properties": {"name": "Thompson-Nicola M (Beautiful Nicola Valley - North)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola M (Beautiful Nicola Valley - North)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933008", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.140317, 50.227216], [-121.139554, 50.198178], [-121.145586, 50.199777], [-121.158584, 50.197284], [-121.16889, 50.193506], [-121.180254, 50.192494], [-121.191004, 50.189697], [-121.2011, 50.189983], [-121.209604, 50.191564], [-121.220305, 50.188991], [-121.219431, 50.179356], [-121.22158, 50.178366], [-121.228379, 50.174413], [-121.232552, 50.171464], [-121.23629, 50.164842], [-121.239316, 50.158491], [-121.235443, 50.148276], [-121.24818, 50.145377], [-121.267054, 50.149801], [-121.279116, 50.156513], [-121.286341, 50.156002], [-121.297796, 50.152333], [-121.297272, 50.151499], [-121.294541, 50.151218], [-121.293248, 50.150631], [-121.292248, 50.149024], [-121.291926, 50.145814], [-121.292538, 50.143036], [-121.293554, 50.1414], [-121.293417, 50.139672], [-121.296696, 50.136617], [-121.299156, 50.133902], [-121.300889, 50.133038], [-121.303486, 50.132359], [-121.309689, 50.13091], [-121.317721, 50.12841], [-121.319886, 50.127639], [-121.321329, 50.126867], [-121.321764, 50.126034], [-121.321432, 50.124984], [-121.319809, 50.123039], [-121.319094, 50.121804], [-121.318954, 50.120847], [-121.319006, 50.119828], [-121.31834, 50.118346], [-121.318535, 50.117359], [-121.319742, 50.115507], [-121.319939, 50.114211], [-121.319079, 50.113254], [-121.317835, 50.112728], [-121.316592, 50.112048], [-121.313919, 50.109207], [-121.311437, 50.106304], [-121.308043, 50.104542], [-121.307422, 50.104048], [-121.307568, 50.103307], [-121.311706, 50.100438], [-121.315219, 50.097692], [-121.315272, 50.096519], [-121.314749, 50.095377], [-121.31562, 50.093247], [-121.315577, 50.092106], [-121.313622, 50.089574], [-121.313483, 50.088462], [-121.316563, 50.085624], [-121.316998, 50.084636], [-121.316982, 50.082415], [-121.315998, 50.079515], [-121.314344, 50.076676], [-121.311736, 50.073992], [-121.310242, 50.072634], [-121.309089, 50.070937], [-121.308472, 50.068685], [-121.308745, 50.067297], [-121.30988, 50.066095], [-121.312426, 50.064369], [-121.315081, 50.061995], [-121.316226, 50.06033], [-121.316223, 50.058417], [-121.315739, 50.056659], [-121.315365, 50.054253], [-121.315328, 50.052466], [-121.316535, 50.050132], [-121.319227, 50.048516], [-121.322754, 50.047677], [-121.324425, 50.04624], [-121.323217, 50.043785], [-121.325259, 50.041032], [-121.328043, 50.039535], [-121.328321, 50.037799], [-121.325163, 50.033128], [-121.321263, 50.032286], [-121.319221, 50.030848], [-121.318107, 50.028214], [-121.31017, 50.024855], [-121.303674, 50.020659], [-121.303211, 50.018863], [-121.302005, 50.017006], [-121.290501, 50.011129], [-121.287906, 50.007774], [-121.288279, 50.004662], [-121.289949, 50.003226], [-121.29236, 50.002149], [-121.292557, 49.99999], [-121.28384, 49.995312], [-121.281154, 49.991838], [-121.277815, 49.991115], [-121.27332, 49.988596], [-121.273043, 49.98674], [-121.277958, 49.984408], [-121.277681, 49.982553], [-121.275087, 49.980993], [-121.268881, 49.97566], [-121.268883, 49.973864], [-121.271478, 49.972728], [-121.271391, 49.968419], [-121.267782, 49.963747], [-121.269173, 49.962251], [-121.272785, 49.961833], [-121.280842, 49.961176], [-121.283622, 49.95968], [-121.28455, 49.957586], [-121.282423, 49.953635], [-121.282702, 49.951899], [-121.284556, 49.949507], [-121.287985, 49.947054], [-121.288356, 49.94514], [-121.286554, 49.94041], [-121.286649, 49.93664], [-121.287209, 49.931076], [-121.286564, 49.926946], [-121.287491, 49.925151], [-121.289532, 49.918211], [-121.292217, 49.916297], [-121.293884, 49.913665], [-121.299898, 49.911273], [-121.312844, 49.912763], [-121.315805, 49.911805], [-121.31636, 49.909232], [-121.315434, 49.906838], [-121.319551, 49.902591], [-121.323805, 49.900915], [-121.324268, 49.899419], [-121.320144, 49.897704], [-121.318205, 49.895195], [-121.316975, 49.894368], [-121.316691, 49.893389], [-121.317873, 49.891401], [-121.320284, 49.888862], [-121.321371, 49.886752], [-121.321088, 49.885314], [-121.320047, 49.884273], [-121.317824, 49.882773], [-121.315128, 49.882647], [-121.311911, 49.882613], [-121.305238, 49.884223], [-121.301264, 49.884126], [-121.299751, 49.883543], [-121.297719, 49.881828], [-121.296064, 49.880144], [-121.294031, 49.879194], [-121.292282, 49.878152], [-121.291451, 49.876791], [-121.291307, 49.876789], [-121.289962, 49.874066], [-121.286043, 49.872259], [-121.284696, 49.8719], [-121.281663, 49.871539], [-121.278691, 49.871851], [-121.272842, 49.870812], [-121.26552, 49.87074], [-121.263252, 49.871369], [-121.262391, 49.872436], [-121.262691, 49.874116], [-121.260449, 49.876267], [-121.258057, 49.876836], [-121.249492, 49.877335], [-121.243421, 49.879083], [-121.240447, 49.879592], [-121.238484, 49.880221], [-121.237223, 49.881662], [-121.235396, 49.882667], [-121.232486, 49.882166], [-121.230647, 49.882261], [-121.228832, 49.884175], [-121.227593, 49.887731], [-121.226234, 49.890437], [-121.22279, 49.893415], [-121.220165, 49.894478], [-121.216732, 49.894589], [-121.213392, 49.894225], [-121.208181, 49.894114], [-121.206192, 49.893317], [-121.204143, 49.891847], [-121.200104, 49.889878], [-121.197936, 49.887556], [-121.196115, 49.886779], [-121.18638, 49.884063], [-121.181511, 49.8831], [-121.173514, 49.882842], [-121.171369, 49.883034], [-121.169689, 49.884927], [-121.167907, 49.885793], [-121.165058, 49.885666], [-121.163371, 49.885958], [-121.160084, 49.887452], [-121.158734, 49.887686], [-121.157632, 49.887445], [-121.157145, 49.886711], [-121.157517, 49.885602], [-121.159389, 49.884357], [-121.161443, 49.883548], [-121.164269, 49.881254], [-121.166423, 49.878286], [-121.170045, 49.875538], [-121.171599, 49.873381], [-121.172029, 49.871163], [-121.173357, 49.868156], [-121.173758, 49.86611], [-121.172849, 49.864522], [-121.172633, 49.862042], [-121.169785, 49.861014], [-121.166526, 49.860244], [-121.160501, 49.859888], [-121.159072, 49.859851], [-121.152937, 49.860213], [-121.147058, 49.859827], [-121.143705, 49.860239], [-121.14105, 49.861562], [-121.131117, 49.862339], [-121.128461, 49.863452], [-121.124383, 49.86625], [-121.119061, 49.867427], [-121.112081, 49.867479], [-121.110419, 49.866975], [-121.107793, 49.867088], [-121.104155, 49.870253], [-121.100042, 49.872591], [-121.098052, 49.873327], [-121.09659, 49.871413], [-121.094949, 49.865723], [-121.093223, 49.862857], [-121.088868, 49.859484], [-121.087077, 49.856534], [-121.086631, 49.854708], [-121.089502, 49.854712], [-121.091974, 49.856493], [-121.098877, 49.853645], [-121.105587, 49.850754], [-121.114083, 49.847907], [-121.117343, 49.84613], [-121.116639, 49.845008], [-121.113181, 49.842178], [-121.110492, 49.839517], [-121.103254, 49.835098], [-121.103416, 49.833233], [-121.10936, 49.829346], [-121.118999, 49.826335], [-121.124357, 49.825637], [-121.136338, 49.826103], [-121.145774, 49.825739], [-121.147911, 49.82541], [-121.151871, 49.822472], [-121.155189, 49.821398], [-121.163913, 49.82281], [-121.168311, 49.82273], [-121.176793, 49.821534], [-121.180233, 49.821866], [-121.183807, 49.819051], [-121.188273, 49.813045], [-121.187469, 49.809727], [-121.184842, 49.807979], [-121.183368, 49.805447], [-121.187767, 49.798529], [-121.190701, 49.797371], [-121.202369, 49.790583], [-121.203962, 49.788098], [-121.206445, 49.783665], [-121.208941, 49.781314], [-121.211832, 49.779265], [-121.21178, 49.777331], [-121.210428, 49.774121], [-121.211274, 49.771695], [-121.210774, 49.770007], [-121.203335, 49.765729], [-121.202578, 49.764329], [-121.200706, 49.757744], [-121.198678, 49.755521], [-121.197152, 49.754781], [-121.197116, 49.75079], [-121.195321, 49.747208], [-121.197251, 49.745156], [-121.198093, 49.743348], [-121.19689, 49.74199], [-121.1932, 49.740922], [-121.193018, 49.739441], [-121.193679, 49.736151], [-121.192158, 49.734793], [-121.191407, 49.73257], [-121.188615, 49.730595], [-121.185709, 49.726602], [-121.181923, 49.725823], [-121.178049, 49.723683], [-121.175881, 49.724391], [-121.174163, 49.724022], [-121.172646, 49.722252], [-121.170545, 49.722007], [-121.167614, 49.722343], [-121.165214, 49.719214], [-121.16204, 49.717568], [-121.157581, 49.717782], [-121.155363, 49.716135], [-121.155826, 49.714038], [-121.154443, 49.711403], [-121.154773, 49.709964], [-121.15529, 49.709184], [-121.15339, 49.707537], [-121.151798, 49.707746], [-121.150088, 49.706346], [-121.148799, 49.704041], [-121.146777, 49.701817], [-121.144408, 49.700156], [-121.144061, 49.700154], [-121.142157, 49.698102], [-121.140682, 49.697033], [-121.138832, 49.696771], [-121.137441, 49.695204], [-121.135725, 49.694512], [-121.134382, 49.693615], [-121.134899, 49.68882], [-121.133503, 49.687854], [-121.131499, 49.686956], [-121.129243, 49.684423], [-121.128183, 49.682856], [-121.125688, 49.680444], [-121.122553, 49.678666], [-121.119144, 49.678348], [-121.118752, 49.677745], [-121.120694, 49.67708], [-121.12234, 49.676895], [-121.125907, 49.675236], [-121.129928, 49.673045], [-121.131165, 49.670933], [-121.131566, 49.668854], [-121.132293, 49.667463], [-121.133332, 49.66683], [-121.13623, 49.665856], [-121.137854, 49.664863], [-121.139712, 49.664781], [-121.141041, 49.664354], [-121.142778, 49.662553], [-121.144268, 49.661817], [-121.146747, 49.661712], [-121.148503, 49.661122], [-121.156049, 49.65488], [-121.159926, 49.654063], [-121.161826, 49.653517], [-121.166322, 49.650999], [-121.169988, 49.64982], [-121.170794, 49.64836], [-121.16762, 49.644624], [-121.166567, 49.643849], [-121.165863, 49.642576], [-121.165712, 49.641424], [-121.168938, 49.636634], [-121.169318, 49.635312], [-121.168796, 49.634365], [-121.162947, 49.62607], [-121.163098, 49.623578], [-121.16169, 49.620859], [-121.160666, 49.619946], [-121.157378, 49.617877], [-121.155837, 49.617152], [-121.15203, 49.618296], [-121.149652, 49.61872], [-121.147881, 49.619249], [-121.141646, 49.619975], [-121.136738, 49.622267], [-121.135152, 49.622521], [-121.128089, 49.620253], [-121.126725, 49.618978], [-121.125243, 49.615984], [-121.125316, 49.613561], [-121.125769, 49.612115], [-121.125609, 49.612113], [-121.125743, 49.61093], [-121.121783, 49.60979], [-121.120044, 49.610351], [-121.111423, 49.615818], [-121.10723, 49.619789], [-121.106812, 49.621267], [-121.105194, 49.622527], [-121.103808, 49.622739], [-121.10107, 49.624696], [-121.099536, 49.625391], [-121.094368, 49.625512], [-121.092213, 49.626475], [-121.089811, 49.627248], [-121.08791, 49.627189], [-121.086261, 49.626512], [-121.08139, 49.62553], [-121.076247, 49.625004], [-121.071946, 49.62518], [-121.069006, 49.626059], [-121.06545, 49.626129], [-121.063295, 49.626957], [-121.061798, 49.628512], [-121.060169, 49.631522], [-121.059132, 49.632057], [-121.055373, 49.631184], [-121.052354, 49.630878], [-121.051882, 49.636899], [-121.018828, 49.636994], [-121.018695, 49.644147], [-121.007556, 49.644426], [-121.007166, 49.656281], [-121.00669, 49.656357], [-121.007163, 49.656807], [-121.007152, 49.658513], [-120.985316, 49.658461], [-120.985078, 49.673266], [-120.962412, 49.673477], [-120.961626, 49.6961], [-120.960554, 49.697825], [-120.956205, 49.707374], [-120.956434, 49.708546], [-120.955118, 49.709324], [-120.954201, 49.711974], [-120.954854, 49.719064], [-120.956757, 49.725923], [-120.960465, 49.734113], [-120.960588, 49.738658], [-120.959595, 49.744114], [-120.954678, 49.746815], [-120.949742, 49.750795], [-120.948457, 49.760578], [-120.919535, 49.76081], [-120.919531, 49.760846], [-120.881536, 49.760602], [-120.834156, 49.760072], [-120.832802, 49.760144], [-120.832366, 49.763768], [-120.798747, 49.763653], [-120.771796, 49.76339], [-120.772344, 49.759956], [-120.761827, 49.75981], [-120.76064, 49.759868], [-120.75989, 49.749725], [-120.755837, 49.749754], [-120.734267, 49.749693], [-120.71278, 49.749557], [-120.704471, 49.749558], [-120.704374, 49.746904], [-120.692955, 49.7473], [-120.693161, 49.749881], [-120.670191, 49.749927], [-120.658251, 49.749692], [-120.652559, 49.749645], [-120.633963, 49.749816], [-120.604338, 49.749579], [-120.603773, 49.77077], [-120.573609, 49.770552], [-120.573416, 49.772878], [-120.571734, 49.772868], [-120.57118, 49.796087], [-120.570422, 49.815499], [-120.568183, 49.840973], [-120.562772, 49.894658], [-120.56191, 49.904787], [-120.561826, 49.91106], [-120.559995, 49.914293], [-120.559821, 49.916427], [-120.554379, 49.916215], [-120.555686, 49.943162], [-120.555541, 49.946135], [-120.561245, 49.945952], [-120.559997, 49.962595], [-120.560742, 49.963508], [-120.56632, 49.963835], [-120.566734, 49.970008], [-120.566926, 49.974855], [-120.578224, 49.974891], [-120.57823, 49.975418], [-120.578034, 49.975572], [-120.577592, 49.980052], [-120.577368, 49.981069], [-120.577152, 49.999814], [-120.577189, 50.017195], [-120.57732, 50.021845], [-120.578566, 50.021974], [-120.579319, 50.021983], [-120.579525, 50.057292], [-120.579419, 50.057306], [-120.579363, 50.076877], [-120.578862, 50.091975], [-120.578809, 50.091996], [-120.578666, 50.099651], [-120.57847, 50.11464], [-120.578477, 50.132009], [-120.583868, 50.132097], [-120.603435, 50.131952], [-120.635867, 50.131436], [-120.650687, 50.131462], [-120.650358, 50.156871], [-120.670306, 50.157128], [-120.67726, 50.159518], [-120.677386, 50.158796], [-120.67715, 50.158431], [-120.677216, 50.158243], [-120.677668, 50.157587], [-120.678996, 50.156741], [-120.679637, 50.15652], [-120.680219, 50.156413], [-120.681489, 50.156686], [-120.681831, 50.156684], [-120.68189, 50.156117], [-120.681986, 50.15606], [-120.682531, 50.155903], [-120.683466, 50.155897], [-120.683685, 50.155799], [-120.683985, 50.155434], [-120.684325, 50.155215], [-120.684977, 50.155272], [-120.685325, 50.155222], [-120.686063, 50.154892], [-120.686234, 50.15468], [-120.68656, 50.154509], [-120.688041, 50.154252], [-120.688295, 50.154062], [-120.688374, 50.153876], [-120.688484, 50.153079], [-120.688785, 50.152944], [-120.689493, 50.152918], [-120.689949, 50.152763], [-120.690754, 50.152274], [-120.691269, 50.152138], [-120.691799, 50.151608], [-120.691868, 50.151236], [-120.691475, 50.150847], [-120.691436, 50.150668], [-120.691569, 50.150534], [-120.692046, 50.150424], [-120.692109, 50.150148], [-120.691975, 50.150063], [-120.69149, 50.149956], [-120.690981, 50.14946], [-120.690846, 50.14908], [-120.690895, 50.148954], [-120.691054, 50.148859], [-120.691226, 50.148791], [-120.691548, 50.148788], [-120.692077, 50.149121], [-120.692463, 50.149219], [-120.69273, 50.149234], [-120.693409, 50.14905], [-120.693887, 50.14931], [-120.694141, 50.149298], [-120.694284, 50.149211], [-120.694197, 50.148714], [-120.694362, 50.148466], [-120.694726, 50.148185], [-120.694763, 50.14797], [-120.694713, 50.147861], [-120.694535, 50.147768], [-120.694028, 50.147865], [-120.693611, 50.147767], [-120.69358, 50.147577], [-120.693797, 50.147411], [-120.694482, 50.147127], [-120.694877, 50.147046], [-120.696175, 50.147143], [-120.696615, 50.147322], [-120.696702, 50.147559], [-120.697028, 50.147762], [-120.697782, 50.147787], [-120.698301, 50.147167], [-120.698352, 50.146691], [-120.698444, 50.146567], [-120.699124, 50.146069], [-120.699079, 50.145861], [-120.69869, 50.145771], [-120.698656, 50.145627], [-120.698847, 50.145415], [-120.699104, 50.145313], [-120.699356, 50.145327], [-120.699824, 50.145515], [-120.70001, 50.14569], [-120.699912, 50.146003], [-120.700074, 50.146123], [-120.700395, 50.146139], [-120.700725, 50.146001], [-120.700804, 50.145481], [-120.701107, 50.145011], [-120.701085, 50.144903], [-120.700564, 50.144666], [-120.700193, 50.1442], [-120.699841, 50.144239], [-120.699555, 50.144421], [-120.699342, 50.144454], [-120.699178, 50.144378], [-120.699047, 50.144196], [-120.699072, 50.143971], [-120.699605, 50.143343], [-120.700353, 50.142917], [-120.700471, 50.142497], [-120.700427, 50.142254], [-120.700225, 50.142087], [-120.699937, 50.141991], [-120.699642, 50.142013], [-120.698821, 50.142464], [-120.698545, 50.142414], [-120.698232, 50.142219], [-120.698212, 50.141732], [-120.698375, 50.141574], [-120.698884, 50.141467], [-120.699567, 50.141517], [-120.699956, 50.141264], [-120.700734, 50.141108], [-120.701315, 50.140678], [-120.702322, 50.140681], [-120.702929, 50.140584], [-120.703334, 50.140601], [-120.703678, 50.140744], [-120.703651, 50.141013], [-120.70339, 50.14117], [-120.703036, 50.141261], [-120.702933, 50.141359], [-120.703041, 50.141748], [-120.703346, 50.142077], [-120.703752, 50.142085], [-120.704043, 50.141893], [-120.704122, 50.141678], [-120.704591, 50.141526], [-120.705095, 50.141546], [-120.705684, 50.141791], [-120.707, 50.141808], [-120.70727, 50.141714], [-120.707412, 50.141402], [-120.707323, 50.141175], [-120.707032, 50.141116], [-120.706317, 50.141137], [-120.705788, 50.141073], [-120.705598, 50.14097], [-120.705588, 50.140601], [-120.706256, 50.140111], [-120.706788, 50.140094], [-120.707076, 50.14019], [-120.707356, 50.140204], [-120.707569, 50.140164], [-120.708026, 50.139956], [-120.708087, 50.139572], [-120.707865, 50.139207], [-120.707658, 50.139149], [-120.70707, 50.139173], [-120.706865, 50.139043], [-120.706917, 50.138855], [-120.707276, 50.138637], [-120.707518, 50.138579], [-120.708035, 50.138572], [-120.708489, 50.138464], [-120.709146, 50.138486], [-120.7094, 50.13842], [-120.709489, 50.138348], [-120.709526, 50.13816], [-120.709369, 50.137905], [-120.708965, 50.137871], [-120.708421, 50.13812], [-120.708181, 50.13816], [-120.708032, 50.138076], [-120.708038, 50.137951], [-120.708358, 50.137679], [-120.709425, 50.137321], [-120.70957, 50.137208], [-120.709563, 50.137064], [-120.709256, 50.136752], [-120.709282, 50.136518], [-120.709521, 50.136208], [-120.709463, 50.135947], [-120.70845, 50.135773], [-120.707842, 50.135887], [-120.707549, 50.135882], [-120.707178, 50.135722], [-120.707066, 50.135423], [-120.707111, 50.135073], [-120.707521, 50.134675], [-120.707964, 50.134523], [-120.70848, 50.134524], [-120.708768, 50.134664], [-120.708897, 50.134883], [-120.70909, 50.134977], [-120.709286, 50.134972], [-120.709787, 50.134748], [-120.710119, 50.134816], [-120.710167, 50.134989], [-120.710061, 50.135148], [-120.709802, 50.135288], [-120.709731, 50.135592], [-120.709879, 50.135739], [-120.710612, 50.135906], [-120.711032, 50.135887], [-120.711351, 50.135669], [-120.711516, 50.134751], [-120.711683, 50.134691], [-120.712121, 50.134793], [-120.712294, 50.13495], [-120.712567, 50.135711], [-120.713041, 50.135756], [-120.713211, 50.135715], [-120.713869, 50.135395], [-120.714023, 50.135128], [-120.714032, 50.134939], [-120.713664, 50.134707], [-120.712912, 50.13463], [-120.712817, 50.134573], [-120.712765, 50.1345], [-120.712861, 50.134224], [-120.713114, 50.133913], [-120.713859, 50.13355], [-120.714281, 50.133208], [-120.714334, 50.132993], [-120.714207, 50.132711], [-120.714245, 50.132496], [-120.714478, 50.13234], [-120.714943, 50.13225], [-120.715258, 50.132093], [-120.71524, 50.131887], [-120.714906, 50.131538], [-120.714913, 50.131098], [-120.715076, 50.130948], [-120.715746, 50.130961], [-120.715975, 50.131128], [-120.716185, 50.131159], [-120.71682, 50.131026], [-120.717308, 50.131091], [-120.717645, 50.131044], [-120.717834, 50.130875], [-120.717814, 50.130723], [-120.717566, 50.130359], [-120.717584, 50.130269], [-120.717796, 50.13021], [-120.718076, 50.130233], [-120.718502, 50.130367], [-120.719502, 50.130549], [-120.719915, 50.130702], [-120.719959, 50.130918], [-120.719482, 50.13126], [-120.719405, 50.13142], [-120.719425, 50.131563], [-120.719629, 50.131721], [-120.720589, 50.131794], [-120.721626, 50.132093], [-120.722113, 50.13213], [-120.722358, 50.131999], [-120.722439, 50.131759], [-120.72216, 50.131132], [-120.721857, 50.131063], [-120.721189, 50.131274], [-120.72098, 50.131244], [-120.720818, 50.131106], [-120.721191, 50.130645], [-120.721198, 50.130492], [-120.721043, 50.130193], [-120.721138, 50.130005], [-120.721474, 50.129985], [-120.72201, 50.130193], [-120.722596, 50.130205], [-120.723134, 50.130108], [-120.723655, 50.129749], [-120.725069, 50.129713], [-120.725308, 50.129673], [-120.725454, 50.129568], [-120.725381, 50.129325], [-120.725052, 50.129192], [-120.723854, 50.129051], [-120.723502, 50.129117], [-120.72314, 50.129082], [-120.723008, 50.128917], [-120.723042, 50.128469], [-120.723338, 50.12816], [-120.723564, 50.128101], [-120.723858, 50.128107], [-120.724121, 50.12801], [-120.733797, 50.127605], [-120.733915, 50.120595], [-120.739578, 50.120676], [-120.739897, 50.09527], [-120.734348, 50.095256], [-120.734389, 50.090877], [-120.734231, 50.083852], [-120.750583, 50.083956], [-120.750587, 50.08447], [-120.751902, 50.085519], [-120.751797, 50.085782], [-120.752367, 50.085712], [-120.763587, 50.085775], [-120.763434, 50.097802], [-120.7634, 50.097945], [-120.763168, 50.098191], [-120.762996, 50.098255], [-120.763201, 50.098567], [-120.763366, 50.099029], [-120.763325, 50.099888], [-120.767108, 50.1], [-120.767098, 50.100068], [-120.767455, 50.099422], [-120.766794, 50.09941], [-120.768333, 50.097047], [-120.768443, 50.097031], [-120.768648, 50.096828], [-120.769002, 50.096083], [-120.76651, 50.095374], [-120.767225, 50.094574], [-120.767779, 50.093678], [-120.770584, 50.094519], [-120.771434, 50.09404], [-120.772425, 50.09315], [-120.77279, 50.093138], [-120.773144, 50.093047], [-120.772955, 50.092599], [-120.772796, 50.091832], [-120.772876, 50.090842], [-120.773139, 50.090535], [-120.775975, 50.091249], [-120.775814, 50.092267], [-120.775518, 50.093238], [-120.775224, 50.093488], [-120.774191, 50.09391], [-120.774039, 50.094158], [-120.774104, 50.094429], [-120.774597, 50.094904], [-120.775113, 50.095199], [-120.776014, 50.09545], [-120.776798, 50.091942], [-120.788136, 50.091872], [-120.788281, 50.093499], [-120.789664, 50.093425], [-120.79015, 50.093169], [-120.790854, 50.093043], [-120.791508, 50.093115], [-120.792148, 50.092855], [-120.793963, 50.09247], [-120.795946, 50.091571], [-120.795444, 50.090742], [-120.795427, 50.090168], [-120.795799, 50.089578], [-120.797502, 50.088062], [-120.79858, 50.087254], [-120.800542, 50.08594], [-120.801484, 50.085467], [-120.801903, 50.08518], [-120.802936, 50.084048], [-120.803156, 50.083386], [-120.803868, 50.082605], [-120.804165, 50.082466], [-120.804791, 50.082442], [-120.805375, 50.08223], [-120.806638, 50.08132], [-120.806998, 50.080982], [-120.807606, 50.097529], [-120.807829, 50.105728], [-120.818491, 50.105], [-120.818466, 50.108258], [-120.822155, 50.108242], [-120.82326, 50.10834], [-120.823408, 50.109333], [-120.823337, 50.11832], [-120.825907, 50.118338], [-120.827778, 50.118206], [-120.828364, 50.117845], [-120.829107, 50.117533], [-120.829422, 50.117501], [-120.82989, 50.117594], [-120.830984, 50.1181], [-120.83133, 50.118406], [-120.831472, 50.118855], [-120.831503, 50.120739], [-120.831936, 50.121214], [-120.83186, 50.121441], [-120.832022, 50.121771], [-120.832382, 50.122035], [-120.833999, 50.122394], [-120.835036, 50.122716], [-120.835702, 50.123173], [-120.839663, 50.121513], [-120.8506, 50.123491], [-120.856557, 50.125006], [-120.858781, 50.125383], [-120.858166, 50.127296], [-120.857416, 50.128799], [-120.858148, 50.129265], [-120.85897, 50.130183], [-120.860426, 50.130863], [-120.861009, 50.131522], [-120.861355, 50.132485], [-120.861418, 50.133376], [-120.86117, 50.13407], [-120.860797, 50.134916], [-120.859852, 50.136203], [-120.859797, 50.136609], [-120.860297, 50.136763], [-120.860913, 50.136833], [-120.861905, 50.136827], [-120.863539, 50.137401], [-120.864069, 50.137404], [-120.865196, 50.137246], [-120.866257, 50.13696], [-120.866714, 50.136591], [-120.867135, 50.136028], [-120.867609, 50.135806], [-120.868432, 50.135768], [-120.869502, 50.136027], [-120.869939, 50.136332], [-120.870285, 50.136713], [-120.870358, 50.137111], [-120.87013, 50.137357], [-120.868243, 50.137813], [-120.867956, 50.138076], [-120.867808, 50.138568], [-120.86821, 50.139298], [-120.868382, 50.139543], [-120.869018, 50.140029], [-120.869724, 50.140274], [-120.870485, 50.140252], [-120.871091, 50.140059], [-120.871456, 50.139822], [-120.871512, 50.139013], [-120.871713, 50.138911], [-120.872264, 50.138911], [-120.872768, 50.139186], [-120.873109, 50.139677], [-120.873109, 50.140036], [-120.872769, 50.140804], [-120.872755, 50.141078], [-120.872864, 50.141228], [-120.873248, 50.1414], [-120.873645, 50.141439], [-120.874073, 50.141385], [-120.875185, 50.14091], [-120.875665, 50.140627], [-120.875836, 50.140432], [-120.876277, 50.140228], [-120.877543, 50.139995], [-120.878437, 50.139679], [-120.878991, 50.139691], [-120.879495, 50.139817], [-120.880188, 50.140164], [-120.880848, 50.140297], [-120.88205, 50.140742], [-120.882809, 50.140923], [-120.883926, 50.141913], [-120.884715, 50.142279], [-120.885309, 50.142765], [-120.886116, 50.144059], [-120.886887, 50.144397], [-120.887574, 50.144393], [-120.888229, 50.144196], [-120.89003, 50.1434], [-120.891404, 50.14323], [-120.891857, 50.143262], [-120.894367, 50.143764], [-120.895795, 50.143777], [-120.896436, 50.14351], [-120.896717, 50.14328], [-120.896901, 50.142929], [-120.897372, 50.142533], [-120.898005, 50.142337], [-120.899869, 50.142474], [-120.900717, 50.142423], [-120.901419, 50.142209], [-120.902904, 50.141348], [-120.903474, 50.141117], [-120.904586, 50.14089], [-120.905951, 50.140496], [-120.906533, 50.140485], [-120.907123, 50.140611], [-120.907791, 50.140873], [-120.908502, 50.141343], [-120.908825, 50.141671], [-120.908923, 50.142031], [-120.908842, 50.142534], [-120.908377, 50.143372], [-120.908169, 50.144048], [-120.908105, 50.144867], [-120.908372, 50.145384], [-120.908705, 50.145767], [-120.90953, 50.146321], [-120.910778, 50.146687], [-120.912116, 50.146828], [-120.912361, 50.146565], [-120.912245, 50.145333], [-120.912514, 50.144223], [-120.913256, 50.143755], [-120.913915, 50.143576], [-120.915069, 50.143692], [-120.915808, 50.143937], [-120.915998, 50.144094], [-120.916376, 50.144756], [-120.916538, 50.14611], [-120.916894, 50.146563], [-120.917437, 50.146802], [-120.917994, 50.146874], [-120.919807, 50.146602], [-120.920567, 50.14623], [-120.921663, 50.145135], [-120.922123, 50.143718], [-120.922843, 50.142702], [-120.923852, 50.142064], [-120.924427, 50.141953], [-120.926067, 50.141822], [-120.926277, 50.141748], [-120.926531, 50.141301], [-120.926614, 50.140787], [-120.926142, 50.139566], [-120.926445, 50.139291], [-120.928689, 50.138767], [-120.929986, 50.138546], [-120.931074, 50.138098], [-120.931688, 50.137737], [-120.932166, 50.137623], [-120.933427, 50.137592], [-120.934645, 50.137858], [-120.936878, 50.138555], [-120.937526, 50.138939], [-120.938288, 50.139154], [-120.940027, 50.139312], [-120.941818, 50.139347], [-120.943019, 50.139125], [-120.943908, 50.13907], [-120.944873, 50.139378], [-120.945696, 50.139545], [-120.946335, 50.139546], [-120.946906, 50.139452], [-120.947347, 50.139173], [-120.948119, 50.13823], [-120.948572, 50.137855], [-120.949071, 50.137666], [-120.949679, 50.137649], [-120.95026, 50.137864], [-120.951209, 50.138486], [-120.951584, 50.13889], [-120.951903, 50.139458], [-120.953781, 50.141026], [-120.955273, 50.141133], [-120.956133, 50.141396], [-120.957225, 50.141484], [-120.957739, 50.141426], [-120.95891, 50.140939], [-120.960674, 50.139716], [-120.961114, 50.139587], [-120.962341, 50.13976], [-120.963351, 50.140164], [-120.96369, 50.140388], [-120.964147, 50.141211], [-120.964522, 50.141553], [-120.965143, 50.141762], [-120.965911, 50.141803], [-120.967021, 50.14166], [-120.967609, 50.141436], [-120.968647, 50.141386], [-120.968981, 50.141295], [-120.969205, 50.141124], [-120.969243, 50.140774], [-120.969138, 50.140527], [-120.968714, 50.140147], [-120.968631, 50.139961], [-120.968762, 50.139451], [-120.970326, 50.137908], [-120.970773, 50.137155], [-120.971525, 50.136547], [-120.971987, 50.136487], [-120.973262, 50.136615], [-120.974624, 50.136883], [-120.975349, 50.137182], [-120.975887, 50.137639], [-120.978696, 50.138713], [-120.979609, 50.138894], [-120.980908, 50.138919], [-120.98238, 50.138748], [-120.983357, 50.138482], [-120.984477, 50.13804], [-120.985041, 50.137368], [-120.985476, 50.137082], [-120.986313, 50.136838], [-120.986831, 50.136575], [-120.987076, 50.136149], [-120.987288, 50.136032], [-120.988064, 50.135919], [-120.988808, 50.135946], [-120.989435, 50.136132], [-120.990696, 50.136743], [-120.992497, 50.137401], [-120.993817, 50.137995], [-120.994693, 50.138152], [-120.995638, 50.138496], [-120.996175, 50.138566], [-120.996909, 50.138549], [-120.997313, 50.138415], [-120.998322, 50.137469], [-120.99879, 50.136883], [-120.99926, 50.136549], [-120.999861, 50.13639], [-121.000321, 50.136401], [-121.00066, 50.136565], [-121.000988, 50.136881], [-121.001423, 50.137559], [-121.001697, 50.13778], [-121.003915, 50.138569], [-121.004397, 50.138647], [-121.005685, 50.138665], [-121.004976, 50.142974], [-121.004976, 50.146619], [-121.00442, 50.178585], [-120.999757, 50.17848], [-120.999486, 50.211363], [-120.999587, 50.221692], [-120.999552, 50.227743], [-121.015342, 50.227715], [-121.052802, 50.227489], [-121.080853, 50.227093], [-121.09118, 50.22714], [-121.09133, 50.225484], [-121.082507, 50.22524], [-121.082764, 50.214989], [-121.080461, 50.214955], [-121.08053, 50.207396], [-121.077754, 50.207359], [-121.077585, 50.20542], [-121.075472, 50.205428], [-121.07564, 50.20246], [-121.075361, 50.202191], [-121.075007, 50.201936], [-121.070055, 50.201793], [-121.070202, 50.200007], [-121.063824, 50.19978], [-121.064023, 50.196289], [-121.060961, 50.196238], [-121.060981, 50.194492], [-121.052674, 50.194186], [-121.053405, 50.183364], [-121.05632, 50.183515], [-121.056041, 50.178919], [-121.055381, 50.17826], [-121.050228, 50.17798], [-121.050238, 50.172709], [-121.050443, 50.161885], [-121.052064, 50.16033], [-121.051662, 50.159426], [-121.050921, 50.158818], [-121.050551, 50.158673], [-121.048728, 50.158361], [-121.047805, 50.158007], [-121.045802, 50.156678], [-121.044698, 50.156111], [-121.043918, 50.155872], [-121.043229, 50.155805], [-121.042485, 50.155833], [-121.041703, 50.156088], [-121.040164, 50.156709], [-121.038823, 50.156958], [-121.037145, 50.15738], [-121.03661, 50.15742], [-121.035816, 50.157337], [-121.033527, 50.156846], [-121.033003, 50.15654], [-121.032264, 50.155781], [-121.031629, 50.155388], [-121.031029, 50.154401], [-121.030327, 50.15263], [-121.031682, 50.143424], [-121.041765, 50.143432], [-121.04174, 50.152357], [-121.044467, 50.1524], [-121.044466, 50.154179], [-121.049322, 50.154186], [-121.04941, 50.156099], [-121.05205, 50.156057], [-121.052146, 50.157848], [-121.05491, 50.15791], [-121.054872, 50.159757], [-121.060054, 50.160104], [-121.060029, 50.163372], [-121.074731, 50.163584], [-121.074618, 50.165852], [-121.074102, 50.169145], [-121.059644, 50.170097], [-121.058967, 50.175888], [-121.061489, 50.176131], [-121.061018, 50.180591], [-121.062418, 50.180593], [-121.064022, 50.18076], [-121.064489, 50.1811], [-121.06468, 50.181623], [-121.064647, 50.182101], [-121.064327, 50.182557], [-121.064, 50.182796], [-121.06156, 50.183571], [-121.06129, 50.183802], [-121.061268, 50.184184], [-121.061463, 50.184585], [-121.062433, 50.185824], [-121.062741, 50.186484], [-121.062326, 50.187342], [-121.062304, 50.187773], [-121.062847, 50.189576], [-121.063163, 50.19013], [-121.064044, 50.190783], [-121.064747, 50.191718], [-121.065072, 50.193172], [-121.065564, 50.1942], [-121.066134, 50.194754], [-121.066869, 50.195244], [-121.067635, 50.195584], [-121.068873, 50.195309], [-121.069148, 50.196113], [-121.071096, 50.196617], [-121.071622, 50.196828], [-121.072527, 50.197316], [-121.074287, 50.198646], [-121.075058, 50.199324], [-121.080157, 50.199104], [-121.080963, 50.203864], [-121.083951, 50.203688], [-121.084462, 50.2071], [-121.09184, 50.20695], [-121.092982, 50.21723], [-121.095971, 50.217213], [-121.097033, 50.225676], [-121.099573, 50.225612], [-121.09972, 50.226858], [-121.127942, 50.227378], [-121.140317, 50.227216]], [[-120.853933, 50.055646], [-120.840118, 50.055394], [-120.818567, 50.055347], [-120.814544, 50.05521], [-120.81439, 50.034405], [-120.814485, 50.033171], [-120.815625, 50.033239], [-120.831377, 50.033315], [-120.832299, 50.024374], [-120.832355, 50.022485], [-120.847682, 50.023472], [-120.854619, 50.023792], [-120.854827, 50.018976], [-120.870733, 50.018499], [-120.870328, 50.011064], [-120.882782, 50.010486], [-120.883155, 50.013979], [-120.902369, 50.014371], [-120.902402, 50.032216], [-120.890982, 50.032174], [-120.890531, 50.03966], [-120.868344, 50.039421], [-120.86795, 50.050109], [-120.856501, 50.050182], [-120.854282, 50.050237], [-120.853933, 50.055646]], [[-120.93022, 49.988211], [-120.929657, 49.990079], [-120.925456, 49.989494], [-120.926254, 49.989295], [-120.926821, 49.988902], [-120.92666, 49.988475], [-120.925572, 49.987968], [-120.925326, 49.987386], [-120.925734, 49.987206], [-120.925935, 49.986963], [-120.925818, 49.985612], [-120.925983, 49.985212], [-120.92624, 49.984978], [-120.927473, 49.984427], [-120.928041, 49.983886], [-120.928214, 49.983493], [-120.928413, 49.983315], [-120.928746, 49.983205], [-120.930607, 49.982986], [-120.930865, 49.982561], [-120.930977, 49.98214], [-120.931223, 49.981886], [-120.931521, 49.981774], [-120.932672, 49.981704], [-120.933114, 49.981482], [-120.933456, 49.980995], [-120.933376, 49.980553], [-120.932205, 49.979777], [-120.93159, 49.979018], [-120.93149, 49.97873], [-120.931553, 49.978393], [-120.932017, 49.977678], [-120.932941, 49.976638], [-120.933367, 49.976303], [-120.935354, 49.975396], [-120.936304, 49.975059], [-120.936492, 49.974815], [-120.961955, 49.974547], [-120.9621, 49.976691], [-120.962173, 49.981692], [-120.978751, 49.981537], [-120.979149, 49.988407], [-120.983529, 49.988464], [-120.984041, 49.993466], [-120.989283, 49.99337], [-120.989389, 50.000875], [-120.994588, 50.000864], [-120.994665, 50.005436], [-120.994806, 50.007318], [-120.994711, 50.00759], [-120.994826, 50.008516], [-120.99483, 50.009485], [-120.994904, 50.009999], [-120.99529, 50.01054], [-120.986832, 50.010495], [-120.98682, 50.007497], [-120.984333, 50.007515], [-120.984153, 50.006988], [-120.984106, 50.004025], [-120.981142, 50.003788], [-120.981237, 50.001785], [-120.981592, 50.001292], [-120.981614, 50.000774], [-120.98133, 50.000021], [-120.980568, 49.996436], [-120.978312, 49.996586], [-120.977908, 49.991218], [-120.961481, 49.990994], [-120.961517, 49.989433], [-120.949705, 49.989309], [-120.949719, 49.987975], [-120.93022, 49.988211]]]]}, "properties": {"name": "Thompson-Nicola N (Beautiful Nicola Valley - South)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola N (Beautiful Nicola Valley - South)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933012", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.558464, 50.248273], [-121.566481, 50.24821], [-121.571489, 50.248291], [-121.57363, 50.247172], [-121.5742, 50.24664], [-121.574326, 50.246508], [-121.575281, 50.244116], [-121.576365, 50.242008], [-121.576468, 50.241311], [-121.577267, 50.239825], [-121.578932, 50.238115], [-121.572142, 50.238504], [-121.572013, 50.234669], [-121.578695, 50.23464], [-121.57882, 50.234346], [-121.579134, 50.234469], [-121.579196, 50.23424], [-121.579753, 50.234301], [-121.579708, 50.234593], [-121.58033, 50.234717], [-121.580038, 50.234905], [-121.579467, 50.237042], [-121.579691, 50.237401], [-121.581016, 50.236388], [-121.582445, 50.235702], [-121.582887, 50.235554], [-121.58488, 50.235508], [-121.58553, 50.233565], [-121.586109, 50.231358], [-121.586092, 50.230319], [-121.585871, 50.229229], [-121.585688, 50.22885], [-121.585605, 50.225735], [-121.585464, 50.224741], [-121.583987, 50.222871], [-121.58285, 50.221991], [-121.581351, 50.221313], [-121.580629, 50.220752], [-121.579346, 50.219101], [-121.579082, 50.218478], [-121.579911, 50.218366], [-121.579902, 50.217781], [-121.580147, 50.217533], [-121.580339, 50.217193], [-121.580348, 50.215916], [-121.580807, 50.214203], [-121.581194, 50.213417], [-121.581258, 50.212698], [-121.581583, 50.211668], [-121.581671, 50.209646], [-121.581882, 50.208622], [-121.582354, 50.207333], [-121.583656, 50.205505], [-121.584632, 50.203781], [-121.585026, 50.202805], [-121.585204, 50.201989], [-121.585366, 50.201713], [-121.585733, 50.199753], [-121.584538, 50.199151], [-121.579111, 50.199084], [-121.578343, 50.197653], [-121.573206, 50.197682], [-121.573427, 50.199526], [-121.573776, 50.199491], [-121.573681, 50.199011], [-121.57411, 50.198996], [-121.574149, 50.200697], [-121.573583, 50.200769], [-121.573535, 50.202392], [-121.57606, 50.202353], [-121.575708, 50.20327], [-121.574494, 50.203918], [-121.575031, 50.204486], [-121.567988, 50.204692], [-121.568335, 50.215868], [-121.562949, 50.215688], [-121.562914, 50.226014], [-121.553434, 50.226004], [-121.553326, 50.23853], [-121.558381, 50.238614], [-121.558464, 50.248273]], [[-121.57395, 50.225991], [-121.574856, 50.226165], [-121.577211, 50.226176], [-121.578136, 50.226271], [-121.579192, 50.226172], [-121.579309, 50.226465], [-121.579575, 50.226733], [-121.579295, 50.228063], [-121.578734, 50.229767], [-121.575868, 50.228136], [-121.577004, 50.227143], [-121.57522, 50.227107], [-121.572052, 50.226526], [-121.572072, 50.225892], [-121.57395, 50.225991]]]]}, "properties": {"name": "Lytton", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lytton", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933015", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.353186, 50.727753], [-121.353483, 50.727749], [-121.354203, 50.727884], [-121.355152, 50.727853], [-121.355306, 50.727927], [-121.355415, 50.728046], [-121.355365, 50.728656], [-121.355987, 50.729133], [-121.356367, 50.729552], [-121.357344, 50.730033], [-121.358691, 50.730827], [-121.359376, 50.731106], [-121.360195, 50.731584], [-121.360589, 50.732021], [-121.361094, 50.732218], [-121.361505, 50.732584], [-121.362039, 50.732744], [-121.3624, 50.732929], [-121.362467, 50.733055], [-121.362483, 50.733847], [-121.362786, 50.734178], [-121.361123, 50.72], [-121.377882, 50.708266], [-121.385631, 50.702992], [-121.385541, 50.706521], [-121.396243, 50.706518], [-121.396357, 50.700037], [-121.413168, 50.700904], [-121.414506, 50.686594], [-121.410426, 50.68646], [-121.411539, 50.672103], [-121.414409, 50.672155], [-121.414992, 50.658326], [-121.403293, 50.659404], [-121.359076, 50.662367], [-121.362561, 50.656296], [-121.375133, 50.65593], [-121.374886, 50.649241], [-121.363023, 50.649159], [-121.363109, 50.65065], [-121.361291, 50.650524], [-121.353483, 50.650541], [-121.353274, 50.648087], [-121.348443, 50.648046], [-121.348503, 50.651313], [-121.351231, 50.651481], [-121.349588, 50.666207], [-121.337317, 50.666224], [-121.337465, 50.665404], [-121.320993, 50.665754], [-121.31812, 50.665755], [-121.318069, 50.670384], [-121.319892, 50.670292], [-121.320444, 50.67802], [-121.328338, 50.678118], [-121.328387, 50.685707], [-121.314915, 50.685453], [-121.315138, 50.686863], [-121.315408, 50.692418], [-121.307452, 50.692402], [-121.305271, 50.693673], [-121.279649, 50.69294], [-121.279776, 50.696871], [-121.280695, 50.703896], [-121.280891, 50.704213], [-121.280847, 50.704756], [-121.280604, 50.7051], [-121.279452, 50.70624], [-121.279133, 50.706645], [-121.278763, 50.707497], [-121.273756, 50.707393], [-121.274089, 50.715006], [-121.26869, 50.714701], [-121.269356, 50.72131], [-121.263953, 50.721164], [-121.26396, 50.724896], [-121.261953, 50.725456], [-121.257177, 50.725556], [-121.257226, 50.729093], [-121.256419, 50.729123], [-121.255522, 50.729414], [-121.255224, 50.730505], [-121.255417, 50.732007], [-121.255796, 50.732285], [-121.256835, 50.732644], [-121.2573, 50.732683], [-121.257087, 50.736553], [-121.250121, 50.736426], [-121.224417, 50.736589], [-121.22511, 50.743878], [-121.225109, 50.744974], [-121.22708, 50.745892], [-121.230484, 50.746756], [-121.232892, 50.747918], [-121.235776, 50.749183], [-121.237951, 50.750542], [-121.238812, 50.751348], [-121.239556, 50.751764], [-121.242035, 50.752353], [-121.242844, 50.752396], [-121.244051, 50.751982], [-121.245075, 50.751119], [-121.245187, 50.750091], [-121.245855, 50.749185], [-121.247303, 50.74828], [-121.249947, 50.74732], [-121.251801, 50.746234], [-121.252786, 50.74512], [-121.25419, 50.743992], [-121.255747, 50.742519], [-121.257266, 50.74088], [-121.257756, 50.739187], [-121.258053, 50.738875], [-121.258731, 50.73911], [-121.25883, 50.739208], [-121.259194, 50.739339], [-121.259953, 50.73948], [-121.260106, 50.740344], [-121.259992, 50.74155], [-121.260728, 50.743417], [-121.265729, 50.74324], [-121.266822, 50.74329], [-121.266708, 50.742648], [-121.266585, 50.742421], [-121.266258, 50.742142], [-121.26804, 50.742257], [-121.269124, 50.743647], [-121.279248, 50.744112], [-121.280799, 50.744306], [-121.280219, 50.743185], [-121.280095, 50.7427], [-121.280103, 50.742227], [-121.280184, 50.741718], [-121.281396, 50.738285], [-121.281945, 50.736211], [-121.28199, 50.734059], [-121.281725, 50.731408], [-121.281813, 50.730907], [-121.282952, 50.728124], [-121.282868, 50.727773], [-121.282241, 50.727272], [-121.282682, 50.726907], [-121.283259, 50.726582], [-121.283658, 50.726167], [-121.284221, 50.725859], [-121.284689, 50.725453], [-121.285487, 50.724574], [-121.285914, 50.723744], [-121.286089, 50.723639], [-121.286599, 50.723911], [-121.286947, 50.720735], [-121.286534, 50.718732], [-121.285768, 50.713591], [-121.285882, 50.712133], [-121.28546, 50.711466], [-121.28512, 50.708828], [-121.284619, 50.70875], [-121.285319, 50.707079], [-121.285771, 50.706312], [-121.286521, 50.705523], [-121.287003, 50.705142], [-121.288041, 50.704637], [-121.289401, 50.704252], [-121.290668, 50.704081], [-121.291856, 50.70373], [-121.292554, 50.703614], [-121.293198, 50.703426], [-121.293277, 50.703203], [-121.294571, 50.702646], [-121.294865, 50.702371], [-121.295387, 50.70165], [-121.295375, 50.701588], [-121.295084, 50.701421], [-121.295061, 50.701267], [-121.295298, 50.700192], [-121.295431, 50.700041], [-121.295679, 50.699856], [-121.296856, 50.699783], [-121.297048, 50.699588], [-121.298197, 50.699532], [-121.298349, 50.699616], [-121.298575, 50.699619], [-121.298955, 50.699733], [-121.30063, 50.699945], [-121.301918, 50.70001], [-121.30243, 50.699964], [-121.302548, 50.70019], [-121.302392, 50.700565], [-121.302401, 50.701105], [-121.302583, 50.701216], [-121.303226, 50.701405], [-121.303561, 50.701599], [-121.303582, 50.701734], [-121.303362, 50.702361], [-121.303588, 50.70276], [-121.303769, 50.702861], [-121.30415, 50.702902], [-121.304312, 50.70313], [-121.304772, 50.703325], [-121.304953, 50.703382], [-121.305463, 50.703371], [-121.306001, 50.703819], [-121.306764, 50.704271], [-121.307617, 50.704581], [-121.308723, 50.704885], [-121.309365, 50.705182], [-121.310064, 50.705407], [-121.310411, 50.705611], [-121.310598, 50.70591], [-121.310612, 50.706746], [-121.310786, 50.707028], [-121.311196, 50.707421], [-121.311342, 50.707693], [-121.312101, 50.70827], [-121.312454, 50.708672], [-121.31314, 50.708905], [-121.313276, 50.70906], [-121.313186, 50.709203], [-121.312851, 50.709451], [-121.312744, 50.710087], [-121.312572, 50.710543], [-121.312538, 50.711056], [-121.312044, 50.711803], [-121.311775, 50.712582], [-121.311799, 50.712709], [-121.31195, 50.712819], [-121.312851, 50.712994], [-121.31317, 50.713196], [-121.313193, 50.713313], [-121.313103, 50.713455], [-121.312332, 50.714065], [-121.31218, 50.714368], [-121.312678, 50.714673], [-121.312724, 50.714944], [-121.312891, 50.715053], [-121.312981, 50.715334], [-121.313356, 50.715942], [-121.313714, 50.716181], [-121.314998, 50.716703], [-121.315555, 50.716613], [-121.316214, 50.716811], [-121.316661, 50.716997], [-121.317741, 50.717651], [-121.318429, 50.717814], [-121.319601, 50.718343], [-121.319811, 50.718409], [-121.320603, 50.718474], [-121.321538, 50.718839], [-121.323295, 50.71908], [-121.324811, 50.716596], [-121.327291, 50.71708], [-121.33302, 50.705728], [-121.334355, 50.703322], [-121.336065, 50.704059], [-121.337222, 50.701497], [-121.336967, 50.702431], [-121.336596, 50.703262], [-121.336565, 50.703747], [-121.336777, 50.704182], [-121.337325, 50.704729], [-121.337887, 50.705601], [-121.337965, 50.706222], [-121.338188, 50.706702], [-121.339119, 50.707669], [-121.339464, 50.707908], [-121.340298, 50.708061], [-121.340418, 50.7082], [-121.340808, 50.708405], [-121.341594, 50.708738], [-121.342017, 50.709247], [-121.342219, 50.709769], [-121.342184, 50.710105], [-121.342063, 50.710344], [-121.341371, 50.711328], [-121.341228, 50.711816], [-121.341208, 50.712436], [-121.341035, 50.712934], [-121.340222, 50.713944], [-121.338807, 50.715279], [-121.338072, 50.716264], [-121.337801, 50.716839], [-121.337595, 50.718044], [-121.337648, 50.718927], [-121.338013, 50.720163], [-121.337881, 50.721905], [-121.337015, 50.721471], [-121.336318, 50.720769], [-121.335819, 50.72042], [-121.335471, 50.72028], [-121.335013, 50.72039], [-121.334887, 50.72037], [-121.334527, 50.720114], [-121.334288, 50.720047], [-121.333823, 50.719987], [-121.333383, 50.720025], [-121.332409, 50.719894], [-121.332112, 50.719899], [-121.331683, 50.719993], [-121.330978, 50.719891], [-121.328885, 50.72024], [-121.328048, 50.720106], [-121.325718, 50.724711], [-121.324621, 50.72665], [-121.328118, 50.727858], [-121.333784, 50.724024], [-121.341777, 50.730213], [-121.34758, 50.726783], [-121.347764, 50.726813], [-121.348866, 50.727314], [-121.349512, 50.727081], [-121.349911, 50.726997], [-121.350067, 50.727035], [-121.350524, 50.727339], [-121.35086, 50.727424], [-121.351347, 50.727296], [-121.351602, 50.72729], [-121.351963, 50.727511], [-121.352288, 50.727911], [-121.352429, 50.72795], [-121.353186, 50.727753]]]]}, "properties": {"name": "Ashcroft", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Ashcroft", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933019", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.326743, 50.818261], [-121.328973, 50.817411], [-121.328451, 50.817112], [-121.328471, 50.81661], [-121.328341, 50.81639], [-121.328775, 50.816396], [-121.333375, 50.814425], [-121.333649, 50.812354], [-121.338909, 50.812272], [-121.337956, 50.801651], [-121.337873, 50.790018], [-121.338046, 50.780556], [-121.311675, 50.780284], [-121.311097, 50.775625], [-121.311063, 50.773099], [-121.304424, 50.773132], [-121.304747, 50.787061], [-121.304935, 50.806757], [-121.299125, 50.800816], [-121.292523, 50.794565], [-121.289699, 50.797308], [-121.298807, 50.801145], [-121.293763, 50.807012], [-121.293705, 50.807739], [-121.293591, 50.807833], [-121.293687, 50.808053], [-121.293681, 50.808543], [-121.293807, 50.809126], [-121.294412, 50.809762], [-121.294889, 50.810007], [-121.296346, 50.810306], [-121.297864, 50.810499], [-121.300644, 50.811142], [-121.304438, 50.811892], [-121.305065, 50.815442], [-121.305334, 50.816391], [-121.312644, 50.816227], [-121.322196, 50.81633], [-121.322894, 50.816781], [-121.324456, 50.817366], [-121.32493, 50.817354], [-121.326743, 50.818261]]]]}, "properties": {"name": "Cache Creek", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Cache Creek", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933024", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.599045, 51.085701], [-121.597636, 51.08679], [-121.596879, 51.086406], [-121.596312, 51.086852], [-121.59707, 51.087229], [-121.595155, 51.088729], [-121.594682, 51.088746], [-121.593881, 51.088872], [-121.59274, 51.089162], [-121.592885, 51.089063], [-121.591603, 51.08814], [-121.591381, 51.086023], [-121.593011, 51.084822], [-121.596616, 51.081894], [-121.599652, 51.081892], [-121.599646, 51.079503], [-121.597925, 51.079504], [-121.590504, 51.074502], [-121.590217, 51.075502], [-121.590634, 51.079043], [-121.58551, 51.079346], [-121.574282, 51.079384], [-121.574021, 51.081471], [-121.573816, 51.08238], [-121.563158, 51.082506], [-121.563121, 51.090021], [-121.557373, 51.090017], [-121.55731, 51.097175], [-121.563043, 51.097195], [-121.563011, 51.100568], [-121.561332, 51.102234], [-121.56066, 51.102764], [-121.559907, 51.103197], [-121.557256, 51.10444], [-121.562201, 51.104467], [-121.562581, 51.106532], [-121.583989, 51.106403], [-121.591371, 51.106462], [-121.59128, 51.104349], [-121.60589, 51.104245], [-121.60587, 51.10111], [-121.592232, 51.101245], [-121.592091, 51.096143], [-121.59984, 51.090819], [-121.59907, 51.087834], [-121.599045, 51.085701]]], [[[-121.492487, 51.188022], [-121.491663, 51.190835], [-121.492108, 51.194761], [-121.491997, 51.198133], [-121.491435, 51.200969], [-121.49339, 51.20096], [-121.49258, 51.20374], [-121.501907, 51.203231], [-121.500598, 51.190818], [-121.496959, 51.190823], [-121.496326, 51.185829], [-121.493672, 51.186024], [-121.492487, 51.188022]]], [[[-121.604059, 51.085835], [-121.604086, 51.085394], [-121.603896, 51.08455], [-121.600786, 51.084628], [-121.599103, 51.085538], [-121.599045, 51.085701], [-121.604059, 51.085835]]]]}, "properties": {"name": "Clinton", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Clinton", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933028", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.47, 51.482202], [-122.471499, 51.482074], [-122.472421, 51.482169], [-122.486024, 51.482423], [-122.548617, 51.484945], [-122.559711, 51.485123], [-122.559749, 51.464827], [-122.559382, 51.435444], [-122.559565, 51.435401], [-122.559778, 51.43543], [-122.560525, 51.435648], [-122.5611, 51.435632], [-122.561303, 51.435498], [-122.561509, 51.435166], [-122.562057, 51.434907], [-122.562475, 51.434819], [-122.563323, 51.434884], [-122.564125, 51.435266], [-122.564787, 51.435411], [-122.565836, 51.435353], [-122.566011, 51.43529], [-122.566358, 51.434977], [-122.566884, 51.434251], [-122.567129, 51.434036], [-122.567938, 51.43367], [-122.568574, 51.433564], [-122.568991, 51.433566], [-122.569594, 51.433667], [-122.570812, 51.434148], [-122.571543, 51.434322], [-122.573184, 51.434409], [-122.5736, 51.434339], [-122.574135, 51.434151], [-122.575595, 51.433419], [-122.57597, 51.433314], [-122.577193, 51.433272], [-122.5783, 51.433358], [-122.578963, 51.433296], [-122.579164, 51.433235], [-122.579482, 51.433012], [-122.579701, 51.432643], [-122.579551, 51.43178], [-122.579581, 51.431653], [-122.579828, 51.431429], [-122.580347, 51.431207], [-122.5814, 51.430959], [-122.582295, 51.430468], [-122.58286, 51.43028], [-122.583276, 51.430219], [-122.585622, 51.430219], [-122.586371, 51.430041], [-122.58689, 51.429827], [-122.58747, 51.429461], [-122.588138, 51.428645], [-122.588415, 51.428186], [-122.588677, 51.428062], [-122.589066, 51.427983], [-122.590143, 51.427906], [-122.590562, 51.427826], [-122.590938, 51.427684], [-122.591848, 51.427174], [-122.592742, 51.42688], [-122.593996, 51.426588], [-122.594373, 51.426319], [-122.595199, 51.425532], [-122.596095, 51.425157], [-122.597334, 51.424837], [-122.597667, 51.424694], [-122.5981, 51.424417], [-122.598305, 51.424013], [-122.598753, 51.423808], [-122.599142, 51.423729], [-122.599717, 51.423703], [-122.600108, 51.423534], [-122.600353, 51.423318], [-122.600757, 51.423293], [-122.601028, 51.42343], [-122.601615, 51.423935], [-122.602117, 51.423954], [-122.602392, 51.423838], [-122.602741, 51.423246], [-122.603987, 51.422225], [-122.604522, 51.422047], [-122.605096, 51.422067], [-122.606117, 51.422215], [-122.60678, 51.422126], [-122.607184, 51.421948], [-122.607693, 51.421203], [-122.608184, 51.42089], [-122.608863, 51.420677], [-122.609524, 51.420652], [-122.609826, 51.420581], [-122.610346, 51.420358], [-122.611518, 51.41958], [-122.611748, 51.4195], [-122.612008, 51.419465], [-122.613043, 51.419494], [-122.613577, 51.419308], [-122.613879, 51.419264], [-122.614742, 51.419321], [-122.615116, 51.419178], [-122.615722, 51.419071], [-122.615952, 51.419081], [-122.616353, 51.41921], [-122.616742, 51.41921], [-122.616972, 51.419148], [-122.617954, 51.418513], [-122.618719, 51.418291], [-122.619381, 51.418248], [-122.620303, 51.418089], [-122.621079, 51.418163], [-122.62203, 51.417896], [-122.622176, 51.4176], [-122.622435, 51.417502], [-122.62412, 51.417211], [-122.624525, 51.416988], [-122.624586, 51.416763], [-122.624542, 51.416619], [-122.624029, 51.416222], [-122.623872, 51.415987], [-122.623918, 51.415628], [-122.624148, 51.415494], [-122.624854, 51.415397], [-122.6251, 51.415263], [-122.626081, 51.414987], [-122.626371, 51.414709], [-122.626749, 51.414127], [-122.626765, 51.413856], [-122.626508, 51.41355], [-122.625607, 51.413161], [-122.625566, 51.412926], [-122.625753, 51.412721], [-122.62679, 51.41248], [-122.627294, 51.412465], [-122.627854, 51.412628], [-122.628877, 51.412433], [-122.629958, 51.411952], [-122.630827, 51.411244], [-122.63106, 51.410975], [-122.631364, 51.410778], [-122.631738, 51.410653], [-122.633049, 51.410478], [-122.633494, 51.410317], [-122.633755, 51.410137], [-122.634017, 51.409716], [-122.634369, 51.408844], [-122.634314, 51.408539], [-122.634373, 51.408396], [-122.634649, 51.408145], [-122.634827, 51.407426], [-122.635101, 51.407157], [-122.63549, 51.407077], [-122.636152, 51.407151], [-122.636669, 51.407135], [-122.637735, 51.406769], [-122.638053, 51.406581], [-122.638243, 51.406285], [-122.638245, 51.405889], [-122.638061, 51.405664], [-122.637688, 51.405483], [-122.637176, 51.404879], [-122.637104, 51.404681], [-122.63721, 51.404214], [-122.637355, 51.403972], [-122.637385, 51.403657], [-122.637058, 51.403377], [-122.636457, 51.403177], [-122.635926, 51.402888], [-122.635685, 51.402519], [-122.63573, 51.402213], [-122.635976, 51.401908], [-122.637105, 51.401031], [-122.637281, 51.400735], [-122.637227, 51.40032], [-122.637029, 51.399906], [-122.636672, 51.399546], [-122.636183, 51.399355], [-122.635796, 51.399336], [-122.635381, 51.399235], [-122.634979, 51.398956], [-122.63484, 51.398587], [-122.634842, 51.398308], [-122.635033, 51.397778], [-122.635006, 51.397391], [-122.634853, 51.397013], [-122.634311, 51.396454], [-122.634212, 51.396211], [-122.634445, 51.395744], [-122.634534, 51.395367], [-122.634324, 51.394692], [-122.633981, 51.394384], [-122.633638, 51.394195], [-122.631775, 51.393568], [-122.631445, 51.393397], [-122.631246, 51.393208], [-122.630866, 51.392244], [-122.630827, 51.391587], [-122.630617, 51.390966], [-122.63061, 51.390022], [-122.63054, 51.389878], [-122.630026, 51.389399], [-122.629283, 51.388858], [-122.628896, 51.388713], [-122.628508, 51.388757], [-122.62718, 51.389247], [-122.626779, 51.389273], [-122.626421, 51.389119], [-122.626349, 51.389001], [-122.626439, 51.388606], [-122.626369, 51.388336], [-122.625899, 51.388028], [-122.625016, 51.38764], [-122.62462, 51.387269], [-122.624617, 51.387], [-122.625001, 51.386152], [-122.624943, 51.385554], [-122.624481, 51.385255], [-122.622951, 51.384705], [-122.622697, 51.384412], [-122.622754, 51.384143], [-122.623063, 51.383663], [-122.623056, 51.383241], [-122.621801, 51.38186], [-122.621769, 51.381404], [-122.62243, 51.380776], [-122.622833, 51.380031], [-122.624559, 51.379645], [-122.625079, 51.379182], [-122.625189, 51.37887], [-122.624858, 51.378009], [-122.62437, 51.377699], [-122.623918, 51.377539], [-122.623019, 51.377469], [-122.622549, 51.377835], [-122.622029, 51.37789], [-122.621457, 51.377789], [-122.619931, 51.377275], [-122.618726, 51.377147], [-122.618575, 51.376995], [-122.618523, 51.376347], [-122.618384, 51.376191], [-122.618122, 51.376116], [-122.617039, 51.376127], [-122.616619, 51.375854], [-122.616543, 51.375656], [-122.616615, 51.375125], [-122.616406, 51.374744], [-122.616061, 51.374498], [-122.614581, 51.374166], [-122.613681, 51.373834], [-122.613496, 51.373665], [-122.613236, 51.372825], [-122.613419, 51.372554], [-122.615098, 51.371799], [-122.615727, 51.371419], [-122.616756, 51.37104], [-122.617022, 51.370799], [-122.61704, 51.369824], [-122.617667, 51.369221], [-122.617723, 51.368985], [-122.616527, 51.367761], [-122.616403, 51.367394], [-122.616746, 51.367197], [-122.618143, 51.367175], [-122.618581, 51.366979], [-122.619089, 51.366984], [-122.61939, 51.366871], [-122.619721, 51.365803], [-122.6196, 51.36511], [-122.620217, 51.364483], [-122.620133, 51.36397], [-122.619654, 51.363425], [-122.618577, 51.362799], [-122.618172, 51.362438], [-122.617604, 51.361696], [-122.617527, 51.361283], [-122.617875, 51.360998], [-122.620243, 51.360256], [-122.622517, 51.358994], [-122.623371, 51.358119], [-122.623875, 51.357796], [-122.625268, 51.357016], [-122.625874, 51.356769], [-122.626467, 51.356695], [-122.627058, 51.356821], [-122.62767, 51.356842], [-122.627964, 51.356751], [-122.628463, 51.356378], [-122.629329, 51.356094], [-122.630227, 51.355409], [-122.630595, 51.355359], [-122.631728, 51.355535], [-122.631972, 51.355304], [-122.632198, 51.354606], [-122.631642, 51.354348], [-122.630252, 51.354116], [-122.630084, 51.353904], [-122.630256, 51.353575], [-122.631045, 51.353116], [-122.631545, 51.352434], [-122.631599, 51.351733], [-122.631357, 51.350694], [-122.631556, 51.350245], [-122.632168, 51.349983], [-122.633395, 51.349822], [-122.634151, 51.349647], [-122.635527, 51.349033], [-122.635981, 51.348617], [-122.636004, 51.347892], [-122.636184, 51.347033], [-122.636634, 51.345676], [-122.636957, 51.345199], [-122.638497, 51.344578], [-122.63952, 51.343803], [-122.639555, 51.343229], [-122.63895, 51.342489], [-122.638935, 51.342284], [-122.639121, 51.342166], [-122.640627, 51.341771], [-122.64202, 51.341073], [-122.642226, 51.340778], [-122.642318, 51.340372], [-122.642482, 51.340253], [-122.644437, 51.339781], [-122.644823, 51.339623], [-122.645155, 51.339232], [-122.645412, 51.338343], [-122.645897, 51.337154], [-122.647419, 51.335772], [-122.647409, 51.335479], [-122.647007, 51.335177], [-122.645993, 51.334704], [-122.645826, 51.33453], [-122.645853, 51.334217], [-122.646285, 51.334024], [-122.645243, 51.333468], [-122.644837, 51.333374], [-122.644744, 51.333135], [-122.644838, 51.332541], [-122.645681, 51.331705], [-122.646374, 51.330751], [-122.64664, 51.32996], [-122.646849, 51.329661], [-122.647645, 51.329323], [-122.647944, 51.329084], [-122.64865, 51.328764], [-122.648814, 51.328492], [-122.648916, 51.328056], [-122.649641, 51.327191], [-122.65027, 51.326711], [-122.650925, 51.326034], [-122.651042, 51.325631], [-122.650864, 51.324998], [-122.650536, 51.324806], [-122.649871, 51.324602], [-122.649178, 51.32404], [-122.649037, 51.323363], [-122.650231, 51.321381], [-122.650343, 51.321033], [-122.649987, 51.319531], [-122.650322, 51.319055], [-122.651015, 51.318616], [-122.651618, 51.318519], [-122.652821, 51.318783], [-122.654566, 51.31966], [-122.655467, 51.319961], [-122.655957, 51.319935], [-122.656533, 51.319559], [-122.656734, 51.319542], [-122.657292, 51.319615], [-122.65825, 51.320059], [-122.658839, 51.320132], [-122.659326, 51.320106], [-122.659413, 51.320062], [-122.660053, 51.319002], [-122.660874, 51.318655], [-122.661278, 51.318314], [-122.661626, 51.317766], [-122.661759, 51.317236], [-122.661861, 51.317138], [-122.662206, 51.316958], [-122.662437, 51.316923], [-122.663928, 51.316946], [-122.664387, 51.316866], [-122.664546, 51.316776], [-122.664879, 51.31639], [-122.665126, 51.315852], [-122.665174, 51.315375], [-122.665593, 51.314955], [-122.665438, 51.314405], [-122.665482, 51.314297], [-122.666649, 51.313563], [-122.667083, 51.313133], [-122.667115, 51.312746], [-122.666904, 51.312233], [-122.666864, 51.311756], [-122.667345, 51.310742], [-122.667633, 51.310545], [-122.668367, 51.310332], [-122.668655, 51.310161], [-122.66867, 51.309882], [-122.668029, 51.30935], [-122.667845, 51.309107], [-122.667732, 51.308719], [-122.667881, 51.307983], [-122.667787, 51.306966], [-122.668035, 51.306491], [-122.668654, 51.306106], [-122.669444, 51.305999], [-122.670067, 51.305336], [-122.670239, 51.305237], [-122.671531, 51.305142], [-122.671877, 51.304999], [-122.673217, 51.30396], [-122.674199, 51.303037], [-122.67482, 51.302688], [-122.675726, 51.302339], [-122.675907, 51.301046], [-122.676758, 51.300274], [-122.676888, 51.299969], [-122.676862, 51.29979], [-122.676735, 51.29959], [-122.676293, 51.29923], [-122.675578, 51.298716], [-122.675008, 51.2984], [-122.674995, 51.298148], [-122.675142, 51.297743], [-122.675675, 51.297115], [-122.675738, 51.296333], [-122.676141, 51.296074], [-122.676659, 51.295894], [-122.676933, 51.295716], [-122.677339, 51.295322], [-122.677425, 51.295132], [-122.677313, 51.294943], [-122.67707, 51.294808], [-122.676569, 51.294672], [-122.676239, 51.294473], [-122.676431, 51.293862], [-122.676809, 51.293134], [-122.676724, 51.292928], [-122.676596, 51.292738], [-122.676296, 51.292612], [-122.675938, 51.292575], [-122.675017, 51.292753], [-122.674101, 51.292741], [-122.673872, 51.292596], [-122.673774, 51.292398], [-122.673636, 51.291543], [-122.673464, 51.291381], [-122.672909, 51.291065], [-122.671536, 51.290485], [-122.671337, 51.290279], [-122.67134, 51.289802], [-122.671643, 51.289443], [-122.671818, 51.288967], [-122.67139, 51.288803], [-122.670371, 51.288684], [-122.669714, 51.288439], [-122.669501, 51.288286], [-122.669316, 51.28798], [-122.669219, 51.287476], [-122.669062, 51.287304], [-122.668492, 51.287024], [-122.668293, 51.286762], [-122.668236, 51.286537], [-122.668369, 51.286124], [-122.668862, 51.285496], [-122.669076, 51.285352], [-122.669365, 51.285237], [-122.670499, 51.285186], [-122.670944, 51.285097], [-122.671418, 51.284892], [-122.671937, 51.284561], [-122.672096, 51.284354], [-122.672226, 51.28396], [-122.672399, 51.283878], [-122.673834, 51.283712], [-122.674224, 51.283586], [-122.674266, 51.283497], [-122.673814, 51.282605], [-122.673405, 51.281544], [-122.673207, 51.281355], [-122.672592, 51.281091], [-122.671833, 51.281027], [-122.671574, 51.280936], [-122.671477, 51.280665], [-122.67178, 51.280406], [-122.673403, 51.279789], [-122.674756, 51.279066], [-122.675429, 51.278899], [-122.675073, 51.278429], [-122.674966, 51.277572], [-122.674383, 51.276119], [-122.674883, 51.274371], [-122.672854, 51.272156], [-122.670554, 51.271021], [-122.667067, 51.268368], [-122.664508, 51.267735], [-122.662414, 51.266718], [-122.661683, 51.266652], [-122.65921, 51.266812], [-122.658914, 51.265855], [-122.657912, 51.265004], [-122.656714, 51.264873], [-122.654615, 51.263513], [-122.653694, 51.26341], [-122.653518, 51.263292], [-122.652937, 51.261884], [-122.649546, 51.259663], [-122.647343, 51.258131], [-122.64616, 51.258027], [-122.644155, 51.258179], [-122.642045, 51.25699], [-122.640939, 51.255968], [-122.638566, 51.254723], [-122.635157, 51.251438], [-122.632193, 51.249844], [-122.630859, 51.248761], [-122.629491, 51.24814], [-122.628031, 51.247844], [-122.625108, 51.246818], [-122.622361, 51.246802], [-122.621178, 51.246507], [-122.61871, 51.246322], [-122.618169, 51.246157], [-122.616896, 51.245474], [-122.614879, 51.244787], [-122.613974, 51.244664], [-122.608945, 51.244913], [-122.606572, 51.245348], [-122.604541, 51.246117], [-122.603144, 51.247123], [-122.600388, 51.248336], [-122.598919, 51.248777], [-122.598364, 51.248773], [-122.597181, 51.248541], [-122.595633, 51.248136], [-122.593807, 51.247449], [-122.593354, 51.247393], [-122.592254, 51.247664], [-122.590879, 51.247773], [-122.590236, 51.247598], [-122.585224, 51.247567], [-122.583572, 51.247665], [-122.580196, 51.247644], [-122.57654, 51.2479], [-122.57381, 51.24755], [-122.57134, 51.247588], [-122.567236, 51.246437], [-122.563861, 51.245119], [-122.560664, 51.244361], [-122.556637, 51.241803], [-122.554535, 51.239987], [-122.552327, 51.237828], [-122.551775, 51.236922], [-122.551616, 51.234213], [-122.552298, 51.232752], [-122.55209, 51.231107], [-122.551529, 51.22975], [-122.546937, 51.226179], [-122.546386, 51.225265], [-122.545097, 51.224355], [-122.542555, 51.223276], [-122.541355, 51.222476], [-122.541317, 51.22234], [-122.538557, 51.22101], [-122.530226, 51.209121], [-122.522135, 51.209393], [-122.514703, 51.204232], [-122.510263, 51.196239], [-122.507852, 51.187719], [-122.470784, 51.156658], [-122.470797, 51.156518], [-122.460777, 51.151876], [-122.464614, 51.148396], [-122.468759, 51.143157], [-122.475847, 51.139347], [-122.478969, 51.132291], [-122.477756, 51.125893], [-122.465339, 51.114228], [-122.454212, 51.111639], [-122.441181, 51.110871], [-122.429667, 51.112266], [-122.387074, 51.110494], [-122.376336, 51.106982], [-122.372211, 51.102007], [-122.364301, 51.08808], [-122.3584, 51.074552], [-122.344625, 51.066677], [-122.327319, 51.061275], [-122.301187, 51.061743], [-122.306385, 51.044416], [-122.271516, 51.037642], [-122.247121, 51.03104], [-122.197152, 51.018385], [-122.175365, 51.016273], [-122.169462, 51.019949], [-122.160518, 51.020931], [-122.144129, 51.014864], [-122.141762, 51.007568], [-122.144237, 50.999399], [-122.151959, 50.999342], [-122.165339, 50.990252], [-122.007811, 50.987455], [-121.967547, 50.986898], [-121.924361, 50.986977], [-121.924359, 50.987017], [-121.9136, 50.987092], [-121.914206, 50.988504], [-121.914428, 50.989725], [-121.9144, 50.990951], [-121.914651, 50.992405], [-121.915157, 50.993887], [-121.915204, 50.995285], [-121.915425, 50.996522], [-121.915103, 50.996834], [-121.844623, 50.99778], [-121.696996, 50.996808], [-121.652958, 50.996246], [-121.627495, 50.996109], [-121.626815, 50.947971], [-121.626085, 50.924955], [-121.60685, 50.925254], [-121.48194, 50.925543], [-121.446625, 50.925655], [-121.446863, 50.937675], [-121.422574, 50.937814], [-121.405558, 50.937679], [-121.399752, 50.93768], [-121.399157, 50.925718], [-121.305738, 50.925597], [-121.306753, 50.925156], [-121.305539, 50.925598], [-121.295871, 50.925588], [-121.29544, 50.925418], [-121.295198, 50.925397], [-121.294898, 50.925419], [-121.294609, 50.925588], [-121.239056, 50.925511], [-121.13304, 50.925183], [-121.071078, 50.924854], [-121.071006, 50.958083], [-121.070711, 51.010335], [-121.072667, 51.072238], [-121.057588, 51.063802], [-121.017669, 51.050285], [-121.026178, 51.070922], [-120.99547, 51.082537], [-120.988075, 51.07914], [-120.97337, 51.059511], [-120.959342, 51.050694], [-120.946497, 51.049196], [-120.934225, 51.05698], [-120.931581, 51.068916], [-120.933259, 51.078873], [-120.938005, 51.090298], [-120.951159, 51.096374], [-120.972951, 51.108255], [-120.994965, 51.127941], [-120.999637, 51.134473], [-121.000958, 51.135798], [-120.975423, 51.168504], [-120.973791, 51.174885], [-120.978305, 51.174703], [-120.979255, 51.178277], [-120.972725, 51.178892], [-120.971307, 51.184435], [-120.960321, 51.204127], [-120.951554, 51.207725], [-120.917531, 51.214445], [-120.912971, 51.223939], [-120.905305, 51.231855], [-120.895899, 51.239216], [-120.886588, 51.244727], [-120.862488, 51.244018], [-120.842165, 51.24516], [-120.817835, 51.248418], [-120.803962, 51.250702], [-120.803535, 51.250638], [-120.798282, 51.246588], [-120.784979, 51.237519], [-120.776694, 51.232936], [-120.77513, 51.231807], [-120.768104, 51.232074], [-120.757383, 51.23132], [-120.74699, 51.236648], [-120.73517, 51.239693], [-120.724822, 51.236664], [-120.719391, 51.230135], [-120.720542, 51.223346], [-120.705579, 51.22435], [-120.694464, 51.22919], [-120.681111, 51.21514], [-120.674185, 51.217948], [-120.658044, 51.21924], [-120.653837, 51.219632], [-120.632211, 51.21884], [-120.617018, 51.216516], [-120.608237, 51.205957], [-120.592862, 51.197618], [-120.557774, 51.193571], [-120.560881, 51.249722], [-120.560793, 51.271777], [-120.558711, 51.299006], [-120.558002, 51.312935], [-120.557652, 51.363032], [-120.557608, 51.380244], [-120.557908, 51.393174], [-120.55834, 51.402503], [-120.560927, 51.426382], [-120.560796, 51.42638], [-120.560729, 51.434618], [-120.583958, 51.433855], [-120.619103, 51.433404], [-120.620087, 51.433586], [-120.621668, 51.433621], [-120.622647, 51.433825], [-120.622978, 51.433954], [-120.623223, 51.434163], [-120.632106, 51.433814], [-120.674199, 51.434172], [-120.697732, 51.433955], [-120.721955, 51.43445], [-120.727433, 51.434321], [-120.742477, 51.433567], [-120.783628, 51.434103], [-120.833467, 51.435159], [-120.895748, 51.442294], [-120.913944, 51.443477], [-120.935389, 51.444388], [-120.948329, 51.445102], [-120.96071, 51.439859], [-120.963315, 51.439915], [-121.001491, 51.438951], [-121.001735, 51.433813], [-121.00172, 51.42906], [-121.005371, 51.429095], [-121.025563, 51.429393], [-121.047601, 51.429848], [-121.06335, 51.435856], [-121.073796, 51.43458], [-121.078986, 51.436733], [-121.078976, 51.436927], [-121.081148, 51.437257], [-121.087596, 51.437447], [-121.090015, 51.437069], [-121.094351, 51.438374], [-121.107118, 51.438167], [-121.118344, 51.44105], [-121.12352, 51.440885], [-121.12515, 51.440771], [-121.133842, 51.43963], [-121.140019, 51.437901], [-121.159177, 51.433848], [-121.171792, 51.430894], [-121.197918, 51.419883], [-121.207968, 51.415137], [-121.21792, 51.410583], [-121.224329, 51.405659], [-121.234728, 51.400307], [-121.249436, 51.393024], [-121.269359, 51.383315], [-121.276619, 51.379858], [-121.282231, 51.376792], [-121.295739, 51.37662], [-121.309135, 51.377091], [-121.332599, 51.377365], [-121.342105, 51.378268], [-121.362486, 51.380068], [-121.385044, 51.378197], [-121.420642, 51.37756], [-121.419581, 51.395039], [-121.419303, 51.401611], [-121.426683, 51.401462], [-121.426162, 51.436703], [-121.464893, 51.436132], [-121.464966, 51.436204], [-121.473813, 51.436454], [-121.475584, 51.445951], [-121.50897, 51.446495], [-121.509495, 51.450387], [-121.525142, 51.451053], [-121.525577, 51.462816], [-121.526627, 51.547724], [-121.630498, 51.547384], [-121.63108, 51.564048], [-121.693001, 51.564578], [-121.696622, 51.564601], [-121.696672, 51.564561], [-121.696852, 51.564602], [-121.716274, 51.564811], [-121.738144, 51.564981], [-121.753437, 51.56516], [-121.885893, 51.566133], [-121.885728, 51.517847], [-121.946364, 51.517002], [-122.000031, 51.516316], [-122.055606, 51.516377], [-122.164239, 51.516086], [-122.179039, 51.51611], [-122.204008, 51.515964], [-122.266166, 51.515885], [-122.273861, 51.515822], [-122.280917, 51.515932], [-122.28227, 51.515899], [-122.281945, 51.516579], [-122.281805, 51.517967], [-122.281918, 51.51887], [-122.282787, 51.518802], [-122.282915, 51.518866], [-122.283765, 51.518943], [-122.284385, 51.518857], [-122.285205, 51.518924], [-122.285563, 51.519061], [-122.285707, 51.519179], [-122.286231, 51.519776], [-122.287405, 51.520287], [-122.289478, 51.520344], [-122.289923, 51.520428], [-122.290224, 51.520573], [-122.290452, 51.520791], [-122.290702, 51.521323], [-122.291128, 51.521855], [-122.291163, 51.522378], [-122.291042, 51.522718], [-122.291154, 51.522827], [-122.291556, 51.522946], [-122.292019, 51.52294], [-122.292712, 51.522755], [-122.293049, 51.52256], [-122.294085, 51.521657], [-122.294246, 51.521569], [-122.294908, 51.521528], [-122.295339, 51.521674], [-122.295907, 51.522227], [-122.296249, 51.522391], [-122.296466, 51.522382], [-122.297104, 51.522216], [-122.298516, 51.522124], [-122.300182, 51.52254], [-122.301695, 51.522549], [-122.302085, 51.522596], [-122.302699, 51.522968], [-122.303081, 51.523483], [-122.303422, 51.523655], [-122.303625, 51.523692], [-122.303987, 51.523596], [-122.304292, 51.523382], [-122.304409, 51.523257], [-122.304441, 51.522979], [-122.304675, 51.522845], [-122.305051, 51.522731], [-122.305659, 51.522663], [-122.30644, 51.522433], [-122.307429, 51.522879], [-122.308406, 51.523074], [-122.308997, 51.522969], [-122.309911, 51.522651], [-122.310085, 51.522517], [-122.310021, 51.521959], [-122.310393, 51.521233], [-122.310524, 51.521145], [-122.310914, 51.521092], [-122.311733, 51.521223], [-122.312724, 51.521526], [-122.313095, 51.521726], [-122.31335, 51.521988], [-122.313966, 51.522324], [-122.314824, 51.522698], [-122.315987, 51.523083], [-122.317056, 51.522953], [-122.317747, 51.52294], [-122.318311, 51.522799], [-122.318745, 51.522775], [-122.319835, 51.523087], [-122.32051, 51.523208], [-122.32117, 51.523428], [-122.322143, 51.523892], [-122.322504, 51.523993], [-122.323036, 51.523996], [-122.323601, 51.523828], [-122.323863, 51.523677], [-122.324512, 51.523654], [-122.32513, 51.523692], [-122.325734, 51.523841], [-122.326339, 51.52387], [-122.327186, 51.524083], [-122.328756, 51.524199], [-122.330442, 51.524218], [-122.331499, 51.523882], [-122.333369, 51.523137], [-122.333729, 51.52313], [-122.335059, 51.522922], [-122.335858, 51.52254], [-122.336808, 51.522519], [-122.337201, 51.522368], [-122.338886, 51.522368], [-122.339365, 51.522137], [-122.340174, 51.522087], [-122.340807, 51.522154], [-122.341838, 51.522564], [-122.342284, 51.522586], [-122.342896, 51.522211], [-122.343189, 51.521844], [-122.343399, 51.52136], [-122.344095, 51.521103], [-122.345287, 51.520327], [-122.345762, 51.520403], [-122.34689, 51.521019], [-122.347265, 51.521129], [-122.347568, 51.521105], [-122.34824, 51.520425], [-122.348848, 51.520132], [-122.349729, 51.520207], [-122.350733, 51.520565], [-122.351193, 51.520603], [-122.351525, 51.520569], [-122.352004, 51.520337], [-122.352804, 51.519784], [-122.353528, 51.519474], [-122.353933, 51.519475], [-122.354508, 51.519569], [-122.354811, 51.519517], [-122.355585, 51.518729], [-122.355892, 51.518534], [-122.357329, 51.517867], [-122.359208, 51.517419], [-122.360059, 51.517333], [-122.360663, 51.51739], [-122.361177, 51.517691], [-122.361903, 51.518477], [-122.36266, 51.518903], [-122.364433, 51.518913], [-122.364665, 51.518789], [-122.364797, 51.518609], [-122.364673, 51.518276], [-122.364058, 51.51784], [-122.364033, 51.51758], [-122.364181, 51.517329], [-122.364748, 51.516936], [-122.366558, 51.516389], [-122.366875, 51.516418], [-122.36859, 51.51738], [-122.369409, 51.517519], [-122.370187, 51.517506], [-122.370563, 51.517409], [-122.371719, 51.516272], [-122.372095, 51.516131], [-122.372412, 51.516168], [-122.372638, 51.516422], [-122.372712, 51.517402], [-122.372839, 51.517528], [-122.373026, 51.517538], [-122.373692, 51.517362], [-122.374172, 51.517086], [-122.375143, 51.516749], [-122.375619, 51.516663], [-122.376253, 51.516701], [-122.376497, 51.516738], [-122.377814, 51.517375], [-122.379451, 51.517842], [-122.38004, 51.517936], [-122.380603, 51.517885], [-122.381194, 51.517923], [-122.381464, 51.518087], [-122.381761, 51.518601], [-122.382049, 51.518675], [-122.382859, 51.518319], [-122.384493, 51.517986], [-122.386119, 51.51715], [-122.387161, 51.516822], [-122.387536, 51.516815], [-122.387952, 51.51688], [-122.38861, 51.517252], [-122.389401, 51.517444], [-122.389831, 51.517689], [-122.390695, 51.517722], [-122.391489, 51.517618], [-122.391751, 51.517395], [-122.39184, 51.517143], [-122.392074, 51.516902], [-122.393105, 51.516314], [-122.393746, 51.515866], [-122.39434, 51.515564], [-122.394702, 51.515485], [-122.395234, 51.515452], [-122.395651, 51.515508], [-122.396939, 51.516261], [-122.3976, 51.516409], [-122.397804, 51.516392], [-122.39909, 51.515931], [-122.399308, 51.515905], [-122.399738, 51.51596], [-122.400716, 51.516308], [-122.401329, 51.516734], [-122.401702, 51.516833], [-122.402163, 51.516836], [-122.402395, 51.516748], [-122.402528, 51.516596], [-122.403327, 51.514991], [-122.403765, 51.514398], [-122.404333, 51.514015], [-122.404667, 51.513864], [-122.405029, 51.513784], [-122.406007, 51.513817], [-122.408003, 51.514429], [-122.408145, 51.514538], [-122.408172, 51.514681], [-122.408048, 51.515409], [-122.408087, 51.515643], [-122.408174, 51.515752], [-122.408431, 51.515817], [-122.408605, 51.515817], [-122.408851, 51.515693], [-122.409219, 51.515137], [-122.409422, 51.515047], [-122.411657, 51.514996], [-122.412466, 51.514794], [-122.412842, 51.514642], [-122.413577, 51.514575], [-122.414117, 51.514172], [-122.414499, 51.513545], [-122.414909, 51.513071], [-122.415956, 51.512356], [-122.416695, 51.511991], [-122.417229, 51.512003], [-122.417873, 51.512213], [-122.418725, 51.512208], [-122.420854, 51.511329], [-122.421407, 51.51089], [-122.421754, 51.510775], [-122.424741, 51.510574], [-122.425159, 51.510432], [-122.426168, 51.510419], [-122.42734, 51.510066], [-122.427588, 51.509859], [-122.427635, 51.509509], [-122.427482, 51.509113], [-122.427084, 51.508634], [-122.427145, 51.50832], [-122.427322, 51.508104], [-122.428321, 51.50757], [-122.428829, 51.507411], [-122.429637, 51.50728], [-122.431236, 51.507305], [-122.432018, 51.507012], [-122.43294, 51.506991], [-122.43346, 51.506858], [-122.433781, 51.50667], [-122.43461, 51.505947], [-122.434815, 51.505696], [-122.434906, 51.505398], [-122.435269, 51.50506], [-122.435604, 51.504872], [-122.435921, 51.50482], [-122.436308, 51.504903], [-122.436896, 51.505229], [-122.43757, 51.505475], [-122.437767, 51.5058], [-122.438071, 51.50581], [-122.438243, 51.505757], [-122.438841, 51.505185], [-122.439509, 51.504864], [-122.439873, 51.504551], [-122.439875, 51.504434], [-122.43929, 51.503954], [-122.438512, 51.503754], [-122.438358, 51.503608], [-122.438447, 51.503168], [-122.438595, 51.502918], [-122.438903, 51.502559], [-122.439018, 51.502514], [-122.439293, 51.50247], [-122.441676, 51.503211], [-122.443371, 51.503543], [-122.443559, 51.503516], [-122.443806, 51.503302], [-122.444201, 51.502755], [-122.443559, 51.502311], [-122.443403, 51.502042], [-122.443435, 51.501906], [-122.443593, 51.501762], [-122.443943, 51.501603], [-122.4456, 51.501566], [-122.445787, 51.501503], [-122.445863, 51.501307], [-122.445735, 51.501045], [-122.445135, 51.50071], [-122.444322, 51.500004], [-122.444208, 51.499833], [-122.444184, 51.499545], [-122.444286, 51.499293], [-122.444418, 51.499178], [-122.444839, 51.498891], [-122.44523, 51.498813], [-122.445863, 51.498806], [-122.446454, 51.498908], [-122.447923, 51.49897], [-122.448528, 51.49881], [-122.448892, 51.498596], [-122.449357, 51.498139], [-122.449536, 51.497672], [-122.449584, 51.497286], [-122.449745, 51.497036], [-122.450022, 51.49683], [-122.450614, 51.496679], [-122.452822, 51.496402], [-122.453517, 51.496162], [-122.453619, 51.495956], [-122.453463, 51.495712], [-122.452199, 51.495455], [-122.451913, 51.495311], [-122.451801, 51.494941], [-122.451847, 51.494824], [-122.452165, 51.494654], [-122.452338, 51.49462], [-122.452899, 51.494667], [-122.454351, 51.495052], [-122.455011, 51.495127], [-122.455803, 51.49513], [-122.456166, 51.494979], [-122.456733, 51.494559], [-122.456792, 51.494442], [-122.456666, 51.494208], [-122.456034, 51.493899], [-122.455807, 51.493674], [-122.455709, 51.493395], [-122.455842, 51.493099], [-122.457267, 51.492116], [-122.457614, 51.491965], [-122.458625, 51.491709], [-122.459765, 51.491517], [-122.460432, 51.49124], [-122.460607, 51.490998], [-122.460611, 51.490621], [-122.460442, 51.490377], [-122.459998, 51.490087], [-122.458579, 51.48947], [-122.458598, 51.489091], [-122.45883, 51.488967], [-122.459047, 51.48895], [-122.461437, 51.489024], [-122.462622, 51.488742], [-122.46294, 51.488573], [-122.463116, 51.488321], [-122.463579, 51.486966], [-122.463954, 51.486805], [-122.46417, 51.486834], [-122.464901, 51.487106], [-122.465695, 51.487092], [-122.466442, 51.487194], [-122.46683, 51.487116], [-122.467511, 51.486804], [-122.467759, 51.48658], [-122.467894, 51.486059], [-122.467997, 51.485942], [-122.468982, 51.485525], [-122.469185, 51.485291], [-122.469174, 51.485148], [-122.469002, 51.484904], [-122.468433, 51.484426], [-122.468247, 51.484389], [-122.467395, 51.48443], [-122.465617, 51.483792], [-122.465476, 51.483557], [-122.465566, 51.483181], [-122.465856, 51.483028], [-122.466576, 51.483104], [-122.467481, 51.483279], [-122.467899, 51.483289], [-122.468057, 51.483228], [-122.468902, 51.482538], [-122.469194, 51.482118], [-122.47, 51.482202]], [[-122.160472, 51.47218], [-122.147749, 51.472065], [-122.150821, 51.467836], [-122.15506, 51.466406], [-122.158791, 51.467065], [-122.159268, 51.467429], [-122.158876, 51.46934], [-122.158615, 51.469742], [-122.160472, 51.47218]], [[-121.496326, 51.185829], [-121.496959, 51.190823], [-121.500598, 51.190818], [-121.501907, 51.203231], [-121.49258, 51.20374], [-121.49339, 51.20096], [-121.491435, 51.200969], [-121.491997, 51.198133], [-121.492108, 51.194761], [-121.491663, 51.190835], [-121.492487, 51.188022], [-121.493672, 51.186024], [-121.496326, 51.185829]], [[-121.599103, 51.085538], [-121.600786, 51.084628], [-121.603896, 51.08455], [-121.604086, 51.085394], [-121.604059, 51.085835], [-121.599045, 51.085701], [-121.59907, 51.087834], [-121.59984, 51.090819], [-121.592091, 51.096143], [-121.592232, 51.101245], [-121.60587, 51.10111], [-121.60589, 51.104245], [-121.59128, 51.104349], [-121.591371, 51.106462], [-121.583989, 51.106403], [-121.562581, 51.106532], [-121.562201, 51.104467], [-121.557256, 51.10444], [-121.559907, 51.103197], [-121.56066, 51.102764], [-121.561332, 51.102234], [-121.563011, 51.100568], [-121.563043, 51.097195], [-121.55731, 51.097175], [-121.557373, 51.090017], [-121.563121, 51.090021], [-121.563158, 51.082506], [-121.573816, 51.08238], [-121.574021, 51.081471], [-121.574282, 51.079384], [-121.58551, 51.079346], [-121.590634, 51.079043], [-121.590217, 51.075502], [-121.590504, 51.074502], [-121.597925, 51.079504], [-121.599646, 51.079503], [-121.599652, 51.081892], [-121.596616, 51.081894], [-121.593011, 51.084822], [-121.591381, 51.086023], [-121.591603, 51.08814], [-121.592885, 51.089063], [-121.59274, 51.089162], [-121.593881, 51.088872], [-121.594682, 51.088746], [-121.595155, 51.088729], [-121.59707, 51.087229], [-121.596312, 51.086852], [-121.596879, 51.086406], [-121.597636, 51.08679], [-121.599045, 51.085701], [-121.599103, 51.085538]], [[-122.029905, 51.108248], [-122.030145, 51.108429], [-122.031514, 51.109142], [-122.031893, 51.109433], [-122.032282, 51.109967], [-122.032874, 51.110421], [-122.033041, 51.110665], [-122.033537, 51.112136], [-122.034215, 51.113255], [-122.034617, 51.113754], [-122.034721, 51.114249], [-122.03545, 51.115676], [-122.036133, 51.116464], [-122.036376, 51.117176], [-122.036599, 51.117457], [-122.037046, 51.117974], [-122.037845, 51.118619], [-122.038141, 51.118845], [-122.038523, 51.119002], [-122.040967, 51.120335], [-122.042305, 51.120607], [-122.042717, 51.120772], [-122.043644, 51.120869], [-122.043911, 51.121087], [-122.044305, 51.121288], [-122.045879, 51.121256], [-122.046407, 51.121342], [-122.04702, 51.121365], [-122.047746, 51.12155], [-122.048241, 51.121752], [-122.049014, 51.122316], [-122.049852, 51.123312], [-122.049961, 51.123574], [-122.049958, 51.124401], [-122.049711, 51.125271], [-122.049949, 51.125552], [-122.049994, 51.126065], [-122.049846, 51.126378], [-122.049613, 51.126556], [-122.049599, 51.126637], [-122.050003, 51.12709], [-122.050009, 51.128143], [-122.049872, 51.128654], [-122.050049, 51.128979], [-122.050072, 51.129266], [-122.049727, 51.130028], [-122.048565, 51.131017], [-122.048498, 51.131403], [-122.047685, 51.13207], [-122.046252, 51.133012], [-122.045985, 51.133478], [-122.043787, 51.134655], [-122.042172, 51.136045], [-122.041208, 51.136983], [-122.040368, 51.138234], [-122.039871, 51.138743], [-122.039904, 51.139291], [-122.040089, 51.139311], [-122.040159, 51.139411], [-122.040098, 51.139553], [-122.039692, 51.13982], [-122.031221, 51.139261], [-122.031298, 51.138436], [-122.031438, 51.137991], [-122.031438, 51.137699], [-122.031281, 51.137257], [-122.03102, 51.137131], [-122.030501, 51.137122], [-122.030039, 51.136728], [-122.030036, 51.136605], [-122.030302, 51.136309], [-122.030313, 51.135946], [-122.030419, 51.13577], [-122.030179, 51.135406], [-122.030355, 51.135201], [-122.030325, 51.134359], [-122.03057, 51.134076], [-122.030877, 51.133955], [-122.031304, 51.133643], [-122.031759, 51.133086], [-122.031792, 51.132939], [-122.023685, 51.133062], [-122.021467, 51.116299], [-122.013136, 51.116608], [-122.006937, 51.117073], [-122.006617, 51.112545], [-121.960889, 51.11178], [-121.959976, 51.092675], [-121.949046, 51.092074], [-121.948003, 51.080603], [-121.958855, 51.082989], [-121.982283, 51.084151], [-121.984976, 51.084378], [-121.985211, 51.086266], [-121.986308, 51.099093], [-122.000642, 51.09901], [-122.000484, 51.099723], [-122.024728, 51.099815], [-122.028269, 51.099917], [-122.02708, 51.107674], [-122.027155, 51.108453], [-122.027825, 51.108644], [-122.028595, 51.108749], [-122.02904, 51.108654], [-122.029119, 51.108222], [-122.029393, 51.108189], [-122.029905, 51.108248]], [[-122.108056, 51.426552], [-122.107118, 51.451467], [-122.086313, 51.451651], [-122.071977, 51.451413], [-122.073396, 51.438476], [-122.066609, 51.438408], [-122.030995, 51.4376], [-122.02008, 51.437014], [-122.000142, 51.437666], [-122.000238, 51.436457], [-121.977477, 51.435821], [-121.978396, 51.412338], [-121.97639, 51.406968], [-121.979777, 51.407484], [-122.000948, 51.407006], [-122.000958, 51.410629], [-122.000207, 51.42456], [-122.086864, 51.425358], [-122.108056, 51.426552]]]]}, "properties": {"name": "Thompson-Nicola E (Bonaparte Plateau)", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola E (Bonaparte Plateau)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933032", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.211027, 50.56856], [-121.249502, 50.562919], [-121.267538, 50.56202], [-121.284764, 50.56183], [-121.28488, 50.5673], [-121.285967, 50.567386], [-121.294276, 50.567222], [-121.29694, 50.567087], [-121.296078, 50.565989], [-121.295712, 50.565201], [-121.295227, 50.563412], [-121.295187, 50.562927], [-121.295224, 50.562674], [-121.295572, 50.562015], [-121.295782, 50.561326], [-121.295831, 50.560327], [-121.29621, 50.559226], [-121.296307, 50.558473], [-121.296315, 50.558284], [-121.296151, 50.558101], [-121.2962, 50.557922], [-121.296495, 50.557576], [-121.296672, 50.556995], [-121.296672, 50.556211], [-121.296803, 50.55571], [-121.296781, 50.555502], [-121.29663, 50.555411], [-121.296309, 50.554884], [-121.296075, 50.554737], [-121.295315, 50.55388], [-121.294463, 50.553265], [-121.294014, 50.552746], [-121.293572, 50.552533], [-121.29286, 50.551893], [-121.292292, 50.551192], [-121.291503, 50.550416], [-121.291037, 50.549609], [-121.290493, 50.549043], [-121.290091, 50.548471], [-121.290008, 50.548011], [-121.28982, 50.547737], [-121.289935, 50.54728], [-121.289589, 50.546718], [-121.289291, 50.54639], [-121.288919, 50.545746], [-121.288274, 50.545251], [-121.28795, 50.54486], [-121.280543, 50.54568], [-121.256782, 50.547398], [-121.242225, 50.548952], [-121.234469, 50.549583], [-121.234818, 50.534202], [-121.223216, 50.533999], [-121.202248, 50.535035], [-121.180619, 50.535596], [-121.177315, 50.535618], [-121.138353, 50.534983], [-121.138215, 50.531191], [-121.138051, 50.520181], [-121.119727, 50.520144], [-121.119127, 50.499193], [-121.119301, 50.491281], [-121.138732, 50.490946], [-121.139514, 50.474361], [-121.140734, 50.443602], [-121.140808, 50.43251], [-121.10545, 50.43246], [-121.100039, 50.432386], [-121.092031, 50.432381], [-121.071369, 50.431742], [-121.072406, 50.407475], [-121.073387, 50.388538], [-121.000232, 50.387778], [-120.958336, 50.387911], [-120.958109, 50.39143], [-120.958007, 50.392053], [-120.957983, 50.393637], [-120.958267, 50.400726], [-120.957386, 50.415893], [-120.957413, 50.416835], [-120.934929, 50.416596], [-120.916736, 50.416484], [-120.903952, 50.416469], [-120.890471, 50.416219], [-120.888214, 50.459612], [-120.866138, 50.459295], [-120.863699, 50.459374], [-120.862646, 50.474968], [-120.820712, 50.474792], [-120.818828, 50.474698], [-120.812191, 50.472204], [-120.810399, 50.471971], [-120.809479, 50.472825], [-120.809165, 50.472936], [-120.807497, 50.473022], [-120.8061, 50.473678], [-120.805746, 50.473698], [-120.805243, 50.473626], [-120.804421, 50.47371], [-120.803613, 50.473191], [-120.802813, 50.473122], [-120.802198, 50.473308], [-120.801529, 50.473754], [-120.801289, 50.473785], [-120.80063, 50.47371], [-120.799995, 50.473995], [-120.799788, 50.474225], [-120.799591, 50.474823], [-120.799183, 50.4754], [-120.798545, 50.47582], [-120.798187, 50.476255], [-120.797882, 50.476447], [-120.796839, 50.476732], [-120.796229, 50.47681], [-120.796037, 50.476997], [-120.79607, 50.477824], [-120.795897, 50.47818], [-120.79556, 50.478454], [-120.794512, 50.478865], [-120.793987, 50.479241], [-120.793848, 50.479501], [-120.793759, 50.480208], [-120.793782, 50.480327], [-120.794078, 50.480637], [-120.79401, 50.481473], [-120.793517, 50.482057], [-120.792812, 50.482413], [-120.792589, 50.482597], [-120.792463, 50.4829], [-120.792359, 50.483636], [-120.792134, 50.483928], [-120.791741, 50.484182], [-120.79149, 50.484262], [-120.781135, 50.483456], [-120.784393, 50.497611], [-120.78429, 50.500918], [-120.784308, 50.503888], [-120.79196, 50.503869], [-120.80348, 50.503659], [-120.819831, 50.503726], [-120.820068, 50.505244], [-120.837625, 50.505215], [-120.838093, 50.510449], [-120.838157, 50.51207], [-120.842926, 50.51191], [-120.843451, 50.504466], [-120.884822, 50.503178], [-120.899472, 50.503025], [-120.912898, 50.503191], [-120.912928, 50.518309], [-120.935849, 50.518121], [-120.935871, 50.503323], [-120.958429, 50.503509], [-120.958552, 50.509729], [-120.959687, 50.543967], [-120.959557, 50.54799], [-120.969811, 50.547979], [-120.990278, 50.548261], [-121.017351, 50.54852], [-121.026233, 50.548422], [-121.026538, 50.533198], [-121.050309, 50.532889], [-121.050801, 50.563667], [-121.069101, 50.563859], [-121.086681, 50.563812], [-121.097095, 50.563975], [-121.096942, 50.568962], [-121.096291, 50.579351], [-121.116479, 50.579959], [-121.128555, 50.580751], [-121.175828, 50.579261], [-121.199292, 50.578225], [-121.209357, 50.578004], [-121.208174, 50.570254], [-121.208236, 50.569871], [-121.208099, 50.568926], [-121.211027, 50.56856]]]]}, "properties": {"name": "Logan Lake", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Logan Lake", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933035", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.541968, 50.925408], [-121.60685, 50.925254], [-121.626137, 50.924954], [-121.625338, 50.896041], [-121.648728, 50.895666], [-121.649007, 50.881767], [-121.672833, 50.881634], [-121.672396, 50.852853], [-121.696323, 50.852703], [-121.696598, 50.837994], [-121.719893, 50.8377], [-121.720688, 50.793719], [-121.742914, 50.79371], [-121.743573, 50.750392], [-121.765969, 50.750212], [-121.765961, 50.670162], [-121.766576, 50.63235], [-121.766857, 50.575327], [-121.762356, 50.575331], [-121.762066, 50.560053], [-121.761942, 50.557734], [-121.762004, 50.555574], [-121.761929, 50.546396], [-121.766411, 50.54638], [-121.767077, 50.539819], [-121.769218, 50.539863], [-121.769339, 50.536605], [-121.775938, 50.536514], [-121.775795, 50.536334], [-121.775759, 50.536072], [-121.775951, 50.535768], [-121.776152, 50.535617], [-121.776466, 50.535522], [-121.77679, 50.535508], [-121.777305, 50.535251], [-121.777172, 50.534962], [-121.777158, 50.534405], [-121.777011, 50.534062], [-121.777021, 50.533639], [-121.777199, 50.533317], [-121.777217, 50.532642], [-121.777044, 50.532299], [-121.776766, 50.532117], [-121.776938, 50.531983], [-121.7769, 50.531847], [-121.776444, 50.531466], [-121.776448, 50.531259], [-121.776691, 50.531162], [-121.776693, 50.531073], [-121.776566, 50.530985], [-121.783063, 50.531052], [-121.783865, 50.530983], [-121.784871, 50.530779], [-121.784908, 50.530582], [-121.784561, 50.529965], [-121.784579, 50.516889], [-121.806974, 50.517309], [-121.807991, 50.516033], [-121.812512, 50.512628], [-121.814678, 50.511114], [-121.816362, 50.509441], [-121.818784, 50.50816], [-121.822397, 50.505906], [-121.824828, 50.503584], [-121.826054, 50.501517], [-121.826182, 50.499491], [-121.828538, 50.494803], [-121.830869, 50.491746], [-121.831958, 50.487831], [-121.833705, 50.487398], [-121.839339, 50.485299], [-121.840354, 50.484022], [-121.840728, 50.482999], [-121.840964, 50.479449], [-121.841234, 50.47846], [-121.850365, 50.474141], [-121.852946, 50.473213], [-121.854929, 50.471892], [-121.856723, 50.468918], [-121.858107, 50.467025], [-121.859427, 50.464521], [-121.862433, 50.460885], [-121.862247, 50.460497], [-121.861396, 50.460002], [-121.859229, 50.458091], [-121.858824, 50.45511], [-121.857552, 50.452637], [-121.855588, 50.451066], [-121.854943, 50.450261], [-121.854999, 50.449958], [-121.857045, 50.448383], [-121.861736, 50.443113], [-121.863575, 50.441613], [-121.865907, 50.43914], [-121.867606, 50.437731], [-121.868324, 50.436685], [-121.868299, 50.434799], [-121.867662, 50.433473], [-121.866859, 50.432381], [-121.865805, 50.431416], [-121.864937, 50.430792], [-121.864609, 50.430242], [-121.864507, 50.429088], [-121.865303, 50.427521], [-121.866804, 50.42613], [-121.867997, 50.424795], [-121.870443, 50.422465], [-121.872125, 50.422008], [-121.874735, 50.421475], [-121.876731, 50.421322], [-121.877795, 50.420975], [-121.880118, 50.419994], [-121.88312, 50.419332], [-121.886076, 50.419499], [-121.892483, 50.418947], [-121.896707, 50.419197], [-121.900795, 50.419896], [-121.903251, 50.420496], [-121.905054, 50.420631], [-121.907527, 50.420457], [-121.913816, 50.419491], [-121.919494, 50.419086], [-121.920687, 50.417929], [-121.920842, 50.416976], [-121.922008, 50.415874], [-121.923516, 50.415111], [-121.927162, 50.414284], [-121.927273, 50.414158], [-121.926891, 50.413064], [-121.926559, 50.411593], [-121.926333, 50.410971], [-121.926457, 50.410602], [-121.928097, 50.409015], [-121.929246, 50.408167], [-121.930469, 50.407695], [-121.932013, 50.407467], [-121.93553, 50.407539], [-121.938976, 50.40664], [-121.940206, 50.406148], [-121.942047, 50.405284], [-121.942733, 50.405134], [-121.948466, 50.40553], [-121.949229, 50.405778], [-121.949594, 50.405704], [-121.950059, 50.404875], [-121.95238, 50.403981], [-121.953301, 50.403455], [-121.954299, 50.402497], [-121.95504, 50.401307], [-121.957331, 50.40223], [-121.95993, 50.403008], [-121.962033, 50.40449], [-121.96475, 50.40568], [-121.966181, 50.407382], [-121.966772, 50.409358], [-121.967074, 50.410796], [-121.966615, 50.412167], [-121.965359, 50.412895], [-121.965019, 50.413505], [-121.965232, 50.414], [-121.966086, 50.414511], [-121.967856, 50.416283], [-121.968405, 50.417324], [-121.973496, 50.417242], [-121.97784, 50.416139], [-121.98043, 50.416286], [-121.982341, 50.416113], [-121.984765, 50.416406], [-121.987341, 50.415654], [-121.990049, 50.416187], [-121.990572, 50.416168], [-121.992094, 50.415591], [-121.997738, 50.414875], [-122.000743, 50.41457], [-122.002171, 50.414148], [-122.004356, 50.413614], [-122.007852, 50.412335], [-122.011397, 50.412125], [-122.011723, 50.412254], [-122.012931, 50.413294], [-122.015151, 50.414379], [-122.015574, 50.414454], [-122.017445, 50.414167], [-122.020007, 50.414278], [-122.021877, 50.415112], [-122.022984, 50.416065], [-122.02358, 50.41636], [-122.026465, 50.416955], [-122.030383, 50.417435], [-122.031804, 50.418326], [-122.035765, 50.41965], [-122.040727, 50.420285], [-122.042647, 50.420759], [-122.042964, 50.4211], [-122.043288, 50.423743], [-122.043814, 50.424927], [-122.04501, 50.425801], [-122.045542, 50.427346], [-122.04515, 50.429239], [-122.045281, 50.430372], [-122.045684, 50.430874], [-122.046307, 50.431122], [-122.046956, 50.431225], [-122.051131, 50.430174], [-122.054723, 50.42954], [-122.056648, 50.428593], [-122.059288, 50.426689], [-122.060485, 50.42598], [-122.061381, 50.425686], [-122.068639, 50.425567], [-122.072968, 50.425323], [-122.075342, 50.425901], [-122.076245, 50.42718], [-122.076676, 50.427456], [-122.079605, 50.428302], [-122.084209, 50.430863], [-122.087317, 50.431561], [-122.093116, 50.433231], [-122.095617, 50.432999], [-122.098898, 50.432329], [-122.100952, 50.432333], [-122.103292, 50.432515], [-122.104134, 50.432419], [-122.105504, 50.431924], [-122.107728, 50.430471], [-122.108261, 50.430341], [-122.110093, 50.430508], [-122.113856, 50.43158], [-122.119141, 50.432784], [-122.120097, 50.432741], [-122.121606, 50.432155], [-122.123396, 50.431567], [-122.126198, 50.430918], [-122.129522, 50.4296], [-122.131469, 50.428418], [-122.131653, 50.42777], [-122.131296, 50.426802], [-122.129626, 50.424911], [-122.125903, 50.421707], [-122.121927, 50.419942], [-122.119272, 50.418058], [-122.118349, 50.416916], [-122.117996, 50.416128], [-122.118402, 50.415317], [-122.119066, 50.414737], [-122.122533, 50.413598], [-122.123761, 50.413104], [-122.126836, 50.4092], [-122.127914, 50.408168], [-122.130061, 50.407236], [-122.132262, 50.406105], [-122.132675, 50.405653], [-122.132367, 50.404308], [-122.13007, 50.400589], [-122.130089, 50.400086], [-122.131059, 50.39936], [-122.133872, 50.397938], [-122.136028, 50.397455], [-122.137833, 50.397766], [-122.138367, 50.397726], [-122.139566, 50.397196], [-122.139755, 50.396817], [-122.139739, 50.396009], [-122.139533, 50.39558], [-122.138679, 50.395048], [-122.138363, 50.394745], [-122.138089, 50.393705], [-122.138955, 50.391974], [-122.140697, 50.390451], [-122.141147, 50.389083], [-122.140129, 50.387384], [-122.140095, 50.387079], [-122.143597, 50.385023], [-122.1441, 50.384857], [-122.147098, 50.384368], [-122.15081, 50.384413], [-122.155102, 50.379744], [-122.154472, 50.377827], [-122.154805, 50.376226], [-122.156742, 50.374684], [-122.157161, 50.374591], [-122.159298, 50.374611], [-122.160308, 50.37455], [-122.162376, 50.373959], [-122.163988, 50.373066], [-122.164124, 50.372796], [-122.163566, 50.371669], [-122.163079, 50.371241], [-122.156941, 50.369515], [-122.154261, 50.369089], [-122.151267, 50.36845], [-122.149496, 50.367045], [-122.147926, 50.364072], [-122.146836, 50.36218], [-122.145419, 50.360432], [-122.148569, 50.359348], [-122.151007, 50.35782], [-122.152002, 50.355818], [-122.15275, 50.355346], [-122.154015, 50.354114], [-122.153947, 50.353594], [-122.153126, 50.352056], [-122.152947, 50.351572], [-122.154321, 50.350214], [-122.155017, 50.349939], [-122.156748, 50.349549], [-122.158063, 50.349341], [-122.159512, 50.348863], [-122.161762, 50.347804], [-122.166624, 50.346833], [-122.167402, 50.346485], [-122.167948, 50.345762], [-122.169085, 50.343849], [-122.17062, 50.340945], [-122.170237, 50.3389], [-122.170791, 50.337315], [-122.172408, 50.33556], [-122.174335, 50.33515], [-122.176384, 50.335242], [-122.180383, 50.33469], [-122.181255, 50.334809], [-122.183117, 50.335371], [-122.185638, 50.336664], [-122.189117, 50.338184], [-122.191323, 50.339084], [-122.192196, 50.339293], [-122.194236, 50.338935], [-122.197168, 50.338283], [-122.199803, 50.338227], [-122.20137, 50.33807], [-122.201925, 50.337796], [-122.202412, 50.337002], [-122.203809, 50.3355], [-122.204832, 50.334844], [-122.206254, 50.33442], [-122.211595, 50.333694], [-122.212628, 50.333488], [-122.213791, 50.332832], [-122.214412, 50.331767], [-122.214372, 50.330061], [-122.214439, 50.328138], [-122.214791, 50.326393], [-122.215286, 50.325958], [-122.21637, 50.325554], [-122.218304, 50.325502], [-122.22215, 50.325723], [-122.226606, 50.325651], [-122.234296, 50.324689], [-122.237774, 50.323492], [-122.240007, 50.323024], [-122.241924, 50.322253], [-122.24214, 50.32191], [-122.241726, 50.321052], [-122.242166, 50.319503], [-122.243485, 50.318342], [-122.243808, 50.316651], [-122.243575, 50.316276], [-122.242264, 50.315534], [-122.24009, 50.315123], [-122.238696, 50.314453], [-122.237431, 50.313243], [-122.237318, 50.312059], [-122.23868, 50.310341], [-122.240788, 50.309371], [-122.243513, 50.308378], [-122.249392, 50.305615], [-122.24978, 50.304264], [-122.249402, 50.302579], [-122.248947, 50.296621], [-122.248035, 50.293756], [-122.246693, 50.291666], [-122.245864, 50.291081], [-122.243873, 50.290022], [-122.240673, 50.288956], [-122.238058, 50.287651], [-122.237139, 50.28678], [-122.236205, 50.285279], [-122.2362, 50.282747], [-122.237311, 50.281157], [-122.237354, 50.2806], [-122.235645, 50.278406], [-122.234531, 50.276423], [-122.234612, 50.275129], [-122.234971, 50.274875], [-122.236455, 50.274881], [-122.240062, 50.274635], [-122.243453, 50.273511], [-122.245329, 50.272255], [-122.247548, 50.271338], [-122.249532, 50.269956], [-122.250065, 50.268784], [-122.250503, 50.268367], [-122.255398, 50.265703], [-122.258117, 50.264619], [-122.258639, 50.26422], [-122.260535, 50.261509], [-122.261764, 50.260241], [-122.262525, 50.259264], [-122.262994, 50.258973], [-122.264974, 50.258633], [-122.267645, 50.259149], [-122.269061, 50.259946], [-122.269681, 50.260103], [-122.271479, 50.260411], [-122.272065, 50.260352], [-122.273364, 50.259604], [-122.275067, 50.258224], [-122.277416, 50.256946], [-122.282381, 50.256202], [-122.286491, 50.255968], [-122.289281, 50.255584], [-122.291158, 50.254507], [-122.291854, 50.254322], [-122.2937, 50.254251], [-122.295706, 50.253856], [-122.298309, 50.252719], [-122.299551, 50.251989], [-122.30307, 50.249371], [-122.303163, 50.248616], [-122.301556, 50.246117], [-122.300089, 50.244659], [-122.298234, 50.24342], [-122.296962, 50.241942], [-122.296022, 50.240263], [-122.295679, 50.238884], [-122.296089, 50.237389], [-122.297168, 50.235763], [-122.300532, 50.233739], [-122.30086, 50.232317], [-122.30163, 50.229787], [-122.298996, 50.229073], [-122.286436, 50.223864], [-122.274956, 50.224425], [-122.267684, 50.222436], [-122.269033, 50.218923], [-122.27735, 50.214051], [-122.277951, 50.203316], [-122.283334, 50.199994], [-122.294982, 50.201099], [-122.303108, 50.198586], [-122.301555, 50.192589], [-122.316251, 50.18712], [-122.313553, 50.172309], [-122.298321, 50.173745], [-122.290864, 50.157457], [-122.286259, 50.152479], [-122.271197, 50.145238], [-122.275964, 50.141162], [-122.268204, 50.132256], [-122.25844, 50.123444], [-122.255939, 50.1218], [-122.25293, 50.123549], [-122.250824, 50.124399], [-122.248111, 50.124929], [-122.246454, 50.125181], [-122.245519, 50.125597], [-122.244332, 50.126243], [-122.243135, 50.126453], [-122.238468, 50.125371], [-122.236108, 50.125184], [-122.231646, 50.125995], [-122.228249, 50.126975], [-122.227091, 50.126837], [-122.226016, 50.126223], [-122.224862, 50.124066], [-122.222917, 50.121648], [-122.222329, 50.120049], [-122.221767, 50.119639], [-122.221248, 50.119138], [-122.221381, 50.11887], [-122.221975, 50.118598], [-122.222665, 50.118443], [-122.222981, 50.118114], [-122.223418, 50.116922], [-122.224866, 50.115544], [-122.2275, 50.113472], [-122.229448, 50.111703], [-122.229915, 50.110512], [-122.222198, 50.110818], [-122.210894, 50.108703], [-122.204513, 50.110671], [-122.198275, 50.110484], [-122.196325, 50.11068], [-122.189972, 50.109477], [-122.181241, 50.110267], [-122.178712, 50.109451], [-122.176016, 50.109593], [-122.170033, 50.112931], [-122.163424, 50.112865], [-122.159361, 50.114512], [-122.153218, 50.114442], [-122.150641, 50.111232], [-122.145864, 50.109655], [-122.13697, 50.111699], [-122.132312, 50.111436], [-122.131118, 50.112282], [-122.128578, 50.110867], [-122.116367, 50.107312], [-122.115538, 50.107737], [-122.114237, 50.113128], [-122.106477, 50.116297], [-122.104283, 50.118526], [-122.10441, 50.120438], [-122.103225, 50.121883], [-122.100079, 50.122923], [-122.099079, 50.124306], [-122.095922, 50.124748], [-122.089279, 50.122882], [-122.087206, 50.121462], [-122.083753, 50.120949], [-122.079701, 50.12349], [-122.07007, 50.12637], [-122.068103, 50.125666], [-122.066092, 50.12257], [-122.06737, 50.121245], [-122.061712, 50.117098], [-122.058254, 50.116285], [-122.05632, 50.114744], [-122.055901, 50.112175], [-122.056967, 50.109416], [-122.053674, 50.107346], [-122.052131, 50.104246], [-122.044886, 50.099572], [-122.042176, 50.098813], [-122.04113, 50.097504], [-122.039788, 50.095241], [-122.036418, 50.093948], [-122.031487, 50.093921], [-122.029872, 50.091899], [-122.026292, 50.089172], [-122.023631, 50.08584], [-122.018218, 50.084621], [-122.010399, 50.084193], [-122.005584, 50.085481], [-122.004685, 50.087579], [-122.001151, 50.087542], [-121.998902, 50.08648], [-121.997658, 50.084335], [-121.992311, 50.084369], [-121.990318, 50.08187], [-121.986296, 50.080341], [-121.984816, 50.080828], [-121.981177, 50.080074], [-121.976271, 50.081539], [-121.974063, 50.083167], [-121.972393, 50.083417], [-121.969865, 50.082296], [-121.964476, 50.082568], [-121.959392, 50.084691], [-121.957743, 50.086435], [-121.957694, 50.089605], [-121.956316, 50.090809], [-121.953431, 50.090706], [-121.950605, 50.088331], [-121.952191, 50.0827], [-121.950656, 50.079599], [-121.948034, 50.078359], [-121.944509, 50.078918], [-121.939581, 50.078886], [-121.935745, 50.077294], [-121.936088, 50.075378], [-121.934861, 50.07413], [-121.927937, 50.074229], [-121.924743, 50.071975], [-121.919906, 50.071763], [-121.918108, 50.069501], [-121.912627, 50.063192], [-121.912506, 50.061279], [-121.910519, 50.058779], [-121.910369, 50.054773], [-121.908679, 50.053527], [-121.903828, 50.052118], [-121.902446, 50.053022], [-121.900402, 50.053093], [-121.895802, 50.04965], [-121.892082, 50.049371], [-121.886712, 50.050834], [-121.880771, 50.051284], [-121.878342, 50.05028], [-121.872782, 50.051505], [-121.869287, 50.050626], [-121.866095, 50.048071], [-121.862919, 50.046712], [-121.858455, 50.046375], [-121.856342, 50.048419], [-121.855622, 50.050455], [-121.853404, 50.051482], [-121.851735, 50.05173], [-121.85091, 50.05275], [-121.855791, 50.057448], [-121.85534, 50.058646], [-121.853209, 50.059195], [-121.848506, 50.062387], [-121.848335, 50.063643], [-121.852849, 50.068762], [-121.84853, 50.073029], [-121.849391, 50.075296], [-121.848007, 50.0762], [-121.842355, 50.077902], [-121.838727, 50.07774], [-121.836507, 50.078767], [-121.829251, 50.078442], [-121.822864, 50.080983], [-121.817012, 50.081549], [-121.814145, 50.082937], [-121.808152, 50.083323], [-121.801197, 50.085147], [-121.793622, 50.090024], [-121.790835, 50.090335], [-121.786071, 50.088442], [-121.779473, 50.088948], [-121.777792, 50.088297], [-121.767757, 50.089176], [-121.758763, 50.091963], [-121.753465, 50.092342], [-121.750672, 50.092054], [-121.748982, 50.090506], [-121.737146, 50.08792], [-121.731055, 50.087883], [-121.726208, 50.086764], [-121.714579, 50.086208], [-121.706914, 50.08181], [-121.704817, 50.076196], [-121.702667, 50.074947], [-121.698578, 50.075081], [-121.695702, 50.075868], [-121.690211, 50.075108], [-121.686868, 50.075598], [-121.681592, 50.078664], [-121.675731, 50.078324], [-121.670996, 50.079116], [-121.666266, 50.080805], [-121.662223, 50.080996], [-121.658027, 50.079514], [-121.656987, 50.077304], [-121.657624, 50.075748], [-121.654614, 50.071331], [-121.65728, 50.067914], [-121.659688, 50.06713], [-121.661249, 50.064972], [-121.655567, 50.063374], [-121.65341, 50.060929], [-121.649966, 50.060102], [-121.641031, 50.058214], [-121.637038, 50.058763], [-121.635636, 50.057571], [-121.635327, 50.053625], [-121.632156, 50.051959], [-121.628968, 50.051973], [-121.626085, 50.050907], [-121.617308, 50.045499], [-121.609751, 50.041882], [-121.598701, 50.045836], [-121.590133, 50.049589], [-121.57573, 50.050832], [-121.564979, 50.052228], [-121.559538, 50.052248], [-121.55192, 50.052154], [-121.546012, 50.052194], [-121.543707, 50.052296], [-121.542682, 50.052408], [-121.543135, 50.054121], [-121.542721, 50.054156], [-121.542107, 50.052388], [-121.526167, 50.052187], [-121.443459, 50.052354], [-121.375226, 50.052542], [-121.338208, 50.052551], [-121.315328, 50.052466], [-121.315365, 50.054253], [-121.315739, 50.056659], [-121.316223, 50.058417], [-121.316226, 50.06033], [-121.315081, 50.061995], [-121.312426, 50.064369], [-121.30988, 50.066095], [-121.308745, 50.067297], [-121.308472, 50.068685], [-121.309089, 50.070937], [-121.310242, 50.072634], [-121.311736, 50.073992], [-121.314344, 50.076676], [-121.315998, 50.079515], [-121.316982, 50.082415], [-121.316998, 50.084636], [-121.316563, 50.085624], [-121.313483, 50.088462], [-121.313622, 50.089574], [-121.315577, 50.092106], [-121.31562, 50.093247], [-121.314749, 50.095377], [-121.315272, 50.096519], [-121.315219, 50.097692], [-121.311706, 50.100438], [-121.307568, 50.103307], [-121.307422, 50.104048], [-121.308043, 50.104542], [-121.311437, 50.106304], [-121.313919, 50.109207], [-121.316592, 50.112048], [-121.317835, 50.112728], [-121.319079, 50.113254], [-121.319939, 50.114211], [-121.319742, 50.115507], [-121.318535, 50.117359], [-121.31834, 50.118346], [-121.319006, 50.119828], [-121.318954, 50.120847], [-121.319094, 50.121804], [-121.319809, 50.123039], [-121.321432, 50.124984], [-121.321764, 50.126034], [-121.321329, 50.126867], [-121.319886, 50.127639], [-121.317721, 50.12841], [-121.309689, 50.13091], [-121.303486, 50.132359], [-121.300889, 50.133038], [-121.299156, 50.133902], [-121.296696, 50.136617], [-121.293417, 50.139672], [-121.293554, 50.1414], [-121.292538, 50.143036], [-121.291926, 50.145814], [-121.292248, 50.149024], [-121.293248, 50.150631], [-121.294541, 50.151218], [-121.297272, 50.151499], [-121.297796, 50.152333], [-121.286341, 50.156002], [-121.279116, 50.156513], [-121.267054, 50.149801], [-121.24818, 50.145377], [-121.235443, 50.148276], [-121.239316, 50.158491], [-121.23629, 50.164842], [-121.232552, 50.171464], [-121.228379, 50.174413], [-121.22158, 50.178366], [-121.219431, 50.179356], [-121.220305, 50.188991], [-121.209604, 50.191564], [-121.2011, 50.189983], [-121.191004, 50.189697], [-121.180254, 50.192494], [-121.16889, 50.193506], [-121.158584, 50.197284], [-121.145586, 50.199777], [-121.139554, 50.198178], [-121.140317, 50.227216], [-121.127942, 50.227378], [-121.099641, 50.226861], [-121.099466, 50.23161], [-121.104779, 50.231957], [-121.104693, 50.236481], [-121.103631, 50.235758], [-121.102478, 50.235299], [-121.101214, 50.234136], [-121.099815, 50.233571], [-121.098015, 50.233172], [-121.097011, 50.232833], [-121.096402, 50.232499], [-121.094998, 50.231286], [-121.094375, 50.230372], [-121.092043, 50.230031], [-121.090782, 50.230336], [-121.091375, 50.227965], [-121.09118, 50.22714], [-121.080853, 50.227093], [-121.052802, 50.227489], [-121.015342, 50.227715], [-120.970075, 50.227859], [-120.95215, 50.241532], [-120.944922, 50.252641], [-120.94826, 50.256234], [-120.947124, 50.264683], [-120.954246, 50.266012], [-120.963049, 50.263175], [-120.966076, 50.27295], [-120.959667, 50.279405], [-120.954146, 50.287248], [-120.944613, 50.291661], [-120.942422, 50.29273], [-120.940333, 50.300318], [-120.939788, 50.303729], [-120.939798, 50.310365], [-120.92661, 50.311121], [-120.914411, 50.313652], [-120.910579, 50.320997], [-120.911112, 50.326241], [-120.908891, 50.331455], [-120.904089, 50.337376], [-120.903166, 50.341784], [-120.896312, 50.344706], [-120.89415, 50.349579], [-120.892242, 50.353614], [-120.891716, 50.356183], [-120.890105, 50.362896], [-120.892385, 50.374377], [-120.893824, 50.379433], [-120.894729, 50.381612], [-120.89638, 50.384176], [-120.898634, 50.386641], [-120.902822, 50.390855], [-120.911483, 50.398077], [-120.922492, 50.406742], [-120.926439, 50.409632], [-120.931502, 50.413017], [-120.932799, 50.414155], [-120.934929, 50.416596], [-120.957413, 50.416835], [-120.957386, 50.415893], [-120.958267, 50.400726], [-120.957983, 50.393637], [-120.958007, 50.392053], [-120.958109, 50.39143], [-120.958336, 50.387911], [-121.000232, 50.387778], [-121.073387, 50.388538], [-121.072406, 50.407475], [-121.071369, 50.431742], [-121.092031, 50.432381], [-121.100039, 50.432386], [-121.10545, 50.43246], [-121.140808, 50.43251], [-121.140734, 50.443602], [-121.139514, 50.474361], [-121.138732, 50.490946], [-121.119301, 50.491281], [-121.119127, 50.499193], [-121.119727, 50.520144], [-121.138051, 50.520181], [-121.138215, 50.531191], [-121.138353, 50.534983], [-121.177315, 50.535618], [-121.180619, 50.535596], [-121.202248, 50.535035], [-121.223216, 50.533999], [-121.234818, 50.534202], [-121.234469, 50.549583], [-121.242225, 50.548952], [-121.256782, 50.547398], [-121.280543, 50.54568], [-121.28795, 50.54486], [-121.288274, 50.545251], [-121.288919, 50.545746], [-121.289291, 50.54639], [-121.289589, 50.546718], [-121.289935, 50.54728], [-121.28982, 50.547737], [-121.290008, 50.548011], [-121.290091, 50.548471], [-121.290493, 50.549043], [-121.291037, 50.549609], [-121.291503, 50.550416], [-121.292292, 50.551192], [-121.29286, 50.551893], [-121.293572, 50.552533], [-121.294014, 50.552746], [-121.294463, 50.553265], [-121.295315, 50.55388], [-121.296075, 50.554737], [-121.296309, 50.554884], [-121.29663, 50.555411], [-121.296781, 50.555502], [-121.296803, 50.55571], [-121.296672, 50.556211], [-121.296672, 50.556995], [-121.296495, 50.557576], [-121.2962, 50.557922], [-121.296151, 50.558101], [-121.296315, 50.558284], [-121.296307, 50.558473], [-121.29621, 50.559226], [-121.295831, 50.560327], [-121.295782, 50.561326], [-121.295572, 50.562015], [-121.295224, 50.562674], [-121.295187, 50.562927], [-121.295227, 50.563412], [-121.295712, 50.565201], [-121.296078, 50.565989], [-121.29694, 50.567087], [-121.294276, 50.567222], [-121.285967, 50.567386], [-121.28488, 50.5673], [-121.284764, 50.56183], [-121.267538, 50.56202], [-121.249502, 50.562919], [-121.211027, 50.56856], [-121.208099, 50.568926], [-121.208236, 50.569871], [-121.208174, 50.570254], [-121.209357, 50.578004], [-121.199292, 50.578225], [-121.175828, 50.579261], [-121.128555, 50.580751], [-121.116479, 50.579959], [-121.096291, 50.579351], [-121.096942, 50.568962], [-121.097095, 50.563975], [-121.086681, 50.563812], [-121.069101, 50.563859], [-121.050801, 50.563667], [-121.050309, 50.532889], [-121.026538, 50.533198], [-121.026233, 50.548422], [-121.017351, 50.54852], [-121.017132, 50.558427], [-121.009144, 50.562884], [-121.009909, 50.573537], [-121.009705, 50.574243], [-121.009865, 50.574369], [-121.009217, 50.575792], [-121.021824, 50.582629], [-121.036592, 50.586741], [-121.052872, 50.590853], [-121.064761, 50.600734], [-121.055895, 50.609165], [-121.052111, 50.614296], [-121.043749, 50.615099], [-121.047198, 50.624677], [-121.047453, 50.630819], [-121.039955, 50.637452], [-121.049025, 50.651342], [-121.04472, 50.660805], [-121.039158, 50.665551], [-121.020489, 50.672949], [-121.017741, 50.673783], [-121.014999, 50.676044], [-121.011003, 50.677533], [-121.006532, 50.677207], [-120.997784, 50.674198], [-120.985567, 50.672071], [-120.979161, 50.671922], [-120.968559, 50.670033], [-120.961872, 50.669145], [-120.950317, 50.670288], [-120.948836, 50.670628], [-120.939034, 50.665667], [-120.932662, 50.670164], [-120.926766, 50.670832], [-120.921838, 50.662963], [-120.913059, 50.657944], [-120.909569, 50.662023], [-120.909676, 50.668946], [-120.909575, 50.668907], [-120.909134, 50.696232], [-120.908898, 50.703397], [-120.910574, 50.717816], [-120.910305, 50.718058], [-120.910397, 50.718285], [-120.910588, 50.718329], [-120.910872, 50.728304], [-120.910825, 50.743742], [-120.911991, 50.743998], [-120.912828, 50.744022], [-120.9131, 50.744288], [-120.913718, 50.744371], [-120.915872, 50.744094], [-120.917314, 50.744174], [-120.917594, 50.744243], [-120.917869, 50.744149], [-120.918088, 50.744278], [-120.918512, 50.744321], [-120.918721, 50.744442], [-120.91889, 50.744418], [-120.919709, 50.744523], [-120.920408, 50.744724], [-120.921501, 50.745328], [-120.922107, 50.745744], [-120.922524, 50.745895], [-120.923185, 50.746375], [-120.923237, 50.746781], [-120.923642, 50.747263], [-120.923715, 50.747823], [-120.923414, 50.74922], [-120.923878, 50.749625], [-120.923887, 50.750029], [-120.924176, 50.75025], [-120.924317, 50.75055], [-120.924305, 50.750828], [-120.924439, 50.75101], [-120.925029, 50.751453], [-120.926686, 50.753137], [-120.929207, 50.754802], [-120.930575, 50.755562], [-120.931218, 50.755817], [-120.932283, 50.75643], [-120.932771, 50.756582], [-120.93363, 50.757048], [-120.936316, 50.758166], [-120.936497, 50.758294], [-120.936833, 50.758066], [-120.937376, 50.757976], [-120.937559, 50.757998], [-120.937888, 50.756594], [-120.938561, 50.754448], [-120.938496, 50.753555], [-120.936226, 50.750048], [-120.937001, 50.748458], [-120.939314, 50.747967], [-120.94137, 50.747845], [-120.943611, 50.748634], [-120.945224, 50.749896], [-120.945388, 50.751532], [-120.944735, 50.753597], [-120.944179, 50.755709], [-120.944959, 50.757608], [-120.944158, 50.759379], [-120.943116, 50.761262], [-120.943432, 50.761474], [-120.944708, 50.762774], [-120.945991, 50.763579], [-120.947288, 50.76407], [-120.947891, 50.764243], [-120.94972, 50.764589], [-120.950595, 50.764677], [-120.951826, 50.764717], [-120.95359, 50.764622], [-120.954247, 50.764498], [-120.955312, 50.764139], [-120.956296, 50.763697], [-120.957067, 50.763595], [-120.957533, 50.763287], [-120.958577, 50.763349], [-120.958189, 50.763866], [-120.957201, 50.764397], [-120.956861, 50.764733], [-120.956816, 50.76511], [-120.956998, 50.765491], [-120.956852, 50.765911], [-120.95685, 50.76627], [-120.957071, 50.766751], [-120.957356, 50.768912], [-120.957306, 50.769353], [-120.956994, 50.769859], [-120.95682, 50.769994], [-120.956538, 50.770047], [-120.955628, 50.769904], [-120.955319, 50.769976], [-120.955027, 50.770245], [-120.954777, 50.770924], [-120.954409, 50.771365], [-120.953541, 50.77159], [-120.95334, 50.771965], [-120.953254, 50.772018], [-120.952814, 50.772019], [-120.952637, 50.772141], [-120.952489, 50.772624], [-120.951183, 50.77396], [-120.951092, 50.774363], [-120.951313, 50.774511], [-120.951392, 50.774657], [-120.95099, 50.77481], [-120.950897, 50.774944], [-120.950786, 50.775535], [-120.95111, 50.775614], [-120.951269, 50.775842], [-120.951559, 50.776054], [-120.952564, 50.776413], [-120.952673, 50.776504], [-120.953121, 50.777313], [-120.95316, 50.778023], [-120.953235, 50.778295], [-120.953412, 50.778469], [-120.953825, 50.77871], [-120.954487, 50.778811], [-120.954817, 50.779052], [-120.954989, 50.779019], [-120.955204, 50.779282], [-120.955682, 50.779408], [-120.955806, 50.7795], [-120.956621, 50.779658], [-120.957132, 50.779982], [-120.95761, 50.780071], [-120.958002, 50.780529], [-120.958083, 50.780979], [-120.958214, 50.781215], [-120.959044, 50.781715], [-120.959383, 50.782037], [-120.960075, 50.782102], [-120.960653, 50.782554], [-120.961356, 50.782673], [-120.96172, 50.782797], [-120.961828, 50.782934], [-120.962384, 50.783178], [-120.962304, 50.78341], [-120.962669, 50.783461], [-120.96279, 50.783633], [-120.962792, 50.783895], [-120.96303, 50.783979], [-120.963329, 50.783977], [-120.96341, 50.784058], [-120.963303, 50.784236], [-120.963465, 50.784428], [-120.963441, 50.784958], [-120.963807, 50.785055], [-120.963989, 50.785391], [-120.964368, 50.785532], [-120.964387, 50.785713], [-120.964156, 50.785817], [-120.964123, 50.785905], [-120.964448, 50.785956], [-120.964481, 50.786173], [-120.964807, 50.78617], [-120.965284, 50.786331], [-120.965645, 50.786526], [-120.965847, 50.786718], [-120.965957, 50.787161], [-120.965859, 50.78742], [-120.966011, 50.787549], [-120.966459, 50.787674], [-120.966676, 50.78791], [-120.967154, 50.788036], [-120.96762, 50.788036], [-120.967628, 50.788198], [-120.967764, 50.788326], [-120.96894, 50.788365], [-120.969458, 50.788526], [-120.969888, 50.788749], [-120.970253, 50.789151], [-120.970136, 50.789581], [-120.970429, 50.790035], [-120.970426, 50.790135], [-120.970202, 50.790347], [-120.970138, 50.790517], [-120.970866, 50.790772], [-120.970936, 50.791115], [-120.971395, 50.791303], [-120.971573, 50.791476], [-120.971635, 50.791684], [-120.971894, 50.791897], [-120.972326, 50.792102], [-120.97265, 50.792449], [-120.973222, 50.79272], [-120.973479, 50.79267], [-120.974018, 50.793012], [-120.975105, 50.793149], [-120.975465, 50.793352], [-120.975569, 50.793552], [-120.975561, 50.793777], [-120.975746, 50.794059], [-120.975776, 50.794707], [-120.97617, 50.794749], [-120.976324, 50.794815], [-120.976523, 50.795142], [-120.976568, 50.795377], [-120.976869, 50.795652], [-120.977204, 50.796144], [-120.978163, 50.796924], [-120.978252, 50.797169], [-120.978224, 50.797484], [-120.978533, 50.797867], [-120.978959, 50.797874], [-120.979306, 50.798051], [-120.979064, 50.799026], [-120.979146, 50.799119], [-120.979357, 50.799167], [-120.980218, 50.799281], [-120.980632, 50.799585], [-120.981122, 50.799718], [-120.981423, 50.800003], [-120.981455, 50.800237], [-120.981574, 50.800402], [-120.981836, 50.800577], [-120.982382, 50.800757], [-120.982923, 50.800712], [-120.983109, 50.801013], [-120.983434, 50.802359], [-120.983649, 50.802686], [-120.984507, 50.802836], [-120.984925, 50.803014], [-120.985533, 50.803716], [-120.986528, 50.804679], [-120.987127, 50.804941], [-120.98884, 50.805051], [-120.989247, 50.805166], [-120.989827, 50.805203], [-120.990253, 50.805525], [-120.990751, 50.805489], [-120.991137, 50.805783], [-120.991447, 50.805851], [-120.991889, 50.805787], [-120.992702, 50.805391], [-121.014433, 50.837547], [-121.028845, 50.837759], [-121.049823, 50.837979], [-121.049718, 50.845421], [-121.049892, 50.857287], [-121.050028, 50.860095], [-121.050079, 50.863602], [-121.049341, 50.873863], [-121.049037, 50.92488], [-121.071078, 50.924854], [-121.13304, 50.925183], [-121.239056, 50.925511], [-121.294609, 50.925588], [-121.294898, 50.925419], [-121.295198, 50.925397], [-121.29544, 50.925418], [-121.295871, 50.925588], [-121.305539, 50.925598], [-121.306753, 50.925156], [-121.305738, 50.925597], [-121.399157, 50.925718], [-121.399752, 50.93768], [-121.405558, 50.937679], [-121.422574, 50.937814], [-121.446863, 50.937675], [-121.446625, 50.925655], [-121.541968, 50.925408]], [[-121.52299, 50.890024], [-121.453967, 50.889655], [-121.445314, 50.889533], [-121.445446, 50.887047], [-121.445175, 50.87864], [-121.468528, 50.878905], [-121.498943, 50.879106], [-121.498445, 50.86963], [-121.522372, 50.869561], [-121.522325, 50.870649], [-121.52303, 50.880368], [-121.52299, 50.890024]], [[-121.645637, 50.819111], [-121.645485, 50.810102], [-121.659407, 50.81024], [-121.659511, 50.813514], [-121.671094, 50.813708], [-121.671303, 50.819482], [-121.683128, 50.819645], [-121.683274, 50.828204], [-121.68382, 50.829768], [-121.67127, 50.829284], [-121.670365, 50.82325], [-121.659028, 50.823189], [-121.659052, 50.819354], [-121.645637, 50.819111]], [[-121.591637, 50.826436], [-121.566197, 50.826088], [-121.566107, 50.833526], [-121.552723, 50.833643], [-121.552357, 50.833688], [-121.542543, 50.833819], [-121.542251, 50.822731], [-121.560566, 50.822712], [-121.560365, 50.808184], [-121.574621, 50.808154], [-121.574718, 50.797055], [-121.605954, 50.797249], [-121.606308, 50.808222], [-121.591638, 50.808043], [-121.591637, 50.826436]], [[-121.379984, 50.852137], [-121.35001, 50.851714], [-121.350099, 50.850594], [-121.350002, 50.847333], [-121.350452, 50.832232], [-121.355623, 50.834752], [-121.361118, 50.829981], [-121.362043, 50.828911], [-121.367099, 50.83059], [-121.379105, 50.830195], [-121.402217, 50.830273], [-121.402089, 50.837967], [-121.395919, 50.837885], [-121.396062, 50.845197], [-121.389621, 50.845234], [-121.389481, 50.843457], [-121.388649, 50.843266], [-121.386599, 50.844171], [-121.383337, 50.845176], [-121.383363, 50.845345], [-121.379707, 50.846926], [-121.379984, 50.852137]], [[-121.328471, 50.81661], [-121.328451, 50.817112], [-121.328973, 50.817411], [-121.326743, 50.818261], [-121.32493, 50.817354], [-121.324456, 50.817366], [-121.322894, 50.816781], [-121.322196, 50.81633], [-121.312644, 50.816227], [-121.305334, 50.816391], [-121.305065, 50.815442], [-121.304438, 50.811892], [-121.300644, 50.811142], [-121.297864, 50.810499], [-121.296346, 50.810306], [-121.294889, 50.810007], [-121.294412, 50.809762], [-121.293807, 50.809126], [-121.293681, 50.808543], [-121.293687, 50.808053], [-121.293591, 50.807833], [-121.293705, 50.807739], [-121.293763, 50.807012], [-121.298807, 50.801145], [-121.289699, 50.797308], [-121.292523, 50.794565], [-121.299125, 50.800816], [-121.304935, 50.806757], [-121.304747, 50.787061], [-121.304424, 50.773132], [-121.311063, 50.773099], [-121.311097, 50.775625], [-121.311675, 50.780284], [-121.338046, 50.780556], [-121.337873, 50.790018], [-121.337956, 50.801651], [-121.338909, 50.812272], [-121.333649, 50.812354], [-121.333375, 50.814425], [-121.328775, 50.816396], [-121.328341, 50.81639], [-121.328471, 50.81661]], [[-121.344305, 50.75694], [-121.311244, 50.756628], [-121.310858, 50.750546], [-121.310579, 50.74839], [-121.310667, 50.745982], [-121.311041, 50.742921], [-121.311838, 50.740678], [-121.312041, 50.73864], [-121.312155, 50.734968], [-121.30699, 50.734912], [-121.295824, 50.734683], [-121.284982, 50.734377], [-121.282004, 50.734599], [-121.281945, 50.736211], [-121.281831, 50.736778], [-121.281396, 50.738285], [-121.280184, 50.741718], [-121.280103, 50.742227], [-121.280095, 50.7427], [-121.280219, 50.743185], [-121.280799, 50.744306], [-121.279248, 50.744112], [-121.269124, 50.743647], [-121.26804, 50.742257], [-121.266258, 50.742142], [-121.266585, 50.742421], [-121.266708, 50.742648], [-121.266822, 50.74329], [-121.265729, 50.74324], [-121.260728, 50.743417], [-121.259992, 50.74155], [-121.260106, 50.740344], [-121.259953, 50.73948], [-121.259194, 50.739339], [-121.25883, 50.739208], [-121.258731, 50.73911], [-121.258053, 50.738875], [-121.257756, 50.739187], [-121.257266, 50.74088], [-121.255747, 50.742519], [-121.25419, 50.743992], [-121.252786, 50.74512], [-121.251801, 50.746234], [-121.249947, 50.74732], [-121.247303, 50.74828], [-121.245855, 50.749185], [-121.245187, 50.750091], [-121.245075, 50.751119], [-121.244051, 50.751982], [-121.242844, 50.752396], [-121.242035, 50.752353], [-121.239556, 50.751764], [-121.238812, 50.751348], [-121.237951, 50.750542], [-121.235776, 50.749183], [-121.232892, 50.747918], [-121.230484, 50.746756], [-121.22708, 50.745892], [-121.225109, 50.744974], [-121.22511, 50.743878], [-121.224417, 50.736589], [-121.250121, 50.736426], [-121.257087, 50.736553], [-121.2573, 50.732683], [-121.256835, 50.732644], [-121.255796, 50.732285], [-121.255417, 50.732007], [-121.255224, 50.730505], [-121.255522, 50.729414], [-121.256419, 50.729123], [-121.257226, 50.729093], [-121.257177, 50.725556], [-121.261953, 50.725456], [-121.26396, 50.724896], [-121.263953, 50.721164], [-121.269356, 50.72131], [-121.26869, 50.714701], [-121.274089, 50.715006], [-121.273756, 50.707393], [-121.278763, 50.707497], [-121.279133, 50.706645], [-121.279452, 50.70624], [-121.280604, 50.7051], [-121.280847, 50.704756], [-121.280891, 50.704213], [-121.280695, 50.703896], [-121.279776, 50.696871], [-121.279649, 50.69294], [-121.305271, 50.693673], [-121.307452, 50.692402], [-121.315408, 50.692418], [-121.315138, 50.686863], [-121.314915, 50.685453], [-121.328387, 50.685707], [-121.328338, 50.678118], [-121.320444, 50.67802], [-121.319892, 50.670292], [-121.318069, 50.670384], [-121.31812, 50.665755], [-121.320993, 50.665754], [-121.337465, 50.665404], [-121.337317, 50.666224], [-121.349588, 50.666207], [-121.351231, 50.651481], [-121.348503, 50.651313], [-121.348443, 50.648046], [-121.353274, 50.648087], [-121.353483, 50.650541], [-121.361291, 50.650524], [-121.363109, 50.65065], [-121.363023, 50.649159], [-121.374886, 50.649241], [-121.375133, 50.65593], [-121.362561, 50.656296], [-121.359076, 50.662367], [-121.403293, 50.659404], [-121.414992, 50.658326], [-121.414409, 50.672155], [-121.411539, 50.672103], [-121.410426, 50.68646], [-121.414506, 50.686594], [-121.413168, 50.700904], [-121.396357, 50.700037], [-121.396243, 50.706518], [-121.385541, 50.706521], [-121.385631, 50.702992], [-121.377882, 50.708266], [-121.361123, 50.72], [-121.362786, 50.734178], [-121.362483, 50.733847], [-121.362467, 50.733055], [-121.3624, 50.732929], [-121.362039, 50.732744], [-121.361505, 50.732584], [-121.361094, 50.732218], [-121.360589, 50.732021], [-121.360195, 50.731584], [-121.359376, 50.731106], [-121.358691, 50.730827], [-121.357344, 50.730033], [-121.356367, 50.729552], [-121.355987, 50.729133], [-121.355365, 50.728656], [-121.355415, 50.728046], [-121.355152, 50.727853], [-121.354203, 50.727884], [-121.353483, 50.727749], [-121.353186, 50.727753], [-121.352429, 50.72795], [-121.352288, 50.727911], [-121.351963, 50.727511], [-121.351602, 50.72729], [-121.351347, 50.727296], [-121.35086, 50.727424], [-121.350524, 50.727339], [-121.350067, 50.727035], [-121.349911, 50.726997], [-121.349512, 50.727081], [-121.348866, 50.727314], [-121.347764, 50.726813], [-121.34758, 50.726783], [-121.341777, 50.730213], [-121.333784, 50.724024], [-121.328118, 50.727858], [-121.344278, 50.732896], [-121.344305, 50.75694]], [[-121.275462, 50.668588], [-121.275438, 50.67046], [-121.274324, 50.670436], [-121.27266, 50.670803], [-121.264111, 50.670526], [-121.252724, 50.670784], [-121.252495, 50.656743], [-121.267169, 50.656786], [-121.266964, 50.648045], [-121.280968, 50.648086], [-121.280744, 50.656624], [-121.28041, 50.656517], [-121.279911, 50.656158], [-121.272846, 50.653258], [-121.266171, 50.661566], [-121.274226, 50.664521], [-121.27597, 50.662617], [-121.275462, 50.668588]], [[-121.316283, 50.634855], [-121.310708, 50.634133], [-121.315366, 50.627772], [-121.318227, 50.622694], [-121.318202, 50.620685], [-121.316094, 50.619281], [-121.3153, 50.618172], [-121.31517, 50.617837], [-121.314885, 50.617528], [-121.314565, 50.617361], [-121.314257, 50.61688], [-121.313687, 50.616242], [-121.313518, 50.615816], [-121.312764, 50.614745], [-121.312651, 50.614348], [-121.312647, 50.613717], [-121.313943, 50.612657], [-121.314683, 50.611714], [-121.315163, 50.611298], [-121.315554, 50.610675], [-121.315555, 50.609416], [-121.315411, 50.608325], [-121.314998, 50.607231], [-121.315096, 50.606845], [-121.315068, 50.606467], [-121.314676, 50.605562], [-121.314, 50.60512], [-121.313728, 50.604775], [-121.312952, 50.604791], [-121.31263, 50.604696], [-121.312648, 50.60457], [-121.312868, 50.604331], [-121.312927, 50.603891], [-121.312631, 50.603895], [-121.312213, 50.604096], [-121.311507, 50.604059], [-121.310455, 50.603478], [-121.309865, 50.603361], [-121.309408, 50.603102], [-121.306722, 50.602722], [-121.306386, 50.602626], [-121.305822, 50.602592], [-121.304945, 50.602228], [-121.304565, 50.602213], [-121.303984, 50.601846], [-121.303612, 50.601219], [-121.30362, 50.600986], [-121.303809, 50.600845], [-121.303803, 50.600611], [-121.303043, 50.598945], [-121.302954, 50.598664], [-121.303016, 50.598495], [-121.303115, 50.598478], [-121.303424, 50.598582], [-121.304442, 50.599334], [-121.305026, 50.59999], [-121.30517, 50.600694], [-121.305401, 50.600949], [-121.305572, 50.600943], [-121.305575, 50.600843], [-121.305411, 50.600679], [-121.305331, 50.600138], [-121.305113, 50.599569], [-121.30355, 50.598206], [-121.303365, 50.597807], [-121.303012, 50.597434], [-121.302747, 50.596952], [-121.30267, 50.595917], [-121.302983, 50.594726], [-121.303349, 50.594003], [-121.303841, 50.593622], [-121.303977, 50.593373], [-121.306127, 50.592127], [-121.30686, 50.591832], [-121.307393, 50.591498], [-121.308385, 50.591028], [-121.309214, 50.590743], [-121.309625, 50.59073], [-121.310048, 50.59035], [-121.310221, 50.589798], [-121.321104, 50.590077], [-121.334646, 50.589483], [-121.336364, 50.605497], [-121.337122, 50.608898], [-121.34827, 50.609232], [-121.347924, 50.616315], [-121.33648, 50.616194], [-121.33623, 50.620676], [-121.334717, 50.620722], [-121.332849, 50.620643], [-121.333182, 50.625445], [-121.333217, 50.628449], [-121.333017, 50.629269], [-121.327509, 50.628783], [-121.32735, 50.632433], [-121.3276, 50.637045], [-121.32749, 50.648038], [-121.320885, 50.648181], [-121.320818, 50.647362], [-121.312037, 50.647367], [-121.312324, 50.636335], [-121.31619, 50.635766], [-121.316283, 50.634855]], [[-121.308885, 50.616532], [-121.310383, 50.616508], [-121.310989, 50.616571], [-121.311517, 50.61684], [-121.311736, 50.617041], [-121.31195, 50.617341], [-121.31202, 50.617756], [-121.312591, 50.618033], [-121.312695, 50.618278], [-121.312636, 50.618331], [-121.312954, 50.618975], [-121.313529, 50.619468], [-121.314055, 50.620195], [-121.314153, 50.621016], [-121.314133, 50.621168], [-121.313999, 50.621328], [-121.313307, 50.621309], [-121.312328, 50.621016], [-121.312232, 50.620933], [-121.311436, 50.62068], [-121.309806, 50.619999], [-121.309323, 50.619686], [-121.308832, 50.619149], [-121.308788, 50.618409], [-121.308649, 50.617995], [-121.308627, 50.617806], [-121.308993, 50.617837], [-121.30942, 50.617781], [-121.309272, 50.617261], [-121.308876, 50.617179], [-121.308639, 50.617068], [-121.308604, 50.616455], [-121.308885, 50.616532]], [[-121.728545, 50.490659], [-121.734976, 50.490477], [-121.742503, 50.490924], [-121.740633, 50.498587], [-121.741996, 50.508851], [-121.741762, 50.508647], [-121.740784, 50.508277], [-121.73998, 50.507755], [-121.739432, 50.507633], [-121.739017, 50.50735], [-121.738806, 50.507294], [-121.737905, 50.507257], [-121.736796, 50.507119], [-121.736582, 50.507153], [-121.736021, 50.507533], [-121.735988, 50.507794], [-121.735733, 50.507845], [-121.735271, 50.507696], [-121.734912, 50.507441], [-121.734256, 50.507163], [-121.734244, 50.507038], [-121.734418, 50.506877], [-121.734357, 50.506571], [-121.73398, 50.506378], [-121.733418, 50.505769], [-121.733127, 50.505595], [-121.733217, 50.505353], [-121.733056, 50.505108], [-121.732499, 50.504806], [-121.73254, 50.504339], [-121.731809, 50.503179], [-121.731975, 50.502804], [-121.731666, 50.502215], [-121.731474, 50.501997], [-121.730753, 50.501594], [-121.729325, 50.501183], [-121.729259, 50.501002], [-121.728841, 50.500791], [-121.728498, 50.500454], [-121.728025, 50.500189], [-121.727696, 50.499834], [-121.727379, 50.499615], [-121.727158, 50.498947], [-121.726881, 50.498692], [-121.72649, 50.498048], [-121.726373, 50.497175], [-121.726452, 50.496852], [-121.726421, 50.496385], [-121.726549, 50.495846], [-121.727015, 50.495302], [-121.727215, 50.495161], [-121.727809, 50.494114], [-121.727871, 50.493378], [-121.728258, 50.493122], [-121.728419, 50.49289], [-121.728562, 50.492262], [-121.728609, 50.49103], [-121.728545, 50.490659]], [[-121.395909, 50.619502], [-121.372154, 50.619578], [-121.372472, 50.605039], [-121.384635, 50.605022], [-121.384951, 50.612109], [-121.395901, 50.612194], [-121.395909, 50.619502]], [[-121.703496, 50.451055], [-121.703148, 50.451392], [-121.702303, 50.451887], [-121.702299, 50.452012], [-121.702547, 50.452275], [-121.702426, 50.452572], [-121.70233, 50.452445], [-121.701762, 50.452123], [-121.700591, 50.451633], [-121.69979, 50.451579], [-121.699535, 50.451622], [-121.699462, 50.451774], [-121.699152, 50.45178], [-121.698986, 50.451652], [-121.698866, 50.451362], [-121.69856, 50.451224], [-121.696441, 50.450958], [-121.695617, 50.450696], [-121.694947, 50.450455], [-121.694502, 50.44973], [-121.694542, 50.449326], [-121.694938, 50.448701], [-121.695169, 50.448524], [-121.695438, 50.448518], [-121.695796, 50.448298], [-121.695916, 50.448028], [-121.695938, 50.447714], [-121.69614, 50.4476], [-121.696485, 50.446777], [-121.696819, 50.446402], [-121.697031, 50.445919], [-121.697456, 50.445285], [-121.697457, 50.445213], [-121.697251, 50.445085], [-121.697268, 50.444976], [-121.697077, 50.444706], [-121.697028, 50.444462], [-121.696764, 50.444297], [-121.696617, 50.443989], [-121.696779, 50.443749], [-121.697313, 50.443304], [-121.697338, 50.442927], [-121.697503, 50.442542], [-121.698033, 50.44226], [-121.698416, 50.442129], [-121.698985, 50.44138], [-121.699489, 50.440963], [-121.699652, 50.44066], [-121.699878, 50.439124], [-121.700331, 50.438509], [-121.700378, 50.437852], [-121.700078, 50.437508], [-121.699337, 50.437293], [-121.704023, 50.437407], [-121.737625, 50.437787], [-121.737592, 50.439684], [-121.727936, 50.439612], [-121.727228, 50.441198], [-121.725118, 50.442668], [-121.721268, 50.443912], [-121.717046, 50.444819], [-121.715462, 50.445053], [-121.711941, 50.445059], [-121.710431, 50.445623], [-121.709197, 50.445515], [-121.708462, 50.44556], [-121.70819, 50.445728], [-121.708013, 50.446005], [-121.707712, 50.446227], [-121.706884, 50.446604], [-121.706673, 50.447177], [-121.706455, 50.44739], [-121.705396, 50.447523], [-121.705193, 50.447647], [-121.704926, 50.448211], [-121.705024, 50.448723], [-121.704978, 50.448867], [-121.704605, 50.449107], [-121.704123, 50.449182], [-121.703921, 50.449369], [-121.703496, 50.451055]], [[-121.719039, 50.423529], [-121.71905, 50.428953], [-121.702092, 50.42898], [-121.702097, 50.431582], [-121.696441, 50.431575], [-121.696444, 50.429386], [-121.696277, 50.42537], [-121.710568, 50.425347], [-121.710559, 50.423539], [-121.719039, 50.423529]], [[-121.279048, 50.510947], [-121.279151, 50.511218], [-121.279095, 50.511622], [-121.278585, 50.512072], [-121.278065, 50.512415], [-121.277547, 50.513065], [-121.27755, 50.514126], [-121.277886, 50.514599], [-121.27815, 50.515466], [-121.278155, 50.515762], [-121.278387, 50.515946], [-121.278503, 50.516623], [-121.278729, 50.51704], [-121.279163, 50.517531], [-121.279182, 50.517739], [-121.27963, 50.518636], [-121.280086, 50.519272], [-121.281614, 50.520707], [-121.281994, 50.521109], [-121.28218, 50.521435], [-121.282165, 50.521867], [-121.282429, 50.522365], [-121.282342, 50.524756], [-121.282415, 50.525174], [-121.274196, 50.525102], [-121.273832, 50.514407], [-121.268341, 50.51437], [-121.268277, 50.509097], [-121.239406, 50.509221], [-121.239095, 50.48741], [-121.241634, 50.487439], [-121.241573, 50.48385], [-121.24088, 50.476149], [-121.249387, 50.475993], [-121.247834, 50.454404], [-121.247838, 50.453151], [-121.248022, 50.453264], [-121.248252, 50.453546], [-121.249264, 50.453993], [-121.250355, 50.454207], [-121.250671, 50.454427], [-121.251022, 50.454802], [-121.25166, 50.455135], [-121.252125, 50.455483], [-121.253873, 50.456193], [-121.254202, 50.456468], [-121.255376, 50.457106], [-121.256238, 50.457821], [-121.256739, 50.4587], [-121.257367, 50.459285], [-121.257875, 50.460013], [-121.258785, 50.460611], [-121.259136, 50.461021], [-121.259989, 50.461574], [-121.260307, 50.461714], [-121.261313, 50.461934], [-121.261703, 50.462085], [-121.262294, 50.462471], [-121.262675, 50.46281], [-121.263812, 50.463376], [-121.264311, 50.463545], [-121.265221, 50.463729], [-121.266154, 50.464039], [-121.266526, 50.46427], [-121.267733, 50.464791], [-121.267942, 50.464848], [-121.268379, 50.464847], [-121.268988, 50.464784], [-121.269827, 50.464571], [-121.270413, 50.464319], [-121.271258, 50.463585], [-121.271769, 50.463467], [-121.272135, 50.4635], [-121.272496, 50.463622], [-121.273133, 50.463937], [-121.273539, 50.464024], [-121.27473, 50.464572], [-121.275305, 50.46467], [-121.277669, 50.464742], [-121.278191, 50.464713], [-121.278803, 50.464552], [-121.279282, 50.464172], [-121.27936, 50.463975], [-121.279365, 50.463463], [-121.279623, 50.463286], [-121.280194, 50.463088], [-121.280674, 50.463114], [-121.281156, 50.46339], [-121.281452, 50.463413], [-121.281926, 50.463545], [-121.282852, 50.463622], [-121.284616, 50.463567], [-121.285599, 50.463635], [-121.287346, 50.463283], [-121.289279, 50.463213], [-121.290062, 50.463342], [-121.290607, 50.46353], [-121.291704, 50.464319], [-121.291988, 50.46462], [-121.29322, 50.46525], [-121.294019, 50.465774], [-121.294484, 50.466186], [-121.295132, 50.466582], [-121.29528, 50.466745], [-121.29473, 50.46717], [-121.294413, 50.467731], [-121.29429, 50.468053], [-121.294403, 50.468792], [-121.294585, 50.469218], [-121.295172, 50.470135], [-121.295927, 50.471108], [-121.296392, 50.471907], [-121.296921, 50.472508], [-121.29705, 50.473211], [-121.296857, 50.473884], [-121.296288, 50.474784], [-121.296133, 50.475158], [-121.295978, 50.475974], [-121.296025, 50.476614], [-121.295729, 50.47741], [-121.295784, 50.478247], [-121.296267, 50.479298], [-121.296289, 50.480611], [-121.296616, 50.481776], [-121.296626, 50.482208], [-121.296399, 50.483869], [-121.296265, 50.484434], [-121.295997, 50.484861], [-121.295961, 50.485059], [-121.295319, 50.485679], [-121.294739, 50.486479], [-121.29476, 50.486687], [-121.294842, 50.486751], [-121.295782, 50.48726], [-121.295844, 50.487918], [-121.2957, 50.488796], [-121.295005, 50.490441], [-121.294613, 50.491163], [-121.29423, 50.491626], [-121.293566, 50.492056], [-121.291874, 50.492464], [-121.289911, 50.492552], [-121.288594, 50.492713], [-121.287196, 50.492773], [-121.285396, 50.492998], [-121.284513, 50.493264], [-121.283796, 50.493622], [-121.282424, 50.494888], [-121.282292, 50.495768], [-121.281992, 50.496321], [-121.281964, 50.497048], [-121.282125, 50.497654], [-121.282446, 50.498181], [-121.282812, 50.498599], [-121.282828, 50.498897], [-121.282996, 50.499348], [-121.282999, 50.499619], [-121.282908, 50.499816], [-121.283186, 50.501104], [-121.283228, 50.50304], [-121.283623, 50.504628], [-121.283671, 50.505574], [-121.283521, 50.505877], [-121.28241, 50.506931], [-121.282101, 50.507304], [-121.281782, 50.507542], [-121.281682, 50.507918], [-121.281111, 50.508513], [-121.280969, 50.508969], [-121.280133, 50.509821], [-121.279939, 50.510491], [-121.279565, 50.510729], [-121.279254, 50.510752], [-121.279109, 50.510822], [-121.279048, 50.510947]], [[-121.336051, 50.430534], [-121.333176, 50.430644], [-121.332727, 50.426037], [-121.335378, 50.42566], [-121.338647, 50.425434], [-121.338602, 50.430565], [-121.336051, 50.430534]], [[-121.345044, 50.423833], [-121.34397, 50.422496], [-121.345878, 50.421862], [-121.345589, 50.421407], [-121.346244, 50.421272], [-121.346154, 50.422484], [-121.346306, 50.423448], [-121.345044, 50.423833]], [[-121.654591, 50.324198], [-121.65427, 50.322566], [-121.65404, 50.321808], [-121.653054, 50.320438], [-121.651827, 50.31911], [-121.651436, 50.318512], [-121.651163, 50.31823], [-121.650762, 50.317984], [-121.650285, 50.317465], [-121.650192, 50.317302], [-121.650191, 50.316789], [-121.649736, 50.316065], [-121.649739, 50.315399], [-121.649335, 50.314792], [-121.648826, 50.313428], [-121.648471, 50.313055], [-121.647744, 50.312506], [-121.647129, 50.31188], [-121.646329, 50.311366], [-121.64603, 50.311066], [-121.645065, 50.310389], [-121.643903, 50.309252], [-121.643709, 50.308674], [-121.643044, 50.307352], [-121.643058, 50.306858], [-121.643439, 50.306314], [-121.643732, 50.305391], [-121.643784, 50.304546], [-121.64367, 50.304095], [-121.643684, 50.303663], [-121.643404, 50.303058], [-121.64353, 50.30261], [-121.64353, 50.302105], [-121.643299, 50.301356], [-121.642907, 50.300777], [-121.642374, 50.299304], [-121.641569, 50.298026], [-121.641509, 50.297685], [-121.641552, 50.297136], [-121.642155, 50.295649], [-121.642137, 50.294849], [-121.642597, 50.294467], [-121.642777, 50.294066], [-121.642701, 50.293785], [-121.642265, 50.293268], [-121.641414, 50.292583], [-121.640805, 50.292324], [-121.640109, 50.292119], [-121.639718, 50.292042], [-121.639213, 50.292036], [-121.63822, 50.291844], [-121.637436, 50.291835], [-121.637043, 50.291758], [-121.635333, 50.29172], [-121.634689, 50.29165], [-121.63322, 50.291435], [-121.63286, 50.291287], [-121.632337, 50.29094], [-121.631294, 50.290081], [-121.6309, 50.289645], [-121.63037, 50.289494], [-121.630183, 50.289159], [-121.628346, 50.287627], [-121.627902, 50.287469], [-121.627476, 50.287158], [-121.626662, 50.286123], [-121.626492, 50.285267], [-121.62625, 50.284823], [-121.625948, 50.284603], [-121.625287, 50.283706], [-121.62489, 50.283314], [-121.624058, 50.282954], [-121.623096, 50.282259], [-121.622787, 50.281815], [-121.621791, 50.280822], [-121.621645, 50.280479], [-121.620977, 50.279841], [-121.620831, 50.279533], [-121.620505, 50.279143], [-121.619337, 50.278247], [-121.619205, 50.277985], [-121.618579, 50.277294], [-121.617297, 50.276047], [-121.616883, 50.275763], [-121.615994, 50.275437], [-121.61572, 50.275236], [-121.615617, 50.274911], [-121.616094, 50.268319], [-121.617223, 50.268505], [-121.619441, 50.268503], [-121.619428, 50.270044], [-121.635579, 50.269947], [-121.635319, 50.27404], [-121.635441, 50.280959], [-121.640427, 50.281107], [-121.646943, 50.291526], [-121.648184, 50.294728], [-121.650006, 50.297211], [-121.650456, 50.297676], [-121.650284, 50.298234], [-121.650349, 50.299422], [-121.654959, 50.29949], [-121.654621, 50.309034], [-121.656093, 50.309137], [-121.656231, 50.316947], [-121.659285, 50.317044], [-121.659775, 50.327601], [-121.659784, 50.331391], [-121.664482, 50.331421], [-121.664616, 50.335006], [-121.667495, 50.335], [-121.667361, 50.338047], [-121.667181, 50.339085], [-121.667153, 50.34232], [-121.678901, 50.342287], [-121.678765, 50.354984], [-121.677167, 50.354958], [-121.673539, 50.354599], [-121.671813, 50.352942], [-121.670914, 50.352401], [-121.670731, 50.351968], [-121.66982, 50.350833], [-121.669545, 50.350624], [-121.669041, 50.350041], [-121.668571, 50.349775], [-121.668305, 50.349232], [-121.667871, 50.348697], [-121.667351, 50.347674], [-121.667078, 50.347367], [-121.666909, 50.346914], [-121.666636, 50.346552], [-121.666045, 50.346113], [-121.665202, 50.345609], [-121.662902, 50.344926], [-121.662216, 50.344846], [-121.661856, 50.344608], [-121.661023, 50.343268], [-121.660586, 50.342795], [-121.660106, 50.341872], [-121.659951, 50.341367], [-121.65972, 50.340122], [-121.659684, 50.339421], [-121.659364, 50.338283], [-121.659313, 50.337105], [-121.659553, 50.336083], [-121.659597, 50.335507], [-121.659375, 50.334433], [-121.658666, 50.33313], [-121.658317, 50.332056], [-121.657695, 50.330674], [-121.657567, 50.330222], [-121.657068, 50.329533], [-121.656453, 50.328861], [-121.655601, 50.327177], [-121.655193, 50.32576], [-121.654825, 50.32537], [-121.654806, 50.325009], [-121.654533, 50.324692], [-121.654591, 50.324198]], [[-121.360538, 50.41621], [-121.360178, 50.416431], [-121.359709, 50.416613], [-121.358798, 50.416851], [-121.358079, 50.416877], [-121.357367, 50.417154], [-121.35667, 50.417344], [-121.356411, 50.417502], [-121.355658, 50.41768], [-121.354865, 50.417777], [-121.354217, 50.416168], [-121.357137, 50.41598], [-121.357885, 50.414146], [-121.35757, 50.413454], [-121.358863, 50.413609], [-121.363219, 50.41334], [-121.363106, 50.413602], [-121.362901, 50.413806], [-121.362926, 50.414329], [-121.362863, 50.414517], [-121.36248, 50.415005], [-121.361481, 50.415818], [-121.360538, 50.41621]], [[-121.317888, 50.426484], [-121.316649, 50.427276], [-121.316435, 50.427399], [-121.316251, 50.427387], [-121.316213, 50.4269], [-121.316005, 50.426772], [-121.315954, 50.426664], [-121.315942, 50.425791], [-121.316225, 50.423736], [-121.315985, 50.422166], [-121.315971, 50.421343], [-121.317322, 50.420954], [-121.320315, 50.422966], [-121.320778, 50.423108], [-121.321169, 50.423144], [-121.321694, 50.423371], [-121.32133, 50.423494], [-121.321002, 50.423687], [-121.320264, 50.424226], [-121.319784, 50.424623], [-121.319118, 50.425594], [-121.317888, 50.426484]], [[-121.640055, 50.295463], [-121.639878, 50.295768], [-121.639541, 50.297256], [-121.639361, 50.297596], [-121.639286, 50.298306], [-121.639378, 50.299008], [-121.639539, 50.299253], [-121.640045, 50.299727], [-121.640234, 50.300254], [-121.629914, 50.300189], [-121.629854, 50.299248], [-121.614938, 50.299299], [-121.614415, 50.29236], [-121.620315, 50.292413], [-121.622555, 50.292228], [-121.62193, 50.28545], [-121.623871, 50.28557], [-121.624271, 50.286832], [-121.625107, 50.287507], [-121.625461, 50.287907], [-121.625956, 50.288255], [-121.626717, 50.288615], [-121.627152, 50.288665], [-121.628064, 50.289189], [-121.628376, 50.289542], [-121.628722, 50.289673], [-121.628899, 50.289908], [-121.629495, 50.290151], [-121.629458, 50.290437], [-121.629664, 50.290629], [-121.629796, 50.290927], [-121.630071, 50.291065], [-121.63018, 50.291202], [-121.630184, 50.291615], [-121.630263, 50.29176], [-121.631251, 50.292555], [-121.631985, 50.292895], [-121.632225, 50.292889], [-121.632401, 50.29308], [-121.63289, 50.293148], [-121.633326, 50.293127], [-121.633779, 50.29297], [-121.63564, 50.293244], [-121.638275, 50.293383], [-121.638763, 50.29346], [-121.639084, 50.293573], [-121.639646, 50.294029], [-121.640062, 50.295202], [-121.640055, 50.295463]], [[-121.611405, 50.289131], [-121.611631, 50.292066], [-121.593641, 50.291988], [-121.592615, 50.280728], [-121.600032, 50.280551], [-121.61962, 50.280616], [-121.620038, 50.281224], [-121.620772, 50.28206], [-121.621375, 50.282562], [-121.621722, 50.28271], [-121.622547, 50.283269], [-121.622844, 50.283713], [-121.623235, 50.284088], [-121.610801, 50.283584], [-121.611405, 50.289131]], [[-121.60195, 50.277706], [-121.601994, 50.274781], [-121.600469, 50.275242], [-121.600438, 50.276887], [-121.588558, 50.276759], [-121.588444, 50.267774], [-121.586345, 50.265546], [-121.57924, 50.265649], [-121.579139, 50.267573], [-121.565397, 50.267248], [-121.565022, 50.256497], [-121.579293, 50.256621], [-121.579083, 50.251549], [-121.588613, 50.252158], [-121.594149, 50.251402], [-121.59453, 50.251795], [-121.594743, 50.252211], [-121.595786, 50.252476], [-121.596856, 50.252885], [-121.597873, 50.253571], [-121.598785, 50.254535], [-121.600358, 50.256408], [-121.601971, 50.259278], [-121.602284, 50.259606], [-121.602481, 50.260048], [-121.603381, 50.261454], [-121.603858, 50.261891], [-121.604257, 50.262696], [-121.604735, 50.263116], [-121.604709, 50.263529], [-121.604774, 50.263674], [-121.604549, 50.264193], [-121.604528, 50.264435], [-121.604608, 50.264599], [-121.604772, 50.2647], [-121.604782, 50.264861], [-121.60429, 50.264864], [-121.604233, 50.264918], [-121.603904, 50.265616], [-121.603716, 50.265819], [-121.603449, 50.266338], [-121.60387, 50.266756], [-121.604182, 50.267615], [-121.604454, 50.267906], [-121.60506, 50.268327], [-121.605287, 50.268699], [-121.605429, 50.269123], [-121.60591, 50.269488], [-121.606327, 50.270115], [-121.606534, 50.27018], [-121.606616, 50.270271], [-121.606612, 50.270468], [-121.606884, 50.270714], [-121.607257, 50.270927], [-121.607748, 50.270968], [-121.608107, 50.271107], [-121.609595, 50.272564], [-121.609996, 50.272767], [-121.610415, 50.272871], [-121.6107, 50.273161], [-121.611565, 50.273792], [-121.612221, 50.274412], [-121.612582, 50.274578], [-121.612945, 50.274664], [-121.614134, 50.275695], [-121.615308, 50.276401], [-121.615815, 50.27683], [-121.616483, 50.277018], [-121.617077, 50.277468], [-121.60195, 50.277706]], [[-121.240734, 50.360734], [-121.240862, 50.362106], [-121.240798, 50.362623], [-121.240406, 50.363426], [-121.239911, 50.364859], [-121.239899, 50.365491], [-121.240252, 50.366052], [-121.240834, 50.366348], [-121.24106, 50.366548], [-121.241592, 50.366732], [-121.242443, 50.366845], [-121.244226, 50.366828], [-121.247045, 50.366284], [-121.24741, 50.366329], [-121.248061, 50.366596], [-121.248566, 50.367045], [-121.248687, 50.367455], [-121.248584, 50.368011], [-121.247604, 50.36903], [-121.247318, 50.369537], [-121.246883, 50.369414], [-121.233707, 50.369161], [-121.233636, 50.354597], [-121.23491, 50.354561], [-121.235152, 50.355418], [-121.23544, 50.355816], [-121.235934, 50.356143], [-121.236702, 50.356309], [-121.237926, 50.356306], [-121.238487, 50.356381], [-121.238941, 50.356589], [-121.23913, 50.356935], [-121.239012, 50.358099], [-121.239046, 50.358531], [-121.239631, 50.359074], [-121.239856, 50.359595], [-121.240734, 50.360734]], [[-121.566481, 50.24821], [-121.558464, 50.248273], [-121.558381, 50.238614], [-121.553326, 50.23853], [-121.553434, 50.226004], [-121.562914, 50.226014], [-121.562949, 50.215688], [-121.568335, 50.215868], [-121.567988, 50.204692], [-121.575031, 50.204486], [-121.574494, 50.203918], [-121.575708, 50.20327], [-121.57606, 50.202353], [-121.573535, 50.202392], [-121.573505, 50.202667], [-121.57022, 50.202649], [-121.570297, 50.199036], [-121.573363, 50.199017], [-121.573206, 50.197682], [-121.578343, 50.197653], [-121.579111, 50.199084], [-121.584538, 50.199151], [-121.585733, 50.199753], [-121.586342, 50.1981], [-121.586467, 50.197174], [-121.586163, 50.196596], [-121.586141, 50.196352], [-121.585684, 50.195717], [-121.585035, 50.194422], [-121.584416, 50.193588], [-121.584143, 50.192856], [-121.583823, 50.192339], [-121.583401, 50.190482], [-121.583539, 50.18819], [-121.583438, 50.187298], [-121.588294, 50.1877], [-121.596346, 50.187464], [-121.596456, 50.197905], [-121.592391, 50.197898], [-121.589736, 50.197997], [-121.590675, 50.214266], [-121.59032, 50.214274], [-121.589497, 50.214625], [-121.58868, 50.214776], [-121.58773, 50.215142], [-121.586475, 50.215855], [-121.58578, 50.216171], [-121.584567, 50.216893], [-121.583475, 50.217285], [-121.582763, 50.21769], [-121.582012, 50.217996], [-121.581234, 50.218211], [-121.580616, 50.218248], [-121.579082, 50.218478], [-121.579346, 50.219101], [-121.580629, 50.220752], [-121.581351, 50.221313], [-121.58285, 50.221991], [-121.583987, 50.222871], [-121.585464, 50.224741], [-121.585605, 50.225735], [-121.585688, 50.22885], [-121.585871, 50.229229], [-121.586092, 50.230319], [-121.586109, 50.231358], [-121.58553, 50.233565], [-121.58488, 50.235508], [-121.582887, 50.235554], [-121.582445, 50.235702], [-121.581016, 50.236388], [-121.579632, 50.237446], [-121.577449, 50.239575], [-121.577267, 50.239825], [-121.576468, 50.241311], [-121.576365, 50.242008], [-121.575281, 50.244116], [-121.574326, 50.246508], [-121.57363, 50.247172], [-121.571489, 50.248291], [-121.566481, 50.24821]], [[-121.403565, 50.267083], [-121.403334, 50.267332], [-121.403045, 50.267484], [-121.402191, 50.267414], [-121.399334, 50.266953], [-121.393557, 50.266979], [-121.393362, 50.261982], [-121.399997, 50.262037], [-121.3999, 50.261477], [-121.399931, 50.26105], [-121.411189, 50.259932], [-121.412542, 50.262803], [-121.412118, 50.263039], [-121.412761, 50.263243], [-121.411359, 50.26316], [-121.410601, 50.263177], [-121.409741, 50.263273], [-121.409039, 50.263254], [-121.407168, 50.263445], [-121.406403, 50.263659], [-121.405572, 50.26417], [-121.405278, 50.264535], [-121.404949, 50.264745], [-121.404369, 50.265268], [-121.403824, 50.266043], [-121.403565, 50.267083]], [[-121.243303, 50.315472], [-121.21536, 50.315219], [-121.215469, 50.31494], [-121.215707, 50.314641], [-121.216348, 50.314319], [-121.217164, 50.314151], [-121.217667, 50.314183], [-121.218222, 50.314026], [-121.219248, 50.313556], [-121.220202, 50.312952], [-121.220791, 50.312257], [-121.220777, 50.311825], [-121.220592, 50.311589], [-121.220331, 50.31144], [-121.219733, 50.311279], [-121.219113, 50.31121], [-121.217539, 50.311415], [-121.216097, 50.311402], [-121.214901, 50.311166], [-121.213322, 50.31065], [-121.212067, 50.310182], [-121.211283, 50.309659], [-121.210182, 50.309142], [-121.208496, 50.308687], [-121.208155, 50.308265], [-121.208159, 50.307749], [-121.208464, 50.3073], [-121.207369, 50.307503], [-121.199224, 50.307386], [-121.199055, 50.3039], [-121.196412, 50.303831], [-121.196448, 50.302246], [-121.188562, 50.301926], [-121.188595, 50.300249], [-121.180503, 50.300434], [-121.180133, 50.29685], [-121.174555, 50.29666], [-121.17441, 50.294794], [-121.162415, 50.294826], [-121.162232, 50.290764], [-121.154548, 50.290794], [-121.154337, 50.287287], [-121.138059, 50.287295], [-121.137881, 50.283033], [-121.137943, 50.280271], [-121.135635, 50.280122], [-121.127377, 50.279896], [-121.127525, 50.278534], [-121.127456, 50.27801], [-121.124404, 50.278157], [-121.124019, 50.274429], [-121.115348, 50.274218], [-121.115315, 50.270084], [-121.115587, 50.265213], [-121.121587, 50.265207], [-121.121451, 50.265465], [-121.121025, 50.265943], [-121.12104, 50.267346], [-121.121349, 50.268035], [-121.122132, 50.268822], [-121.122576, 50.2697], [-121.122607, 50.269935], [-121.12255, 50.270338], [-121.121983, 50.271184], [-121.121612, 50.27205], [-121.12175, 50.272512], [-121.121961, 50.272839], [-121.122902, 50.273502], [-121.123781, 50.274001], [-121.125318, 50.274521], [-121.126572, 50.274758], [-121.127398, 50.275185], [-121.128551, 50.275454], [-121.129008, 50.275634], [-121.131745, 50.275282], [-121.132046, 50.275107], [-121.133522, 50.274725], [-121.134187, 50.274232], [-121.134508, 50.274219], [-121.134853, 50.274423], [-121.135883, 50.274647], [-121.136307, 50.274904], [-121.137066, 50.27489], [-121.13832, 50.274766], [-121.138948, 50.274812], [-121.139225, 50.27496], [-121.139397, 50.275206], [-121.139664, 50.276263], [-121.139851, 50.276545], [-121.140399, 50.276868], [-121.141282, 50.277241], [-121.141968, 50.277676], [-121.1421, 50.277867], [-121.142893, 50.278401], [-121.143612, 50.278691], [-121.144489, 50.278934], [-121.144013, 50.273907], [-121.143951, 50.264106], [-121.185685, 50.264379], [-121.185924, 50.271682], [-121.210403, 50.271791], [-121.210783, 50.282638], [-121.244205, 50.282688], [-121.243615, 50.307099], [-121.243303, 50.315472]], [[-121.55843, 50.124403], [-121.558519, 50.121432], [-121.55675, 50.121408], [-121.556002, 50.120826], [-121.555161, 50.120772], [-121.555401, 50.116953], [-121.555386, 50.116152], [-121.556133, 50.116167], [-121.556061, 50.110795], [-121.553047, 50.110897], [-121.552655, 50.105354], [-121.555985, 50.105317], [-121.56337, 50.105392], [-121.563241, 50.105975], [-121.563365, 50.106885], [-121.563935, 50.108934], [-121.564596, 50.109716], [-121.565591, 50.111086], [-121.565779, 50.111781], [-121.566388, 50.111959], [-121.566853, 50.112855], [-121.567191, 50.11321], [-121.567534, 50.113925], [-121.567648, 50.115681], [-121.567555, 50.116048], [-121.567275, 50.116485], [-121.566614, 50.117062], [-121.565561, 50.118146], [-121.565378, 50.118224], [-121.564842, 50.118308], [-121.564454, 50.118231], [-121.564076, 50.118236], [-121.563805, 50.118358], [-121.563549, 50.11857], [-121.562984, 50.119157], [-121.562572, 50.119405], [-121.562251, 50.119797], [-121.561995, 50.119982], [-121.561543, 50.120588], [-121.561261, 50.12116], [-121.560071, 50.122575], [-121.559989, 50.122943], [-121.56006, 50.123376], [-121.560209, 50.123602], [-121.560672, 50.123995], [-121.560848, 50.124613], [-121.55843, 50.124403]], [[-121.568187, 50.142762], [-121.567896, 50.135757], [-121.564751, 50.135391], [-121.564466, 50.131503], [-121.56432, 50.130484], [-121.566191, 50.130778], [-121.568918, 50.130797], [-121.569907, 50.13108], [-121.569494, 50.131704], [-121.570208, 50.132136], [-121.570811, 50.132097], [-121.571365, 50.132248], [-121.571684, 50.132424], [-121.572012, 50.132643], [-121.572256, 50.132943], [-121.572392, 50.132999], [-121.572527, 50.133234], [-121.572843, 50.133445], [-121.5731, 50.133718], [-121.573334, 50.134296], [-121.573341, 50.134521], [-121.573627, 50.134786], [-121.573798, 50.135615], [-121.574248, 50.13698], [-121.574241, 50.137222], [-121.57409, 50.137571], [-121.574301, 50.138526], [-121.574313, 50.139058], [-121.573821, 50.139592], [-121.573725, 50.140445], [-121.573765, 50.141426], [-121.573964, 50.141796], [-121.574232, 50.142731], [-121.568187, 50.142762]], [[-121.575279, 50.157578], [-121.575232, 50.156246], [-121.572557, 50.156156], [-121.572689, 50.150795], [-121.578218, 50.150782], [-121.579406, 50.154091], [-121.58, 50.154703], [-121.580144, 50.154976], [-121.580185, 50.155319], [-121.579782, 50.156382], [-121.579777, 50.157498], [-121.575279, 50.157578]], [[-121.57368, 50.17317], [-121.574108, 50.171779], [-121.574803, 50.170387], [-121.575531, 50.170787], [-121.57974, 50.171418], [-121.582053, 50.171188], [-121.581723, 50.171878], [-121.581266, 50.174607], [-121.580944, 50.175522], [-121.578376, 50.17252], [-121.576066, 50.171733], [-121.575041, 50.17354], [-121.57368, 50.17317]], [[-121.575427, 50.196207], [-121.573093, 50.196006], [-121.572948, 50.190111], [-121.573034, 50.189443], [-121.573376, 50.188273], [-121.573384, 50.187877], [-121.572563, 50.183774], [-121.572135, 50.182514], [-121.572131, 50.182313], [-121.577583, 50.182559], [-121.578038, 50.183311], [-121.578581, 50.183883], [-121.579592, 50.184732], [-121.580926, 50.186054], [-121.581058, 50.186351], [-121.581229, 50.187684], [-121.581053, 50.190299], [-121.581114, 50.19102], [-121.581388, 50.192175], [-121.58146, 50.193102], [-121.581826, 50.193969], [-121.582583, 50.195382], [-121.582776, 50.195969], [-121.582966, 50.196214], [-121.582998, 50.196512], [-121.583594, 50.196735], [-121.575427, 50.196207]], [[-121.5867, 50.234846], [-121.586765, 50.234514], [-121.587049, 50.233998], [-121.59106, 50.234274], [-121.597037, 50.234048], [-121.59699, 50.237386], [-121.599885, 50.237473], [-121.599818, 50.239143], [-121.594607, 50.239847], [-121.593087, 50.239831], [-121.589525, 50.240023], [-121.587039, 50.237189], [-121.587059, 50.236468], [-121.586736, 50.235556], [-121.5867, 50.234846]], [[-121.600094, 50.252115], [-121.599776, 50.251841], [-121.598958, 50.251525], [-121.598809, 50.25128], [-121.597605, 50.251275], [-121.596001, 50.250436], [-121.595783, 50.250191], [-121.595627, 50.249848], [-121.59485, 50.249019], [-121.594439, 50.248443], [-121.596188, 50.247996], [-121.597016, 50.249207], [-121.601602, 50.247309], [-121.603193, 50.248796], [-121.599635, 50.250301], [-121.599759, 50.250453], [-121.599988, 50.250552], [-121.601134, 50.251763], [-121.601327, 50.2517], [-121.601277, 50.252112], [-121.600094, 50.252115]], [[-121.312819, 50.47231], [-121.303607, 50.468241], [-121.311491, 50.461293], [-121.320065, 50.465724], [-121.312819, 50.47231]], [[-121.333938, 50.463105], [-121.334021, 50.461295], [-121.339761, 50.46163], [-121.33964, 50.463408], [-121.333938, 50.463105]], [[-121.345009, 50.449206], [-121.341927, 50.44912], [-121.342073, 50.44513], [-121.344997, 50.445252], [-121.345009, 50.449206]], [[-121.64474, 50.34602], [-121.645816, 50.327793], [-121.648812, 50.32778], [-121.653691, 50.327187], [-121.653767, 50.32802], [-121.65448, 50.329107], [-121.655132, 50.329924], [-121.656007, 50.331292], [-121.657133, 50.334183], [-121.657245, 50.334697], [-121.657329, 50.337675], [-121.657747, 50.339803], [-121.657824, 50.341099], [-121.658034, 50.342073], [-121.658689, 50.343303], [-121.659695, 50.34452], [-121.661456, 50.345854], [-121.662427, 50.34627], [-121.663215, 50.346494], [-121.64474, 50.34602]], [[-121.346063, 50.424873], [-121.345203, 50.42402], [-121.346117, 50.423745], [-121.346063, 50.424873]], [[-121.676799, 50.370322], [-121.677474, 50.369781], [-121.67773, 50.369684], [-121.679025, 50.368594], [-121.683932, 50.368518], [-121.683403, 50.377695], [-121.676069, 50.377877], [-121.676118, 50.377644], [-121.675562, 50.37583], [-121.675561, 50.374904], [-121.675182, 50.373856], [-121.67493, 50.372827], [-121.675799, 50.371336], [-121.675924, 50.370879], [-121.676316, 50.370487], [-121.676799, 50.370322]], [[-121.546124, 50.056913], [-121.545287, 50.057051], [-121.544082, 50.054895], [-121.544541, 50.054733], [-121.546124, 50.056913]], [[-121.542635, 50.057773], [-121.54175, 50.057913], [-121.541718, 50.054721], [-121.542635, 50.057773]]], [[[-121.563635, 50.116046], [-121.564163, 50.115286], [-121.565191, 50.114953], [-121.565989, 50.113504], [-121.565028, 50.112251], [-121.563588, 50.113777], [-121.563666, 50.113989], [-121.563445, 50.114476], [-121.56257, 50.115615], [-121.561589, 50.116229], [-121.562374, 50.116348], [-121.563047, 50.116035], [-121.563635, 50.116046]]], [[[-121.599569, 50.266104], [-121.60061, 50.265908], [-121.600723, 50.265363], [-121.600105, 50.265121], [-121.599995, 50.2649], [-121.599034, 50.265105], [-121.599569, 50.266104]]], [[[-121.327501, 50.622521], [-121.327668, 50.622587], [-121.327832, 50.62275], [-121.328083, 50.622826], [-121.329019, 50.622759], [-121.329341, 50.622844], [-121.329653, 50.622849], [-121.330154, 50.622666], [-121.330561, 50.622367], [-121.331083, 50.621574], [-121.331396, 50.621327], [-121.330359, 50.614673], [-121.330236, 50.609284], [-121.318664, 50.610087], [-121.32064, 50.619826], [-121.321101, 50.621718], [-121.321659, 50.621789], [-121.322485, 50.622025], [-121.324062, 50.622219], [-121.325209, 50.622568], [-121.325743, 50.622639], [-121.326038, 50.622752], [-121.326505, 50.62274], [-121.327501, 50.622521]]], [[[-121.377403, 50.611352], [-121.380237, 50.611055], [-121.378995, 50.605513], [-121.375454, 50.6058], [-121.377403, 50.611352]]], [[[-121.335471, 50.72028], [-121.335819, 50.72042], [-121.336318, 50.720769], [-121.337015, 50.721471], [-121.337881, 50.721905], [-121.338013, 50.720163], [-121.337648, 50.718927], [-121.337595, 50.718044], [-121.337801, 50.716839], [-121.338072, 50.716264], [-121.338807, 50.715279], [-121.340222, 50.713944], [-121.341035, 50.712934], [-121.341208, 50.712436], [-121.341228, 50.711816], [-121.341371, 50.711328], [-121.342063, 50.710344], [-121.342184, 50.710105], [-121.342219, 50.709769], [-121.342017, 50.709247], [-121.341594, 50.708738], [-121.340808, 50.708405], [-121.340418, 50.7082], [-121.340298, 50.708061], [-121.339464, 50.707908], [-121.339119, 50.707669], [-121.338188, 50.706702], [-121.337965, 50.706222], [-121.337887, 50.705601], [-121.337325, 50.704729], [-121.336777, 50.704182], [-121.336565, 50.703747], [-121.336596, 50.703262], [-121.336967, 50.702431], [-121.337222, 50.701497], [-121.336065, 50.704059], [-121.334355, 50.703322], [-121.33302, 50.705728], [-121.327291, 50.71708], [-121.324811, 50.716596], [-121.323295, 50.71908], [-121.324044, 50.719325], [-121.325271, 50.71945], [-121.32708, 50.719988], [-121.328885, 50.72024], [-121.330238, 50.720034], [-121.330737, 50.719907], [-121.33122, 50.719913], [-121.331683, 50.719993], [-121.332112, 50.719899], [-121.332409, 50.719894], [-121.333383, 50.720025], [-121.333823, 50.719987], [-121.334288, 50.720047], [-121.334527, 50.720114], [-121.334887, 50.72037], [-121.335013, 50.72039], [-121.335471, 50.72028]]]]}, "properties": {"name": "Thompson-Nicola I (Blue Sky Country)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola I (Blue Sky Country)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933037", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.803535, 51.250638], [-120.803962, 51.250702], [-120.817835, 51.248418], [-120.842165, 51.24516], [-120.862488, 51.244018], [-120.886588, 51.244727], [-120.895899, 51.239216], [-120.905305, 51.231855], [-120.912971, 51.223939], [-120.917531, 51.214445], [-120.951554, 51.207725], [-120.960321, 51.204127], [-120.971307, 51.184435], [-120.972725, 51.178892], [-120.979255, 51.178277], [-120.978305, 51.174703], [-120.973791, 51.174885], [-120.975423, 51.168504], [-121.000958, 51.135798], [-120.999637, 51.134473], [-120.994965, 51.127941], [-120.972951, 51.108255], [-120.951159, 51.096374], [-120.938005, 51.090298], [-120.933259, 51.078873], [-120.931581, 51.068916], [-120.934225, 51.05698], [-120.946497, 51.049196], [-120.959342, 51.050694], [-120.97337, 51.059511], [-120.988075, 51.07914], [-120.99547, 51.082537], [-121.026178, 51.070922], [-121.017669, 51.050285], [-121.057588, 51.063802], [-121.072667, 51.072238], [-121.070711, 51.010335], [-121.071006, 50.958083], [-121.071078, 50.924854], [-121.049037, 50.92488], [-121.049341, 50.873863], [-121.050079, 50.863602], [-121.050028, 50.860095], [-121.049892, 50.857287], [-121.049718, 50.845421], [-121.049823, 50.837979], [-121.028845, 50.837759], [-121.014433, 50.837547], [-121.027488, 50.858038], [-121.039052, 50.875367], [-121.03695, 50.876492], [-121.035049, 50.876759], [-121.033395, 50.877211], [-121.032655, 50.877228], [-121.032342, 50.8773], [-121.031007, 50.878024], [-121.032063, 50.87979], [-121.025824, 50.88639], [-121.023697, 50.889321], [-121.02181, 50.89023], [-121.016855, 50.892917], [-121.013748, 50.893414], [-121.013919, 50.893063], [-121.01396, 50.892758], [-121.014546, 50.892326], [-121.014591, 50.89195], [-121.014545, 50.891697], [-121.014019, 50.890698], [-121.013913, 50.890157], [-121.012475, 50.887894], [-121.011758, 50.88701], [-121.010622, 50.885973], [-121.009564, 50.885452], [-121.008697, 50.885104], [-121.006724, 50.884684], [-121.005859, 50.884318], [-121.004336, 50.884049], [-121.0033, 50.884005], [-121.002603, 50.884029], [-121.002331, 50.884268], [-121.001802, 50.884345], [-120.999193, 50.883828], [-120.998114, 50.883446], [-120.997437, 50.883052], [-120.996886, 50.882562], [-120.99659, 50.882396], [-120.996174, 50.882266], [-120.997985, 50.881583], [-120.99552, 50.881722], [-120.99316, 50.881699], [-120.99148, 50.881796], [-120.991107, 50.881871], [-120.990946, 50.881966], [-120.990705, 50.882304], [-120.989858, 50.882506], [-120.989614, 50.882861], [-120.988827, 50.883315], [-120.988364, 50.883505], [-120.988064, 50.8835], [-120.98767, 50.883412], [-120.986835, 50.88301], [-120.986415, 50.882869], [-120.981681, 50.882526], [-120.981471, 50.882424], [-120.981365, 50.882278], [-120.980894, 50.882305], [-120.980576, 50.882418], [-120.979731, 50.882231], [-120.9792, 50.882358], [-120.978613, 50.882113], [-120.978074, 50.88179], [-120.977925, 50.881616], [-120.97774, 50.88092], [-120.977404, 50.880491], [-120.976002, 50.879703], [-120.975245, 50.87978], [-120.974338, 50.880042], [-120.974039, 50.880065], [-120.973421, 50.87991], [-120.972791, 50.879646], [-120.972531, 50.879436], [-120.972259, 50.878819], [-120.971958, 50.878554], [-120.9721, 50.878259], [-120.972077, 50.878105], [-120.971571, 50.877638], [-120.971146, 50.877056], [-120.970288, 50.872323], [-120.969962, 50.871423], [-120.963847, 50.872617], [-120.963655, 50.873715], [-120.96402, 50.874125], [-120.964651, 50.874649], [-120.965679, 50.874891], [-120.966068, 50.875078], [-120.966659, 50.875259], [-120.9631, 50.876042], [-120.962504, 50.87448], [-120.962591, 50.873079], [-120.951464, 50.875429], [-120.92274, 50.825511], [-120.898465, 50.782768], [-120.89683, 50.779744], [-120.887979, 50.764828], [-120.87883, 50.749183], [-120.879483, 50.74879], [-120.879853, 50.748454], [-120.880668, 50.74802], [-120.880956, 50.747926], [-120.881197, 50.747921], [-120.883146, 50.747129], [-120.883982, 50.746506], [-120.885155, 50.745952], [-120.886161, 50.745664], [-120.889161, 50.745151], [-120.889362, 50.745093], [-120.889583, 50.744925], [-120.890166, 50.744882], [-120.891086, 50.744547], [-120.891355, 50.744589], [-120.89196, 50.744384], [-120.892296, 50.744156], [-120.89251, 50.744124], [-120.893232, 50.743822], [-120.894041, 50.743765], [-120.894822, 50.743419], [-120.895484, 50.743206], [-120.895925, 50.743214], [-120.896048, 50.743297], [-120.895973, 50.743368], [-120.895531, 50.743451], [-120.8954, 50.743529], [-120.896727, 50.743652], [-120.897309, 50.743607], [-120.89786, 50.743681], [-120.898893, 50.743673], [-120.899551, 50.743586], [-120.900082, 50.743424], [-120.900436, 50.743422], [-120.901223, 50.743264], [-120.901597, 50.743127], [-120.901796, 50.743149], [-120.902869, 50.742881], [-120.903712, 50.742743], [-120.904327, 50.742673], [-120.906296, 50.742673], [-120.9071, 50.742741], [-120.907973, 50.742918], [-120.908814, 50.743122], [-120.909633, 50.743479], [-120.910158, 50.743506], [-120.910825, 50.743742], [-120.910872, 50.728304], [-120.910588, 50.718329], [-120.910397, 50.718285], [-120.910305, 50.718058], [-120.910574, 50.717816], [-120.908898, 50.703397], [-120.909134, 50.696232], [-120.909575, 50.668907], [-120.909676, 50.668946], [-120.909569, 50.662023], [-120.913059, 50.657944], [-120.921838, 50.662963], [-120.926766, 50.670832], [-120.932662, 50.670164], [-120.939034, 50.665667], [-120.948836, 50.670628], [-120.950317, 50.670288], [-120.961872, 50.669145], [-120.968559, 50.670033], [-120.979161, 50.671922], [-120.985567, 50.672071], [-120.997784, 50.674198], [-121.006532, 50.677207], [-121.011003, 50.677533], [-121.014999, 50.676044], [-121.017741, 50.673783], [-121.020489, 50.672949], [-121.039158, 50.665551], [-121.04472, 50.660805], [-121.049025, 50.651342], [-121.039955, 50.637452], [-121.047453, 50.630819], [-121.047198, 50.624677], [-121.043749, 50.615099], [-121.052111, 50.614296], [-121.055895, 50.609165], [-121.064761, 50.600734], [-121.052872, 50.590853], [-121.036592, 50.586741], [-121.021824, 50.582629], [-121.009217, 50.575792], [-121.009865, 50.574369], [-121.009705, 50.574243], [-121.009909, 50.573537], [-121.009144, 50.562884], [-121.017132, 50.558427], [-121.017351, 50.54852], [-120.990278, 50.548261], [-120.969811, 50.547979], [-120.959557, 50.54799], [-120.959687, 50.543967], [-120.958552, 50.509729], [-120.958429, 50.503509], [-120.935871, 50.503323], [-120.935849, 50.518121], [-120.912928, 50.518309], [-120.912898, 50.503191], [-120.899472, 50.503025], [-120.884822, 50.503178], [-120.843451, 50.504466], [-120.842926, 50.51191], [-120.838157, 50.51207], [-120.838093, 50.510449], [-120.837625, 50.505215], [-120.820068, 50.505244], [-120.819831, 50.503726], [-120.80348, 50.503659], [-120.79196, 50.503869], [-120.784308, 50.503888], [-120.78429, 50.500918], [-120.784393, 50.497611], [-120.781135, 50.483456], [-120.79149, 50.484262], [-120.791741, 50.484182], [-120.792134, 50.483928], [-120.792359, 50.483636], [-120.792463, 50.4829], [-120.792589, 50.482597], [-120.792812, 50.482413], [-120.793517, 50.482057], [-120.79401, 50.481473], [-120.794078, 50.480637], [-120.793782, 50.480327], [-120.793759, 50.480208], [-120.793848, 50.479501], [-120.793987, 50.479241], [-120.794512, 50.478865], [-120.79556, 50.478454], [-120.795897, 50.47818], [-120.79607, 50.477824], [-120.796037, 50.476997], [-120.796229, 50.47681], [-120.796839, 50.476732], [-120.797882, 50.476447], [-120.798187, 50.476255], [-120.798545, 50.47582], [-120.799183, 50.4754], [-120.799591, 50.474823], [-120.799788, 50.474225], [-120.799995, 50.473995], [-120.80063, 50.47371], [-120.801289, 50.473785], [-120.801529, 50.473754], [-120.802198, 50.473308], [-120.802813, 50.473122], [-120.803613, 50.473191], [-120.804421, 50.47371], [-120.805243, 50.473626], [-120.805746, 50.473698], [-120.8061, 50.473678], [-120.807497, 50.473022], [-120.809165, 50.472936], [-120.809479, 50.472825], [-120.810399, 50.471971], [-120.812191, 50.472204], [-120.818828, 50.474698], [-120.820712, 50.474792], [-120.862646, 50.474968], [-120.8637, 50.459347], [-120.809935, 50.459333], [-120.797177, 50.459412], [-120.797485, 50.449902], [-120.773135, 50.449596], [-120.773042, 50.445549], [-120.728797, 50.445562], [-120.728496, 50.430991], [-120.67354, 50.430725], [-120.645779, 50.430494], [-120.634274, 50.43033], [-120.633081, 50.424131], [-120.632103, 50.420136], [-120.631621, 50.415748], [-120.567107, 50.415903], [-120.566266, 50.401484], [-120.524329, 50.401347], [-120.431799, 50.400157], [-120.431529, 50.385743], [-120.423873, 50.385903], [-120.423305, 50.385504], [-120.422747, 50.385601], [-120.422458, 50.385511], [-120.41794, 50.385634], [-120.340921, 50.385859], [-120.340568, 50.401888], [-120.340701, 50.40536], [-120.342196, 50.431497], [-120.342339, 50.431866], [-120.340872, 50.449347], [-120.340962, 50.449474], [-120.340392, 50.452652], [-120.340347, 50.453452], [-120.340334, 50.473443], [-120.33895, 50.502648], [-120.33886, 50.502957], [-120.338948, 50.502966], [-120.339215, 50.541576], [-120.33987, 50.574953], [-120.357191, 50.575123], [-120.357288, 50.59698], [-120.357194, 50.597284], [-120.357291, 50.597484], [-120.357292, 50.608923], [-120.357912, 50.618269], [-120.399935, 50.618455], [-120.415245, 50.618278], [-120.424129, 50.618115], [-120.443066, 50.617906], [-120.445744, 50.617917], [-120.45316, 50.618359], [-120.453477, 50.618465], [-120.473941, 50.619455], [-120.473907, 50.620182], [-120.473279, 50.623033], [-120.473426, 50.633768], [-120.473722, 50.646345], [-120.476668, 50.656176], [-120.474112, 50.66882], [-120.474001, 50.686682], [-120.48244, 50.689632], [-120.482834, 50.69278], [-120.518718, 50.693115], [-120.519101, 50.705216], [-120.519134, 50.710844], [-120.520983, 50.711573], [-120.522194, 50.711877], [-120.529858, 50.712951], [-120.531031, 50.712925], [-120.535193, 50.713375], [-120.538952, 50.713894], [-120.538104, 50.723785], [-120.538167, 50.724661], [-120.538502, 50.725474], [-120.538775, 50.72566], [-120.539742, 50.7256], [-120.540481, 50.725318], [-120.540904, 50.725084], [-120.541284, 50.724686], [-120.54114, 50.725799], [-120.53833, 50.726815], [-120.538382, 50.729042], [-120.524844, 50.729195], [-120.524549, 50.730958], [-120.522436, 50.73146], [-120.522133, 50.731563], [-120.521794, 50.731774], [-120.520683, 50.732142], [-120.518281, 50.731303], [-120.514975, 50.729264], [-120.509527, 50.729187], [-120.509588, 50.727933], [-120.472299, 50.727868], [-120.472426, 50.74197], [-120.459823, 50.741797], [-120.437021, 50.742134], [-120.430825, 50.742101], [-120.419896, 50.742227], [-120.410235, 50.742266], [-120.405462, 50.742194], [-120.396423, 50.741938], [-120.39007, 50.741922], [-120.381912, 50.742054], [-120.381788, 50.744915], [-120.382212, 50.747874], [-120.381762, 50.756238], [-120.381401, 50.760392], [-120.381386, 50.772052], [-120.381489, 50.777728], [-120.381511, 50.792603], [-120.382064, 50.822782], [-120.335151, 50.822893], [-120.335128, 50.8336], [-120.326976, 50.833577], [-120.323859, 50.833702], [-120.323827, 50.838447], [-120.323372, 50.844526], [-120.313127, 50.844834], [-120.313202, 50.84693], [-120.312103, 50.85599], [-120.311763, 50.866228], [-120.312786, 50.881405], [-120.316652, 50.881444], [-120.333854, 50.880765], [-120.334068, 50.894626], [-120.356725, 50.894893], [-120.357029, 50.901214], [-120.357356, 50.902582], [-120.370154, 50.90228], [-120.372445, 50.90434], [-120.378564, 50.907155], [-120.38733, 50.909171], [-120.393663, 50.914636], [-120.395318, 50.919495], [-120.41839, 50.923374], [-120.429195, 50.926169], [-120.425432, 50.931833], [-120.418544, 50.93867], [-120.421836, 50.943175], [-120.431117, 50.948017], [-120.438083, 50.949683], [-120.440946, 50.954663], [-120.447537, 50.955523], [-120.450732, 50.961403], [-120.455524, 50.960703], [-120.463483, 50.952745], [-120.475039, 50.956319], [-120.490052, 50.961563], [-120.492764, 50.962455], [-120.498506, 50.964658], [-120.509364, 50.968024], [-120.509373, 50.976297], [-120.50872, 50.982899], [-120.514968, 50.986802], [-120.515246, 50.991078], [-120.51102, 50.994365], [-120.501754, 50.99727], [-120.46812, 50.997088], [-120.466632, 51.013132], [-120.512639, 51.014542], [-120.513434, 51.028321], [-120.556443, 51.028743], [-120.559601, 51.028597], [-120.560338, 51.040661], [-120.556702, 51.040671], [-120.557315, 51.069354], [-120.557239, 51.182452], [-120.557774, 51.193571], [-120.592862, 51.197618], [-120.608237, 51.205957], [-120.617018, 51.216516], [-120.632211, 51.21884], [-120.653837, 51.219632], [-120.658044, 51.21924], [-120.674185, 51.217948], [-120.681111, 51.21514], [-120.694464, 51.22919], [-120.705579, 51.22435], [-120.720542, 51.223346], [-120.719391, 51.230135], [-120.724822, 51.236664], [-120.73517, 51.239693], [-120.74699, 51.236648], [-120.757383, 51.23132], [-120.768104, 51.232074], [-120.77513, 51.231807], [-120.776694, 51.232936], [-120.784979, 51.237519], [-120.798282, 51.246588], [-120.803535, 51.250638]]]]}, "properties": {"name": "Thompson-Nicola J (Copper Desert Country)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola J (Copper Desert Country)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933039", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.288652, 50.864994], [-120.288721, 50.866542], [-120.29071, 50.866464], [-120.311763, 50.866228], [-120.312103, 50.85599], [-120.313202, 50.84693], [-120.313127, 50.844834], [-120.323372, 50.844526], [-120.323827, 50.838447], [-120.323859, 50.833702], [-120.326976, 50.833577], [-120.335128, 50.8336], [-120.335151, 50.822893], [-120.382064, 50.822782], [-120.381511, 50.792603], [-120.381489, 50.777728], [-120.381386, 50.772052], [-120.381401, 50.760392], [-120.381762, 50.756238], [-120.382212, 50.747874], [-120.381788, 50.744915], [-120.381912, 50.742054], [-120.39007, 50.741922], [-120.396423, 50.741938], [-120.405462, 50.742194], [-120.410235, 50.742266], [-120.419896, 50.742227], [-120.430825, 50.742101], [-120.437021, 50.742134], [-120.459823, 50.741797], [-120.472426, 50.74197], [-120.472299, 50.727868], [-120.509588, 50.727933], [-120.509527, 50.729187], [-120.514975, 50.729264], [-120.518281, 50.731303], [-120.520683, 50.732142], [-120.521794, 50.731774], [-120.522133, 50.731563], [-120.522436, 50.73146], [-120.524549, 50.730958], [-120.524844, 50.729195], [-120.538382, 50.729042], [-120.53833, 50.726815], [-120.54114, 50.725799], [-120.541284, 50.724686], [-120.540904, 50.725084], [-120.540481, 50.725318], [-120.539742, 50.7256], [-120.538775, 50.72566], [-120.538502, 50.725474], [-120.538167, 50.724661], [-120.538104, 50.723785], [-120.538952, 50.713894], [-120.535193, 50.713375], [-120.531031, 50.712925], [-120.529858, 50.712951], [-120.522194, 50.711877], [-120.520983, 50.711573], [-120.519134, 50.710844], [-120.519101, 50.705216], [-120.518718, 50.693115], [-120.482834, 50.69278], [-120.48244, 50.689632], [-120.474001, 50.686682], [-120.474112, 50.66882], [-120.476668, 50.656176], [-120.473722, 50.646345], [-120.473426, 50.633768], [-120.473279, 50.623033], [-120.473907, 50.620182], [-120.473941, 50.619455], [-120.453477, 50.618465], [-120.45316, 50.618359], [-120.445744, 50.617917], [-120.443066, 50.617906], [-120.424129, 50.618115], [-120.415245, 50.618278], [-120.399935, 50.618455], [-120.357414, 50.61827], [-120.35603, 50.618158], [-120.353503, 50.618165], [-120.352589, 50.618237], [-120.333499, 50.618405], [-120.328969, 50.618384], [-120.327758, 50.617191], [-120.326262, 50.618378], [-120.319282, 50.61853], [-120.310131, 50.61777], [-120.303411, 50.61736], [-120.298811, 50.617589], [-120.278794, 50.618374], [-120.27364, 50.618709], [-120.262353, 50.618449], [-120.260351, 50.618888], [-120.260585, 50.618984], [-120.25649, 50.618993], [-120.254835, 50.619295], [-120.254227, 50.619324], [-120.252367, 50.618924], [-120.248382, 50.618895], [-120.240743, 50.619152], [-120.206933, 50.618886], [-120.198686, 50.61871], [-120.174236, 50.619169], [-120.147303, 50.619071], [-120.14278, 50.619121], [-120.137401, 50.61909], [-120.121972, 50.619306], [-120.111861, 50.619361], [-120.100241, 50.619198], [-120.096532, 50.619272], [-120.081579, 50.619344], [-120.081697, 50.622175], [-120.081336, 50.634593], [-120.078436, 50.634424], [-120.078489, 50.636402], [-120.079013, 50.636432], [-120.079035, 50.636812], [-120.078957, 50.637018], [-120.081067, 50.637126], [-120.080041, 50.648649], [-120.062759, 50.647949], [-120.056962, 50.648505], [-120.056957, 50.64876], [-120.041814, 50.648893], [-120.041919, 50.652677], [-120.041447, 50.653752], [-120.041626, 50.656464], [-120.041998, 50.658182], [-120.04819, 50.657823], [-120.052571, 50.657706], [-120.054658, 50.657852], [-120.053778, 50.659311], [-120.057436, 50.661054], [-120.056748, 50.666646], [-120.060653, 50.666494], [-120.062808, 50.666475], [-120.06398, 50.666535], [-120.064005, 50.668158], [-120.067255, 50.668183], [-120.067232, 50.668559], [-120.070647, 50.668586], [-120.070713, 50.665383], [-120.063836, 50.662749], [-120.063944, 50.658164], [-120.064927, 50.657379], [-120.067335, 50.657365], [-120.071322, 50.658257], [-120.07537, 50.659257], [-120.07761, 50.659959], [-120.080013, 50.660136], [-120.083761, 50.659419], [-120.091095, 50.659462], [-120.099, 50.660275], [-120.102146, 50.6608], [-120.115291, 50.663308], [-120.122551, 50.664108], [-120.124895, 50.664179], [-120.129848, 50.664925], [-120.133361, 50.665628], [-120.139492, 50.667339], [-120.141809, 50.668228], [-120.146631, 50.670293], [-120.149919, 50.671095], [-120.154674, 50.671811], [-120.157307, 50.671863], [-120.158388, 50.671793], [-120.16146, 50.671235], [-120.166087, 50.670523], [-120.167529, 50.670433], [-120.170288, 50.67048], [-120.172641, 50.670895], [-120.17588, 50.671742], [-120.178451, 50.672112], [-120.181637, 50.672376], [-120.183962, 50.671903], [-120.185187, 50.671713], [-120.191652, 50.670871], [-120.199571, 50.670974], [-120.201737, 50.671593], [-120.206627, 50.672166], [-120.209391, 50.67305], [-120.215098, 50.673217], [-120.216836, 50.673158], [-120.220009, 50.673166], [-120.223926, 50.673529], [-120.226662, 50.674067], [-120.228443, 50.674583], [-120.229228, 50.674898], [-120.231944, 50.675787], [-120.234298, 50.676641], [-120.239292, 50.677938], [-120.244067, 50.678868], [-120.24588, 50.679039], [-120.25171, 50.678669], [-120.253628, 50.678827], [-120.258572, 50.680142], [-120.26392, 50.681366], [-120.266009, 50.68176], [-120.270225, 50.68165], [-120.277949, 50.681623], [-120.292374, 50.680884], [-120.292602, 50.680234], [-120.292632, 50.679375], [-120.292443, 50.678454], [-120.292479, 50.677706], [-120.292719, 50.677172], [-120.293691, 50.676162], [-120.295272, 50.674962], [-120.295957, 50.67465], [-120.297499, 50.674468], [-120.298396, 50.674555], [-120.299388, 50.674768], [-120.302092, 50.675724], [-120.304479, 50.676174], [-120.309129, 50.676781], [-120.313054, 50.677219], [-120.316995, 50.678035], [-120.317802, 50.678393], [-120.320316, 50.680271], [-120.32147, 50.680718], [-120.324352, 50.680467], [-120.334718, 50.680747], [-120.338121, 50.680511], [-120.341761, 50.680393], [-120.34183, 50.681778], [-120.339596, 50.68396], [-120.339745, 50.685734], [-120.34034, 50.686841], [-120.344844, 50.690752], [-120.346585, 50.692635], [-120.348302, 50.695707], [-120.351728, 50.700682], [-120.352833, 50.704157], [-120.353229, 50.709334], [-120.354959, 50.714334], [-120.355365, 50.717027], [-120.35554, 50.720847], [-120.355388, 50.721646], [-120.355657, 50.727095], [-120.356519, 50.730515], [-120.35639, 50.733184], [-120.356109, 50.735639], [-120.355787, 50.736774], [-120.353136, 50.738193], [-120.350845, 50.739036], [-120.349355, 50.739843], [-120.347509, 50.741609], [-120.345932, 50.74361], [-120.344869, 50.745594], [-120.344056, 50.74662], [-120.343642, 50.747599], [-120.343318, 50.748766], [-120.343137, 50.750899], [-120.342825, 50.75314], [-120.341547, 50.757915], [-120.340235, 50.761447], [-120.339607, 50.762603], [-120.338031, 50.76514], [-120.336207, 50.766555], [-120.332127, 50.770694], [-120.331008, 50.771448], [-120.330237, 50.772281], [-120.329044, 50.773754], [-120.327079, 50.776545], [-120.325235, 50.779624], [-120.32417, 50.781923], [-120.321965, 50.782044], [-120.321204, 50.781994], [-120.310771, 50.781823], [-120.300883, 50.781509], [-120.30071, 50.80064], [-120.289167, 50.801172], [-120.289426, 50.80818], [-120.277512, 50.808257], [-120.277907, 50.824031], [-120.276481, 50.830468], [-120.271032, 50.830344], [-120.265852, 50.830313], [-120.265767, 50.833464], [-120.265905, 50.837742], [-120.260959, 50.837682], [-120.2603, 50.838471], [-120.260526, 50.855667], [-120.25492, 50.85576], [-120.254998, 50.858356], [-120.254464, 50.859492], [-120.246186, 50.859453], [-120.24575, 50.863347], [-120.245617, 50.866373], [-120.26337, 50.865955], [-120.264394, 50.86595], [-120.265073, 50.866057], [-120.265715, 50.864375], [-120.266417, 50.863803], [-120.267659, 50.863134], [-120.26937, 50.862452], [-120.27015, 50.862359], [-120.276259, 50.862529], [-120.278105, 50.862409], [-120.285981, 50.862317], [-120.287704, 50.862357], [-120.288452, 50.862245], [-120.289207, 50.861782], [-120.288652, 50.864994]]]]}, "properties": {"name": "Kamloops", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kamloops", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933042", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.485008, 51.090019], [-120.557302, 51.088724], [-120.557315, 51.069354], [-120.556702, 51.040671], [-120.560338, 51.040661], [-120.559601, 51.028597], [-120.556443, 51.028743], [-120.513434, 51.028321], [-120.512639, 51.014542], [-120.466632, 51.013132], [-120.46812, 50.997088], [-120.501754, 50.99727], [-120.51102, 50.994365], [-120.515246, 50.991078], [-120.514968, 50.986802], [-120.50872, 50.982899], [-120.509373, 50.976297], [-120.509364, 50.968024], [-120.498506, 50.964658], [-120.492764, 50.962455], [-120.490052, 50.961563], [-120.475039, 50.956319], [-120.463483, 50.952745], [-120.455524, 50.960703], [-120.450732, 50.961403], [-120.447537, 50.955523], [-120.440946, 50.954663], [-120.438083, 50.949683], [-120.431117, 50.948017], [-120.421836, 50.943175], [-120.418544, 50.93867], [-120.425432, 50.931833], [-120.429195, 50.926169], [-120.41839, 50.923374], [-120.395318, 50.919495], [-120.393663, 50.914636], [-120.38733, 50.909171], [-120.378564, 50.907155], [-120.372445, 50.90434], [-120.370154, 50.90228], [-120.357356, 50.902582], [-120.357029, 50.901214], [-120.356725, 50.894893], [-120.334068, 50.894626], [-120.333854, 50.880765], [-120.316652, 50.881444], [-120.312786, 50.881405], [-120.311763, 50.866228], [-120.29071, 50.866464], [-120.288721, 50.866542], [-120.28866, 50.864915], [-120.289207, 50.861782], [-120.288452, 50.862245], [-120.287704, 50.862357], [-120.285981, 50.862317], [-120.278105, 50.862409], [-120.276259, 50.862529], [-120.27015, 50.862359], [-120.26937, 50.862452], [-120.267659, 50.863134], [-120.266417, 50.863803], [-120.265715, 50.864375], [-120.265073, 50.866057], [-120.264394, 50.86595], [-120.26337, 50.865955], [-120.245617, 50.866373], [-120.24575, 50.863347], [-120.246186, 50.859453], [-120.254464, 50.859492], [-120.254998, 50.858356], [-120.25492, 50.85576], [-120.260526, 50.855667], [-120.2603, 50.838471], [-120.260959, 50.837682], [-120.265905, 50.837742], [-120.265767, 50.833464], [-120.265852, 50.830313], [-120.271032, 50.830344], [-120.276481, 50.830468], [-120.277907, 50.824031], [-120.277512, 50.808257], [-120.289426, 50.80818], [-120.289167, 50.801172], [-120.30071, 50.80064], [-120.300883, 50.781509], [-120.260599, 50.781673], [-120.234952, 50.78143], [-120.211904, 50.780976], [-120.209502, 50.780905], [-120.208133, 50.780803], [-120.198994, 50.780835], [-120.185578, 50.780497], [-120.180255, 50.780507], [-120.176125, 50.780238], [-120.176836, 50.771335], [-120.177513, 50.76418], [-120.177832, 50.756869], [-120.135612, 50.756014], [-120.131972, 50.756139], [-120.131089, 50.75608], [-120.121809, 50.756032], [-120.113025, 50.756159], [-120.109786, 50.755433], [-120.105313, 50.754723], [-120.104493, 50.75438], [-120.101475, 50.752877], [-120.098151, 50.74957], [-120.096481, 50.748739], [-120.09449, 50.748513], [-120.090923, 50.748509], [-120.086631, 50.748361], [-120.082238, 50.747909], [-120.077028, 50.744345], [-120.073426, 50.742243], [-120.060701, 50.740828], [-120.057657, 50.74005], [-120.056554, 50.740213], [-120.056265, 50.739892], [-120.055979, 50.739854], [-120.055481, 50.739646], [-120.054704, 50.738635], [-120.054017, 50.737958], [-120.058249, 50.738115], [-120.063377, 50.737659], [-120.065159, 50.738064], [-120.06517, 50.738184], [-120.065318, 50.738137], [-120.066137, 50.738175], [-120.066668, 50.738296], [-120.066981, 50.738278], [-120.067197, 50.738013], [-120.0673, 50.737961], [-120.067512, 50.737967], [-120.068086, 50.738296], [-120.069233, 50.73855], [-120.069535, 50.738477], [-120.069729, 50.738337], [-120.070102, 50.738248], [-120.070221, 50.738142], [-120.070282, 50.737866], [-120.070559, 50.737738], [-120.070804, 50.737681], [-120.071555, 50.737682], [-120.072303, 50.737503], [-120.072842, 50.737499], [-120.073368, 50.737691], [-120.074072, 50.737763], [-120.07457, 50.737748], [-120.075446, 50.737573], [-120.076226, 50.737556], [-120.076942, 50.737672], [-120.077652, 50.737862], [-120.078747, 50.737826], [-120.080156, 50.738185], [-120.080333, 50.738306], [-120.080877, 50.738429], [-120.081304, 50.738637], [-120.081702, 50.738619], [-120.082328, 50.738366], [-120.082543, 50.738345], [-120.082597, 50.738597], [-120.08249, 50.738927], [-120.082341, 50.739041], [-120.081955, 50.739112], [-120.081417, 50.73935], [-120.08084, 50.73974], [-120.080688, 50.73989], [-120.080676, 50.740294], [-120.081836, 50.741033], [-120.08243, 50.741958], [-120.083255, 50.74259], [-120.083818, 50.742794], [-120.084648, 50.742905], [-120.08543, 50.743284], [-120.087213, 50.74359], [-120.087819, 50.743875], [-120.089829, 50.743916], [-120.090388, 50.744056], [-120.090801, 50.744247], [-120.091305, 50.744141], [-120.091787, 50.743884], [-120.09203, 50.743872], [-120.09275, 50.743918], [-120.093602, 50.7441], [-120.094007, 50.744218], [-120.094234, 50.744449], [-120.095867, 50.744651], [-120.096535, 50.744606], [-120.097, 50.744419], [-120.097571, 50.744379], [-120.098298, 50.744515], [-120.098927, 50.744449], [-120.101327, 50.744599], [-120.102256, 50.744721], [-120.103133, 50.744986], [-120.103417, 50.744975], [-120.103811, 50.744808], [-120.104283, 50.745535], [-120.104287, 50.746146], [-120.103662, 50.747689], [-120.103403, 50.748716], [-120.103992, 50.748997], [-120.104494, 50.749405], [-120.10442, 50.750003], [-120.105442, 50.750271], [-120.106391, 50.750248], [-120.107244, 50.750466], [-120.108297, 50.750545], [-120.112584, 50.750212], [-120.115252, 50.750585], [-120.118525, 50.751545], [-120.135092, 50.751975], [-120.151554, 50.752152], [-120.169496, 50.752479], [-120.177117, 50.752201], [-120.177446, 50.748095], [-120.177522, 50.743644], [-120.17826, 50.731132], [-120.178812, 50.71888], [-120.178269, 50.691248], [-120.178795, 50.683269], [-120.178577, 50.678201], [-120.179803, 50.67813], [-120.18328, 50.678069], [-120.199742, 50.677885], [-120.209408, 50.678187], [-120.209512, 50.677481], [-120.209702, 50.673065], [-120.209391, 50.67305], [-120.206627, 50.672166], [-120.201737, 50.671593], [-120.199571, 50.670974], [-120.191652, 50.670871], [-120.185187, 50.671713], [-120.183962, 50.671903], [-120.181637, 50.672376], [-120.178451, 50.672112], [-120.17588, 50.671742], [-120.172641, 50.670895], [-120.170288, 50.67048], [-120.167529, 50.670433], [-120.166087, 50.670523], [-120.16146, 50.671235], [-120.158388, 50.671793], [-120.157307, 50.671863], [-120.154674, 50.671811], [-120.149919, 50.671095], [-120.146631, 50.670293], [-120.141809, 50.668228], [-120.139492, 50.667339], [-120.133361, 50.665628], [-120.129848, 50.664925], [-120.12812, 50.664641], [-120.124895, 50.664179], [-120.122551, 50.664108], [-120.115291, 50.663308], [-120.102146, 50.6608], [-120.099, 50.660275], [-120.091095, 50.659462], [-120.083761, 50.659419], [-120.080013, 50.660136], [-120.07761, 50.659959], [-120.07537, 50.659257], [-120.071322, 50.658257], [-120.067335, 50.657365], [-120.064927, 50.657379], [-120.063944, 50.658164], [-120.063836, 50.662749], [-120.070713, 50.665383], [-120.070647, 50.668586], [-120.067232, 50.668559], [-120.067255, 50.668183], [-120.064005, 50.668158], [-120.06398, 50.666535], [-120.062808, 50.666475], [-120.060653, 50.666494], [-120.056748, 50.666646], [-120.057436, 50.661054], [-120.053778, 50.659311], [-120.054658, 50.657852], [-120.052571, 50.657706], [-120.04819, 50.657823], [-120.044035, 50.658035], [-120.033537, 50.658858], [-120.030819, 50.658956], [-120.029185, 50.658928], [-120.027281, 50.658614], [-120.023905, 50.657837], [-120.020392, 50.65678], [-120.016574, 50.65538], [-120.01285, 50.653808], [-120.010415, 50.65292], [-120.007878, 50.652162], [-120.001737, 50.649956], [-120.000078, 50.649805], [-119.999019, 50.649375], [-119.991336, 50.649554], [-119.987405, 50.650203], [-119.983804, 50.651001], [-119.979433, 50.651136], [-119.973413, 50.651869], [-119.969429, 50.652565], [-119.966409, 50.653404], [-119.963786, 50.654357], [-119.962613, 50.654479], [-119.958077, 50.653655], [-119.955068, 50.653488], [-119.953329, 50.653016], [-119.951467, 50.652004], [-119.948242, 50.651028], [-119.943981, 50.649889], [-119.941157, 50.649401], [-119.9361, 50.649513], [-119.931501, 50.649226], [-119.929541, 50.649021], [-119.927599, 50.64864], [-119.925364, 50.648123], [-119.919822, 50.646388], [-119.917288, 50.64604], [-119.911924, 50.646375], [-119.904812, 50.648607], [-119.899172, 50.650617], [-119.892331, 50.65281], [-119.888145, 50.654446], [-119.885352, 50.656164], [-119.880502, 50.659763], [-119.877051, 50.661754], [-119.874101, 50.662855], [-119.86571, 50.66488], [-119.863749, 50.66598], [-119.858763, 50.669511], [-119.85687, 50.671511], [-119.855522, 50.672642], [-119.854187, 50.673222], [-119.85268, 50.673593], [-119.848228, 50.673048], [-119.839678, 50.674699], [-119.838287, 50.675329], [-119.83443, 50.677749], [-119.831223, 50.681166], [-119.829849, 50.683418], [-119.828363, 50.68516], [-119.826642, 50.686625], [-119.821305, 50.688844], [-119.814544, 50.693832], [-119.8053, 50.699952], [-119.801802, 50.700992], [-119.798211, 50.703163], [-119.795367, 50.70655], [-119.792596, 50.710286], [-119.792464, 50.712106], [-119.791395, 50.71387], [-119.787639, 50.716914], [-119.783149, 50.720304], [-119.778748, 50.722419], [-119.774407, 50.723353], [-119.77203, 50.72478], [-119.768933, 50.726316], [-119.767967, 50.727894], [-119.766455, 50.732561], [-119.765152, 50.735835], [-119.764699, 50.738268], [-119.764237, 50.738659], [-119.763228, 50.73916], [-119.762708, 50.739737], [-119.761142, 50.740986], [-119.759515, 50.742573], [-119.758564, 50.743882], [-119.756995, 50.745152], [-119.755537, 50.747099], [-119.754303, 50.750203], [-119.755485, 50.75024], [-119.755914, 50.750301], [-119.756651, 50.750292], [-119.757364, 50.750158], [-119.757948, 50.749929], [-119.758834, 50.749818], [-119.759817, 50.750137], [-119.760077, 50.750482], [-119.76012, 50.751191], [-119.761126, 50.752399], [-119.76156, 50.752766], [-119.762701, 50.753379], [-119.763515, 50.753944], [-119.764271, 50.754259], [-119.764786, 50.754588], [-119.765618, 50.754964], [-119.766041, 50.755431], [-119.766626, 50.756919], [-119.768062, 50.75819], [-119.768911, 50.758645], [-119.769467, 50.759172], [-119.770206, 50.759658], [-119.770612, 50.75981], [-119.771779, 50.760152], [-119.772378, 50.760182], [-119.773182, 50.760136], [-119.773829, 50.760256], [-119.773946, 50.760334], [-119.774681, 50.761252], [-119.774833, 50.761897], [-119.774894, 50.762704], [-119.775166, 50.762959], [-119.775765, 50.763277], [-119.776423, 50.763369], [-119.776875, 50.763341], [-119.777823, 50.763075], [-119.778462, 50.76306], [-119.779321, 50.763183], [-119.780607, 50.763593], [-119.781753, 50.763574], [-119.782711, 50.763453], [-119.783663, 50.763466], [-119.784231, 50.763723], [-119.784622, 50.764109], [-119.784678, 50.764324], [-119.784435, 50.764536], [-119.783155, 50.765188], [-119.782585, 50.76611], [-119.780707, 50.767908], [-119.780651, 50.768405], [-119.78075, 50.768888], [-119.780411, 50.769399], [-119.780284, 50.769898], [-119.77994, 50.770284], [-119.779341, 50.770703], [-119.778117, 50.771352], [-119.776782, 50.772544], [-119.774275, 50.774502], [-119.772504, 50.775525], [-119.771286, 50.776498], [-119.769816, 50.777315], [-119.768253, 50.777992], [-119.767365, 50.778588], [-119.767001, 50.779155], [-119.766994, 50.779479], [-119.767392, 50.78], [-119.768065, 50.780568], [-119.768345, 50.780994], [-119.768394, 50.781361], [-119.768305, 50.78175], [-119.768442, 50.782412], [-119.768453, 50.783069], [-119.76857, 50.783345], [-119.768529, 50.783634], [-119.768086, 50.784067], [-119.767868, 50.784459], [-119.766895, 50.785022], [-119.766823, 50.785744], [-119.766636, 50.786432], [-119.766149, 50.787523], [-119.765891, 50.787726], [-119.764944, 50.788045], [-119.76261, 50.789603], [-119.760669, 50.791331], [-119.760553, 50.79155], [-119.760561, 50.791694], [-119.760701, 50.791888], [-119.761191, 50.792272], [-119.761589, 50.792506], [-119.762195, 50.792662], [-119.762774, 50.792604], [-119.763133, 50.792442], [-119.763625, 50.791882], [-119.764003, 50.791576], [-119.7643, 50.791542], [-119.764759, 50.791611], [-119.765064, 50.791767], [-119.765206, 50.792006], [-119.765121, 50.792728], [-119.764785, 50.793293], [-119.764582, 50.793433], [-119.764267, 50.793413], [-119.763862, 50.793271], [-119.763591, 50.793241], [-119.762884, 50.793275], [-119.762064, 50.793555], [-119.760783, 50.79426], [-119.759822, 50.795282], [-119.759272, 50.796555], [-119.758205, 50.797946], [-119.757672, 50.798526], [-119.757587, 50.798779], [-119.757639, 50.798932], [-119.757815, 50.799017], [-119.758979, 50.799259], [-119.761578, 50.799531], [-119.762566, 50.799687], [-119.763278, 50.800211], [-119.763289, 50.800399], [-119.763438, 50.80053], [-119.763616, 50.800661], [-119.763994, 50.800786], [-119.763766, 50.801025], [-119.763035, 50.801125], [-119.762602, 50.801242], [-119.762402, 50.801473], [-119.762302, 50.801718], [-119.762453, 50.802082], [-119.762428, 50.802641], [-119.762289, 50.802905], [-119.762331, 50.80339], [-119.76219, 50.80413], [-119.762026, 50.80426], [-119.761788, 50.804293], [-119.761667, 50.804422], [-119.761458, 50.804939], [-119.761805, 50.806029], [-119.761738, 50.806336], [-119.76144, 50.806568], [-119.760919, 50.806652], [-119.760127, 50.806932], [-119.758924, 50.807725], [-119.75877, 50.807998], [-119.758818, 50.808564], [-119.758721, 50.809115], [-119.758433, 50.809733], [-119.7583, 50.810367], [-119.758333, 50.81069], [-119.758732, 50.81121], [-119.758747, 50.811489], [-119.75918, 50.812532], [-119.758978, 50.813688], [-119.758545, 50.814543], [-119.758538, 50.814903], [-119.758694, 50.815161], [-119.758735, 50.815591], [-119.758859, 50.815767], [-119.759507, 50.816418], [-119.760286, 50.816858], [-119.760352, 50.817019], [-119.760326, 50.817793], [-119.760433, 50.818133], [-119.760323, 50.818459], [-119.759768, 50.819164], [-119.759448, 50.820476], [-119.759495, 50.821258], [-119.75906, 50.821835], [-119.758843, 50.822514], [-119.758664, 50.822816], [-119.758877, 50.823531], [-119.759286, 50.823961], [-119.759431, 50.824506], [-119.75897, 50.825129], [-119.758301, 50.825577], [-119.757954, 50.825945], [-119.757661, 50.82606], [-119.757652, 50.826131], [-119.75787, 50.826477], [-119.757779, 50.826858], [-119.757871, 50.827197], [-119.758586, 50.827504], [-119.75897, 50.827774], [-119.759291, 50.828162], [-119.75928, 50.82845], [-119.759162, 50.828624], [-119.758862, 50.828846], [-119.758695, 50.829138], [-119.758024, 50.829568], [-119.757555, 50.830019], [-119.757238, 50.830172], [-119.756786, 50.830245], [-119.75644, 50.830388], [-119.756243, 50.830653], [-119.755528, 50.831066], [-119.755368, 50.831457], [-119.755359, 50.83179], [-119.754934, 50.832321], [-119.755013, 50.833391], [-119.754868, 50.834086], [-119.754725, 50.834323], [-119.754104, 50.83485], [-119.75431, 50.834999], [-119.754362, 50.835141], [-119.75429, 50.83534], [-119.754085, 50.835508], [-119.754259, 50.835782], [-119.754233, 50.836062], [-119.753914, 50.836465], [-119.75371, 50.836614], [-119.753617, 50.836948], [-119.75311, 50.837463], [-119.741431, 50.837329], [-119.717001, 50.837306], [-119.697893, 50.837103], [-119.698865, 50.836332], [-119.699521, 50.836145], [-119.700659, 50.835947], [-119.700853, 50.835853], [-119.70104, 50.835651], [-119.700564, 50.833539], [-119.699653, 50.832535], [-119.69923, 50.832347], [-119.697874, 50.832468], [-119.696852, 50.832708], [-119.696452, 50.832673], [-119.696359, 50.832539], [-119.696434, 50.832358], [-119.696722, 50.832171], [-119.696904, 50.832157], [-119.697408, 50.832273], [-119.697704, 50.83223], [-119.698072, 50.831934], [-119.698657, 50.831254], [-119.698778, 50.8309], [-119.698749, 50.829659], [-119.698859, 50.829091], [-119.699143, 50.82859], [-119.699764, 50.828053], [-119.700641, 50.827754], [-119.701674, 50.827667], [-119.703227, 50.827775], [-119.70401, 50.827775], [-119.704841, 50.827675], [-119.705247, 50.827566], [-119.705813, 50.827301], [-119.706625, 50.827076], [-119.707509, 50.82666], [-119.708306, 50.825958], [-119.708878, 50.82527], [-119.709236, 50.823884], [-119.710953, 50.820913], [-119.710985, 50.820489], [-119.711253, 50.819943], [-119.711422, 50.819201], [-119.711811, 50.81832], [-119.712671, 50.817472], [-119.713346, 50.817133], [-119.713935, 50.816975], [-119.714664, 50.816562], [-119.715689, 50.815675], [-119.716282, 50.814852], [-119.717405, 50.812928], [-119.718371, 50.811952], [-119.718511, 50.811184], [-119.718794, 50.810467], [-119.719244, 50.809638], [-119.719603, 50.809216], [-119.719716, 50.80897], [-119.719934, 50.808795], [-119.720381, 50.80891], [-119.720587, 50.809039], [-119.72095, 50.80967], [-119.72107, 50.810287], [-119.720619, 50.811288], [-119.720744, 50.811285], [-119.721001, 50.811053], [-119.721319, 50.810417], [-119.721286, 50.810112], [-119.720872, 50.809059], [-119.720865, 50.808701], [-119.721393, 50.807779], [-119.721793, 50.807339], [-119.722056, 50.806712], [-119.722484, 50.806296], [-119.722675, 50.805879], [-119.72267, 50.805304], [-119.722341, 50.80479], [-119.722243, 50.803119], [-119.722032, 50.802665], [-119.721469, 50.802246], [-119.721234, 50.801847], [-119.720761, 50.801561], [-119.720148, 50.800523], [-119.720103, 50.800245], [-119.720294, 50.799117], [-119.720216, 50.798525], [-119.720102, 50.798257], [-119.719883, 50.797939], [-119.718866, 50.796999], [-119.717877, 50.796367], [-119.717197, 50.795662], [-119.71693, 50.7952], [-119.716869, 50.794636], [-119.717247, 50.793818], [-119.717381, 50.791476], [-119.717777, 50.790711], [-119.717932, 50.789717], [-119.718506, 50.788364], [-119.719034, 50.786229], [-119.719215, 50.78591], [-119.719972, 50.78502], [-119.720537, 50.783765], [-119.720684, 50.781639], [-119.721121, 50.780819], [-119.719808, 50.779373], [-119.718785, 50.780839], [-119.718086, 50.782525], [-119.717769, 50.783586], [-119.716433, 50.785836], [-119.714276, 50.791193], [-119.71347, 50.794728], [-119.714912, 50.795607], [-119.716551, 50.796451], [-119.71768, 50.797553], [-119.718147, 50.799056], [-119.718938, 50.800649], [-119.72107, 50.803129], [-119.721181, 50.805493], [-119.720777, 50.806171], [-119.71951, 50.807639], [-119.718065, 50.808063], [-119.716798, 50.808557], [-119.715632, 50.809475], [-119.714829, 50.811216], [-119.715092, 50.811949], [-119.715417, 50.813395], [-119.714324, 50.815158], [-119.71279, 50.81624], [-119.710731, 50.81686], [-119.709734, 50.817914], [-119.709493, 50.820754], [-119.708723, 50.822134], [-119.707977, 50.825156], [-119.707104, 50.825981], [-119.705713, 50.826426], [-119.703301, 50.826707], [-119.700051, 50.827187], [-119.698891, 50.827473], [-119.684376, 50.832606], [-119.670185, 50.837064], [-119.661762, 50.840796], [-119.644507, 50.848165], [-119.627135, 50.857974], [-119.616178, 50.865152], [-119.609969, 50.870061], [-119.611357, 50.87101], [-119.61203, 50.871354], [-119.612488, 50.871668], [-119.612641, 50.872096], [-119.612471, 50.872397], [-119.612802, 50.872723], [-119.613273, 50.872972], [-119.6146, 50.873869], [-119.616152, 50.874653], [-119.616477, 50.874889], [-119.61678, 50.874963], [-119.61719, 50.875178], [-119.617693, 50.875519], [-119.619104, 50.87608], [-119.620827, 50.876896], [-119.623435, 50.877773], [-119.625199, 50.878282], [-119.625874, 50.87842], [-119.627394, 50.878628], [-119.62809, 50.878631], [-119.628285, 50.878572], [-119.628672, 50.878095], [-119.629052, 50.87779], [-119.630421, 50.877121], [-119.630846, 50.87685], [-119.63132, 50.875922], [-119.631278, 50.87541], [-119.631375, 50.87513], [-119.63226, 50.874156], [-119.633062, 50.873787], [-119.635309, 50.873043], [-119.635782, 50.872836], [-119.635928, 50.87266], [-119.636164, 50.872062], [-119.636774, 50.871545], [-119.637509, 50.871213], [-119.638305, 50.87097], [-119.638913, 50.870642], [-119.639168, 50.870366], [-119.639066, 50.869343], [-119.639083, 50.869135], [-119.639255, 50.868925], [-119.64037, 50.868532], [-119.641216, 50.868143], [-119.641961, 50.867982], [-119.645725, 50.867933], [-119.646154, 50.867734], [-119.646379, 50.867198], [-119.646618, 50.865907], [-119.646784, 50.865579], [-119.647382, 50.864819], [-119.648888, 50.863832], [-119.649444, 50.863108], [-119.649537, 50.862467], [-119.649806, 50.861967], [-119.649779, 50.859979], [-119.649595, 50.858985], [-119.65102, 50.859537], [-119.669116, 50.865356], [-119.669665, 50.865583], [-119.664201, 50.867725], [-119.664359, 50.92539], [-119.64233, 50.925708], [-119.642983, 50.927206], [-119.643231, 50.927579], [-119.643837, 50.928222], [-119.645182, 50.929126], [-119.645695, 50.929385], [-119.646884, 50.929754], [-119.647471, 50.929804], [-119.647703, 50.929879], [-119.648782, 50.930826], [-119.648939, 50.93111], [-119.648929, 50.931416], [-119.64804, 50.934072], [-119.648132, 50.934438], [-119.648527, 50.934861], [-119.649165, 50.935089], [-119.649941, 50.935207], [-119.651478, 50.935226], [-119.653365, 50.935083], [-119.653681, 50.93514], [-119.653802, 50.935281], [-119.654383, 50.93524], [-119.655213, 50.935303], [-119.655465, 50.935459], [-119.65566, 50.936139], [-119.655793, 50.937475], [-119.656024, 50.938558], [-119.656039, 50.939818], [-119.656383, 50.941078], [-119.656581, 50.942324], [-119.656565, 50.944023], [-119.656659, 50.944453], [-119.656823, 50.944576], [-119.656774, 50.944955], [-119.657103, 50.945721], [-119.657405, 50.94602], [-119.657591, 50.946564], [-119.657742, 50.946686], [-119.658247, 50.948069], [-119.658524, 50.948423], [-119.659027, 50.948744], [-119.659412, 50.949274], [-119.659952, 50.949757], [-119.660315, 50.950342], [-119.661305, 50.950995], [-119.661753, 50.951371], [-119.662119, 50.951533], [-119.662521, 50.951831], [-119.66288, 50.951885], [-119.663714, 50.951794], [-119.663915, 50.951816], [-119.665152, 50.952544], [-119.665941, 50.952615], [-119.666776, 50.952561], [-119.667778, 50.952358], [-119.668325, 50.952003], [-119.668472, 50.952063], [-119.668737, 50.95247], [-119.669091, 50.953191], [-119.669202, 50.953638], [-119.669536, 50.954225], [-119.669507, 50.954468], [-119.669312, 50.954779], [-119.669337, 50.955461], [-119.669126, 50.956015], [-119.668736, 50.95668], [-119.668667, 50.957221], [-119.668796, 50.957983], [-119.669055, 50.958238], [-119.669292, 50.958664], [-119.669322, 50.959429], [-119.669581, 50.960987], [-119.670439, 50.962542], [-119.671194, 50.963253], [-119.671298, 50.964079], [-119.672127, 50.964886], [-119.672187, 50.965191], [-119.672096, 50.96558], [-119.672124, 50.965849], [-119.673382, 50.966657], [-119.673554, 50.966932], [-119.673631, 50.967263], [-119.67425, 50.967879], [-119.674631, 50.969039], [-119.674899, 50.969249], [-119.675419, 50.969894], [-119.675817, 50.970118], [-119.677812, 50.970603], [-119.680673, 50.970573], [-119.680977, 50.970647], [-119.681406, 50.970917], [-119.682057, 50.971117], [-119.683642, 50.971189], [-119.684252, 50.971364], [-119.684755, 50.971442], [-119.685234, 50.97162], [-119.685975, 50.971603], [-119.686424, 50.972231], [-119.687057, 50.972846], [-119.687204, 50.973148], [-119.68724, 50.974516], [-119.686987, 50.975312], [-119.686622, 50.975896], [-119.686526, 50.976222], [-119.686563, 50.976618], [-119.687023, 50.977182], [-119.687871, 50.977568], [-119.689158, 50.978384], [-119.68955, 50.978518], [-119.690531, 50.978694], [-119.691125, 50.978895], [-119.691395, 50.979106], [-119.692573, 50.980509], [-119.693348, 50.981111], [-119.694143, 50.981309], [-119.695137, 50.981726], [-119.696513, 50.982118], [-119.697192, 50.982255], [-119.69786, 50.982258], [-119.700049, 50.98191], [-119.70055, 50.981943], [-119.700932, 50.982159], [-119.701618, 50.982404], [-119.702642, 50.982884], [-119.703488, 50.982964], [-119.703866, 50.983089], [-119.704207, 50.983324], [-119.704539, 50.983703], [-119.711025, 50.98381], [-119.740376, 50.983931], [-119.804022, 50.984021], [-119.80377, 50.952986], [-119.804368, 50.924589], [-119.824344, 50.924508], [-119.824738, 50.924574], [-119.825043, 50.924505], [-119.83049, 50.924495], [-119.936803, 50.924655], [-120.00418, 50.924963], [-120.080235, 50.924911], [-120.089199, 50.924935], [-120.096017, 50.925042], [-120.095829, 50.946019], [-120.095672, 50.998551], [-120.095423, 51.011409], [-120.114186, 51.011404], [-120.11476, 51.041466], [-120.110967, 51.041387], [-120.11092, 51.046252], [-120.111007, 51.06777], [-120.135698, 51.068479], [-120.13529, 51.086619], [-120.135116, 51.102104], [-120.141137, 51.10175], [-120.142875, 51.102717], [-120.145681, 51.101067], [-120.146463, 51.100651], [-120.14766, 51.100164], [-120.149287, 51.099709], [-120.151677, 51.099272], [-120.154851, 51.099255], [-120.158404, 51.099552], [-120.161282, 51.100144], [-120.162472, 51.100493], [-120.163795, 51.100752], [-120.165179, 51.100754], [-120.167121, 51.100544], [-120.169927, 51.10055], [-120.170681, 51.100224], [-120.172236, 51.098552], [-120.172438, 51.097959], [-120.172641, 51.096176], [-120.173051, 51.095302], [-120.173538, 51.094577], [-120.173432, 51.093609], [-120.178012, 51.093585], [-120.220595, 51.094209], [-120.233944, 51.094041], [-120.2472, 51.093773], [-120.32201, 51.092454], [-120.344984, 51.091976], [-120.485008, 51.090019]], [[-120.244153, 51.002702], [-120.244891, 51.006455], [-120.243206, 51.006194], [-120.237155, 51.006458], [-120.235422, 51.006082], [-120.232767, 51.00628], [-120.227145, 51.006024], [-120.227001, 51.005982], [-120.226312, 51.005502], [-120.226547, 51.004844], [-120.226588, 51.004189], [-120.226894, 51.003558], [-120.227072, 51.0025], [-120.227489, 51.002205], [-120.227526, 51.002053], [-120.228026, 51.001587], [-120.229206, 51.000204], [-120.22988, 50.999635], [-120.231556, 50.99783], [-120.231457, 50.997333], [-120.231653, 50.996197], [-120.231455, 50.994968], [-120.231486, 50.994465], [-120.232655, 50.992784], [-120.23375, 50.990903], [-120.2339, 50.99052], [-120.233952, 50.989648], [-120.233697, 50.988438], [-120.233624, 50.986781], [-120.233632, 50.985468], [-120.23375, 50.984445], [-120.23392, 50.983748], [-120.234351, 50.982714], [-120.23576, 50.980822], [-120.236223, 50.979979], [-120.236305, 50.979099], [-120.23677, 50.97751], [-120.23699, 50.975221], [-120.237091, 50.973073], [-120.237321, 50.971559], [-120.237653, 50.970532], [-120.237764, 50.969384], [-120.237746, 50.968304], [-120.239849, 50.968161], [-120.242688, 50.96842], [-120.244768, 50.968474], [-120.262904, 50.968202], [-120.262658, 50.970272], [-120.262284, 50.983736], [-120.250728, 50.983778], [-120.250529, 50.998574], [-120.244959, 50.998566], [-120.244924, 50.999598], [-120.244153, 51.002702]], [[-119.960482, 50.913031], [-119.921111, 50.924467], [-119.832337, 50.888632], [-119.830186, 50.866208], [-119.855772, 50.865724], [-119.872606, 50.860119], [-119.913913, 50.858546], [-119.917681, 50.861527], [-119.918826, 50.873213], [-119.930801, 50.872167], [-119.960482, 50.913031]], [[-119.686569, 50.955137], [-119.686655, 50.956802], [-119.689548, 50.956924], [-119.689807, 50.961974], [-119.694646, 50.962079], [-119.694884, 50.96539], [-119.693366, 50.965163], [-119.690853, 50.965302], [-119.68898, 50.965183], [-119.687471, 50.965452], [-119.685854, 50.965093], [-119.685364, 50.965213], [-119.685122, 50.96521], [-119.684699, 50.965066], [-119.684302, 50.964824], [-119.682927, 50.964216], [-119.682574, 50.963991], [-119.682283, 50.963656], [-119.682261, 50.963512], [-119.682375, 50.963284], [-119.683077, 50.962603], [-119.683326, 50.962219], [-119.683333, 50.962094], [-119.683174, 50.961819], [-119.683235, 50.960917], [-119.682552, 50.96042], [-119.681884, 50.960192], [-119.681558, 50.959984], [-119.681384, 50.959701], [-119.681324, 50.959108], [-119.681124, 50.958861], [-119.680282, 50.958349], [-119.67925, 50.957978], [-119.678941, 50.957814], [-119.678738, 50.957503], [-119.678632, 50.957156], [-119.678836, 50.956979], [-119.678689, 50.956902], [-119.678276, 50.956902], [-119.678224, 50.956733], [-119.681323, 50.956816], [-119.681317, 50.955088], [-119.686569, 50.955137]], [[-119.662771, 50.943284], [-119.66281, 50.94645], [-119.662724, 50.947175], [-119.662643, 50.947258], [-119.661633, 50.947038], [-119.659636, 50.946931], [-119.659038, 50.946692], [-119.659011, 50.946275], [-119.659191, 50.9462], [-119.659378, 50.945983], [-119.659777, 50.945292], [-119.658997, 50.945204], [-119.657943, 50.944496], [-119.657652, 50.943668], [-119.65766, 50.94337], [-119.662771, 50.943284]]]]}, "properties": {"name": "Thompson-Nicola P (Rivers and the Peaks)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola P (Rivers and the Peaks)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933044", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.832337, 50.888632], [-119.921111, 50.924467], [-119.960482, 50.913031], [-119.930801, 50.872167], [-119.918826, 50.873213], [-119.917681, 50.861527], [-119.913913, 50.858546], [-119.872606, 50.860119], [-119.855772, 50.865724], [-119.830186, 50.866208], [-119.832337, 50.888632]]]]}, "properties": {"name": "Sun Peaks Mountain", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Sun Peaks Mountain", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933045", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.700051, 50.827187], [-119.703301, 50.826707], [-119.705713, 50.826426], [-119.707104, 50.825981], [-119.707977, 50.825156], [-119.708723, 50.822134], [-119.709276, 50.821144], [-119.708354, 50.820683], [-119.694491, 50.815897], [-119.698144, 50.809551], [-119.703193, 50.811045], [-119.704267, 50.809134], [-119.700455, 50.807772], [-119.699984, 50.80853], [-119.698959, 50.808182], [-119.700297, 50.805714], [-119.69969, 50.805621], [-119.699579, 50.805451], [-119.699034, 50.805982], [-119.698209, 50.806625], [-119.683633, 50.816464], [-119.679879, 50.814985], [-119.680211, 50.818827], [-119.678409, 50.818877], [-119.675787, 50.81913], [-119.673181, 50.819195], [-119.673401, 50.823657], [-119.67338, 50.825346], [-119.671472, 50.825549], [-119.671839, 50.829303], [-119.674649, 50.829165], [-119.676962, 50.829751], [-119.679315, 50.830555], [-119.682022, 50.830524], [-119.683862, 50.830058], [-119.689925, 50.830644], [-119.698891, 50.827473], [-119.700051, 50.827187]]], [[[-119.68898, 50.965183], [-119.689321, 50.965184], [-119.690853, 50.965302], [-119.693366, 50.965163], [-119.694884, 50.96539], [-119.694646, 50.962079], [-119.689807, 50.961974], [-119.689548, 50.956924], [-119.686655, 50.956802], [-119.686569, 50.955137], [-119.681317, 50.955088], [-119.681323, 50.956816], [-119.679313, 50.956796], [-119.678239, 50.956705], [-119.67823, 50.956831], [-119.678276, 50.956902], [-119.678689, 50.956902], [-119.678836, 50.956979], [-119.678632, 50.957156], [-119.678738, 50.957503], [-119.678941, 50.957814], [-119.67925, 50.957978], [-119.680282, 50.958349], [-119.681227, 50.958949], [-119.681324, 50.959108], [-119.68142, 50.959808], [-119.681649, 50.960063], [-119.682552, 50.96042], [-119.683235, 50.960917], [-119.683174, 50.961819], [-119.683333, 50.962094], [-119.683326, 50.962219], [-119.683077, 50.962603], [-119.682375, 50.963284], [-119.682261, 50.963512], [-119.682283, 50.963656], [-119.682796, 50.964147], [-119.684302, 50.964824], [-119.684699, 50.965066], [-119.685122, 50.96521], [-119.685364, 50.965213], [-119.685854, 50.965093], [-119.687471, 50.965452], [-119.68898, 50.965183]]]]}, "properties": {"name": "Chase", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Chase", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933054", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.605972, 50.866219], [-119.60625, 50.866357], [-119.607092, 50.867445], [-119.608315, 50.868731], [-119.608854, 50.869222], [-119.609969, 50.870061], [-119.616178, 50.865152], [-119.627135, 50.857974], [-119.644507, 50.848165], [-119.661762, 50.840796], [-119.670185, 50.837064], [-119.684376, 50.832606], [-119.689925, 50.830644], [-119.683862, 50.830058], [-119.682022, 50.830524], [-119.679315, 50.830555], [-119.676962, 50.829751], [-119.674649, 50.829165], [-119.671839, 50.829303], [-119.671472, 50.825549], [-119.67338, 50.825346], [-119.673401, 50.823657], [-119.673181, 50.819195], [-119.675787, 50.81913], [-119.678409, 50.818877], [-119.680211, 50.818827], [-119.679879, 50.814985], [-119.683633, 50.816464], [-119.698209, 50.806625], [-119.699034, 50.805982], [-119.699579, 50.805451], [-119.69969, 50.805621], [-119.700297, 50.805714], [-119.698959, 50.808182], [-119.699984, 50.80853], [-119.700455, 50.807772], [-119.704267, 50.809134], [-119.703193, 50.811045], [-119.698144, 50.809551], [-119.694491, 50.815897], [-119.708354, 50.820683], [-119.709276, 50.821144], [-119.709493, 50.820754], [-119.709734, 50.817914], [-119.710731, 50.81686], [-119.71279, 50.81624], [-119.714324, 50.815158], [-119.715417, 50.813395], [-119.715092, 50.811949], [-119.714829, 50.811216], [-119.715632, 50.809475], [-119.716798, 50.808557], [-119.718065, 50.808063], [-119.71951, 50.807639], [-119.720777, 50.806171], [-119.721181, 50.805493], [-119.72107, 50.803129], [-119.718938, 50.800649], [-119.718147, 50.799056], [-119.71768, 50.797553], [-119.716551, 50.796451], [-119.714912, 50.795607], [-119.71347, 50.794728], [-119.714276, 50.791193], [-119.716433, 50.785836], [-119.714449, 50.784274], [-119.714073, 50.783775], [-119.713934, 50.780884], [-119.695893, 50.772964], [-119.709394, 50.761004], [-119.712578, 50.758265], [-119.744038, 50.730495], [-119.763228, 50.73916], [-119.764237, 50.738659], [-119.764699, 50.738268], [-119.765152, 50.735835], [-119.766455, 50.732561], [-119.767967, 50.727894], [-119.768933, 50.726316], [-119.77203, 50.72478], [-119.774407, 50.723353], [-119.778748, 50.722419], [-119.783149, 50.720304], [-119.787639, 50.716914], [-119.791395, 50.71387], [-119.792464, 50.712106], [-119.792596, 50.710286], [-119.795367, 50.70655], [-119.798211, 50.703163], [-119.801802, 50.700992], [-119.8053, 50.699952], [-119.814544, 50.693832], [-119.821305, 50.688844], [-119.826642, 50.686625], [-119.828363, 50.68516], [-119.829849, 50.683418], [-119.831223, 50.681166], [-119.83443, 50.677749], [-119.838287, 50.675329], [-119.839678, 50.674699], [-119.848228, 50.673048], [-119.85268, 50.673593], [-119.854187, 50.673222], [-119.855522, 50.672642], [-119.85687, 50.671511], [-119.858763, 50.669511], [-119.863749, 50.66598], [-119.86571, 50.66488], [-119.874101, 50.662855], [-119.877051, 50.661754], [-119.880502, 50.659763], [-119.885352, 50.656164], [-119.888145, 50.654446], [-119.892331, 50.65281], [-119.899172, 50.650617], [-119.904812, 50.648607], [-119.911924, 50.646375], [-119.917288, 50.64604], [-119.919822, 50.646388], [-119.925364, 50.648123], [-119.927599, 50.64864], [-119.929541, 50.649021], [-119.931501, 50.649226], [-119.9361, 50.649513], [-119.941157, 50.649401], [-119.943981, 50.649889], [-119.948242, 50.651028], [-119.951467, 50.652004], [-119.953329, 50.653016], [-119.955068, 50.653488], [-119.958077, 50.653655], [-119.962613, 50.654479], [-119.963786, 50.654357], [-119.966409, 50.653404], [-119.969429, 50.652565], [-119.973413, 50.651869], [-119.979433, 50.651136], [-119.983804, 50.651001], [-119.987405, 50.650203], [-119.991336, 50.649554], [-119.999019, 50.649375], [-120.000078, 50.649805], [-120.001737, 50.649956], [-120.007878, 50.652162], [-120.010415, 50.65292], [-120.01285, 50.653808], [-120.016574, 50.65538], [-120.020392, 50.65678], [-120.023905, 50.657837], [-120.027281, 50.658614], [-120.029185, 50.658928], [-120.030819, 50.658956], [-120.033537, 50.658858], [-120.041998, 50.658182], [-120.041626, 50.656464], [-120.041447, 50.653752], [-120.041919, 50.652677], [-120.041814, 50.648893], [-120.056957, 50.64876], [-120.056962, 50.648505], [-120.062759, 50.647949], [-120.080041, 50.648649], [-120.081067, 50.637126], [-120.078957, 50.637018], [-120.079035, 50.636812], [-120.079013, 50.636432], [-120.078489, 50.636402], [-120.078436, 50.634424], [-120.081336, 50.634593], [-120.081697, 50.622175], [-120.081579, 50.619344], [-120.096532, 50.619272], [-120.100241, 50.619198], [-120.111861, 50.619361], [-120.121972, 50.619306], [-120.137401, 50.61909], [-120.14278, 50.619121], [-120.147303, 50.619071], [-120.174236, 50.619169], [-120.198686, 50.61871], [-120.206933, 50.618886], [-120.240743, 50.619152], [-120.248382, 50.618895], [-120.252367, 50.618924], [-120.254227, 50.619324], [-120.254835, 50.619295], [-120.25649, 50.618993], [-120.260585, 50.618984], [-120.260351, 50.618888], [-120.262353, 50.618449], [-120.27364, 50.618709], [-120.278794, 50.618374], [-120.298811, 50.617589], [-120.303411, 50.61736], [-120.310131, 50.61777], [-120.319282, 50.61853], [-120.326262, 50.618378], [-120.327758, 50.617191], [-120.328969, 50.618384], [-120.333499, 50.618405], [-120.352589, 50.618237], [-120.353503, 50.618165], [-120.35603, 50.618158], [-120.357912, 50.618269], [-120.357292, 50.608923], [-120.357291, 50.597484], [-120.357194, 50.597284], [-120.357288, 50.59698], [-120.357191, 50.575123], [-120.33987, 50.574953], [-120.339215, 50.541576], [-120.338948, 50.502966], [-120.33886, 50.502957], [-120.33895, 50.502648], [-120.340334, 50.473443], [-120.340347, 50.453452], [-120.340392, 50.452652], [-120.340962, 50.449474], [-120.340872, 50.449347], [-120.342339, 50.431866], [-120.342196, 50.431497], [-120.340701, 50.40536], [-120.340568, 50.401888], [-120.340921, 50.385859], [-120.335085, 50.385952], [-120.334785, 50.392012], [-120.328001, 50.392075], [-120.317717, 50.391946], [-120.317553, 50.385735], [-120.313324, 50.385965], [-120.294254, 50.385876], [-120.225751, 50.385838], [-120.224955, 50.371404], [-120.132113, 50.371074], [-120.090621, 50.371107], [-120.090628, 50.367306], [-120.090504, 50.366518], [-120.092066, 50.36408], [-120.092152, 50.364076], [-120.091829, 50.357835], [-120.087295, 50.358039], [-120.015115, 50.358384], [-119.985797, 50.358666], [-119.961044, 50.358719], [-119.946841, 50.35886], [-119.932611, 50.35875], [-119.914647, 50.358773], [-119.908312, 50.358733], [-119.871795, 50.357962], [-119.83565, 50.357975], [-119.789358, 50.357865], [-119.788972, 50.366384], [-119.789173, 50.366477], [-119.788963, 50.366563], [-119.788735, 50.372105], [-119.762611, 50.372951], [-119.762647, 50.365588], [-119.751403, 50.365556], [-119.750814, 50.372727], [-119.720429, 50.372658], [-119.720354, 50.380178], [-119.715861, 50.380279], [-119.715787, 50.387359], [-119.674427, 50.387362], [-119.67417, 50.402016], [-119.6514, 50.402046], [-119.650777, 50.43939], [-119.651179, 50.47187], [-119.659436, 50.474619], [-119.662854, 50.476043], [-119.664927, 50.477674], [-119.666221, 50.479472], [-119.667166, 50.481611], [-119.660395, 50.483034], [-119.658636, 50.483258], [-119.657577, 50.483594], [-119.654212, 50.484256], [-119.652618, 50.484926], [-119.650834, 50.485331], [-119.650886, 50.498509], [-119.651417, 50.557232], [-119.651601, 50.567862], [-119.651516, 50.568976], [-119.649203, 50.571104], [-119.649916, 50.574821], [-119.648248, 50.57508], [-119.642756, 50.575681], [-119.628833, 50.576109], [-119.550432, 50.576484], [-119.539165, 50.57647], [-119.525505, 50.576563], [-119.525302, 50.634598], [-119.525122, 50.669462], [-119.524992, 50.669605], [-119.525121, 50.669733], [-119.524672, 50.750943], [-119.462105, 50.75058], [-119.461292, 50.785528], [-119.472104, 50.78547], [-119.472278, 50.800392], [-119.461719, 50.8002], [-119.461545, 50.811229], [-119.460747, 50.830159], [-119.460805, 50.838386], [-119.506406, 50.838758], [-119.512863, 50.838755], [-119.514842, 50.838639], [-119.516485, 50.838612], [-119.516433, 50.853841], [-119.516824, 50.867347], [-119.567113, 50.867104], [-119.574374, 50.866939], [-119.575204, 50.860267], [-119.590338, 50.853685], [-119.602273, 50.853882], [-119.60239, 50.849841], [-119.6082, 50.849712], [-119.60846, 50.846267], [-119.614644, 50.846278], [-119.615355, 50.843135], [-119.619356, 50.843355], [-119.619533, 50.842008], [-119.623204, 50.842007], [-119.623337, 50.840488], [-119.633068, 50.839064], [-119.634354, 50.838284], [-119.634484, 50.836984], [-119.638569, 50.837997], [-119.63829, 50.838581], [-119.637991, 50.838855], [-119.637253, 50.839099], [-119.636609, 50.839131], [-119.634822, 50.839764], [-119.634523, 50.840038], [-119.633112, 50.840695], [-119.632373, 50.841135], [-119.630432, 50.841883], [-119.629525, 50.842079], [-119.628374, 50.842641], [-119.627531, 50.842906], [-119.626632, 50.843386], [-119.625957, 50.843847], [-119.625404, 50.844081], [-119.624503, 50.844268], [-119.62407, 50.844293], [-119.623617, 50.844562], [-119.621859, 50.845184], [-119.620385, 50.845817], [-119.620105, 50.846066], [-119.620081, 50.846168], [-119.619826, 50.846299], [-119.61863, 50.846715], [-119.617658, 50.847367], [-119.617249, 50.847797], [-119.617032, 50.847877], [-119.616852, 50.848057], [-119.616615, 50.848127], [-119.615809, 50.848563], [-119.614964, 50.849081], [-119.614018, 50.849717], [-119.61337, 50.850265], [-119.612001, 50.850923], [-119.611433, 50.851264], [-119.610762, 50.851685], [-119.610644, 50.851898], [-119.610434, 50.852055], [-119.609062, 50.852555], [-119.607943, 50.852727], [-119.606872, 50.853007], [-119.606228, 50.853221], [-119.605328, 50.853716], [-119.605, 50.854153], [-119.603855, 50.855006], [-119.603113, 50.855724], [-119.602385, 50.856694], [-119.601486, 50.857649], [-119.60134, 50.858092], [-119.600317, 50.859626], [-119.600225, 50.860015], [-119.600418, 50.860911], [-119.600833, 50.86198], [-119.601008, 50.862336], [-119.601528, 50.863], [-119.602147, 50.863634], [-119.602486, 50.863869], [-119.603156, 50.864168], [-119.603674, 50.864256], [-119.603906, 50.86435], [-119.605396, 50.86634], [-119.605972, 50.866219]]]]}, "properties": {"name": "Thompson-Nicola L (Grasslands)", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola L (Grasslands)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933060", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.013005, 51.687447], [-120.012621, 51.695404], [-120.01619, 51.695379], [-120.02513, 51.695067], [-120.025043, 51.686941], [-120.020262, 51.686664], [-120.02147, 51.685224], [-120.022994, 51.683146], [-120.023217, 51.682626], [-120.02364, 51.680858], [-120.023852, 51.680369], [-120.024703, 51.679248], [-120.028579, 51.67927], [-120.029284, 51.675542], [-120.029781, 51.675106], [-120.031524, 51.673833], [-120.032141, 51.673518], [-120.03527, 51.672309], [-120.036296, 51.671638], [-120.03857, 51.66981], [-120.03991, 51.668353], [-120.040252, 51.668088], [-120.04081, 51.66782], [-120.041264, 51.667715], [-120.053902, 51.670262], [-120.071274, 51.673584], [-120.077465, 51.668973], [-120.080631, 51.668844], [-120.088914, 51.668371], [-120.089044, 51.667812], [-120.08883, 51.665687], [-120.088596, 51.660872], [-120.100947, 51.660641], [-120.100398, 51.652312], [-120.099703, 51.652343], [-120.103682, 51.646077], [-120.105271, 51.644292], [-120.110712, 51.642199], [-120.118506, 51.635019], [-120.123058, 51.630483], [-120.114594, 51.630805], [-120.114572, 51.630868], [-120.11156, 51.631351], [-120.108344, 51.631284], [-120.107153, 51.631674], [-120.090365, 51.632369], [-120.085546, 51.632289], [-120.081509, 51.632668], [-120.080709, 51.633103], [-120.079245, 51.632929], [-120.078376, 51.63257], [-120.078449, 51.632155], [-120.078299, 51.631811], [-120.07768, 51.631327], [-120.076966, 51.630509], [-120.076227, 51.629816], [-120.07143, 51.630309], [-120.022837, 51.629765], [-120.022882, 51.628842], [-119.979569, 51.613796], [-119.953467, 51.604366], [-119.940162, 51.607832], [-119.943002, 51.611453], [-119.940658, 51.611148], [-119.939575, 51.611134], [-119.941985, 51.6219], [-119.941272, 51.622385], [-119.941825, 51.622735], [-119.940938, 51.627341], [-119.942168, 51.627292], [-119.949191, 51.630791], [-119.948579, 51.634752], [-119.957819, 51.63549], [-119.960814, 51.63695], [-119.959753, 51.642886], [-119.964949, 51.643314], [-119.964187, 51.646388], [-119.963887, 51.650242], [-119.974049, 51.649932], [-119.974539, 51.658128], [-119.991731, 51.657379], [-119.992148, 51.663363], [-119.978881, 51.663693], [-119.965221, 51.66438], [-119.965106, 51.671292], [-119.996531, 51.671766], [-119.996685, 51.671371], [-119.997011, 51.670892], [-119.99725, 51.669997], [-119.997508, 51.669741], [-119.99779, 51.669614], [-119.998047, 51.669375], [-120.005515, 51.669138], [-120.00513, 51.678934], [-120.001471, 51.678774], [-120.00172, 51.686508], [-119.996374, 51.686752], [-119.996497, 51.68749], [-119.988313, 51.687499], [-119.987734, 51.695723], [-120.008003, 51.695353], [-120.008013, 51.687301], [-120.013005, 51.687447]]], [[[-119.767638, 51.586816], [-119.77286, 51.587059], [-119.776053, 51.578484], [-119.771541, 51.576856], [-119.768794, 51.576461], [-119.766592, 51.576476], [-119.765142, 51.576577], [-119.761074, 51.577186], [-119.75919, 51.577666], [-119.757163, 51.577951], [-119.754493, 51.577928], [-119.751576, 51.577574], [-119.746245, 51.577232], [-119.745135, 51.57732], [-119.744161, 51.577671], [-119.743999, 51.577343], [-119.743838, 51.575913], [-119.737545, 51.577713], [-119.737423, 51.578238], [-119.735964, 51.578116], [-119.735107, 51.579154], [-119.733855, 51.579838], [-119.735375, 51.580323], [-119.736203, 51.580857], [-119.73547, 51.583423], [-119.737222, 51.583277], [-119.737668, 51.585018], [-119.739549, 51.585055], [-119.742588, 51.585273], [-119.748579, 51.586621], [-119.749864, 51.586626], [-119.750081, 51.587345], [-119.762825, 51.587793], [-119.762274, 51.585171], [-119.767638, 51.586816]]]]}, "properties": {"name": "Clearwater", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Clearwater", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933067", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.242505, 52.86151], [-120.259537, 52.859616], [-120.26817, 52.861665], [-120.274945, 52.865162], [-120.282731, 52.868669], [-120.298805, 52.864925], [-120.312923, 52.858713], [-120.316334, 52.85227], [-120.332027, 52.839839], [-120.334228, 52.833139], [-120.305607, 52.817219], [-120.302438, 52.81511], [-120.316019, 52.805716], [-120.321408, 52.800516], [-120.339696, 52.788234], [-120.334238, 52.781339], [-120.308274, 52.780113], [-120.290363, 52.771993], [-120.293627, 52.763474], [-120.273781, 52.745923], [-120.293694, 52.725604], [-120.288881, 52.721402], [-120.275697, 52.717971], [-120.27252, 52.716275], [-120.272623, 52.716214], [-120.272, 52.715767], [-120.270185, 52.715031], [-120.26965, 52.714577], [-120.269493, 52.713673], [-120.269119, 52.71288], [-120.286898, 52.705013], [-120.275197, 52.696096], [-120.268267, 52.688256], [-120.254915, 52.684127], [-120.254384, 52.677351], [-120.289728, 52.657755], [-120.235279, 52.634714], [-120.234038, 52.627993], [-120.237695, 52.620766], [-120.244585, 52.621508], [-120.251507, 52.61962], [-120.254286, 52.61535], [-120.263176, 52.611439], [-120.267894, 52.60831], [-120.288465, 52.607693], [-120.293678, 52.607627], [-120.292979, 52.597025], [-120.290556, 52.589703], [-120.291581, 52.587359], [-120.300522, 52.588388], [-120.303127, 52.588355], [-120.306344, 52.58515], [-120.305762, 52.581378], [-120.304611, 52.577188], [-120.31617, 52.566357], [-120.325552, 52.57221], [-120.33321, 52.566753], [-120.333704, 52.558284], [-120.341467, 52.552356], [-120.363013, 52.528142], [-120.371267, 52.529218], [-120.389651, 52.537088], [-120.400902, 52.535894], [-120.407678, 52.534483], [-120.410033, 52.532622], [-120.418039, 52.527927], [-120.441107, 52.517185], [-120.449726, 52.510552], [-120.462478, 52.510658], [-120.509402, 52.494745], [-120.532763, 52.478986], [-120.53855, 52.473324], [-120.540563, 52.468634], [-120.542151, 52.466116], [-120.541232, 52.463756], [-120.538863, 52.461678], [-120.531243, 52.457205], [-120.521868, 52.453834], [-120.518482, 52.454394], [-120.512832, 52.4527], [-120.509009, 52.451197], [-120.507617, 52.448539], [-120.504976, 52.445811], [-120.502298, 52.444847], [-120.49948, 52.443706], [-120.500002, 52.441651], [-120.49705, 52.440038], [-120.492915, 52.43965], [-120.484717, 52.435639], [-120.47979, 52.431832], [-120.471019, 52.427698], [-120.463976, 52.423931], [-120.45922, 52.421242], [-120.459803, 52.411718], [-120.472605, 52.405885], [-120.491155, 52.400391], [-120.513244, 52.388218], [-120.52109, 52.379753], [-120.523516, 52.373479], [-120.525196, 52.365965], [-120.527415, 52.360337], [-120.527241, 52.354395], [-120.526944, 52.349806], [-120.519535, 52.34557], [-120.517549, 52.343966], [-120.519992, 52.341633], [-120.524738, 52.339201], [-120.534851, 52.329401], [-120.519488, 52.324453], [-120.512819, 52.326278], [-120.507849, 52.325119], [-120.500802, 52.322237], [-120.48948, 52.31726], [-120.480553, 52.312597], [-120.466473, 52.30442], [-120.471391, 52.298287], [-120.478098, 52.293522], [-120.479547, 52.292946], [-120.48036, 52.29066], [-120.481214, 52.286316], [-120.4915, 52.288514], [-120.493481, 52.280476], [-120.482694, 52.277972], [-120.478652, 52.274057], [-120.452029, 52.245979], [-120.445028, 52.242809], [-120.437093, 52.23875], [-120.436681, 52.236105], [-120.441184, 52.232154], [-120.429399, 52.223482], [-120.424652, 52.218334], [-120.423067, 52.212979], [-120.420752, 52.210024], [-120.415241, 52.208744], [-120.408298, 52.207451], [-120.401027, 52.207859], [-120.3951, 52.204226], [-120.392891, 52.200801], [-120.391625, 52.194041], [-120.395356, 52.193376], [-120.393745, 52.189749], [-120.390201, 52.188689], [-120.389718, 52.187611], [-120.387681, 52.18455], [-120.386956, 52.178549], [-120.392928, 52.169793], [-120.401447, 52.16619], [-120.403092, 52.161175], [-120.407612, 52.144258], [-120.395699, 52.141455], [-120.382216, 52.134823], [-120.378531, 52.133442], [-120.375371, 52.133944], [-120.3707, 52.137669], [-120.357967, 52.147145], [-120.350941, 52.153318], [-120.347443, 52.155817], [-120.344026, 52.155082], [-120.338154, 52.153329], [-120.332614, 52.153515], [-120.32455, 52.155325], [-120.319927, 52.153347], [-120.308116, 52.140331], [-120.309854, 52.132844], [-120.310914, 52.129043], [-120.316676, 52.120953], [-120.313669, 52.115881], [-120.31063, 52.111982], [-120.305292, 52.108471], [-120.302806, 52.10528], [-120.301015, 52.101158], [-120.299767, 52.098038], [-120.295212, 52.088847], [-120.293672, 52.082617], [-120.296288, 52.077778], [-120.301121, 52.075485], [-120.308497, 52.074336], [-120.314379, 52.068535], [-120.316783, 52.064339], [-120.318031, 52.057141], [-120.31921, 52.048947], [-120.320284, 52.044561], [-120.320338, 52.039169], [-120.31699, 52.027651], [-120.308591, 52.02377], [-120.297312, 52.02273], [-120.288704, 52.019735], [-120.288393, 52.012869], [-120.296437, 52.012181], [-120.305795, 52.012913], [-120.311256, 52.007823], [-120.316659, 52.004813], [-120.319891, 52.000895], [-120.32604, 51.998309], [-120.330012, 51.995075], [-120.331635, 51.991244], [-120.328571, 51.989187], [-120.328862, 51.984719], [-120.336043, 51.981312], [-120.345313, 51.975481], [-120.340259, 51.972211], [-120.339086, 51.96882], [-120.331015, 51.968125], [-120.323659, 51.972386], [-120.316315, 51.976125], [-120.307584, 51.974849], [-120.298318, 51.968572], [-120.293575, 51.969467], [-120.285161, 51.975332], [-120.278017, 51.977715], [-120.273689, 51.974292], [-120.270098, 51.967237], [-120.2686, 51.960723], [-120.268464, 51.950845], [-120.264653, 51.948623], [-120.257965, 51.945385], [-120.250276, 51.940253], [-120.249354, 51.938016], [-120.247792, 51.933809], [-120.24724, 51.933247], [-120.246821, 51.933183], [-120.246386, 51.932956], [-120.246466, 51.931871], [-120.246314, 51.931506], [-120.246406, 51.93134], [-120.246958, 51.930982], [-120.24723, 51.930558], [-120.247878, 51.930039], [-120.247705, 51.919562], [-120.247977, 51.912332], [-120.255702, 51.903372], [-120.269162, 51.895897], [-120.273161, 51.892606], [-120.272374, 51.88877], [-120.266333, 51.886617], [-120.260078, 51.883419], [-120.256623, 51.877177], [-120.25745, 51.87262], [-120.238302, 51.868918], [-120.231063, 51.872143], [-120.223963, 51.866594], [-120.225842, 51.85474], [-120.228877, 51.850748], [-120.225228, 51.845539], [-120.222446, 51.839846], [-120.219143, 51.835536], [-120.219196, 51.828633], [-120.22665, 51.82543], [-120.237825, 51.826273], [-120.247031, 51.828927], [-120.267403, 51.831382], [-120.275782, 51.832197], [-120.286052, 51.828271], [-120.298526, 51.828475], [-120.305008, 51.831447], [-120.307694, 51.826954], [-120.312354, 51.824762], [-120.319525, 51.819913], [-120.317383, 51.810951], [-120.321559, 51.783724], [-120.328987, 51.775647], [-120.336606, 51.770898], [-120.348643, 51.768018], [-120.35865, 51.771209], [-120.37576, 51.769503], [-120.379363, 51.762383], [-120.349925, 51.752667], [-120.343593, 51.747533], [-120.338488, 51.738346], [-120.338523, 51.732975], [-120.345668, 51.727593], [-120.359196, 51.723867], [-120.372433, 51.722067], [-120.376948, 51.719218], [-120.37496, 51.71661], [-120.37918, 51.709241], [-120.391271, 51.704009], [-120.407525, 51.705143], [-120.432975, 51.712162], [-120.442969, 51.711806], [-120.459356, 51.709881], [-120.481308, 51.704349], [-120.503634, 51.696662], [-120.517993, 51.690331], [-120.528657, 51.684998], [-120.531869, 51.678635], [-120.538794, 51.676551], [-120.542928, 51.6742], [-120.544234, 51.669581], [-120.533572, 51.668651], [-120.528331, 51.671773], [-120.512813, 51.671459], [-120.506984, 51.665689], [-120.499131, 51.663643], [-120.49392, 51.659725], [-120.486216, 51.659496], [-120.480063, 51.65782], [-120.484322, 51.665857], [-120.481021, 51.668272], [-120.466585, 51.669478], [-120.45272, 51.673832], [-120.447419, 51.670431], [-120.4395, 51.671271], [-120.43236, 51.675165], [-120.418335, 51.675506], [-120.410879, 51.672682], [-120.402022, 51.668699], [-120.395509, 51.668323], [-120.39362, 51.667745], [-120.38598, 51.667056], [-120.37105, 51.663085], [-120.361793, 51.662025], [-120.34873, 51.664153], [-120.339608, 51.66163], [-120.337547, 51.656855], [-120.330061, 51.6536], [-120.329506, 51.649355], [-120.323427, 51.643623], [-120.321655, 51.636948], [-120.314193, 51.635156], [-120.305656, 51.631333], [-120.296358, 51.629793], [-120.291771, 51.631547], [-120.289621, 51.637853], [-120.29435, 51.642892], [-120.293637, 51.647012], [-120.288644, 51.647224], [-120.271789, 51.640684], [-120.260961, 51.632594], [-120.255267, 51.623418], [-120.252851, 51.616497], [-120.250664, 51.61507], [-120.247769, 51.611544], [-120.245751, 51.610265], [-120.242558, 51.607784], [-120.240977, 51.606048], [-120.242936, 51.602766], [-120.241993, 51.599287], [-120.239819, 51.597974], [-120.238547, 51.596473], [-120.23772, 51.59108], [-120.235441, 51.585572], [-120.222523, 51.578649], [-120.206946, 51.577764], [-120.202235, 51.575752], [-120.191199, 51.563273], [-120.189408, 51.56019], [-120.185893, 51.552868], [-120.194116, 51.54062], [-120.197335, 51.533838], [-120.202805, 51.530709], [-120.201901, 51.526066], [-120.196246, 51.51823], [-120.195917, 51.50883], [-120.201464, 51.50512], [-120.201163, 51.497136], [-120.204877, 51.493639], [-120.203433, 51.486007], [-120.197085, 51.480069], [-120.198595, 51.471941], [-120.17489, 51.47169], [-120.168445, 51.471424], [-120.166831, 51.472631], [-120.165365, 51.474579], [-120.164989, 51.476071], [-120.163569, 51.475936], [-120.149893, 51.475835], [-120.149785, 51.479122], [-120.128957, 51.47859], [-120.114295, 51.478398], [-120.114299, 51.478496], [-119.999739, 51.480402], [-119.999643, 51.480366], [-119.961914, 51.480735], [-119.930711, 51.480891], [-119.853998, 51.481622], [-119.813437, 51.481745], [-119.700122, 51.482263], [-119.697118, 51.535191], [-119.69612, 51.55457], [-119.700097, 51.561486], [-119.701771, 51.569002], [-119.697551, 51.576778], [-119.697868, 51.580422], [-119.69814, 51.585391], [-119.698005, 51.585781], [-119.696098, 51.58917], [-119.695745, 51.589561], [-119.695557, 51.590051], [-119.695189, 51.590662], [-119.694881, 51.590957], [-119.693357, 51.590552], [-119.691744, 51.590582], [-119.689224, 51.591181], [-119.684691, 51.59281], [-119.682745, 51.59328], [-119.680946, 51.593569], [-119.680193, 51.59379], [-119.678464, 51.594586], [-119.675741, 51.596315], [-119.674327, 51.597981], [-119.674348, 51.598764], [-119.674666, 51.600189], [-119.674866, 51.601631], [-119.675051, 51.602033], [-119.675593, 51.602621], [-119.676374, 51.603152], [-119.677946, 51.603957], [-119.680717, 51.604843], [-119.681276, 51.60528], [-119.681921, 51.606008], [-119.68311, 51.606932], [-119.684107, 51.607573], [-119.684791, 51.608304], [-119.685262, 51.60898], [-119.68577, 51.610682], [-119.685683, 51.6119], [-119.684274, 51.613303], [-119.682678, 51.614272], [-119.68147, 51.614881], [-119.680297, 51.615785], [-119.679582, 51.616586], [-119.678336, 51.618232], [-119.678436, 51.619132], [-119.679161, 51.620263], [-119.679464, 51.620554], [-119.680349, 51.622255], [-119.680402, 51.623578], [-119.680627, 51.624039], [-119.68322, 51.625558], [-119.685349, 51.626371], [-119.686635, 51.626641], [-119.688193, 51.627176], [-119.688771, 51.627585], [-119.68906, 51.627907], [-119.689291, 51.628855], [-119.689189, 51.629586], [-119.688297, 51.630922], [-119.687568, 51.631615], [-119.687171, 51.632202], [-119.686409, 51.634105], [-119.6863, 51.6357], [-119.685472, 51.638605], [-119.685454, 51.639739], [-119.684772, 51.644153], [-119.683867, 51.646953], [-119.682574, 51.648559], [-119.681254, 51.649536], [-119.679722, 51.650328], [-119.677812, 51.651113], [-119.675433, 51.651581], [-119.672588, 51.652382], [-119.671053, 51.652578], [-119.668369, 51.653304], [-119.66737, 51.653678], [-119.666272, 51.655186], [-119.665083, 51.656209], [-119.664182, 51.656639], [-119.663087, 51.657009], [-119.661967, 51.657186], [-119.661036, 51.657187], [-119.659379, 51.656942], [-119.658757, 51.656931], [-119.656592, 51.657265], [-119.65589, 51.6575], [-119.655084, 51.657945], [-119.654724, 51.658314], [-119.654572, 51.658657], [-119.653646, 51.659725], [-119.653445, 51.660439], [-119.653874, 51.661336], [-119.656379, 51.66432], [-119.656964, 51.665469], [-119.657107, 51.666335], [-119.657062, 51.667246], [-119.656847, 51.668059], [-119.656592, 51.668433], [-119.656019, 51.668868], [-119.654576, 51.669512], [-119.653969, 51.669647], [-119.652841, 51.66964], [-119.650812, 51.669331], [-119.648357, 51.669153], [-119.646451, 51.66913], [-119.644702, 51.669212], [-119.643317, 51.669444], [-119.642417, 51.669707], [-119.641301, 51.670247], [-119.640851, 51.670616], [-119.640551, 51.671193], [-119.640475, 51.671922], [-119.639471, 51.673363], [-119.638683, 51.673544], [-119.637946, 51.67354], [-119.637334, 51.673452], [-119.636669, 51.673134], [-119.635934, 51.672663], [-119.634685, 51.672104], [-119.631604, 51.670333], [-119.630798, 51.670013], [-119.627808, 51.669192], [-119.626196, 51.668877], [-119.625376, 51.668834], [-119.623696, 51.668884], [-119.622362, 51.669226], [-119.621006, 51.669891], [-119.619941, 51.670925], [-119.618192, 51.671666], [-119.616308, 51.67216], [-119.615293, 51.672281], [-119.613831, 51.672287], [-119.610592, 51.672658], [-119.608159, 51.672597], [-119.604859, 51.672295], [-119.603288, 51.671717], [-119.602578, 51.67123], [-119.601901, 51.670582], [-119.600548, 51.669927], [-119.599361, 51.669677], [-119.598032, 51.669544], [-119.595487, 51.668806], [-119.59478, 51.66868], [-119.59439, 51.668689], [-119.594729, 51.669634], [-119.593773, 51.67355], [-119.603951, 51.672562], [-119.611253, 51.672969], [-119.613931, 51.672899], [-119.614946, 51.678587], [-119.624437, 51.679208], [-119.62867, 51.679544], [-119.657203, 51.680355], [-119.676767, 51.680237], [-119.695702, 51.679846], [-119.686118, 51.68876], [-119.675117, 51.691692], [-119.670066, 51.694722], [-119.662393, 51.702856], [-119.662244, 51.703472], [-119.651267, 51.714156], [-119.647933, 51.717066], [-119.641186, 51.722689], [-119.636308, 51.727986], [-119.629721, 51.734923], [-119.626536, 51.745048], [-119.624924, 51.749886], [-119.615244, 51.763464], [-119.61269, 51.768381], [-119.608149, 51.778128], [-119.600404, 51.790612], [-119.58897, 51.802499], [-119.578787, 51.80283], [-119.572488, 51.799866], [-119.565615, 51.801302], [-119.552393, 51.804701], [-119.542138, 51.811825], [-119.541935, 51.811712], [-119.53964, 51.815385], [-119.530277, 51.815031], [-119.516286, 51.817204], [-119.511551, 51.828748], [-119.501033, 51.829375], [-119.481921, 51.834253], [-119.483031, 51.843477], [-119.473751, 51.847862], [-119.472423, 51.861018], [-119.475261, 51.868729], [-119.482357, 51.874134], [-119.487515, 51.87728], [-119.486917, 51.878647], [-119.485182, 51.883289], [-119.475577, 51.892131], [-119.471073, 51.897912], [-119.461786, 51.900682], [-119.459938, 51.904218], [-119.451505, 51.921107], [-119.445652, 51.923691], [-119.437082, 51.929043], [-119.437146, 51.935666], [-119.430721, 51.942429], [-119.424233, 51.948146], [-119.426143, 51.951886], [-119.435056, 51.950807], [-119.446922, 51.948344], [-119.453625, 51.947393], [-119.462684, 51.945344], [-119.470406, 51.95022], [-119.473693, 51.95739], [-119.465987, 51.960642], [-119.459267, 51.962954], [-119.454776, 51.967117], [-119.446595, 51.973669], [-119.445391, 51.976833], [-119.446726, 51.983846], [-119.448146, 51.989239], [-119.438031, 52.000136], [-119.43763, 52.01274], [-119.431273, 52.025282], [-119.434873, 52.028445], [-119.446357, 52.02151], [-119.462992, 52.017509], [-119.46785, 52.020253], [-119.47205, 52.025971], [-119.481817, 52.032919], [-119.493026, 52.033155], [-119.49768, 52.032086], [-119.507453, 52.029633], [-119.520505, 52.032666], [-119.528527, 52.034248], [-119.535855, 52.034984], [-119.544492, 52.033774], [-119.556514, 52.031749], [-119.556959, 52.042122], [-119.555953, 52.046221], [-119.556063, 52.054209], [-119.554029, 52.059558], [-119.553201, 52.062276], [-119.54917, 52.066261], [-119.54391, 52.073026], [-119.536455, 52.082898], [-119.527934, 52.092003], [-119.517435, 52.093036], [-119.505975, 52.090862], [-119.500702, 52.093394], [-119.491221, 52.098188], [-119.484196, 52.101905], [-119.483207, 52.110603], [-119.489952, 52.116458], [-119.497686, 52.119068], [-119.509666, 52.125047], [-119.519707, 52.133646], [-119.516448, 52.140457], [-119.51177, 52.145096], [-119.500734, 52.146078], [-119.494313, 52.147045], [-119.491265, 52.152187], [-119.491392, 52.160543], [-119.491699, 52.170181], [-119.496074, 52.176366], [-119.507837, 52.185302], [-119.501606, 52.193944], [-119.493464, 52.199098], [-119.483022, 52.204583], [-119.483959, 52.209945], [-119.489922, 52.217797], [-119.497681, 52.219424], [-119.503065, 52.220618], [-119.515683, 52.22223], [-119.5154, 52.228676], [-119.506865, 52.237279], [-119.501729, 52.243553], [-119.505013, 52.251498], [-119.503397, 52.258088], [-119.503866, 52.263174], [-119.496479, 52.26573], [-119.488571, 52.266606], [-119.482103, 52.272173], [-119.482226, 52.278815], [-119.492756, 52.279634], [-119.501825, 52.279087], [-119.520222, 52.28286], [-119.514564, 52.290753], [-119.513776, 52.291987], [-119.516803, 52.300469], [-119.524434, 52.302198], [-119.529554, 52.309873], [-119.524193, 52.315165], [-119.515399, 52.320215], [-119.505021, 52.323499], [-119.501211, 52.329717], [-119.500855, 52.337356], [-119.490333, 52.342546], [-119.47808, 52.346632], [-119.469614, 52.353201], [-119.46397, 52.362478], [-119.469161, 52.364494], [-119.482989, 52.368346], [-119.493189, 52.368967], [-119.501547, 52.369038], [-119.509623, 52.375915], [-119.517083, 52.384387], [-119.52735, 52.389745], [-119.539595, 52.39347], [-119.551032, 52.391471], [-119.570731, 52.386352], [-119.580863, 52.390449], [-119.574811, 52.396714], [-119.566457, 52.403486], [-119.577954, 52.413055], [-119.583525, 52.420995], [-119.577933, 52.424236], [-119.583732, 52.428147], [-119.589148, 52.43289], [-119.593468, 52.439292], [-119.588522, 52.445092], [-119.594381, 52.452279], [-119.60735, 52.45333], [-119.613515, 52.45851], [-119.620437, 52.466542], [-119.620775, 52.47413], [-119.632547, 52.479636], [-119.639856, 52.478506], [-119.648853, 52.483528], [-119.653903, 52.489849], [-119.654567, 52.496149], [-119.652146, 52.506524], [-119.654726, 52.514948], [-119.661702, 52.520948], [-119.66067, 52.525036], [-119.657686, 52.530256], [-119.666035, 52.533669], [-119.677337, 52.531753], [-119.681388, 52.535641], [-119.701058, 52.537478], [-119.702232, 52.544908], [-119.705944, 52.553138], [-119.697989, 52.563276], [-119.695814, 52.572687], [-119.702216, 52.580151], [-119.71627, 52.5943], [-119.71984, 52.597603], [-119.723535, 52.603992], [-119.733796, 52.605914], [-119.747045, 52.609581], [-119.757675, 52.606655], [-119.763524, 52.610457], [-119.765453, 52.6206], [-119.766203, 52.629057], [-119.768521, 52.636091], [-119.769186, 52.642898], [-119.766927, 52.650966], [-119.766588, 52.656261], [-119.768408, 52.66032], [-119.775198, 52.662751], [-119.786105, 52.664857], [-119.805064, 52.670088], [-119.812479, 52.67239], [-119.817358, 52.674412], [-119.820336, 52.67698], [-119.824969, 52.681689], [-119.829306, 52.683867], [-119.83704, 52.688291], [-119.843663, 52.690417], [-119.849537, 52.691145], [-119.854646, 52.690883], [-119.859114, 52.689796], [-119.863786, 52.686828], [-119.866172, 52.683913], [-119.86643, 52.680394], [-119.872172, 52.684382], [-119.879617, 52.692712], [-119.885118, 52.699386], [-119.890332, 52.706545], [-119.890353, 52.706691], [-119.906778, 52.708488], [-119.909555, 52.714991], [-119.920304, 52.719198], [-119.945714, 52.712584], [-119.951161, 52.710081], [-119.958304, 52.716595], [-119.964311, 52.725126], [-119.965231, 52.727099], [-119.965741, 52.730123], [-119.967358, 52.733388], [-119.969885, 52.73546], [-119.973783, 52.737326], [-119.991961, 52.741812], [-120.002514, 52.744753], [-120.010327, 52.748105], [-120.017853, 52.752658], [-120.022348, 52.755283], [-120.024748, 52.757578], [-120.025554, 52.762944], [-120.027046, 52.766434], [-120.029738, 52.77107], [-120.033355, 52.77768], [-120.036671, 52.78587], [-120.039141, 52.789825], [-120.042707, 52.794397], [-120.050551, 52.800913], [-120.06034, 52.808736], [-120.061755, 52.810942], [-120.060915, 52.813798], [-120.057384, 52.819112], [-120.05806, 52.821158], [-120.059356, 52.823211], [-120.061431, 52.824295], [-120.066276, 52.824213], [-120.072601, 52.824453], [-120.077158, 52.825571], [-120.081427, 52.82789], [-120.087339, 52.833095], [-120.089867, 52.835541], [-120.094426, 52.836658], [-120.10278, 52.839484], [-120.111481, 52.843142], [-120.112964, 52.858778], [-120.115602, 52.861753], [-120.128897, 52.869692], [-120.142545, 52.876741], [-120.147103, 52.873864], [-120.15744, 52.86665], [-120.165268, 52.861974], [-120.177253, 52.860035], [-120.185614, 52.864289], [-120.212143, 52.876332], [-120.218366, 52.877869], [-120.225586, 52.873059], [-120.227753, 52.868194], [-120.232543, 52.863479], [-120.242505, 52.86151]], [[-120.02513, 51.695067], [-120.01619, 51.695379], [-120.012621, 51.695404], [-120.013005, 51.687447], [-120.008013, 51.687301], [-120.008003, 51.695353], [-119.987734, 51.695723], [-119.988313, 51.687499], [-119.996497, 51.68749], [-119.996374, 51.686752], [-120.00172, 51.686508], [-120.001471, 51.678774], [-120.00513, 51.678934], [-120.005515, 51.669138], [-119.998047, 51.669375], [-119.99779, 51.669614], [-119.997508, 51.669741], [-119.99725, 51.669997], [-119.997011, 51.670892], [-119.996685, 51.671371], [-119.996531, 51.671766], [-119.965106, 51.671292], [-119.965221, 51.66438], [-119.978881, 51.663693], [-119.992148, 51.663363], [-119.991731, 51.657379], [-119.974539, 51.658128], [-119.974049, 51.649932], [-119.963887, 51.650242], [-119.964187, 51.646388], [-119.964949, 51.643314], [-119.959753, 51.642886], [-119.960814, 51.63695], [-119.957819, 51.63549], [-119.948579, 51.634752], [-119.949191, 51.630791], [-119.942168, 51.627292], [-119.940938, 51.627341], [-119.941825, 51.622735], [-119.941272, 51.622385], [-119.941985, 51.6219], [-119.939575, 51.611134], [-119.940658, 51.611148], [-119.943002, 51.611453], [-119.940162, 51.607832], [-119.953467, 51.604366], [-119.979569, 51.613796], [-120.022882, 51.628842], [-120.022837, 51.629765], [-120.07143, 51.630309], [-120.076227, 51.629816], [-120.076966, 51.630509], [-120.07768, 51.631327], [-120.078299, 51.631811], [-120.078449, 51.632155], [-120.078376, 51.63257], [-120.079245, 51.632929], [-120.080709, 51.633103], [-120.081509, 51.632668], [-120.085546, 51.632289], [-120.090365, 51.632369], [-120.107153, 51.631674], [-120.108344, 51.631284], [-120.11156, 51.631351], [-120.114572, 51.630868], [-120.114594, 51.630805], [-120.123058, 51.630483], [-120.118506, 51.635019], [-120.110712, 51.642199], [-120.105271, 51.644292], [-120.103682, 51.646077], [-120.099703, 51.652343], [-120.100398, 51.652312], [-120.100947, 51.660641], [-120.088596, 51.660872], [-120.08883, 51.665687], [-120.089044, 51.667812], [-120.088914, 51.668371], [-120.080631, 51.668844], [-120.077465, 51.668973], [-120.071274, 51.673584], [-120.053902, 51.670262], [-120.041264, 51.667715], [-120.04081, 51.66782], [-120.040252, 51.668088], [-120.039563, 51.668684], [-120.03913, 51.66925], [-120.03857, 51.66981], [-120.036296, 51.671638], [-120.03527, 51.672309], [-120.032141, 51.673518], [-120.031524, 51.673833], [-120.029781, 51.675106], [-120.029284, 51.675542], [-120.028579, 51.67927], [-120.024703, 51.679248], [-120.023852, 51.680369], [-120.02364, 51.680858], [-120.023217, 51.682626], [-120.022994, 51.683146], [-120.02147, 51.685224], [-120.020262, 51.686664], [-120.025043, 51.686941], [-120.02513, 51.695067]], [[-119.776053, 51.578484], [-119.77286, 51.587059], [-119.767638, 51.586816], [-119.762274, 51.585171], [-119.762825, 51.587793], [-119.750081, 51.587345], [-119.749864, 51.586626], [-119.748579, 51.586621], [-119.742588, 51.585273], [-119.739549, 51.585055], [-119.737668, 51.585018], [-119.737222, 51.583277], [-119.73547, 51.583423], [-119.736203, 51.580857], [-119.735375, 51.580323], [-119.733855, 51.579838], [-119.735107, 51.579154], [-119.735964, 51.578116], [-119.737423, 51.578238], [-119.737545, 51.577713], [-119.743838, 51.575913], [-119.743999, 51.577343], [-119.744161, 51.577671], [-119.745135, 51.57732], [-119.746245, 51.577232], [-119.751576, 51.577574], [-119.754493, 51.577928], [-119.757163, 51.577951], [-119.75919, 51.577666], [-119.761074, 51.577186], [-119.765142, 51.576577], [-119.766592, 51.576476], [-119.768794, 51.576461], [-119.771541, 51.576856], [-119.776053, 51.578484]]]]}, "properties": {"name": "Thompson-Nicola A (Wells Gray Country)", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola A (Wells Gray Country)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933068", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.714238, 52.67719], [-119.726898, 52.68021], [-119.733046, 52.681268], [-119.742921, 52.681898], [-119.746913, 52.680977], [-119.75203, 52.679338], [-119.755756, 52.675879], [-119.768329, 52.660292], [-119.768408, 52.66032], [-119.766588, 52.656261], [-119.766927, 52.650966], [-119.769186, 52.642898], [-119.768521, 52.636091], [-119.766203, 52.629057], [-119.765453, 52.6206], [-119.763524, 52.610457], [-119.757675, 52.606655], [-119.747045, 52.609581], [-119.733796, 52.605914], [-119.723535, 52.603992], [-119.71984, 52.597603], [-119.71627, 52.5943], [-119.702216, 52.580151], [-119.695814, 52.572687], [-119.697989, 52.563276], [-119.705944, 52.553138], [-119.702232, 52.544908], [-119.701058, 52.537478], [-119.681388, 52.535641], [-119.677337, 52.531753], [-119.666035, 52.533669], [-119.657686, 52.530256], [-119.66067, 52.525036], [-119.661702, 52.520948], [-119.654726, 52.514948], [-119.652146, 52.506524], [-119.654567, 52.496149], [-119.653903, 52.489849], [-119.648853, 52.483528], [-119.639856, 52.478506], [-119.632547, 52.479636], [-119.620775, 52.47413], [-119.620437, 52.466542], [-119.613515, 52.45851], [-119.60735, 52.45333], [-119.594381, 52.452279], [-119.588522, 52.445092], [-119.593468, 52.439292], [-119.589148, 52.43289], [-119.583732, 52.428147], [-119.577933, 52.424236], [-119.583525, 52.420995], [-119.577954, 52.413055], [-119.566457, 52.403486], [-119.574811, 52.396714], [-119.580863, 52.390449], [-119.570731, 52.386352], [-119.551032, 52.391471], [-119.539595, 52.39347], [-119.52735, 52.389745], [-119.517083, 52.384387], [-119.509623, 52.375915], [-119.501547, 52.369038], [-119.493189, 52.368967], [-119.482989, 52.368346], [-119.469161, 52.364494], [-119.46397, 52.362478], [-119.469614, 52.353201], [-119.47808, 52.346632], [-119.490333, 52.342546], [-119.500855, 52.337356], [-119.501211, 52.329717], [-119.505021, 52.323499], [-119.515399, 52.320215], [-119.524193, 52.315165], [-119.529554, 52.309873], [-119.524434, 52.302198], [-119.516803, 52.300469], [-119.513776, 52.291987], [-119.514564, 52.290753], [-119.520222, 52.28286], [-119.501825, 52.279087], [-119.492756, 52.279634], [-119.482226, 52.278815], [-119.482103, 52.272173], [-119.488571, 52.266606], [-119.496479, 52.26573], [-119.503866, 52.263174], [-119.503397, 52.258088], [-119.505013, 52.251498], [-119.501729, 52.243553], [-119.506865, 52.237279], [-119.5154, 52.228676], [-119.515683, 52.22223], [-119.503065, 52.220618], [-119.497681, 52.219424], [-119.489922, 52.217797], [-119.483959, 52.209945], [-119.483022, 52.204583], [-119.493464, 52.199098], [-119.501606, 52.193944], [-119.507837, 52.185302], [-119.496074, 52.176366], [-119.491699, 52.170181], [-119.491392, 52.160543], [-119.491265, 52.152187], [-119.494313, 52.147045], [-119.500734, 52.146078], [-119.51177, 52.145096], [-119.516448, 52.140457], [-119.519707, 52.133646], [-119.509666, 52.125047], [-119.497686, 52.119068], [-119.489952, 52.116458], [-119.483207, 52.110603], [-119.484196, 52.101905], [-119.491221, 52.098188], [-119.500702, 52.093394], [-119.505975, 52.090862], [-119.517435, 52.093036], [-119.527934, 52.092003], [-119.536455, 52.082898], [-119.54391, 52.073026], [-119.54917, 52.066261], [-119.553201, 52.062276], [-119.554029, 52.059558], [-119.556063, 52.054209], [-119.555953, 52.046221], [-119.556959, 52.042122], [-119.556514, 52.031749], [-119.544492, 52.033774], [-119.535855, 52.034984], [-119.528527, 52.034248], [-119.520505, 52.032666], [-119.507453, 52.029633], [-119.49768, 52.032086], [-119.493026, 52.033155], [-119.481817, 52.032919], [-119.47205, 52.025971], [-119.46785, 52.020253], [-119.462992, 52.017509], [-119.446357, 52.02151], [-119.434873, 52.028445], [-119.431273, 52.025282], [-119.43763, 52.01274], [-119.438031, 52.000136], [-119.448146, 51.989239], [-119.446726, 51.983846], [-119.445391, 51.976833], [-119.446595, 51.973669], [-119.454776, 51.967117], [-119.459267, 51.962954], [-119.465987, 51.960642], [-119.473693, 51.95739], [-119.470406, 51.95022], [-119.462684, 51.945344], [-119.453625, 51.947393], [-119.446922, 51.948344], [-119.435056, 51.950807], [-119.426143, 51.951886], [-119.424233, 51.948146], [-119.430721, 51.942429], [-119.437146, 51.935666], [-119.437082, 51.929043], [-119.445652, 51.923691], [-119.451505, 51.921107], [-119.459938, 51.904218], [-119.461786, 51.900682], [-119.471073, 51.897912], [-119.475577, 51.892131], [-119.485182, 51.883289], [-119.486917, 51.878647], [-119.487515, 51.87728], [-119.482357, 51.874134], [-119.475261, 51.868729], [-119.472423, 51.861018], [-119.473751, 51.847862], [-119.483031, 51.843477], [-119.481921, 51.834253], [-119.501033, 51.829375], [-119.511551, 51.828748], [-119.516286, 51.817204], [-119.530277, 51.815031], [-119.53964, 51.815385], [-119.541935, 51.811712], [-119.542138, 51.811825], [-119.552393, 51.804701], [-119.565615, 51.801302], [-119.572488, 51.799866], [-119.578787, 51.80283], [-119.58897, 51.802499], [-119.600404, 51.790612], [-119.608149, 51.778128], [-119.61269, 51.768381], [-119.615244, 51.763464], [-119.624924, 51.749886], [-119.626536, 51.745048], [-119.629721, 51.734923], [-119.636308, 51.727986], [-119.641186, 51.722689], [-119.647933, 51.717066], [-119.651267, 51.714156], [-119.662244, 51.703472], [-119.662393, 51.702856], [-119.670066, 51.694722], [-119.675117, 51.691692], [-119.686118, 51.68876], [-119.695702, 51.679846], [-119.676767, 51.680237], [-119.657203, 51.680355], [-119.62867, 51.679544], [-119.624437, 51.679208], [-119.614946, 51.678587], [-119.613931, 51.672899], [-119.611253, 51.672969], [-119.603951, 51.672562], [-119.593773, 51.67355], [-119.594729, 51.669634], [-119.59439, 51.668689], [-119.59478, 51.66868], [-119.595487, 51.668806], [-119.598032, 51.669544], [-119.599361, 51.669677], [-119.600548, 51.669927], [-119.601901, 51.670582], [-119.602578, 51.67123], [-119.603288, 51.671717], [-119.604859, 51.672295], [-119.608159, 51.672597], [-119.610592, 51.672658], [-119.613831, 51.672287], [-119.615293, 51.672281], [-119.616308, 51.67216], [-119.618192, 51.671666], [-119.619941, 51.670925], [-119.621006, 51.669891], [-119.622362, 51.669226], [-119.623696, 51.668884], [-119.625376, 51.668834], [-119.626196, 51.668877], [-119.627808, 51.669192], [-119.630798, 51.670013], [-119.631604, 51.670333], [-119.634685, 51.672104], [-119.635934, 51.672663], [-119.636669, 51.673134], [-119.637334, 51.673452], [-119.637946, 51.67354], [-119.638683, 51.673544], [-119.639471, 51.673363], [-119.640475, 51.671922], [-119.640551, 51.671193], [-119.640851, 51.670616], [-119.641301, 51.670247], [-119.642417, 51.669707], [-119.643317, 51.669444], [-119.644702, 51.669212], [-119.646451, 51.66913], [-119.648357, 51.669153], [-119.650812, 51.669331], [-119.652841, 51.66964], [-119.653969, 51.669647], [-119.654576, 51.669512], [-119.656019, 51.668868], [-119.656592, 51.668433], [-119.656847, 51.668059], [-119.657062, 51.667246], [-119.657107, 51.666335], [-119.656964, 51.665469], [-119.656379, 51.66432], [-119.653874, 51.661336], [-119.653445, 51.660439], [-119.653646, 51.659725], [-119.654572, 51.658657], [-119.654724, 51.658314], [-119.655084, 51.657945], [-119.65589, 51.6575], [-119.656592, 51.657265], [-119.658757, 51.656931], [-119.659379, 51.656942], [-119.661036, 51.657187], [-119.661967, 51.657186], [-119.663087, 51.657009], [-119.664182, 51.656639], [-119.665083, 51.656209], [-119.666272, 51.655186], [-119.66737, 51.653678], [-119.668369, 51.653304], [-119.671053, 51.652578], [-119.672588, 51.652382], [-119.675433, 51.651581], [-119.677812, 51.651113], [-119.679722, 51.650328], [-119.681254, 51.649536], [-119.682574, 51.648559], [-119.683867, 51.646953], [-119.684772, 51.644153], [-119.685454, 51.639739], [-119.685472, 51.638605], [-119.6863, 51.6357], [-119.686409, 51.634105], [-119.687171, 51.632202], [-119.687568, 51.631615], [-119.688297, 51.630922], [-119.689189, 51.629586], [-119.689291, 51.628855], [-119.68906, 51.627907], [-119.688771, 51.627585], [-119.688193, 51.627176], [-119.686635, 51.626641], [-119.685349, 51.626371], [-119.68322, 51.625558], [-119.680627, 51.624039], [-119.680402, 51.623578], [-119.680349, 51.622255], [-119.679464, 51.620554], [-119.679161, 51.620263], [-119.678436, 51.619132], [-119.678336, 51.618232], [-119.679582, 51.616586], [-119.680297, 51.615785], [-119.68147, 51.614881], [-119.682678, 51.614272], [-119.684274, 51.613303], [-119.685683, 51.6119], [-119.68577, 51.610682], [-119.685262, 51.60898], [-119.684791, 51.608304], [-119.684107, 51.607573], [-119.68311, 51.606932], [-119.681921, 51.606008], [-119.681276, 51.60528], [-119.680717, 51.604843], [-119.677946, 51.603957], [-119.676374, 51.603152], [-119.675593, 51.602621], [-119.675051, 51.602033], [-119.674866, 51.601631], [-119.674666, 51.600189], [-119.674348, 51.598764], [-119.674327, 51.597981], [-119.675741, 51.596315], [-119.678464, 51.594586], [-119.680193, 51.59379], [-119.680946, 51.593569], [-119.682745, 51.59328], [-119.684691, 51.59281], [-119.689224, 51.591181], [-119.691744, 51.590582], [-119.693357, 51.590552], [-119.694881, 51.590957], [-119.695189, 51.590662], [-119.695557, 51.590051], [-119.695745, 51.589561], [-119.696098, 51.58917], [-119.698005, 51.585781], [-119.69814, 51.585391], [-119.697868, 51.580422], [-119.697551, 51.576778], [-119.701771, 51.569002], [-119.700097, 51.561486], [-119.69612, 51.55457], [-119.697118, 51.535191], [-119.700122, 51.482263], [-119.669751, 51.482378], [-119.64616, 51.482729], [-119.64965, 51.490126], [-119.649964, 51.490243], [-119.658943, 51.503835], [-119.658882, 51.503898], [-119.659623, 51.511428], [-119.649238, 51.505626], [-119.638469, 51.505545], [-119.638459, 51.505702], [-119.630997, 51.509306], [-119.620297, 51.509817], [-119.611141, 51.509302], [-119.60528, 51.520926], [-119.597837, 51.523944], [-119.594941, 51.55333], [-119.589419, 51.553055], [-119.585475, 51.555204], [-119.583797, 51.560716], [-119.586748, 51.565317], [-119.583069, 51.567527], [-119.575212, 51.56977], [-119.567073, 51.571949], [-119.560549, 51.575673], [-119.556684, 51.583647], [-119.553718, 51.5875], [-119.554961, 51.602157], [-119.543786, 51.599725], [-119.52227, 51.602615], [-119.500375, 51.602557], [-119.500694, 51.59929], [-119.48717, 51.592085], [-119.478188, 51.581872], [-119.475904, 51.574761], [-119.470696, 51.568064], [-119.459658, 51.56377], [-119.455455, 51.56743], [-119.440623, 51.572989], [-119.427192, 51.57701], [-119.418903, 51.580542], [-119.407945, 51.581404], [-119.391071, 51.576204], [-119.386059, 51.578513], [-119.379182, 51.576756], [-119.366781, 51.580043], [-119.357755, 51.583506], [-119.352956, 51.57957], [-119.346496, 51.581646], [-119.339386, 51.586138], [-119.330237, 51.590065], [-119.327507, 51.595166], [-119.324792, 51.606595], [-119.319875, 51.613763], [-119.312638, 51.625338], [-119.30511, 51.633686], [-119.294866, 51.63756], [-119.287185, 51.63847], [-119.281086, 51.643096], [-119.277598, 51.648123], [-119.225515, 51.647243], [-119.136314, 51.646242], [-118.977996, 51.644069], [-118.97094, 51.652043], [-118.975711, 51.659479], [-118.994496, 51.669455], [-118.995517, 51.675087], [-118.99887, 51.679372], [-119.010711, 51.683463], [-119.009948, 51.687259], [-118.979106, 51.692283], [-118.96834, 51.696018], [-118.96107, 51.701515], [-118.948888, 51.700284], [-118.937835, 51.70272], [-118.932899, 51.696559], [-118.929463, 51.690937], [-118.924284, 51.68955], [-118.923877, 51.689561], [-118.924141, 51.696339], [-118.919772, 51.700635], [-118.917559, 51.703238], [-118.917588, 51.708211], [-118.91883, 51.71527], [-118.918446, 51.717422], [-118.916032, 51.719187], [-118.910805, 51.721041], [-118.891357, 51.728139], [-118.888346, 51.729369], [-118.886319, 51.73096], [-118.885514, 51.733102], [-118.888165, 51.747747], [-118.890443, 51.751578], [-118.893763, 51.754861], [-118.897403, 51.76345], [-118.89499, 51.766491], [-118.88682, 51.775044], [-118.885468, 51.778553], [-118.88582, 51.782988], [-118.888856, 51.785809], [-118.895485, 51.786568], [-118.900137, 51.786029], [-118.906007, 51.78617], [-118.910157, 51.787624], [-118.91772, 51.791632], [-118.921048, 51.793509], [-118.924106, 51.794311], [-118.9362, 51.792958], [-118.938786, 51.792902], [-118.942078, 51.793318], [-118.945367, 51.796547], [-118.953282, 51.802436], [-118.958683, 51.807563], [-118.961399, 51.810569], [-118.963188, 51.81815], [-118.963574, 51.82079], [-118.96504, 51.82434], [-118.958199, 51.82767], [-118.953403, 51.829147], [-118.949671, 51.831091], [-118.947771, 51.833989], [-118.947154, 51.836527], [-118.948417, 51.839943], [-118.949314, 51.844548], [-118.948914, 51.846961], [-118.950295, 51.849481], [-118.960603, 51.854254], [-118.975892, 51.858778], [-118.985855, 51.863073], [-118.988445, 51.86407], [-118.990141, 51.864552], [-118.990273, 51.867616], [-118.981312, 51.86905], [-118.976923, 51.870668], [-118.972628, 51.872835], [-118.969692, 51.877559], [-118.965958, 51.88711], [-118.967854, 51.891947], [-118.970755, 51.895479], [-118.97883, 51.911335], [-118.978775, 51.914356], [-118.984351, 51.917585], [-118.987022, 51.920096], [-118.988237, 51.923367], [-118.988665, 51.92606], [-118.989397, 51.927901], [-118.989085, 51.929587], [-118.987761, 51.931302], [-118.984605, 51.932636], [-118.97661, 51.934562], [-118.971405, 51.934233], [-118.952687, 51.930283], [-118.944324, 51.927548], [-118.921796, 51.926706], [-118.913873, 51.926753], [-118.908526, 51.928059], [-118.905854, 51.931396], [-118.903185, 51.93636], [-118.902617, 51.939395], [-118.900529, 51.942472], [-118.898706, 51.945346], [-118.895495, 51.948161], [-118.891037, 51.954073], [-118.89581, 51.956637], [-118.90226, 51.959371], [-118.905905, 51.961451], [-118.916019, 51.965653], [-118.918935, 51.966243], [-118.92501, 51.966908], [-118.930596, 51.966624], [-118.942339, 51.96909], [-118.949903, 51.970935], [-118.964317, 51.974281], [-118.96799, 51.975618], [-118.971859, 51.977219], [-118.972907, 51.9823], [-118.972721, 51.985423], [-118.971927, 51.988142], [-118.961584, 51.996739], [-118.955623, 52.000459], [-118.95674, 52.003313], [-118.951996, 52.005028], [-118.949397, 52.006844], [-118.947382, 52.010864], [-118.944264, 52.026197], [-118.941771, 52.030414], [-118.936248, 52.034104], [-118.926109, 52.038351], [-118.919494, 52.0395], [-118.917053, 52.038714], [-118.91221, 52.03649], [-118.909401, 52.03619], [-118.895386, 52.039887], [-118.887426, 52.041601], [-118.875686, 52.042964], [-118.871936, 52.043501], [-118.863384, 52.044196], [-118.855945, 52.045634], [-118.851318, 52.049354], [-118.848235, 52.056736], [-118.848232, 52.058144], [-118.851366, 52.061428], [-118.855018, 52.064567], [-118.86042, 52.066133], [-118.865379, 52.066672], [-118.868608, 52.067819], [-118.871457, 52.070287], [-118.872486, 52.072111], [-118.872814, 52.076017], [-118.854559, 52.088016], [-118.860507, 52.094418], [-118.861637, 52.096662], [-118.862672, 52.09906], [-118.865033, 52.100578], [-118.866696, 52.102417], [-118.864331, 52.106754], [-118.858173, 52.115889], [-118.855228, 52.119651], [-118.852724, 52.122459], [-118.850856, 52.127265], [-118.851123, 52.133139], [-118.84989, 52.137255], [-118.844539, 52.141207], [-118.841856, 52.142785], [-118.837789, 52.146155], [-118.835013, 52.15991], [-118.833675, 52.164312], [-118.831985, 52.166253], [-118.829017, 52.167941], [-118.817738, 52.171396], [-118.811545, 52.17414], [-118.80321, 52.177222], [-118.813335, 52.186576], [-118.828632, 52.201016], [-118.831634, 52.202451], [-118.836767, 52.203827], [-118.84385, 52.205193], [-118.847196, 52.206799], [-118.849581, 52.209474], [-118.851689, 52.213561], [-118.851209, 52.215294], [-118.847657, 52.217606], [-118.838646, 52.218743], [-118.835168, 52.219965], [-118.832907, 52.221655], [-118.83265, 52.223994], [-118.833675, 52.227046], [-118.836427, 52.230821], [-118.837841, 52.232164], [-118.839837, 52.232811], [-118.864316, 52.236543], [-118.874123, 52.238352], [-118.875621, 52.238758], [-118.883941, 52.236352], [-118.897787, 52.235888], [-118.900185, 52.238338], [-118.890735, 52.24568], [-118.890406, 52.246911], [-118.882127, 52.26409], [-118.879012, 52.26549], [-118.874448, 52.267293], [-118.870263, 52.268723], [-118.866901, 52.269789], [-118.861658, 52.27245], [-118.859384, 52.273215], [-118.852181, 52.275882], [-118.847082, 52.279037], [-118.846336, 52.280986], [-118.846081, 52.283603], [-118.845386, 52.284734], [-118.842368, 52.285972], [-118.840701, 52.28697], [-118.838192, 52.288603], [-118.836279, 52.289267], [-118.831815, 52.289431], [-118.827942, 52.290101], [-118.824033, 52.291317], [-118.821225, 52.293434], [-118.813377, 52.299089], [-118.810538, 52.300276], [-118.805276, 52.301732], [-118.800704, 52.303531], [-118.796384, 52.30419], [-118.791292, 52.304391], [-118.788025, 52.305294], [-118.786602, 52.306625], [-118.786496, 52.308262], [-118.787684, 52.311953], [-118.78947, 52.314675], [-118.792147, 52.317419], [-118.798015, 52.319149], [-118.807177, 52.32238], [-118.816241, 52.325772], [-118.831524, 52.331063], [-118.841548, 52.334859], [-118.85515, 52.341418], [-118.861816, 52.343327], [-118.868452, 52.344305], [-118.887943, 52.344003], [-118.909379, 52.345438], [-118.926379, 52.353598], [-118.92588, 52.358833], [-118.928668, 52.362888], [-118.9321, 52.368106], [-118.933188, 52.372231], [-118.935102, 52.375993], [-118.938124, 52.380654], [-118.942286, 52.38567], [-118.947937, 52.391213], [-118.938138, 52.396615], [-118.926319, 52.404319], [-118.93055, 52.408245], [-118.931673, 52.410348], [-118.930812, 52.412733], [-118.92395, 52.418962], [-118.921632, 52.42212], [-118.922435, 52.425419], [-118.925762, 52.429529], [-118.932275, 52.434602], [-118.941698, 52.439708], [-118.939753, 52.44226], [-118.938635, 52.44408], [-118.935797, 52.452079], [-118.930915, 52.453264], [-118.929238, 52.45507], [-118.927808, 52.458318], [-118.926978, 52.460896], [-118.924266, 52.463157], [-118.916982, 52.465173], [-118.914559, 52.466347], [-118.912034, 52.467381], [-118.908846, 52.468263], [-118.904336, 52.46884], [-118.893801, 52.470914], [-118.888542, 52.472704], [-118.886325, 52.474155], [-118.885054, 52.478363], [-118.885689, 52.482548], [-118.887609, 52.485875], [-118.891415, 52.48952], [-118.900314, 52.495951], [-118.904621, 52.498787], [-118.907331, 52.502063], [-118.908175, 52.506527], [-118.906408, 52.511544], [-118.902938, 52.51871], [-118.903699, 52.522693], [-118.90527, 52.526285], [-118.90935, 52.53103], [-118.915631, 52.534664], [-118.931886, 52.545777], [-118.936365, 52.551419], [-118.937089, 52.554239], [-118.935491, 52.556527], [-118.932358, 52.558231], [-118.928498, 52.560808], [-118.926836, 52.56412], [-118.926564, 52.566712], [-118.927559, 52.568786], [-118.931067, 52.570167], [-118.936383, 52.571384], [-118.941741, 52.571918], [-118.944793, 52.573424], [-118.946536, 52.576131], [-118.948924, 52.577485], [-118.953515, 52.577727], [-118.960246, 52.577882], [-118.964151, 52.578313], [-118.971027, 52.581615], [-118.975514, 52.583564], [-118.980791, 52.585461], [-118.988189, 52.587612], [-118.993301, 52.590394], [-118.995049, 52.593101], [-118.996943, 52.597109], [-119.000042, 52.599778], [-119.004345, 52.601105], [-119.008731, 52.601067], [-119.012057, 52.599979], [-119.014635, 52.598258], [-119.015572, 52.595817], [-119.015781, 52.594248], [-119.018213, 52.593071], [-119.022162, 52.592817], [-119.033636, 52.594508], [-119.037795, 52.596378], [-119.040524, 52.599653], [-119.041093, 52.603358], [-119.040188, 52.607304], [-119.041234, 52.610541], [-119.044525, 52.613827], [-119.046838, 52.616545], [-119.048635, 52.620414], [-119.049618, 52.62283], [-119.052493, 52.62556], [-119.054475, 52.628202], [-119.056089, 52.633298], [-119.125389, 52.633719], [-119.155067, 52.633792], [-119.192568, 52.636891], [-119.192989, 52.636734], [-119.194062, 52.636597], [-119.194448, 52.636373], [-119.194755, 52.636288], [-119.196394, 52.636257], [-119.19712, 52.635712], [-119.197657, 52.635496], [-119.198535, 52.635318], [-119.199006, 52.635291], [-119.199509, 52.635022], [-119.200676, 52.634721], [-119.201179, 52.634711], [-119.201913, 52.634878], [-119.202775, 52.634691], [-119.203144, 52.634674], [-119.20344, 52.634706], [-119.204401, 52.63502], [-119.205953, 52.634731], [-119.206664, 52.634735], [-119.206962, 52.634792], [-119.20716, 52.634915], [-119.207545, 52.634935], [-119.208149, 52.6346], [-119.208716, 52.634409], [-119.210778, 52.634254], [-119.211909, 52.633847], [-119.212326, 52.633613], [-119.212973, 52.633529], [-119.214453, 52.6336], [-119.215134, 52.633579], [-119.216299, 52.63326], [-119.217068, 52.632985], [-119.217382, 52.632764], [-119.217871, 52.632188], [-119.218086, 52.632076], [-119.21832, 52.632008], [-119.218852, 52.632035], [-119.21938, 52.631935], [-119.220057, 52.631904], [-119.220173, 52.631857], [-119.220336, 52.63154], [-119.220721, 52.631316], [-119.221012, 52.631473], [-119.221746, 52.632259], [-119.221988, 52.63239], [-119.223172, 52.632413], [-119.22411, 52.632233], [-119.224439, 52.632334], [-119.224888, 52.632165], [-119.226406, 52.632047], [-119.226915, 52.63191], [-119.227651, 52.632139], [-119.228155, 52.63186], [-119.228912, 52.631927], [-119.229366, 52.631891], [-119.229591, 52.63195], [-119.229633, 52.632165], [-119.229783, 52.632235], [-119.23011, 52.632237], [-119.230695, 52.632145], [-119.231267, 52.632331], [-119.231863, 52.632159], [-119.232069, 52.632155], [-119.233303, 52.632276], [-119.234328, 52.632643], [-119.236146, 52.632968], [-119.236782, 52.633261], [-119.237247, 52.633397], [-119.237647, 52.633398], [-119.238453, 52.633582], [-119.238868, 52.633582], [-119.239567, 52.633686], [-119.240228, 52.633881], [-119.241093, 52.634026], [-119.242126, 52.634025], [-119.242902, 52.634163], [-119.2466, 52.633921], [-119.24712, 52.633983], [-119.247784, 52.633979], [-119.249193, 52.633773], [-119.250754, 52.633636], [-119.251081, 52.633683], [-119.251611, 52.633944], [-119.251821, 52.633983], [-119.252581, 52.633575], [-119.253427, 52.633343], [-119.255902, 52.633187], [-119.257356, 52.632988], [-119.258479, 52.632985], [-119.259195, 52.632873], [-119.259419, 52.632904], [-119.259996, 52.633217], [-119.260955, 52.633451], [-119.262103, 52.633338], [-119.263359, 52.633045], [-119.264166, 52.632633], [-119.264916, 52.632565], [-119.265496, 52.632374], [-119.26594, 52.632366], [-119.266319, 52.632269], [-119.267165, 52.631785], [-119.267913, 52.631691], [-119.26807, 52.631579], [-119.268912, 52.631275], [-119.269184, 52.631127], [-119.269367, 52.630903], [-119.364402, 52.63251], [-119.364342, 52.642005], [-119.363555, 52.64645], [-119.361857, 52.653347], [-119.363333, 52.655297], [-119.365651, 52.656167], [-119.36948, 52.656111], [-119.375522, 52.654597], [-119.387868, 52.650823], [-119.394347, 52.649522], [-119.398105, 52.648644], [-119.407955, 52.647412], [-119.410431, 52.647394], [-119.413081, 52.646151], [-119.415556, 52.643949], [-119.418819, 52.641694], [-119.422505, 52.639994], [-119.427647, 52.638391], [-119.431719, 52.637927], [-119.438249, 52.637786], [-119.442587, 52.638764], [-119.447281, 52.641667], [-119.453823, 52.645908], [-119.458641, 52.648607], [-119.464912, 52.649212], [-119.469158, 52.647521], [-119.474839, 52.644084], [-119.482449, 52.640274], [-119.486871, 52.639541], [-119.492979, 52.638842], [-119.497662, 52.637363], [-119.500064, 52.636523], [-119.502972, 52.634532], [-119.505946, 52.631178], [-119.510188, 52.629485], [-119.517694, 52.627719], [-119.523766, 52.627701], [-119.528089, 52.629017], [-119.531119, 52.631542], [-119.533902, 52.637011], [-119.536256, 52.644462], [-119.537708, 52.647094], [-119.542736, 52.655142], [-119.544449, 52.657025], [-119.544409, 52.662787], [-119.577956, 52.647991], [-119.579531, 52.652958], [-119.582293, 52.656574], [-119.587394, 52.660712], [-119.594607, 52.665436], [-119.603539, 52.672042], [-119.609373, 52.677495], [-119.61299, 52.682222], [-119.616062, 52.689135], [-119.616534, 52.696279], [-119.616612, 52.704719], [-119.617905, 52.706045], [-119.62075, 52.705415], [-119.6293, 52.703181], [-119.636027, 52.701705], [-119.643059, 52.700936], [-119.650328, 52.700906], [-119.660431, 52.700681], [-119.668028, 52.699333], [-119.677485, 52.695614], [-119.697229, 52.684498], [-119.703335, 52.680321], [-119.708005, 52.678172], [-119.714238, 52.67719]]]]}, "properties": {"name": "Thompson-Nicola B (Thompson Headwaters)", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola B (Thompson Headwaters)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933070", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.544234, 51.669581], [-120.546783, 51.666912], [-120.55081, 51.66498], [-120.558415, 51.664548], [-120.560428, 51.661259], [-120.560408, 51.639311], [-120.561525, 51.593102], [-120.561344, 51.590842], [-120.560765, 51.574219], [-120.560267, 51.563575], [-120.558566, 51.488981], [-120.558546, 51.476518], [-120.557744, 51.469248], [-120.557671, 51.46691], [-120.558555, 51.458648], [-120.559094, 51.455609], [-120.5596, 51.450796], [-120.560667, 51.437586], [-120.560796, 51.42638], [-120.560927, 51.426382], [-120.55834, 51.402503], [-120.557908, 51.393174], [-120.557608, 51.380244], [-120.557652, 51.363032], [-120.558002, 51.312935], [-120.558711, 51.299006], [-120.560793, 51.271777], [-120.560881, 51.249722], [-120.557774, 51.193571], [-120.557239, 51.182452], [-120.557302, 51.088724], [-120.485008, 51.090019], [-120.447964, 51.09059], [-120.344984, 51.091976], [-120.32201, 51.092454], [-120.2472, 51.093773], [-120.233944, 51.094041], [-120.220595, 51.094209], [-120.178012, 51.093585], [-120.173432, 51.093609], [-120.173538, 51.094577], [-120.173051, 51.095302], [-120.172641, 51.096176], [-120.172438, 51.097959], [-120.172236, 51.098552], [-120.170681, 51.100224], [-120.169927, 51.10055], [-120.167121, 51.100544], [-120.165179, 51.100754], [-120.163795, 51.100752], [-120.162472, 51.100493], [-120.161282, 51.100144], [-120.158404, 51.099552], [-120.154851, 51.099255], [-120.151677, 51.099272], [-120.149287, 51.099709], [-120.14766, 51.100164], [-120.146463, 51.100651], [-120.145681, 51.101067], [-120.142875, 51.102717], [-120.141137, 51.10175], [-120.135116, 51.102104], [-120.13529, 51.086619], [-120.135698, 51.068479], [-120.111007, 51.06777], [-120.11092, 51.046252], [-120.110967, 51.041387], [-120.11476, 51.041466], [-120.114186, 51.011404], [-120.095423, 51.011409], [-120.095672, 50.998551], [-120.095829, 50.946019], [-120.096017, 50.925042], [-120.089199, 50.924935], [-120.080235, 50.924911], [-120.00418, 50.924963], [-119.936803, 50.924655], [-119.83049, 50.924495], [-119.825043, 50.924505], [-119.824738, 50.924574], [-119.824344, 50.924508], [-119.804368, 50.924589], [-119.80377, 50.952986], [-119.804022, 50.984021], [-119.740376, 50.983931], [-119.711025, 50.98381], [-119.704539, 50.983703], [-119.659473, 50.983732], [-119.652401, 50.983761], [-119.622973, 50.984355], [-119.613933, 50.984666], [-119.605994, 50.984781], [-119.599603, 50.984678], [-119.589794, 50.98425], [-119.572178, 50.984188], [-119.539858, 50.983599], [-119.536926, 50.983593], [-119.53761, 50.988318], [-119.537742, 50.999923], [-119.537988, 51.000905], [-119.538545, 51.001657], [-119.54808, 51.011029], [-119.543699, 51.014701], [-119.539465, 51.018363], [-119.534243, 51.022511], [-119.527515, 51.027427], [-119.523156, 51.031219], [-119.521699, 51.032645], [-119.519354, 51.036363], [-119.51492, 51.043105], [-119.509377, 51.054204], [-119.507139, 51.06665], [-119.510888, 51.072031], [-119.514287, 51.079097], [-119.516021, 51.086147], [-119.517339, 51.089599], [-119.524515, 51.092707], [-119.523913, 51.100494], [-119.525706, 51.106645], [-119.513996, 51.110872], [-119.508663, 51.118572], [-119.510135, 51.128022], [-119.511537, 51.131351], [-119.510235, 51.134084], [-119.510331, 51.134178], [-119.509461, 51.143205], [-119.49924, 51.157337], [-119.490638, 51.167032], [-119.483941, 51.173727], [-119.475984, 51.177334], [-119.475804, 51.178158], [-119.474783, 51.1788], [-119.473999, 51.179096], [-119.47225, 51.179498], [-119.472005, 51.179138], [-119.471462, 51.179384], [-119.439664, 51.182282], [-119.439449, 51.192634], [-119.444026, 51.202814], [-119.445493, 51.214044], [-119.440702, 51.221771], [-119.425383, 51.228236], [-119.408711, 51.231627], [-119.386672, 51.241267], [-119.375978, 51.249404], [-119.375823, 51.249404], [-119.376236, 51.253177], [-119.370889, 51.255492], [-119.363402, 51.255733], [-119.350628, 51.254616], [-119.336453, 51.254094], [-119.324165, 51.253218], [-119.318276, 51.251456], [-119.312604, 51.247899], [-119.302847, 51.246291], [-119.294002, 51.246342], [-119.288479, 51.249217], [-119.288335, 51.249217], [-119.274989, 51.257224], [-119.256225, 51.263774], [-119.23723, 51.268108], [-119.224527, 51.279895], [-119.222749, 51.293875], [-119.220994, 51.311123], [-119.205043, 51.311258], [-119.205354, 51.31798], [-119.192432, 51.317604], [-119.187056, 51.354494], [-119.154322, 51.358661], [-119.147029, 51.364742], [-119.133594, 51.365623], [-119.109035, 51.376164], [-119.108344, 51.376606], [-119.098258, 51.386923], [-119.091535, 51.395025], [-119.08879, 51.395668], [-119.083944, 51.392182], [-119.076165, 51.389391], [-119.058795, 51.39501], [-119.050888, 51.400862], [-119.040042, 51.413726], [-119.029034, 51.4229], [-119.000301, 51.430601], [-118.983536, 51.441982], [-118.974725, 51.44851], [-118.9672, 51.449219], [-118.961175, 51.452943], [-118.953461, 51.461309], [-118.952227, 51.471494], [-118.964711, 51.49064], [-118.962582, 51.499429], [-118.950202, 51.507397], [-118.955599, 51.517068], [-118.964786, 51.529113], [-118.970822, 51.533795], [-118.983695, 51.542357], [-118.981241, 51.553545], [-118.971067, 51.566508], [-118.966138, 51.574958], [-118.969364, 51.581955], [-118.972935, 51.595447], [-118.961968, 51.596949], [-118.957768, 51.601141], [-118.960567, 51.60952], [-118.968243, 51.619246], [-118.975383, 51.62726], [-118.983184, 51.635232], [-118.981397, 51.640752], [-118.977782, 51.644065], [-119.136314, 51.646242], [-119.225515, 51.647243], [-119.277598, 51.648123], [-119.281086, 51.643096], [-119.287185, 51.63847], [-119.294866, 51.63756], [-119.30511, 51.633686], [-119.312638, 51.625338], [-119.319875, 51.613763], [-119.324792, 51.606595], [-119.327507, 51.595166], [-119.330237, 51.590065], [-119.339386, 51.586138], [-119.346496, 51.581646], [-119.352956, 51.57957], [-119.357755, 51.583506], [-119.366781, 51.580043], [-119.379182, 51.576756], [-119.386059, 51.578513], [-119.391071, 51.576204], [-119.407945, 51.581404], [-119.418903, 51.580542], [-119.427192, 51.57701], [-119.440623, 51.572989], [-119.455455, 51.56743], [-119.459658, 51.56377], [-119.470696, 51.568064], [-119.475904, 51.574761], [-119.478188, 51.581872], [-119.48717, 51.592085], [-119.500694, 51.59929], [-119.500375, 51.602557], [-119.52227, 51.602615], [-119.543786, 51.599725], [-119.554961, 51.602157], [-119.553718, 51.5875], [-119.556684, 51.583647], [-119.560549, 51.575673], [-119.567073, 51.571949], [-119.575212, 51.56977], [-119.583069, 51.567527], [-119.586748, 51.565317], [-119.583797, 51.560716], [-119.585475, 51.555204], [-119.589419, 51.553055], [-119.594941, 51.55333], [-119.597837, 51.523944], [-119.60528, 51.520926], [-119.611141, 51.509302], [-119.620297, 51.509817], [-119.630997, 51.509306], [-119.638459, 51.505702], [-119.638469, 51.505545], [-119.649238, 51.505626], [-119.659623, 51.511428], [-119.658882, 51.503898], [-119.658943, 51.503835], [-119.649964, 51.490243], [-119.64965, 51.490126], [-119.64616, 51.482729], [-119.669751, 51.482378], [-119.813437, 51.481745], [-119.853998, 51.481622], [-119.930711, 51.480891], [-119.961914, 51.480735], [-119.999643, 51.480366], [-119.999739, 51.480402], [-120.114299, 51.478496], [-120.114295, 51.478398], [-120.128957, 51.47859], [-120.149785, 51.479122], [-120.149893, 51.475835], [-120.163569, 51.475936], [-120.164989, 51.476071], [-120.165365, 51.474579], [-120.166831, 51.472631], [-120.168445, 51.471424], [-120.17489, 51.47169], [-120.198595, 51.471941], [-120.197085, 51.480069], [-120.203433, 51.486007], [-120.204877, 51.493639], [-120.201163, 51.497136], [-120.201464, 51.50512], [-120.195917, 51.50883], [-120.196246, 51.51823], [-120.201901, 51.526066], [-120.202805, 51.530709], [-120.197335, 51.533838], [-120.194116, 51.54062], [-120.185893, 51.552868], [-120.189408, 51.56019], [-120.191199, 51.563273], [-120.202235, 51.575752], [-120.206946, 51.577764], [-120.222523, 51.578649], [-120.235441, 51.585572], [-120.23772, 51.59108], [-120.238547, 51.596473], [-120.239819, 51.597974], [-120.241993, 51.599287], [-120.242936, 51.602766], [-120.240977, 51.606048], [-120.242558, 51.607784], [-120.245751, 51.610265], [-120.247769, 51.611544], [-120.250664, 51.61507], [-120.252851, 51.616497], [-120.255267, 51.623418], [-120.260961, 51.632594], [-120.271789, 51.640684], [-120.288644, 51.647224], [-120.293637, 51.647012], [-120.29435, 51.642892], [-120.289621, 51.637853], [-120.291771, 51.631547], [-120.296358, 51.629793], [-120.305656, 51.631333], [-120.314193, 51.635156], [-120.321655, 51.636948], [-120.323427, 51.643623], [-120.329506, 51.649355], [-120.330061, 51.6536], [-120.337547, 51.656855], [-120.339608, 51.66163], [-120.34873, 51.664153], [-120.361793, 51.662025], [-120.37105, 51.663085], [-120.38598, 51.667056], [-120.39362, 51.667745], [-120.395509, 51.668323], [-120.402022, 51.668699], [-120.410879, 51.672682], [-120.418335, 51.675506], [-120.43236, 51.675165], [-120.4395, 51.671271], [-120.447419, 51.670431], [-120.45272, 51.673832], [-120.466585, 51.669478], [-120.481021, 51.668272], [-120.484322, 51.665857], [-120.480063, 51.65782], [-120.486216, 51.659496], [-120.49392, 51.659725], [-120.499131, 51.663643], [-120.506984, 51.665689], [-120.512813, 51.671459], [-120.528331, 51.671773], [-120.533572, 51.668651], [-120.544234, 51.669581]], [[-120.200356, 51.421654], [-120.200022, 51.421929], [-120.199323, 51.422951], [-120.198211, 51.422598], [-120.197821, 51.423001], [-120.197488, 51.422909], [-120.19868, 51.421096], [-120.200356, 51.421654]], [[-120.16071, 51.339642], [-120.161931, 51.339636], [-120.16233, 51.339699], [-120.162674, 51.339924], [-120.163681, 51.340361], [-120.164548, 51.340509], [-120.165425, 51.340502], [-120.165679, 51.340815], [-120.166272, 51.341189], [-120.166895, 51.341365], [-120.167072, 51.341488], [-120.167451, 51.341892], [-120.167616, 51.34248], [-120.167798, 51.342764], [-120.16823, 51.343926], [-120.168169, 51.345156], [-120.167848, 51.345698], [-120.168474, 51.346235], [-120.168582, 51.346419], [-120.163717, 51.346605], [-120.162608, 51.346887], [-120.160582, 51.346931], [-120.155132, 51.347274], [-120.154317, 51.347483], [-120.153604, 51.347511], [-120.152542, 51.347828], [-120.150316, 51.348174], [-120.149675, 51.348547], [-120.147907, 51.349009], [-120.147479, 51.34898], [-120.147141, 51.348864], [-120.146561, 51.348508], [-120.145504, 51.34855], [-120.152465, 51.340005], [-120.149952, 51.331062], [-120.150864, 51.327061], [-120.150658, 51.323181], [-120.147852, 51.323171], [-120.135462, 51.32334], [-120.135439, 51.31602], [-120.146324, 51.316159], [-120.150165, 51.313876], [-120.150465, 51.313639], [-120.151405, 51.313238], [-120.152169, 51.312726], [-120.152363, 51.312371], [-120.152487, 51.311245], [-120.152388, 51.304598], [-120.141063, 51.294054], [-120.144806, 51.290158], [-120.147452, 51.289006], [-120.149306, 51.28469], [-120.147961, 51.284041], [-120.148252, 51.277855], [-120.146142, 51.275001], [-120.146877, 51.271529], [-120.143879, 51.26958], [-120.143902, 51.243063], [-120.147574, 51.243103], [-120.158227, 51.241635], [-120.159682, 51.2429], [-120.161201, 51.243835], [-120.162667, 51.244923], [-120.163782, 51.245463], [-120.164718, 51.245828], [-120.165343, 51.246158], [-120.16639, 51.246857], [-120.168221, 51.248287], [-120.16906, 51.249118], [-120.169456, 51.249657], [-120.170706, 51.251001], [-120.172397, 51.252634], [-120.173034, 51.253711], [-120.173098, 51.254063], [-120.171822, 51.256865], [-120.171491, 51.257352], [-120.171258, 51.257643], [-120.169707, 51.258865], [-120.166081, 51.261169], [-120.165877, 51.261246], [-120.165074, 51.261253], [-120.164323, 51.261352], [-120.162588, 51.261823], [-120.161879, 51.262121], [-120.15956, 51.263702], [-120.157902, 51.265244], [-120.15754, 51.265784], [-120.15725, 51.266504], [-120.156776, 51.270497], [-120.156474, 51.270957], [-120.156336, 51.27134], [-120.156297, 51.272211], [-120.156035, 51.272493], [-120.155429, 51.272792], [-120.155365, 51.274275], [-120.155227, 51.27492], [-120.154927, 51.275362], [-120.154348, 51.275914], [-120.154184, 51.276243], [-120.154179, 51.276541], [-120.154278, 51.276813], [-120.154948, 51.277791], [-120.155342, 51.277908], [-120.15574, 51.278206], [-120.156183, 51.278236], [-120.156406, 51.27833], [-120.156957, 51.278928], [-120.158087, 51.279909], [-120.158477, 51.280566], [-120.158837, 51.280997], [-120.160455, 51.281981], [-120.160819, 51.28235], [-120.161961, 51.283142], [-120.162792, 51.283621], [-120.164886, 51.285256], [-120.166587, 51.286285], [-120.167324, 51.286871], [-120.16804, 51.287607], [-120.168405, 51.288201], [-120.168652, 51.288845], [-120.170282, 51.291025], [-120.170607, 51.291563], [-120.170742, 51.291962], [-120.170654, 51.292905], [-120.170396, 51.293141], [-120.169929, 51.293284], [-120.168524, 51.293483], [-120.166598, 51.293536], [-120.165831, 51.293661], [-120.165055, 51.293668], [-120.164822, 51.293744], [-120.164801, 51.293842], [-120.164594, 51.293936], [-120.16395, 51.29393], [-120.163467, 51.294071], [-120.16275, 51.294071], [-120.162169, 51.294174], [-120.160207, 51.294846], [-120.159762, 51.295051], [-120.159195, 51.295416], [-120.158607, 51.296121], [-120.158181, 51.296497], [-120.157761, 51.296785], [-120.15701, 51.297098], [-120.156624, 51.297323], [-120.156253, 51.297746], [-120.155923, 51.298439], [-120.155811, 51.299345], [-120.15554, 51.300003], [-120.154702, 51.301269], [-120.154154, 51.303389], [-120.153754, 51.304512], [-120.15368, 51.305247], [-120.153239, 51.306127], [-120.153154, 51.308869], [-120.153427, 51.309568], [-120.153434, 51.310161], [-120.153129, 51.311602], [-120.153107, 51.31243], [-120.15318, 51.312637], [-120.154058, 51.313513], [-120.154914, 51.314056], [-120.156124, 51.314445], [-120.157802, 51.315161], [-120.163638, 51.318297], [-120.16431, 51.318799], [-120.164892, 51.319119], [-120.165934, 51.319899], [-120.166973, 51.320536], [-120.168971, 51.322096], [-120.169288, 51.322563], [-120.169802, 51.32377], [-120.169966, 51.324387], [-120.170565, 51.32585], [-120.170818, 51.32707], [-120.170925, 51.328151], [-120.17089, 51.330561], [-120.170416, 51.331269], [-120.169913, 51.33177], [-120.168741, 51.332605], [-120.167693, 51.333083], [-120.166741, 51.333384], [-120.165702, 51.333458], [-120.164028, 51.333373], [-120.163275, 51.333704], [-120.163074, 51.333925], [-120.162008, 51.333971], [-120.161152, 51.33413], [-120.159578, 51.334721], [-120.159043, 51.33505], [-120.158537, 51.335533], [-120.157777, 51.335982], [-120.156822, 51.336355], [-120.156403, 51.336605], [-120.156425, 51.337172], [-120.157197, 51.337937], [-120.157288, 51.338102], [-120.157202, 51.338333], [-120.156572, 51.338759], [-120.156508, 51.338866], [-120.156537, 51.339074], [-120.156819, 51.339394], [-120.157488, 51.339734], [-120.158435, 51.339749], [-120.158776, 51.33982], [-120.159581, 51.339561], [-120.16071, 51.339642]], [[-120.119105, 51.147166], [-120.118911, 51.147905], [-120.119323, 51.148802], [-120.121119, 51.150958], [-120.123041, 51.151776], [-120.128007, 51.153028], [-120.129388, 51.153609], [-120.130147, 51.154116], [-120.131486, 51.155902], [-120.132376, 51.15888], [-120.132615, 51.160559], [-120.132426, 51.1616], [-120.13206, 51.161955], [-120.130511, 51.16409], [-120.129866, 51.165333], [-120.129916, 51.166746], [-120.130277, 51.167376], [-120.132073, 51.169155], [-120.139304, 51.173327], [-120.141894, 51.174697], [-120.144097, 51.175577], [-120.149139, 51.178336], [-120.150715, 51.179888], [-120.151588, 51.182097], [-120.15199, 51.184258], [-120.151448, 51.186205], [-120.15082, 51.18779], [-120.146182, 51.190382], [-120.141145, 51.195127], [-120.140618, 51.19619], [-120.14061, 51.197393], [-120.141352, 51.19877], [-120.142315, 51.199888], [-120.14265, 51.200168], [-120.14074, 51.200279], [-120.135737, 51.199709], [-120.13639, 51.20012], [-120.133127, 51.199775], [-120.132688, 51.199095], [-120.116346, 51.197687], [-120.116435, 51.199041], [-120.11626, 51.204603], [-120.114967, 51.204345], [-120.112378, 51.204292], [-120.110536, 51.204539], [-120.110241, 51.206328], [-120.105697, 51.206854], [-120.105305, 51.205613], [-120.106528, 51.205537], [-120.106131, 51.202004], [-120.096266, 51.202575], [-120.096734, 51.202273], [-120.097096, 51.201828], [-120.097591, 51.200581], [-120.097858, 51.200381], [-120.098363, 51.200252], [-120.100051, 51.200163], [-120.100583, 51.20023], [-120.101414, 51.200464], [-120.106652, 51.200581], [-120.106403, 51.18846], [-120.107962, 51.177496], [-120.108216, 51.170401], [-120.116749, 51.170334], [-120.117331, 51.159496], [-120.114634, 51.159265], [-120.115921, 51.140767], [-120.11611, 51.14021], [-120.114511, 51.138599], [-120.115065, 51.138837], [-120.116202, 51.13891], [-120.117436, 51.138841], [-120.117992, 51.138872], [-120.118704, 51.138685], [-120.11967, 51.138582], [-120.122263, 51.1387], [-120.123536, 51.138461], [-120.124738, 51.138005], [-120.125299, 51.13773], [-120.126324, 51.137568], [-120.128598, 51.137542], [-120.129083, 51.138011], [-120.128985, 51.139741], [-120.127514, 51.14396], [-120.126737, 51.144589], [-120.123513, 51.145176], [-120.119105, 51.147166]], [[-120.126285, 51.134724], [-120.125883, 51.134768], [-120.125161, 51.13511], [-120.124635, 51.135261], [-120.124397, 51.134125], [-120.124978, 51.133261], [-120.127818, 51.133976], [-120.127149, 51.135078], [-120.126285, 51.134724]], [[-119.78611, 51.080144], [-119.774842, 51.080525], [-119.773722, 51.080524], [-119.773411, 51.076856], [-119.774926, 51.076668], [-119.776164, 51.075854], [-119.776791, 51.075849], [-119.777395, 51.075934], [-119.778358, 51.076289], [-119.778933, 51.076581], [-119.779306, 51.076589], [-119.779625, 51.076915], [-119.780096, 51.077156], [-119.781018, 51.077287], [-119.782061, 51.077793], [-119.782788, 51.077776], [-119.783092, 51.07784], [-119.78496, 51.078496], [-119.785334, 51.078785], [-119.785583, 51.078878], [-119.785742, 51.078919], [-119.785951, 51.078834], [-119.78611, 51.080144]]]]}, "properties": {"name": "Thompson-Nicola O (Lower North Thompson)", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Thompson-Nicola O (Lower North Thompson)", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933072", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.14074, 51.200279], [-120.14265, 51.200168], [-120.142315, 51.199888], [-120.141352, 51.19877], [-120.14061, 51.197393], [-120.140618, 51.19619], [-120.141145, 51.195127], [-120.146182, 51.190382], [-120.15082, 51.18779], [-120.151448, 51.186205], [-120.15199, 51.184258], [-120.151588, 51.182097], [-120.150715, 51.179888], [-120.149139, 51.178336], [-120.144097, 51.175577], [-120.141894, 51.174697], [-120.139304, 51.173327], [-120.132073, 51.169155], [-120.130277, 51.167376], [-120.129916, 51.166746], [-120.129866, 51.165333], [-120.130511, 51.16409], [-120.13206, 51.161955], [-120.132426, 51.1616], [-120.132615, 51.160559], [-120.132376, 51.15888], [-120.131486, 51.155902], [-120.130147, 51.154116], [-120.129388, 51.153609], [-120.128007, 51.153028], [-120.123041, 51.151776], [-120.121119, 51.150958], [-120.119323, 51.148802], [-120.118911, 51.147905], [-120.119105, 51.147166], [-120.123513, 51.145176], [-120.126737, 51.144589], [-120.127514, 51.14396], [-120.128985, 51.139741], [-120.129083, 51.138011], [-120.128598, 51.137542], [-120.126596, 51.137557], [-120.125299, 51.13773], [-120.124738, 51.138005], [-120.123536, 51.138461], [-120.122263, 51.1387], [-120.11967, 51.138582], [-120.118704, 51.138685], [-120.117992, 51.138872], [-120.117436, 51.138841], [-120.116202, 51.13891], [-120.115065, 51.138837], [-120.114511, 51.138599], [-120.11611, 51.14021], [-120.115921, 51.140767], [-120.114634, 51.159265], [-120.117331, 51.159496], [-120.116749, 51.170334], [-120.108216, 51.170401], [-120.107962, 51.177496], [-120.106403, 51.18846], [-120.106652, 51.200581], [-120.101414, 51.200464], [-120.100583, 51.20023], [-120.100051, 51.200163], [-120.098363, 51.200252], [-120.097858, 51.200381], [-120.097591, 51.200581], [-120.097096, 51.201828], [-120.096734, 51.202273], [-120.096266, 51.202575], [-120.106131, 51.202004], [-120.106528, 51.205537], [-120.105305, 51.205613], [-120.105697, 51.206854], [-120.110241, 51.206328], [-120.110536, 51.204539], [-120.112378, 51.204292], [-120.114967, 51.204345], [-120.11626, 51.204603], [-120.116435, 51.199041], [-120.116346, 51.197687], [-120.132688, 51.199095], [-120.133127, 51.199775], [-120.13639, 51.20012], [-120.135737, 51.199709], [-120.14074, 51.200279]]]]}, "properties": {"name": "Barriere", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Barriere", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933074", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.838522, 50.055379], [-120.853933, 50.055646], [-120.854282, 50.050237], [-120.856501, 50.050182], [-120.86795, 50.050109], [-120.868344, 50.039421], [-120.890531, 50.03966], [-120.890982, 50.032174], [-120.902402, 50.032216], [-120.902369, 50.014371], [-120.883155, 50.013979], [-120.882782, 50.010486], [-120.870328, 50.011064], [-120.870733, 50.018499], [-120.854827, 50.018976], [-120.854619, 50.023792], [-120.847682, 50.023472], [-120.832355, 50.022485], [-120.832299, 50.024374], [-120.831377, 50.033315], [-120.815625, 50.033239], [-120.814485, 50.033171], [-120.81439, 50.034405], [-120.814544, 50.05521], [-120.818567, 50.055347], [-120.838522, 50.055379]]]]}, "properties": {"name": "Coldwater 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Coldwater 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933801", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.244579, 50.242738], [-120.279181, 50.242727], [-120.293238, 50.243719], [-120.300284, 50.24332], [-120.299636, 50.230055], [-120.305623, 50.211818], [-120.332939, 50.21103], [-120.333673, 50.211048], [-120.331838, 50.189456], [-120.341231, 50.189667], [-120.33756, 50.157045], [-120.336576, 50.149288], [-120.336474, 50.136422], [-120.321855, 50.13638], [-120.321927, 50.127552], [-120.310407, 50.127796], [-120.310168, 50.107291], [-120.310229, 50.099226], [-120.254291, 50.098496], [-120.224202, 50.098605], [-120.224096, 50.130454], [-120.221707, 50.147315], [-120.222503, 50.146679], [-120.222831, 50.14656], [-120.222909, 50.146167], [-120.223139, 50.146082], [-120.223527, 50.145696], [-120.223769, 50.145593], [-120.224263, 50.145533], [-120.224678, 50.145129], [-120.225109, 50.144942], [-120.225782, 50.144931], [-120.226037, 50.144874], [-120.226415, 50.144622], [-120.226491, 50.144273], [-120.226741, 50.144081], [-120.227658, 50.143977], [-120.22851, 50.143763], [-120.228688, 50.143813], [-120.228996, 50.144064], [-120.229175, 50.144095], [-120.229973, 50.143871], [-120.230211, 50.143867], [-120.230374, 50.143943], [-120.230768, 50.144403], [-120.231303, 50.144847], [-120.231592, 50.14489], [-120.232192, 50.145183], [-120.232454, 50.145253], [-120.233835, 50.14534], [-120.23419, 50.145267], [-120.234822, 50.144977], [-120.235433, 50.14482], [-120.236078, 50.144574], [-120.236463, 50.144196], [-120.236957, 50.144136], [-120.237051, 50.143941], [-120.236855, 50.14371], [-120.236901, 50.143658], [-120.239344, 50.143743], [-120.240429, 50.143391], [-120.24105, 50.14283], [-120.24169, 50.142621], [-120.243453, 50.142906], [-120.244698, 50.14289], [-120.245082, 50.142817], [-120.245391, 50.142528], [-120.245871, 50.142216], [-120.246167, 50.142205], [-120.246428, 50.142283], [-120.246611, 50.142242], [-120.246793, 50.142004], [-120.246857, 50.14161], [-120.247263, 50.141376], [-120.247404, 50.141118], [-120.248587, 50.14122], [-120.248953, 50.14121], [-120.249226, 50.14109], [-120.249565, 50.140774], [-120.24961, 50.140245], [-120.249717, 50.140094], [-120.250358, 50.139642], [-120.250807, 50.139401], [-120.251191, 50.139284], [-120.252505, 50.139305], [-120.25289, 50.138964], [-120.253585, 50.138539], [-120.254013, 50.13838], [-120.254923, 50.138166], [-120.255309, 50.138005], [-120.256937, 50.136468], [-120.257349, 50.136334], [-120.258621, 50.135664], [-120.259245, 50.135526], [-120.259747, 50.135528], [-120.260037, 50.135607], [-120.260976, 50.13607], [-120.26271, 50.137811], [-120.262794, 50.137813], [-120.263043, 50.137629], [-120.263287, 50.137257], [-120.263567, 50.137004], [-120.264591, 50.136983], [-120.265458, 50.137265], [-120.26608, 50.137404], [-120.266973, 50.137444], [-120.26744, 50.137337], [-120.267678, 50.137091], [-120.26789, 50.137042], [-120.268926, 50.137022], [-120.269553, 50.136839], [-120.269903, 50.136856], [-120.270392, 50.137361], [-120.270677, 50.137989], [-120.270776, 50.138981], [-120.270673, 50.139788], [-120.270809, 50.139872], [-120.271357, 50.139822], [-120.271761, 50.140354], [-120.27183, 50.140626], [-120.271562, 50.140906], [-120.271569, 50.141033], [-120.27197, 50.141339], [-120.272451, 50.141242], [-120.272619, 50.141255], [-120.273267, 50.141927], [-120.273655, 50.142234], [-120.274742, 50.142574], [-120.275077, 50.142581], [-120.275357, 50.142355], [-120.275805, 50.142356], [-120.275869, 50.142195], [-120.275822, 50.141789], [-120.275962, 50.141577], [-120.276434, 50.14138], [-120.277257, 50.141167], [-120.277673, 50.140979], [-120.278527, 50.140728], [-120.279017, 50.140272], [-120.279277, 50.140126], [-120.279974, 50.139908], [-120.280592, 50.139878], [-120.280875, 50.139802], [-120.281235, 50.139902], [-120.281478, 50.139808], [-120.281828, 50.139546], [-120.282315, 50.139378], [-120.282888, 50.139382], [-120.283172, 50.13955], [-120.283051, 50.13971], [-120.282385, 50.139829], [-120.281684, 50.14011], [-120.281544, 50.140368], [-120.281542, 50.141133], [-120.281105, 50.141715], [-120.280405, 50.14241], [-120.278209, 50.14387], [-120.276924, 50.144568], [-120.276208, 50.144866], [-120.27564, 50.14523], [-120.275146, 50.145327], [-120.272927, 50.145212], [-120.272273, 50.145385], [-120.271737, 50.145462], [-120.271166, 50.145395], [-120.270726, 50.145241], [-120.269676, 50.145261], [-120.268365, 50.145159], [-120.267414, 50.145145], [-120.26661, 50.145253], [-120.265477, 50.145505], [-120.264991, 50.145673], [-120.263777, 50.146318], [-120.262429, 50.146908], [-120.262095, 50.147124], [-120.261214, 50.147319], [-120.260075, 50.147167], [-120.25864, 50.147808], [-120.254933, 50.148701], [-120.25328, 50.149228], [-120.252874, 50.149461], [-120.252576, 50.149535], [-120.251926, 50.150149], [-120.25133, 50.150504], [-120.250742, 50.150994], [-120.250219, 50.151566], [-120.249541, 50.152666], [-120.248992, 50.153201], [-120.2478, 50.153956], [-120.247254, 50.154204], [-120.246624, 50.15444], [-120.245817, 50.15462], [-120.244822, 50.154623], [-120.244511, 50.15467], [-120.243051, 50.155238], [-120.241774, 50.155298], [-120.241, 50.155407], [-120.241498, 50.156006], [-120.241091, 50.15741], [-120.244869, 50.213308], [-120.244579, 50.242738]]]]}, "properties": {"name": "Douglas Lake 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Douglas Lake 3", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933802", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.749695, 50.096238], [-120.749601, 50.096659], [-120.74984, 50.097459], [-120.749866, 50.09887], [-120.76322, 50.098622], [-120.762996, 50.098255], [-120.763168, 50.098191], [-120.7634, 50.097945], [-120.763434, 50.097802], [-120.763587, 50.085775], [-120.752367, 50.085712], [-120.752725, 50.091747], [-120.748993, 50.091698], [-120.749695, 50.096238]]]]}, "properties": {"name": "Joeyaska 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Joeyaska 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933805", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.463353, 50.237271], [-120.463614, 50.237114], [-120.464154, 50.237009], [-120.465384, 50.236559], [-120.467067, 50.23575], [-120.467664, 50.23535], [-120.468941, 50.234801], [-120.469731, 50.234702], [-120.469954, 50.234464], [-120.470345, 50.234247], [-120.47051, 50.233775], [-120.470755, 50.233393], [-120.470892, 50.232893], [-120.471411, 50.232382], [-120.471532, 50.231953], [-120.471827, 50.231654], [-120.472041, 50.230785], [-120.472295, 50.230522], [-120.473071, 50.230178], [-120.473193, 50.229983], [-120.473135, 50.229226], [-120.473229, 50.229048], [-120.474222, 50.228306], [-120.474537, 50.22788], [-120.475031, 50.227576], [-120.475253, 50.227095], [-120.47513, 50.225716], [-120.474932, 50.225208], [-120.474508, 50.224749], [-120.474381, 50.224486], [-120.473874, 50.224007], [-120.473683, 50.223624], [-120.473491, 50.222991], [-120.473414, 50.22208], [-120.473692, 50.221062], [-120.473891, 50.220742], [-120.474291, 50.220346], [-120.474497, 50.21991], [-120.474853, 50.219521], [-120.475009, 50.219219], [-120.476555, 50.218101], [-120.476786, 50.217701], [-120.477559, 50.216855], [-120.478915, 50.215868], [-120.479917, 50.214937], [-120.480345, 50.214828], [-120.481046, 50.214817], [-120.481625, 50.214991], [-120.481744, 50.215119], [-120.481866, 50.215464], [-120.481852, 50.215751], [-120.481578, 50.215862], [-120.48144, 50.215859], [-120.481359, 50.216065], [-120.481885, 50.216697], [-120.481915, 50.216959], [-120.481819, 50.21719], [-120.481882, 50.21757], [-120.482092, 50.217583], [-120.482127, 50.21717], [-120.48253, 50.216728], [-120.482792, 50.215979], [-120.482973, 50.215748], [-120.482912, 50.214767], [-120.483103, 50.213277], [-120.483355, 50.21278], [-120.483136, 50.210257], [-120.483042, 50.209643], [-120.482715, 50.208681], [-120.482254, 50.208105], [-120.482029, 50.2073], [-120.48212, 50.206915], [-120.482415, 50.206894], [-120.482521, 50.20677], [-120.48228, 50.206549], [-120.482261, 50.206387], [-120.482549, 50.205953], [-120.482545, 50.205773], [-120.482267, 50.205451], [-120.482061, 50.204872], [-120.481877, 50.204607], [-120.48114, 50.204249], [-120.481166, 50.203997], [-120.481296, 50.203947], [-120.481286, 50.203883], [-120.480518, 50.203291], [-120.480414, 50.203109], [-120.480348, 50.202244], [-120.480003, 50.201337], [-120.479111, 50.200481], [-120.477901, 50.199484], [-120.477427, 50.199176], [-120.476906, 50.198706], [-120.476404, 50.19812], [-120.47622, 50.197638], [-120.476272, 50.196362], [-120.475938, 50.19551], [-120.475312, 50.19465], [-120.474045, 50.193427], [-120.473719, 50.192961], [-120.473636, 50.192671], [-120.473638, 50.192105], [-120.473767, 50.191775], [-120.474285, 50.191246], [-120.475424, 50.19065], [-120.477494, 50.189903], [-120.478428, 50.189213], [-120.478893, 50.188639], [-120.479231, 50.188079], [-120.480072, 50.186475], [-120.476492, 50.186236], [-120.424685, 50.185324], [-120.424722, 50.190442], [-120.424383, 50.192727], [-120.426075, 50.193166], [-120.452731, 50.192484], [-120.45737, 50.19836], [-120.463232, 50.206864], [-120.459136, 50.206979], [-120.458646, 50.214376], [-120.447267, 50.214586], [-120.446991, 50.23689], [-120.463681, 50.236959], [-120.462616, 50.237471], [-120.463353, 50.237271]]]]}, "properties": {"name": "Nicola Lake 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nicola Lake 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933806", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.839596, 50.243716], [-120.850931, 50.243428], [-120.850666, 50.239558], [-120.861976, 50.239188], [-120.861634, 50.236061], [-120.86574, 50.235943], [-120.865646, 50.225555], [-120.86582, 50.210084], [-120.868418, 50.210137], [-120.868512, 50.192296], [-120.871484, 50.192235], [-120.870062, 50.179239], [-120.869763, 50.178784], [-120.869655, 50.177837], [-120.869823, 50.177052], [-120.870697, 50.177034], [-120.870436, 50.175642], [-120.870501, 50.17067], [-120.869676, 50.160011], [-120.872949, 50.159937], [-120.872695, 50.156411], [-120.869622, 50.156366], [-120.869773, 50.156107], [-120.869821, 50.155641], [-120.870178, 50.155188], [-120.870437, 50.155049], [-120.871638, 50.155107], [-120.871974, 50.155069], [-120.87208, 50.154909], [-120.872184, 50.154154], [-120.872307, 50.153914], [-120.872408, 50.153844], [-120.872857, 50.153807], [-120.873381, 50.153673], [-120.873554, 50.153569], [-120.873574, 50.153434], [-120.873478, 50.153378], [-120.872964, 50.153297], [-120.87291, 50.153241], [-120.872906, 50.152989], [-120.873245, 50.152655], [-120.873675, 50.15241], [-120.874391, 50.152387], [-120.874563, 50.152291], [-120.87473, 50.152006], [-120.87503, 50.151841], [-120.875228, 50.151818], [-120.875758, 50.151885], [-120.876019, 50.149044], [-120.875882, 50.148267], [-120.874173, 50.148272], [-120.865616, 50.148837], [-120.864675, 50.141277], [-120.865134, 50.138315], [-120.864307, 50.137459], [-120.864303, 50.137371], [-120.863539, 50.137401], [-120.861905, 50.136827], [-120.860913, 50.136833], [-120.860297, 50.136763], [-120.859797, 50.136609], [-120.859758, 50.136537], [-120.859852, 50.136203], [-120.860797, 50.134916], [-120.86117, 50.13407], [-120.861418, 50.133376], [-120.861355, 50.132485], [-120.861009, 50.131522], [-120.860426, 50.130863], [-120.85897, 50.130183], [-120.858148, 50.129265], [-120.857416, 50.128799], [-120.858166, 50.127296], [-120.858781, 50.125383], [-120.856557, 50.125006], [-120.8506, 50.123491], [-120.839663, 50.121513], [-120.8357, 50.123172], [-120.829262, 50.126269], [-120.823455, 50.124937], [-120.82668, 50.127629], [-120.823882, 50.129126], [-120.823683, 50.140789], [-120.820243, 50.140853], [-120.820013, 50.148184], [-120.81453, 50.148444], [-120.815113, 50.162177], [-120.815076, 50.175224], [-120.815468, 50.190598], [-120.815511, 50.203807], [-120.816006, 50.218354], [-120.81661, 50.249285], [-120.825246, 50.249126], [-120.825158, 50.243838], [-120.835022, 50.243662], [-120.839596, 50.243716]], [[-120.861303, 50.141989], [-120.861842, 50.147866], [-120.861877, 50.154181], [-120.861845, 50.15486], [-120.86168, 50.155448], [-120.861276, 50.155834], [-120.860038, 50.156538], [-120.848571, 50.156565], [-120.848236, 50.152848], [-120.848307, 50.149742], [-120.848964, 50.148692], [-120.851999, 50.142084], [-120.861303, 50.141989]]]]}, "properties": {"name": "Nicola Mameet 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nicola Mameet 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933807", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.090782, 50.230336], [-121.092043, 50.230031], [-121.094375, 50.230372], [-121.094998, 50.231286], [-121.096402, 50.232499], [-121.097011, 50.232833], [-121.098015, 50.233172], [-121.099815, 50.233571], [-121.101214, 50.234136], [-121.102478, 50.235299], [-121.103631, 50.235758], [-121.104693, 50.236481], [-121.104779, 50.231957], [-121.099466, 50.23161], [-121.099641, 50.226861], [-121.09972, 50.226858], [-121.099573, 50.225612], [-121.097033, 50.225676], [-121.095971, 50.217213], [-121.092982, 50.21723], [-121.09184, 50.20695], [-121.084462, 50.2071], [-121.083951, 50.203688], [-121.080963, 50.203864], [-121.080157, 50.199104], [-121.075058, 50.199324], [-121.074287, 50.198646], [-121.072527, 50.197316], [-121.071622, 50.196828], [-121.071096, 50.196617], [-121.069148, 50.196113], [-121.068873, 50.195309], [-121.067635, 50.195584], [-121.066869, 50.195244], [-121.066134, 50.194754], [-121.065564, 50.1942], [-121.065072, 50.193172], [-121.064747, 50.191718], [-121.064044, 50.190783], [-121.063163, 50.19013], [-121.062847, 50.189576], [-121.062304, 50.187773], [-121.062326, 50.187342], [-121.062741, 50.186484], [-121.062433, 50.185824], [-121.061463, 50.184585], [-121.061268, 50.184184], [-121.06129, 50.183802], [-121.06156, 50.183571], [-121.064, 50.182796], [-121.064327, 50.182557], [-121.064647, 50.182101], [-121.06468, 50.181623], [-121.064489, 50.1811], [-121.064022, 50.18076], [-121.062418, 50.180593], [-121.061018, 50.180591], [-121.061489, 50.176131], [-121.058967, 50.175888], [-121.059644, 50.170097], [-121.074102, 50.169145], [-121.074618, 50.165852], [-121.074731, 50.163584], [-121.060029, 50.163372], [-121.060054, 50.160104], [-121.054872, 50.159757], [-121.05491, 50.15791], [-121.052146, 50.157848], [-121.05205, 50.156057], [-121.04941, 50.156099], [-121.049322, 50.154186], [-121.044466, 50.154179], [-121.044467, 50.1524], [-121.04174, 50.152357], [-121.041765, 50.143432], [-121.031682, 50.143424], [-121.030327, 50.15263], [-121.031029, 50.154401], [-121.031629, 50.155388], [-121.032264, 50.155781], [-121.033003, 50.15654], [-121.033527, 50.156846], [-121.035816, 50.157337], [-121.03661, 50.15742], [-121.037145, 50.15738], [-121.038823, 50.156958], [-121.040164, 50.156709], [-121.041703, 50.156088], [-121.042485, 50.155833], [-121.043229, 50.155805], [-121.043918, 50.155872], [-121.044698, 50.156111], [-121.045802, 50.156678], [-121.047805, 50.158007], [-121.048728, 50.158361], [-121.050551, 50.158673], [-121.050921, 50.158818], [-121.051662, 50.159426], [-121.052064, 50.16033], [-121.050443, 50.161885], [-121.050238, 50.172709], [-121.050228, 50.17798], [-121.055381, 50.17826], [-121.056041, 50.178919], [-121.05632, 50.183515], [-121.053405, 50.183364], [-121.052674, 50.194186], [-121.060981, 50.194492], [-121.060961, 50.196238], [-121.064023, 50.196289], [-121.063824, 50.19978], [-121.070202, 50.200007], [-121.070055, 50.201793], [-121.075007, 50.201936], [-121.075361, 50.202191], [-121.07564, 50.20246], [-121.075472, 50.205428], [-121.077585, 50.20542], [-121.077754, 50.207359], [-121.08053, 50.207396], [-121.080461, 50.214955], [-121.082764, 50.214989], [-121.082507, 50.22524], [-121.09133, 50.225484], [-121.09118, 50.22714], [-121.091375, 50.227965], [-121.090782, 50.230336]]]]}, "properties": {"name": "Nooaitch 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nooaitch 10", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933808", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.949719, 49.987975], [-120.949705, 49.989309], [-120.961517, 49.989433], [-120.961481, 49.990994], [-120.977908, 49.991218], [-120.978312, 49.996586], [-120.980568, 49.996436], [-120.98133, 50.000021], [-120.981614, 50.000774], [-120.981592, 50.001292], [-120.981237, 50.001785], [-120.981142, 50.003788], [-120.984106, 50.004025], [-120.984153, 50.006988], [-120.984333, 50.007515], [-120.98682, 50.007497], [-120.986832, 50.010495], [-120.99529, 50.01054], [-120.994904, 50.009999], [-120.99483, 50.009485], [-120.994826, 50.008516], [-120.994711, 50.00759], [-120.994806, 50.007318], [-120.994665, 50.005436], [-120.994588, 50.000864], [-120.989389, 50.000875], [-120.989283, 49.99337], [-120.984041, 49.993466], [-120.983529, 49.988464], [-120.979149, 49.988407], [-120.978751, 49.981537], [-120.962173, 49.981692], [-120.9621, 49.976691], [-120.961955, 49.974547], [-120.936492, 49.974815], [-120.936304, 49.975059], [-120.935354, 49.975396], [-120.933367, 49.976303], [-120.932941, 49.976638], [-120.932017, 49.977678], [-120.931553, 49.978393], [-120.93149, 49.97873], [-120.93159, 49.979018], [-120.932205, 49.979777], [-120.933376, 49.980553], [-120.933456, 49.980995], [-120.933114, 49.981482], [-120.932672, 49.981704], [-120.931521, 49.981774], [-120.931223, 49.981886], [-120.930977, 49.98214], [-120.930865, 49.982561], [-120.930607, 49.982986], [-120.928746, 49.983205], [-120.928413, 49.983315], [-120.928214, 49.983493], [-120.928041, 49.983886], [-120.927473, 49.984427], [-120.92624, 49.984978], [-120.925983, 49.985212], [-120.925818, 49.985612], [-120.925935, 49.986963], [-120.925734, 49.987206], [-120.925326, 49.987386], [-120.925572, 49.987968], [-120.92666, 49.988475], [-120.926821, 49.988902], [-120.926254, 49.989295], [-120.925456, 49.989494], [-120.929657, 49.990079], [-120.93022, 49.988211], [-120.949719, 49.987975]]]]}, "properties": {"name": "Paul's Basin 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Paul's Basin 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933809", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.341927, 50.44912], [-121.345009, 50.449206], [-121.344997, 50.445252], [-121.342073, 50.44513], [-121.341927, 50.44912]]], [[[-121.333938, 50.463105], [-121.33964, 50.463408], [-121.339761, 50.46163], [-121.334021, 50.461295], [-121.333938, 50.463105]]]]}, "properties": {"name": "Chuchhraischin", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Chuchhraischin", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933810", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.674951, 50.193647], [-120.675011, 50.192598], [-120.6749, 50.192171], [-120.6744, 50.177885], [-120.673887, 50.172048], [-120.674146, 50.171123], [-120.662977, 50.171165], [-120.663223, 50.193773], [-120.674951, 50.193647]]]]}, "properties": {"name": "Zoht 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Zoht 4", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933811", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.379984, 50.852137], [-121.379707, 50.846926], [-121.383363, 50.845345], [-121.383337, 50.845176], [-121.386599, 50.844171], [-121.388649, 50.843266], [-121.389481, 50.843457], [-121.389621, 50.845234], [-121.396062, 50.845197], [-121.395919, 50.837885], [-121.402089, 50.837967], [-121.402217, 50.830273], [-121.379105, 50.830195], [-121.367099, 50.83059], [-121.362043, 50.828911], [-121.361118, 50.829981], [-121.355623, 50.834752], [-121.350452, 50.832232], [-121.350002, 50.847333], [-121.350099, 50.850594], [-121.35001, 50.851714], [-121.379984, 50.852137]]]]}, "properties": {"name": "Bonaparte 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Bonaparte 3", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933812", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.614938, 50.299299], [-121.629854, 50.299248], [-121.629914, 50.300189], [-121.640234, 50.300254], [-121.640045, 50.299727], [-121.639539, 50.299253], [-121.639378, 50.299008], [-121.639286, 50.298306], [-121.639361, 50.297596], [-121.639541, 50.297256], [-121.639878, 50.295768], [-121.640071, 50.2954], [-121.639833, 50.294417], [-121.639646, 50.294029], [-121.639084, 50.293573], [-121.638597, 50.293432], [-121.63564, 50.293244], [-121.633779, 50.29297], [-121.633326, 50.293127], [-121.63289, 50.293148], [-121.632401, 50.29308], [-121.632225, 50.292889], [-121.631985, 50.292895], [-121.631612, 50.292738], [-121.631251, 50.292555], [-121.630263, 50.29176], [-121.630184, 50.291615], [-121.63018, 50.291202], [-121.630071, 50.291065], [-121.629796, 50.290927], [-121.629664, 50.290629], [-121.629458, 50.290437], [-121.629495, 50.290151], [-121.628899, 50.289908], [-121.628722, 50.289673], [-121.628376, 50.289542], [-121.628064, 50.289189], [-121.627152, 50.288665], [-121.626717, 50.288615], [-121.625956, 50.288255], [-121.625461, 50.287907], [-121.625107, 50.287507], [-121.624271, 50.286832], [-121.623871, 50.28557], [-121.62193, 50.28545], [-121.622555, 50.292228], [-121.620315, 50.292413], [-121.614415, 50.29236], [-121.614938, 50.299299]]]]}, "properties": {"name": "Halhalaeden", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Halhalaeden", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933813", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.150821, 51.467836], [-122.147749, 51.472065], [-122.160472, 51.47218], [-122.158615, 51.469742], [-122.158876, 51.46934], [-122.159268, 51.467429], [-122.158791, 51.467065], [-122.15506, 51.466406], [-122.150821, 51.467836]]]]}, "properties": {"name": "Canoe Creek 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Canoe Creek 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933814", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.008528, 50.885066], [-121.009145, 50.885265], [-121.009787, 50.885554], [-121.010787, 50.886102], [-121.011758, 50.88701], [-121.012475, 50.887894], [-121.013731, 50.889785], [-121.013913, 50.890157], [-121.014019, 50.890698], [-121.014545, 50.891697], [-121.014591, 50.89195], [-121.014546, 50.892326], [-121.01396, 50.892758], [-121.013919, 50.893063], [-121.013748, 50.893414], [-121.016855, 50.892917], [-121.02181, 50.89023], [-121.023697, 50.889321], [-121.025824, 50.88639], [-121.032063, 50.87979], [-121.031007, 50.878024], [-121.032342, 50.8773], [-121.032655, 50.877228], [-121.033395, 50.877211], [-121.035049, 50.876759], [-121.03695, 50.876492], [-121.039052, 50.875367], [-121.027488, 50.858038], [-121.014433, 50.837547], [-120.992702, 50.805391], [-120.991889, 50.805787], [-120.991447, 50.805851], [-120.991137, 50.805783], [-120.990751, 50.805489], [-120.990253, 50.805525], [-120.989827, 50.805203], [-120.989247, 50.805166], [-120.98884, 50.805051], [-120.987127, 50.804941], [-120.986528, 50.804679], [-120.985533, 50.803716], [-120.984925, 50.803014], [-120.984507, 50.802836], [-120.983649, 50.802686], [-120.983434, 50.802359], [-120.983109, 50.801013], [-120.982923, 50.800712], [-120.982382, 50.800757], [-120.981836, 50.800577], [-120.981574, 50.800402], [-120.981455, 50.800237], [-120.981423, 50.800003], [-120.981122, 50.799718], [-120.980632, 50.799585], [-120.980218, 50.799281], [-120.979357, 50.799167], [-120.979146, 50.799119], [-120.979064, 50.799026], [-120.979306, 50.798051], [-120.978959, 50.797874], [-120.978533, 50.797867], [-120.978224, 50.797484], [-120.978252, 50.797169], [-120.978163, 50.796924], [-120.977204, 50.796144], [-120.976869, 50.795652], [-120.976568, 50.795377], [-120.976523, 50.795142], [-120.976324, 50.794815], [-120.97617, 50.794749], [-120.975776, 50.794707], [-120.975746, 50.794059], [-120.975561, 50.793777], [-120.975569, 50.793552], [-120.975465, 50.793352], [-120.975105, 50.793149], [-120.974018, 50.793012], [-120.973479, 50.79267], [-120.973222, 50.79272], [-120.97265, 50.792449], [-120.972326, 50.792102], [-120.971894, 50.791897], [-120.971635, 50.791684], [-120.971573, 50.791476], [-120.971395, 50.791303], [-120.970936, 50.791115], [-120.970866, 50.790772], [-120.970138, 50.790517], [-120.970202, 50.790347], [-120.970426, 50.790135], [-120.970429, 50.790035], [-120.970136, 50.789581], [-120.970253, 50.789151], [-120.969888, 50.788749], [-120.969458, 50.788526], [-120.96894, 50.788365], [-120.967764, 50.788326], [-120.967628, 50.788198], [-120.96762, 50.788036], [-120.967154, 50.788036], [-120.966676, 50.78791], [-120.966459, 50.787674], [-120.966011, 50.787549], [-120.965859, 50.78742], [-120.965957, 50.787161], [-120.965847, 50.786718], [-120.965645, 50.786526], [-120.965284, 50.786331], [-120.964807, 50.78617], [-120.964481, 50.786173], [-120.964448, 50.785956], [-120.964123, 50.785905], [-120.964156, 50.785817], [-120.964387, 50.785713], [-120.964368, 50.785532], [-120.963989, 50.785391], [-120.963807, 50.785055], [-120.963441, 50.784958], [-120.963465, 50.784428], [-120.963303, 50.784236], [-120.96341, 50.784058], [-120.963329, 50.783977], [-120.96303, 50.783979], [-120.962792, 50.783895], [-120.96279, 50.783633], [-120.962669, 50.783461], [-120.962304, 50.78341], [-120.962384, 50.783178], [-120.961828, 50.782934], [-120.96172, 50.782797], [-120.961356, 50.782673], [-120.960653, 50.782554], [-120.960075, 50.782102], [-120.959383, 50.782037], [-120.959044, 50.781715], [-120.958214, 50.781215], [-120.958083, 50.780979], [-120.958002, 50.780529], [-120.95761, 50.780071], [-120.957132, 50.779982], [-120.956621, 50.779658], [-120.955806, 50.7795], [-120.955682, 50.779408], [-120.955204, 50.779282], [-120.954989, 50.779019], [-120.954817, 50.779052], [-120.954487, 50.778811], [-120.953825, 50.77871], [-120.953412, 50.778469], [-120.953235, 50.778295], [-120.95316, 50.778023], [-120.953121, 50.777313], [-120.952673, 50.776504], [-120.952564, 50.776413], [-120.951559, 50.776054], [-120.951269, 50.775842], [-120.95111, 50.775614], [-120.950786, 50.775535], [-120.950897, 50.774944], [-120.95099, 50.77481], [-120.951392, 50.774657], [-120.951313, 50.774511], [-120.951092, 50.774363], [-120.951183, 50.77396], [-120.952489, 50.772624], [-120.952637, 50.772141], [-120.952814, 50.772019], [-120.953254, 50.772018], [-120.95334, 50.771965], [-120.953541, 50.77159], [-120.954409, 50.771365], [-120.954777, 50.770924], [-120.955027, 50.770245], [-120.955319, 50.769976], [-120.955628, 50.769904], [-120.956538, 50.770047], [-120.95682, 50.769994], [-120.956994, 50.769859], [-120.957306, 50.769353], [-120.957356, 50.768912], [-120.957071, 50.766751], [-120.95685, 50.76627], [-120.956852, 50.765911], [-120.956998, 50.765491], [-120.956816, 50.76511], [-120.956861, 50.764733], [-120.957201, 50.764397], [-120.958189, 50.763866], [-120.958577, 50.763349], [-120.957533, 50.763287], [-120.957067, 50.763595], [-120.956296, 50.763697], [-120.955312, 50.764139], [-120.954247, 50.764498], [-120.953818, 50.764589], [-120.951826, 50.764717], [-120.950595, 50.764677], [-120.94972, 50.764589], [-120.948551, 50.764379], [-120.947288, 50.76407], [-120.945991, 50.763579], [-120.945134, 50.763079], [-120.944435, 50.762545], [-120.944058, 50.762071], [-120.943619, 50.76172], [-120.943432, 50.761474], [-120.943116, 50.761262], [-120.944158, 50.759379], [-120.944959, 50.757608], [-120.944179, 50.755709], [-120.944735, 50.753597], [-120.945388, 50.751532], [-120.945224, 50.749896], [-120.943611, 50.748634], [-120.94137, 50.747845], [-120.939314, 50.747967], [-120.937001, 50.748458], [-120.936226, 50.750048], [-120.938496, 50.753555], [-120.938561, 50.754448], [-120.937888, 50.756594], [-120.937559, 50.757998], [-120.937376, 50.757976], [-120.936833, 50.758066], [-120.936497, 50.758294], [-120.936316, 50.758166], [-120.93363, 50.757048], [-120.932771, 50.756582], [-120.932283, 50.75643], [-120.931218, 50.755817], [-120.930575, 50.755562], [-120.929207, 50.754802], [-120.926686, 50.753137], [-120.925029, 50.751453], [-120.924439, 50.75101], [-120.924305, 50.750828], [-120.924317, 50.75055], [-120.924176, 50.75025], [-120.923887, 50.750029], [-120.923878, 50.749625], [-120.923439, 50.749274], [-120.923673, 50.748163], [-120.923679, 50.74739], [-120.923237, 50.746781], [-120.923185, 50.746375], [-120.922524, 50.745895], [-120.922107, 50.745744], [-120.921501, 50.745328], [-120.920408, 50.744724], [-120.919709, 50.744523], [-120.91889, 50.744418], [-120.918721, 50.744442], [-120.918512, 50.744321], [-120.918088, 50.744278], [-120.917869, 50.744149], [-120.917594, 50.744243], [-120.917314, 50.744174], [-120.915872, 50.744094], [-120.91389, 50.744365], [-120.913239, 50.744327], [-120.9131, 50.744288], [-120.912828, 50.744022], [-120.912246, 50.744029], [-120.911205, 50.74384], [-120.910158, 50.743506], [-120.909633, 50.743479], [-120.908814, 50.743122], [-120.9071, 50.742741], [-120.906296, 50.742673], [-120.904327, 50.742673], [-120.902869, 50.742881], [-120.901796, 50.743149], [-120.901597, 50.743127], [-120.901223, 50.743264], [-120.900436, 50.743422], [-120.900082, 50.743424], [-120.899551, 50.743586], [-120.898893, 50.743673], [-120.89786, 50.743681], [-120.897309, 50.743607], [-120.896727, 50.743652], [-120.8954, 50.743529], [-120.895531, 50.743451], [-120.895973, 50.743368], [-120.896048, 50.743297], [-120.895925, 50.743214], [-120.895484, 50.743206], [-120.894822, 50.743419], [-120.894041, 50.743765], [-120.893232, 50.743822], [-120.89251, 50.744124], [-120.892296, 50.744156], [-120.89196, 50.744384], [-120.891355, 50.744589], [-120.891086, 50.744547], [-120.890166, 50.744882], [-120.889583, 50.744925], [-120.889362, 50.745093], [-120.889161, 50.745151], [-120.886161, 50.745664], [-120.885155, 50.745952], [-120.883982, 50.746506], [-120.883146, 50.747129], [-120.881197, 50.747921], [-120.880956, 50.747926], [-120.880668, 50.74802], [-120.879853, 50.748454], [-120.879483, 50.74879], [-120.87883, 50.749183], [-120.887979, 50.764828], [-120.89683, 50.779744], [-120.898465, 50.782768], [-120.92274, 50.825511], [-120.951464, 50.875429], [-120.962591, 50.873079], [-120.962504, 50.87448], [-120.9631, 50.876042], [-120.966659, 50.875259], [-120.966068, 50.875078], [-120.965679, 50.874891], [-120.964651, 50.874649], [-120.96402, 50.874125], [-120.963655, 50.873715], [-120.963847, 50.872617], [-120.969962, 50.871423], [-120.970288, 50.872323], [-120.971146, 50.877056], [-120.971571, 50.877638], [-120.972077, 50.878105], [-120.9721, 50.878259], [-120.971958, 50.878554], [-120.972259, 50.878819], [-120.972531, 50.879436], [-120.972791, 50.879646], [-120.973212, 50.879834], [-120.974039, 50.880065], [-120.974338, 50.880042], [-120.975245, 50.87978], [-120.976002, 50.879703], [-120.977404, 50.880491], [-120.97774, 50.88092], [-120.977925, 50.881616], [-120.978074, 50.88179], [-120.978613, 50.882113], [-120.9792, 50.882358], [-120.979731, 50.882231], [-120.980576, 50.882418], [-120.980894, 50.882305], [-120.981365, 50.882278], [-120.981471, 50.882424], [-120.981681, 50.882526], [-120.984485, 50.882754], [-120.986076, 50.882827], [-120.986626, 50.882926], [-120.987839, 50.883469], [-120.988364, 50.883505], [-120.988827, 50.883315], [-120.989614, 50.882861], [-120.989858, 50.882506], [-120.990705, 50.882304], [-120.990946, 50.881966], [-120.991107, 50.881871], [-120.99148, 50.881796], [-120.99316, 50.881699], [-120.99552, 50.881722], [-120.997985, 50.881583], [-120.996174, 50.882266], [-120.99659, 50.882396], [-120.996886, 50.882562], [-120.997437, 50.883052], [-120.998114, 50.883446], [-120.999193, 50.883828], [-121.001802, 50.884345], [-121.002331, 50.884268], [-121.002603, 50.884029], [-121.004336, 50.884049], [-121.005859, 50.884318], [-121.006724, 50.884684], [-121.008528, 50.885066]]]]}, "properties": {"name": "Skeetchestn", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Skeetchestn", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933817", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.006937, 51.117073], [-122.013136, 51.116608], [-122.021467, 51.116299], [-122.023685, 51.133062], [-122.031792, 51.132939], [-122.031759, 51.133086], [-122.031304, 51.133643], [-122.030877, 51.133955], [-122.03057, 51.134076], [-122.030325, 51.134359], [-122.030355, 51.135201], [-122.030179, 51.135406], [-122.030419, 51.13577], [-122.030313, 51.135946], [-122.030302, 51.136309], [-122.030036, 51.136605], [-122.030039, 51.136728], [-122.030501, 51.137122], [-122.03102, 51.137131], [-122.031281, 51.137257], [-122.031438, 51.137699], [-122.031438, 51.137991], [-122.031298, 51.138436], [-122.031221, 51.139261], [-122.039692, 51.13982], [-122.040098, 51.139553], [-122.040159, 51.139411], [-122.040089, 51.139311], [-122.039904, 51.139291], [-122.039871, 51.138743], [-122.040368, 51.138234], [-122.041208, 51.136983], [-122.042172, 51.136045], [-122.043787, 51.134655], [-122.045985, 51.133478], [-122.046252, 51.133012], [-122.047685, 51.13207], [-122.048498, 51.131403], [-122.048565, 51.131017], [-122.049727, 51.130028], [-122.050072, 51.129266], [-122.050049, 51.128979], [-122.049872, 51.128654], [-122.050009, 51.128143], [-122.050003, 51.12709], [-122.049599, 51.126637], [-122.049613, 51.126556], [-122.049846, 51.126378], [-122.049994, 51.126065], [-122.049949, 51.125552], [-122.049711, 51.125271], [-122.049958, 51.124401], [-122.049961, 51.123574], [-122.049852, 51.123312], [-122.049014, 51.122316], [-122.048241, 51.121752], [-122.047746, 51.12155], [-122.04702, 51.121365], [-122.046407, 51.121342], [-122.045879, 51.121256], [-122.044207, 51.121261], [-122.043644, 51.120869], [-122.042717, 51.120772], [-122.042305, 51.120607], [-122.040967, 51.120335], [-122.038523, 51.119002], [-122.038141, 51.118845], [-122.037046, 51.117974], [-122.036376, 51.117176], [-122.036202, 51.116582], [-122.03545, 51.115676], [-122.035341, 51.11536], [-122.034844, 51.114528], [-122.034617, 51.113754], [-122.034215, 51.113255], [-122.033537, 51.112136], [-122.033041, 51.110665], [-122.032663, 51.110222], [-122.032282, 51.109967], [-122.031893, 51.109433], [-122.031232, 51.108968], [-122.029792, 51.108211], [-122.029119, 51.108222], [-122.02904, 51.108654], [-122.028695, 51.108741], [-122.027825, 51.108644], [-122.027155, 51.108453], [-122.02708, 51.107674], [-122.028269, 51.099917], [-122.024728, 51.099815], [-122.000484, 51.099723], [-122.000642, 51.09901], [-121.986308, 51.099093], [-121.985211, 51.086266], [-121.984976, 51.084378], [-121.982283, 51.084151], [-121.958855, 51.082989], [-121.948003, 51.080603], [-121.949046, 51.092074], [-121.959976, 51.092675], [-121.960889, 51.11178], [-122.006617, 51.112545], [-122.006937, 51.117073]]]]}, "properties": {"name": "High Bar 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "High Bar 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933819", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.978396, 51.412338], [-121.977477, 51.435821], [-122.000238, 51.436457], [-122.000142, 51.437666], [-122.02008, 51.437014], [-122.030995, 51.4376], [-122.066609, 51.438408], [-122.073396, 51.438476], [-122.071977, 51.451413], [-122.086313, 51.451651], [-122.107118, 51.451467], [-122.108056, 51.426552], [-122.086864, 51.425358], [-122.000207, 51.42456], [-122.000958, 51.410629], [-122.000948, 51.407006], [-121.979777, 51.407484], [-121.97639, 51.406968], [-121.978396, 51.412338]]]]}, "properties": {"name": "Canoe Creek 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Canoe Creek 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933821", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.57022, 50.202649], [-121.573505, 50.202667], [-121.5736, 50.201809], [-121.573583, 50.200769], [-121.574149, 50.200697], [-121.57411, 50.198996], [-121.573681, 50.199011], [-121.573776, 50.199491], [-121.573427, 50.199526], [-121.573363, 50.199017], [-121.570297, 50.199036], [-121.57022, 50.202649]]]]}, "properties": {"name": "Kitzowit 20", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kitzowit 20", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933823", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.581449, 50.19304], [-121.575606, 50.192872], [-121.575427, 50.196207], [-121.583594, 50.196735], [-121.582998, 50.196512], [-121.582966, 50.196214], [-121.582776, 50.195969], [-121.582583, 50.195382], [-121.581826, 50.193969], [-121.581449, 50.19304]]]]}, "properties": {"name": "Skuppah 2A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Skuppah 2A", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933824", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.573093, 50.196006], [-121.575427, 50.196207], [-121.575606, 50.192872], [-121.581449, 50.19304], [-121.581388, 50.192175], [-121.581114, 50.19102], [-121.581053, 50.190299], [-121.581229, 50.187684], [-121.581005, 50.186197], [-121.58056, 50.185643], [-121.578581, 50.183883], [-121.578038, 50.183311], [-121.577583, 50.182559], [-121.572131, 50.182313], [-121.572135, 50.182514], [-121.572563, 50.183774], [-121.573384, 50.187877], [-121.573376, 50.188273], [-121.573034, 50.189443], [-121.572948, 50.190111], [-121.573093, 50.196006]]]]}, "properties": {"name": "Inklyuhkinatko 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Inklyuhkinatko 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933825", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.312037, 50.647367], [-121.320818, 50.647362], [-121.320885, 50.648181], [-121.32749, 50.648038], [-121.3276, 50.637045], [-121.32735, 50.632433], [-121.327509, 50.628783], [-121.333017, 50.629269], [-121.333217, 50.628449], [-121.333182, 50.625445], [-121.332849, 50.620643], [-121.334717, 50.620722], [-121.33623, 50.620676], [-121.33648, 50.616194], [-121.347924, 50.616315], [-121.34827, 50.609232], [-121.337122, 50.608898], [-121.335446, 50.609026], [-121.330236, 50.609284], [-121.330359, 50.614673], [-121.331396, 50.621327], [-121.331083, 50.621574], [-121.330561, 50.622367], [-121.330154, 50.622666], [-121.329653, 50.622849], [-121.329341, 50.622844], [-121.329019, 50.622759], [-121.328083, 50.622826], [-121.327832, 50.62275], [-121.327668, 50.622587], [-121.327501, 50.622521], [-121.326505, 50.62274], [-121.326038, 50.622752], [-121.325743, 50.622639], [-121.325209, 50.622568], [-121.324062, 50.622219], [-121.322485, 50.622025], [-121.321659, 50.621789], [-121.320829, 50.621678], [-121.320033, 50.621415], [-121.319784, 50.621249], [-121.3188, 50.621118], [-121.318622, 50.62099], [-121.318546, 50.62073], [-121.318202, 50.620685], [-121.318227, 50.622694], [-121.315366, 50.627772], [-121.310708, 50.634133], [-121.316283, 50.634855], [-121.31619, 50.635766], [-121.312324, 50.636335], [-121.312037, 50.647367]]]]}, "properties": {"name": "Basque 18", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Basque 18", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933828", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.572052, 50.226526], [-121.57522, 50.227107], [-121.577004, 50.227143], [-121.575868, 50.228136], [-121.578734, 50.229767], [-121.579295, 50.228063], [-121.579575, 50.226733], [-121.579309, 50.226465], [-121.579192, 50.226172], [-121.578136, 50.226271], [-121.577211, 50.226176], [-121.574856, 50.226165], [-121.57395, 50.225991], [-121.57213, 50.225889], [-121.572072, 50.225892], [-121.572052, 50.226526]]]]}, "properties": {"name": "Klahkamich 17", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Klahkamich 17", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933829", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.57923, 50.256617], [-121.565022, 50.256497], [-121.565397, 50.267248], [-121.579139, 50.267573], [-121.57924, 50.265649], [-121.57923, 50.256617]]]]}, "properties": {"name": "Kleetlekut 22", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kleetlekut 22", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933831", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.572142, 50.238504], [-121.578932, 50.238115], [-121.579691, 50.237401], [-121.579467, 50.237042], [-121.580038, 50.234905], [-121.58033, 50.234717], [-121.579708, 50.234593], [-121.579753, 50.234301], [-121.579196, 50.23424], [-121.579134, 50.234469], [-121.57882, 50.234346], [-121.578695, 50.23464], [-121.572013, 50.234669], [-121.572142, 50.238504]]]]}, "properties": {"name": "Klickkumcheen 18", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Klickkumcheen 18", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933832", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.601994, 50.274781], [-121.60195, 50.277706], [-121.617077, 50.277468], [-121.616483, 50.277018], [-121.615815, 50.27683], [-121.615308, 50.276401], [-121.614134, 50.275695], [-121.612945, 50.274664], [-121.612582, 50.274578], [-121.612221, 50.274412], [-121.611565, 50.273792], [-121.6107, 50.273161], [-121.610415, 50.272871], [-121.609996, 50.272767], [-121.609595, 50.272564], [-121.608107, 50.271107], [-121.607748, 50.270968], [-121.607257, 50.270927], [-121.606884, 50.270714], [-121.606612, 50.270468], [-121.606616, 50.270271], [-121.606534, 50.27018], [-121.606327, 50.270115], [-121.60591, 50.269488], [-121.605429, 50.269123], [-121.605287, 50.268699], [-121.60506, 50.268327], [-121.604454, 50.267906], [-121.604182, 50.267615], [-121.60387, 50.266756], [-121.603449, 50.266338], [-121.603716, 50.265819], [-121.603904, 50.265616], [-121.604233, 50.264918], [-121.60429, 50.264864], [-121.604782, 50.264861], [-121.604799, 50.264763], [-121.604528, 50.264435], [-121.604549, 50.264193], [-121.604774, 50.263674], [-121.604709, 50.263529], [-121.604735, 50.263116], [-121.60416, 50.262569], [-121.603992, 50.262099], [-121.596308, 50.262262], [-121.594896, 50.260277], [-121.59314, 50.260779], [-121.592066, 50.260943], [-121.584572, 50.263173], [-121.586345, 50.265546], [-121.588444, 50.267774], [-121.588558, 50.276759], [-121.600438, 50.276887], [-121.600469, 50.275242], [-121.601994, 50.274781]], [[-121.599995, 50.2649], [-121.600105, 50.265121], [-121.600723, 50.265363], [-121.60061, 50.265908], [-121.599569, 50.266104], [-121.599034, 50.265105], [-121.599995, 50.2649]]], [[[-121.593641, 50.291988], [-121.611631, 50.292066], [-121.611405, 50.289131], [-121.610801, 50.283584], [-121.623235, 50.284088], [-121.622844, 50.283713], [-121.622547, 50.283269], [-121.621722, 50.28271], [-121.621375, 50.282562], [-121.620772, 50.28206], [-121.620038, 50.281224], [-121.61962, 50.280616], [-121.600032, 50.280551], [-121.592615, 50.280728], [-121.593641, 50.291988]]]]}, "properties": {"name": "Inkluckcheen", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Inkluckcheen", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933833", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.315972, 50.421357], [-121.315985, 50.422166], [-121.316225, 50.423736], [-121.315942, 50.425791], [-121.315954, 50.426664], [-121.316005, 50.426772], [-121.316213, 50.4269], [-121.316211, 50.427342], [-121.316435, 50.427399], [-121.317888, 50.426484], [-121.319044, 50.425656], [-121.319397, 50.425247], [-121.319784, 50.424623], [-121.321002, 50.423687], [-121.32133, 50.423494], [-121.321694, 50.423371], [-121.321169, 50.423144], [-121.320778, 50.423108], [-121.320315, 50.422966], [-121.317322, 50.420954], [-121.315972, 50.421357]]]]}, "properties": {"name": "Kumcheen 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kumcheen 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933834", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.52299, 50.890024], [-121.52303, 50.880368], [-121.522325, 50.870649], [-121.522372, 50.869561], [-121.498445, 50.86963], [-121.498943, 50.879106], [-121.468528, 50.878905], [-121.445175, 50.87864], [-121.445446, 50.887047], [-121.445314, 50.889533], [-121.453967, 50.889655], [-121.52299, 50.890024]]]]}, "properties": {"name": "Lower Hat Creek 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lower Hat Creek 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933836", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.372154, 50.619578], [-121.395909, 50.619502], [-121.395901, 50.612194], [-121.384951, 50.612109], [-121.384635, 50.605022], [-121.372472, 50.605039], [-121.372154, 50.619578]], [[-121.378995, 50.605513], [-121.380237, 50.611055], [-121.377403, 50.611352], [-121.375454, 50.6058], [-121.378995, 50.605513]]]]}, "properties": {"name": "Peq-Paq 22", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Peq-Paq 22", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933837", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.737592, 50.439684], [-121.737625, 50.437787], [-121.704023, 50.437407], [-121.699337, 50.437293], [-121.700078, 50.437508], [-121.700378, 50.437852], [-121.700331, 50.438509], [-121.699878, 50.439124], [-121.699652, 50.44066], [-121.699489, 50.440963], [-121.698985, 50.44138], [-121.698416, 50.442129], [-121.698033, 50.44226], [-121.697503, 50.442542], [-121.697338, 50.442927], [-121.697326, 50.443185], [-121.704179, 50.443286], [-121.706429, 50.443247], [-121.706723, 50.447034], [-121.706884, 50.446604], [-121.707712, 50.446227], [-121.708013, 50.446005], [-121.70819, 50.445728], [-121.708462, 50.44556], [-121.709197, 50.445515], [-121.710431, 50.445623], [-121.711941, 50.445059], [-121.715462, 50.445053], [-121.717046, 50.444819], [-121.721268, 50.443912], [-121.725118, 50.442668], [-121.727228, 50.441198], [-121.727936, 50.439612], [-121.737592, 50.439684]]]]}, "properties": {"name": "Lytton 4A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lytton 4A", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933839", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.71905, 50.428953], [-121.719039, 50.423529], [-121.710559, 50.423539], [-121.710568, 50.425347], [-121.696277, 50.42537], [-121.696444, 50.429386], [-121.696441, 50.431575], [-121.702097, 50.431582], [-121.702092, 50.42898], [-121.71905, 50.428953]]]]}, "properties": {"name": "Lytton 4E", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lytton 4E", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933840", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.642374, 50.299304], [-121.642907, 50.300777], [-121.643299, 50.301356], [-121.64353, 50.302105], [-121.64353, 50.30261], [-121.643404, 50.303058], [-121.643684, 50.303663], [-121.64367, 50.304095], [-121.643784, 50.304546], [-121.643732, 50.305391], [-121.643439, 50.306314], [-121.643058, 50.306858], [-121.643044, 50.307352], [-121.643709, 50.308674], [-121.643849, 50.309188], [-121.645065, 50.310389], [-121.64603, 50.311066], [-121.646329, 50.311366], [-121.647129, 50.31188], [-121.647744, 50.312506], [-121.648471, 50.313055], [-121.648826, 50.313428], [-121.649335, 50.314792], [-121.649739, 50.315399], [-121.649736, 50.316065], [-121.650191, 50.316789], [-121.650233, 50.317378], [-121.656231, 50.316947], [-121.656093, 50.309137], [-121.654621, 50.309034], [-121.654959, 50.29949], [-121.650349, 50.299422], [-121.650284, 50.298234], [-121.650456, 50.297676], [-121.645597, 50.297824], [-121.641562, 50.297992], [-121.642374, 50.299304]]]]}, "properties": {"name": "Lytton 9A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lytton 9A", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933841", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.615617, 50.274911], [-121.619341, 50.274705], [-121.635319, 50.27404], [-121.635579, 50.269947], [-121.619428, 50.270044], [-121.619441, 50.268503], [-121.617223, 50.268505], [-121.616094, 50.268319], [-121.615617, 50.274911]]]]}, "properties": {"name": "Lytton 9B", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lytton 9B", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933842", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.657652, 50.943668], [-119.657943, 50.944496], [-119.658997, 50.945204], [-119.659777, 50.945292], [-119.659378, 50.945983], [-119.659191, 50.9462], [-119.659011, 50.946275], [-119.659038, 50.946692], [-119.659636, 50.946931], [-119.661633, 50.947038], [-119.662643, 50.947258], [-119.662724, 50.947175], [-119.66281, 50.94645], [-119.662771, 50.943284], [-119.65766, 50.94337], [-119.657652, 50.943668]]]]}, "properties": {"name": "Toops 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Toops 3", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933843", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.304904, 50.717524], [-121.303323, 50.720148], [-121.317583, 50.724697], [-121.324621, 50.72665], [-121.325718, 50.724711], [-121.328048, 50.720106], [-121.326574, 50.719874], [-121.325271, 50.71945], [-121.324044, 50.719325], [-121.323146, 50.719033], [-121.321538, 50.718839], [-121.320603, 50.718474], [-121.319811, 50.718409], [-121.319335, 50.718249], [-121.318429, 50.717814], [-121.317741, 50.717651], [-121.316661, 50.716997], [-121.316214, 50.716811], [-121.315555, 50.716613], [-121.314998, 50.716703], [-121.313714, 50.716181], [-121.313356, 50.715942], [-121.312981, 50.715334], [-121.312891, 50.715053], [-121.312724, 50.714944], [-121.312678, 50.714673], [-121.31218, 50.714368], [-121.312332, 50.714065], [-121.313103, 50.713455], [-121.313193, 50.713313], [-121.31317, 50.713196], [-121.312851, 50.712994], [-121.31195, 50.712819], [-121.311799, 50.712709], [-121.311775, 50.712582], [-121.312044, 50.711803], [-121.312538, 50.711056], [-121.312572, 50.710543], [-121.312744, 50.710087], [-121.312851, 50.709451], [-121.313186, 50.709203], [-121.313276, 50.70906], [-121.31314, 50.708905], [-121.312454, 50.708672], [-121.312101, 50.70827], [-121.311756, 50.708004], [-121.304904, 50.717524]]]]}, "properties": {"name": "Ashcroft 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Ashcroft 4", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933844", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.285487, 50.724574], [-121.284689, 50.725453], [-121.284221, 50.725859], [-121.283658, 50.726167], [-121.283259, 50.726582], [-121.282682, 50.726907], [-121.282241, 50.727272], [-121.282868, 50.727773], [-121.282952, 50.728124], [-121.281813, 50.730907], [-121.281725, 50.731408], [-121.282004, 50.734599], [-121.284982, 50.734377], [-121.295824, 50.734683], [-121.30699, 50.734912], [-121.312155, 50.734968], [-121.312041, 50.73864], [-121.311838, 50.740678], [-121.311041, 50.742921], [-121.310667, 50.745982], [-121.310579, 50.74839], [-121.310858, 50.750546], [-121.311244, 50.756628], [-121.344305, 50.75694], [-121.344278, 50.732896], [-121.328118, 50.727858], [-121.324621, 50.72665], [-121.317583, 50.724697], [-121.303323, 50.720148], [-121.304904, 50.717524], [-121.311756, 50.708004], [-121.311342, 50.707693], [-121.311196, 50.707421], [-121.310691, 50.706883], [-121.310588, 50.706602], [-121.310598, 50.70591], [-121.310411, 50.705611], [-121.310246, 50.7055], [-121.308723, 50.704885], [-121.307617, 50.704581], [-121.306764, 50.704271], [-121.306001, 50.703819], [-121.305463, 50.703371], [-121.304953, 50.703382], [-121.304772, 50.703325], [-121.304312, 50.70313], [-121.30415, 50.702902], [-121.303769, 50.702861], [-121.303588, 50.70276], [-121.303362, 50.702361], [-121.303582, 50.701734], [-121.303561, 50.701599], [-121.303226, 50.701405], [-121.302583, 50.701216], [-121.302401, 50.701105], [-121.302392, 50.700565], [-121.302548, 50.70019], [-121.30243, 50.699964], [-121.301918, 50.70001], [-121.30063, 50.699945], [-121.298955, 50.699733], [-121.298575, 50.699619], [-121.298349, 50.699616], [-121.298197, 50.699532], [-121.297048, 50.699588], [-121.296856, 50.699783], [-121.295679, 50.699856], [-121.295298, 50.700192], [-121.295066, 50.701125], [-121.295084, 50.701421], [-121.295375, 50.701588], [-121.295387, 50.70165], [-121.294865, 50.702371], [-121.294571, 50.702646], [-121.293277, 50.703203], [-121.293198, 50.703426], [-121.293053, 50.703487], [-121.291856, 50.70373], [-121.290668, 50.704081], [-121.289401, 50.704252], [-121.288041, 50.704637], [-121.287595, 50.704819], [-121.287003, 50.705142], [-121.286521, 50.705523], [-121.285771, 50.706312], [-121.285319, 50.707079], [-121.284619, 50.70875], [-121.28512, 50.708828], [-121.28546, 50.711466], [-121.285882, 50.712133], [-121.285768, 50.713591], [-121.286534, 50.718732], [-121.286947, 50.720735], [-121.286599, 50.723911], [-121.286089, 50.723639], [-121.285914, 50.723744], [-121.285487, 50.724574]]]]}, "properties": {"name": "105 Mile Post 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "105 Mile Post 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933845", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.312759, 50.603871], [-121.312927, 50.603891], [-121.312919, 50.604098], [-121.312868, 50.604331], [-121.312648, 50.60457], [-121.31263, 50.604696], [-121.312952, 50.604791], [-121.313728, 50.604775], [-121.314, 50.60512], [-121.314676, 50.605562], [-121.314835, 50.605888], [-121.31508, 50.60654], [-121.314998, 50.607231], [-121.315411, 50.608325], [-121.315547, 50.609289], [-121.315555, 50.610149], [-121.316821, 50.610277], [-121.318664, 50.610087], [-121.32391, 50.609703], [-121.330236, 50.609284], [-121.335446, 50.609026], [-121.337122, 50.608898], [-121.336364, 50.605497], [-121.334646, 50.589483], [-121.321104, 50.590077], [-121.310221, 50.589798], [-121.310048, 50.59035], [-121.309625, 50.59073], [-121.309214, 50.590743], [-121.308385, 50.591028], [-121.307393, 50.591498], [-121.30686, 50.591832], [-121.306127, 50.592127], [-121.303977, 50.593373], [-121.303841, 50.593622], [-121.303349, 50.594003], [-121.302983, 50.594726], [-121.30267, 50.595917], [-121.302695, 50.596808], [-121.303012, 50.597434], [-121.303365, 50.597807], [-121.30355, 50.598206], [-121.305113, 50.599569], [-121.305331, 50.600138], [-121.305411, 50.600679], [-121.305575, 50.600843], [-121.305572, 50.600943], [-121.305401, 50.600949], [-121.30517, 50.600694], [-121.305026, 50.59999], [-121.304442, 50.599334], [-121.303424, 50.598582], [-121.303115, 50.598478], [-121.303016, 50.598495], [-121.302954, 50.598664], [-121.303043, 50.598945], [-121.303803, 50.600611], [-121.303809, 50.600845], [-121.30362, 50.600986], [-121.303612, 50.601219], [-121.303984, 50.601846], [-121.304565, 50.602213], [-121.304945, 50.602228], [-121.305822, 50.602592], [-121.306386, 50.602626], [-121.306722, 50.602722], [-121.309408, 50.603102], [-121.309865, 50.603361], [-121.310455, 50.603478], [-121.311507, 50.604059], [-121.312213, 50.604096], [-121.312759, 50.603871]]]]}, "properties": {"name": "Oregon Jack Creek 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Oregon Jack Creek 5", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933846", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.575279, 50.157578], [-121.579777, 50.157498], [-121.579782, 50.156382], [-121.580185, 50.155319], [-121.580144, 50.154976], [-121.58, 50.154703], [-121.579406, 50.154091], [-121.578454, 50.15135], [-121.578193, 50.153531], [-121.578724, 50.15561], [-121.578019, 50.155645], [-121.577996, 50.156331], [-121.575232, 50.156246], [-121.575279, 50.157578]]]]}, "properties": {"name": "Siska Flat 5B", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Siska Flat 5B", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933847", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.699987, 50.451573], [-121.700591, 50.451633], [-121.70101, 50.451773], [-121.701259, 50.451938], [-121.701762, 50.452123], [-121.70233, 50.452445], [-121.702426, 50.452572], [-121.702547, 50.452275], [-121.702299, 50.452012], [-121.702303, 50.451887], [-121.703148, 50.451392], [-121.703496, 50.451055], [-121.703921, 50.449369], [-121.704123, 50.449182], [-121.704605, 50.449107], [-121.704978, 50.448867], [-121.705024, 50.448723], [-121.704926, 50.448211], [-121.705193, 50.447647], [-121.705396, 50.447523], [-121.706455, 50.44739], [-121.706673, 50.447177], [-121.706723, 50.447034], [-121.706429, 50.443247], [-121.704179, 50.443286], [-121.697326, 50.443185], [-121.697269, 50.443358], [-121.696779, 50.443749], [-121.696617, 50.443989], [-121.696642, 50.444106], [-121.696764, 50.444297], [-121.697028, 50.444462], [-121.697077, 50.444706], [-121.697268, 50.444976], [-121.697251, 50.445085], [-121.697457, 50.445213], [-121.697456, 50.445285], [-121.697031, 50.445919], [-121.696819, 50.446402], [-121.696485, 50.446777], [-121.69614, 50.4476], [-121.695938, 50.447714], [-121.695916, 50.448028], [-121.695796, 50.448298], [-121.695438, 50.448518], [-121.695099, 50.448568], [-121.69466, 50.449075], [-121.694495, 50.449515], [-121.694555, 50.449866], [-121.694947, 50.450455], [-121.696441, 50.450958], [-121.69856, 50.451224], [-121.698866, 50.451362], [-121.698986, 50.451652], [-121.699152, 50.45178], [-121.699362, 50.4518], [-121.699462, 50.451774], [-121.699535, 50.451622], [-121.699987, 50.451573]]]]}, "properties": {"name": "Nickel Palm 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nickel Palm 4", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933848", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.564466, 50.131503], [-121.564751, 50.135391], [-121.567896, 50.135757], [-121.568187, 50.142762], [-121.574232, 50.142731], [-121.573964, 50.141796], [-121.573765, 50.141426], [-121.573725, 50.140445], [-121.573821, 50.139592], [-121.574313, 50.139058], [-121.574301, 50.138526], [-121.57409, 50.137571], [-121.574241, 50.137222], [-121.574248, 50.13698], [-121.573798, 50.135615], [-121.573627, 50.134786], [-121.573341, 50.134521], [-121.573334, 50.134296], [-121.5731, 50.133718], [-121.572843, 50.133445], [-121.572527, 50.133234], [-121.572392, 50.132999], [-121.572256, 50.132943], [-121.572012, 50.132643], [-121.571684, 50.132424], [-121.571365, 50.132248], [-121.570811, 50.132097], [-121.570208, 50.132136], [-121.569494, 50.131704], [-121.569907, 50.13108], [-121.568918, 50.130797], [-121.566191, 50.130778], [-121.56432, 50.130484], [-121.564466, 50.131503]]]]}, "properties": {"name": "Siska Flat", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Siska Flat", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933849", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.581234, 50.218211], [-121.581814, 50.218066], [-121.582535, 50.217795], [-121.583475, 50.217285], [-121.584567, 50.216893], [-121.58578, 50.216171], [-121.586475, 50.215855], [-121.58773, 50.215142], [-121.58868, 50.214776], [-121.589497, 50.214625], [-121.59032, 50.214274], [-121.590675, 50.214266], [-121.589737, 50.198009], [-121.586898, 50.197854], [-121.586342, 50.1981], [-121.585797, 50.19946], [-121.58566, 50.200294], [-121.585477, 50.200841], [-121.585366, 50.201713], [-121.585204, 50.201989], [-121.585026, 50.202805], [-121.584632, 50.203781], [-121.583656, 50.205505], [-121.582354, 50.207333], [-121.581882, 50.208622], [-121.581671, 50.209646], [-121.581548, 50.211847], [-121.581258, 50.212698], [-121.581194, 50.213417], [-121.580807, 50.214203], [-121.580348, 50.215916], [-121.580339, 50.217193], [-121.580147, 50.217533], [-121.579902, 50.217781], [-121.579867, 50.21796], [-121.579911, 50.218366], [-121.581234, 50.218211]]]]}, "properties": {"name": "Nickeyeah 25", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nickeyeah 25", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933850", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.399334, 50.266953], [-121.402191, 50.267414], [-121.403045, 50.267484], [-121.403334, 50.267332], [-121.403565, 50.267083], [-121.403824, 50.266043], [-121.404369, 50.265268], [-121.404949, 50.264745], [-121.405278, 50.264535], [-121.405572, 50.26417], [-121.406403, 50.263659], [-121.407168, 50.263445], [-121.409039, 50.263254], [-121.409741, 50.263273], [-121.410601, 50.263177], [-121.411359, 50.26316], [-121.412761, 50.263243], [-121.412118, 50.263039], [-121.412542, 50.262803], [-121.411189, 50.259932], [-121.399931, 50.26105], [-121.3999, 50.261477], [-121.399997, 50.262037], [-121.393362, 50.261982], [-121.393557, 50.266979], [-121.399334, 50.266953]]]]}, "properties": {"name": "Nicomen 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nicomen 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933851", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.600094, 50.252115], [-121.601277, 50.252112], [-121.601327, 50.2517], [-121.601134, 50.251763], [-121.599988, 50.250552], [-121.599759, 50.250453], [-121.599635, 50.250301], [-121.603193, 50.248796], [-121.601602, 50.247309], [-121.597016, 50.249207], [-121.596188, 50.247996], [-121.594439, 50.248443], [-121.59485, 50.249019], [-121.595627, 50.249848], [-121.595783, 50.250191], [-121.596001, 50.250436], [-121.597605, 50.251275], [-121.598809, 50.25128], [-121.598958, 50.251525], [-121.599776, 50.251841], [-121.600094, 50.252115]]]]}, "properties": {"name": "Nohomeen 23", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nohomeen 23", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933852", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.592066, 50.260943], [-121.59314, 50.260779], [-121.594896, 50.260277], [-121.596308, 50.262262], [-121.603992, 50.262099], [-121.603858, 50.261891], [-121.603448, 50.261554], [-121.602481, 50.260048], [-121.602284, 50.259606], [-121.601971, 50.259278], [-121.600358, 50.256408], [-121.598785, 50.254535], [-121.597873, 50.253571], [-121.596856, 50.252885], [-121.595786, 50.252476], [-121.594743, 50.252211], [-121.59453, 50.251795], [-121.594149, 50.251402], [-121.588613, 50.252158], [-121.579083, 50.251549], [-121.579293, 50.256621], [-121.57923, 50.256617], [-121.57924, 50.265649], [-121.586345, 50.265546], [-121.584572, 50.263173], [-121.592066, 50.260943]]]]}, "properties": {"name": "Nuuautin 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nuuautin 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933853", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.315554, 50.610675], [-121.315163, 50.611298], [-121.314683, 50.611714], [-121.313943, 50.612657], [-121.312647, 50.613717], [-121.312651, 50.614348], [-121.312764, 50.614745], [-121.313518, 50.615816], [-121.313687, 50.616242], [-121.314257, 50.61688], [-121.314565, 50.617361], [-121.314885, 50.617528], [-121.31517, 50.617837], [-121.3153, 50.618172], [-121.316094, 50.619281], [-121.318202, 50.620685], [-121.318546, 50.62073], [-121.318622, 50.62099], [-121.3188, 50.621118], [-121.319784, 50.621249], [-121.320228, 50.62149], [-121.321101, 50.621718], [-121.32064, 50.619826], [-121.318664, 50.610087], [-121.316821, 50.610277], [-121.315555, 50.610149], [-121.315554, 50.610675]]], [[[-121.308788, 50.618409], [-121.308832, 50.619149], [-121.309585, 50.619888], [-121.311436, 50.62068], [-121.312232, 50.620933], [-121.312328, 50.621016], [-121.313307, 50.621309], [-121.313999, 50.621328], [-121.314133, 50.621168], [-121.314153, 50.621016], [-121.314055, 50.620195], [-121.313529, 50.619468], [-121.312954, 50.618975], [-121.312636, 50.618331], [-121.312695, 50.618278], [-121.312591, 50.618033], [-121.31202, 50.617756], [-121.311872, 50.617196], [-121.311517, 50.61684], [-121.310989, 50.616571], [-121.310821, 50.616542], [-121.310383, 50.616508], [-121.309024, 50.616552], [-121.308604, 50.616455], [-121.308639, 50.617068], [-121.308876, 50.617179], [-121.309272, 50.617261], [-121.30942, 50.617781], [-121.308993, 50.617837], [-121.308627, 50.617806], [-121.308788, 50.618409]]]]}, "properties": {"name": "Paska Island 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Paska Island 3", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933854", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.587047, 50.234012], [-121.586765, 50.234514], [-121.5867, 50.234846], [-121.586736, 50.235556], [-121.587059, 50.236468], [-121.587039, 50.237189], [-121.589525, 50.240023], [-121.593087, 50.239831], [-121.594607, 50.239847], [-121.599818, 50.239143], [-121.599885, 50.237473], [-121.59699, 50.237386], [-121.597037, 50.234048], [-121.59106, 50.234274], [-121.587047, 50.234012]]]]}, "properties": {"name": "Papyum 27", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Papyum 27", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933855", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.514705, 50.163783], [-120.514891, 50.163454], [-120.515066, 50.163323], [-120.515388, 50.163312], [-120.515716, 50.163211], [-120.517332, 50.162544], [-120.518482, 50.161966], [-120.519381, 50.161365], [-120.519997, 50.161117], [-120.520619, 50.160455], [-120.520661, 50.159664], [-120.517536, 50.157916], [-120.515108, 50.158863], [-120.510941, 50.161252], [-120.510481, 50.161456], [-120.511518, 50.162078], [-120.514705, 50.163783]]]]}, "properties": {"name": "Hamilton Creek 2", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Hamilton Creek 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933856", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.268341, 50.51437], [-121.273832, 50.514407], [-121.274196, 50.525102], [-121.282415, 50.525174], [-121.282342, 50.524756], [-121.282429, 50.522365], [-121.282165, 50.521867], [-121.28218, 50.521435], [-121.281994, 50.521109], [-121.281614, 50.520707], [-121.280494, 50.519692], [-121.279937, 50.519091], [-121.279182, 50.517739], [-121.279163, 50.517531], [-121.278729, 50.51704], [-121.278503, 50.516623], [-121.278387, 50.515946], [-121.278155, 50.515762], [-121.27815, 50.515466], [-121.277886, 50.514599], [-121.27755, 50.514126], [-121.277547, 50.513065], [-121.278065, 50.512415], [-121.278585, 50.512072], [-121.279095, 50.511622], [-121.279151, 50.511218], [-121.279031, 50.511027], [-121.279109, 50.510822], [-121.279254, 50.510752], [-121.279565, 50.510729], [-121.279939, 50.510491], [-121.280133, 50.509821], [-121.280969, 50.508969], [-121.281111, 50.508513], [-121.281682, 50.507918], [-121.281782, 50.507542], [-121.282101, 50.507304], [-121.28241, 50.506931], [-121.283521, 50.505877], [-121.283671, 50.505574], [-121.283623, 50.504628], [-121.283228, 50.50304], [-121.283186, 50.501104], [-121.282908, 50.499816], [-121.282999, 50.499619], [-121.282996, 50.499348], [-121.282828, 50.498897], [-121.282812, 50.498599], [-121.282446, 50.498181], [-121.282125, 50.497654], [-121.281964, 50.497048], [-121.281992, 50.496321], [-121.282292, 50.495768], [-121.282424, 50.494888], [-121.283796, 50.493622], [-121.284513, 50.493264], [-121.285396, 50.492998], [-121.287196, 50.492773], [-121.288594, 50.492713], [-121.289911, 50.492552], [-121.291874, 50.492464], [-121.293566, 50.492056], [-121.29423, 50.491626], [-121.294613, 50.491163], [-121.295005, 50.490441], [-121.2957, 50.488796], [-121.295844, 50.487918], [-121.295782, 50.48726], [-121.294842, 50.486751], [-121.29476, 50.486687], [-121.294739, 50.486479], [-121.295319, 50.485679], [-121.295961, 50.485059], [-121.295997, 50.484861], [-121.296265, 50.484434], [-121.296399, 50.483869], [-121.296626, 50.482208], [-121.296616, 50.481776], [-121.296289, 50.480611], [-121.296267, 50.479298], [-121.295784, 50.478247], [-121.295729, 50.47741], [-121.296025, 50.476614], [-121.295978, 50.475974], [-121.296133, 50.475158], [-121.296288, 50.474784], [-121.296857, 50.473884], [-121.29705, 50.473211], [-121.296921, 50.472508], [-121.296392, 50.471907], [-121.295927, 50.471108], [-121.295172, 50.470135], [-121.294585, 50.469218], [-121.294403, 50.468792], [-121.29429, 50.468053], [-121.294413, 50.467731], [-121.29473, 50.46717], [-121.29528, 50.466745], [-121.295132, 50.466582], [-121.294484, 50.466186], [-121.294019, 50.465774], [-121.29322, 50.46525], [-121.291988, 50.46462], [-121.291704, 50.464319], [-121.290607, 50.46353], [-121.290062, 50.463342], [-121.289279, 50.463213], [-121.287346, 50.463283], [-121.285599, 50.463635], [-121.284616, 50.463567], [-121.282852, 50.463622], [-121.281926, 50.463545], [-121.281452, 50.463413], [-121.281156, 50.46339], [-121.280674, 50.463114], [-121.280194, 50.463088], [-121.279623, 50.463286], [-121.279365, 50.463463], [-121.27936, 50.463975], [-121.279282, 50.464172], [-121.278803, 50.464552], [-121.278191, 50.464713], [-121.277669, 50.464742], [-121.275305, 50.46467], [-121.27473, 50.464572], [-121.273539, 50.464024], [-121.273133, 50.463937], [-121.272496, 50.463622], [-121.272135, 50.4635], [-121.271769, 50.463467], [-121.271258, 50.463585], [-121.270413, 50.464319], [-121.269827, 50.464571], [-121.268988, 50.464784], [-121.268379, 50.464847], [-121.267942, 50.464848], [-121.267733, 50.464791], [-121.266526, 50.46427], [-121.266154, 50.464039], [-121.265221, 50.463729], [-121.264311, 50.463545], [-121.263812, 50.463376], [-121.262675, 50.46281], [-121.262294, 50.462471], [-121.261703, 50.462085], [-121.261313, 50.461934], [-121.260307, 50.461714], [-121.259989, 50.461574], [-121.259136, 50.461021], [-121.258785, 50.460611], [-121.257875, 50.460013], [-121.257367, 50.459285], [-121.256739, 50.4587], [-121.256238, 50.457821], [-121.255376, 50.457106], [-121.254202, 50.456468], [-121.253873, 50.456193], [-121.252125, 50.455483], [-121.25166, 50.455135], [-121.251022, 50.454802], [-121.250671, 50.454427], [-121.250355, 50.454207], [-121.249264, 50.453993], [-121.248252, 50.453546], [-121.248022, 50.453264], [-121.247838, 50.453151], [-121.247834, 50.454404], [-121.249387, 50.475993], [-121.24088, 50.476149], [-121.241573, 50.48385], [-121.241634, 50.487439], [-121.239095, 50.48741], [-121.239406, 50.509221], [-121.268277, 50.509097], [-121.268341, 50.51437]]]]}, "properties": {"name": "Pemynoos 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Pemynoos 9", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933857", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.736796, 50.507119], [-121.737905, 50.507257], [-121.738694, 50.507274], [-121.739017, 50.50735], [-121.739432, 50.507633], [-121.73998, 50.507755], [-121.740784, 50.508277], [-121.741762, 50.508647], [-121.741996, 50.508851], [-121.740633, 50.498587], [-121.742503, 50.490924], [-121.734976, 50.490477], [-121.728545, 50.490659], [-121.728609, 50.49103], [-121.728562, 50.492262], [-121.728419, 50.49289], [-121.728258, 50.493122], [-121.727913, 50.493307], [-121.727825, 50.493522], [-121.727809, 50.494114], [-121.72766, 50.494401], [-121.727215, 50.495161], [-121.727015, 50.495302], [-121.726489, 50.495989], [-121.726373, 50.497175], [-121.72649, 50.498048], [-121.726881, 50.498692], [-121.727158, 50.498947], [-121.727379, 50.499615], [-121.727696, 50.499834], [-121.728025, 50.500189], [-121.728498, 50.500454], [-121.728841, 50.500791], [-121.729259, 50.501002], [-121.729325, 50.501183], [-121.730753, 50.501594], [-121.731351, 50.501898], [-121.731666, 50.502215], [-121.731975, 50.502804], [-121.731809, 50.503179], [-121.73254, 50.504339], [-121.732499, 50.504806], [-121.733056, 50.505108], [-121.733217, 50.505353], [-121.733127, 50.505595], [-121.733418, 50.505769], [-121.73398, 50.506378], [-121.734357, 50.506571], [-121.734418, 50.506877], [-121.734244, 50.507038], [-121.734256, 50.507163], [-121.734912, 50.507441], [-121.735271, 50.507696], [-121.735535, 50.507807], [-121.735816, 50.507845], [-121.735988, 50.507794], [-121.736021, 50.507533], [-121.736582, 50.507153], [-121.736796, 50.507119]]]]}, "properties": {"name": "Seah 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Seah 5", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933858", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.215469, 50.31494], [-121.21536, 50.315219], [-121.243303, 50.315472], [-121.243615, 50.307099], [-121.244205, 50.282688], [-121.210783, 50.282638], [-121.210403, 50.271791], [-121.185924, 50.271682], [-121.185685, 50.264379], [-121.143951, 50.264106], [-121.144013, 50.273907], [-121.144489, 50.278934], [-121.143612, 50.278691], [-121.142893, 50.278401], [-121.1421, 50.277867], [-121.141968, 50.277676], [-121.141282, 50.277241], [-121.140399, 50.276868], [-121.139851, 50.276545], [-121.139664, 50.276263], [-121.139397, 50.275206], [-121.139225, 50.27496], [-121.138948, 50.274812], [-121.13832, 50.274766], [-121.137066, 50.27489], [-121.136307, 50.274904], [-121.135883, 50.274647], [-121.134853, 50.274423], [-121.134508, 50.274219], [-121.134187, 50.274232], [-121.133522, 50.274725], [-121.132046, 50.275107], [-121.131745, 50.275282], [-121.129008, 50.275634], [-121.128551, 50.275454], [-121.127398, 50.275185], [-121.126572, 50.274758], [-121.125318, 50.274521], [-121.123781, 50.274001], [-121.122902, 50.273502], [-121.121961, 50.272839], [-121.12175, 50.272512], [-121.121612, 50.27205], [-121.121983, 50.271184], [-121.12255, 50.270338], [-121.122607, 50.269935], [-121.122576, 50.2697], [-121.122132, 50.268822], [-121.121349, 50.268035], [-121.12104, 50.267346], [-121.121025, 50.265943], [-121.121451, 50.265465], [-121.121587, 50.265207], [-121.115587, 50.265213], [-121.115315, 50.270084], [-121.115348, 50.274218], [-121.124019, 50.274429], [-121.124404, 50.278157], [-121.127456, 50.27801], [-121.127525, 50.278534], [-121.127377, 50.279896], [-121.135635, 50.280122], [-121.137943, 50.280271], [-121.137881, 50.283033], [-121.138059, 50.287295], [-121.154337, 50.287287], [-121.154548, 50.290794], [-121.162232, 50.290764], [-121.162415, 50.294826], [-121.17441, 50.294794], [-121.174555, 50.29666], [-121.180133, 50.29685], [-121.180503, 50.300434], [-121.188595, 50.300249], [-121.188562, 50.301926], [-121.196448, 50.302246], [-121.196412, 50.303831], [-121.199055, 50.3039], [-121.199224, 50.307386], [-121.207369, 50.307503], [-121.208464, 50.3073], [-121.208159, 50.307749], [-121.208155, 50.308265], [-121.208496, 50.308687], [-121.210182, 50.309142], [-121.211283, 50.309659], [-121.212067, 50.310182], [-121.213322, 50.31065], [-121.214901, 50.311166], [-121.216097, 50.311402], [-121.217539, 50.311415], [-121.219113, 50.31121], [-121.219733, 50.311279], [-121.220331, 50.31144], [-121.220592, 50.311589], [-121.220777, 50.311825], [-121.220791, 50.312257], [-121.220202, 50.312952], [-121.219248, 50.313556], [-121.218222, 50.314026], [-121.217667, 50.314183], [-121.217164, 50.314151], [-121.216348, 50.314319], [-121.215707, 50.314641], [-121.215469, 50.31494]]]]}, "properties": {"name": "Shackan 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Shackan 11", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933859", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.233707, 50.369161], [-121.246883, 50.369414], [-121.247318, 50.369537], [-121.247604, 50.36903], [-121.248584, 50.368011], [-121.248687, 50.367455], [-121.248566, 50.367045], [-121.248061, 50.366596], [-121.24741, 50.366329], [-121.247045, 50.366284], [-121.244226, 50.366828], [-121.242443, 50.366845], [-121.241592, 50.366732], [-121.24106, 50.366548], [-121.240834, 50.366348], [-121.240252, 50.366052], [-121.239899, 50.365491], [-121.239911, 50.364859], [-121.240406, 50.363426], [-121.240798, 50.362623], [-121.240862, 50.362106], [-121.240819, 50.361191], [-121.240734, 50.360734], [-121.239856, 50.359595], [-121.239631, 50.359074], [-121.239046, 50.358531], [-121.239012, 50.358099], [-121.23913, 50.356935], [-121.239037, 50.356706], [-121.238941, 50.356589], [-121.238487, 50.356381], [-121.237926, 50.356306], [-121.236702, 50.356309], [-121.235934, 50.356143], [-121.23544, 50.355816], [-121.235152, 50.355418], [-121.23491, 50.354561], [-121.233636, 50.354597], [-121.233707, 50.369161]]]]}, "properties": {"name": "Kloklowuck 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kloklowuck 7", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933861", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.578376, 50.17252], [-121.580944, 50.175522], [-121.581266, 50.174607], [-121.581723, 50.171878], [-121.582053, 50.171188], [-121.57974, 50.171418], [-121.575531, 50.170787], [-121.574803, 50.170387], [-121.574108, 50.171779], [-121.57368, 50.17317], [-121.575041, 50.17354], [-121.576066, 50.171733], [-121.578376, 50.17252]]]]}, "properties": {"name": "Skuppah 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Skuppah 4", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933865", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.592391, 50.197898], [-121.596456, 50.197905], [-121.596346, 50.187464], [-121.588294, 50.1877], [-121.583438, 50.187298], [-121.583539, 50.18819], [-121.583401, 50.190482], [-121.583823, 50.192339], [-121.584143, 50.192856], [-121.584416, 50.193588], [-121.585035, 50.194422], [-121.585684, 50.195717], [-121.586141, 50.196352], [-121.586163, 50.196596], [-121.586467, 50.197174], [-121.586342, 50.1981], [-121.586898, 50.197854], [-121.589737, 50.198009], [-121.592391, 50.197898]]]]}, "properties": {"name": "Skwayaynope 26", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Skwayaynope 26", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933866", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.64474, 50.34602], [-121.663215, 50.346494], [-121.662427, 50.34627], [-121.661456, 50.345854], [-121.66001, 50.344793], [-121.659695, 50.34452], [-121.658824, 50.343503], [-121.658273, 50.342579], [-121.657983, 50.341901], [-121.657824, 50.341099], [-121.657747, 50.339803], [-121.657398, 50.338206], [-121.657265, 50.336973], [-121.657245, 50.334697], [-121.657133, 50.334183], [-121.656007, 50.331292], [-121.655132, 50.329924], [-121.65448, 50.329107], [-121.653767, 50.32802], [-121.653691, 50.327187], [-121.648812, 50.32778], [-121.645816, 50.327793], [-121.64474, 50.34602]]]]}, "properties": {"name": "Spintlum Flat 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Spintlum Flat 3", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933868", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.660106, 50.341872], [-121.660586, 50.342795], [-121.661023, 50.343268], [-121.661856, 50.344608], [-121.662132, 50.344817], [-121.662692, 50.344896], [-121.663679, 50.341814], [-121.664396, 50.340751], [-121.664845, 50.340271], [-121.666009, 50.339898], [-121.666153, 50.339764], [-121.666165, 50.339306], [-121.666312, 50.339092], [-121.667181, 50.339085], [-121.667361, 50.338047], [-121.667495, 50.335], [-121.664616, 50.335006], [-121.664482, 50.331421], [-121.659784, 50.331391], [-121.659775, 50.327601], [-121.659285, 50.317044], [-121.656231, 50.316947], [-121.650233, 50.317378], [-121.650762, 50.317984], [-121.651163, 50.31823], [-121.651436, 50.318512], [-121.651827, 50.31911], [-121.653054, 50.320438], [-121.65404, 50.321808], [-121.654571, 50.323883], [-121.654533, 50.324692], [-121.654806, 50.325009], [-121.654825, 50.32537], [-121.655193, 50.32576], [-121.655601, 50.327177], [-121.656004, 50.327884], [-121.656253, 50.328524], [-121.656562, 50.329006], [-121.657068, 50.329533], [-121.657567, 50.330222], [-121.657695, 50.330674], [-121.658317, 50.332056], [-121.658666, 50.33313], [-121.659375, 50.334433], [-121.659597, 50.335507], [-121.659553, 50.336083], [-121.659313, 50.337105], [-121.659364, 50.338283], [-121.659684, 50.339421], [-121.659792, 50.340573], [-121.660106, 50.341872]]]]}, "properties": {"name": "Nkaih 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nkaih 10", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933870", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.645637, 50.819111], [-121.659052, 50.819354], [-121.659028, 50.823189], [-121.670365, 50.82325], [-121.67127, 50.829284], [-121.68382, 50.829768], [-121.683274, 50.828204], [-121.683128, 50.819645], [-121.671303, 50.819482], [-121.671094, 50.813708], [-121.659511, 50.813514], [-121.659407, 50.81024], [-121.645485, 50.810102], [-121.645637, 50.819111]]]]}, "properties": {"name": "Marble Canyon 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Marble Canyon 3", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933872", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.642137, 50.294849], [-121.642155, 50.295649], [-121.641552, 50.297136], [-121.641562, 50.297992], [-121.650456, 50.297676], [-121.650006, 50.297211], [-121.648184, 50.294728], [-121.646943, 50.291526], [-121.640427, 50.281107], [-121.635441, 50.280959], [-121.635319, 50.27404], [-121.619341, 50.274705], [-121.615617, 50.274911], [-121.615761, 50.2753], [-121.615994, 50.275437], [-121.616883, 50.275763], [-121.617297, 50.276047], [-121.618579, 50.277294], [-121.619205, 50.277985], [-121.619337, 50.278247], [-121.62037, 50.279006], [-121.620831, 50.279533], [-121.620977, 50.279841], [-121.621645, 50.280479], [-121.621791, 50.280822], [-121.622787, 50.281815], [-121.623096, 50.282259], [-121.624058, 50.282954], [-121.62489, 50.283314], [-121.625287, 50.283706], [-121.625948, 50.284603], [-121.62625, 50.284823], [-121.626492, 50.285267], [-121.626662, 50.286123], [-121.627476, 50.287158], [-121.627902, 50.287469], [-121.628346, 50.287627], [-121.630183, 50.289159], [-121.63037, 50.289494], [-121.6309, 50.289645], [-121.631294, 50.290081], [-121.632337, 50.29094], [-121.63286, 50.291287], [-121.63322, 50.291435], [-121.635333, 50.29172], [-121.637043, 50.291758], [-121.637436, 50.291835], [-121.63822, 50.291844], [-121.639213, 50.292036], [-121.639718, 50.292042], [-121.640109, 50.292119], [-121.641097, 50.292436], [-121.641414, 50.292583], [-121.642169, 50.293186], [-121.64274, 50.293849], [-121.642777, 50.294066], [-121.642597, 50.294467], [-121.642137, 50.294849]]]]}, "properties": {"name": "Stryen 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Stryen 9", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933873", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.675924, 50.370879], [-121.675799, 50.371336], [-121.67493, 50.372827], [-121.675182, 50.373856], [-121.675561, 50.374904], [-121.675562, 50.37583], [-121.676118, 50.377644], [-121.676069, 50.377877], [-121.683403, 50.377695], [-121.683932, 50.368518], [-121.679025, 50.368594], [-121.67773, 50.369684], [-121.677474, 50.369781], [-121.676713, 50.370375], [-121.676401, 50.370452], [-121.675924, 50.370879]]]]}, "properties": {"name": "Tsaukan 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Tsaukan 12", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933874", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.591637, 50.826436], [-121.591638, 50.808043], [-121.606308, 50.808222], [-121.605954, 50.797249], [-121.574718, 50.797055], [-121.574621, 50.808154], [-121.560365, 50.808184], [-121.560566, 50.822712], [-121.542251, 50.822731], [-121.542543, 50.833819], [-121.552357, 50.833688], [-121.552723, 50.833643], [-121.566107, 50.833526], [-121.566197, 50.826088], [-121.591637, 50.826436]]]]}, "properties": {"name": "Upper Hat Creek 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Upper Hat Creek 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933875", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.264111, 50.670526], [-121.27266, 50.670803], [-121.274324, 50.670436], [-121.275438, 50.67046], [-121.275462, 50.668588], [-121.27597, 50.662617], [-121.274226, 50.664521], [-121.266171, 50.661566], [-121.272846, 50.653258], [-121.279911, 50.656158], [-121.28041, 50.656517], [-121.280744, 50.656624], [-121.280968, 50.648086], [-121.266964, 50.648045], [-121.267169, 50.656786], [-121.252495, 50.656743], [-121.252724, 50.670784], [-121.264111, 50.670526]]]]}, "properties": {"name": "Upper Nepa 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Upper Nepa 6", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933876", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.226588, 51.004189], [-120.226547, 51.004844], [-120.226312, 51.005502], [-120.227001, 51.005982], [-120.227145, 51.006024], [-120.232767, 51.00628], [-120.235422, 51.006082], [-120.237155, 51.006458], [-120.243206, 51.006194], [-120.244891, 51.006455], [-120.244153, 51.002702], [-120.244924, 50.999598], [-120.244959, 50.998566], [-120.250529, 50.998574], [-120.250728, 50.983778], [-120.262284, 50.983736], [-120.262658, 50.970272], [-120.262904, 50.968202], [-120.244768, 50.968474], [-120.242688, 50.96842], [-120.239849, 50.968161], [-120.237746, 50.968304], [-120.237764, 50.969384], [-120.237653, 50.970532], [-120.237321, 50.971559], [-120.237091, 50.973073], [-120.23699, 50.975221], [-120.23677, 50.97751], [-120.236305, 50.979099], [-120.236223, 50.979979], [-120.23576, 50.980822], [-120.234351, 50.982714], [-120.23392, 50.983748], [-120.23375, 50.984445], [-120.233632, 50.985468], [-120.233624, 50.986781], [-120.233697, 50.988438], [-120.233952, 50.989648], [-120.2339, 50.99052], [-120.23375, 50.990903], [-120.232655, 50.992784], [-120.231486, 50.994465], [-120.231455, 50.994968], [-120.231653, 50.996197], [-120.231457, 50.997333], [-120.231556, 50.99783], [-120.22988, 50.999635], [-120.229206, 51.000204], [-120.228026, 51.001587], [-120.227526, 51.002053], [-120.227489, 51.002205], [-120.227072, 51.0025], [-120.226894, 51.003558], [-120.226588, 51.004189]]]]}, "properties": {"name": "Whispering Pines 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Whispering Pines 4", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933877", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.664396, 50.340751], [-121.663679, 50.341814], [-121.662692, 50.344896], [-121.665202, 50.345609], [-121.666045, 50.346113], [-121.666636, 50.346552], [-121.666909, 50.346914], [-121.667078, 50.347367], [-121.667351, 50.347674], [-121.667871, 50.348697], [-121.668305, 50.349232], [-121.668571, 50.349775], [-121.669041, 50.350041], [-121.669545, 50.350624], [-121.66982, 50.350833], [-121.670731, 50.351968], [-121.670914, 50.352401], [-121.671813, 50.352942], [-121.673539, 50.354599], [-121.677167, 50.354958], [-121.678765, 50.354984], [-121.678901, 50.342287], [-121.667153, 50.34232], [-121.667181, 50.339085], [-121.66707, 50.339065], [-121.666312, 50.339092], [-121.666165, 50.339306], [-121.666153, 50.339764], [-121.666009, 50.339898], [-121.664845, 50.340271], [-121.664396, 50.340751]]]]}, "properties": {"name": "Yawaucht 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Yawaucht 11", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933878", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.577996, 50.156331], [-121.578019, 50.155645], [-121.578724, 50.15561], [-121.578193, 50.153531], [-121.578454, 50.15135], [-121.578218, 50.150782], [-121.572689, 50.150795], [-121.572557, 50.156156], [-121.577996, 50.156331]]]]}, "properties": {"name": "Zacht 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Zacht 5", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933879", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.177832, 50.756869], [-120.177513, 50.76418], [-120.176836, 50.771335], [-120.176125, 50.780238], [-120.180255, 50.780507], [-120.185578, 50.780497], [-120.198994, 50.780835], [-120.208133, 50.780803], [-120.209502, 50.780905], [-120.211904, 50.780976], [-120.234952, 50.78143], [-120.260599, 50.781673], [-120.300883, 50.781509], [-120.310771, 50.781823], [-120.321204, 50.781994], [-120.321965, 50.782044], [-120.32417, 50.781923], [-120.325235, 50.779624], [-120.327079, 50.776545], [-120.329044, 50.773754], [-120.330237, 50.772281], [-120.331008, 50.771448], [-120.332127, 50.770694], [-120.336207, 50.766555], [-120.338031, 50.76514], [-120.339607, 50.762603], [-120.340235, 50.761447], [-120.341547, 50.757915], [-120.342825, 50.75314], [-120.343137, 50.750899], [-120.343318, 50.748766], [-120.343642, 50.747599], [-120.344056, 50.74662], [-120.344869, 50.745594], [-120.345932, 50.74361], [-120.347509, 50.741609], [-120.349355, 50.739843], [-120.350845, 50.739036], [-120.353136, 50.738193], [-120.355787, 50.736774], [-120.356109, 50.735639], [-120.35639, 50.733184], [-120.356519, 50.730515], [-120.355657, 50.727095], [-120.355388, 50.721646], [-120.35554, 50.720847], [-120.355365, 50.717027], [-120.354959, 50.714334], [-120.353229, 50.709334], [-120.352833, 50.704157], [-120.351728, 50.700682], [-120.348302, 50.695707], [-120.346585, 50.692635], [-120.344844, 50.690752], [-120.34034, 50.686841], [-120.339745, 50.685734], [-120.339596, 50.68396], [-120.34183, 50.681778], [-120.341761, 50.680393], [-120.338121, 50.680511], [-120.334718, 50.680747], [-120.324352, 50.680467], [-120.32147, 50.680718], [-120.320316, 50.680271], [-120.317802, 50.678393], [-120.316995, 50.678035], [-120.313054, 50.677219], [-120.309129, 50.676781], [-120.304479, 50.676174], [-120.302092, 50.675724], [-120.299388, 50.674768], [-120.298396, 50.674555], [-120.297499, 50.674468], [-120.295957, 50.67465], [-120.295272, 50.674962], [-120.293691, 50.676162], [-120.292719, 50.677172], [-120.292479, 50.677706], [-120.292443, 50.678454], [-120.292632, 50.679375], [-120.292602, 50.680234], [-120.292374, 50.680884], [-120.277949, 50.681623], [-120.270225, 50.68165], [-120.266009, 50.68176], [-120.26392, 50.681366], [-120.258572, 50.680142], [-120.253628, 50.678827], [-120.25171, 50.678669], [-120.24588, 50.679039], [-120.244067, 50.678868], [-120.239292, 50.677938], [-120.234298, 50.676641], [-120.231944, 50.675787], [-120.229228, 50.674898], [-120.228443, 50.674583], [-120.226662, 50.674067], [-120.223926, 50.673529], [-120.220009, 50.673166], [-120.216836, 50.673158], [-120.215098, 50.673217], [-120.209702, 50.673065], [-120.209512, 50.677481], [-120.209408, 50.678187], [-120.199742, 50.677885], [-120.18328, 50.678069], [-120.179803, 50.67813], [-120.178577, 50.678201], [-120.178795, 50.683269], [-120.178269, 50.691248], [-120.178812, 50.71888], [-120.17826, 50.731132], [-120.177522, 50.743644], [-120.177446, 50.748095], [-120.177117, 50.752201], [-120.169496, 50.752479], [-120.151554, 50.752152], [-120.135092, 50.751975], [-120.121864, 50.751641], [-120.118525, 50.751545], [-120.115252, 50.750585], [-120.112584, 50.750212], [-120.108297, 50.750545], [-120.107244, 50.750466], [-120.106391, 50.750248], [-120.105442, 50.750271], [-120.10442, 50.750003], [-120.104494, 50.749405], [-120.103992, 50.748997], [-120.103403, 50.748716], [-120.103662, 50.747689], [-120.104287, 50.746146], [-120.104283, 50.745535], [-120.103811, 50.744808], [-120.103417, 50.744975], [-120.103133, 50.744986], [-120.102256, 50.744721], [-120.101327, 50.744599], [-120.098927, 50.744449], [-120.098298, 50.744515], [-120.097571, 50.744379], [-120.097, 50.744419], [-120.096535, 50.744606], [-120.095867, 50.744651], [-120.094234, 50.744449], [-120.094007, 50.744218], [-120.093602, 50.7441], [-120.09275, 50.743918], [-120.09203, 50.743872], [-120.091787, 50.743884], [-120.091305, 50.744141], [-120.090801, 50.744247], [-120.090388, 50.744056], [-120.089829, 50.743916], [-120.087819, 50.743875], [-120.087213, 50.74359], [-120.08543, 50.743284], [-120.084648, 50.742905], [-120.083818, 50.742794], [-120.083255, 50.74259], [-120.08243, 50.741958], [-120.081836, 50.741033], [-120.080676, 50.740294], [-120.080688, 50.73989], [-120.08084, 50.73974], [-120.081417, 50.73935], [-120.081955, 50.739112], [-120.082341, 50.739041], [-120.08249, 50.738927], [-120.082597, 50.738597], [-120.082543, 50.738345], [-120.082328, 50.738366], [-120.081702, 50.738619], [-120.081304, 50.738637], [-120.080877, 50.738429], [-120.080333, 50.738306], [-120.080156, 50.738185], [-120.078747, 50.737826], [-120.077652, 50.737862], [-120.076942, 50.737672], [-120.076226, 50.737556], [-120.075446, 50.737573], [-120.07457, 50.737748], [-120.074072, 50.737763], [-120.073368, 50.737691], [-120.072842, 50.737499], [-120.072303, 50.737503], [-120.071555, 50.737682], [-120.070804, 50.737681], [-120.070559, 50.737738], [-120.070282, 50.737866], [-120.070221, 50.738142], [-120.070102, 50.738248], [-120.069729, 50.738337], [-120.069535, 50.738477], [-120.069233, 50.73855], [-120.068086, 50.738296], [-120.067512, 50.737967], [-120.0673, 50.737961], [-120.067197, 50.738013], [-120.066981, 50.738278], [-120.066668, 50.738296], [-120.066137, 50.738175], [-120.065318, 50.738137], [-120.06517, 50.738184], [-120.065159, 50.738064], [-120.063377, 50.737659], [-120.058249, 50.738115], [-120.054017, 50.737958], [-120.054704, 50.738635], [-120.055481, 50.739646], [-120.055979, 50.739854], [-120.056265, 50.739892], [-120.056554, 50.740213], [-120.057657, 50.74005], [-120.060701, 50.740828], [-120.073426, 50.742243], [-120.077028, 50.744345], [-120.082238, 50.747909], [-120.086631, 50.748361], [-120.090923, 50.748509], [-120.09449, 50.748513], [-120.096481, 50.748739], [-120.098151, 50.74957], [-120.101475, 50.752877], [-120.104493, 50.75438], [-120.105313, 50.754723], [-120.109786, 50.755433], [-120.113025, 50.756159], [-120.121809, 50.756032], [-120.131089, 50.75608], [-120.131972, 50.756139], [-120.135612, 50.756014], [-120.177832, 50.756869]]]]}, "properties": {"name": "Kamloops 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kamloops 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933880", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.360178, 50.416431], [-121.360754, 50.416088], [-121.361208, 50.415959], [-121.361481, 50.415818], [-121.362362, 50.415121], [-121.362863, 50.414517], [-121.362926, 50.414329], [-121.362901, 50.413806], [-121.363106, 50.413602], [-121.363219, 50.41334], [-121.358863, 50.413609], [-121.35757, 50.413454], [-121.357885, 50.414146], [-121.357137, 50.41598], [-121.358073, 50.416878], [-121.358798, 50.416851], [-121.360178, 50.416431]]], [[[-121.333176, 50.430644], [-121.336051, 50.430534], [-121.335741, 50.425635], [-121.33414, 50.425806], [-121.332727, 50.426037], [-121.333176, 50.430644]]]]}, "properties": {"name": "Spences Bridge", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Spences Bridge", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933881", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.55675, 50.121408], [-121.558519, 50.121432], [-121.55843, 50.124403], [-121.560848, 50.124613], [-121.560672, 50.123995], [-121.560209, 50.123602], [-121.56006, 50.123376], [-121.560008, 50.122772], [-121.560217, 50.122343], [-121.561261, 50.12116], [-121.561543, 50.120588], [-121.561909, 50.120089], [-121.562572, 50.119405], [-121.562984, 50.119157], [-121.563549, 50.11857], [-121.563963, 50.11827], [-121.564258, 50.11822], [-121.564662, 50.118305], [-121.565039, 50.118284], [-121.565378, 50.118224], [-121.565717, 50.118041], [-121.566614, 50.117062], [-121.567275, 50.116485], [-121.567555, 50.116048], [-121.56766, 50.11533], [-121.567585, 50.114124], [-121.567258, 50.113328], [-121.566853, 50.112855], [-121.566388, 50.111959], [-121.565779, 50.111781], [-121.565591, 50.111086], [-121.564596, 50.109716], [-121.564055, 50.109106], [-121.563816, 50.108645], [-121.563365, 50.106885], [-121.563241, 50.105975], [-121.56337, 50.105392], [-121.555985, 50.105317], [-121.556133, 50.116167], [-121.555386, 50.116152], [-121.555401, 50.116953], [-121.555161, 50.120772], [-121.556002, 50.120826], [-121.55675, 50.121408]], [[-121.565989, 50.113504], [-121.565191, 50.114953], [-121.564163, 50.115286], [-121.563635, 50.116046], [-121.563047, 50.116035], [-121.562374, 50.116348], [-121.561589, 50.116229], [-121.56257, 50.115615], [-121.563445, 50.114476], [-121.563666, 50.113989], [-121.563588, 50.113777], [-121.565028, 50.112251], [-121.565989, 50.113504]]]]}, "properties": {"name": "Kanaka Bar", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kanaka Bar", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933882", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.73994, 50.837329], [-119.75311, 50.837463], [-119.753617, 50.836948], [-119.75371, 50.836614], [-119.753914, 50.836465], [-119.754233, 50.836062], [-119.754259, 50.835782], [-119.754085, 50.835508], [-119.75429, 50.83534], [-119.754362, 50.835141], [-119.75431, 50.834999], [-119.754104, 50.83485], [-119.754725, 50.834323], [-119.754868, 50.834086], [-119.755013, 50.833391], [-119.754934, 50.832321], [-119.755359, 50.83179], [-119.755368, 50.831457], [-119.755528, 50.831066], [-119.756243, 50.830653], [-119.75644, 50.830388], [-119.756786, 50.830245], [-119.757238, 50.830172], [-119.757555, 50.830019], [-119.758024, 50.829568], [-119.758695, 50.829138], [-119.758862, 50.828846], [-119.759162, 50.828624], [-119.75928, 50.82845], [-119.759291, 50.828162], [-119.75897, 50.827774], [-119.758586, 50.827504], [-119.757871, 50.827197], [-119.757779, 50.826858], [-119.75787, 50.826477], [-119.757652, 50.826131], [-119.757661, 50.82606], [-119.757954, 50.825945], [-119.758301, 50.825577], [-119.75897, 50.825129], [-119.759431, 50.824506], [-119.759317, 50.824015], [-119.758877, 50.823531], [-119.758674, 50.822995], [-119.758664, 50.822816], [-119.758883, 50.82239], [-119.745486, 50.807701], [-119.723471, 50.783329], [-119.722438, 50.782293], [-119.721121, 50.780819], [-119.720684, 50.781639], [-119.720537, 50.783765], [-119.719972, 50.78502], [-119.719215, 50.78591], [-119.719034, 50.786229], [-119.718506, 50.788364], [-119.717932, 50.789717], [-119.717777, 50.790711], [-119.717381, 50.791476], [-119.717247, 50.793818], [-119.716869, 50.794636], [-119.71693, 50.7952], [-119.717197, 50.795662], [-119.717877, 50.796367], [-119.718866, 50.796999], [-119.719883, 50.797939], [-119.720102, 50.798257], [-119.720216, 50.798525], [-119.720294, 50.799117], [-119.720103, 50.800245], [-119.720148, 50.800523], [-119.720761, 50.801561], [-119.721234, 50.801847], [-119.721469, 50.802246], [-119.722032, 50.802665], [-119.722243, 50.803119], [-119.722341, 50.80479], [-119.72267, 50.805304], [-119.722675, 50.805879], [-119.722484, 50.806296], [-119.722056, 50.806712], [-119.721793, 50.807339], [-119.721393, 50.807779], [-119.720865, 50.808701], [-119.720924, 50.809239], [-119.721326, 50.810281], [-119.721257, 50.810553], [-119.720948, 50.811119], [-119.720744, 50.811285], [-119.720619, 50.811288], [-119.72107, 50.810287], [-119.72095, 50.80967], [-119.720587, 50.809039], [-119.720381, 50.80891], [-119.719934, 50.808795], [-119.719716, 50.80897], [-119.719603, 50.809216], [-119.719244, 50.809638], [-119.718794, 50.810467], [-119.718511, 50.811184], [-119.718371, 50.811952], [-119.717405, 50.812928], [-119.716282, 50.814852], [-119.715689, 50.815675], [-119.714664, 50.816562], [-119.713935, 50.816975], [-119.713346, 50.817133], [-119.712671, 50.817472], [-119.711811, 50.81832], [-119.711422, 50.819201], [-119.711253, 50.819943], [-119.710985, 50.820489], [-119.710953, 50.820913], [-119.709236, 50.823884], [-119.708878, 50.82527], [-119.708022, 50.826215], [-119.707318, 50.826789], [-119.706373, 50.827171], [-119.705507, 50.827407], [-119.705247, 50.827566], [-119.704939, 50.827654], [-119.704221, 50.827769], [-119.703384, 50.827781], [-119.701546, 50.82767], [-119.700641, 50.827754], [-119.699764, 50.828053], [-119.699143, 50.82859], [-119.698859, 50.829091], [-119.698728, 50.829794], [-119.698778, 50.8309], [-119.69859, 50.831345], [-119.698072, 50.831934], [-119.697704, 50.83223], [-119.697408, 50.832273], [-119.696904, 50.832157], [-119.696722, 50.832171], [-119.69638, 50.832414], [-119.696376, 50.832593], [-119.696554, 50.832706], [-119.696852, 50.832708], [-119.697874, 50.832468], [-119.69923, 50.832347], [-119.699537, 50.832466], [-119.699877, 50.832718], [-119.700502, 50.83345], [-119.700632, 50.833727], [-119.700998, 50.835392], [-119.700989, 50.835733], [-119.700659, 50.835947], [-119.699521, 50.836145], [-119.698865, 50.836332], [-119.697893, 50.837103], [-119.717001, 50.837306], [-119.73994, 50.837329]]]]}, "properties": {"name": "Sahhaltkum 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Sahhaltkum 4", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933884", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.199323, 51.422951], [-120.200022, 51.421929], [-120.200356, 51.421654], [-120.19868, 51.421096], [-120.197488, 51.422909], [-120.197821, 51.423001], [-120.198211, 51.422598], [-120.199323, 51.422951]]]]}, "properties": {"name": "Nekalliston 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nekalliston 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933886", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.154317, 51.347483], [-120.155132, 51.347274], [-120.160582, 51.346931], [-120.162608, 51.346887], [-120.163717, 51.346605], [-120.168582, 51.346419], [-120.168474, 51.346235], [-120.167848, 51.345698], [-120.168169, 51.345156], [-120.16823, 51.343926], [-120.167798, 51.342764], [-120.167616, 51.34248], [-120.167451, 51.341892], [-120.167072, 51.341488], [-120.166895, 51.341365], [-120.166272, 51.341189], [-120.165679, 51.340815], [-120.165425, 51.340502], [-120.164548, 51.340509], [-120.163681, 51.340361], [-120.162674, 51.339924], [-120.16233, 51.339699], [-120.161931, 51.339636], [-120.16071, 51.339642], [-120.159769, 51.339548], [-120.159581, 51.339561], [-120.158776, 51.33982], [-120.158435, 51.339749], [-120.157488, 51.339734], [-120.156819, 51.339394], [-120.156513, 51.33901], [-120.156572, 51.338759], [-120.157202, 51.338333], [-120.157288, 51.338102], [-120.157197, 51.337937], [-120.156425, 51.337172], [-120.156385, 51.336668], [-120.15654, 51.336492], [-120.157777, 51.335982], [-120.158537, 51.335533], [-120.159043, 51.33505], [-120.159578, 51.334721], [-120.161152, 51.33413], [-120.162008, 51.333971], [-120.163074, 51.333925], [-120.163275, 51.333704], [-120.164028, 51.333373], [-120.165702, 51.333458], [-120.166741, 51.333384], [-120.16815, 51.332897], [-120.168741, 51.332605], [-120.169913, 51.33177], [-120.170416, 51.331269], [-120.17089, 51.330561], [-120.170891, 51.32753], [-120.170623, 51.326076], [-120.169516, 51.323054], [-120.168971, 51.322096], [-120.166973, 51.320536], [-120.165934, 51.319899], [-120.164892, 51.319119], [-120.16431, 51.318799], [-120.163638, 51.318297], [-120.157802, 51.315161], [-120.156124, 51.314445], [-120.154914, 51.314056], [-120.154058, 51.313513], [-120.15326, 51.31273], [-120.153107, 51.31243], [-120.153129, 51.311602], [-120.153434, 51.310161], [-120.153427, 51.309568], [-120.153154, 51.308869], [-120.153239, 51.306127], [-120.15368, 51.305247], [-120.153754, 51.304512], [-120.154154, 51.303389], [-120.154702, 51.301269], [-120.155657, 51.299755], [-120.155811, 51.299345], [-120.155923, 51.298439], [-120.156363, 51.297595], [-120.156818, 51.297193], [-120.157761, 51.296785], [-120.158347, 51.296376], [-120.159042, 51.295565], [-120.159569, 51.295164], [-120.160207, 51.294846], [-120.161731, 51.294308], [-120.16275, 51.294071], [-120.163467, 51.294071], [-120.16395, 51.29393], [-120.164594, 51.293936], [-120.164801, 51.293842], [-120.164822, 51.293744], [-120.165055, 51.293668], [-120.165831, 51.293661], [-120.166598, 51.293536], [-120.168524, 51.293483], [-120.169652, 51.293348], [-120.170396, 51.293141], [-120.170559, 51.293037], [-120.17073, 51.29261], [-120.170742, 51.291962], [-120.170504, 51.291373], [-120.169238, 51.28957], [-120.168769, 51.289028], [-120.168405, 51.288201], [-120.16804, 51.287607], [-120.167324, 51.286871], [-120.166587, 51.286285], [-120.164886, 51.285256], [-120.162792, 51.283621], [-120.161961, 51.283142], [-120.160819, 51.28235], [-120.160455, 51.281981], [-120.158837, 51.280997], [-120.158477, 51.280566], [-120.158087, 51.279909], [-120.156957, 51.278928], [-120.156406, 51.27833], [-120.156183, 51.278236], [-120.15574, 51.278206], [-120.155342, 51.277908], [-120.154948, 51.277791], [-120.15433, 51.276904], [-120.15419, 51.276585], [-120.154223, 51.276074], [-120.154927, 51.275362], [-120.155227, 51.27492], [-120.155365, 51.274275], [-120.155429, 51.272792], [-120.156035, 51.272493], [-120.156297, 51.272211], [-120.156336, 51.27134], [-120.156474, 51.270957], [-120.156776, 51.270497], [-120.15725, 51.266504], [-120.15754, 51.265784], [-120.157902, 51.265244], [-120.15956, 51.263702], [-120.161879, 51.262121], [-120.162588, 51.261823], [-120.164323, 51.261352], [-120.165074, 51.261253], [-120.165877, 51.261246], [-120.166081, 51.261169], [-120.169707, 51.258865], [-120.171258, 51.257643], [-120.171491, 51.257352], [-120.171822, 51.256865], [-120.173098, 51.254063], [-120.173034, 51.253711], [-120.172397, 51.252634], [-120.170706, 51.251001], [-120.169456, 51.249657], [-120.16906, 51.249118], [-120.168221, 51.248287], [-120.16639, 51.246857], [-120.165343, 51.246158], [-120.164718, 51.245828], [-120.163782, 51.245463], [-120.162667, 51.244923], [-120.161201, 51.243835], [-120.159682, 51.2429], [-120.158227, 51.241635], [-120.147574, 51.243103], [-120.143902, 51.243063], [-120.143879, 51.26958], [-120.146877, 51.271529], [-120.146142, 51.275001], [-120.148252, 51.277855], [-120.147961, 51.284041], [-120.149306, 51.28469], [-120.147452, 51.289006], [-120.144806, 51.290158], [-120.141063, 51.294054], [-120.152388, 51.304598], [-120.152487, 51.311245], [-120.152363, 51.312371], [-120.152169, 51.312726], [-120.151833, 51.312976], [-120.151405, 51.313238], [-120.150465, 51.313639], [-120.150165, 51.313876], [-120.146324, 51.316159], [-120.135439, 51.31602], [-120.135462, 51.32334], [-120.147852, 51.323171], [-120.150658, 51.323181], [-120.150864, 51.327061], [-120.149952, 51.331062], [-120.152465, 51.340005], [-120.145504, 51.34855], [-120.146561, 51.348508], [-120.147141, 51.348864], [-120.147479, 51.34898], [-120.147907, 51.349009], [-120.149675, 51.348547], [-120.150316, 51.348174], [-120.152542, 51.347828], [-120.153604, 51.347511], [-120.154317, 51.347483]]]]}, "properties": {"name": "North Thompson 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "North Thompson 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933887", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.126285, 51.134724], [-120.126486, 51.134786], [-120.127149, 51.135078], [-120.127818, 51.133976], [-120.124978, 51.133261], [-120.124397, 51.134125], [-120.124635, 51.135261], [-120.125161, 51.13511], [-120.125883, 51.134768], [-120.126285, 51.134724]]]]}, "properties": {"name": "Louis Creek 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Louis Creek 4", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933888", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.78611, 51.080144], [-119.785951, 51.078834], [-119.785742, 51.078919], [-119.785583, 51.078878], [-119.785334, 51.078785], [-119.78496, 51.078496], [-119.783092, 51.07784], [-119.782788, 51.077776], [-119.782061, 51.077793], [-119.781018, 51.077287], [-119.780096, 51.077156], [-119.779625, 51.076915], [-119.779306, 51.076589], [-119.778933, 51.076581], [-119.778358, 51.076289], [-119.777395, 51.075934], [-119.777063, 51.075879], [-119.776164, 51.075854], [-119.774926, 51.076668], [-119.773411, 51.076856], [-119.773722, 51.080524], [-119.774842, 51.080525], [-119.78611, 51.080144]]]]}, "properties": {"name": "Squaam 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Squaam 2", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933889", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.605142, 50.853933], [-119.605328, 50.853716], [-119.605761, 50.853438], [-119.606872, 50.853007], [-119.607943, 50.852727], [-119.609062, 50.852555], [-119.610193, 50.852178], [-119.610644, 50.851898], [-119.610762, 50.851685], [-119.611433, 50.851264], [-119.612001, 50.850923], [-119.61337, 50.850265], [-119.614018, 50.849717], [-119.614964, 50.849081], [-119.615809, 50.848563], [-119.616615, 50.848127], [-119.616852, 50.848057], [-119.617032, 50.847877], [-119.617249, 50.847797], [-119.617658, 50.847367], [-119.61863, 50.846715], [-119.619826, 50.846299], [-119.620081, 50.846168], [-119.620105, 50.846066], [-119.620385, 50.845817], [-119.621859, 50.845184], [-119.623617, 50.844562], [-119.62407, 50.844293], [-119.624503, 50.844268], [-119.625404, 50.844081], [-119.625957, 50.843847], [-119.626632, 50.843386], [-119.627531, 50.842906], [-119.628374, 50.842641], [-119.629525, 50.842079], [-119.630432, 50.841883], [-119.632373, 50.841135], [-119.633112, 50.840695], [-119.634523, 50.840038], [-119.634822, 50.839764], [-119.636609, 50.839131], [-119.637253, 50.839099], [-119.637991, 50.838855], [-119.63829, 50.838581], [-119.638569, 50.837997], [-119.634484, 50.836984], [-119.634354, 50.838284], [-119.633068, 50.839064], [-119.623337, 50.840488], [-119.623204, 50.842007], [-119.619533, 50.842008], [-119.619356, 50.843355], [-119.615355, 50.843135], [-119.614644, 50.846278], [-119.60846, 50.846267], [-119.6082, 50.849712], [-119.60239, 50.849841], [-119.602273, 50.853882], [-119.605142, 50.853933]]]]}, "properties": {"name": "Stequmwhulpa 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Stequmwhulpa 5", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933892", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.336051, 50.430534], [-121.338602, 50.430565], [-121.338647, 50.425434], [-121.335741, 50.425635], [-121.336051, 50.430534]]]]}, "properties": {"name": "Twoyqhalsht 16", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Twoyqhalsht 16", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933893", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.356411, 50.417502], [-121.35667, 50.417344], [-121.357367, 50.417154], [-121.358073, 50.416878], [-121.357137, 50.41598], [-121.354217, 50.416168], [-121.354865, 50.417777], [-121.355658, 50.41768], [-121.356411, 50.417502]]]]}, "properties": {"name": "Shawniken 4B", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Shawniken 4B", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933895", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.553047, 50.110897], [-121.556061, 50.110795], [-121.555985, 50.105317], [-121.552655, 50.105354], [-121.553047, 50.110897]]]]}, "properties": {"name": "Nekliptum 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Nekliptum 1", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933896", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.544082, 50.054895], [-121.545287, 50.057051], [-121.546124, 50.056913], [-121.544541, 50.054733], [-121.544082, 50.054895]]], [[[-121.542721, 50.054156], [-121.543135, 50.054121], [-121.542682, 50.052408], [-121.542107, 50.052388], [-121.542721, 50.054156]]], [[[-121.54175, 50.057913], [-121.542635, 50.057773], [-121.541718, 50.054721], [-121.54175, 50.057913]]]]}, "properties": {"name": "Boothroyd 8A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Boothroyd 8A", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933897", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.758883, 50.82239], [-119.75906, 50.821835], [-119.759495, 50.821258], [-119.759448, 50.820476], [-119.759768, 50.819164], [-119.760323, 50.818459], [-119.760433, 50.818133], [-119.760326, 50.817793], [-119.760352, 50.817019], [-119.760286, 50.816858], [-119.759507, 50.816418], [-119.758859, 50.815767], [-119.758735, 50.815591], [-119.758694, 50.815161], [-119.758538, 50.814903], [-119.758545, 50.814543], [-119.758978, 50.813688], [-119.75918, 50.812532], [-119.758747, 50.811489], [-119.758732, 50.81121], [-119.758296, 50.810582], [-119.758433, 50.809733], [-119.758721, 50.809115], [-119.758808, 50.808663], [-119.75877, 50.807998], [-119.758951, 50.807698], [-119.759989, 50.807007], [-119.760585, 50.806751], [-119.76144, 50.806568], [-119.761738, 50.806336], [-119.761805, 50.806029], [-119.761458, 50.804939], [-119.761667, 50.804422], [-119.761788, 50.804293], [-119.762026, 50.80426], [-119.76219, 50.80413], [-119.762331, 50.80339], [-119.762289, 50.802905], [-119.762428, 50.802641], [-119.762456, 50.802155], [-119.762326, 50.801618], [-119.762602, 50.801242], [-119.763035, 50.801125], [-119.763766, 50.801025], [-119.763994, 50.800786], [-119.763616, 50.800661], [-119.763438, 50.80053], [-119.763289, 50.800399], [-119.763278, 50.800211], [-119.762566, 50.799687], [-119.761578, 50.799531], [-119.758748, 50.79922], [-119.757713, 50.798975], [-119.757587, 50.798779], [-119.757609, 50.798653], [-119.759234, 50.796618], [-119.759822, 50.795282], [-119.760783, 50.79426], [-119.762064, 50.793555], [-119.762884, 50.793275], [-119.763591, 50.793241], [-119.763862, 50.793271], [-119.764267, 50.793413], [-119.764582, 50.793433], [-119.764863, 50.793175], [-119.765121, 50.792728], [-119.765213, 50.792339], [-119.765206, 50.792006], [-119.765064, 50.791767], [-119.764759, 50.791611], [-119.764145, 50.791546], [-119.764003, 50.791576], [-119.763759, 50.791752], [-119.763133, 50.792442], [-119.762774, 50.792604], [-119.762493, 50.792655], [-119.762065, 50.792647], [-119.761589, 50.792506], [-119.761104, 50.792211], [-119.760609, 50.791782], [-119.760553, 50.79155], [-119.760669, 50.791331], [-119.76261, 50.789603], [-119.764944, 50.788045], [-119.765891, 50.787726], [-119.766149, 50.787523], [-119.766636, 50.786432], [-119.766823, 50.785744], [-119.766895, 50.785022], [-119.767868, 50.784459], [-119.768086, 50.784067], [-119.768529, 50.783634], [-119.76857, 50.783345], [-119.768453, 50.783069], [-119.768442, 50.782412], [-119.768305, 50.78175], [-119.768394, 50.781361], [-119.768345, 50.780994], [-119.768065, 50.780568], [-119.767392, 50.78], [-119.766994, 50.779479], [-119.767001, 50.779155], [-119.767365, 50.778588], [-119.768253, 50.777992], [-119.769816, 50.777315], [-119.771286, 50.776498], [-119.772504, 50.775525], [-119.774275, 50.774502], [-119.776782, 50.772544], [-119.778117, 50.771352], [-119.779341, 50.770703], [-119.77994, 50.770284], [-119.780284, 50.769898], [-119.780411, 50.769399], [-119.78075, 50.768888], [-119.780651, 50.768405], [-119.780707, 50.767908], [-119.782585, 50.76611], [-119.783155, 50.765188], [-119.784435, 50.764536], [-119.784678, 50.764324], [-119.784622, 50.764109], [-119.784231, 50.763723], [-119.783663, 50.763466], [-119.782711, 50.763453], [-119.781753, 50.763574], [-119.780607, 50.763593], [-119.779321, 50.763183], [-119.778462, 50.76306], [-119.777823, 50.763075], [-119.777197, 50.76327], [-119.776579, 50.763365], [-119.775765, 50.763277], [-119.775166, 50.762959], [-119.774894, 50.762704], [-119.774833, 50.761897], [-119.774681, 50.761252], [-119.773946, 50.760334], [-119.773829, 50.760256], [-119.773182, 50.760136], [-119.772378, 50.760182], [-119.771779, 50.760152], [-119.770612, 50.75981], [-119.770206, 50.759658], [-119.769467, 50.759172], [-119.768911, 50.758645], [-119.768062, 50.75819], [-119.766626, 50.756919], [-119.766041, 50.755431], [-119.765618, 50.754964], [-119.764786, 50.754588], [-119.764271, 50.754259], [-119.763515, 50.753944], [-119.762701, 50.753379], [-119.76156, 50.752766], [-119.761126, 50.752399], [-119.76012, 50.751191], [-119.760077, 50.750482], [-119.759817, 50.750137], [-119.758834, 50.749818], [-119.757948, 50.749929], [-119.757364, 50.750158], [-119.756651, 50.750292], [-119.755914, 50.750301], [-119.755485, 50.75024], [-119.754303, 50.750203], [-119.755537, 50.747099], [-119.756327, 50.745968], [-119.756995, 50.745152], [-119.758564, 50.743882], [-119.759515, 50.742573], [-119.761142, 50.740986], [-119.762708, 50.739737], [-119.763228, 50.73916], [-119.744038, 50.730495], [-119.712578, 50.758265], [-119.709394, 50.761004], [-119.695893, 50.772964], [-119.713934, 50.780884], [-119.714073, 50.783775], [-119.714449, 50.784274], [-119.716433, 50.785836], [-119.717769, 50.783586], [-119.718086, 50.782525], [-119.718785, 50.780839], [-119.719808, 50.779373], [-119.722438, 50.782293], [-119.723471, 50.783329], [-119.758883, 50.82239]]]]}, "properties": {"name": "Neskonlith", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Neskonlith", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933898", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.303607, 50.468241], [-121.312819, 50.47231], [-121.320065, 50.465724], [-121.311491, 50.461293], [-121.303607, 50.468241]]], [[[-121.345878, 50.421862], [-121.34397, 50.422496], [-121.345044, 50.423833], [-121.346306, 50.423448], [-121.346154, 50.422484], [-121.346244, 50.421272], [-121.345589, 50.421407], [-121.345878, 50.421862]]], [[[-121.346063, 50.424873], [-121.346117, 50.423745], [-121.345203, 50.42402], [-121.346063, 50.424873]]]]}, "properties": {"name": "Entlqwekkinh 19", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Entlqwekkinh 19", "economic_region_id": "5930", "census_division_code": "5933", "census_subdivision_code": "5933899", "regional_district_aka_census_division": "Thompson-Nicola"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.395419, 50.02598], [-119.39779, 50.022458], [-119.398623, 50.022553], [-119.399124, 50.022537], [-119.399146, 50.020113], [-119.391704, 50.020138], [-119.39172, 50.008816], [-119.391647, 50.008455], [-119.391286, 50.007872], [-119.391636, 50.007584], [-119.390481, 50.006023], [-119.384295, 50.005736], [-119.384339, 50.004949], [-119.385486, 49.9967], [-119.388872, 49.996161], [-119.388262, 49.996842], [-119.387848, 49.997507], [-119.387599, 49.998115], [-119.387274, 49.999998], [-119.387373, 50.000601], [-119.387581, 50.000859], [-119.388144, 50.001225], [-119.388706, 50.001312], [-119.389531, 50.001628], [-119.390017, 50.002121], [-119.390845, 50.002483], [-119.390949, 50.002624], [-119.39092, 50.00285], [-119.392422, 50.003034], [-119.393101, 50.003219], [-119.39345, 50.003256], [-119.394431, 50.003614], [-119.394719, 50.003797], [-119.394988, 50.004124], [-119.395259, 50.004263], [-119.396247, 50.004494], [-119.398016, 50.004673], [-119.398419, 50.004648], [-119.399082, 50.004507], [-119.399582, 50.00448], [-119.399697, 50.004512], [-119.399727, 50.004863], [-119.400031, 50.005064], [-119.4002, 50.005105], [-119.400049, 50.004586], [-119.399819, 50.004186], [-119.399331, 50.003908], [-119.398791, 50.003424], [-119.398562, 50.003051], [-119.398507, 50.002765], [-119.398602, 50.00243], [-119.398567, 50.002009], [-119.3985, 50.001812], [-119.398311, 50.001627], [-119.398011, 50.00148], [-119.397888, 50.000691], [-119.397914, 50.000402], [-119.398276, 50.00008], [-119.399379, 49.999545], [-119.399598, 49.999189], [-119.399825, 49.998986], [-119.401663, 49.998328], [-119.403123, 49.997651], [-119.403452, 49.997373], [-119.403744, 49.997437], [-119.403707, 49.997381], [-119.403934, 49.997387], [-119.403176, 49.999407], [-119.402919, 50.000791], [-119.402888, 50.005403], [-119.408838, 50.005753], [-119.42379, 50.005854], [-119.437946, 50.005715], [-119.446403, 50.005939], [-119.446469, 50.005536], [-119.462901, 50.004359], [-119.464007, 49.998135], [-119.465511, 49.993787], [-119.467396, 49.989529], [-119.470476, 49.980715], [-119.474284, 49.973366], [-119.47899, 49.966716], [-119.479306, 49.964295], [-119.479794, 49.961781], [-119.481685, 49.947674], [-119.484519, 49.940936], [-119.502429, 49.922555], [-119.514904, 49.909953], [-119.51828, 49.903975], [-119.518647, 49.900521], [-119.517598, 49.897157], [-119.514108, 49.89277], [-119.511501, 49.878743], [-119.515459, 49.850934], [-119.517044, 49.845415], [-119.52219, 49.836865], [-119.523702, 49.835209], [-119.527418, 49.83203], [-119.529007, 49.830839], [-119.532349, 49.82854], [-119.535224, 49.826959], [-119.539361, 49.824417], [-119.542985, 49.822551], [-119.549639, 49.818879], [-119.556496, 49.814862], [-119.564555, 49.810006], [-119.573944, 49.805932], [-119.582835, 49.803331], [-119.589777, 49.801469], [-119.588926, 49.782638], [-119.58885, 49.773401], [-119.544972, 49.77412], [-119.544889, 49.780992], [-119.524025, 49.781023], [-119.517669, 49.781281], [-119.512551, 49.781291], [-119.51285, 49.788993], [-119.510519, 49.788949], [-119.501078, 49.788587], [-119.48711, 49.788425], [-119.48332, 49.788448], [-119.479321, 49.78827], [-119.455501, 49.788334], [-119.455448, 49.793955], [-119.444023, 49.793932], [-119.444373, 49.808127], [-119.435943, 49.808585], [-119.421365, 49.808856], [-119.421362, 49.816373], [-119.412911, 49.816353], [-119.409767, 49.816261], [-119.409618, 49.823029], [-119.400412, 49.8235], [-119.398123, 49.823508], [-119.397952, 49.823294], [-119.397687, 49.823191], [-119.395661, 49.822915], [-119.395258, 49.822951], [-119.394763, 49.823073], [-119.393722, 49.823499], [-119.393388, 49.823531], [-119.393095, 49.823484], [-119.392834, 49.823364], [-119.39231, 49.823888], [-119.388972, 49.824136], [-119.380572, 49.824303], [-119.376086, 49.824249], [-119.354123, 49.824507], [-119.353973, 49.831244], [-119.342096, 49.831465], [-119.342143, 49.834958], [-119.34204, 49.840697], [-119.342302, 49.852878], [-119.33458, 49.852892], [-119.319963, 49.852799], [-119.319955, 49.861829], [-119.320083, 49.874545], [-119.330759, 49.874709], [-119.330851, 49.885002], [-119.331676, 49.908677], [-119.331267, 49.918082], [-119.351855, 49.91806], [-119.352973, 49.920283], [-119.353844, 49.920168], [-119.364208, 49.920127], [-119.364186, 49.92167], [-119.372206, 49.921839], [-119.37222, 49.922347], [-119.37197, 49.922636], [-119.371411, 49.922952], [-119.370248, 49.923018], [-119.37026, 49.923573], [-119.370767, 49.923571], [-119.371247, 49.929458], [-119.382418, 49.929068], [-119.382073, 49.931204], [-119.375523, 49.931269], [-119.375483, 49.935399], [-119.377998, 49.935627], [-119.377537, 49.940002], [-119.364107, 49.9399], [-119.364111, 49.940339], [-119.3644, 49.940786], [-119.365872, 49.941535], [-119.367916, 49.943784], [-119.368636, 49.945278], [-119.368878, 49.960359], [-119.375915, 49.960304], [-119.375479, 49.967351], [-119.375563, 49.970444], [-119.370123, 49.970422], [-119.369256, 49.968417], [-119.367719, 49.9684], [-119.366172, 49.968641], [-119.365709, 49.968647], [-119.364971, 49.968455], [-119.363248, 49.968457], [-119.36328, 49.969164], [-119.363809, 49.973138], [-119.365169, 49.973156], [-119.365978, 49.9733], [-119.366569, 49.977329], [-119.375831, 49.977066], [-119.375647, 49.981927], [-119.375856, 49.993935], [-119.375807, 49.999668], [-119.375531, 50.005053], [-119.375143, 50.016771], [-119.374659, 50.019993], [-119.385359, 50.02009], [-119.385311, 50.024866], [-119.392024, 50.024721], [-119.392008, 50.021861], [-119.395439, 50.021913], [-119.395419, 50.02598]]]]}, "properties": {"name": "Kelowna", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Kelowna", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935010", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.145353, 50.148355], [-119.146113, 50.151246], [-119.216262, 50.151247], [-119.231784, 50.151214], [-119.237705, 50.151107], [-119.240831, 50.151105], [-119.270405, 50.151154], [-119.330607, 50.151094], [-119.339586, 50.151272], [-119.347507, 50.151304], [-119.347876, 50.15072], [-119.348129, 50.150482], [-119.348619, 50.150175], [-119.348777, 50.149965], [-119.349244, 50.148994], [-119.348598, 50.135095], [-119.348132, 50.128442], [-119.343371, 50.128635], [-119.343338, 50.121259], [-119.337528, 50.12048], [-119.337489, 50.115286], [-119.337581, 50.113378], [-119.327903, 50.113448], [-119.327917, 50.092692], [-119.337752, 50.092396], [-119.338046, 50.092307], [-119.339189, 50.066692], [-119.317186, 50.066483], [-119.317151, 50.059765], [-119.317503, 50.049344], [-119.31774, 50.034083], [-119.305424, 50.033918], [-119.305906, 50.027028], [-119.302246, 50.02692], [-119.289155, 50.026821], [-119.288516, 50.015695], [-119.305142, 50.016086], [-119.310622, 50.016127], [-119.329602, 50.016093], [-119.329382, 50.012029], [-119.352367, 50.011863], [-119.35184, 50.004659], [-119.375531, 50.005053], [-119.375807, 49.999668], [-119.375856, 49.993935], [-119.375647, 49.981927], [-119.375831, 49.977066], [-119.366569, 49.977329], [-119.365978, 49.9733], [-119.365169, 49.973156], [-119.363809, 49.973138], [-119.36328, 49.969164], [-119.363248, 49.968457], [-119.364971, 49.968455], [-119.365709, 49.968647], [-119.366172, 49.968641], [-119.367719, 49.9684], [-119.369256, 49.968417], [-119.370123, 49.970422], [-119.375563, 49.970444], [-119.375479, 49.967351], [-119.375915, 49.960304], [-119.368878, 49.960359], [-119.368636, 49.945278], [-119.367916, 49.943784], [-119.365872, 49.941535], [-119.3644, 49.940786], [-119.364111, 49.940339], [-119.364107, 49.9399], [-119.377537, 49.940002], [-119.377998, 49.935627], [-119.375483, 49.935399], [-119.375523, 49.931269], [-119.382073, 49.931204], [-119.382418, 49.929068], [-119.371247, 49.929458], [-119.370767, 49.923571], [-119.37026, 49.923573], [-119.370248, 49.923018], [-119.371411, 49.922952], [-119.37197, 49.922636], [-119.37222, 49.922347], [-119.372206, 49.921839], [-119.364186, 49.92167], [-119.364208, 49.920127], [-119.353844, 49.920168], [-119.352973, 49.920283], [-119.351855, 49.91806], [-119.331267, 49.918082], [-119.331676, 49.908677], [-119.330851, 49.885002], [-119.330759, 49.874709], [-119.320083, 49.874545], [-119.319955, 49.861829], [-119.319963, 49.852799], [-119.33458, 49.852892], [-119.342302, 49.852878], [-119.34204, 49.840697], [-119.342143, 49.834958], [-119.342096, 49.831465], [-119.353973, 49.831244], [-119.354123, 49.824507], [-119.376086, 49.824249], [-119.380572, 49.824303], [-119.388972, 49.824136], [-119.39231, 49.823888], [-119.392834, 49.823364], [-119.393095, 49.823484], [-119.393388, 49.823531], [-119.393722, 49.823499], [-119.394763, 49.823073], [-119.395258, 49.822951], [-119.395661, 49.822915], [-119.397687, 49.823191], [-119.397952, 49.823294], [-119.398123, 49.823508], [-119.400412, 49.8235], [-119.409618, 49.823029], [-119.409767, 49.816261], [-119.412911, 49.816353], [-119.421362, 49.816373], [-119.421365, 49.808856], [-119.435943, 49.808585], [-119.444373, 49.808127], [-119.444023, 49.793932], [-119.455448, 49.793955], [-119.455501, 49.788334], [-119.479321, 49.78827], [-119.48332, 49.788448], [-119.48711, 49.788425], [-119.501078, 49.788587], [-119.510519, 49.788949], [-119.51285, 49.788993], [-119.512551, 49.781291], [-119.517669, 49.781281], [-119.524025, 49.781023], [-119.544889, 49.780992], [-119.544972, 49.77412], [-119.58885, 49.773401], [-119.588926, 49.782638], [-119.589777, 49.801469], [-119.594365, 49.800259], [-119.606357, 49.797317], [-119.610804, 49.796151], [-119.625595, 49.79245], [-119.636059, 49.790166], [-119.666076, 49.784426], [-119.669254, 49.783879], [-119.682384, 49.780486], [-119.690082, 49.77809], [-119.697462, 49.77516], [-119.697096, 49.760737], [-119.660993, 49.759003], [-119.58685, 49.759907], [-119.55663, 49.760184], [-119.556325, 49.75314], [-119.521041, 49.752972], [-119.519027, 49.752902], [-119.518812, 49.743372], [-119.51932, 49.741301], [-119.517368, 49.734051], [-119.515396, 49.727902], [-119.510821, 49.725378], [-119.501306, 49.730464], [-119.485903, 49.746391], [-119.480312, 49.744707], [-119.458769, 49.725468], [-119.456294, 49.718589], [-119.45632, 49.712485], [-119.453904, 49.702277], [-119.448002, 49.700372], [-119.446787, 49.691254], [-119.442173, 49.69022], [-119.434758, 49.685789], [-119.4301, 49.679745], [-119.427039, 49.675386], [-119.42278, 49.675273], [-119.420875, 49.67651], [-119.420236, 49.67805], [-119.418268, 49.680658], [-119.410751, 49.683313], [-119.405527, 49.684049], [-119.401155, 49.683285], [-119.390416, 49.681886], [-119.381985, 49.679807], [-119.372771, 49.678646], [-119.369276, 49.679672], [-119.368454, 49.681494], [-119.365304, 49.684002], [-119.361573, 49.68668], [-119.355112, 49.689482], [-119.347936, 49.692266], [-119.347852, 49.693644], [-119.342769, 49.694931], [-119.339904, 49.694884], [-119.331829, 49.698453], [-119.325872, 49.697064], [-119.323091, 49.698128], [-119.311492, 49.705715], [-119.295685, 49.715191], [-119.286593, 49.726308], [-119.271825, 49.730213], [-119.269123, 49.739317], [-119.262942, 49.74478], [-119.251405, 49.741086], [-119.238815, 49.738992], [-119.22856, 49.735151], [-119.220186, 49.739239], [-119.206867, 49.737253], [-119.199785, 49.742137], [-119.198411, 49.746955], [-119.202061, 49.753252], [-119.201607, 49.753628], [-119.198862, 49.754681], [-119.18536, 49.758226], [-119.16375, 49.757829], [-119.164018, 49.763862], [-119.152736, 49.764004], [-119.152377, 49.77006], [-119.151684, 49.792653], [-119.153855, 49.799514], [-119.133617, 49.799345], [-119.122063, 49.795549], [-119.115727, 49.790946], [-119.110346, 49.792322], [-119.099644, 49.793222], [-119.085536, 49.799092], [-119.078143, 49.798727], [-119.065504, 49.798213], [-119.058426, 49.807344], [-119.055686, 49.812321], [-119.055252, 49.813777], [-119.05418, 49.815764], [-119.052025, 49.817744], [-119.045812, 49.824286], [-119.042157, 49.829157], [-119.033457, 49.83804], [-119.027877, 49.842968], [-119.024818, 49.845891], [-119.024478, 49.848774], [-119.022185, 49.852231], [-119.014864, 49.854124], [-119.011232, 49.851977], [-119.007592, 49.859749], [-118.995776, 49.86705], [-118.988158, 49.871604], [-118.976761, 49.878656], [-118.975717, 49.884378], [-118.976843, 49.892867], [-118.968934, 49.895646], [-118.964221, 49.903679], [-118.958414, 49.905686], [-118.942323, 49.913948], [-118.934865, 49.915662], [-118.930036, 49.910875], [-118.923053, 49.906099], [-118.914606, 49.902991], [-118.90732, 49.906664], [-118.902359, 49.915667], [-118.902836, 49.919238], [-118.910965, 49.920765], [-118.90744, 49.926394], [-118.905427, 49.929171], [-118.903795, 49.931845], [-118.893297, 49.937523], [-118.883051, 49.937713], [-118.87923, 49.937429], [-118.874893, 49.940542], [-118.867916, 49.941948], [-118.864514, 49.941232], [-118.861003, 49.946576], [-118.857929, 49.951495], [-118.858058, 49.953465], [-118.858455, 49.9569], [-118.852333, 49.957901], [-118.845245, 49.956859], [-118.838159, 49.954952], [-118.837434, 49.954957], [-118.834812, 49.954632], [-118.828726, 49.953388], [-118.826183, 49.952403], [-118.81955, 49.954064], [-118.814926, 49.954319], [-118.808042, 49.955613], [-118.804929, 49.962848], [-118.805028, 49.9646], [-118.80279, 49.965259], [-118.800997, 49.96655], [-118.801421, 49.968207], [-118.801242, 49.973349], [-118.802089, 49.976664], [-118.8021, 49.980987], [-118.797562, 49.987661], [-118.79934, 49.98791], [-118.805339, 49.988465], [-118.808868, 49.989477], [-118.811845, 49.991919], [-118.812148, 49.992287], [-118.817778, 49.995286], [-118.822747, 49.999966], [-118.822121, 50.004472], [-118.816563, 50.007355], [-118.80989, 50.021838], [-118.814604, 50.025836], [-118.823087, 50.022446], [-118.828794, 50.027057], [-118.835039, 50.035764], [-118.859094, 50.036529], [-118.864267, 50.042593], [-118.868902, 50.052789], [-118.879178, 50.053375], [-118.883258, 50.05294], [-118.888323, 50.051708], [-118.889465, 50.051058], [-118.890546, 50.051286], [-118.892269, 50.052085], [-118.895638, 50.053451], [-118.897254, 50.054253], [-118.899184, 50.05484], [-118.901086, 50.054862], [-118.903751, 50.054558], [-118.907797, 50.053905], [-118.909918, 50.05342], [-118.912908, 50.052472], [-118.916, 50.047498], [-118.916976, 50.044431], [-118.918812, 50.043138], [-118.923312, 50.042843], [-118.925469, 50.044244], [-118.928161, 50.044727], [-118.938893, 50.04997], [-118.942929, 50.053493], [-118.944201, 50.054751], [-118.946877, 50.057034], [-118.953095, 50.052048], [-118.956667, 50.04889], [-118.958236, 50.04763], [-118.967389, 50.046417], [-118.977677, 50.045177], [-118.982042, 50.045374], [-118.986924, 50.048038], [-118.997885, 50.047681], [-119.000319, 50.047169], [-119.016489, 50.044458], [-119.030421, 50.040781], [-119.037075, 50.040962], [-119.046222, 50.041685], [-119.064311, 50.037049], [-119.071114, 50.042128], [-119.072364, 50.046026], [-119.076718, 50.045445], [-119.080677, 50.046019], [-119.082222, 50.046095], [-119.086157, 50.047458], [-119.088745, 50.048889], [-119.092129, 50.05212], [-119.094035, 50.052611], [-119.09678, 50.052083], [-119.105469, 50.045314], [-119.114655, 50.045562], [-119.129603, 50.046124], [-119.138356, 50.045718], [-119.143354, 50.04495], [-119.150577, 50.048899], [-119.160489, 50.048199], [-119.173395, 50.049742], [-119.174333, 50.051114], [-119.175872, 50.053806], [-119.177429, 50.055987], [-119.177695, 50.059722], [-119.172575, 50.065186], [-119.16788, 50.06835], [-119.167058, 50.070093], [-119.167495, 50.07129], [-119.172129, 50.075596], [-119.172685, 50.07589], [-119.172969, 50.077098], [-119.170957, 50.082242], [-119.169527, 50.085615], [-119.16827, 50.087615], [-119.165294, 50.093288], [-119.161798, 50.094964], [-119.15341, 50.103829], [-119.152469, 50.104321], [-119.151164, 50.104741], [-119.150117, 50.105828], [-119.14959, 50.107167], [-119.148028, 50.108787], [-119.147318, 50.111608], [-119.145145, 50.114278], [-119.143208, 50.116008], [-119.141001, 50.119268], [-119.140972, 50.12305], [-119.140839, 50.125412], [-119.14041, 50.128873], [-119.140917, 50.133585], [-119.141415, 50.135826], [-119.14126, 50.138851], [-119.141987, 50.142027], [-119.143653, 50.14549], [-119.145353, 50.148355]]]]}, "properties": {"name": "Central Okanagan", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Central Okanagan", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935012", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.327903, 50.113448], [-119.337581, 50.113378], [-119.337489, 50.115286], [-119.337528, 50.12048], [-119.343338, 50.121259], [-119.343371, 50.128635], [-119.348132, 50.128442], [-119.348598, 50.135095], [-119.349244, 50.148994], [-119.348777, 50.149965], [-119.348619, 50.150175], [-119.348129, 50.150482], [-119.347876, 50.15072], [-119.347507, 50.151304], [-119.360331, 50.151864], [-119.369107, 50.151369], [-119.39442, 50.151558], [-119.419634, 50.151363], [-119.424257, 50.151268], [-119.438323, 50.151203], [-119.453167, 50.150747], [-119.474323, 50.149951], [-119.475589, 50.145798], [-119.472831, 50.137606], [-119.473233, 50.134347], [-119.473677, 50.131576], [-119.475144, 50.12886], [-119.476481, 50.127404], [-119.472599, 50.108076], [-119.475156, 50.095512], [-119.475916, 50.088302], [-119.473322, 50.085394], [-119.472663, 50.083498], [-119.472564, 50.082893], [-119.471601, 50.071453], [-119.470789, 50.067061], [-119.470694, 50.064479], [-119.471992, 50.058685], [-119.472767, 50.056182], [-119.469786, 50.048921], [-119.473826, 50.04064], [-119.472127, 50.038139], [-119.470276, 50.03339], [-119.468887, 50.027707], [-119.466114, 50.017684], [-119.466151, 50.009658], [-119.466811, 50.004267], [-119.462901, 50.004359], [-119.446469, 50.005536], [-119.446403, 50.005939], [-119.437946, 50.005715], [-119.42379, 50.005854], [-119.408838, 50.005753], [-119.402888, 50.005403], [-119.402882, 50.009024], [-119.403081, 50.011085], [-119.403008, 50.011243], [-119.403263, 50.015218], [-119.403407, 50.016017], [-119.403539, 50.017784], [-119.403533, 50.020081], [-119.399146, 50.020113], [-119.399124, 50.022537], [-119.398623, 50.022553], [-119.39779, 50.022458], [-119.395419, 50.02598], [-119.395439, 50.021913], [-119.392008, 50.021861], [-119.392024, 50.024721], [-119.385311, 50.024866], [-119.385359, 50.02009], [-119.374659, 50.019993], [-119.375143, 50.016771], [-119.375531, 50.005053], [-119.35184, 50.004659], [-119.352367, 50.011863], [-119.329382, 50.012029], [-119.329602, 50.016093], [-119.310622, 50.016127], [-119.305142, 50.016086], [-119.288516, 50.015695], [-119.289155, 50.026821], [-119.302246, 50.02692], [-119.305906, 50.027028], [-119.305424, 50.033918], [-119.31774, 50.034083], [-119.317503, 50.049344], [-119.317151, 50.059765], [-119.317186, 50.066483], [-119.339189, 50.066692], [-119.338046, 50.092307], [-119.337752, 50.092396], [-119.327917, 50.092692], [-119.327903, 50.113448]]]]}, "properties": {"name": "Lake Country", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lake Country", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935016", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.729676, 49.797558], [-119.738359, 49.801512], [-119.739597, 49.800636], [-119.737484, 49.798708], [-119.734527, 49.797829], [-119.733692, 49.795172], [-119.736665, 49.795176], [-119.736716, 49.792038], [-119.734628, 49.792108], [-119.734695, 49.788183], [-119.736669, 49.788215], [-119.736606, 49.785597], [-119.742021, 49.784671], [-119.745171, 49.784613], [-119.743986, 49.782085], [-119.747724, 49.780805], [-119.748506, 49.773805], [-119.761371, 49.773752], [-119.765461, 49.77356], [-119.765677, 49.766533], [-119.776384, 49.766361], [-119.782151, 49.766325], [-119.782412, 49.762952], [-119.787434, 49.762703], [-119.787836, 49.759077], [-119.80117, 49.758917], [-119.80037, 49.755395], [-119.801334, 49.75534], [-119.800879, 49.754853], [-119.80574, 49.754823], [-119.805345, 49.752736], [-119.800643, 49.752915], [-119.799691, 49.752258], [-119.799027, 49.748929], [-119.776372, 49.748889], [-119.775969, 49.74517], [-119.768349, 49.745763], [-119.766912, 49.745798], [-119.767344, 49.742938], [-119.767643, 49.74216], [-119.767786, 49.741194], [-119.767637, 49.740891], [-119.767748, 49.740009], [-119.767669, 49.739927], [-119.766966, 49.739913], [-119.765658, 49.739359], [-119.764664, 49.739483], [-119.763804, 49.739466], [-119.759808, 49.740117], [-119.757964, 49.74216], [-119.758077, 49.744786], [-119.757184, 49.748523], [-119.756382, 49.750315], [-119.752779, 49.753514], [-119.750327, 49.75593], [-119.745944, 49.761348], [-119.743736, 49.764496], [-119.741296, 49.766536], [-119.737052, 49.769447], [-119.732418, 49.773486], [-119.730023, 49.777841], [-119.728266, 49.779909], [-119.719011, 49.779556], [-119.714657, 49.779824], [-119.709777, 49.781777], [-119.707396, 49.783988], [-119.703238, 49.7882], [-119.699367, 49.791214], [-119.697981, 49.792618], [-119.692951, 49.793628], [-119.687142, 49.794624], [-119.681254, 49.794713], [-119.674497, 49.795992], [-119.670124, 49.797114], [-119.666356, 49.797745], [-119.664598, 49.798744], [-119.662306, 49.799439], [-119.664141, 49.80096], [-119.664356, 49.805684], [-119.669461, 49.805576], [-119.686592, 49.805646], [-119.68659, 49.802029], [-119.704838, 49.802059], [-119.706306, 49.802389], [-119.70673, 49.802552], [-119.707083, 49.802257], [-119.712856, 49.802559], [-119.717449, 49.802339], [-119.720561, 49.802391], [-119.720301, 49.799124], [-119.720679, 49.797657], [-119.721047, 49.795174], [-119.729161, 49.795167], [-119.729676, 49.797558]]]]}, "properties": {"name": "Peachland", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Peachland", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935018", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.761811, 50.232819], [-119.761722, 50.230948], [-119.764582, 50.228187], [-119.766045, 50.226186], [-119.767427, 50.219616], [-119.768173, 50.216537], [-119.765787, 50.203336], [-119.780488, 50.205774], [-119.793759, 50.205486], [-119.796066, 50.20425], [-119.805248, 50.203664], [-119.808053, 50.195555], [-119.814815, 50.192853], [-119.819671, 50.188251], [-119.829327, 50.185993], [-119.832843, 50.183775], [-119.831891, 50.181422], [-119.827894, 50.179823], [-119.821123, 50.18005], [-119.817571, 50.180462], [-119.817152, 50.177783], [-119.81313, 50.176851], [-119.811337, 50.174751], [-119.811101, 50.172022], [-119.808591, 50.167678], [-119.803534, 50.160646], [-119.804384, 50.159733], [-119.802669, 50.154975], [-119.802251, 50.152297], [-119.798606, 50.149768], [-119.792372, 50.14967], [-119.786165, 50.148903], [-119.779661, 50.147731], [-119.780279, 50.14046], [-119.779509, 50.136574], [-119.777057, 50.133194], [-119.780655, 50.131782], [-119.781738, 50.128326], [-119.780043, 50.124224], [-119.777213, 50.119971], [-119.772429, 50.120429], [-119.769557, 50.122453], [-119.765069, 50.123315], [-119.759538, 50.121689], [-119.754361, 50.121605], [-119.750784, 50.123016], [-119.748638, 50.124985], [-119.742759, 50.119345], [-119.741137, 50.116045], [-119.741384, 50.110372], [-119.742008, 50.105573], [-119.743035, 50.103452], [-119.741791, 50.101027], [-119.74345, 50.098717], [-119.746344, 50.096693], [-119.744876, 50.094666], [-119.741728, 50.093145], [-119.747177, 50.089694], [-119.750548, 50.08868], [-119.755017, 50.088819], [-119.759047, 50.086947], [-119.764636, 50.0851], [-119.767052, 50.079596], [-119.761526, 50.073029], [-119.762152, 50.069708], [-119.766386, 50.066426], [-119.766882, 50.063622], [-119.762789, 50.060907], [-119.758505, 50.059889], [-119.757648, 50.05883], [-119.760232, 50.055709], [-119.761068, 50.052324], [-119.761947, 50.047606], [-119.764929, 50.045057], [-119.769114, 50.04315], [-119.773099, 50.042422], [-119.778905, 50.04199], [-119.78433, 50.040684], [-119.789939, 50.039981], [-119.796606, 50.038628], [-119.803234, 50.035475], [-119.806143, 50.032125], [-119.810114, 50.030925], [-119.811414, 50.029215], [-119.810433, 50.027535], [-119.807057, 50.026086], [-119.803878, 50.024907], [-119.803362, 50.021769], [-119.801081, 50.01867], [-119.800738, 50.01858], [-119.800545, 50.017239], [-119.813676, 50.005379], [-119.816597, 50.00259], [-119.818557, 50.000601], [-119.820059, 49.999941], [-119.819675, 49.999942], [-119.820685, 49.999686], [-119.824767, 49.998302], [-119.827694, 49.997427], [-119.828337, 49.993792], [-119.830618, 49.990647], [-119.834958, 49.990667], [-119.836827, 49.990438], [-119.836366, 49.988773], [-119.828845, 49.984497], [-119.828275, 49.98303], [-119.832292, 49.980515], [-119.836963, 49.979941], [-119.840662, 49.980482], [-119.842182, 49.978386], [-119.84567, 49.976192], [-119.855363, 49.97406], [-119.858658, 49.97156], [-119.862052, 49.969195], [-119.866111, 49.968443], [-119.876542, 49.9659], [-119.882793, 49.967443], [-119.887996, 49.966505], [-119.895507, 49.965787], [-119.895644, 49.964913], [-119.893091, 49.96388], [-119.893489, 49.961291], [-119.894504, 49.958844], [-119.900388, 49.956075], [-119.904786, 49.954415], [-119.915561, 49.950659], [-119.917486, 49.948759], [-119.922105, 49.943572], [-119.924843, 49.938955], [-119.927393, 49.936864], [-119.931534, 49.936599], [-119.935773, 49.936463], [-119.938759, 49.933566], [-119.943864, 49.929029], [-119.947154, 49.923064], [-119.943476, 49.918401], [-119.950945, 49.920238], [-119.958044, 49.920869], [-119.967546, 49.926534], [-119.977493, 49.931405], [-119.991971, 49.929255], [-119.997183, 49.928109], [-120.000916, 49.923263], [-120.003494, 49.921284], [-120.009123, 49.92073], [-120.012884, 49.920267], [-120.017854, 49.916619], [-120.022094, 49.913893], [-120.029533, 49.911888], [-120.029104, 49.910251], [-120.026847, 49.9039], [-120.027808, 49.899531], [-120.027647, 49.894683], [-120.033802, 49.892847], [-120.036186, 49.890661], [-120.036315, 49.887847], [-120.034062, 49.884942], [-120.035732, 49.88248], [-120.038631, 49.879976], [-120.041018, 49.877461], [-120.043797, 49.87614], [-120.048301, 49.875124], [-120.053235, 49.872993], [-120.055827, 49.870417], [-120.056815, 49.868315], [-120.052243, 49.864786], [-120.053265, 49.86053], [-120.054833, 49.855615], [-120.046541, 49.857028], [-120.038914, 49.856583], [-120.030798, 49.852993], [-120.017059, 49.844715], [-120.013473, 49.839405], [-120.006048, 49.837234], [-119.991652, 49.833882], [-119.983649, 49.830224], [-119.977963, 49.825197], [-119.968799, 49.819583], [-119.967014, 49.812207], [-119.969102, 49.810422], [-119.972239, 49.806624], [-119.978093, 49.801887], [-119.977558, 49.793319], [-119.984327, 49.789631], [-119.984429, 49.781337], [-119.978681, 49.776681], [-119.979549, 49.773221], [-119.979495, 49.773201], [-119.979896, 49.766449], [-119.979546, 49.766249], [-119.902585, 49.766638], [-119.860089, 49.765952], [-119.837, 49.765657], [-119.835912, 49.712624], [-119.797148, 49.712412], [-119.771748, 49.712441], [-119.754477, 49.711425], [-119.742076, 49.711514], [-119.728671, 49.712061], [-119.738203, 49.720013], [-119.740644, 49.723031], [-119.741581, 49.724819], [-119.741973, 49.731497], [-119.740466, 49.736555], [-119.736956, 49.743361], [-119.732982, 49.74871], [-119.727211, 49.756269], [-119.719558, 49.765247], [-119.716191, 49.767591], [-119.70307, 49.772932], [-119.690082, 49.77809], [-119.682384, 49.780486], [-119.669254, 49.783879], [-119.666076, 49.784426], [-119.648287, 49.787829], [-119.662306, 49.799439], [-119.664598, 49.798744], [-119.666356, 49.797745], [-119.670124, 49.797114], [-119.674497, 49.795992], [-119.681254, 49.794713], [-119.687142, 49.794624], [-119.692951, 49.793628], [-119.697981, 49.792618], [-119.699367, 49.791214], [-119.703238, 49.7882], [-119.707396, 49.783988], [-119.709777, 49.781777], [-119.714657, 49.779824], [-119.719011, 49.779556], [-119.728266, 49.779909], [-119.730023, 49.777841], [-119.732418, 49.773486], [-119.737052, 49.769447], [-119.741296, 49.766536], [-119.743736, 49.764496], [-119.745944, 49.761348], [-119.750327, 49.75593], [-119.752779, 49.753514], [-119.756382, 49.750315], [-119.757184, 49.748523], [-119.758077, 49.744786], [-119.757964, 49.74216], [-119.759808, 49.740117], [-119.763804, 49.739466], [-119.764664, 49.739483], [-119.765658, 49.739359], [-119.766966, 49.739913], [-119.767669, 49.739927], [-119.767748, 49.740009], [-119.767637, 49.740891], [-119.767786, 49.741194], [-119.767643, 49.74216], [-119.767344, 49.742938], [-119.766912, 49.745798], [-119.768349, 49.745763], [-119.775969, 49.74517], [-119.776372, 49.748889], [-119.799027, 49.748929], [-119.799691, 49.752258], [-119.800643, 49.752915], [-119.805345, 49.752736], [-119.80574, 49.754823], [-119.800879, 49.754853], [-119.801334, 49.75534], [-119.80037, 49.755395], [-119.80117, 49.758917], [-119.787836, 49.759077], [-119.787434, 49.762703], [-119.782412, 49.762952], [-119.782151, 49.766325], [-119.776384, 49.766361], [-119.765677, 49.766533], [-119.765461, 49.77356], [-119.761371, 49.773752], [-119.748506, 49.773805], [-119.747724, 49.780805], [-119.743986, 49.782085], [-119.745171, 49.784613], [-119.742021, 49.784671], [-119.736606, 49.785597], [-119.736669, 49.788215], [-119.734695, 49.788183], [-119.734628, 49.792108], [-119.736716, 49.792038], [-119.736665, 49.795176], [-119.733692, 49.795172], [-119.734527, 49.797829], [-119.737484, 49.798708], [-119.739597, 49.800636], [-119.738359, 49.801512], [-119.729676, 49.797558], [-119.729161, 49.795167], [-119.721047, 49.795174], [-119.720679, 49.797657], [-119.720301, 49.799124], [-119.720561, 49.802391], [-119.717449, 49.802339], [-119.712856, 49.802559], [-119.707083, 49.802257], [-119.70673, 49.802552], [-119.707697, 49.803235], [-119.707833, 49.803771], [-119.707962, 49.803821], [-119.708522, 49.803849], [-119.709154, 49.80382], [-119.709194, 49.805704], [-119.715696, 49.805699], [-119.715971, 49.805852], [-119.716262, 49.805914], [-119.716996, 49.805817], [-119.717459, 49.80592], [-119.718283, 49.805997], [-119.722042, 49.806075], [-119.723693, 49.805855], [-119.723862, 49.805691], [-119.725905, 49.805689], [-119.725993, 49.814513], [-119.726292, 49.826416], [-119.726199, 49.834006], [-119.725543, 49.848975], [-119.724933, 49.85909], [-119.714182, 49.858797], [-119.674605, 49.873531], [-119.662756, 49.87985], [-119.662767, 49.889429], [-119.662322, 49.888186], [-119.661742, 49.887165], [-119.661742, 49.887003], [-119.661154, 49.886117], [-119.660155, 49.885969], [-119.659499, 49.885498], [-119.658926, 49.884962], [-119.658015, 49.884789], [-119.657576, 49.884624], [-119.657103, 49.884177], [-119.656889, 49.8841], [-119.656416, 49.883536], [-119.655219, 49.883239], [-119.654402, 49.882844], [-119.653034, 49.882478], [-119.652029, 49.882566], [-119.650885, 49.882286], [-119.649878, 49.882408], [-119.649489, 49.882201], [-119.649252, 49.881918], [-119.648856, 49.881802], [-119.647627, 49.881218], [-119.645728, 49.881585], [-119.644441, 49.882385], [-119.643622, 49.882794], [-119.642897, 49.883053], [-119.641974, 49.882714], [-119.641669, 49.882667], [-119.640067, 49.882686], [-119.639609, 49.882768], [-119.639258, 49.882911], [-119.638769, 49.883363], [-119.637763, 49.8829], [-119.637221, 49.882535], [-119.636496, 49.882299], [-119.635504, 49.882259], [-119.634528, 49.882002], [-119.634139, 49.881975], [-119.63336, 49.882488], [-119.632208, 49.883548], [-119.63201, 49.883598], [-119.630911, 49.883254], [-119.630648, 49.883349], [-119.629973, 49.883779], [-119.628001, 49.884186], [-119.627661, 49.8842], [-119.625838, 49.883666], [-119.625357, 49.883614], [-119.624022, 49.883941], [-119.622839, 49.883851], [-119.622168, 49.884019], [-119.621474, 49.884071], [-119.620512, 49.883804], [-119.619799, 49.883695], [-119.619185, 49.883709], [-119.618712, 49.883566], [-119.618194, 49.883566], [-119.617644, 49.883797], [-119.617805, 49.884045], [-119.618361, 49.884438], [-119.618986, 49.884703], [-119.619673, 49.884867], [-119.619849, 49.884971], [-119.620467, 49.885794], [-119.62083, 49.886575], [-119.621866, 49.887758], [-119.621787, 49.888362], [-119.621156, 49.889], [-119.620886, 49.888996], [-119.619948, 49.888801], [-119.618705, 49.88907], [-119.617697, 49.889733], [-119.617461, 49.889784], [-119.61717, 49.890042], [-119.616606, 49.890334], [-119.615446, 49.891152], [-119.615181, 49.891847], [-119.6154, 49.892772], [-119.614897, 49.893503], [-119.614836, 49.894251], [-119.614928, 49.894905], [-119.614703, 49.895776], [-119.614851, 49.89632], [-119.615332, 49.897235], [-119.615614, 49.89749], [-119.615919, 49.898086], [-119.616911, 49.898081], [-119.618178, 49.898601], [-119.619139, 49.898849], [-119.620293, 49.899717], [-119.621062, 49.90019], [-119.622217, 49.900709], [-119.623236, 49.900736], [-119.624535, 49.900924], [-119.625662, 49.901023], [-119.62683, 49.901275], [-119.627684, 49.901877], [-119.628355, 49.902122], [-119.628919, 49.90219], [-119.629851, 49.901944], [-119.630629, 49.90163], [-119.630988, 49.901928], [-119.631278, 49.902362], [-119.631446, 49.902817], [-119.632098, 49.903385], [-119.632315, 49.903777], [-119.633299, 49.903854], [-119.634202, 49.904124], [-119.636732, 49.904244], [-119.637633, 49.90416], [-119.637862, 49.90456], [-119.637734, 49.905087], [-119.637404, 49.905875], [-119.635916, 49.906727], [-119.635847, 49.907251], [-119.635481, 49.907466], [-119.635685, 49.908001], [-119.636198, 49.908799], [-119.636346, 49.909286], [-119.635512, 49.909435], [-119.634421, 49.909991], [-119.633871, 49.910543], [-119.633421, 49.911975], [-119.633086, 49.91254], [-119.632134, 49.912164], [-119.631491, 49.912189], [-119.630721, 49.912351], [-119.630194, 49.912363], [-119.62924, 49.91224], [-119.628302, 49.911956], [-119.627837, 49.911331], [-119.625845, 49.909556], [-119.624754, 49.909167], [-119.622527, 49.909163], [-119.622177, 49.909306], [-119.621519, 49.909825], [-119.621321, 49.910072], [-119.621092, 49.911534], [-119.620815, 49.912597], [-119.620588, 49.913255], [-119.620131, 49.913841], [-119.620016, 49.913961], [-119.618857, 49.914284], [-119.617903, 49.914053], [-119.617346, 49.914579], [-119.617285, 49.914724], [-119.617316, 49.915542], [-119.617755, 49.916609], [-119.617941, 49.917417], [-119.618205, 49.917859], [-119.618605, 49.918292], [-119.619452, 49.920306], [-119.620085, 49.920994], [-119.61975, 49.921919], [-119.619375, 49.922494], [-119.619177, 49.923191], [-119.619215, 49.924657], [-119.619353, 49.925148], [-119.619704, 49.92577], [-119.619932, 49.926053], [-119.621161, 49.926853], [-119.621863, 49.927008], [-119.623396, 49.927513], [-119.624388, 49.92803], [-119.625725, 49.928435], [-119.626608, 49.928915], [-119.626219, 49.929149], [-119.625052, 49.92949], [-119.624312, 49.930281], [-119.623816, 49.930661], [-119.62274, 49.931306], [-119.621641, 49.932347], [-119.620326, 49.93275], [-119.619536, 49.933096], [-119.618376, 49.933141], [-119.618186, 49.933199], [-119.618237, 49.934551], [-119.618485, 49.935458], [-119.618712, 49.935949], [-119.619696, 49.936619], [-119.621894, 49.937514], [-119.622106, 49.93772], [-119.622199, 49.938038], [-119.621138, 49.937774], [-119.620344, 49.937756], [-119.6192, 49.93807], [-119.618009, 49.938229], [-119.616477, 49.938167], [-119.61582, 49.937678], [-119.615073, 49.937502], [-119.614618, 49.937415], [-119.613661, 49.937367], [-119.611304, 49.937069], [-119.610526, 49.937096], [-119.60923, 49.937237], [-119.607932, 49.937658], [-119.606915, 49.939097], [-119.606679, 49.939589], [-119.60599, 49.940627], [-119.605582, 49.941066], [-119.604231, 49.941924], [-119.603232, 49.942055], [-119.602843, 49.94281], [-119.603156, 49.943739], [-119.603675, 49.944797], [-119.603697, 49.945238], [-119.603507, 49.945215], [-119.603117, 49.945017], [-119.60211, 49.944185], [-119.601897, 49.9441], [-119.601026, 49.94351], [-119.600287, 49.943254], [-119.600424, 49.942846], [-119.600287, 49.942409], [-119.600004, 49.942064], [-119.599684, 49.941829], [-119.598784, 49.941669], [-119.598609, 49.941583], [-119.598372, 49.941309], [-119.597807, 49.939604], [-119.597555, 49.939303], [-119.597405, 49.938605], [-119.578702, 49.938612], [-119.545661, 49.939778], [-119.533453, 49.939809], [-119.533461, 49.934164], [-119.530622, 49.934168], [-119.530542, 49.924554], [-119.52187, 49.924551], [-119.521918, 49.923069], [-119.521992, 49.922914], [-119.521904, 49.922711], [-119.521937, 49.921812], [-119.506987, 49.917951], [-119.484519, 49.940936], [-119.481685, 49.947674], [-119.479794, 49.961781], [-119.479306, 49.964295], [-119.47899, 49.966716], [-119.474284, 49.973366], [-119.470476, 49.980715], [-119.467396, 49.989529], [-119.465511, 49.993787], [-119.464007, 49.998135], [-119.462901, 50.004359], [-119.466811, 50.004267], [-119.466151, 50.009658], [-119.466114, 50.017684], [-119.468887, 50.027707], [-119.470276, 50.03339], [-119.472127, 50.038139], [-119.473826, 50.04064], [-119.469786, 50.048921], [-119.472767, 50.056182], [-119.471992, 50.058685], [-119.470694, 50.064479], [-119.470789, 50.067061], [-119.471601, 50.071453], [-119.472564, 50.082893], [-119.472663, 50.083498], [-119.473322, 50.085394], [-119.475916, 50.088302], [-119.475156, 50.095512], [-119.472599, 50.108076], [-119.476481, 50.127404], [-119.475144, 50.12886], [-119.473677, 50.131576], [-119.473233, 50.134347], [-119.472831, 50.137606], [-119.475589, 50.145798], [-119.474323, 50.149951], [-119.475304, 50.17505], [-119.474023, 50.178303], [-119.471754, 50.182177], [-119.465291, 50.188353], [-119.469617, 50.191033], [-119.462671, 50.202068], [-119.462183, 50.203877], [-119.460763, 50.211189], [-119.460081, 50.215891], [-119.460005, 50.217371], [-119.460157, 50.217487], [-119.460098, 50.217918], [-119.460068, 50.222802], [-119.4605, 50.226349], [-119.459968, 50.227457], [-119.459489, 50.231236], [-119.470822, 50.23152], [-119.471687, 50.234891], [-119.483707, 50.235284], [-119.51179, 50.235323], [-119.531931, 50.235136], [-119.554987, 50.234513], [-119.573435, 50.234118], [-119.588065, 50.233368], [-119.667969, 50.232506], [-119.761811, 50.232819]]]]}, "properties": {"name": "Central Okanagan West", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Central Okanagan West", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935020", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.600287, 49.943254], [-119.601026, 49.94351], [-119.601897, 49.9441], [-119.60211, 49.944185], [-119.603117, 49.945017], [-119.603507, 49.945215], [-119.603697, 49.945238], [-119.603675, 49.944797], [-119.603156, 49.943739], [-119.602843, 49.94281], [-119.603232, 49.942055], [-119.604231, 49.941924], [-119.605582, 49.941066], [-119.60599, 49.940627], [-119.606679, 49.939589], [-119.606915, 49.939097], [-119.607932, 49.937658], [-119.60923, 49.937237], [-119.610526, 49.937096], [-119.611304, 49.937069], [-119.613661, 49.937367], [-119.614618, 49.937415], [-119.61582, 49.937678], [-119.616477, 49.938167], [-119.617268, 49.938231], [-119.618009, 49.938229], [-119.6192, 49.93807], [-119.620344, 49.937756], [-119.621138, 49.937774], [-119.622199, 49.938038], [-119.622106, 49.93772], [-119.621894, 49.937514], [-119.619696, 49.936619], [-119.618712, 49.935949], [-119.618485, 49.935458], [-119.618237, 49.934551], [-119.618186, 49.933199], [-119.618376, 49.933141], [-119.619536, 49.933096], [-119.620326, 49.93275], [-119.621641, 49.932347], [-119.62274, 49.931306], [-119.623816, 49.930661], [-119.624312, 49.930281], [-119.625052, 49.92949], [-119.626219, 49.929149], [-119.626608, 49.928915], [-119.625725, 49.928435], [-119.624388, 49.92803], [-119.623396, 49.927513], [-119.621863, 49.927008], [-119.621161, 49.926853], [-119.619932, 49.926053], [-119.619704, 49.92577], [-119.619353, 49.925148], [-119.619215, 49.924657], [-119.619177, 49.923191], [-119.619375, 49.922494], [-119.61975, 49.921919], [-119.620085, 49.920994], [-119.619452, 49.920306], [-119.618605, 49.918292], [-119.618205, 49.917859], [-119.617941, 49.917417], [-119.617755, 49.916609], [-119.617316, 49.915542], [-119.617285, 49.914724], [-119.617346, 49.914579], [-119.617903, 49.914053], [-119.618857, 49.914284], [-119.620016, 49.913961], [-119.620131, 49.913841], [-119.620588, 49.913255], [-119.620815, 49.912597], [-119.621092, 49.911534], [-119.621321, 49.910072], [-119.621519, 49.909825], [-119.622177, 49.909306], [-119.622527, 49.909163], [-119.624754, 49.909167], [-119.625845, 49.909556], [-119.627837, 49.911331], [-119.628302, 49.911956], [-119.62924, 49.91224], [-119.630194, 49.912363], [-119.630721, 49.912351], [-119.631491, 49.912189], [-119.632134, 49.912164], [-119.633086, 49.91254], [-119.633421, 49.911975], [-119.633871, 49.910543], [-119.634421, 49.909991], [-119.635512, 49.909435], [-119.636346, 49.909286], [-119.636198, 49.908799], [-119.635685, 49.908001], [-119.635481, 49.907466], [-119.635847, 49.907251], [-119.635916, 49.906727], [-119.637404, 49.905875], [-119.637734, 49.905087], [-119.637862, 49.90456], [-119.637633, 49.90416], [-119.636732, 49.904244], [-119.634202, 49.904124], [-119.633299, 49.903854], [-119.632315, 49.903777], [-119.632098, 49.903385], [-119.631446, 49.902817], [-119.631278, 49.902362], [-119.630988, 49.901928], [-119.630629, 49.90163], [-119.629851, 49.901944], [-119.628919, 49.90219], [-119.628355, 49.902122], [-119.627684, 49.901877], [-119.62683, 49.901275], [-119.625662, 49.901023], [-119.624535, 49.900924], [-119.623236, 49.900736], [-119.622217, 49.900709], [-119.621062, 49.90019], [-119.620293, 49.899717], [-119.619139, 49.898849], [-119.618178, 49.898601], [-119.616911, 49.898081], [-119.615919, 49.898086], [-119.615614, 49.89749], [-119.615332, 49.897235], [-119.614851, 49.89632], [-119.614703, 49.895776], [-119.614928, 49.894905], [-119.614836, 49.894251], [-119.614897, 49.893503], [-119.6154, 49.892772], [-119.615181, 49.891847], [-119.615446, 49.891152], [-119.616606, 49.890334], [-119.61717, 49.890042], [-119.617461, 49.889784], [-119.617697, 49.889733], [-119.618705, 49.88907], [-119.619948, 49.888801], [-119.620886, 49.888996], [-119.621156, 49.889], [-119.621787, 49.888362], [-119.621866, 49.887758], [-119.62083, 49.886575], [-119.620467, 49.885794], [-119.619849, 49.884971], [-119.619673, 49.884867], [-119.618986, 49.884703], [-119.618361, 49.884438], [-119.617805, 49.884045], [-119.617644, 49.883797], [-119.618194, 49.883566], [-119.618712, 49.883566], [-119.619185, 49.883709], [-119.619799, 49.883695], [-119.620512, 49.883804], [-119.621474, 49.884071], [-119.622168, 49.884019], [-119.622839, 49.883851], [-119.624022, 49.883941], [-119.625357, 49.883614], [-119.625838, 49.883666], [-119.627661, 49.8842], [-119.628001, 49.884186], [-119.629973, 49.883779], [-119.630648, 49.883349], [-119.630911, 49.883254], [-119.63201, 49.883598], [-119.632208, 49.883548], [-119.63336, 49.882488], [-119.634139, 49.881975], [-119.634528, 49.882002], [-119.635504, 49.882259], [-119.636496, 49.882299], [-119.637221, 49.882535], [-119.637763, 49.8829], [-119.638769, 49.883363], [-119.639258, 49.882911], [-119.639609, 49.882768], [-119.640067, 49.882686], [-119.641669, 49.882667], [-119.641974, 49.882714], [-119.642897, 49.883053], [-119.643622, 49.882794], [-119.644441, 49.882385], [-119.645728, 49.881585], [-119.647627, 49.881218], [-119.648856, 49.881802], [-119.649252, 49.881918], [-119.649489, 49.882201], [-119.649878, 49.882408], [-119.650885, 49.882286], [-119.652029, 49.882566], [-119.653034, 49.882478], [-119.654402, 49.882844], [-119.655219, 49.883239], [-119.656416, 49.883536], [-119.656889, 49.8841], [-119.657103, 49.884177], [-119.657576, 49.884624], [-119.658015, 49.884789], [-119.658926, 49.884962], [-119.659499, 49.885498], [-119.660155, 49.885969], [-119.661154, 49.886117], [-119.661742, 49.887003], [-119.661742, 49.887165], [-119.662322, 49.888186], [-119.662767, 49.889429], [-119.662756, 49.87985], [-119.674605, 49.873531], [-119.714182, 49.858797], [-119.724933, 49.85909], [-119.725543, 49.848975], [-119.726199, 49.834006], [-119.726292, 49.826416], [-119.725993, 49.814513], [-119.725905, 49.805689], [-119.723862, 49.805691], [-119.723693, 49.805855], [-119.722042, 49.806075], [-119.718283, 49.805997], [-119.717459, 49.80592], [-119.716996, 49.805817], [-119.716262, 49.805914], [-119.715971, 49.805852], [-119.715696, 49.805699], [-119.709194, 49.805704], [-119.709154, 49.80382], [-119.708522, 49.803849], [-119.707962, 49.803821], [-119.707833, 49.803771], [-119.707697, 49.803235], [-119.70673, 49.802552], [-119.706306, 49.802389], [-119.704838, 49.802059], [-119.68659, 49.802029], [-119.686592, 49.805646], [-119.669461, 49.805576], [-119.664356, 49.805684], [-119.664141, 49.80096], [-119.648287, 49.787829], [-119.636059, 49.790166], [-119.625595, 49.79245], [-119.610804, 49.796151], [-119.606357, 49.797317], [-119.594365, 49.800259], [-119.584677, 49.802814], [-119.573944, 49.805932], [-119.564555, 49.810006], [-119.556496, 49.814862], [-119.549639, 49.818879], [-119.542985, 49.822551], [-119.539361, 49.824417], [-119.535224, 49.826959], [-119.532349, 49.82854], [-119.529007, 49.830839], [-119.527418, 49.83203], [-119.523702, 49.835209], [-119.52219, 49.836865], [-119.517044, 49.845415], [-119.515459, 49.850934], [-119.511501, 49.878743], [-119.514108, 49.89277], [-119.517598, 49.897157], [-119.518647, 49.900521], [-119.51828, 49.903975], [-119.514904, 49.909953], [-119.506987, 49.917951], [-119.521937, 49.921812], [-119.521904, 49.922711], [-119.521992, 49.922914], [-119.521918, 49.923069], [-119.52187, 49.924551], [-119.530542, 49.924554], [-119.530622, 49.934168], [-119.533461, 49.934164], [-119.533453, 49.939809], [-119.545661, 49.939778], [-119.578702, 49.938612], [-119.597405, 49.938605], [-119.597555, 49.939303], [-119.597807, 49.939604], [-119.598372, 49.941309], [-119.598609, 49.941583], [-119.598784, 49.941669], [-119.599684, 49.941829], [-119.600004, 49.942064], [-119.600287, 49.942409], [-119.600424, 49.942846], [-119.600287, 49.943254]], [[-119.546358, 49.894741], [-119.538807, 49.894817], [-119.538811, 49.894655], [-119.538658, 49.894388], [-119.537563, 49.893414], [-119.536712, 49.892857], [-119.535827, 49.892436], [-119.534832, 49.891773], [-119.532721, 49.890812], [-119.531614, 49.890413], [-119.531323, 49.890429], [-119.531087, 49.890731], [-119.530738, 49.890685], [-119.530666, 49.890641], [-119.530859, 49.890331], [-119.530829, 49.890071], [-119.530714, 49.889966], [-119.527155, 49.888505], [-119.526221, 49.888193], [-119.524584, 49.886995], [-119.524443, 49.886396], [-119.524165, 49.88588], [-119.524177, 49.885053], [-119.524431, 49.884849], [-119.524426, 49.884507], [-119.523894, 49.883349], [-119.523443, 49.88273], [-119.522797, 49.881016], [-119.522775, 49.880612], [-119.522663, 49.880308], [-119.522711, 49.879894], [-119.52254, 49.879547], [-119.522555, 49.87933], [-119.522845, 49.87873], [-119.522847, 49.878505], [-119.522636, 49.878205], [-119.522221, 49.878007], [-119.521391, 49.877809], [-119.520346, 49.877688], [-119.52033, 49.877481], [-119.521006, 49.877359], [-119.521478, 49.877358], [-119.522963, 49.877523], [-119.523534, 49.877528], [-119.524521, 49.877228], [-119.524884, 49.876994], [-119.524863, 49.876842], [-119.524624, 49.87656], [-119.524671, 49.876398], [-119.525139, 49.876279], [-119.525601, 49.876053], [-119.525753, 49.875779], [-119.527228, 49.875225], [-119.527563, 49.875245], [-119.527906, 49.875409], [-119.528059, 49.875405], [-119.528316, 49.875274], [-119.528437, 49.874938], [-119.528298, 49.874419], [-119.529281, 49.87322], [-119.541897, 49.873244], [-119.542617, 49.873177], [-119.543449, 49.872941], [-119.544071, 49.872985], [-119.544019, 49.873321], [-119.544184, 49.873745], [-119.54441, 49.874022], [-119.544563, 49.874076], [-119.544735, 49.874064], [-119.545629, 49.873651], [-119.546546, 49.87339], [-119.546358, 49.894741]], [[-119.596345, 49.856655], [-119.58927, 49.856911], [-119.589086, 49.856245], [-119.589149, 49.853413], [-119.589032, 49.851924], [-119.589116, 49.849858], [-119.589036, 49.839959], [-119.588768, 49.831074], [-119.588901, 49.83068], [-119.593381, 49.83069], [-119.593184, 49.828547], [-119.593197, 49.827797], [-119.599021, 49.827762], [-119.59892, 49.822101], [-119.599354, 49.822209], [-119.600359, 49.822313], [-119.601233, 49.822258], [-119.601554, 49.822295], [-119.603597, 49.823059], [-119.606412, 49.823941], [-119.607487, 49.824249], [-119.608202, 49.824385], [-119.610296, 49.824545], [-119.611838, 49.824519], [-119.612613, 49.824431], [-119.614017, 49.824168], [-119.613751, 49.824535], [-119.609055, 49.825225], [-119.608898, 49.826029], [-119.608824, 49.828119], [-119.608972, 49.828923], [-119.609193, 49.831417], [-119.613261, 49.83133], [-119.613229, 49.831214], [-119.617255, 49.831198], [-119.617256, 49.831379], [-119.619866, 49.830802], [-119.620748, 49.831391], [-119.622677, 49.831102], [-119.624207, 49.829917], [-119.624751, 49.82972], [-119.6254, 49.829618], [-119.625399, 49.830502], [-119.624221, 49.830515], [-119.624463, 49.831321], [-119.6254, 49.831385], [-119.625483, 49.843752], [-119.625393, 49.84405], [-119.6252, 49.847927], [-119.619408, 49.848009], [-119.613432, 49.84798], [-119.605321, 49.847764], [-119.600289, 49.847836], [-119.600876, 49.849433], [-119.600608, 49.853214], [-119.600798, 49.854036], [-119.600767, 49.856685], [-119.596345, 49.856655]], [[-119.619799, 49.827994], [-119.619413, 49.8277], [-119.618187, 49.827135], [-119.617788, 49.826775], [-119.61767, 49.826245], [-119.617895, 49.82559], [-119.617747, 49.825105], [-119.617901, 49.824389], [-119.617894, 49.823991], [-119.618323, 49.824112], [-119.62123, 49.824109], [-119.621767, 49.82426], [-119.623197, 49.824479], [-119.625305, 49.824504], [-119.62538, 49.828682], [-119.624127, 49.828713], [-119.623586, 49.828789], [-119.623081, 49.829056], [-119.622782, 49.829429], [-119.622731, 49.829649], [-119.622373, 49.829585], [-119.621735, 49.829634], [-119.621271, 49.829764], [-119.619799, 49.827994]], [[-119.546928, 49.873234], [-119.546912, 49.873089], [-119.550314, 49.872046], [-119.551412, 49.872462], [-119.552644, 49.871771], [-119.553206, 49.872151], [-119.554184, 49.871607], [-119.554977, 49.872073], [-119.557936, 49.870341], [-119.557879, 49.873401], [-119.55122, 49.873338], [-119.551151, 49.873245], [-119.546928, 49.873234]]], [[[-119.622285, 49.827856], [-119.622618, 49.828032], [-119.624856, 49.828025], [-119.624815, 49.826291], [-119.622236, 49.826172], [-119.622285, 49.827856]]]]}, "properties": {"name": "West Kelowna", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "West Kelowna", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935029", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.391286, 50.007872], [-119.391647, 50.008455], [-119.39172, 50.008816], [-119.391704, 50.020138], [-119.403533, 50.020081], [-119.403539, 50.017784], [-119.403407, 50.016017], [-119.403263, 50.015218], [-119.403008, 50.011243], [-119.403081, 50.011085], [-119.402882, 50.009024], [-119.402919, 50.000791], [-119.403176, 49.999407], [-119.403934, 49.997387], [-119.403707, 49.997381], [-119.403744, 49.997437], [-119.403452, 49.997373], [-119.403123, 49.997651], [-119.401663, 49.998328], [-119.399825, 49.998986], [-119.399598, 49.999189], [-119.399379, 49.999545], [-119.398276, 50.00008], [-119.397914, 50.000402], [-119.397888, 50.000691], [-119.398011, 50.00148], [-119.398311, 50.001627], [-119.3985, 50.001812], [-119.398567, 50.002009], [-119.398602, 50.00243], [-119.398507, 50.002765], [-119.398562, 50.003051], [-119.398791, 50.003424], [-119.399331, 50.003908], [-119.399819, 50.004186], [-119.400049, 50.004586], [-119.4002, 50.005105], [-119.400031, 50.005064], [-119.399727, 50.004863], [-119.399697, 50.004512], [-119.399582, 50.00448], [-119.399082, 50.004507], [-119.398419, 50.004648], [-119.398016, 50.004673], [-119.396247, 50.004494], [-119.395259, 50.004263], [-119.394988, 50.004124], [-119.394719, 50.003797], [-119.394431, 50.003614], [-119.39345, 50.003256], [-119.393101, 50.003219], [-119.392422, 50.003034], [-119.39092, 50.00285], [-119.390949, 50.002624], [-119.390845, 50.002483], [-119.390017, 50.002121], [-119.389531, 50.001628], [-119.388706, 50.001312], [-119.388144, 50.001225], [-119.387581, 50.000859], [-119.387373, 50.000601], [-119.387274, 49.999998], [-119.387599, 49.998115], [-119.387848, 49.997507], [-119.388262, 49.996842], [-119.388872, 49.996161], [-119.385486, 49.9967], [-119.384339, 50.004949], [-119.384295, 50.005736], [-119.390481, 50.006023], [-119.391636, 50.007584], [-119.391286, 50.007872]]]]}, "properties": {"name": "Duck Lake 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Duck Lake 7", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935801", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.589032, 49.851924], [-119.589149, 49.853413], [-119.589086, 49.856245], [-119.58927, 49.856911], [-119.596345, 49.856655], [-119.600767, 49.856685], [-119.600798, 49.854036], [-119.600608, 49.853214], [-119.600876, 49.849433], [-119.600289, 49.847836], [-119.605321, 49.847764], [-119.613432, 49.84798], [-119.619408, 49.848009], [-119.6252, 49.847927], [-119.625393, 49.84405], [-119.625483, 49.843752], [-119.6254, 49.831385], [-119.624463, 49.831321], [-119.624221, 49.830515], [-119.625399, 49.830502], [-119.6254, 49.829618], [-119.624751, 49.82972], [-119.624207, 49.829917], [-119.622677, 49.831102], [-119.620748, 49.831391], [-119.619866, 49.830802], [-119.617256, 49.831379], [-119.617255, 49.831198], [-119.613229, 49.831214], [-119.613261, 49.83133], [-119.609193, 49.831417], [-119.608972, 49.828923], [-119.608824, 49.828119], [-119.608898, 49.826029], [-119.609055, 49.825225], [-119.613751, 49.824535], [-119.614017, 49.824168], [-119.612613, 49.824431], [-119.611838, 49.824519], [-119.610296, 49.824545], [-119.608202, 49.824385], [-119.607487, 49.824249], [-119.606412, 49.823941], [-119.603597, 49.823059], [-119.601554, 49.822295], [-119.601233, 49.822258], [-119.600359, 49.822313], [-119.599354, 49.822209], [-119.59892, 49.822101], [-119.599021, 49.827762], [-119.593197, 49.827797], [-119.593184, 49.828547], [-119.593381, 49.83069], [-119.588901, 49.83068], [-119.588768, 49.831074], [-119.589036, 49.839959], [-119.589116, 49.849858], [-119.589032, 49.851924]]], [[[-119.621271, 49.829764], [-119.621735, 49.829634], [-119.622373, 49.829585], [-119.622731, 49.829649], [-119.622782, 49.829429], [-119.623081, 49.829056], [-119.623586, 49.828789], [-119.624127, 49.828713], [-119.62538, 49.828682], [-119.625305, 49.824504], [-119.623197, 49.824479], [-119.621767, 49.82426], [-119.62123, 49.824109], [-119.618323, 49.824112], [-119.617894, 49.823991], [-119.617901, 49.824389], [-119.617747, 49.825105], [-119.617895, 49.82559], [-119.61767, 49.826245], [-119.617788, 49.826775], [-119.618187, 49.827135], [-119.619413, 49.8277], [-119.619799, 49.827994], [-119.621271, 49.829764]], [[-119.624815, 49.826291], [-119.624856, 49.828025], [-119.622618, 49.828032], [-119.622285, 49.827856], [-119.622236, 49.826172], [-119.624815, 49.826291]]]]}, "properties": {"name": "Tsinstikeptum 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Tsinstikeptum 9", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935802", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.531391, 49.890409], [-119.531614, 49.890413], [-119.532122, 49.890564], [-119.534387, 49.891541], [-119.53509, 49.891921], [-119.536029, 49.892557], [-119.536712, 49.892857], [-119.537563, 49.893414], [-119.538497, 49.894212], [-119.538735, 49.894495], [-119.538807, 49.894817], [-119.546358, 49.894741], [-119.546546, 49.87339], [-119.545629, 49.873651], [-119.544735, 49.874064], [-119.544563, 49.874076], [-119.54441, 49.874022], [-119.544184, 49.873745], [-119.544019, 49.873321], [-119.544071, 49.872985], [-119.543449, 49.872941], [-119.542617, 49.873177], [-119.541897, 49.873244], [-119.529281, 49.87322], [-119.528298, 49.874419], [-119.528437, 49.874938], [-119.528316, 49.875274], [-119.528059, 49.875405], [-119.527906, 49.875409], [-119.527563, 49.875245], [-119.527228, 49.875225], [-119.525753, 49.875779], [-119.525601, 49.876053], [-119.525139, 49.876279], [-119.524671, 49.876398], [-119.524624, 49.87656], [-119.524863, 49.876842], [-119.524884, 49.876994], [-119.524521, 49.877228], [-119.523534, 49.877528], [-119.522963, 49.877523], [-119.521478, 49.877358], [-119.521006, 49.877359], [-119.52033, 49.877481], [-119.520346, 49.877688], [-119.521391, 49.877809], [-119.522221, 49.878007], [-119.522636, 49.878205], [-119.522847, 49.878505], [-119.522845, 49.87873], [-119.522555, 49.87933], [-119.52254, 49.879547], [-119.522711, 49.879894], [-119.522663, 49.880308], [-119.522775, 49.880612], [-119.522797, 49.881016], [-119.523443, 49.88273], [-119.523894, 49.883349], [-119.524426, 49.884507], [-119.524431, 49.884849], [-119.524177, 49.885053], [-119.524165, 49.88588], [-119.524443, 49.886396], [-119.524584, 49.886995], [-119.526221, 49.888193], [-119.527155, 49.888505], [-119.530714, 49.889966], [-119.530829, 49.890071], [-119.530859, 49.890331], [-119.530666, 49.890641], [-119.530738, 49.890685], [-119.531087, 49.890731], [-119.531391, 49.890409]]], [[[-119.551151, 49.873245], [-119.55122, 49.873338], [-119.557879, 49.873401], [-119.557936, 49.870341], [-119.554977, 49.872073], [-119.554184, 49.871607], [-119.553206, 49.872151], [-119.552644, 49.871771], [-119.551412, 49.872462], [-119.550314, 49.872046], [-119.546912, 49.873089], [-119.546928, 49.873234], [-119.551151, 49.873245]]]]}, "properties": {"name": "Tsinstikeptum 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Tsinstikeptum 10", "economic_region_id": "5930", "census_division_code": "5935", "census_subdivision_code": "5935803", "regional_district_aka_census_division": "Central Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.965379, 50.253302], [-118.965375, 50.25348], [-118.965894, 50.253452], [-118.965732, 50.255705], [-118.969597, 50.255729], [-118.96948, 50.256026], [-118.968975, 50.256781], [-118.968952, 50.257064], [-118.96912, 50.257888], [-118.969124, 50.258945], [-118.969534, 50.260072], [-118.96958, 50.260681], [-118.969497, 50.261263], [-118.969279, 50.261876], [-118.968678, 50.262568], [-118.968524, 50.263014], [-118.968592, 50.263407], [-118.969191, 50.264282], [-118.969221, 50.264515], [-118.969086, 50.264869], [-118.98704, 50.264846], [-118.987029, 50.261334], [-118.987653, 50.237804], [-118.98048, 50.237584], [-118.973373, 50.237457], [-118.974328, 50.236842], [-118.966284, 50.236898], [-118.966299, 50.236196], [-118.966128, 50.235279], [-118.965432, 50.235225], [-118.964868, 50.235487], [-118.964924, 50.235846], [-118.965084, 50.235959], [-118.965576, 50.235987], [-118.96592, 50.236162], [-118.966021, 50.236232], [-118.966132, 50.236545], [-118.965747, 50.237099], [-118.964994, 50.237526], [-118.964682, 50.237801], [-118.964777, 50.238402], [-118.964917, 50.238724], [-118.965425, 50.238797], [-118.965543, 50.23892], [-118.96555, 50.2391], [-118.965053, 50.239288], [-118.964536, 50.239665], [-118.964021, 50.239782], [-118.963609, 50.239987], [-118.963173, 50.2403], [-118.962772, 50.240451], [-118.962284, 50.240523], [-118.961512, 50.240526], [-118.960549, 50.24065], [-118.959654, 50.240653], [-118.959214, 50.24079], [-118.958845, 50.241017], [-118.958541, 50.241325], [-118.958482, 50.241528], [-118.953544, 50.241397], [-118.953342, 50.246144], [-118.951174, 50.246002], [-118.951134, 50.248569], [-118.95088, 50.248609], [-118.949424, 50.249118], [-118.948644, 50.249276], [-118.948853, 50.252874], [-118.957637, 50.252353], [-118.957559, 50.252918], [-118.957863, 50.253245], [-118.959189, 50.253534], [-118.959652, 50.253449], [-118.959275, 50.253756], [-118.959053, 50.254195], [-118.959199, 50.255077], [-118.960003, 50.256362], [-118.959634, 50.256846], [-118.961878, 50.257032], [-118.962158, 50.252958], [-118.96285, 50.252933], [-118.962903, 50.253077], [-118.963455, 50.253093], [-118.963482, 50.252925], [-118.965379, 50.253302]]]]}, "properties": {"name": "Lumby", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Lumby", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937005", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.28035, 50.238057], [-119.280727, 50.238078], [-119.282532, 50.238045], [-119.284352, 50.233522], [-119.284782, 50.233357], [-119.285099, 50.232803], [-119.285681, 50.232081], [-119.287175, 50.230696], [-119.288036, 50.229994], [-119.288503, 50.229725], [-119.289591, 50.22929], [-119.289928, 50.229031], [-119.290031, 50.228792], [-119.290019, 50.224382], [-119.290129, 50.223333], [-119.290058, 50.223247], [-119.289035, 50.223238], [-119.288891, 50.223094], [-119.288883, 50.222548], [-119.288469, 50.221668], [-119.28803, 50.221123], [-119.288256, 50.220372], [-119.286109, 50.219927], [-119.28528, 50.219389], [-119.282314, 50.217721], [-119.280771, 50.217759], [-119.279414, 50.216657], [-119.284299, 50.21328], [-119.289928, 50.208667], [-119.285097, 50.207509], [-119.278975, 50.206421], [-119.278823, 50.206712], [-119.277988, 50.207658], [-119.278048, 50.207933], [-119.278214, 50.208051], [-119.277466, 50.207886], [-119.277347, 50.208199], [-119.278087, 50.208211], [-119.277006, 50.209565], [-119.276278, 50.210091], [-119.275964, 50.210242], [-119.273819, 50.210937], [-119.273173, 50.211073], [-119.272267, 50.211128], [-119.269813, 50.211531], [-119.268657, 50.211922], [-119.267475, 50.212417], [-119.267022, 50.2127], [-119.266588, 50.212626], [-119.26602, 50.212612], [-119.264452, 50.21268], [-119.263038, 50.212974], [-119.262991, 50.215093], [-119.25663, 50.215333], [-119.251183, 50.214558], [-119.251252, 50.216256], [-119.247809, 50.216271], [-119.231569, 50.215721], [-119.230408, 50.210277], [-119.231321, 50.210075], [-119.231615, 50.209962], [-119.232662, 50.209311], [-119.232764, 50.209179], [-119.23272, 50.208698], [-119.232868, 50.207398], [-119.233518, 50.206337], [-119.233089, 50.204479], [-119.232478, 50.204296], [-119.23088, 50.194856], [-119.227267, 50.194929], [-119.217097, 50.194858], [-119.21727, 50.198315], [-119.204411, 50.198473], [-119.204065, 50.202339], [-119.193408, 50.202322], [-119.193034, 50.19551], [-119.182117, 50.195618], [-119.181923, 50.202966], [-119.178672, 50.202993], [-119.153657, 50.202493], [-119.153686, 50.19522], [-119.147618, 50.195191], [-119.147654, 50.210434], [-119.141366, 50.21066], [-119.11399, 50.208912], [-119.114055, 50.212141], [-119.10806, 50.212144], [-119.108005, 50.216049], [-119.082421, 50.216175], [-119.080515, 50.223564], [-119.068834, 50.223488], [-119.069245, 50.226658], [-119.067657, 50.228213], [-119.070016, 50.230661], [-119.069846, 50.235661], [-119.065931, 50.236146], [-119.065627, 50.2417], [-119.059718, 50.241692], [-119.059105, 50.241741], [-119.057647, 50.242017], [-119.056452, 50.242125], [-119.056112, 50.252758], [-119.067078, 50.252679], [-119.067203, 50.24843], [-119.078593, 50.248116], [-119.079304, 50.252894], [-119.090236, 50.252815], [-119.090093, 50.245375], [-119.101346, 50.245239], [-119.101898, 50.252905], [-119.117512, 50.252785], [-119.135194, 50.252817], [-119.135215, 50.245452], [-119.169874, 50.245512], [-119.16967, 50.252797], [-119.217003, 50.253128], [-119.216473, 50.245405], [-119.223537, 50.245662], [-119.228859, 50.245651], [-119.238317, 50.245734], [-119.23928, 50.245467], [-119.248198, 50.24543], [-119.250632, 50.245178], [-119.251687, 50.23847], [-119.255005, 50.238417], [-119.261614, 50.238477], [-119.266554, 50.238198], [-119.269551, 50.238295], [-119.271762, 50.238298], [-119.272052, 50.238169], [-119.279238, 50.238147], [-119.279537, 50.238075], [-119.279785, 50.23786], [-119.28035, 50.238057]]]]}, "properties": {"name": "Coldstream", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Coldstream", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937010", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.284759, 50.303265], [-119.285234, 50.303807], [-119.307762, 50.303735], [-119.307615, 50.289434], [-119.329878, 50.28919], [-119.330145, 50.285126], [-119.33109, 50.274777], [-119.351636, 50.274367], [-119.351699, 50.268337], [-119.352224, 50.260096], [-119.369869, 50.25969], [-119.379514, 50.259381], [-119.380444, 50.252943], [-119.386531, 50.252846], [-119.418986, 50.252852], [-119.427264, 50.252763], [-119.430167, 50.241745], [-119.427608, 50.235977], [-119.422602, 50.223862], [-119.42063, 50.218593], [-119.420136, 50.217024], [-119.432914, 50.20063], [-119.447975, 50.194885], [-119.454009, 50.186567], [-119.453826, 50.184526], [-119.453576, 50.169009], [-119.453167, 50.150747], [-119.438323, 50.151203], [-119.424257, 50.151268], [-119.419634, 50.151363], [-119.419626, 50.154377], [-119.419337, 50.154633], [-119.419826, 50.16114], [-119.420352, 50.173141], [-119.410289, 50.173178], [-119.409798, 50.180404], [-119.392905, 50.18033], [-119.387527, 50.180449], [-119.388048, 50.172968], [-119.374816, 50.173166], [-119.37473, 50.175158], [-119.375059, 50.181074], [-119.353644, 50.181088], [-119.353732, 50.193326], [-119.353641, 50.198075], [-119.353732, 50.198623], [-119.354067, 50.198977], [-119.353214, 50.209073], [-119.331375, 50.208978], [-119.330977, 50.212461], [-119.320153, 50.212495], [-119.322006, 50.202829], [-119.317324, 50.202558], [-119.312483, 50.202186], [-119.312142, 50.202281], [-119.311384, 50.202696], [-119.310111, 50.203784], [-119.309493, 50.204085], [-119.308678, 50.204347], [-119.309881, 50.206439], [-119.309929, 50.207213], [-119.309096, 50.207835], [-119.308758, 50.208405], [-119.308783, 50.208962], [-119.307492, 50.210307], [-119.299029, 50.209545], [-119.298477, 50.210294], [-119.297965, 50.210638], [-119.296864, 50.211131], [-119.297644, 50.21715], [-119.297015, 50.223172], [-119.294561, 50.223156], [-119.290058, 50.223247], [-119.290129, 50.223333], [-119.290019, 50.224382], [-119.290031, 50.228792], [-119.289928, 50.229031], [-119.289591, 50.22929], [-119.288503, 50.229725], [-119.288036, 50.229994], [-119.287175, 50.230696], [-119.285681, 50.232081], [-119.285099, 50.232803], [-119.284782, 50.233357], [-119.284352, 50.233522], [-119.282532, 50.238045], [-119.28035, 50.238057], [-119.279785, 50.23786], [-119.279537, 50.238075], [-119.279238, 50.238147], [-119.272052, 50.238169], [-119.271762, 50.238298], [-119.269551, 50.238295], [-119.266554, 50.238198], [-119.261614, 50.238477], [-119.255005, 50.238417], [-119.251687, 50.23847], [-119.250632, 50.245178], [-119.248198, 50.24543], [-119.248133, 50.246647], [-119.248219, 50.248349], [-119.248364, 50.248413], [-119.247913, 50.249344], [-119.246605, 50.248921], [-119.244816, 50.248654], [-119.242867, 50.247988], [-119.242019, 50.247586], [-119.241329, 50.247072], [-119.239832, 50.247269], [-119.240025, 50.252906], [-119.246523, 50.25279], [-119.247678, 50.252915], [-119.251069, 50.252924], [-119.251082, 50.254542], [-119.241994, 50.254647], [-119.24216, 50.256293], [-119.244338, 50.256272], [-119.245062, 50.256316], [-119.245201, 50.25999], [-119.242214, 50.259992], [-119.242203, 50.261911], [-119.245384, 50.261883], [-119.245381, 50.263721], [-119.242732, 50.263765], [-119.242224, 50.263695], [-119.242474, 50.265408], [-119.242505, 50.268099], [-119.243134, 50.268098], [-119.243118, 50.270153], [-119.239815, 50.270146], [-119.240005, 50.272121], [-119.241112, 50.272137], [-119.2411, 50.272401], [-119.241624, 50.272451], [-119.241301, 50.274819], [-119.241252, 50.275949], [-119.239996, 50.275946], [-119.239982, 50.277302], [-119.239876, 50.278406], [-119.240497, 50.278313], [-119.242031, 50.278419], [-119.243591, 50.278603], [-119.24636, 50.278655], [-119.24726, 50.278835], [-119.247383, 50.28045], [-119.24373, 50.280585], [-119.243753, 50.28086], [-119.240287, 50.280946], [-119.240275, 50.280641], [-119.237632, 50.280934], [-119.237772, 50.280651], [-119.237423, 50.280643], [-119.237049, 50.280841], [-119.236281, 50.281112], [-119.235364, 50.281271], [-119.234747, 50.281635], [-119.23401, 50.281776], [-119.233687, 50.28205], [-119.232524, 50.282106], [-119.233164, 50.283161], [-119.233723, 50.283029], [-119.235095, 50.282469], [-119.236441, 50.282154], [-119.238759, 50.282011], [-119.239944, 50.282001], [-119.240117, 50.283378], [-119.242028, 50.283361], [-119.241895, 50.281985], [-119.245813, 50.281961], [-119.245819, 50.283888], [-119.246351, 50.283888], [-119.246349, 50.28366], [-119.246722, 50.283658], [-119.246762, 50.283371], [-119.249861, 50.283356], [-119.25, 50.282518], [-119.250725, 50.282506], [-119.250787, 50.281934], [-119.252058, 50.281927], [-119.252118, 50.282824], [-119.252605, 50.282823], [-119.252572, 50.281925], [-119.253774, 50.28192], [-119.253487, 50.283319], [-119.253522, 50.283806], [-119.254045, 50.28582], [-119.253841, 50.28836], [-119.25446, 50.288366], [-119.254425, 50.289247], [-119.256674, 50.289295], [-119.256672, 50.289359], [-119.255781, 50.289344], [-119.255833, 50.290412], [-119.255094, 50.290554], [-119.254422, 50.29332], [-119.253449, 50.293261], [-119.25337, 50.293792], [-119.254578, 50.293861], [-119.254552, 50.294075], [-119.257432, 50.294125], [-119.257662, 50.293815], [-119.257463, 50.293758], [-119.257321, 50.293624], [-119.257658, 50.293288], [-119.257986, 50.292742], [-119.258079, 50.292211], [-119.258891, 50.29216], [-119.258827, 50.291946], [-119.259128, 50.291336], [-119.259345, 50.29107], [-119.260144, 50.290479], [-119.261027, 50.290439], [-119.262219, 50.290103], [-119.269179, 50.289312], [-119.270068, 50.289169], [-119.269822, 50.293646], [-119.27214, 50.293697], [-119.27209, 50.293896], [-119.272439, 50.293936], [-119.272396, 50.294341], [-119.279076, 50.294717], [-119.279742, 50.289303], [-119.279957, 50.288825], [-119.280314, 50.288377], [-119.280615, 50.28811], [-119.281978, 50.287192], [-119.282267, 50.286924], [-119.28245, 50.286625], [-119.282508, 50.286317], [-119.281797, 50.280694], [-119.281865, 50.280143], [-119.282413, 50.278999], [-119.28252, 50.278441], [-119.281775, 50.27624], [-119.285475, 50.276486], [-119.285424, 50.277115], [-119.285224, 50.277911], [-119.285673, 50.278774], [-119.286403, 50.279362], [-119.288003, 50.279952], [-119.288608, 50.280264], [-119.288913, 50.2805], [-119.288892, 50.280662], [-119.288717, 50.28081], [-119.287989, 50.281121], [-119.287635, 50.281353], [-119.287571, 50.281498], [-119.2876, 50.281812], [-119.287874, 50.28222], [-119.287778, 50.282574], [-119.287527, 50.282884], [-119.287152, 50.282981], [-119.286947, 50.283102], [-119.286672, 50.283539], [-119.286152, 50.284126], [-119.286102, 50.284513], [-119.286436, 50.28564], [-119.285752, 50.286301], [-119.285624, 50.286529], [-119.285607, 50.287077], [-119.285749, 50.287993], [-119.285666, 50.288588], [-119.285412, 50.289455], [-119.2849, 50.290195], [-119.284719, 50.291089], [-119.284673, 50.291916], [-119.284774, 50.292248], [-119.286142, 50.294145], [-119.286288, 50.294826], [-119.286518, 50.295226], [-119.286589, 50.295531], [-119.28572, 50.295269], [-119.285144, 50.295263], [-119.284233, 50.295028], [-119.28387, 50.29509], [-119.283381, 50.295406], [-119.28286, 50.295407], [-119.282024, 50.295614], [-119.282072, 50.296801], [-119.28197, 50.297127], [-119.281274, 50.297036], [-119.281194, 50.297275], [-119.278578, 50.296977], [-119.278196, 50.298226], [-119.277428, 50.298743], [-119.276937, 50.298964], [-119.276398, 50.29911], [-119.274656, 50.299384], [-119.27372, 50.299666], [-119.272772, 50.300162], [-119.272155, 50.300653], [-119.273838, 50.301169], [-119.279129, 50.300508], [-119.279393, 50.300815], [-119.279867, 50.300853], [-119.280213, 50.30076], [-119.281038, 50.300291], [-119.282648, 50.300272], [-119.282798, 50.300494], [-119.282837, 50.301047], [-119.284219, 50.300966], [-119.284119, 50.300396], [-119.284202, 50.300029], [-119.284413, 50.299684], [-119.284759, 50.303265]], [[-119.345679, 50.244782], [-119.345663, 50.245276], [-119.345819, 50.245625], [-119.347584, 50.247568], [-119.348555, 50.24829], [-119.347928, 50.248231], [-119.347801, 50.248332], [-119.347311, 50.248359], [-119.332104, 50.248407], [-119.330845, 50.248448], [-119.330668, 50.245728], [-119.344032, 50.245639], [-119.344815, 50.245185], [-119.345679, 50.244782]]], [[[-119.225517, 50.287374], [-119.226138, 50.287656], [-119.226449, 50.28736], [-119.22581, 50.287086], [-119.225517, 50.287374]]], [[[-119.221778, 50.289928], [-119.223153, 50.290523], [-119.223954, 50.28975], [-119.222625, 50.28915], [-119.221778, 50.289928]]], [[[-119.221275, 50.2924], [-119.22074, 50.292831], [-119.222258, 50.293004], [-119.222345, 50.292243], [-119.221779, 50.292241], [-119.221275, 50.2924]]], [[[-119.213863, 50.320978], [-119.217369, 50.320138], [-119.226958, 50.320267], [-119.225836, 50.3154], [-119.225748, 50.312731], [-119.22942, 50.312554], [-119.229421, 50.312455], [-119.226152, 50.312606], [-119.226053, 50.310737], [-119.22615, 50.309224], [-119.228857, 50.309113], [-119.229615, 50.309134], [-119.229328, 50.308845], [-119.229249, 50.308665], [-119.229124, 50.306498], [-119.228728, 50.305716], [-119.228675, 50.305396], [-119.228809, 50.3035], [-119.228759, 50.303084], [-119.228323, 50.302464], [-119.227863, 50.300855], [-119.227536, 50.300676], [-119.227319, 50.300418], [-119.22689, 50.299397], [-119.226718, 50.299221], [-119.226401, 50.299154], [-119.22534, 50.29923], [-119.224507, 50.299156], [-119.223433, 50.299331], [-119.22184, 50.299099], [-119.221849, 50.297348], [-119.217184, 50.297373], [-119.217251, 50.2998], [-119.216663, 50.300105], [-119.216458, 50.300106], [-119.214938, 50.298671], [-119.214786, 50.299488], [-119.211494, 50.29959], [-119.211449, 50.300332], [-119.211227, 50.300705], [-119.210528, 50.301375], [-119.210155, 50.302111], [-119.209154, 50.302903], [-119.208169, 50.304209], [-119.209255, 50.305447], [-119.208343, 50.306018], [-119.208045, 50.306284], [-119.207798, 50.306689], [-119.207577, 50.307524], [-119.207977, 50.307648], [-119.20825, 50.30766], [-119.208602, 50.30746], [-119.20897, 50.307009], [-119.209217, 50.306871], [-119.209585, 50.306853], [-119.209919, 50.306913], [-119.209594, 50.307822], [-119.20914, 50.308338], [-119.208228, 50.309103], [-119.207896, 50.30967], [-119.207266, 50.310135], [-119.206859, 50.310531], [-119.206648, 50.310862], [-119.20549, 50.310954], [-119.205336, 50.314129], [-119.207337, 50.31542], [-119.20773, 50.316146], [-119.205543, 50.316172], [-119.205721, 50.321577], [-119.211527, 50.321308], [-119.211608, 50.321647], [-119.212056, 50.321593], [-119.212139, 50.320872], [-119.213863, 50.320978]]]]}, "properties": {"name": "Vernon", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Vernon", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937014", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.541589, 50.445315], [-119.581872, 50.4457], [-119.581674, 50.430803], [-119.606117, 50.431006], [-119.605893, 50.427032], [-119.605667, 50.425199], [-119.606402, 50.424382], [-119.606121, 50.416286], [-119.628609, 50.416445], [-119.628449, 50.402151], [-119.644418, 50.40217], [-119.652209, 50.39559], [-119.652909, 50.394596], [-119.653076, 50.393761], [-119.652801, 50.392851], [-119.652046, 50.392083], [-119.650275, 50.391165], [-119.645339, 50.389149], [-119.643805, 50.388288], [-119.642695, 50.387299], [-119.641756, 50.386012], [-119.640827, 50.383939], [-119.640196, 50.382808], [-119.639324, 50.38179], [-119.637879, 50.380696], [-119.634848, 50.378137], [-119.634022, 50.37727], [-119.63349, 50.376274], [-119.633762, 50.375492], [-119.63461, 50.374169], [-119.6358, 50.373405], [-119.63737, 50.372983], [-119.640573, 50.372491], [-119.644423, 50.371644], [-119.646539, 50.371039], [-119.647992, 50.370279], [-119.648501, 50.369469], [-119.648683, 50.3683], [-119.647988, 50.366667], [-119.646604, 50.365156], [-119.646286, 50.364205], [-119.646436, 50.363448], [-119.647314, 50.362804], [-119.648966, 50.362339], [-119.65348, 50.361926], [-119.655431, 50.361577], [-119.657671, 50.360967], [-119.660181, 50.35994], [-119.661874, 50.358413], [-119.663474, 50.356243], [-119.664228, 50.353404], [-119.671254, 50.351609], [-119.68452, 50.34863], [-119.681195, 50.34488], [-119.671552, 50.338352], [-119.666151, 50.333187], [-119.666565, 50.333092], [-119.669368, 50.332794], [-119.675094, 50.331151], [-119.678276, 50.330803], [-119.682055, 50.330201], [-119.68443, 50.329724], [-119.687066, 50.328721], [-119.691772, 50.32633], [-119.694235, 50.325503], [-119.696885, 50.324787], [-119.707644, 50.322143], [-119.712501, 50.32054], [-119.717075, 50.318804], [-119.719984, 50.317576], [-119.72054, 50.317178], [-119.720545, 50.316744], [-119.720061, 50.316356], [-119.718941, 50.316093], [-119.714186, 50.315594], [-119.710772, 50.315089], [-119.708002, 50.314256], [-119.705996, 50.313259], [-119.704829, 50.312276], [-119.704045, 50.311245], [-119.703112, 50.310225], [-119.701757, 50.309633], [-119.698489, 50.308933], [-119.69813, 50.308575], [-119.697927, 50.308069], [-119.697537, 50.30752], [-119.697178, 50.307161], [-119.696435, 50.306918], [-119.695533, 50.306957], [-119.693487, 50.307343], [-119.69035, 50.307793], [-119.688104, 50.307904], [-119.685435, 50.307642], [-119.683707, 50.306962], [-119.682678, 50.306171], [-119.68196, 50.305087], [-119.681853, 50.304053], [-119.682629, 50.30279], [-119.686443, 50.297996], [-119.687723, 50.296117], [-119.688523, 50.294081], [-119.689355, 50.292236], [-119.690395, 50.290797], [-119.693356, 50.289594], [-119.697002, 50.287214], [-119.698075, 50.285053], [-119.69657, 50.282371], [-119.696159, 50.282069], [-119.695799, 50.281386], [-119.694767, 50.280149], [-119.693005, 50.278359], [-119.690487, 50.276191], [-119.687455, 50.273337], [-119.685244, 50.270876], [-119.684042, 50.269237], [-119.682605, 50.266477], [-119.681809, 50.264364], [-119.681694, 50.263021], [-119.682321, 50.262395], [-119.684571, 50.261581], [-119.686181, 50.26039], [-119.687068, 50.259484], [-119.68775, 50.259144], [-119.688678, 50.258998], [-119.690722, 50.259184], [-119.692501, 50.259216], [-119.694084, 50.258905], [-119.697428, 50.257961], [-119.698545, 50.257791], [-119.700086, 50.257995], [-119.702591, 50.258678], [-119.705685, 50.258815], [-119.707963, 50.259398], [-119.71093, 50.260076], [-119.71343, 50.260391], [-119.716482, 50.260541], [-119.72203, 50.260069], [-119.724945, 50.259958], [-119.728175, 50.260354], [-119.73246, 50.261067], [-119.738503, 50.261852], [-119.741914, 50.261925], [-119.744289, 50.261709], [-119.74774, 50.261267], [-119.749303, 50.260928], [-119.751003, 50.260211], [-119.751861, 50.259548], [-119.752592, 50.258084], [-119.75294, 50.255827], [-119.752907, 50.253551], [-119.752585, 50.251866], [-119.752803, 50.250691], [-119.753163, 50.249708], [-119.753772, 50.248919], [-119.755532, 50.244925], [-119.757513, 50.242276], [-119.762812, 50.238151], [-119.762951, 50.236663], [-119.762428, 50.234501], [-119.761811, 50.232819], [-119.667969, 50.232506], [-119.588065, 50.233368], [-119.573435, 50.234118], [-119.554987, 50.234513], [-119.531931, 50.235136], [-119.51179, 50.235323], [-119.483707, 50.235284], [-119.471687, 50.234891], [-119.470822, 50.23152], [-119.459489, 50.231236], [-119.459528, 50.2387], [-119.459145, 50.260219], [-119.454364, 50.26021], [-119.454235, 50.274606], [-119.449425, 50.274682], [-119.448663, 50.314296], [-119.403446, 50.314317], [-119.403326, 50.317989], [-119.392008, 50.3178], [-119.39194, 50.321208], [-119.38667, 50.321208], [-119.386129, 50.325114], [-119.380969, 50.325026], [-119.38022, 50.332571], [-119.369552, 50.332476], [-119.369337, 50.339207], [-119.352659, 50.339452], [-119.352702, 50.346973], [-119.341849, 50.346903], [-119.341549, 50.360035], [-119.341613, 50.361425], [-119.341913, 50.362374], [-119.341791, 50.374802], [-119.341726, 50.376757], [-119.341634, 50.376951], [-119.341657, 50.378617], [-119.341582, 50.379213], [-119.341731, 50.384215], [-119.341567, 50.38697], [-119.341655, 50.387835], [-119.341625, 50.388539], [-119.341745, 50.389096], [-119.341723, 50.390377], [-119.341819, 50.390691], [-119.341667, 50.391154], [-119.341541, 50.3938], [-119.34162, 50.395489], [-119.341487, 50.401353], [-119.341499, 50.404705], [-119.352206, 50.405104], [-119.352398, 50.416169], [-119.374975, 50.416083], [-119.445713, 50.415956], [-119.446372, 50.430852], [-119.457063, 50.430881], [-119.506423, 50.432342], [-119.514059, 50.431613], [-119.524942, 50.431031], [-119.524439, 50.439938], [-119.525821, 50.445215], [-119.541589, 50.445315]]], [[[-119.353214, 50.209073], [-119.354067, 50.198977], [-119.353732, 50.198623], [-119.353641, 50.198075], [-119.353732, 50.193326], [-119.353644, 50.181088], [-119.375059, 50.181074], [-119.37473, 50.175158], [-119.374816, 50.173166], [-119.388048, 50.172968], [-119.387527, 50.180449], [-119.392905, 50.18033], [-119.409798, 50.180404], [-119.410289, 50.173178], [-119.420352, 50.173141], [-119.419826, 50.16114], [-119.419337, 50.154633], [-119.419626, 50.154377], [-119.419634, 50.151363], [-119.39442, 50.151558], [-119.369107, 50.151369], [-119.360331, 50.151864], [-119.359595, 50.151863], [-119.347487, 50.151303], [-119.339586, 50.151272], [-119.329042, 50.151099], [-119.327734, 50.153305], [-119.322068, 50.157836], [-119.314361, 50.161246], [-119.310172, 50.164393], [-119.306099, 50.16673], [-119.303043, 50.168837], [-119.300611, 50.169415], [-119.300177, 50.171058], [-119.300142, 50.176184], [-119.299248, 50.176585], [-119.288675, 50.176524], [-119.288331, 50.183714], [-119.28102, 50.183708], [-119.272688, 50.183946], [-119.272582, 50.187939], [-119.267196, 50.188124], [-119.266931, 50.184397], [-119.261715, 50.184309], [-119.245012, 50.184129], [-119.244378, 50.187511], [-119.233064, 50.187442], [-119.232431, 50.180225], [-119.221121, 50.180237], [-119.221505, 50.187565], [-119.227141, 50.18757], [-119.227266, 50.194896], [-119.23088, 50.194856], [-119.232478, 50.204296], [-119.233089, 50.204479], [-119.233518, 50.206337], [-119.232868, 50.207398], [-119.23272, 50.208698], [-119.232764, 50.209179], [-119.232662, 50.209311], [-119.231615, 50.209962], [-119.231321, 50.210075], [-119.230408, 50.210277], [-119.231569, 50.215721], [-119.247809, 50.216271], [-119.251252, 50.216256], [-119.251183, 50.214558], [-119.25663, 50.215333], [-119.262991, 50.215093], [-119.263038, 50.212974], [-119.264452, 50.21268], [-119.26602, 50.212612], [-119.266588, 50.212626], [-119.267022, 50.2127], [-119.267475, 50.212417], [-119.268657, 50.211922], [-119.269813, 50.211531], [-119.272267, 50.211128], [-119.273173, 50.211073], [-119.273819, 50.210937], [-119.275964, 50.210242], [-119.276278, 50.210091], [-119.277006, 50.209565], [-119.278087, 50.208211], [-119.277347, 50.208199], [-119.277466, 50.207886], [-119.278214, 50.208051], [-119.278048, 50.207933], [-119.277988, 50.207658], [-119.278823, 50.206712], [-119.278975, 50.206421], [-119.285097, 50.207509], [-119.289928, 50.208667], [-119.284299, 50.21328], [-119.279414, 50.216657], [-119.280771, 50.217759], [-119.282314, 50.217721], [-119.28528, 50.219389], [-119.286109, 50.219927], [-119.288256, 50.220372], [-119.28803, 50.221123], [-119.288469, 50.221668], [-119.288883, 50.222548], [-119.288891, 50.223094], [-119.289035, 50.223238], [-119.294561, 50.223156], [-119.297015, 50.223172], [-119.297644, 50.21715], [-119.296864, 50.211131], [-119.297965, 50.210638], [-119.298477, 50.210294], [-119.299029, 50.209545], [-119.307492, 50.210307], [-119.308783, 50.208962], [-119.308758, 50.208405], [-119.309096, 50.207835], [-119.309929, 50.207213], [-119.309881, 50.206439], [-119.308678, 50.204347], [-119.309493, 50.204085], [-119.310111, 50.203784], [-119.311384, 50.202696], [-119.312142, 50.202281], [-119.312483, 50.202186], [-119.317324, 50.202558], [-119.322006, 50.202829], [-119.320153, 50.212495], [-119.330977, 50.212461], [-119.331375, 50.208978], [-119.353214, 50.209073]]], [[[-119.277888, 50.340375], [-119.279111, 50.325937], [-119.279199, 50.325989], [-119.279265, 50.325944], [-119.279737, 50.325214], [-119.279979, 50.325012], [-119.280106, 50.324397], [-119.280731, 50.323963], [-119.280979, 50.323579], [-119.281077, 50.323272], [-119.281374, 50.323006], [-119.281484, 50.322661], [-119.281814, 50.322214], [-119.28216, 50.322127], [-119.28255, 50.322335], [-119.283125, 50.322315], [-119.283383, 50.322732], [-119.283599, 50.322836], [-119.283796, 50.322813], [-119.283959, 50.322712], [-119.284114, 50.322439], [-119.284091, 50.321369], [-119.284307, 50.320915], [-119.284671, 50.319711], [-119.284803, 50.318081], [-119.285346, 50.316487], [-119.285876, 50.316125], [-119.286396, 50.316115], [-119.286604, 50.315788], [-119.286903, 50.315548], [-119.286957, 50.315249], [-119.286548, 50.314314], [-119.286307, 50.313995], [-119.286311, 50.313194], [-119.286019, 50.312677], [-119.285803, 50.311099], [-119.285726, 50.31093], [-119.285524, 50.310834], [-119.285794, 50.310465], [-119.285224, 50.309988], [-119.285234, 50.303807], [-119.284759, 50.303265], [-119.284413, 50.299684], [-119.284202, 50.300029], [-119.284119, 50.300396], [-119.284219, 50.300966], [-119.282837, 50.301047], [-119.282798, 50.300494], [-119.282648, 50.300272], [-119.281038, 50.300291], [-119.280213, 50.30076], [-119.279867, 50.300853], [-119.279393, 50.300815], [-119.279129, 50.300508], [-119.273838, 50.301169], [-119.272155, 50.300653], [-119.272772, 50.300162], [-119.27372, 50.299666], [-119.274656, 50.299384], [-119.276398, 50.29911], [-119.276937, 50.298964], [-119.277428, 50.298743], [-119.278196, 50.298226], [-119.278578, 50.296977], [-119.281194, 50.297275], [-119.281274, 50.297036], [-119.28197, 50.297127], [-119.282072, 50.296801], [-119.282024, 50.295614], [-119.28286, 50.295407], [-119.283381, 50.295406], [-119.28387, 50.29509], [-119.284233, 50.295028], [-119.285144, 50.295263], [-119.28572, 50.295269], [-119.286589, 50.295531], [-119.286518, 50.295226], [-119.286288, 50.294826], [-119.286142, 50.294145], [-119.284774, 50.292248], [-119.284673, 50.291916], [-119.284719, 50.291089], [-119.2849, 50.290195], [-119.285412, 50.289455], [-119.285666, 50.288588], [-119.285749, 50.287993], [-119.285607, 50.287077], [-119.285624, 50.286529], [-119.285752, 50.286301], [-119.286436, 50.28564], [-119.286102, 50.284513], [-119.286152, 50.284126], [-119.286672, 50.283539], [-119.286947, 50.283102], [-119.287152, 50.282981], [-119.287527, 50.282884], [-119.287778, 50.282574], [-119.287874, 50.28222], [-119.2876, 50.281812], [-119.287571, 50.281498], [-119.287635, 50.281353], [-119.287989, 50.281121], [-119.288717, 50.28081], [-119.288892, 50.280662], [-119.288913, 50.2805], [-119.288608, 50.280264], [-119.288003, 50.279952], [-119.286403, 50.279362], [-119.285673, 50.278774], [-119.285224, 50.277911], [-119.285424, 50.277115], [-119.285475, 50.276486], [-119.281775, 50.27624], [-119.28252, 50.278441], [-119.282413, 50.278999], [-119.281865, 50.280143], [-119.281797, 50.280694], [-119.282508, 50.286317], [-119.28245, 50.286625], [-119.282267, 50.286924], [-119.281978, 50.287192], [-119.280615, 50.28811], [-119.280314, 50.288377], [-119.279957, 50.288825], [-119.279742, 50.289303], [-119.279076, 50.294717], [-119.272396, 50.294341], [-119.272439, 50.293936], [-119.27209, 50.293896], [-119.27214, 50.293697], [-119.269822, 50.293646], [-119.270068, 50.289169], [-119.269179, 50.289312], [-119.262219, 50.290103], [-119.261027, 50.290439], [-119.260144, 50.290479], [-119.259345, 50.29107], [-119.259128, 50.291336], [-119.258827, 50.291946], [-119.258891, 50.29216], [-119.258079, 50.292211], [-119.257986, 50.292742], [-119.257658, 50.293288], [-119.257321, 50.293624], [-119.257463, 50.293758], [-119.257662, 50.293815], [-119.257432, 50.294125], [-119.254552, 50.294075], [-119.254578, 50.293861], [-119.25337, 50.293792], [-119.253449, 50.293261], [-119.254422, 50.29332], [-119.255094, 50.290554], [-119.255833, 50.290412], [-119.255781, 50.289344], [-119.256672, 50.289359], [-119.256674, 50.289295], [-119.254425, 50.289247], [-119.25446, 50.288366], [-119.253841, 50.28836], [-119.254045, 50.28582], [-119.253522, 50.283806], [-119.253487, 50.283319], [-119.253774, 50.28192], [-119.252572, 50.281925], [-119.252605, 50.282823], [-119.252118, 50.282824], [-119.252058, 50.281927], [-119.250787, 50.281934], [-119.250725, 50.282506], [-119.25, 50.282518], [-119.249861, 50.283356], [-119.246762, 50.283371], [-119.246722, 50.283658], [-119.246349, 50.28366], [-119.246351, 50.283888], [-119.245819, 50.283888], [-119.245813, 50.281961], [-119.241895, 50.281985], [-119.242028, 50.283361], [-119.240117, 50.283378], [-119.239944, 50.282001], [-119.238759, 50.282011], [-119.236441, 50.282154], [-119.235738, 50.282286], [-119.235095, 50.282469], [-119.233723, 50.283029], [-119.231135, 50.283639], [-119.231205, 50.299609], [-119.231649, 50.300443], [-119.23195, 50.301335], [-119.232522, 50.30251], [-119.233597, 50.304368], [-119.233628, 50.304652], [-119.233328, 50.305083], [-119.23241, 50.305564], [-119.232218, 50.305743], [-119.23216, 50.305978], [-119.232324, 50.311853], [-119.232438, 50.312689], [-119.233424, 50.31499], [-119.233915, 50.317149], [-119.23406, 50.318798], [-119.233696, 50.321317], [-119.233824, 50.322178], [-119.234918, 50.325426], [-119.234901, 50.325729], [-119.234546, 50.326713], [-119.2349, 50.327534], [-119.234986, 50.327594], [-119.236525, 50.327896], [-119.236113, 50.329016], [-119.235319, 50.330079], [-119.234975, 50.330649], [-119.23486, 50.331089], [-119.234733, 50.332485], [-119.235177, 50.333636], [-119.235397, 50.334642], [-119.236749, 50.335493], [-119.237252, 50.33614], [-119.237731, 50.337313], [-119.238711, 50.338012], [-119.239223, 50.338854], [-119.239453, 50.339106], [-119.239842, 50.339432], [-119.240147, 50.339572], [-119.240332, 50.339608], [-119.240508, 50.339559], [-119.240846, 50.339088], [-119.241002, 50.33902], [-119.241165, 50.339031], [-119.24152, 50.339254], [-119.24173, 50.339323], [-119.242056, 50.339333], [-119.242803, 50.340237], [-119.249429, 50.340232], [-119.24879, 50.34468], [-119.251763, 50.344582], [-119.251824, 50.343735], [-119.251756, 50.340238], [-119.277888, 50.340375]]], [[[-119.312485, 50.348278], [-119.313112, 50.348436], [-119.31393, 50.348798], [-119.315266, 50.349104], [-119.315534, 50.349125], [-119.316219, 50.349021], [-119.31639, 50.349108], [-119.316685, 50.349076], [-119.317112, 50.348888], [-119.317079, 50.348798], [-119.316906, 50.348702], [-119.316996, 50.348557], [-119.317926, 50.348016], [-119.319178, 50.347442], [-119.320385, 50.346528], [-119.321394, 50.345924], [-119.321864, 50.345455], [-119.322003, 50.345425], [-119.322453, 50.345713], [-119.322706, 50.345709], [-119.323013, 50.345639], [-119.323518, 50.345385], [-119.323749, 50.345183], [-119.323979, 50.344702], [-119.324544, 50.344205], [-119.325075, 50.343574], [-119.325482, 50.343278], [-119.325734, 50.343263], [-119.325879, 50.34336], [-119.32566, 50.34376], [-119.325663, 50.344111], [-119.325808, 50.344208], [-119.326121, 50.344263], [-119.326539, 50.344192], [-119.327871, 50.343258], [-119.328079, 50.342902], [-119.327931, 50.342771], [-119.326591, 50.342959], [-119.325605, 50.342907], [-119.325419, 50.342829], [-119.325441, 50.342712], [-119.326054, 50.342034], [-119.326449, 50.341198], [-119.32757, 50.339962], [-119.327814, 50.339525], [-119.32869, 50.338464], [-119.328727, 50.337745], [-119.328464, 50.337273], [-119.328475, 50.336921], [-119.329012, 50.336704], [-119.329942, 50.336443], [-119.330471, 50.336073], [-119.330563, 50.335936], [-119.33058, 50.335711], [-119.330255, 50.335114], [-119.33045, 50.334804], [-119.331234, 50.334717], [-119.332828, 50.334855], [-119.333691, 50.334704], [-119.333933, 50.334483], [-119.335131, 50.333928], [-119.335469, 50.33366], [-119.335647, 50.333305], [-119.335895, 50.333166], [-119.33626, 50.333177], [-119.336473, 50.333244], [-119.336752, 50.333464], [-119.33746, 50.333854], [-119.33806, 50.334076], [-119.3383, 50.334089], [-119.339087, 50.334352], [-119.339725, 50.334492], [-119.340204, 50.3345], [-119.340263, 50.334553], [-119.340587, 50.334591], [-119.340557, 50.334287], [-119.341184, 50.333878], [-119.341753, 50.333731], [-119.342329, 50.333432], [-119.342676, 50.333344], [-119.343963, 50.333247], [-119.344502, 50.333056], [-119.345903, 50.331813], [-119.345954, 50.331713], [-119.345786, 50.33142], [-119.345801, 50.331176], [-119.346138, 50.330577], [-119.346396, 50.330391], [-119.347346, 50.33003], [-119.348114, 50.329924], [-119.348653, 50.329742], [-119.349419, 50.329322], [-119.349914, 50.328826], [-119.35049, 50.327393], [-119.350794, 50.327252], [-119.35134, 50.327214], [-119.351852, 50.327079], [-119.352996, 50.326344], [-119.354794, 50.325768], [-119.355274, 50.325506], [-119.35715, 50.324821], [-119.357241, 50.324649], [-119.357721, 50.32417], [-119.357769, 50.324], [-119.35808, 50.32375], [-119.358599, 50.322857], [-119.359219, 50.322323], [-119.359872, 50.322184], [-119.360021, 50.322074], [-119.361099, 50.321709], [-119.361954, 50.321665], [-119.362312, 50.321541], [-119.362722, 50.321578], [-119.363559, 50.321435], [-119.364096, 50.321514], [-119.365402, 50.321487], [-119.36635, 50.321369], [-119.367374, 50.32107], [-119.36838, 50.320626], [-119.369043, 50.320136], [-119.369792, 50.319382], [-119.36996, 50.319073], [-119.370621, 50.31826], [-119.370999, 50.316265], [-119.370676, 50.315424], [-119.370604, 50.314527], [-119.36988, 50.312968], [-119.369672, 50.312711], [-119.369127, 50.31221], [-119.368807, 50.312018], [-119.368216, 50.311428], [-119.368204, 50.311176], [-119.368423, 50.311045], [-119.369246, 50.310938], [-119.370383, 50.310636], [-119.370685, 50.310505], [-119.371338, 50.310086], [-119.371675, 50.309775], [-119.371933, 50.309337], [-119.37252, 50.30901], [-119.372571, 50.308874], [-119.37334, 50.308544], [-119.373857, 50.308218], [-119.374073, 50.308024], [-119.374377, 50.30737], [-119.375301, 50.306722], [-119.375796, 50.306533], [-119.376048, 50.306221], [-119.376837, 50.305999], [-119.377258, 50.305684], [-119.377625, 50.3052], [-119.377666, 50.304875], [-119.377399, 50.304287], [-119.376404, 50.302634], [-119.376332, 50.302347], [-119.376403, 50.302068], [-119.376596, 50.302018], [-119.376879, 50.302058], [-119.378076, 50.302691], [-119.378421, 50.302817], [-119.379072, 50.302921], [-119.37994, 50.302877], [-119.381521, 50.302494], [-119.381706, 50.302508], [-119.382306, 50.302747], [-119.382604, 50.302786], [-119.383631, 50.302837], [-119.384146, 50.302755], [-119.386065, 50.302085], [-119.386325, 50.301946], [-119.386918, 50.301447], [-119.388044, 50.30092], [-119.388424, 50.30067], [-119.389173, 50.299899], [-119.391177, 50.298697], [-119.392189, 50.297875], [-119.39262, 50.297264], [-119.392769, 50.296874], [-119.392727, 50.296309], [-119.39248, 50.295846], [-119.392461, 50.295226], [-119.392724, 50.294591], [-119.39304, 50.294144], [-119.39323, 50.293464], [-119.393251, 50.292781], [-119.393361, 50.292436], [-119.393326, 50.291735], [-119.393401, 50.291563], [-119.393315, 50.29125], [-119.392741, 50.290434], [-119.392641, 50.290103], [-119.392716, 50.28995], [-119.392367, 50.289119], [-119.391977, 50.288642], [-119.391797, 50.287863], [-119.391812, 50.287592], [-119.392214, 50.28637], [-119.391877, 50.285252], [-119.391295, 50.284536], [-119.391359, 50.284436], [-119.391553, 50.284378], [-119.392229, 50.284445], [-119.392445, 50.28427], [-119.392596, 50.283898], [-119.39227, 50.283293], [-119.392275, 50.283113], [-119.392367, 50.283004], [-119.392707, 50.283014], [-119.392982, 50.282901], [-119.393462, 50.282433], [-119.394053, 50.282159], [-119.394239, 50.28194], [-119.394971, 50.281726], [-119.395162, 50.281588], [-119.395945, 50.281256], [-119.396222, 50.281179], [-119.396726, 50.281151], [-119.397124, 50.280963], [-119.397346, 50.280634], [-119.397818, 50.280265], [-119.398025, 50.280179], [-119.39818, 50.279933], [-119.398845, 50.280019], [-119.399286, 50.279875], [-119.39955, 50.279544], [-119.399422, 50.279205], [-119.398999, 50.27863], [-119.399051, 50.278557], [-119.399753, 50.278264], [-119.40019, 50.278012], [-119.400712, 50.277506], [-119.400826, 50.277261], [-119.402591, 50.276378], [-119.403749, 50.276237], [-119.40441, 50.276242], [-119.405286, 50.275829], [-119.405884, 50.27543], [-119.407074, 50.275089], [-119.408725, 50.274713], [-119.40903, 50.274626], [-119.409315, 50.274458], [-119.410995, 50.274082], [-119.412807, 50.274107], [-119.413079, 50.273903], [-119.41581, 50.272993], [-119.41835, 50.271861], [-119.419324, 50.271687], [-119.420468, 50.271564], [-119.421835, 50.271121], [-119.424168, 50.2712], [-119.425007, 50.271119], [-119.425403, 50.270912], [-119.425723, 50.270555], [-119.42616, 50.270321], [-119.426589, 50.269925], [-119.427151, 50.269697], [-119.427855, 50.269692], [-119.428831, 50.26987], [-119.429395, 50.269902], [-119.430753, 50.269857], [-119.431584, 50.26965], [-119.432144, 50.26962], [-119.4326, 50.269764], [-119.433472, 50.269781], [-119.433995, 50.269851], [-119.434464, 50.269995], [-119.434959, 50.270038], [-119.435988, 50.269881], [-119.436872, 50.269854], [-119.437156, 50.269919], [-119.437466, 50.270193], [-119.437766, 50.27033], [-119.439102, 50.270374], [-119.440695, 50.27025], [-119.441124, 50.270143], [-119.442101, 50.270023], [-119.443224, 50.269747], [-119.44358, 50.269551], [-119.443691, 50.26927], [-119.444166, 50.268685], [-119.444847, 50.267437], [-119.444921, 50.265889], [-119.445104, 50.265355], [-119.445148, 50.264814], [-119.444952, 50.263765], [-119.445119, 50.262358], [-119.445566, 50.261495], [-119.445612, 50.261044], [-119.446069, 50.259568], [-119.446477, 50.258984], [-119.44661, 50.258073], [-119.446996, 50.257372], [-119.447372, 50.256221], [-119.447428, 50.255393], [-119.447206, 50.253796], [-119.447315, 50.252913], [-119.44739, 50.252739], [-119.447756, 50.25249], [-119.448354, 50.251829], [-119.448785, 50.249868], [-119.449336, 50.248579], [-119.449366, 50.248309], [-119.449814, 50.247777], [-119.45037, 50.247388], [-119.450475, 50.247223], [-119.450832, 50.24602], [-119.450869, 50.245624], [-119.450579, 50.244883], [-119.450414, 50.244671], [-119.450437, 50.244067], [-119.45032, 50.243916], [-119.449101, 50.242881], [-119.447776, 50.241938], [-119.447239, 50.241049], [-119.446783, 50.240591], [-119.445738, 50.239938], [-119.445481, 50.23954], [-119.445336, 50.239461], [-119.445062, 50.239611], [-119.444864, 50.23958], [-119.445171, 50.239249], [-119.444823, 50.23904], [-119.442241, 50.238195], [-119.44198, 50.238039], [-119.441625, 50.237668], [-119.441375, 50.237188], [-119.44061, 50.236754], [-119.440172, 50.236422], [-119.439629, 50.235911], [-119.439539, 50.235535], [-119.439435, 50.235402], [-119.439197, 50.235147], [-119.438731, 50.234833], [-119.438707, 50.234618], [-119.438539, 50.234378], [-119.438631, 50.234232], [-119.438666, 50.233817], [-119.438417, 50.233364], [-119.438498, 50.232454], [-119.437749, 50.232082], [-119.437599, 50.231897], [-119.437655, 50.231321], [-119.437959, 50.230936], [-119.438022, 50.230017], [-119.436996, 50.228582], [-119.436853, 50.227964], [-119.436891, 50.227343], [-119.43657, 50.227115], [-119.43652, 50.226945], [-119.436779, 50.2265], [-119.436855, 50.225805], [-119.43708, 50.22554], [-119.438745, 50.22438], [-119.439321, 50.224134], [-119.439917, 50.223987], [-119.440094, 50.223875], [-119.44069, 50.223224], [-119.441898, 50.222173], [-119.442159, 50.22205], [-119.44252, 50.221971], [-119.44392, 50.221951], [-119.444224, 50.221872], [-119.444717, 50.22161], [-119.444817, 50.221374], [-119.445246, 50.220978], [-119.446133, 50.220528], [-119.446645, 50.2204], [-119.448379, 50.220291], [-119.449191, 50.219995], [-119.449833, 50.219658], [-119.450539, 50.2195], [-119.451323, 50.219474], [-119.452263, 50.219229], [-119.453041, 50.21879], [-119.453323, 50.218577], [-119.453824, 50.217964], [-119.454096, 50.217499], [-119.454159, 50.217093], [-119.454875, 50.216574], [-119.455274, 50.216161], [-119.455946, 50.215059], [-119.45645, 50.214481], [-119.45661, 50.214343], [-119.457611, 50.213898], [-119.458419, 50.213262], [-119.458945, 50.212567], [-119.459321, 50.212262], [-119.459582, 50.211896], [-119.460267, 50.211585], [-119.460763, 50.211189], [-119.462183, 50.203877], [-119.462671, 50.202068], [-119.469617, 50.191033], [-119.465291, 50.188353], [-119.471754, 50.182177], [-119.474023, 50.178303], [-119.475304, 50.17505], [-119.474323, 50.149951], [-119.453167, 50.150747], [-119.453576, 50.169009], [-119.453826, 50.184526], [-119.454009, 50.186567], [-119.447975, 50.194885], [-119.432914, 50.20063], [-119.420136, 50.217024], [-119.42063, 50.218593], [-119.422602, 50.223862], [-119.427608, 50.235977], [-119.430167, 50.241745], [-119.427264, 50.252763], [-119.418986, 50.252852], [-119.418321, 50.253303], [-119.417964, 50.253716], [-119.417936, 50.254554], [-119.418066, 50.255172], [-119.418335, 50.255769], [-119.418322, 50.256075], [-119.418218, 50.256238], [-119.417553, 50.256693], [-119.416627, 50.257774], [-119.41482, 50.259251], [-119.413652, 50.259463], [-119.413036, 50.259494], [-119.412327, 50.259617], [-119.410191, 50.259832], [-119.409824, 50.260074], [-119.409589, 50.260132], [-119.409027, 50.260081], [-119.408031, 50.260119], [-119.40742, 50.260268], [-119.405758, 50.260931], [-119.404089, 50.261784], [-119.403278, 50.262125], [-119.402963, 50.262284], [-119.402476, 50.262655], [-119.400411, 50.263444], [-119.399863, 50.263716], [-119.398917, 50.264986], [-119.398685, 50.265126], [-119.39766, 50.265399], [-119.397413, 50.26552], [-119.395864, 50.266524], [-119.395467, 50.266991], [-119.394664, 50.267215], [-119.393951, 50.267842], [-119.393844, 50.26822], [-119.393375, 50.268374], [-119.392726, 50.268883], [-119.391916, 50.269781], [-119.391082, 50.270211], [-119.39083, 50.270513], [-119.390021, 50.270593], [-119.389681, 50.270817], [-119.389527, 50.271126], [-119.389698, 50.271742], [-119.390577, 50.27301], [-119.390563, 50.27356], [-119.390154, 50.274098], [-119.389825, 50.274259], [-119.390323, 50.273268], [-119.390252, 50.272999], [-119.389938, 50.27288], [-119.389654, 50.273093], [-119.389193, 50.273147], [-119.38892, 50.273306], [-119.388863, 50.273558], [-119.389225, 50.273758], [-119.389219, 50.273947], [-119.388914, 50.274007], [-119.387537, 50.273981], [-119.386811, 50.274329], [-119.386501, 50.274884], [-119.386314, 50.275643], [-119.386102, 50.275891], [-119.385899, 50.276004], [-119.385505, 50.276002], [-119.384787, 50.275685], [-119.384292, 50.275613], [-119.384331, 50.275847], [-119.384727, 50.276189], [-119.384853, 50.276736], [-119.385262, 50.277609], [-119.385743, 50.277985], [-119.386302, 50.27819], [-119.386448, 50.278295], [-119.386732, 50.278648], [-119.386828, 50.278899], [-119.387499, 50.2791], [-119.387673, 50.279222], [-119.386979, 50.279399], [-119.386755, 50.279386], [-119.386268, 50.279198], [-119.385732, 50.279164], [-119.384718, 50.279644], [-119.383685, 50.279782], [-119.38277, 50.280251], [-119.382136, 50.280479], [-119.381482, 50.280889], [-119.380973, 50.281105], [-119.378984, 50.28174], [-119.377764, 50.282323], [-119.375825, 50.283451], [-119.37518, 50.283743], [-119.374116, 50.28434], [-119.372072, 50.285606], [-119.370067, 50.287346], [-119.36789, 50.289018], [-119.366713, 50.290212], [-119.365453, 50.291119], [-119.364572, 50.292027], [-119.363813, 50.292574], [-119.363374, 50.293069], [-119.363179, 50.293127], [-119.362507, 50.29314], [-119.360954, 50.294107], [-119.360629, 50.294339], [-119.359597, 50.295367], [-119.358158, 50.296358], [-119.357997, 50.296505], [-119.357519, 50.297343], [-119.357391, 50.297885], [-119.357373, 50.298929], [-119.357241, 50.299382], [-119.35804, 50.300499], [-119.358814, 50.301104], [-119.358931, 50.301479], [-119.357782, 50.30152], [-119.357257, 50.301719], [-119.356879, 50.302043], [-119.356308, 50.302396], [-119.356214, 50.302793], [-119.356339, 50.303034], [-119.35662, 50.303324], [-119.356502, 50.303489], [-119.356075, 50.303642], [-119.355698, 50.303982], [-119.355438, 50.304113], [-119.355312, 50.304431], [-119.355136, 50.304552], [-119.354743, 50.304568], [-119.354139, 50.304535], [-119.353781, 50.30439], [-119.353288, 50.304382], [-119.352551, 50.304514], [-119.352011, 50.304687], [-119.35144, 50.305049], [-119.351246, 50.305404], [-119.350987, 50.30558], [-119.350042, 50.306067], [-119.349266, 50.306271], [-119.347894, 50.307198], [-119.346498, 50.307668], [-119.345481, 50.308705], [-119.344837, 50.309023], [-119.344282, 50.309151], [-119.343611, 50.309488], [-119.342233, 50.310596], [-119.341177, 50.311157], [-119.340804, 50.31129], [-119.339457, 50.311588], [-119.339002, 50.311767], [-119.338902, 50.311724], [-119.338737, 50.311791], [-119.337643, 50.312406], [-119.337008, 50.312653], [-119.336605, 50.313012], [-119.334428, 50.3139], [-119.333943, 50.314325], [-119.333164, 50.314764], [-119.332932, 50.314858], [-119.331798, 50.31497], [-119.330633, 50.315524], [-119.329411, 50.31643], [-119.329279, 50.316614], [-119.329185, 50.316984], [-119.328854, 50.317404], [-119.327838, 50.317883], [-119.327629, 50.318166], [-119.327542, 50.31842], [-119.327581, 50.318959], [-119.32777, 50.319359], [-119.328264, 50.319701], [-119.328258, 50.319872], [-119.328108, 50.319956], [-119.327054, 50.319932], [-119.326133, 50.320076], [-119.325493, 50.320466], [-119.325425, 50.320809], [-119.325561, 50.321294], [-119.325962, 50.321437], [-119.325979, 50.32151], [-119.325741, 50.321811], [-119.325213, 50.32192], [-119.324954, 50.322412], [-119.325112, 50.322732], [-119.325871, 50.323337], [-119.325908, 50.324057], [-119.32603, 50.324252], [-119.325806, 50.32431], [-119.325385, 50.324292], [-119.324443, 50.324005], [-119.3232, 50.323894], [-119.322795, 50.323921], [-119.322268, 50.324084], [-119.321197, 50.324303], [-119.320897, 50.324463], [-119.320588, 50.324766], [-119.320421, 50.325056], [-119.320039, 50.325316], [-119.319585, 50.325811], [-119.3193, 50.326015], [-119.319291, 50.326392], [-119.319056, 50.326784], [-119.318814, 50.326986], [-119.318427, 50.327139], [-119.317658, 50.327198], [-119.317469, 50.327373], [-119.317192, 50.327478], [-119.316469, 50.3276], [-119.315321, 50.327695], [-119.314921, 50.327865], [-119.314145, 50.328356], [-119.31351, 50.329161], [-119.313499, 50.329503], [-119.312783, 50.330129], [-119.312523, 50.33053], [-119.312276, 50.330679], [-119.311887, 50.330749], [-119.311543, 50.3309], [-119.311253, 50.331302], [-119.311209, 50.331545], [-119.310836, 50.331958], [-119.310842, 50.332102], [-119.31061, 50.332277], [-119.310496, 50.332487], [-119.309229, 50.332754], [-119.308198, 50.333522], [-119.3082, 50.333864], [-119.307897, 50.334247], [-119.307767, 50.334754], [-119.307917, 50.336127], [-119.30785, 50.336191], [-119.307446, 50.336271], [-119.307545, 50.336538], [-119.307437, 50.336658], [-119.307489, 50.337134], [-119.307388, 50.337379], [-119.307571, 50.337662], [-119.307646, 50.338084], [-119.307798, 50.338297], [-119.307518, 50.338626], [-119.307056, 50.338949], [-119.306968, 50.339159], [-119.30603, 50.340103], [-119.305954, 50.340294], [-119.306016, 50.340697], [-119.30635, 50.341221], [-119.306513, 50.341362], [-119.306898, 50.341499], [-119.308117, 50.342571], [-119.308373, 50.342917], [-119.3083, 50.343171], [-119.308959, 50.343679], [-119.30911, 50.343928], [-119.309611, 50.344404], [-119.310094, 50.344755], [-119.310391, 50.345414], [-119.31049, 50.345403], [-119.310718, 50.345498], [-119.310828, 50.345999], [-119.311215, 50.346422], [-119.311694, 50.347349], [-119.311736, 50.347609], [-119.31214, 50.347835], [-119.312192, 50.348032], [-119.312485, 50.348278]]]]}, "properties": {"name": "North Okanagan B", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "North Okanagan B", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937017", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.139277, 50.442078], [-119.149098, 50.441756], [-119.148883, 50.434426], [-119.149636, 50.434434], [-119.150193, 50.428332], [-119.150389, 50.413034], [-119.172564, 50.412644], [-119.172191, 50.390387], [-119.17134, 50.367929], [-119.172127, 50.355783], [-119.172161, 50.350876], [-119.170913, 50.350811], [-119.171266, 50.339813], [-119.201033, 50.340122], [-119.206302, 50.34031], [-119.226786, 50.34025], [-119.23043, 50.337902], [-119.232398, 50.340248], [-119.242803, 50.340237], [-119.242056, 50.339333], [-119.24173, 50.339323], [-119.24152, 50.339254], [-119.241165, 50.339031], [-119.241002, 50.33902], [-119.240846, 50.339088], [-119.240641, 50.339451], [-119.240332, 50.339608], [-119.239842, 50.339432], [-119.239453, 50.339106], [-119.239223, 50.338854], [-119.238711, 50.338012], [-119.237731, 50.337313], [-119.237252, 50.33614], [-119.236749, 50.335493], [-119.235397, 50.334642], [-119.235177, 50.333636], [-119.234733, 50.332485], [-119.23486, 50.331089], [-119.234975, 50.330649], [-119.236113, 50.329016], [-119.236525, 50.327896], [-119.234986, 50.327594], [-119.2349, 50.327534], [-119.234546, 50.326713], [-119.234901, 50.325729], [-119.234918, 50.325426], [-119.233824, 50.322178], [-119.233696, 50.321317], [-119.23406, 50.318798], [-119.233915, 50.317149], [-119.233424, 50.31499], [-119.232438, 50.312689], [-119.232324, 50.311853], [-119.23216, 50.305978], [-119.232218, 50.305743], [-119.23241, 50.305564], [-119.233328, 50.305083], [-119.233628, 50.304652], [-119.233597, 50.304368], [-119.232522, 50.30251], [-119.23195, 50.301335], [-119.231649, 50.300443], [-119.231205, 50.299609], [-119.231135, 50.283639], [-119.233164, 50.283161], [-119.232524, 50.282106], [-119.233687, 50.28205], [-119.23401, 50.281776], [-119.234747, 50.281635], [-119.235364, 50.281271], [-119.236281, 50.281112], [-119.237049, 50.280841], [-119.237423, 50.280643], [-119.237772, 50.280651], [-119.237632, 50.280934], [-119.240275, 50.280641], [-119.240287, 50.280946], [-119.243753, 50.28086], [-119.24373, 50.280585], [-119.247383, 50.28045], [-119.24726, 50.278835], [-119.24636, 50.278655], [-119.243591, 50.278603], [-119.242031, 50.278419], [-119.240497, 50.278313], [-119.239876, 50.278406], [-119.239982, 50.277302], [-119.239996, 50.275946], [-119.241252, 50.275949], [-119.241301, 50.274819], [-119.241624, 50.272451], [-119.2411, 50.272401], [-119.241112, 50.272137], [-119.240005, 50.272121], [-119.239815, 50.270146], [-119.243118, 50.270153], [-119.243134, 50.268098], [-119.242505, 50.268099], [-119.242474, 50.265408], [-119.242224, 50.263695], [-119.242732, 50.263765], [-119.245381, 50.263721], [-119.245384, 50.261883], [-119.242203, 50.261911], [-119.242214, 50.259992], [-119.245201, 50.25999], [-119.245062, 50.256316], [-119.244338, 50.256272], [-119.24216, 50.256293], [-119.241994, 50.254647], [-119.251082, 50.254542], [-119.251069, 50.252924], [-119.247678, 50.252915], [-119.246523, 50.25279], [-119.240025, 50.252906], [-119.239832, 50.247269], [-119.241329, 50.247072], [-119.242019, 50.247586], [-119.242867, 50.247988], [-119.244816, 50.248654], [-119.246605, 50.248921], [-119.247913, 50.249344], [-119.248364, 50.248413], [-119.248219, 50.248349], [-119.248133, 50.246647], [-119.248198, 50.24543], [-119.23928, 50.245467], [-119.238317, 50.245734], [-119.228859, 50.245651], [-119.223537, 50.245662], [-119.216473, 50.245405], [-119.217003, 50.253128], [-119.16967, 50.252797], [-119.169874, 50.245512], [-119.135215, 50.245452], [-119.135194, 50.252817], [-119.117512, 50.252785], [-119.101898, 50.252905], [-119.101346, 50.245239], [-119.090093, 50.245375], [-119.090236, 50.252815], [-119.079304, 50.252894], [-119.079208, 50.263463], [-119.056108, 50.263494], [-119.055855, 50.260003], [-119.03375, 50.259938], [-119.033497, 50.267], [-119.015343, 50.267005], [-118.99878, 50.266849], [-118.998624, 50.275237], [-118.998639, 50.279675], [-119.003118, 50.305972], [-119.003081, 50.308176], [-119.002641, 50.311356], [-119.001008, 50.319483], [-118.996847, 50.349599], [-119.000211, 50.372743], [-119.000266, 50.454823], [-119.000711, 50.473662], [-119.01152, 50.473301], [-119.011403, 50.459607], [-119.041665, 50.459324], [-119.048424, 50.459106], [-119.059726, 50.458572], [-119.059561, 50.444646], [-119.079404, 50.444705], [-119.079435, 50.442105], [-119.103304, 50.442212], [-119.139277, 50.442078]], [[-119.225836, 50.3154], [-119.226958, 50.320267], [-119.217369, 50.320138], [-119.213863, 50.320978], [-119.212139, 50.320872], [-119.212056, 50.321593], [-119.211608, 50.321647], [-119.211527, 50.321308], [-119.205721, 50.321577], [-119.205543, 50.316172], [-119.20773, 50.316146], [-119.207337, 50.31542], [-119.205336, 50.314129], [-119.20549, 50.310954], [-119.206648, 50.310862], [-119.206859, 50.310531], [-119.207266, 50.310135], [-119.207896, 50.30967], [-119.208228, 50.309103], [-119.209426, 50.308057], [-119.209594, 50.307822], [-119.209919, 50.306913], [-119.209585, 50.306853], [-119.209217, 50.306871], [-119.20897, 50.307009], [-119.208602, 50.30746], [-119.20825, 50.30766], [-119.207977, 50.307648], [-119.207577, 50.307524], [-119.207798, 50.306689], [-119.208045, 50.306284], [-119.208343, 50.306018], [-119.209255, 50.305447], [-119.208169, 50.304209], [-119.209154, 50.302903], [-119.210155, 50.302111], [-119.210528, 50.301375], [-119.211227, 50.300705], [-119.211449, 50.300332], [-119.211494, 50.29959], [-119.214786, 50.299488], [-119.214938, 50.298671], [-119.216458, 50.300106], [-119.216788, 50.300068], [-119.217251, 50.2998], [-119.217184, 50.297373], [-119.221849, 50.297348], [-119.22184, 50.299099], [-119.223433, 50.299331], [-119.224507, 50.299156], [-119.22534, 50.29923], [-119.226401, 50.299154], [-119.226718, 50.299221], [-119.22689, 50.299397], [-119.227319, 50.300418], [-119.227536, 50.300676], [-119.227863, 50.300855], [-119.228323, 50.302464], [-119.228759, 50.303084], [-119.228809, 50.3035], [-119.228675, 50.305396], [-119.228728, 50.305716], [-119.229124, 50.306498], [-119.229249, 50.308665], [-119.229328, 50.308845], [-119.229615, 50.309134], [-119.228857, 50.309113], [-119.22615, 50.309224], [-119.226053, 50.310737], [-119.226152, 50.312606], [-119.229421, 50.312455], [-119.22942, 50.312554], [-119.225748, 50.312731], [-119.225836, 50.3154]], [[-119.221779, 50.292241], [-119.222345, 50.292243], [-119.222258, 50.293004], [-119.22074, 50.292831], [-119.221119, 50.292472], [-119.221473, 50.292307], [-119.221779, 50.292241]], [[-119.223954, 50.28975], [-119.223153, 50.290523], [-119.221778, 50.289928], [-119.222625, 50.28915], [-119.223954, 50.28975]], [[-119.226449, 50.28736], [-119.226138, 50.287656], [-119.225517, 50.287374], [-119.22581, 50.287086], [-119.226449, 50.28736]]]]}, "properties": {"name": "North Okanagan C", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "North Okanagan C", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937021", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.685608, 50.41941], [-118.693902, 50.419442], [-118.693693, 50.438687], [-118.693325, 50.445338], [-118.69345, 50.45033], [-118.695065, 50.488179], [-118.720345, 50.488218], [-118.748042, 50.487946], [-118.768502, 50.487814], [-118.789822, 50.487976], [-118.823186, 50.488011], [-118.842962, 50.488081], [-118.95721, 50.488566], [-118.986655, 50.488502], [-119.001876, 50.488385], [-119.001163, 50.478505], [-119.000711, 50.473662], [-119.000266, 50.454823], [-119.000211, 50.372743], [-118.996847, 50.349599], [-119.001008, 50.319483], [-119.002641, 50.311356], [-119.003081, 50.308176], [-119.003118, 50.305972], [-118.998639, 50.279675], [-118.998624, 50.275237], [-118.99878, 50.266849], [-119.015343, 50.267005], [-119.033497, 50.267], [-119.03375, 50.259938], [-119.055855, 50.260003], [-119.056108, 50.263494], [-119.079208, 50.263463], [-119.079304, 50.252894], [-119.078593, 50.248116], [-119.067203, 50.24843], [-119.067078, 50.252679], [-119.056112, 50.252758], [-119.056452, 50.242125], [-119.057647, 50.242017], [-119.059105, 50.241741], [-119.059718, 50.241692], [-119.065627, 50.2417], [-119.065931, 50.236146], [-119.069846, 50.235661], [-119.070016, 50.230661], [-119.067657, 50.228213], [-119.069245, 50.226658], [-119.068834, 50.223488], [-119.080515, 50.223564], [-119.082421, 50.216175], [-119.108005, 50.216049], [-119.10806, 50.212144], [-119.114055, 50.212141], [-119.11399, 50.208912], [-119.141366, 50.21066], [-119.147654, 50.210434], [-119.147618, 50.195191], [-119.153686, 50.19522], [-119.153657, 50.202493], [-119.178672, 50.202993], [-119.181923, 50.202966], [-119.182117, 50.195618], [-119.193034, 50.19551], [-119.193408, 50.202322], [-119.204065, 50.202339], [-119.204411, 50.198473], [-119.21727, 50.198315], [-119.217097, 50.194858], [-119.227267, 50.194929], [-119.227141, 50.18757], [-119.221505, 50.187565], [-119.221121, 50.180237], [-119.232431, 50.180225], [-119.233064, 50.187442], [-119.244378, 50.187511], [-119.245012, 50.184129], [-119.261715, 50.184309], [-119.266931, 50.184397], [-119.267196, 50.188124], [-119.272582, 50.187939], [-119.272688, 50.183946], [-119.28102, 50.183708], [-119.288331, 50.183714], [-119.288675, 50.176524], [-119.299248, 50.176585], [-119.300142, 50.176184], [-119.300177, 50.171058], [-119.300611, 50.169415], [-119.303043, 50.168837], [-119.306099, 50.16673], [-119.310172, 50.164393], [-119.314361, 50.161246], [-119.322068, 50.157836], [-119.327734, 50.153305], [-119.329042, 50.151099], [-119.270405, 50.151154], [-119.240831, 50.151105], [-119.237705, 50.151107], [-119.231784, 50.151214], [-119.216262, 50.151247], [-119.146113, 50.151246], [-119.145353, 50.148355], [-119.143653, 50.14549], [-119.141987, 50.142027], [-119.14126, 50.138851], [-119.141415, 50.135826], [-119.140917, 50.133585], [-119.14041, 50.128873], [-119.140839, 50.125412], [-119.140972, 50.12305], [-119.141001, 50.119268], [-119.143208, 50.116008], [-119.145145, 50.114278], [-119.147318, 50.111608], [-119.148028, 50.108787], [-119.14959, 50.107167], [-119.150117, 50.105828], [-119.151164, 50.104741], [-119.152469, 50.104321], [-119.15341, 50.103829], [-119.161798, 50.094964], [-119.165294, 50.093288], [-119.16827, 50.087615], [-119.169527, 50.085615], [-119.170957, 50.082242], [-119.172969, 50.077098], [-119.172685, 50.07589], [-119.172129, 50.075596], [-119.167495, 50.07129], [-119.167058, 50.070093], [-119.16788, 50.06835], [-119.172575, 50.065186], [-119.177695, 50.059722], [-119.177429, 50.055987], [-119.175872, 50.053806], [-119.174333, 50.051114], [-119.173395, 50.049742], [-119.160489, 50.048199], [-119.150577, 50.048899], [-119.143354, 50.04495], [-119.138356, 50.045718], [-119.129603, 50.046124], [-119.114655, 50.045562], [-119.105469, 50.045314], [-119.09678, 50.052083], [-119.094035, 50.052611], [-119.092129, 50.05212], [-119.088745, 50.048889], [-119.086157, 50.047458], [-119.082222, 50.046095], [-119.080677, 50.046019], [-119.076718, 50.045445], [-119.072364, 50.046026], [-119.071114, 50.042128], [-119.064311, 50.037049], [-119.046222, 50.041685], [-119.037075, 50.040962], [-119.030421, 50.040781], [-119.016489, 50.044458], [-119.000319, 50.047169], [-118.997885, 50.047681], [-118.986924, 50.048038], [-118.982042, 50.045374], [-118.977677, 50.045177], [-118.967389, 50.046417], [-118.958236, 50.04763], [-118.956667, 50.04889], [-118.953095, 50.052048], [-118.946877, 50.057034], [-118.944201, 50.054751], [-118.942929, 50.053493], [-118.938893, 50.04997], [-118.928161, 50.044727], [-118.925469, 50.044244], [-118.923312, 50.042843], [-118.918812, 50.043138], [-118.916976, 50.044431], [-118.916, 50.047498], [-118.912908, 50.052472], [-118.909918, 50.05342], [-118.907797, 50.053905], [-118.903751, 50.054558], [-118.901086, 50.054862], [-118.899184, 50.05484], [-118.897254, 50.054253], [-118.895638, 50.053451], [-118.892269, 50.052085], [-118.890546, 50.051286], [-118.889465, 50.051058], [-118.888323, 50.051708], [-118.883258, 50.05294], [-118.879178, 50.053375], [-118.868902, 50.052789], [-118.864267, 50.042593], [-118.859094, 50.036529], [-118.835039, 50.035764], [-118.828794, 50.027057], [-118.823087, 50.022446], [-118.814604, 50.025836], [-118.80989, 50.021838], [-118.816563, 50.007355], [-118.822121, 50.004472], [-118.822747, 49.999966], [-118.817778, 49.995286], [-118.812148, 49.992287], [-118.811845, 49.991919], [-118.808868, 49.989477], [-118.805339, 49.988465], [-118.79934, 49.98791], [-118.797562, 49.987661], [-118.8021, 49.980987], [-118.802089, 49.976664], [-118.801242, 49.973349], [-118.801421, 49.968207], [-118.800997, 49.96655], [-118.80279, 49.965259], [-118.805028, 49.9646], [-118.804929, 49.962848], [-118.808042, 49.955613], [-118.814926, 49.954319], [-118.81955, 49.954064], [-118.826183, 49.952403], [-118.828726, 49.953388], [-118.834812, 49.954632], [-118.837434, 49.954957], [-118.838159, 49.954952], [-118.845245, 49.956859], [-118.852333, 49.957901], [-118.858455, 49.9569], [-118.858058, 49.953465], [-118.857929, 49.951495], [-118.861003, 49.946576], [-118.864514, 49.941232], [-118.867916, 49.941948], [-118.874893, 49.940542], [-118.87923, 49.937429], [-118.883051, 49.937713], [-118.893297, 49.937523], [-118.903795, 49.931845], [-118.905427, 49.929171], [-118.90744, 49.926394], [-118.910965, 49.920765], [-118.902836, 49.919238], [-118.902359, 49.915667], [-118.90732, 49.906664], [-118.914606, 49.902991], [-118.923053, 49.906099], [-118.930036, 49.910875], [-118.934865, 49.915662], [-118.942323, 49.913948], [-118.958414, 49.905686], [-118.964221, 49.903679], [-118.968934, 49.895646], [-118.976843, 49.892867], [-118.975717, 49.884378], [-118.976761, 49.878656], [-118.988158, 49.871604], [-118.995776, 49.86705], [-119.007592, 49.859749], [-119.011232, 49.851977], [-119.014864, 49.854124], [-119.022185, 49.852231], [-119.024478, 49.848774], [-119.024818, 49.845891], [-119.027877, 49.842968], [-119.033457, 49.83804], [-119.042157, 49.829157], [-119.045812, 49.824286], [-119.052025, 49.817744], [-119.05418, 49.815764], [-119.055252, 49.813777], [-119.055686, 49.812321], [-119.050631, 49.812221], [-118.980635, 49.812274], [-118.760931, 49.812743], [-118.671883, 49.812709], [-118.671848, 49.908778], [-118.672354, 49.95943], [-118.671373, 50.020131], [-118.672404, 50.093853], [-118.671763, 50.107312], [-118.669218, 50.135545], [-118.668979, 50.139051], [-118.670532, 50.180071], [-118.669687, 50.196435], [-118.668352, 50.202154], [-118.669179, 50.20331], [-118.66995, 50.205576], [-118.670415, 50.213852], [-118.671304, 50.223696], [-118.694557, 50.223659], [-118.694907, 50.230427], [-118.695067, 50.237776], [-118.702056, 50.23776], [-118.738627, 50.238061], [-118.739025, 50.244295], [-118.757391, 50.24452], [-118.785232, 50.24471], [-118.79358, 50.244678], [-118.793716, 50.249507], [-118.792002, 50.26545], [-118.791761, 50.270199], [-118.783179, 50.269745], [-118.78134, 50.269744], [-118.778814, 50.269904], [-118.77545, 50.268901], [-118.773737, 50.268585], [-118.77173, 50.268079], [-118.770999, 50.267784], [-118.770346, 50.267393], [-118.768493, 50.265818], [-118.767854, 50.265553], [-118.766126, 50.265124], [-118.763519, 50.264741], [-118.761987, 50.264424], [-118.761055, 50.264031], [-118.758041, 50.263576], [-118.756535, 50.262686], [-118.755591, 50.260407], [-118.754197, 50.259792], [-118.753638, 50.259625], [-118.752322, 50.259385], [-118.751255, 50.259343], [-118.748224, 50.260063], [-118.744698, 50.262285], [-118.743014, 50.263148], [-118.740751, 50.263161], [-118.738303, 50.262421], [-118.735728, 50.261436], [-118.734045, 50.260871], [-118.729779, 50.259651], [-118.728103, 50.259006], [-118.727779, 50.258519], [-118.726581, 50.257639], [-118.724827, 50.257074], [-118.723325, 50.256772], [-118.720149, 50.256403], [-118.718381, 50.256689], [-118.715061, 50.256959], [-118.713631, 50.256738], [-118.713092, 50.256548], [-118.712447, 50.256463], [-118.711501, 50.256472], [-118.710905, 50.256351], [-118.710616, 50.256207], [-118.7084, 50.254216], [-118.707465, 50.253224], [-118.706681, 50.252193], [-118.705995, 50.251862], [-118.705916, 50.25128], [-118.7057, 50.251129], [-118.705396, 50.250504], [-118.704564, 50.24995], [-118.703909, 50.249681], [-118.700697, 50.249692], [-118.699368, 50.249837], [-118.699119, 50.249921], [-118.698782, 50.249908], [-118.698372, 50.249824], [-118.696286, 50.249127], [-118.695553, 50.249057], [-118.694496, 50.248864], [-118.694032, 50.248854], [-118.692889, 50.248655], [-118.69181, 50.248661], [-118.691118, 50.248554], [-118.690578, 50.248346], [-118.688279, 50.246788], [-118.687421, 50.246369], [-118.686053, 50.246154], [-118.685598, 50.245963], [-118.684594, 50.24569], [-118.682415, 50.245218], [-118.680429, 50.244949], [-118.679975, 50.244813], [-118.677717, 50.244431], [-118.676636, 50.244411], [-118.676274, 50.244452], [-118.675135, 50.244747], [-118.6749, 50.244885], [-118.674784, 50.24513], [-118.674871, 50.24566], [-118.6748, 50.246047], [-118.674337, 50.246792], [-118.673835, 50.247321], [-118.673356, 50.247615], [-118.672536, 50.247887], [-118.671753, 50.248357], [-118.671407, 50.248461], [-118.670778, 50.248543], [-118.66953, 50.248516], [-118.668903, 50.2483], [-118.668083, 50.248105], [-118.666264, 50.247781], [-118.665624, 50.24752], [-118.664573, 50.247211], [-118.66365, 50.247224], [-118.6614, 50.247877], [-118.660556, 50.248231], [-118.660308, 50.24836], [-118.659791, 50.248809], [-118.658174, 50.249809], [-118.656685, 50.250821], [-118.653999, 50.251758], [-118.652203, 50.252112], [-118.651412, 50.252033], [-118.650622, 50.251749], [-118.649532, 50.251703], [-118.648446, 50.25202], [-118.647979, 50.252454], [-118.647323, 50.25364], [-118.646124, 50.254826], [-118.644584, 50.255898], [-118.643267, 50.256569], [-118.639475, 50.257894], [-118.636361, 50.259451], [-118.635422, 50.259703], [-118.633659, 50.259965], [-118.631906, 50.260469], [-118.629429, 50.261546], [-118.629009, 50.261579], [-118.638635, 50.261367], [-118.638921, 50.267859], [-118.692792, 50.268041], [-118.692882, 50.288945], [-118.69428, 50.326622], [-118.694834, 50.381793], [-118.694787, 50.41028], [-118.685461, 50.409955], [-118.685608, 50.41941]], [[-118.98704, 50.264846], [-118.969086, 50.264869], [-118.969221, 50.264515], [-118.969191, 50.264282], [-118.968592, 50.263407], [-118.968524, 50.263014], [-118.968678, 50.262568], [-118.969279, 50.261876], [-118.969497, 50.261263], [-118.96958, 50.260681], [-118.969534, 50.260072], [-118.969124, 50.258945], [-118.96912, 50.257888], [-118.968952, 50.257064], [-118.968975, 50.256781], [-118.96948, 50.256026], [-118.969597, 50.255729], [-118.965732, 50.255705], [-118.965894, 50.253452], [-118.965375, 50.25348], [-118.965379, 50.253302], [-118.963482, 50.252925], [-118.963455, 50.253093], [-118.962903, 50.253077], [-118.96285, 50.252933], [-118.962158, 50.252958], [-118.961878, 50.257032], [-118.959634, 50.256846], [-118.960003, 50.256362], [-118.959199, 50.255077], [-118.959053, 50.254195], [-118.959275, 50.253756], [-118.959652, 50.253449], [-118.959189, 50.253534], [-118.957863, 50.253245], [-118.957559, 50.252918], [-118.957637, 50.252353], [-118.948853, 50.252874], [-118.948644, 50.249276], [-118.949424, 50.249118], [-118.95088, 50.248609], [-118.951134, 50.248569], [-118.951174, 50.246002], [-118.953342, 50.246144], [-118.953544, 50.241397], [-118.958482, 50.241528], [-118.958541, 50.241325], [-118.958845, 50.241017], [-118.959214, 50.24079], [-118.959654, 50.240653], [-118.960549, 50.24065], [-118.961512, 50.240526], [-118.962284, 50.240523], [-118.962772, 50.240451], [-118.963173, 50.2403], [-118.963609, 50.239987], [-118.964021, 50.239782], [-118.964536, 50.239665], [-118.965053, 50.239288], [-118.96555, 50.2391], [-118.965543, 50.23892], [-118.965425, 50.238797], [-118.964917, 50.238724], [-118.964777, 50.238402], [-118.964682, 50.237801], [-118.964994, 50.237526], [-118.965747, 50.237099], [-118.966132, 50.236545], [-118.966021, 50.236232], [-118.96592, 50.236162], [-118.965576, 50.235987], [-118.965084, 50.235959], [-118.964924, 50.235846], [-118.964868, 50.235487], [-118.965432, 50.235225], [-118.966128, 50.235279], [-118.966299, 50.236196], [-118.966284, 50.236898], [-118.974328, 50.236842], [-118.973373, 50.237457], [-118.98048, 50.237584], [-118.987653, 50.237804], [-118.987029, 50.261334], [-118.98704, 50.264846]]]]}, "properties": {"name": "North Okanagan D", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "North Okanagan D", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937022", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.403713, 50.831947], [-118.411427, 50.834285], [-118.415153, 50.833965], [-118.422665, 50.827416], [-118.425092, 50.825569], [-118.429634, 50.825745], [-118.433616, 50.825788], [-118.436674, 50.825509], [-118.437769, 50.824278], [-118.437055, 50.821778], [-118.434554, 50.819772], [-118.431011, 50.818566], [-118.430771, 50.813723], [-118.428504, 50.809789], [-118.429999, 50.805135], [-118.43205, 50.802017], [-118.436351, 50.79945], [-118.434097, 50.797037], [-118.431374, 50.795094], [-118.438446, 50.786667], [-118.451588, 50.784988], [-118.449723, 50.781619], [-118.451927, 50.779473], [-118.456468, 50.776498], [-118.456283, 50.772487], [-118.453326, 50.769087], [-118.449806, 50.766776], [-118.449981, 50.765679], [-118.440884, 50.753755], [-118.431545, 50.752232], [-118.432342, 50.746507], [-118.432948, 50.736877], [-118.431321, 50.728167], [-118.41518, 50.724362], [-118.40733, 50.720396], [-118.408728, 50.71209], [-118.414848, 50.707469], [-118.423201, 50.703663], [-118.427518, 50.698634], [-118.425677, 50.694328], [-118.42036, 50.689844], [-118.422203, 50.681316], [-118.426053, 50.674343], [-118.417453, 50.666299], [-118.421788, 50.658515], [-118.426954, 50.651267], [-118.434939, 50.649973], [-118.441446, 50.644418], [-118.450729, 50.633591], [-118.463882, 50.632372], [-118.474469, 50.628985], [-118.47748, 50.620846], [-118.488721, 50.608106], [-118.488893, 50.600562], [-118.489187, 50.595218], [-118.482423, 50.58731], [-118.47517, 50.584145], [-118.478969, 50.578247], [-118.473911, 50.571579], [-118.481758, 50.556868], [-118.510721, 50.549612], [-118.53184, 50.537873], [-118.548457, 50.539029], [-118.555961, 50.53781], [-118.558685, 50.527762], [-118.5728, 50.519265], [-118.584493, 50.514264], [-118.585477, 50.502802], [-118.58941, 50.500608], [-118.587957, 50.497635], [-118.578378, 50.494456], [-118.572843, 50.488195], [-118.578381, 50.487885], [-118.582368, 50.487877], [-118.619149, 50.48792], [-118.695065, 50.488179], [-118.69345, 50.45033], [-118.693325, 50.445338], [-118.693693, 50.438687], [-118.693902, 50.419442], [-118.685608, 50.41941], [-118.68563, 50.416771], [-118.685461, 50.409955], [-118.694787, 50.41028], [-118.694834, 50.381793], [-118.69428, 50.326622], [-118.692882, 50.288945], [-118.692792, 50.268041], [-118.638921, 50.267859], [-118.638635, 50.261367], [-118.629009, 50.261579], [-118.629429, 50.261546], [-118.631906, 50.260469], [-118.633659, 50.259965], [-118.635422, 50.259703], [-118.636361, 50.259451], [-118.639475, 50.257894], [-118.643267, 50.256569], [-118.644584, 50.255898], [-118.646124, 50.254826], [-118.647323, 50.25364], [-118.647979, 50.252454], [-118.648446, 50.25202], [-118.649532, 50.251703], [-118.650622, 50.251749], [-118.651412, 50.252033], [-118.652203, 50.252112], [-118.653999, 50.251758], [-118.656685, 50.250821], [-118.658174, 50.249809], [-118.659791, 50.248809], [-118.660308, 50.24836], [-118.660556, 50.248231], [-118.6614, 50.247877], [-118.66365, 50.247224], [-118.664573, 50.247211], [-118.665624, 50.24752], [-118.666264, 50.247781], [-118.668083, 50.248105], [-118.668903, 50.2483], [-118.66953, 50.248516], [-118.670778, 50.248543], [-118.671407, 50.248461], [-118.671753, 50.248357], [-118.672536, 50.247887], [-118.673356, 50.247615], [-118.673835, 50.247321], [-118.674337, 50.246792], [-118.6748, 50.246047], [-118.674871, 50.24566], [-118.674784, 50.24513], [-118.6749, 50.244885], [-118.675135, 50.244747], [-118.676274, 50.244452], [-118.676636, 50.244411], [-118.677717, 50.244431], [-118.679975, 50.244813], [-118.680429, 50.244949], [-118.682415, 50.245218], [-118.684594, 50.24569], [-118.685598, 50.245963], [-118.686053, 50.246154], [-118.687421, 50.246369], [-118.688279, 50.246788], [-118.690578, 50.248346], [-118.691118, 50.248554], [-118.69181, 50.248661], [-118.692889, 50.248655], [-118.694032, 50.248854], [-118.694496, 50.248864], [-118.695553, 50.249057], [-118.696286, 50.249127], [-118.698372, 50.249824], [-118.698782, 50.249908], [-118.699119, 50.249921], [-118.699368, 50.249837], [-118.700697, 50.249692], [-118.703909, 50.249681], [-118.704564, 50.24995], [-118.705396, 50.250504], [-118.7057, 50.251129], [-118.705916, 50.25128], [-118.705995, 50.251862], [-118.706681, 50.252193], [-118.707465, 50.253224], [-118.7084, 50.254216], [-118.710616, 50.256207], [-118.710905, 50.256351], [-118.711501, 50.256472], [-118.712447, 50.256463], [-118.713092, 50.256548], [-118.713631, 50.256738], [-118.715061, 50.256959], [-118.718381, 50.256689], [-118.720149, 50.256403], [-118.723325, 50.256772], [-118.724827, 50.257074], [-118.726581, 50.257639], [-118.727779, 50.258519], [-118.728103, 50.259006], [-118.729779, 50.259651], [-118.734045, 50.260871], [-118.735728, 50.261436], [-118.738303, 50.262421], [-118.740751, 50.263161], [-118.743014, 50.263148], [-118.744698, 50.262285], [-118.748224, 50.260063], [-118.751255, 50.259343], [-118.752322, 50.259385], [-118.753638, 50.259625], [-118.754197, 50.259792], [-118.755591, 50.260407], [-118.756535, 50.262686], [-118.758041, 50.263576], [-118.761055, 50.264031], [-118.761987, 50.264424], [-118.763519, 50.264741], [-118.766126, 50.265124], [-118.767854, 50.265553], [-118.768493, 50.265818], [-118.770346, 50.267393], [-118.770999, 50.267784], [-118.77173, 50.268079], [-118.773737, 50.268585], [-118.77545, 50.268901], [-118.778814, 50.269904], [-118.78134, 50.269744], [-118.783179, 50.269745], [-118.791761, 50.270199], [-118.792002, 50.26545], [-118.793716, 50.249507], [-118.79358, 50.244678], [-118.785232, 50.24471], [-118.757391, 50.24452], [-118.739025, 50.244295], [-118.738627, 50.238061], [-118.702056, 50.23776], [-118.695067, 50.237776], [-118.694907, 50.230427], [-118.694557, 50.223659], [-118.671304, 50.223696], [-118.670415, 50.213852], [-118.66995, 50.205576], [-118.669179, 50.20331], [-118.668352, 50.202154], [-118.669687, 50.196435], [-118.670532, 50.180071], [-118.668979, 50.139051], [-118.669218, 50.135545], [-118.671763, 50.107312], [-118.672404, 50.093853], [-118.671373, 50.020131], [-118.672354, 49.95943], [-118.671848, 49.908778], [-118.671883, 49.812709], [-118.597824, 49.812552], [-118.552734, 49.812655], [-118.382617, 49.812099], [-118.320862, 49.81224], [-118.304578, 49.812334], [-118.30519, 49.814635], [-118.306562, 49.815945], [-118.306679, 49.815977], [-118.307118, 49.817634], [-118.31223, 49.823689], [-118.324591, 49.830604], [-118.346131, 49.824608], [-118.358378, 49.824853], [-118.366452, 49.82335], [-118.368197, 49.823711], [-118.370424, 49.823858], [-118.372391, 49.823735], [-118.374412, 49.82458], [-118.376428, 49.827193], [-118.377823, 49.83023], [-118.378467, 49.834169], [-118.378888, 49.835005], [-118.379957, 49.836123], [-118.381432, 49.838499], [-118.381211, 49.841507], [-118.381716, 49.850125], [-118.381047, 49.854587], [-118.379305, 49.856705], [-118.378599, 49.859115], [-118.37969, 49.865038], [-118.380523, 49.867475], [-118.383453, 49.869975], [-118.384487, 49.871152], [-118.384239, 49.871567], [-118.381193, 49.871895], [-118.378662, 49.872863], [-118.374845, 49.873952], [-118.372804, 49.873748], [-118.370013, 49.874003], [-118.368471, 49.874639], [-118.365255, 49.877717], [-118.360852, 49.880617], [-118.359334, 49.882621], [-118.359879, 49.884085], [-118.358294, 49.886992], [-118.355638, 49.889222], [-118.353891, 49.891782], [-118.353858, 49.893068], [-118.353591, 49.894567], [-118.35523, 49.894294], [-118.358908, 49.894665], [-118.362107, 49.897114], [-118.366876, 49.901299], [-118.375342, 49.907544], [-118.376694, 49.909073], [-118.377236, 49.912306], [-118.376929, 49.913081], [-118.377387, 49.913637], [-118.391396, 49.909864], [-118.39945, 49.908733], [-118.406939, 49.908329], [-118.410307, 49.909132], [-118.418706, 49.913602], [-118.419362, 49.914446], [-118.418599, 49.91776], [-118.4206, 49.919326], [-118.420194, 49.922589], [-118.417396, 49.927127], [-118.418435, 49.931158], [-118.417366, 49.932693], [-118.416076, 49.9338], [-118.415363, 49.93629], [-118.419189, 49.942031], [-118.419721, 49.94478], [-118.422307, 49.94763], [-118.422527, 49.949706], [-118.421761, 49.951352], [-118.418936, 49.95398], [-118.419041, 49.957983], [-118.420633, 49.96215], [-118.419569, 49.963143], [-118.415687, 49.964888], [-118.413776, 49.966952], [-118.415893, 49.973044], [-118.417673, 49.974056], [-118.424243, 49.975116], [-118.426968, 49.976495], [-118.430673, 49.979385], [-118.432046, 49.979482], [-118.433903, 49.978947], [-118.436738, 49.97749], [-118.439741, 49.976724], [-118.442419, 49.975262], [-118.443756, 49.973744], [-118.446522, 49.973636], [-118.448705, 49.973794], [-118.459217, 49.977114], [-118.461422, 49.978203], [-118.470785, 49.984446], [-118.471977, 49.985727], [-118.472982, 49.988391], [-118.470818, 49.996289], [-118.471111, 49.997705], [-118.473517, 49.999524], [-118.471545, 50.000532], [-118.468941, 50.000736], [-118.457214, 50.002959], [-118.45268, 50.005117], [-118.450579, 50.005717], [-118.449546, 50.005767], [-118.446461, 50.006599], [-118.444756, 50.006447], [-118.442275, 50.005385], [-118.439786, 50.004424], [-118.436828, 50.00522], [-118.434225, 50.007636], [-118.431863, 50.009294], [-118.433845, 50.013817], [-118.435272, 50.015769], [-118.440742, 50.018925], [-118.448115, 50.022615], [-118.45416, 50.024274], [-118.45487, 50.023971], [-118.461476, 50.025666], [-118.47185, 50.026278], [-118.476519, 50.02683], [-118.486705, 50.029709], [-118.488046, 50.029766], [-118.492085, 50.030623], [-118.495891, 50.032579], [-118.495859, 50.033607], [-118.456946, 50.033472], [-118.399764, 50.033423], [-118.398991, 50.0533], [-118.398853, 50.062096], [-118.3983, 50.07876], [-118.388107, 50.076998], [-118.383967, 50.077174], [-118.382859, 50.0821], [-118.37868, 50.086463], [-118.378433, 50.089703], [-118.375392, 50.0905], [-118.369931, 50.090463], [-118.349265, 50.09457], [-118.345425, 50.096662], [-118.340367, 50.100296], [-118.338176, 50.100722], [-118.328972, 50.098634], [-118.322685, 50.097771], [-118.315146, 50.097796], [-118.309168, 50.096479], [-118.304437, 50.09577], [-118.298464, 50.095812], [-118.295965, 50.09639], [-118.293527, 50.097815], [-118.291479, 50.102382], [-118.291934, 50.105475], [-118.294429, 50.108144], [-118.294427, 50.108372], [-118.295699, 50.111121], [-118.295781, 50.115519], [-118.291399, 50.131286], [-118.295614, 50.133184], [-118.296018, 50.134682], [-118.284798, 50.14018], [-118.280153, 50.143122], [-118.277535, 50.146289], [-118.278191, 50.156051], [-118.27517, 50.157721], [-118.274049, 50.157908], [-118.266005, 50.162883], [-118.257867, 50.165594], [-118.253754, 50.1681], [-118.252356, 50.169099], [-118.256839, 50.175332], [-118.261934, 50.179114], [-118.263725, 50.181421], [-118.259846, 50.183056], [-118.252851, 50.188656], [-118.252476, 50.190235], [-118.249274, 50.191947], [-118.243209, 50.193131], [-118.239127, 50.196296], [-118.240731, 50.201066], [-118.239414, 50.204922], [-118.236929, 50.206161], [-118.23872, 50.210856], [-118.248384, 50.218453], [-118.248475, 50.221891], [-118.253386, 50.22263], [-118.258173, 50.226208], [-118.265653, 50.244487], [-118.263539, 50.246546], [-118.263575, 50.248401], [-118.271066, 50.251946], [-118.271394, 50.25332], [-118.26916, 50.257012], [-118.26941, 50.259474], [-118.27429, 50.268893], [-118.276066, 50.278655], [-118.269296, 50.294749], [-118.264463, 50.297701], [-118.263431, 50.300123], [-118.268865, 50.305522], [-118.26789, 50.309528], [-118.269459, 50.313885], [-118.267182, 50.318122], [-118.255255, 50.325589], [-118.258971, 50.326404], [-118.261419, 50.328113], [-118.261611, 50.330192], [-118.259491, 50.332251], [-118.260111, 50.334343], [-118.263725, 50.337123], [-118.272405, 50.339335], [-118.275461, 50.339802], [-118.283083, 50.338969], [-118.288197, 50.337242], [-118.30267, 50.337801], [-118.308288, 50.336197], [-118.31259, 50.337245], [-118.317668, 50.340611], [-118.322653, 50.341732], [-118.327654, 50.344986], [-118.327733, 50.348697], [-118.326898, 50.351999], [-118.317397, 50.361465], [-118.310749, 50.371131], [-118.302216, 50.376587], [-118.301378, 50.379889], [-118.291676, 50.386069], [-118.285807, 50.38784], [-118.282088, 50.392414], [-118.278168, 50.392169], [-118.26995, 50.393256], [-118.263806, 50.395235], [-118.256504, 50.39553], [-118.254751, 50.39722], [-118.254672, 50.398309], [-118.25584, 50.398779], [-118.263059, 50.398869], [-118.27698, 50.401335], [-118.274795, 50.406613], [-118.271443, 50.411418], [-118.26992, 50.415845], [-118.272953, 50.421393], [-118.271233, 50.427341], [-118.270119, 50.430853], [-118.27257, 50.434965], [-118.269748, 50.436018], [-118.267589, 50.436218], [-118.262817, 50.434734], [-118.257624, 50.435376], [-118.24161, 50.435149], [-118.236621, 50.434261], [-118.236609, 50.434185], [-118.229832, 50.433728], [-118.226817, 50.43398], [-118.224999, 50.434426], [-118.212054, 50.439415], [-118.211166, 50.44256], [-118.20448, 50.451303], [-118.204605, 50.45955], [-118.205126, 50.46234], [-118.204307, 50.464334], [-118.207687, 50.464129], [-118.219605, 50.469453], [-118.220638, 50.471144], [-118.218103, 50.476341], [-118.213813, 50.478296], [-118.208274, 50.479106], [-118.199599, 50.476397], [-118.193555, 50.474326], [-118.192166, 50.474648], [-118.189433, 50.481073], [-118.184466, 50.484391], [-118.180148, 50.48866], [-118.176073, 50.493116], [-118.177534, 50.499826], [-118.185606, 50.500663], [-118.195644, 50.508935], [-118.20096, 50.510994], [-118.202079, 50.511803], [-118.202908, 50.512831], [-118.203132, 50.513901], [-118.203619, 50.514816], [-118.204548, 50.515897], [-118.205021, 50.51737], [-118.204879, 50.518498], [-118.204235, 50.519271], [-118.203606, 50.519549], [-118.201735, 50.519795], [-118.200136, 50.520228], [-118.199594, 50.520558], [-118.198852, 50.521386], [-118.197759, 50.522272], [-118.195874, 50.52314], [-118.195171, 50.523613], [-118.196616, 50.526688], [-118.205755, 50.533659], [-118.215308, 50.538067], [-118.21208, 50.542698], [-118.209997, 50.543501], [-118.208696, 50.545108], [-118.209936, 50.547243], [-118.20943, 50.548006], [-118.204865, 50.548703], [-118.204169, 50.54919], [-118.204159, 50.550508], [-118.203884, 50.551607], [-118.201121, 50.552091], [-118.198435, 50.552187], [-118.190003, 50.549443], [-118.187851, 50.549317], [-118.182512, 50.550886], [-118.179668, 50.553582], [-118.178764, 50.557267], [-118.180099, 50.559377], [-118.179943, 50.56015], [-118.175308, 50.561413], [-118.173315, 50.564015], [-118.170717, 50.568905], [-118.169528, 50.569676], [-118.169883, 50.570526], [-118.175537, 50.574422], [-118.177747, 50.580304], [-118.176083, 50.581719], [-118.170666, 50.583017], [-118.16789, 50.584816], [-118.168234, 50.586984], [-118.163326, 50.589854], [-118.163555, 50.59052], [-118.16825, 50.594685], [-118.167045, 50.599769], [-118.167378, 50.605592], [-118.16828, 50.60607], [-118.167638, 50.607638], [-118.164162, 50.609924], [-118.162698, 50.611465], [-118.166193, 50.615382], [-118.171359, 50.617227], [-118.1745, 50.620294], [-118.17811, 50.623376], [-118.179619, 50.629236], [-118.180764, 50.635235], [-118.184108, 50.635762], [-118.186327, 50.635655], [-118.192287, 50.633993], [-118.195985, 50.634203], [-118.19781, 50.635519], [-118.198709, 50.637825], [-118.200184, 50.638801], [-118.201263, 50.640033], [-118.199241, 50.644763], [-118.199807, 50.647418], [-118.20231, 50.650883], [-118.20531, 50.653405], [-118.206331, 50.655385], [-118.201605, 50.657365], [-118.195719, 50.657333], [-118.188011, 50.659489], [-118.182877, 50.663043], [-118.176688, 50.664736], [-118.170742, 50.665449], [-118.172651, 50.666889], [-118.174947, 50.66939], [-118.178621, 50.671725], [-118.184022, 50.673068], [-118.1929, 50.673296], [-118.196369, 50.674666], [-118.19904, 50.674213], [-118.203975, 50.676708], [-118.210373, 50.67916], [-118.213484, 50.680008], [-118.21459, 50.682111], [-118.213518, 50.682557], [-118.207285, 50.690281], [-118.203876, 50.6958], [-118.203805, 50.695799], [-118.200667, 50.698946], [-118.204438, 50.705111], [-118.207066, 50.711201], [-118.208868, 50.713368], [-118.206665, 50.719914], [-118.207525, 50.723431], [-118.20718, 50.724516], [-118.208416, 50.728127], [-118.209836, 50.729511], [-118.208514, 50.732351], [-118.205938, 50.735639], [-118.205858, 50.738924], [-118.21388, 50.739947], [-118.217822, 50.740923], [-118.223168, 50.741901], [-118.226952, 50.74338], [-118.235345, 50.749941], [-118.241902, 50.755192], [-118.24846, 50.766899], [-118.248166, 50.767836], [-118.248896, 50.76978], [-118.247618, 50.773801], [-118.248818, 50.776438], [-118.252275, 50.782109], [-118.255634, 50.78335], [-118.261456, 50.784993], [-118.263181, 50.787483], [-118.263839, 50.788884], [-118.263843, 50.790468], [-118.262603, 50.793191], [-118.260845, 50.796406], [-118.261187, 50.799381], [-118.266307, 50.806768], [-118.26774, 50.809737], [-118.267962, 50.813439], [-118.26376, 50.815503], [-118.258786, 50.817584], [-118.258517, 50.81855], [-118.261276, 50.820951], [-118.264344, 50.82267], [-118.26746, 50.823782], [-118.270669, 50.823678], [-118.27272, 50.822808], [-118.276024, 50.823966], [-118.272085, 50.832496], [-118.270988, 50.833396], [-118.268372, 50.838535], [-118.26836, 50.840322], [-118.269821, 50.841301], [-118.271665, 50.84148], [-118.273624, 50.844302], [-118.277344, 50.846732], [-118.28295, 50.847148], [-118.28469, 50.847852], [-118.286309, 50.849282], [-118.287702, 50.854443], [-118.290066, 50.857846], [-118.290349, 50.859154], [-118.292881, 50.861222], [-118.293075, 50.862853], [-118.294287, 50.864402], [-118.29884, 50.862301], [-118.304377, 50.858637], [-118.310073, 50.857527], [-118.317873, 50.857441], [-118.3221, 50.856874], [-118.325447, 50.854379], [-118.325386, 50.848941], [-118.328968, 50.848114], [-118.331035, 50.848424], [-118.337749, 50.846457], [-118.34913, 50.842571], [-118.356523, 50.841576], [-118.360507, 50.839339], [-118.364148, 50.838928], [-118.370375, 50.84087], [-118.373497, 50.838692], [-118.374563, 50.834175], [-118.375606, 50.831992], [-118.380908, 50.830939], [-118.384547, 50.831807], [-118.391183, 50.83067], [-118.403713, 50.831947]]]]}, "properties": {"name": "North Okanagan E", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "North Okanagan E", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937023", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.183378, 50.527813], [-119.196907, 50.527887], [-119.218675, 50.528397], [-119.230916, 50.528145], [-119.240451, 50.528165], [-119.244132, 50.528107], [-119.289783, 50.528421], [-119.308474, 50.528602], [-119.307895, 50.504424], [-119.308023, 50.500269], [-119.296339, 50.500332], [-119.296208, 50.492877], [-119.279763, 50.492946], [-119.277428, 50.492995], [-119.269131, 50.492839], [-119.268615, 50.492746], [-119.263187, 50.49282], [-119.262928, 50.488343], [-119.263397, 50.487737], [-119.263201, 50.484969], [-119.274067, 50.485218], [-119.275304, 50.485177], [-119.276113, 50.485028], [-119.293879, 50.484963], [-119.297472, 50.4849], [-119.297433, 50.482728], [-119.297557, 50.482432], [-119.297647, 50.475727], [-119.29739, 50.471348], [-119.328936, 50.469982], [-119.328787, 50.458399], [-119.328873, 50.456912], [-119.328225, 50.441064], [-119.317382, 50.440788], [-119.317751, 50.427261], [-119.317791, 50.416145], [-119.31787, 50.416145], [-119.319268, 50.405318], [-119.319189, 50.405112], [-119.31753, 50.405054], [-119.317234, 50.405168], [-119.308576, 50.405176], [-119.307852, 50.391659], [-119.306031, 50.369306], [-119.290552, 50.36915], [-119.290574, 50.367438], [-119.291103, 50.359602], [-119.290922, 50.359585], [-119.291015, 50.358588], [-119.289971, 50.358525], [-119.289969, 50.358478], [-119.284212, 50.358409], [-119.28416, 50.354599], [-119.282192, 50.354537], [-119.282851, 50.354099], [-119.283568, 50.353814], [-119.283598, 50.353274], [-119.284281, 50.35317], [-119.284363, 50.353125], [-119.284407, 50.352836], [-119.285222, 50.352559], [-119.285367, 50.35234], [-119.285375, 50.351856], [-119.277695, 50.351493], [-119.277822, 50.345544], [-119.277961, 50.345389], [-119.278016, 50.34506], [-119.277876, 50.343299], [-119.277863, 50.341698], [-119.277801, 50.341672], [-119.277888, 50.340375], [-119.251756, 50.340238], [-119.251824, 50.343735], [-119.251763, 50.344582], [-119.24879, 50.34468], [-119.249429, 50.340232], [-119.232398, 50.340248], [-119.23043, 50.337902], [-119.226786, 50.34025], [-119.206302, 50.34031], [-119.201033, 50.340122], [-119.171266, 50.339813], [-119.170913, 50.350811], [-119.172161, 50.350876], [-119.172127, 50.355783], [-119.17134, 50.367929], [-119.172191, 50.390387], [-119.172564, 50.412644], [-119.150389, 50.413034], [-119.150193, 50.428332], [-119.149636, 50.434434], [-119.148883, 50.434426], [-119.149098, 50.441756], [-119.139277, 50.442078], [-119.103304, 50.442212], [-119.079435, 50.442105], [-119.07946, 50.459555], [-119.080018, 50.467856], [-119.079934, 50.482405], [-119.081295, 50.506516], [-119.081367, 50.513804], [-119.081784, 50.524507], [-119.081791, 50.551501], [-119.081979, 50.553987], [-119.082643, 50.554045], [-119.082963, 50.553914], [-119.083179, 50.55372], [-119.0834, 50.553257], [-119.083374, 50.552359], [-119.082984, 50.551197], [-119.082929, 50.550586], [-119.082981, 50.550153], [-119.08331, 50.549599], [-119.08402, 50.549109], [-119.084511, 50.548983], [-119.085409, 50.548886], [-119.087282, 50.548448], [-119.088884, 50.54833], [-119.089649, 50.54838], [-119.091897, 50.548761], [-119.092847, 50.548842], [-119.093677, 50.548801], [-119.095367, 50.548411], [-119.096885, 50.547917], [-119.098621, 50.547579], [-119.100831, 50.546793], [-119.102261, 50.545957], [-119.103103, 50.545232], [-119.103648, 50.544439], [-119.104632, 50.543386], [-119.105084, 50.543091], [-119.105594, 50.542839], [-119.106348, 50.542654], [-119.107276, 50.542539], [-119.108603, 50.54256], [-119.109616, 50.542802], [-119.110047, 50.543002], [-119.110796, 50.543644], [-119.111233, 50.544256], [-119.111456, 50.544829], [-119.112489, 50.546474], [-119.113117, 50.546903], [-119.113663, 50.547153], [-119.114021, 50.547273], [-119.115069, 50.547336], [-119.115486, 50.547183], [-119.115967, 50.546914], [-119.116293, 50.546585], [-119.116431, 50.546222], [-119.116518, 50.545339], [-119.116458, 50.543667], [-119.116774, 50.543184], [-119.117264, 50.542762], [-119.118241, 50.542187], [-119.119842, 50.541698], [-119.12114, 50.541387], [-119.123272, 50.541217], [-119.123084, 50.540021], [-119.124071, 50.538467], [-119.125046, 50.53755], [-119.125349, 50.536223], [-119.12477, 50.535475], [-119.123937, 50.535139], [-119.123306, 50.533972], [-119.123007, 50.533618], [-119.122883, 50.532703], [-119.123051, 50.532386], [-119.123077, 50.532025], [-119.123055, 50.531846], [-119.122785, 50.53149], [-119.12291, 50.530823], [-119.122824, 50.5305], [-119.12242, 50.52995], [-119.122461, 50.529311], [-119.122716, 50.528677], [-119.122621, 50.528139], [-119.122792, 50.52756], [-119.122318, 50.527046], [-119.121796, 50.526768], [-119.12146, 50.526495], [-119.121039, 50.525918], [-119.120897, 50.525588], [-119.12148, 50.525371], [-119.121629, 50.525242], [-119.121627, 50.524568], [-119.121823, 50.524178], [-119.121784, 50.523944], [-119.1219, 50.523718], [-119.121894, 50.523249], [-119.122177, 50.523002], [-119.122157, 50.522858], [-119.122684, 50.522641], [-119.122998, 50.522385], [-119.1234, 50.522242], [-119.123699, 50.522003], [-119.123721, 50.521841], [-119.123512, 50.521619], [-119.122689, 50.521194], [-119.122675, 50.520896], [-119.122807, 50.520652], [-119.123299, 50.520643], [-119.123926, 50.520434], [-119.124347, 50.520102], [-119.124326, 50.519949], [-119.123568, 50.519047], [-119.12356, 50.518876], [-119.123691, 50.518622], [-119.129571, 50.519216], [-119.139331, 50.520369], [-119.139634, 50.51277], [-119.137189, 50.512333], [-119.137833, 50.508441], [-119.137916, 50.499609], [-119.141669, 50.499357], [-119.141642, 50.499821], [-119.154704, 50.49861], [-119.165073, 50.499821], [-119.183463, 50.499999], [-119.183378, 50.527813]], [[-119.210184, 50.455962], [-119.198281, 50.455953], [-119.188407, 50.456064], [-119.182571, 50.455827], [-119.183286, 50.451539], [-119.182203, 50.449499], [-119.182211, 50.449294], [-119.180008, 50.449849], [-119.180948, 50.449408], [-119.181544, 50.448949], [-119.18213, 50.448213], [-119.182288, 50.447921], [-119.182419, 50.447405], [-119.183285, 50.43835], [-119.183293, 50.429744], [-119.191138, 50.429781], [-119.191124, 50.433215], [-119.191265, 50.434158], [-119.193106, 50.434166], [-119.193317, 50.436784], [-119.193494, 50.436973], [-119.193622, 50.437953], [-119.19395, 50.43866], [-119.194555, 50.439143], [-119.194485, 50.437875], [-119.205744, 50.437739], [-119.205763, 50.436087], [-119.217131, 50.436257], [-119.216917, 50.443195], [-119.216902, 50.448788], [-119.216533, 50.448704], [-119.211373, 50.448625], [-119.211056, 50.448684], [-119.210119, 50.448683], [-119.210184, 50.455962]], [[-119.228697, 50.383502], [-119.24001, 50.383507], [-119.24001, 50.390761], [-119.228738, 50.39077], [-119.228697, 50.383502]]]]}, "properties": {"name": "Spallumcheen", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Spallumcheen", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937024", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.188407, 50.456064], [-119.198281, 50.455953], [-119.210184, 50.455962], [-119.210119, 50.448683], [-119.211056, 50.448684], [-119.211373, 50.448625], [-119.216533, 50.448704], [-119.216902, 50.448788], [-119.216917, 50.443195], [-119.217131, 50.436257], [-119.205763, 50.436087], [-119.205744, 50.437739], [-119.194485, 50.437875], [-119.194555, 50.439143], [-119.19395, 50.43866], [-119.193622, 50.437953], [-119.193494, 50.436973], [-119.193317, 50.436784], [-119.193106, 50.434166], [-119.191265, 50.434158], [-119.191124, 50.433215], [-119.191138, 50.429781], [-119.183293, 50.429744], [-119.183285, 50.43835], [-119.182419, 50.447405], [-119.182288, 50.447921], [-119.18213, 50.448213], [-119.181544, 50.448949], [-119.180948, 50.449408], [-119.180008, 50.449849], [-119.182211, 50.449294], [-119.182203, 50.449499], [-119.183286, 50.451539], [-119.182571, 50.455827], [-119.188407, 50.456064]]]]}, "properties": {"name": "Armstrong", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Armstrong", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937028", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.137425, 50.563449], [-119.138169, 50.563355], [-119.139554, 50.563392], [-119.140929, 50.563529], [-119.14288, 50.563889], [-119.143439, 50.564059], [-119.144691, 50.564584], [-119.145697, 50.565241], [-119.146019, 50.565531], [-119.146316, 50.565822], [-119.146728, 50.566507], [-119.146809, 50.56736], [-119.146742, 50.568972], [-119.146693, 50.56917], [-119.145873, 50.57022], [-119.149431, 50.570153], [-119.149783, 50.5701], [-119.149685, 50.569826], [-119.148819, 50.56796], [-119.148274, 50.567135], [-119.142398, 50.55965], [-119.143868, 50.559719], [-119.143686, 50.55901], [-119.148847, 50.559079], [-119.14886, 50.559611], [-119.151105, 50.559625], [-119.151126, 50.560468], [-119.153988, 50.560449], [-119.153863, 50.561487], [-119.157115, 50.562141], [-119.16117, 50.562157], [-119.162285, 50.562096], [-119.161912, 50.554516], [-119.163021, 50.554278], [-119.163003, 50.554231], [-119.162603, 50.553719], [-119.16252, 50.553415], [-119.162065, 50.552746], [-119.161878, 50.552225], [-119.161321, 50.551363], [-119.160979, 50.551217], [-119.160847, 50.550894], [-119.160443, 50.550476], [-119.160088, 50.550391], [-119.159723, 50.550545], [-119.159343, 50.550945], [-119.158661, 50.553169], [-119.158441, 50.553605], [-119.15761, 50.554635], [-119.15571, 50.554617], [-119.155802, 50.55275], [-119.155695, 50.547151], [-119.154088, 50.547249], [-119.154161, 50.543289], [-119.140202, 50.543002], [-119.138004, 50.543198], [-119.136292, 50.5432], [-119.136511, 50.543903], [-119.136547, 50.544343], [-119.136349, 50.547153], [-119.135684, 50.548083], [-119.135044, 50.548599], [-119.134823, 50.548701], [-119.134798, 50.548783], [-119.134908, 50.549006], [-119.135343, 50.549268], [-119.135254, 50.549485], [-119.13542, 50.549715], [-119.135508, 50.549787], [-119.135992, 50.549885], [-119.136111, 50.550036], [-119.136238, 50.550358], [-119.136211, 50.550997], [-119.135717, 50.551617], [-119.135241, 50.552004], [-119.134744, 50.552256], [-119.134007, 50.55253], [-119.132224, 50.553669], [-119.131478, 50.55434], [-119.131012, 50.554653], [-119.130474, 50.555257], [-119.129824, 50.555845], [-119.127197, 50.557691], [-119.125969, 50.558704], [-119.125024, 50.559638], [-119.123991, 50.56115], [-119.123758, 50.562566], [-119.124341, 50.563617], [-119.125007, 50.564271], [-119.125604, 50.564699], [-119.128232, 50.565651], [-119.129374, 50.565909], [-119.130026, 50.565968], [-119.131282, 50.565981], [-119.132054, 50.56585], [-119.132764, 50.565631], [-119.13451, 50.56487], [-119.135815, 50.5641], [-119.137425, 50.563449]]]]}, "properties": {"name": "Enderby", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Enderby", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937033", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.612785, 50.924619], [-118.613883, 50.918557], [-118.607733, 50.902612], [-118.60961, 50.894113], [-118.619481, 50.885735], [-118.622614, 50.878929], [-118.625828, 50.874441], [-118.634751, 50.868339], [-118.63803, 50.865622], [-118.639471, 50.862978], [-118.639426, 50.860903], [-118.636022, 50.860078], [-118.630792, 50.860667], [-118.621778, 50.863224], [-118.619946, 50.863296], [-118.617393, 50.862677], [-118.618552, 50.859964], [-118.620256, 50.857692], [-118.625853, 50.853575], [-118.630794, 50.850537], [-118.633745, 50.848361], [-118.639261, 50.848143], [-118.651617, 50.853229], [-118.657497, 50.85052], [-118.662465, 50.84986], [-118.668168, 50.846902], [-118.671289, 50.843631], [-118.670323, 50.83958], [-118.666871, 50.836377], [-118.663584, 50.832081], [-118.664455, 50.823019], [-118.667678, 50.819264], [-118.674847, 50.815431], [-118.684537, 50.814163], [-118.699381, 50.811202], [-118.705992, 50.8129], [-118.711381, 50.8142], [-118.715101, 50.813139], [-118.718005, 50.814251], [-118.721927, 50.818802], [-118.726088, 50.82269], [-118.732993, 50.825795], [-118.739336, 50.825777], [-118.752922, 50.82369], [-118.759049, 50.82403], [-118.765605, 50.826637], [-118.772086, 50.827473], [-118.778134, 50.826043], [-118.781638, 50.823023], [-118.783997, 50.819059], [-118.784417, 50.815351], [-118.788845, 50.809001], [-118.795102, 50.802576], [-118.802824, 50.798871], [-118.808691, 50.797193], [-118.810815, 50.794582], [-118.811543, 50.79003], [-118.812662, 50.786676], [-118.81669, 50.784429], [-118.824971, 50.782228], [-118.828428, 50.779184], [-118.830724, 50.776817], [-118.828812, 50.772857], [-118.829034, 50.769895], [-118.832184, 50.767736], [-118.837636, 50.767346], [-118.841281, 50.76698], [-118.850236, 50.767291], [-118.853912, 50.766489], [-118.855623, 50.764915], [-118.854953, 50.759322], [-118.858025, 50.757342], [-118.863854, 50.757242], [-118.868807, 50.758889], [-118.872345, 50.759547], [-118.877821, 50.758954], [-118.878833, 50.756066], [-118.883044, 50.750423], [-118.999706, 50.750006], [-119.038211, 50.750039], [-119.051075, 50.749993], [-119.18031, 50.750095], [-119.180411, 50.7316], [-119.180814, 50.707132], [-119.181259, 50.692523], [-119.180838, 50.663402], [-119.181134, 50.649472], [-119.181125, 50.640894], [-119.181385, 50.634213], [-119.181556, 50.61968], [-119.181748, 50.61937], [-119.181729, 50.616877], [-119.181517, 50.61644], [-119.181983, 50.614927], [-119.181743, 50.608882], [-119.181667, 50.603911], [-119.181918, 50.597996], [-119.18204, 50.591287], [-119.182448, 50.578275], [-119.182296, 50.572344], [-119.182173, 50.571044], [-119.182346, 50.561383], [-119.183544, 50.543865], [-119.181633, 50.543689], [-119.154161, 50.543289], [-119.154088, 50.547249], [-119.155695, 50.547151], [-119.155802, 50.55275], [-119.15571, 50.554617], [-119.15761, 50.554635], [-119.158441, 50.553605], [-119.158661, 50.553169], [-119.159343, 50.550945], [-119.159723, 50.550545], [-119.160088, 50.550391], [-119.160443, 50.550476], [-119.160847, 50.550894], [-119.160979, 50.551217], [-119.161321, 50.551363], [-119.161878, 50.552225], [-119.162065, 50.552746], [-119.16252, 50.553415], [-119.162603, 50.553719], [-119.163003, 50.554231], [-119.163021, 50.554278], [-119.161912, 50.554516], [-119.162285, 50.562096], [-119.16117, 50.562157], [-119.157115, 50.562141], [-119.153863, 50.561487], [-119.153988, 50.560449], [-119.151126, 50.560468], [-119.151105, 50.559625], [-119.14886, 50.559611], [-119.148847, 50.559079], [-119.143686, 50.55901], [-119.143868, 50.559719], [-119.142398, 50.55965], [-119.148274, 50.567135], [-119.148819, 50.56796], [-119.149685, 50.569826], [-119.149783, 50.5701], [-119.149431, 50.570153], [-119.145873, 50.57022], [-119.146693, 50.56917], [-119.146742, 50.568972], [-119.146809, 50.56736], [-119.146728, 50.566507], [-119.146316, 50.565822], [-119.145697, 50.565241], [-119.145229, 50.564907], [-119.144691, 50.564584], [-119.143439, 50.564059], [-119.14288, 50.563889], [-119.140929, 50.563529], [-119.139554, 50.563392], [-119.138169, 50.563355], [-119.137676, 50.563391], [-119.137187, 50.563517], [-119.135815, 50.5641], [-119.13451, 50.56487], [-119.132764, 50.565631], [-119.132054, 50.56585], [-119.131282, 50.565981], [-119.130748, 50.566], [-119.129374, 50.565909], [-119.128232, 50.565651], [-119.125951, 50.564856], [-119.125416, 50.564587], [-119.124341, 50.563617], [-119.123758, 50.562566], [-119.123893, 50.561485], [-119.123991, 50.56115], [-119.125024, 50.559638], [-119.125969, 50.558704], [-119.127197, 50.557691], [-119.129824, 50.555845], [-119.130474, 50.555257], [-119.131012, 50.554653], [-119.131478, 50.55434], [-119.132224, 50.553669], [-119.134007, 50.55253], [-119.134744, 50.552256], [-119.135241, 50.552004], [-119.135717, 50.551617], [-119.136211, 50.550997], [-119.136192, 50.550266], [-119.134585, 50.550277], [-119.134632, 50.550692], [-119.134809, 50.550905], [-119.134833, 50.551084], [-119.134665, 50.551466], [-119.134076, 50.551845], [-119.133395, 50.552064], [-119.132356, 50.552542], [-119.13112, 50.553284], [-119.129801, 50.554415], [-119.129444, 50.554619], [-119.127943, 50.555798], [-119.126858, 50.556475], [-119.125375, 50.55765], [-119.108172, 50.557404], [-119.105607, 50.557432], [-119.074795, 50.557302], [-119.074327, 50.555491], [-119.069888, 50.555436], [-119.069095, 50.553574], [-119.068829, 50.552554], [-119.068251, 50.551779], [-119.068423, 50.551426], [-119.069548, 50.551051], [-119.070858, 50.550982], [-119.075631, 50.551151], [-119.077154, 50.55116], [-119.078422, 50.551354], [-119.079366, 50.552135], [-119.07957, 50.552859], [-119.079802, 50.552963], [-119.080534, 50.554182], [-119.081156, 50.554196], [-119.082074, 50.554425], [-119.081979, 50.553987], [-119.081791, 50.551501], [-119.081784, 50.524507], [-119.081367, 50.513804], [-119.081295, 50.506516], [-119.079934, 50.482405], [-119.080018, 50.467856], [-119.07946, 50.459555], [-119.079404, 50.444705], [-119.059561, 50.444646], [-119.059726, 50.458572], [-119.048424, 50.459106], [-119.041665, 50.459324], [-119.011403, 50.459607], [-119.01152, 50.473301], [-119.000711, 50.473662], [-119.001163, 50.478505], [-119.001876, 50.488385], [-118.986655, 50.488502], [-118.95721, 50.488566], [-118.842962, 50.488081], [-118.823186, 50.488011], [-118.789822, 50.487976], [-118.768502, 50.487814], [-118.748042, 50.487946], [-118.720345, 50.488218], [-118.714107, 50.488229], [-118.619149, 50.48792], [-118.582368, 50.487877], [-118.578381, 50.487885], [-118.572843, 50.488195], [-118.578378, 50.494456], [-118.587957, 50.497635], [-118.58941, 50.500608], [-118.585477, 50.502802], [-118.584493, 50.514264], [-118.5728, 50.519265], [-118.558685, 50.527762], [-118.555961, 50.53781], [-118.548457, 50.539029], [-118.53184, 50.537873], [-118.510721, 50.549612], [-118.481758, 50.556868], [-118.473911, 50.571579], [-118.478969, 50.578247], [-118.47517, 50.584145], [-118.482423, 50.58731], [-118.489187, 50.595218], [-118.488893, 50.600562], [-118.488721, 50.608106], [-118.47748, 50.620846], [-118.474469, 50.628985], [-118.463882, 50.632372], [-118.450729, 50.633591], [-118.441446, 50.644418], [-118.434939, 50.649973], [-118.426954, 50.651267], [-118.421788, 50.658515], [-118.417453, 50.666299], [-118.426053, 50.674343], [-118.422203, 50.681316], [-118.42036, 50.689844], [-118.425677, 50.694328], [-118.427518, 50.698634], [-118.423201, 50.703663], [-118.414848, 50.707469], [-118.408728, 50.71209], [-118.40733, 50.720396], [-118.41518, 50.724362], [-118.431321, 50.728167], [-118.432948, 50.736877], [-118.432342, 50.746507], [-118.431545, 50.752232], [-118.440884, 50.753755], [-118.449981, 50.765679], [-118.449806, 50.766776], [-118.453326, 50.769087], [-118.456283, 50.772487], [-118.456468, 50.776498], [-118.451927, 50.779473], [-118.449723, 50.781619], [-118.451588, 50.784988], [-118.438446, 50.786667], [-118.431374, 50.795094], [-118.434097, 50.797037], [-118.436351, 50.79945], [-118.43205, 50.802017], [-118.429999, 50.805135], [-118.428504, 50.809789], [-118.430771, 50.813723], [-118.431011, 50.818566], [-118.434554, 50.819772], [-118.437055, 50.821778], [-118.437769, 50.824278], [-118.436674, 50.825509], [-118.433616, 50.825788], [-118.429634, 50.825745], [-118.425092, 50.825569], [-118.422665, 50.827416], [-118.415153, 50.833965], [-118.411427, 50.834285], [-118.403713, 50.831947], [-118.391183, 50.83067], [-118.384547, 50.831807], [-118.380908, 50.830939], [-118.375606, 50.831992], [-118.374563, 50.834175], [-118.373497, 50.838692], [-118.370375, 50.84087], [-118.364148, 50.838928], [-118.360507, 50.839339], [-118.356523, 50.841576], [-118.34913, 50.842571], [-118.337749, 50.846457], [-118.331035, 50.848424], [-118.328968, 50.848114], [-118.325386, 50.848941], [-118.325447, 50.854379], [-118.3221, 50.856874], [-118.317873, 50.857441], [-118.310073, 50.857527], [-118.304377, 50.858637], [-118.29884, 50.862301], [-118.294287, 50.864402], [-118.294476, 50.864643], [-118.294648, 50.866682], [-118.293261, 50.869853], [-118.290697, 50.87246], [-118.282235, 50.878509], [-118.276043, 50.879056], [-118.273424, 50.879791], [-118.270482, 50.881411], [-118.266126, 50.884501], [-118.266137, 50.888729], [-118.26862, 50.893471], [-118.270603, 50.894018], [-118.2761, 50.895785], [-118.278418, 50.895943], [-118.280915, 50.895457], [-118.281853, 50.894313], [-118.281864, 50.892735], [-118.283061, 50.89083], [-118.285039, 50.889598], [-118.287414, 50.889839], [-118.29108, 50.890122], [-118.293858, 50.889361], [-118.296916, 50.888326], [-118.299952, 50.888385], [-118.303797, 50.888023], [-118.307425, 50.887128], [-118.309816, 50.887165], [-118.314432, 50.888366], [-118.320573, 50.885662], [-118.323239, 50.882114], [-118.33164, 50.881068], [-118.337912, 50.883366], [-118.347152, 50.885889], [-118.351824, 50.882526], [-118.357279, 50.88162], [-118.362586, 50.885232], [-118.370168, 50.888062], [-118.37654, 50.886456], [-118.386971, 50.883286], [-118.396243, 50.882813], [-118.406409, 50.881943], [-118.411599, 50.88267], [-118.418346, 50.887676], [-118.430491, 50.897765], [-118.449784, 50.903425], [-118.470641, 50.894556], [-118.479149, 50.901209], [-118.486426, 50.906743], [-118.495623, 50.912887], [-118.502504, 50.91687], [-118.516032, 50.924374], [-118.529098, 50.930749], [-118.533775, 50.934571], [-118.54698, 50.932672], [-118.55583, 50.931192], [-118.575735, 50.929181], [-118.579239, 50.926088], [-118.584452, 50.923405], [-118.589846, 50.923659], [-118.593961, 50.927104], [-118.601851, 50.926198], [-118.607371, 50.924623], [-118.612785, 50.924619]]]]}, "properties": {"name": "North Okanagan F", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "North Okanagan F", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937041", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.319189, 50.405112], [-119.319268, 50.405318], [-119.31787, 50.416145], [-119.330238, 50.416341], [-119.352398, 50.416169], [-119.352206, 50.405104], [-119.341499, 50.404705], [-119.341487, 50.401353], [-119.34162, 50.395489], [-119.341541, 50.3938], [-119.341667, 50.391154], [-119.341819, 50.390691], [-119.341723, 50.390377], [-119.341745, 50.389096], [-119.341625, 50.388539], [-119.341655, 50.387835], [-119.341567, 50.38697], [-119.341731, 50.384215], [-119.341582, 50.379213], [-119.341657, 50.378617], [-119.341634, 50.376951], [-119.341726, 50.376757], [-119.341791, 50.374802], [-119.341913, 50.362374], [-119.341613, 50.361425], [-119.341549, 50.360035], [-119.341849, 50.346903], [-119.352702, 50.346973], [-119.352659, 50.339452], [-119.369337, 50.339207], [-119.369552, 50.332476], [-119.38022, 50.332571], [-119.380969, 50.325026], [-119.386129, 50.325114], [-119.38667, 50.321208], [-119.39194, 50.321208], [-119.392008, 50.3178], [-119.403326, 50.317989], [-119.403446, 50.314317], [-119.448663, 50.314296], [-119.449425, 50.274682], [-119.454235, 50.274606], [-119.454364, 50.26021], [-119.459145, 50.260219], [-119.459528, 50.2387], [-119.459489, 50.231236], [-119.459968, 50.227457], [-119.4605, 50.226349], [-119.460068, 50.222802], [-119.460098, 50.217918], [-119.460157, 50.217487], [-119.460005, 50.217371], [-119.460081, 50.215891], [-119.460763, 50.211189], [-119.460267, 50.211585], [-119.459582, 50.211896], [-119.459321, 50.212262], [-119.458945, 50.212567], [-119.458419, 50.213262], [-119.457611, 50.213898], [-119.45661, 50.214343], [-119.45645, 50.214481], [-119.455946, 50.215059], [-119.455274, 50.216161], [-119.454875, 50.216574], [-119.454159, 50.217093], [-119.454096, 50.217499], [-119.453655, 50.218211], [-119.453284, 50.218614], [-119.452836, 50.21892], [-119.452263, 50.219229], [-119.451323, 50.219474], [-119.450539, 50.2195], [-119.449833, 50.219658], [-119.449191, 50.219995], [-119.448254, 50.220321], [-119.447036, 50.220364], [-119.446326, 50.220461], [-119.445327, 50.220922], [-119.444935, 50.221237], [-119.444717, 50.22161], [-119.444224, 50.221872], [-119.44392, 50.221951], [-119.44252, 50.221971], [-119.44209, 50.222079], [-119.441721, 50.222275], [-119.441497, 50.22255], [-119.44069, 50.223224], [-119.440094, 50.223875], [-119.439917, 50.223987], [-119.439032, 50.224248], [-119.438567, 50.224483], [-119.437201, 50.225439], [-119.436855, 50.225805], [-119.436779, 50.2265], [-119.436511, 50.227045], [-119.436891, 50.227343], [-119.436853, 50.227964], [-119.436996, 50.228582], [-119.438022, 50.230017], [-119.437959, 50.230936], [-119.437655, 50.231321], [-119.437599, 50.231897], [-119.437749, 50.232082], [-119.438498, 50.232454], [-119.438417, 50.233364], [-119.438666, 50.233817], [-119.438631, 50.234232], [-119.438539, 50.234378], [-119.438707, 50.234618], [-119.438731, 50.234833], [-119.439197, 50.235147], [-119.439435, 50.235402], [-119.439539, 50.235535], [-119.439629, 50.235911], [-119.440172, 50.236422], [-119.44061, 50.236754], [-119.441375, 50.237188], [-119.441625, 50.237668], [-119.44198, 50.238039], [-119.442241, 50.238195], [-119.444823, 50.23904], [-119.445171, 50.239249], [-119.444864, 50.23958], [-119.445062, 50.239611], [-119.445336, 50.239461], [-119.445481, 50.23954], [-119.445738, 50.239938], [-119.446783, 50.240591], [-119.447239, 50.241049], [-119.447776, 50.241938], [-119.449101, 50.242881], [-119.45032, 50.243916], [-119.450437, 50.244067], [-119.450414, 50.244671], [-119.450579, 50.244883], [-119.450869, 50.245624], [-119.450832, 50.24602], [-119.450475, 50.247223], [-119.45037, 50.247388], [-119.449814, 50.247777], [-119.449366, 50.248309], [-119.449336, 50.248579], [-119.448785, 50.249868], [-119.448354, 50.251829], [-119.447756, 50.25249], [-119.44739, 50.252739], [-119.447315, 50.252913], [-119.447206, 50.253796], [-119.447428, 50.255393], [-119.447372, 50.256221], [-119.446996, 50.257372], [-119.44661, 50.258073], [-119.446477, 50.258984], [-119.446069, 50.259568], [-119.445612, 50.261044], [-119.445566, 50.261495], [-119.445119, 50.262358], [-119.444952, 50.263765], [-119.445148, 50.264814], [-119.445104, 50.265355], [-119.444921, 50.265889], [-119.444847, 50.267437], [-119.444166, 50.268685], [-119.443691, 50.26927], [-119.44358, 50.269551], [-119.443224, 50.269747], [-119.442101, 50.270023], [-119.441124, 50.270143], [-119.440695, 50.27025], [-119.439102, 50.270374], [-119.437766, 50.27033], [-119.437466, 50.270193], [-119.437156, 50.269919], [-119.436872, 50.269854], [-119.435988, 50.269881], [-119.434959, 50.270038], [-119.434464, 50.269995], [-119.433995, 50.269851], [-119.433472, 50.269781], [-119.4326, 50.269764], [-119.432144, 50.26962], [-119.431584, 50.26965], [-119.430753, 50.269857], [-119.429395, 50.269902], [-119.428831, 50.26987], [-119.427855, 50.269692], [-119.427151, 50.269697], [-119.426589, 50.269925], [-119.42616, 50.270321], [-119.425723, 50.270555], [-119.425403, 50.270912], [-119.425007, 50.271119], [-119.424168, 50.2712], [-119.421835, 50.271121], [-119.420468, 50.271564], [-119.419324, 50.271687], [-119.41835, 50.271861], [-119.41581, 50.272993], [-119.413079, 50.273903], [-119.412807, 50.274107], [-119.410995, 50.274082], [-119.409315, 50.274458], [-119.40903, 50.274626], [-119.408725, 50.274713], [-119.407074, 50.275089], [-119.405884, 50.27543], [-119.405286, 50.275829], [-119.40441, 50.276242], [-119.403749, 50.276237], [-119.402591, 50.276378], [-119.400826, 50.277261], [-119.400712, 50.277506], [-119.40019, 50.278012], [-119.399753, 50.278264], [-119.399051, 50.278557], [-119.398999, 50.27863], [-119.399422, 50.279205], [-119.39955, 50.279544], [-119.399286, 50.279875], [-119.398845, 50.280019], [-119.39818, 50.279933], [-119.398025, 50.280179], [-119.397818, 50.280265], [-119.397346, 50.280634], [-119.397124, 50.280963], [-119.396726, 50.281151], [-119.396222, 50.281179], [-119.395945, 50.281256], [-119.395162, 50.281588], [-119.394971, 50.281726], [-119.394239, 50.28194], [-119.394053, 50.282159], [-119.393462, 50.282433], [-119.392982, 50.282901], [-119.392707, 50.283014], [-119.392367, 50.283004], [-119.392275, 50.283113], [-119.39227, 50.283293], [-119.392596, 50.283898], [-119.392445, 50.28427], [-119.392229, 50.284445], [-119.391553, 50.284378], [-119.391359, 50.284436], [-119.391295, 50.284536], [-119.391877, 50.285252], [-119.392214, 50.28637], [-119.391812, 50.287592], [-119.391797, 50.287863], [-119.391977, 50.288642], [-119.392367, 50.289119], [-119.392716, 50.28995], [-119.392641, 50.290103], [-119.392741, 50.290434], [-119.393315, 50.29125], [-119.393401, 50.291563], [-119.393326, 50.291735], [-119.393361, 50.292436], [-119.393251, 50.292781], [-119.39323, 50.293464], [-119.39304, 50.294144], [-119.392724, 50.294591], [-119.392461, 50.295226], [-119.39248, 50.295846], [-119.392727, 50.296309], [-119.392769, 50.296874], [-119.39262, 50.297264], [-119.392189, 50.297875], [-119.391177, 50.298697], [-119.389173, 50.299899], [-119.388424, 50.30067], [-119.388044, 50.30092], [-119.386918, 50.301447], [-119.386325, 50.301946], [-119.386065, 50.302085], [-119.384146, 50.302755], [-119.383631, 50.302837], [-119.382604, 50.302786], [-119.382306, 50.302747], [-119.381706, 50.302508], [-119.381521, 50.302494], [-119.37994, 50.302877], [-119.379072, 50.302921], [-119.378421, 50.302817], [-119.378076, 50.302691], [-119.376879, 50.302058], [-119.376596, 50.302018], [-119.376403, 50.302068], [-119.376332, 50.302347], [-119.376404, 50.302634], [-119.377399, 50.304287], [-119.377666, 50.304875], [-119.377625, 50.3052], [-119.377258, 50.305684], [-119.376837, 50.305999], [-119.376048, 50.306221], [-119.375796, 50.306533], [-119.375301, 50.306722], [-119.374377, 50.30737], [-119.374073, 50.308024], [-119.373857, 50.308218], [-119.37334, 50.308544], [-119.372571, 50.308874], [-119.37252, 50.30901], [-119.371933, 50.309337], [-119.371675, 50.309775], [-119.371338, 50.310086], [-119.370685, 50.310505], [-119.370383, 50.310636], [-119.369246, 50.310938], [-119.368423, 50.311045], [-119.368204, 50.311176], [-119.368216, 50.311428], [-119.368807, 50.312018], [-119.369127, 50.31221], [-119.369672, 50.312711], [-119.36988, 50.312968], [-119.370604, 50.314527], [-119.370676, 50.315424], [-119.370999, 50.316265], [-119.370621, 50.31826], [-119.36996, 50.319073], [-119.369792, 50.319382], [-119.369043, 50.320136], [-119.36838, 50.320626], [-119.367374, 50.32107], [-119.36635, 50.321369], [-119.365402, 50.321487], [-119.364096, 50.321514], [-119.363559, 50.321435], [-119.362722, 50.321578], [-119.362312, 50.321541], [-119.361954, 50.321665], [-119.361099, 50.321709], [-119.360021, 50.322074], [-119.359872, 50.322184], [-119.359219, 50.322323], [-119.358599, 50.322857], [-119.35808, 50.32375], [-119.357769, 50.324], [-119.357721, 50.32417], [-119.357241, 50.324649], [-119.35715, 50.324821], [-119.355274, 50.325506], [-119.354794, 50.325768], [-119.352996, 50.326344], [-119.351852, 50.327079], [-119.35134, 50.327214], [-119.350794, 50.327252], [-119.35049, 50.327393], [-119.349914, 50.328826], [-119.349419, 50.329322], [-119.348653, 50.329742], [-119.348114, 50.329924], [-119.347346, 50.33003], [-119.346396, 50.330391], [-119.346138, 50.330577], [-119.345801, 50.331176], [-119.345786, 50.33142], [-119.345954, 50.331713], [-119.345903, 50.331813], [-119.344502, 50.333056], [-119.343963, 50.333247], [-119.342676, 50.333344], [-119.342329, 50.333432], [-119.341753, 50.333731], [-119.341184, 50.333878], [-119.340557, 50.334287], [-119.340587, 50.334591], [-119.340263, 50.334553], [-119.340204, 50.3345], [-119.339725, 50.334492], [-119.339087, 50.334352], [-119.3383, 50.334089], [-119.33806, 50.334076], [-119.33746, 50.333854], [-119.336752, 50.333464], [-119.336473, 50.333244], [-119.33626, 50.333177], [-119.335895, 50.333166], [-119.335647, 50.333305], [-119.335469, 50.33366], [-119.335131, 50.333928], [-119.333933, 50.334483], [-119.333691, 50.334704], [-119.332828, 50.334855], [-119.331234, 50.334717], [-119.33045, 50.334804], [-119.330255, 50.335114], [-119.33058, 50.335711], [-119.330563, 50.335936], [-119.330471, 50.336073], [-119.329942, 50.336443], [-119.329012, 50.336704], [-119.328475, 50.336921], [-119.328464, 50.337273], [-119.328727, 50.337745], [-119.32869, 50.338464], [-119.327814, 50.339525], [-119.32757, 50.339962], [-119.326449, 50.341198], [-119.326054, 50.342034], [-119.325441, 50.342712], [-119.325419, 50.342829], [-119.325605, 50.342907], [-119.326591, 50.342959], [-119.327931, 50.342771], [-119.328079, 50.342902], [-119.327951, 50.343184], [-119.326539, 50.344192], [-119.326121, 50.344263], [-119.325808, 50.344208], [-119.325663, 50.344111], [-119.32566, 50.34376], [-119.325879, 50.34336], [-119.325734, 50.343263], [-119.325482, 50.343278], [-119.325075, 50.343574], [-119.324544, 50.344205], [-119.323979, 50.344702], [-119.323749, 50.345183], [-119.323518, 50.345385], [-119.323013, 50.345639], [-119.322706, 50.345709], [-119.322453, 50.345713], [-119.322003, 50.345425], [-119.321864, 50.345455], [-119.321394, 50.345924], [-119.320385, 50.346528], [-119.319178, 50.347442], [-119.317926, 50.348016], [-119.316996, 50.348557], [-119.316906, 50.348702], [-119.317079, 50.348798], [-119.317112, 50.348888], [-119.316561, 50.349114], [-119.31639, 50.349108], [-119.316219, 50.349021], [-119.315534, 50.349125], [-119.315266, 50.349104], [-119.31393, 50.348798], [-119.313112, 50.348436], [-119.312485, 50.348278], [-119.312192, 50.348032], [-119.31214, 50.347835], [-119.311736, 50.347609], [-119.311694, 50.347349], [-119.311215, 50.346422], [-119.310828, 50.345999], [-119.310718, 50.345498], [-119.31049, 50.345403], [-119.310391, 50.345414], [-119.310094, 50.344755], [-119.309611, 50.344404], [-119.30911, 50.343928], [-119.308959, 50.343679], [-119.3083, 50.343171], [-119.308373, 50.342917], [-119.308117, 50.342571], [-119.306898, 50.341499], [-119.30644, 50.341309], [-119.306016, 50.340697], [-119.305948, 50.340465], [-119.30603, 50.340103], [-119.306968, 50.339159], [-119.307056, 50.338949], [-119.307518, 50.338626], [-119.307798, 50.338297], [-119.307646, 50.338084], [-119.307571, 50.337662], [-119.307388, 50.337379], [-119.307489, 50.337134], [-119.307437, 50.336658], [-119.307545, 50.336538], [-119.307446, 50.336271], [-119.30785, 50.336191], [-119.307917, 50.336127], [-119.307767, 50.334754], [-119.307897, 50.334247], [-119.3082, 50.333864], [-119.30815, 50.333657], [-119.308251, 50.333448], [-119.308431, 50.333399], [-119.308862, 50.332986], [-119.309229, 50.332754], [-119.310496, 50.332487], [-119.31061, 50.332277], [-119.310842, 50.332102], [-119.310836, 50.331958], [-119.311209, 50.331545], [-119.311253, 50.331302], [-119.311543, 50.3309], [-119.311887, 50.330749], [-119.312276, 50.330679], [-119.312523, 50.33053], [-119.312783, 50.330129], [-119.313499, 50.329503], [-119.31351, 50.329161], [-119.313764, 50.328905], [-119.314038, 50.328467], [-119.314921, 50.327865], [-119.315446, 50.327674], [-119.316469, 50.3276], [-119.317192, 50.327478], [-119.317469, 50.327373], [-119.317658, 50.327198], [-119.318427, 50.327139], [-119.318814, 50.326986], [-119.319056, 50.326784], [-119.319291, 50.326392], [-119.3193, 50.326015], [-119.319585, 50.325811], [-119.320039, 50.325316], [-119.320421, 50.325056], [-119.320655, 50.324683], [-119.321046, 50.32436], [-119.322795, 50.323921], [-119.3232, 50.323894], [-119.324443, 50.324005], [-119.325385, 50.324292], [-119.325806, 50.32431], [-119.32603, 50.324252], [-119.325908, 50.324057], [-119.325871, 50.323337], [-119.325112, 50.322732], [-119.324954, 50.322412], [-119.325213, 50.32192], [-119.325741, 50.321811], [-119.325979, 50.32151], [-119.325962, 50.321437], [-119.325561, 50.321294], [-119.325425, 50.320809], [-119.325493, 50.320466], [-119.326133, 50.320076], [-119.327054, 50.319932], [-119.328108, 50.319956], [-119.328258, 50.319872], [-119.328264, 50.319701], [-119.32777, 50.319359], [-119.327581, 50.318959], [-119.327542, 50.31842], [-119.327629, 50.318166], [-119.327838, 50.317883], [-119.328854, 50.317404], [-119.329185, 50.316984], [-119.329279, 50.316614], [-119.329411, 50.31643], [-119.330633, 50.315524], [-119.331798, 50.31497], [-119.332932, 50.314858], [-119.333164, 50.314764], [-119.333943, 50.314325], [-119.334428, 50.3139], [-119.336605, 50.313012], [-119.337008, 50.312653], [-119.337643, 50.312406], [-119.338737, 50.311791], [-119.338902, 50.311724], [-119.339002, 50.311767], [-119.339457, 50.311588], [-119.340804, 50.31129], [-119.341177, 50.311157], [-119.342233, 50.310596], [-119.343611, 50.309488], [-119.344282, 50.309151], [-119.344837, 50.309023], [-119.345481, 50.308705], [-119.346498, 50.307668], [-119.347894, 50.307198], [-119.349266, 50.306271], [-119.350042, 50.306067], [-119.350987, 50.30558], [-119.351246, 50.305404], [-119.35144, 50.305049], [-119.352011, 50.304687], [-119.352551, 50.304514], [-119.353288, 50.304382], [-119.353781, 50.30439], [-119.354139, 50.304535], [-119.354743, 50.304568], [-119.355136, 50.304552], [-119.355312, 50.304431], [-119.355438, 50.304113], [-119.355698, 50.303982], [-119.356075, 50.303642], [-119.356502, 50.303489], [-119.35662, 50.303324], [-119.356339, 50.303034], [-119.356214, 50.302793], [-119.356308, 50.302396], [-119.356879, 50.302043], [-119.357257, 50.301719], [-119.357782, 50.30152], [-119.358931, 50.301479], [-119.358814, 50.301104], [-119.35804, 50.300499], [-119.357241, 50.299382], [-119.357373, 50.298929], [-119.357356, 50.298318], [-119.357458, 50.297569], [-119.357606, 50.297152], [-119.357997, 50.296505], [-119.359597, 50.295367], [-119.360629, 50.294339], [-119.362507, 50.29314], [-119.363179, 50.293127], [-119.363374, 50.293069], [-119.363813, 50.292574], [-119.364572, 50.292027], [-119.365453, 50.291119], [-119.366713, 50.290212], [-119.36789, 50.289018], [-119.370067, 50.287346], [-119.372072, 50.285606], [-119.374812, 50.283948], [-119.375825, 50.283451], [-119.377764, 50.282323], [-119.378984, 50.28174], [-119.380973, 50.281105], [-119.381482, 50.280889], [-119.382136, 50.280479], [-119.38277, 50.280251], [-119.383685, 50.279782], [-119.384718, 50.279644], [-119.385732, 50.279164], [-119.386268, 50.279198], [-119.386755, 50.279386], [-119.386979, 50.279399], [-119.387673, 50.279222], [-119.387499, 50.2791], [-119.386828, 50.278899], [-119.386732, 50.278648], [-119.386448, 50.278295], [-119.386302, 50.27819], [-119.385743, 50.277985], [-119.385262, 50.277609], [-119.384853, 50.276736], [-119.384727, 50.276189], [-119.384331, 50.275847], [-119.384292, 50.275613], [-119.384787, 50.275685], [-119.385505, 50.276002], [-119.385899, 50.276004], [-119.386102, 50.275891], [-119.386314, 50.275643], [-119.386501, 50.274884], [-119.386811, 50.274329], [-119.387537, 50.273981], [-119.388914, 50.274007], [-119.389219, 50.273947], [-119.389225, 50.273758], [-119.388863, 50.273558], [-119.38892, 50.273306], [-119.389193, 50.273147], [-119.389654, 50.273093], [-119.389938, 50.27288], [-119.390252, 50.272999], [-119.390323, 50.273268], [-119.389825, 50.274259], [-119.390154, 50.274098], [-119.390563, 50.27356], [-119.390577, 50.27301], [-119.389698, 50.271742], [-119.389527, 50.271126], [-119.389681, 50.270817], [-119.390021, 50.270593], [-119.39083, 50.270513], [-119.391082, 50.270211], [-119.391916, 50.269781], [-119.392726, 50.268883], [-119.393375, 50.268374], [-119.393844, 50.26822], [-119.393951, 50.267842], [-119.394664, 50.267215], [-119.395467, 50.266991], [-119.395864, 50.266524], [-119.397413, 50.26552], [-119.39766, 50.265399], [-119.398685, 50.265126], [-119.398917, 50.264986], [-119.399863, 50.263716], [-119.400411, 50.263444], [-119.402476, 50.262655], [-119.402963, 50.262284], [-119.404089, 50.261784], [-119.405758, 50.260931], [-119.407145, 50.260363], [-119.408031, 50.260119], [-119.409027, 50.260081], [-119.409589, 50.260132], [-119.409824, 50.260074], [-119.410191, 50.259832], [-119.412327, 50.259617], [-119.413036, 50.259494], [-119.413652, 50.259463], [-119.41482, 50.259251], [-119.416627, 50.257774], [-119.417553, 50.256693], [-119.418218, 50.256238], [-119.418322, 50.256075], [-119.418335, 50.255769], [-119.418066, 50.255172], [-119.417936, 50.254554], [-119.417964, 50.253716], [-119.418321, 50.253303], [-119.418986, 50.252852], [-119.386531, 50.252846], [-119.380444, 50.252943], [-119.379514, 50.259381], [-119.369869, 50.25969], [-119.352224, 50.260096], [-119.351699, 50.268337], [-119.351636, 50.274367], [-119.33109, 50.274777], [-119.330145, 50.285126], [-119.329878, 50.28919], [-119.307615, 50.289434], [-119.307762, 50.303735], [-119.285234, 50.303807], [-119.285224, 50.309988], [-119.285794, 50.310465], [-119.285524, 50.310834], [-119.285726, 50.31093], [-119.285786, 50.311036], [-119.286019, 50.312677], [-119.286311, 50.313194], [-119.286307, 50.313995], [-119.286873, 50.314954], [-119.286954, 50.315447], [-119.286604, 50.315788], [-119.286396, 50.316115], [-119.285876, 50.316125], [-119.285346, 50.316487], [-119.284803, 50.318081], [-119.284671, 50.319711], [-119.284307, 50.320915], [-119.284091, 50.321369], [-119.284114, 50.322439], [-119.283959, 50.322712], [-119.283796, 50.322813], [-119.283599, 50.322836], [-119.283383, 50.322732], [-119.283125, 50.322315], [-119.28255, 50.322335], [-119.28216, 50.322127], [-119.281814, 50.322214], [-119.281484, 50.322661], [-119.281374, 50.323006], [-119.281077, 50.323272], [-119.280979, 50.323579], [-119.280731, 50.323963], [-119.280106, 50.324397], [-119.279979, 50.325012], [-119.279737, 50.325214], [-119.279265, 50.325944], [-119.279199, 50.325989], [-119.279111, 50.325937], [-119.277801, 50.341672], [-119.277863, 50.341698], [-119.277876, 50.343299], [-119.278016, 50.34506], [-119.277961, 50.345389], [-119.277822, 50.345544], [-119.277695, 50.351493], [-119.285375, 50.351856], [-119.285367, 50.35234], [-119.285222, 50.352559], [-119.284407, 50.352836], [-119.284363, 50.353125], [-119.284281, 50.35317], [-119.283598, 50.353274], [-119.283568, 50.353814], [-119.282851, 50.354099], [-119.282192, 50.354537], [-119.28416, 50.354599], [-119.284212, 50.358409], [-119.289969, 50.358478], [-119.289971, 50.358525], [-119.291015, 50.358588], [-119.290922, 50.359585], [-119.291103, 50.359602], [-119.290574, 50.367438], [-119.290552, 50.36915], [-119.306031, 50.369306], [-119.307852, 50.391659], [-119.308576, 50.405176], [-119.317234, 50.405168], [-119.31753, 50.405054], [-119.319189, 50.405112]]]]}, "properties": {"name": "Okanagan (Part) 1 - North Okanagan", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan (Part) 1 - North Okanagan", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937801", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.138004, 50.543198], [-119.140202, 50.543002], [-119.154161, 50.543289], [-119.181633, 50.543689], [-119.183562, 50.543864], [-119.183225, 50.533302], [-119.183439, 50.524049], [-119.183463, 50.499999], [-119.165073, 50.499821], [-119.154704, 50.49861], [-119.141642, 50.499821], [-119.141669, 50.499357], [-119.137916, 50.499609], [-119.137833, 50.508441], [-119.137189, 50.512333], [-119.139634, 50.51277], [-119.139331, 50.520369], [-119.129571, 50.519216], [-119.123691, 50.518622], [-119.12356, 50.518876], [-119.123568, 50.519047], [-119.124326, 50.519949], [-119.124347, 50.520102], [-119.123926, 50.520434], [-119.123299, 50.520643], [-119.122807, 50.520652], [-119.122675, 50.520896], [-119.122689, 50.521194], [-119.123512, 50.521619], [-119.123721, 50.521841], [-119.123699, 50.522003], [-119.1234, 50.522242], [-119.122998, 50.522385], [-119.122684, 50.522641], [-119.122157, 50.522858], [-119.122177, 50.523002], [-119.121894, 50.523249], [-119.1219, 50.523718], [-119.121784, 50.523944], [-119.121823, 50.524178], [-119.121627, 50.524568], [-119.121629, 50.525242], [-119.121576, 50.525324], [-119.12098, 50.525534], [-119.120898, 50.525625], [-119.12146, 50.526495], [-119.121796, 50.526768], [-119.122318, 50.527046], [-119.122792, 50.52756], [-119.122621, 50.528139], [-119.122716, 50.528677], [-119.122461, 50.529311], [-119.12242, 50.52995], [-119.122824, 50.5305], [-119.12291, 50.530823], [-119.122785, 50.53149], [-119.123055, 50.531846], [-119.123077, 50.532025], [-119.123051, 50.532386], [-119.122883, 50.532703], [-119.122976, 50.533538], [-119.123306, 50.533972], [-119.123937, 50.535139], [-119.12477, 50.535475], [-119.125349, 50.536223], [-119.125046, 50.53755], [-119.124071, 50.538467], [-119.123084, 50.540021], [-119.123272, 50.541217], [-119.12114, 50.541387], [-119.119341, 50.541834], [-119.118813, 50.542042], [-119.118241, 50.542187], [-119.117264, 50.542762], [-119.116774, 50.543184], [-119.11656, 50.543432], [-119.116438, 50.543848], [-119.116529, 50.544934], [-119.116431, 50.546222], [-119.116293, 50.546585], [-119.115967, 50.546914], [-119.115486, 50.547183], [-119.115069, 50.547336], [-119.114688, 50.547343], [-119.114021, 50.547273], [-119.113117, 50.546903], [-119.112356, 50.546323], [-119.111456, 50.544829], [-119.111233, 50.544256], [-119.110796, 50.543644], [-119.110369, 50.543238], [-119.110047, 50.543002], [-119.109616, 50.542802], [-119.108745, 50.542584], [-119.108051, 50.542525], [-119.107276, 50.542539], [-119.106348, 50.542654], [-119.105594, 50.542839], [-119.105084, 50.543091], [-119.104632, 50.543386], [-119.103648, 50.544439], [-119.103103, 50.545232], [-119.102261, 50.545957], [-119.100831, 50.546793], [-119.098621, 50.547579], [-119.096885, 50.547917], [-119.095367, 50.548411], [-119.093677, 50.548801], [-119.092847, 50.548842], [-119.091897, 50.548761], [-119.089649, 50.54838], [-119.088884, 50.54833], [-119.087282, 50.548448], [-119.085409, 50.548886], [-119.084511, 50.548983], [-119.08402, 50.549109], [-119.08331, 50.549599], [-119.082981, 50.550153], [-119.082929, 50.550586], [-119.082984, 50.551197], [-119.083374, 50.552359], [-119.0834, 50.553257], [-119.083179, 50.55372], [-119.082963, 50.553914], [-119.082643, 50.554045], [-119.081979, 50.553987], [-119.082074, 50.554425], [-119.081156, 50.554196], [-119.080534, 50.554182], [-119.079802, 50.552963], [-119.07957, 50.552859], [-119.079366, 50.552135], [-119.078422, 50.551354], [-119.077154, 50.55116], [-119.075631, 50.551151], [-119.070858, 50.550982], [-119.069548, 50.551051], [-119.068423, 50.551426], [-119.068251, 50.551779], [-119.068829, 50.552554], [-119.069095, 50.553574], [-119.069888, 50.555436], [-119.074327, 50.555491], [-119.074795, 50.557302], [-119.105607, 50.557432], [-119.108172, 50.557404], [-119.125375, 50.55765], [-119.126858, 50.556475], [-119.127943, 50.555798], [-119.129444, 50.554619], [-119.129801, 50.554415], [-119.13112, 50.553284], [-119.132356, 50.552542], [-119.133395, 50.552064], [-119.134076, 50.551845], [-119.134665, 50.551466], [-119.134833, 50.551084], [-119.134809, 50.550905], [-119.134632, 50.550692], [-119.134585, 50.550277], [-119.136192, 50.550266], [-119.135992, 50.549885], [-119.135508, 50.549787], [-119.13542, 50.549715], [-119.135254, 50.549485], [-119.135343, 50.549268], [-119.134908, 50.549006], [-119.134798, 50.548783], [-119.134823, 50.548701], [-119.135044, 50.548599], [-119.135684, 50.548083], [-119.136349, 50.547153], [-119.136547, 50.544343], [-119.136511, 50.543903], [-119.136292, 50.5432], [-119.138004, 50.543198]]]]}, "properties": {"name": "Enderby 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Enderby 2", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937802", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.348555, 50.24829], [-119.347584, 50.247568], [-119.345819, 50.245625], [-119.345663, 50.245276], [-119.345675, 50.244773], [-119.344032, 50.245639], [-119.330668, 50.245728], [-119.330845, 50.248448], [-119.332104, 50.248407], [-119.347311, 50.248359], [-119.347801, 50.248332], [-119.347928, 50.248231], [-119.348555, 50.24829]]]]}, "properties": {"name": "Priest's Valley 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Priest's Valley 6", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937803", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.228738, 50.39077], [-119.24001, 50.390761], [-119.24001, 50.383507], [-119.228697, 50.383502], [-119.228738, 50.39077]]]]}, "properties": {"name": "Harris 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Harris 3", "economic_region_id": "5930", "census_division_code": "5937", "census_subdivision_code": "5937805", "regional_district_aka_census_division": "North Okanagan"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-116.970621, 51.314473], [-116.971374, 51.314464], [-116.972403, 51.318106], [-116.973481, 51.320352], [-116.975042, 51.322208], [-116.975657, 51.32221], [-116.978412, 51.321999], [-116.98566, 51.32172], [-116.988694, 51.321654], [-116.987934, 51.314655], [-116.98763, 51.309676], [-116.988816, 51.309531], [-116.990981, 51.31003], [-116.992848, 51.310296], [-116.99203, 51.309396], [-116.990841, 51.308627], [-116.990055, 51.307811], [-116.989669, 51.307038], [-116.98945, 51.306091], [-116.988951, 51.304952], [-116.989153, 51.303843], [-116.989109, 51.302436], [-116.988338, 51.301679], [-116.987448, 51.301128], [-116.9869, 51.300903], [-116.986509, 51.300299], [-116.986014, 51.299014], [-116.985048, 51.2978], [-116.983732, 51.296682], [-116.981749, 51.295255], [-116.981198, 51.294715], [-116.980472, 51.293604], [-116.980176, 51.292042], [-116.979943, 51.291441], [-116.978615, 51.290273], [-116.975605, 51.287017], [-116.974515, 51.286262], [-116.973409, 51.285366], [-116.972167, 51.283513], [-116.971981, 51.281941], [-116.971626, 51.280997], [-116.970936, 51.280497], [-116.97005, 51.280266], [-116.968879, 51.280203], [-116.964796, 51.280747], [-116.962906, 51.280827], [-116.961759, 51.280799], [-116.960407, 51.280511], [-116.959452, 51.280163], [-116.957602, 51.279081], [-116.956456, 51.278618], [-116.954523, 51.278244], [-116.950272, 51.277772], [-116.947571, 51.277093], [-116.944303, 51.276046], [-116.942782, 51.275267], [-116.942139, 51.275047], [-116.941174, 51.274449], [-116.941126, 51.275264], [-116.940421, 51.277854], [-116.940632, 51.279614], [-116.940571, 51.280998], [-116.934634, 51.280949], [-116.934544, 51.288219], [-116.940555, 51.288349], [-116.9405, 51.296046], [-116.940666, 51.298779], [-116.940867, 51.299404], [-116.940649, 51.29995], [-116.937262, 51.300311], [-116.940497, 51.302784], [-116.941032, 51.306758], [-116.942349, 51.306878], [-116.954043, 51.307222], [-116.954167, 51.308607], [-116.954156, 51.310231], [-116.954262, 51.310452], [-116.95483, 51.31104], [-116.955366, 51.314288], [-116.957227, 51.314224], [-116.961886, 51.314472], [-116.961922, 51.315154], [-116.963761, 51.315073], [-116.968391, 51.314672], [-116.968928, 51.314777], [-116.969286, 51.314788], [-116.97019, 51.314535], [-116.970621, 51.314473]]]]}, "properties": {"name": "Golden", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Golden", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939007", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-117.987993, 52.500238], [-117.98813, 52.500055], [-117.996601, 52.495795], [-118.003465, 52.492572], [-118.013306, 52.483893], [-118.021827, 52.472301], [-118.020559, 52.465179], [-118.018487, 52.459348], [-118.020661, 52.456429], [-118.021138, 52.455528], [-118.042082, 52.458978], [-118.050696, 52.457147], [-118.052908, 52.449563], [-118.036382, 52.441382], [-118.030372, 52.438077], [-118.040733, 52.418477], [-118.044178, 52.398459], [-118.138056, 52.407497], [-118.142, 52.402417], [-118.155951, 52.396344], [-118.163985, 52.393721], [-118.177445, 52.385908], [-118.182076, 52.382797], [-118.178911, 52.379448], [-118.178303, 52.375412], [-118.180096, 52.372598], [-118.188264, 52.372667], [-118.20072, 52.372653], [-118.212783, 52.370341], [-118.219349, 52.374174], [-118.226025, 52.380289], [-118.239953, 52.374868], [-118.245234, 52.365813], [-118.247994, 52.357125], [-118.254213, 52.347971], [-118.261877, 52.346654], [-118.272986, 52.346075], [-118.289766, 52.33895], [-118.294916, 52.342217], [-118.303088, 52.352623], [-118.304668, 52.360737], [-118.31712, 52.367778], [-118.329914, 52.36864], [-118.342343, 52.36654], [-118.353657, 52.366054], [-118.359081, 52.362857], [-118.366796, 52.354754], [-118.374035, 52.350564], [-118.37995, 52.349979], [-118.386122, 52.339392], [-118.395253, 52.334845], [-118.411405, 52.33754], [-118.425972, 52.336128], [-118.433607, 52.330743], [-118.440362, 52.324667], [-118.447308, 52.323759], [-118.456418, 52.324784], [-118.466193, 52.31781], [-118.478222, 52.314829], [-118.493132, 52.312498], [-118.493598, 52.307889], [-118.489169, 52.299127], [-118.493082, 52.292462], [-118.493272, 52.292357], [-118.501574, 52.281672], [-118.540532, 52.272994], [-118.538041, 52.271755], [-118.526532, 52.261663], [-118.506185, 52.251271], [-118.496201, 52.243268], [-118.484107, 52.23645], [-118.464414, 52.224018], [-118.468678, 52.21878], [-118.474563, 52.214817], [-118.478491, 52.21178], [-118.470325, 52.201668], [-118.46038, 52.195695], [-118.453507, 52.186481], [-118.454506, 52.176155], [-118.456494, 52.167353], [-118.451648, 52.161253], [-118.441206, 52.156159], [-118.445538, 52.152134], [-118.446402, 52.143275], [-118.444921, 52.127572], [-118.440623, 52.105903], [-118.440839, 52.105662], [-118.439018, 52.090817], [-118.440354, 52.075014], [-118.447118, 52.066856], [-118.455902, 52.063229], [-118.448968, 52.059216], [-118.422889, 52.044439], [-118.397255, 52.029361], [-118.392704, 52.021127], [-118.391617, 52.013613], [-118.396544, 52.008351], [-118.40368, 52.001373], [-118.398065, 52.00147], [-118.394732, 51.988476], [-118.392337, 51.979921], [-118.386167, 51.977952], [-118.379973, 51.978206], [-118.374752, 51.976264], [-118.36792, 51.979833], [-118.36081, 51.980264], [-118.358479, 51.985106], [-118.356984, 51.99193], [-118.346609, 51.993067], [-118.330685, 51.992527], [-118.311079, 51.987978], [-118.296897, 51.987354], [-118.285806, 51.982709], [-118.278764, 51.973527], [-118.275305, 51.964658], [-118.261552, 51.96413], [-118.233892, 51.973247], [-118.218656, 51.975184], [-118.211448, 51.971414], [-118.207205, 51.966768], [-118.19553, 51.963706], [-118.19452, 51.957753], [-118.194628, 51.951425], [-118.187819, 51.942933], [-118.180172, 51.94064], [-118.174371, 51.937205], [-118.169817, 51.924488], [-118.168315, 51.91792], [-118.171729, 51.916559], [-118.1745, 51.913156], [-118.175049, 51.907282], [-118.156198, 51.898158], [-118.142698, 51.898017], [-118.134146, 51.89679], [-118.125577, 51.894317], [-118.124049, 51.889081], [-118.139738, 51.87222], [-118.148736, 51.863473], [-118.139837, 51.855411], [-118.145534, 51.842343], [-118.148704, 51.833182], [-118.151252, 51.827445], [-118.158469, 51.821398], [-118.168723, 51.816878], [-118.176442, 51.812193], [-118.175621, 51.808768], [-118.175976, 51.802949], [-118.184367, 51.796541], [-118.18985, 51.791464], [-118.184814, 51.786971], [-118.160799, 51.77991], [-118.134902, 51.781562], [-118.130361, 51.778971], [-118.126999, 51.771305], [-118.126747, 51.764295], [-118.124789, 51.758608], [-118.123682, 51.751688], [-118.121296, 51.745152], [-118.122204, 51.737183], [-118.125553, 51.723901], [-118.12066, 51.716905], [-118.112096, 51.710157], [-118.104974, 51.707232], [-118.094686, 51.704379], [-118.090959, 51.70937], [-118.08485, 51.71408], [-118.078476, 51.720213], [-118.074831, 51.725572], [-118.058005, 51.723553], [-118.04017, 51.724013], [-118.024502, 51.725347], [-118.019229, 51.728474], [-118.021816, 51.733319], [-118.022139, 51.736076], [-118.015015, 51.739843], [-118.015533, 51.743044], [-118.013691, 51.744677], [-118.001435, 51.744223], [-117.981662, 51.7395], [-117.974941, 51.732773], [-117.958504, 51.725642], [-117.940946, 51.723431], [-117.92682, 51.72367], [-117.915652, 51.725687], [-117.908297, 51.723752], [-117.91876, 51.720736], [-117.927987, 51.714321], [-117.923226, 51.709557], [-117.923082, 51.701589], [-117.934235, 51.695894], [-117.940921, 51.683406], [-117.938342, 51.669514], [-117.930735, 51.665164], [-117.932547, 51.662449], [-117.933373, 51.655465], [-117.941132, 51.648199], [-117.951594, 51.647661], [-117.973718, 51.639325], [-117.976062, 51.633706], [-117.975768, 51.628803], [-117.986554, 51.607541], [-117.982012, 51.600233], [-117.981362, 51.592581], [-117.990124, 51.580053], [-117.988803, 51.576942], [-117.981405, 51.574574], [-117.97841, 51.571395], [-117.970538, 51.562413], [-117.954314, 51.544974], [-117.941668, 51.542557], [-117.94201, 51.540754], [-117.939451, 51.53094], [-117.948153, 51.525087], [-117.959917, 51.510207], [-117.977257, 51.509798], [-117.988587, 51.499875], [-117.9808, 51.485604], [-117.970931, 51.477172], [-117.949474, 51.463148], [-117.9495, 51.463251], [-117.930046, 51.451906], [-117.922864, 51.453195], [-117.911892, 51.426514], [-117.892092, 51.426057], [-117.865235, 51.401778], [-117.858825, 51.390422], [-117.835074, 51.387575], [-117.838482, 51.384105], [-117.839701, 51.371593], [-117.828705, 51.363662], [-117.803937, 51.356364], [-117.804928, 51.34519], [-117.793267, 51.341527], [-117.768549, 51.34184], [-117.768184, 51.329946], [-117.754516, 51.320193], [-117.730563, 51.314848], [-117.745849, 51.30254], [-117.74114, 51.294003], [-117.746142, 51.287382], [-117.736162, 51.278544], [-117.72901, 51.279928], [-117.722117, 51.274524], [-117.737222, 51.264081], [-117.738854, 51.261823], [-117.746204, 51.259469], [-117.752922, 51.256195], [-117.755733, 51.252709], [-117.75283, 51.250588], [-117.747617, 51.246368], [-117.733448, 51.24384], [-117.728419, 51.241567], [-117.72728, 51.234429], [-117.723341, 51.234584], [-117.719799, 51.227733], [-117.716757, 51.212758], [-117.716212, 51.209662], [-117.713759, 51.203072], [-117.711763, 51.194734], [-117.711861, 51.186917], [-117.709683, 51.183339], [-117.707722, 51.181333], [-117.705523, 51.18066], [-117.702175, 51.180842], [-117.694883, 51.179917], [-117.692192, 51.178108], [-117.689152, 51.176213], [-117.685978, 51.175804], [-117.681925, 51.173276], [-117.677596, 51.171185], [-117.6732, 51.169838], [-117.671065, 51.167154], [-117.671883, 51.163312], [-117.670545, 51.159688], [-117.671358, 51.15458], [-117.674436, 51.150671], [-117.680085, 51.147157], [-117.681566, 51.14386], [-117.681299, 51.138861], [-117.678983, 51.134235], [-117.676295, 51.132426], [-117.672634, 51.13088], [-117.669704, 51.129137], [-117.669798, 51.126758], [-117.672711, 51.125973], [-117.674986, 51.121738], [-117.675251, 51.118769], [-117.676383, 51.115385], [-117.679309, 51.109163], [-117.685371, 51.10626], [-117.690804, 51.10244], [-117.694433, 51.098924], [-117.700002, 51.094885], [-117.701439, 51.090693], [-117.704073, 51.090345], [-117.709959, 51.088031], [-117.715184, 51.08517], [-117.715058, 51.081219], [-117.713233, 51.077729], [-117.71131, 51.075353], [-117.70842, 51.074507], [-117.703134, 51.075218], [-117.696561, 51.075736], [-117.690995, 51.075616], [-117.685152, 51.077203], [-117.680803, 51.076753], [-117.675163, 51.07484], [-117.671193, 51.072836], [-117.662751, 51.072715], [-117.658164, 51.07248], [-117.655633, 51.071598], [-117.653508, 51.071412], [-117.651724, 51.070058], [-117.648221, 51.068901], [-117.644642, 51.069513], [-117.643314, 51.071444], [-117.6405, 51.073127], [-117.636637, 51.073636], [-117.634098, 51.072845], [-117.54547, 51.090296], [-117.543549, 51.090567], [-117.541286, 51.088402], [-117.539863, 51.082878], [-117.534573, 51.078886], [-117.528578, 51.077413], [-117.525095, 51.074344], [-117.524089, 51.072557], [-117.523899, 51.071131], [-117.521517, 51.067745], [-117.518569, 51.066346], [-117.516867, 51.065103], [-117.510321, 51.064807], [-117.507477, 51.063246], [-117.507038, 51.061037], [-117.504322, 51.060135], [-117.498014, 51.061029], [-117.488837, 51.060949], [-117.484652, 51.058986], [-117.48254, 51.057452], [-117.478068, 51.057267], [-117.474236, 51.05998], [-117.47133, 51.062959], [-117.469901, 51.067289], [-117.46151, 51.067845], [-117.458755, 51.069886], [-117.457072, 51.072199], [-117.452716, 51.074401], [-117.452718, 51.077584], [-117.454897, 51.082739], [-117.457108, 51.086989], [-117.458133, 51.090211], [-117.463177, 51.093232], [-117.468114, 51.093928], [-117.469371, 51.096012], [-117.469358, 51.097899], [-117.466261, 51.099225], [-117.461365, 51.102111], [-117.457442, 51.104644], [-117.451251, 51.106353], [-117.446488, 51.106693], [-117.436488, 51.105147], [-117.435337, 51.106083], [-117.432553, 51.106607], [-117.422248, 51.107716], [-117.413995, 51.109751], [-117.412023, 51.109631], [-117.406236, 51.111094], [-117.404359, 51.11106], [-117.39286, 51.107875], [-117.391517, 51.107788], [-117.380205, 51.10377], [-117.377487, 51.098505], [-117.375759, 51.095748], [-117.374514, 51.092548], [-117.375218, 51.090126], [-117.377446, 51.088594], [-117.379938, 51.087662], [-117.382982, 51.083297], [-117.384363, 51.080828], [-117.383779, 51.074726], [-117.381427, 51.073567], [-117.380325, 51.071626], [-117.380174, 51.070147], [-117.37813, 51.069442], [-117.374762, 51.066676], [-117.372203, 51.063583], [-117.371555, 51.059689], [-117.370122, 51.059044], [-117.367485, 51.058409], [-117.36449, 51.058719], [-117.361319, 51.058136], [-117.358484, 51.055944], [-117.353574, 51.054262], [-117.349215, 51.054132], [-117.351155, 51.051492], [-117.351599, 51.049631], [-117.351459, 51.04806], [-117.350492, 51.047156], [-117.350135, 51.046313], [-117.350456, 51.045423], [-117.350295, 51.044662], [-117.34903, 51.043212], [-117.34942, 51.042214], [-117.349903, 51.04146], [-117.347534, 51.039009], [-117.347504, 51.038881], [-117.346067, 51.038127], [-117.344774, 51.038164], [-117.342731, 51.036615], [-117.340804, 51.036328], [-117.330823, 51.038186], [-117.329383, 51.038015], [-117.328591, 51.03681], [-117.32727, 51.035561], [-117.324386, 51.035498], [-117.319183, 51.036636], [-117.317742, 51.037512], [-117.315056, 51.037734], [-117.304315, 51.051324], [-117.297297, 51.052328], [-117.285123, 51.054393], [-117.279134, 51.055123], [-117.271259, 51.054168], [-117.264045, 51.054299], [-117.237185, 51.05727], [-117.22435, 51.059257], [-117.216555, 51.062428], [-117.211356, 51.065781], [-117.211328, 51.065723], [-117.210677, 51.066063], [-117.206906, 51.065685], [-117.203764, 51.065934], [-117.199015, 51.063561], [-117.199641, 51.06114], [-117.201052, 51.058616], [-117.198751, 51.05505], [-117.197396, 51.055243], [-117.190766, 51.054829], [-117.185508, 51.052883], [-117.180296, 51.049694], [-117.178463, 51.048389], [-117.172531, 51.045247], [-117.162671, 51.044345], [-117.162378, 51.040851], [-117.160273, 51.036504], [-117.165243, 51.028499], [-117.16383, 51.026322], [-117.147507, 51.025064], [-117.143283, 51.027149], [-117.137887, 51.028013], [-117.135859, 51.026679], [-117.134824, 51.025082], [-117.132753, 51.022852], [-117.130988, 51.022469], [-117.130133, 51.018104], [-117.131421, 51.0151], [-117.133866, 51.013037], [-117.137068, 51.008818], [-117.138062, 51.005777], [-117.138964, 51.005085], [-117.145376, 51.002994], [-117.147588, 51.000991], [-117.149685, 51.001004], [-117.154472, 50.998377], [-117.153861, 50.997434], [-117.15537, 50.996014], [-117.156477, 50.996175], [-117.158403, 50.994701], [-117.164645, 50.994127], [-117.165239, 50.993516], [-117.165352, 50.991616], [-117.162225, 50.986379], [-117.16208, 50.981316], [-117.160874, 50.981239], [-117.156761, 50.977653], [-117.155233, 50.975847], [-117.153231, 50.974961], [-117.147134, 50.973801], [-117.143495, 50.972726], [-117.140137, 50.973163], [-117.136387, 50.974215], [-117.132535, 50.975918], [-117.131788, 50.976797], [-117.128144, 50.9768], [-117.126108, 50.977084], [-117.125383, 50.977731], [-117.123443, 50.977621], [-117.122364, 50.977738], [-117.119312, 50.977016], [-117.117342, 50.976177], [-117.116155, 50.976265], [-117.11423, 50.975358], [-117.113187, 50.975124], [-117.111513, 50.973641], [-117.110685, 50.973463], [-117.110056, 50.972213], [-117.111448, 50.971165], [-117.111894, 50.969914], [-117.108846, 50.967547], [-117.10593, 50.96798], [-117.095191, 50.970968], [-117.088592, 50.969031], [-117.084967, 50.969197], [-117.083666, 50.968974], [-117.083103, 50.969464], [-117.081351, 50.970041], [-117.079439, 50.970377], [-117.071681, 50.970475], [-117.070304, 50.970272], [-117.068171, 50.971347], [-117.066581, 50.971768], [-117.064978, 50.969698], [-117.064747, 50.96823], [-117.058649, 50.965139], [-117.056562, 50.965748], [-117.0498, 50.966006], [-117.048691, 50.965392], [-117.046832, 50.963617], [-117.040514, 50.96183], [-117.037803, 50.96083], [-117.035907, 50.95911], [-117.033113, 50.958091], [-117.033275, 50.95584], [-117.034291, 50.955459], [-117.035993, 50.955294], [-117.038062, 50.954863], [-117.039167, 50.950041], [-117.041112, 50.947489], [-117.042373, 50.94693], [-117.043523, 50.947024], [-117.048503, 50.944833], [-117.048277, 50.940872], [-117.053918, 50.936382], [-117.053263, 50.935365], [-117.056713, 50.933323], [-117.05701, 50.932395], [-117.05995, 50.929297], [-117.059043, 50.928857], [-117.063318, 50.926284], [-117.068964, 50.920149], [-117.068925, 50.918007], [-117.067522, 50.917075], [-117.064994, 50.916328], [-117.065798, 50.913963], [-117.063407, 50.909838], [-117.063861, 50.909152], [-117.065877, 50.908506], [-117.067398, 50.90683], [-117.066865, 50.905725], [-117.065565, 50.90454], [-117.065129, 50.903862], [-117.07114, 50.898706], [-117.075996, 50.898387], [-117.075186, 50.895882], [-117.072028, 50.893886], [-117.069769, 50.891765], [-117.070051, 50.889426], [-117.071536, 50.886173], [-117.074822, 50.883888], [-117.07595, 50.882854], [-117.075923, 50.879067], [-117.079338, 50.869923], [-117.083611, 50.865564], [-117.083953, 50.864568], [-117.082322, 50.861205], [-117.078974, 50.8596], [-117.076686, 50.857431], [-117.075883, 50.855492], [-117.071318, 50.854607], [-117.064659, 50.853228], [-117.0462, 50.858179], [-117.045734, 50.858812], [-117.044709, 50.858461], [-117.043759, 50.858769], [-117.041532, 50.856414], [-117.041106, 50.855196], [-117.044936, 50.848353], [-117.046077, 50.848165], [-117.045853, 50.847261], [-117.046834, 50.846832], [-117.047991, 50.838628], [-117.046055, 50.83631], [-117.045831, 50.835407], [-117.049717, 50.832115], [-117.04979, 50.830284], [-117.050432, 50.829888], [-117.048372, 50.827376], [-117.045009, 50.825464], [-117.040572, 50.821882], [-117.040906, 50.820039], [-117.038116, 50.815003], [-117.032125, 50.815317], [-117.027048, 50.815133], [-117.01946, 50.81907], [-117.015561, 50.819876], [-117.013599, 50.819716], [-117.012164, 50.819417], [-117.010666, 50.817775], [-117.008838, 50.816589], [-117.008251, 50.815951], [-117.003592, 50.813674], [-116.999451, 50.812335], [-116.99747, 50.81269], [-116.995756, 50.811954], [-116.993209, 50.810477], [-116.989647, 50.809211], [-116.986949, 50.808735], [-116.985119, 50.80905], [-116.980681, 50.810648], [-116.971089, 50.810184], [-116.969714, 50.809698], [-116.964261, 50.81029], [-116.963478, 50.809761], [-116.960353, 50.809172], [-116.95855, 50.808572], [-116.957536, 50.807821], [-116.955765, 50.806026], [-116.954922, 50.805541], [-116.955331, 50.804924], [-116.955171, 50.804117], [-116.954093, 50.802987], [-116.951129, 50.801959], [-116.950073, 50.802238], [-116.947319, 50.801946], [-116.947023, 50.801345], [-116.944665, 50.800157], [-116.942543, 50.799472], [-116.941059, 50.799638], [-116.935403, 50.798414], [-116.933973, 50.79715], [-116.932585, 50.796781], [-116.932947, 50.795951], [-116.931116, 50.792389], [-116.929741, 50.791902], [-116.930082, 50.790342], [-116.929873, 50.78904], [-116.927628, 50.786916], [-116.928572, 50.784066], [-116.925731, 50.781704], [-116.924882, 50.780513], [-116.923851, 50.780559], [-116.922306, 50.779807], [-116.921843, 50.779081], [-116.922018, 50.77796], [-116.921451, 50.773585], [-116.920175, 50.773525], [-116.91839, 50.771564], [-116.916159, 50.770568], [-116.913759, 50.770409], [-116.911723, 50.770947], [-116.909588, 50.771736], [-116.906528, 50.771921], [-116.901024, 50.770374], [-116.897806, 50.769356], [-116.893822, 50.770293], [-116.892886, 50.771021], [-116.891705, 50.771107], [-116.889672, 50.768475], [-116.888825, 50.769336], [-116.880278, 50.770146], [-116.871888, 50.760886], [-116.861085, 50.756685], [-116.847076, 50.76049], [-116.837014, 50.761453], [-116.832096, 50.76071], [-116.828197, 50.758903], [-116.827914, 50.754411], [-116.829506, 50.752432], [-116.829662, 50.749326], [-116.826585, 50.748939], [-116.82309, 50.748039], [-116.819127, 50.743632], [-116.817725, 50.743375], [-116.816192, 50.7425], [-116.816825, 50.741255], [-116.817814, 50.740427], [-116.820962, 50.736134], [-116.820602, 50.73515], [-116.816314, 50.732871], [-116.814991, 50.73163], [-116.81361, 50.729042], [-116.809564, 50.726586], [-116.807839, 50.726921], [-116.804748, 50.728684], [-116.802456, 50.729506], [-116.800246, 50.729911], [-116.798101, 50.729734], [-116.795834, 50.729109], [-116.786359, 50.734067], [-116.783004, 50.734547], [-116.782448, 50.735482], [-116.78326, 50.737019], [-116.788749, 50.739473], [-116.789978, 50.745529], [-116.78834, 50.7459], [-116.787109, 50.746758], [-116.784791, 50.749113], [-116.779, 50.749153], [-116.775205, 50.75116], [-116.772839, 50.760356], [-116.773382, 50.761061], [-116.773615, 50.762806], [-116.772983, 50.765285], [-116.771957, 50.766738], [-116.767266, 50.768304], [-116.765202, 50.768093], [-116.762236, 50.768772], [-116.759865, 50.770137], [-116.752771, 50.770394], [-116.75189, 50.771091], [-116.745355, 50.771295], [-116.74644, 50.778484], [-116.745662, 50.779341], [-116.748429, 50.782727], [-116.749533, 50.784213], [-116.749524, 50.790847], [-116.748081, 50.796174], [-116.73997, 50.80263], [-116.737851, 50.806451], [-116.73924, 50.80861], [-116.738448, 50.810592], [-116.737637, 50.813232], [-116.745887, 50.816212], [-116.74877, 50.820691], [-116.749281, 50.823547], [-116.751359, 50.826087], [-116.753005, 50.830935], [-116.763462, 50.840069], [-116.764085, 50.841495], [-116.765173, 50.84364], [-116.764746, 50.844125], [-116.765346, 50.845743], [-116.763991, 50.847311], [-116.759929, 50.848367], [-116.754192, 50.846863], [-116.749376, 50.846992], [-116.74646, 50.847984], [-116.744086, 50.851872], [-116.742135, 50.851162], [-116.736684, 50.851455], [-116.730365, 50.853376], [-116.724168, 50.853207], [-116.723209, 50.854017], [-116.724239, 50.86365], [-116.727614, 50.8666], [-116.727969, 50.869217], [-116.728648, 50.871189], [-116.733583, 50.875414], [-116.733466, 50.876379], [-116.727091, 50.880277], [-116.713159, 50.880101], [-116.712261, 50.881922], [-116.708047, 50.885725], [-116.703339, 50.886478], [-116.701418, 50.88604], [-116.699112, 50.887291], [-116.697099, 50.889682], [-116.694266, 50.889667], [-116.692478, 50.890257], [-116.686406, 50.888472], [-116.672162, 50.889783], [-116.640249, 50.908454], [-116.636032, 50.911654], [-116.632137, 50.918585], [-116.62873, 50.920674], [-116.621489, 50.920716], [-116.567014, 50.920572], [-116.535716, 50.920973], [-116.535384, 50.935136], [-116.521416, 50.93512], [-116.499726, 50.934927], [-116.499748, 50.936137], [-116.499162, 50.935883], [-116.497515, 50.938694], [-116.492524, 50.938071], [-116.488189, 50.940517], [-116.46489, 50.938635], [-116.463564, 50.93649], [-116.454252, 50.935787], [-116.443655, 50.935197], [-116.444366, 50.949822], [-116.432962, 50.949887], [-116.418989, 50.949694], [-116.407517, 50.949633], [-116.393223, 50.949287], [-116.361698, 50.948691], [-116.353091, 50.94869], [-116.318327, 50.949077], [-116.325417, 50.962196], [-116.334409, 50.97224], [-116.337042, 50.975477], [-116.346924, 50.978996], [-116.365349, 50.991349], [-116.3804, 50.999057], [-116.380986, 50.999236], [-116.380776, 50.999238], [-116.380689, 51.00718], [-116.384593, 51.011865], [-116.403614, 51.020109], [-116.407327, 51.027916], [-116.418559, 51.032647], [-116.418476, 51.036586], [-116.412787, 51.039825], [-116.406363, 51.04322], [-116.404683, 51.045031], [-116.401908, 51.046842], [-116.4006, 51.048318], [-116.398746, 51.049794], [-116.395708, 51.051114], [-116.394654, 51.051769], [-116.393628, 51.053543], [-116.392612, 51.054877], [-116.391062, 51.055582], [-116.387077, 51.055393], [-116.384409, 51.054999], [-116.379389, 51.058017], [-116.370987, 51.059791], [-116.364035, 51.060871], [-116.352966, 51.062386], [-116.342417, 51.06371], [-116.339787, 51.064353], [-116.337597, 51.067599], [-116.338765, 51.067777], [-116.340519, 51.068242], [-116.318474, 51.095462], [-116.30821, 51.102824], [-116.291921, 51.108999], [-116.276167, 51.117238], [-116.262165, 51.126552], [-116.264516, 51.129158], [-116.261022, 51.13504], [-116.256457, 51.140789], [-116.258465, 51.143404], [-116.262119, 51.145825], [-116.265203, 51.146977], [-116.268043, 51.147374], [-116.272162, 51.148673], [-116.273055, 51.149339], [-116.274354, 51.149902], [-116.277775, 51.149185], [-116.280414, 51.150003], [-116.282418, 51.149644], [-116.284347, 51.151387], [-116.289223, 51.157218], [-116.290912, 51.166211], [-116.291433, 51.173804], [-116.297545, 51.179968], [-116.310215, 51.181845], [-116.315728, 51.182452], [-116.33212, 51.180609], [-116.339054, 51.185227], [-116.338667, 51.185479], [-116.341389, 51.188679], [-116.343402, 51.192204], [-116.343563, 51.196056], [-116.344668, 51.197794], [-116.343959, 51.19956], [-116.34617, 51.203035], [-116.346103, 51.203036], [-116.346472, 51.207781], [-116.335097, 51.20844], [-116.327099, 51.214612], [-116.301096, 51.208655], [-116.286175, 51.211424], [-116.263368, 51.221799], [-116.263259, 51.22385], [-116.264688, 51.224965], [-116.264503, 51.225637], [-116.263112, 51.226593], [-116.262238, 51.243008], [-116.280571, 51.25398], [-116.296575, 51.261694], [-116.290239, 51.290845], [-116.300818, 51.302327], [-116.303651, 51.312847], [-116.304898, 51.32492], [-116.305197, 51.325384], [-116.282607, 51.331502], [-116.282378, 51.332195], [-116.285089, 51.333421], [-116.28669, 51.334502], [-116.287051, 51.336465], [-116.287673, 51.342078], [-116.290033, 51.343109], [-116.283461, 51.348878], [-116.282303, 51.350941], [-116.277258, 51.354695], [-116.279872, 51.359628], [-116.27772, 51.36173], [-116.288988, 51.36412], [-116.290563, 51.36358], [-116.293413, 51.364841], [-116.298588, 51.369092], [-116.300234, 51.370941], [-116.302632, 51.371326], [-116.305782, 51.377257], [-116.311437, 51.384963], [-116.308207, 51.385921], [-116.298298, 51.391968], [-116.291833, 51.397214], [-116.293101, 51.399266], [-116.293698, 51.401594], [-116.2925, 51.403597], [-116.286211, 51.40561], [-116.284267, 51.406809], [-116.282472, 51.406837], [-116.285053, 51.412064], [-116.287836, 51.418655], [-116.293217, 51.425583], [-116.294215, 51.429935], [-116.28549, 51.435289], [-116.288036, 51.448529], [-116.284389, 51.449379], [-116.284006, 51.456491], [-116.290437, 51.461173], [-116.292433, 51.461803], [-116.308658, 51.462773], [-116.315003, 51.465564], [-116.316953, 51.465071], [-116.318328, 51.463165], [-116.322288, 51.462448], [-116.338003, 51.464286], [-116.346565, 51.469527], [-116.3606, 51.470867], [-116.361949, 51.473644], [-116.367886, 51.478592], [-116.368936, 51.483005], [-116.379784, 51.48834], [-116.384362, 51.492676], [-116.388174, 51.499935], [-116.389484, 51.500028], [-116.392473, 51.504448], [-116.393832, 51.505663], [-116.395291, 51.509477], [-116.396275, 51.512561], [-116.39471, 51.514872], [-116.393426, 51.517963], [-116.393552, 51.522434], [-116.395338, 51.525527], [-116.387824, 51.52743], [-116.383343, 51.529628], [-116.382083, 51.531011], [-116.382917, 51.532643], [-116.39052, 51.543625], [-116.390889, 51.545589], [-116.401367, 51.546483], [-116.40723, 51.548934], [-116.41539, 51.553251], [-116.422023, 51.555047], [-116.428651, 51.554218], [-116.429595, 51.554618], [-116.429025, 51.556535], [-116.437362, 51.558324], [-116.440541, 51.557092], [-116.452928, 51.560549], [-116.455336, 51.562492], [-116.460615, 51.563778], [-116.464738, 51.565818], [-116.464958, 51.568245], [-116.468774, 51.569902], [-116.468709, 51.573112], [-116.470442, 51.575936], [-116.473253, 51.582674], [-116.471181, 51.586819], [-116.469039, 51.588072], [-116.466024, 51.594088], [-116.466415, 51.596863], [-116.469032, 51.601734], [-116.471414, 51.604678], [-116.476345, 51.607685], [-116.484528, 51.610435], [-116.491018, 51.612337], [-116.489198, 51.614431], [-116.488967, 51.61669], [-116.495451, 51.6198], [-116.499579, 51.623401], [-116.500171, 51.625522], [-116.499861, 51.62766], [-116.505868, 51.628122], [-116.51351, 51.627601], [-116.520662, 51.628766], [-116.529875, 51.631679], [-116.536509, 51.638655], [-116.541846, 51.638789], [-116.5459, 51.638184], [-116.570093, 51.647119], [-116.570578, 51.65289], [-116.574926, 51.653772], [-116.577508, 51.653186], [-116.580411, 51.653086], [-116.595019, 51.66183], [-116.596959, 51.664603], [-116.59616, 51.666512], [-116.590136, 51.668117], [-116.588652, 51.6702], [-116.58751, 51.672977], [-116.589077, 51.675703], [-116.5914, 51.677669], [-116.590396, 51.678919], [-116.587026, 51.682476], [-116.586712, 51.685468], [-116.581396, 51.68746], [-116.583571, 51.692412], [-116.589526, 51.694164], [-116.581179, 51.697282], [-116.581416, 51.698856], [-116.584728, 51.70128], [-116.584818, 51.703673], [-116.585335, 51.705672], [-116.587603, 51.709286], [-116.586068, 51.7106], [-116.585428, 51.712752], [-116.588181, 51.715888], [-116.594491, 51.71748], [-116.598537, 51.723874], [-116.606502, 51.725542], [-116.61049, 51.723958], [-116.617132, 51.72518], [-116.620341, 51.726921], [-116.623023, 51.727517], [-116.624238, 51.727279], [-116.631198, 51.731404], [-116.633714, 51.734174], [-116.633556, 51.735493], [-116.629412, 51.737188], [-116.628331, 51.741443], [-116.629099, 51.743557], [-116.628134, 51.744869], [-116.63674, 51.748362], [-116.640301, 51.751151], [-116.646493, 51.752203], [-116.650351, 51.753707], [-116.651154, 51.756132], [-116.650543, 51.760055], [-116.6496, 51.762783], [-116.651147, 51.764948], [-116.650977, 51.766768], [-116.648225, 51.771698], [-116.64692, 51.776651], [-116.644426, 51.778423], [-116.645768, 51.782702], [-116.643149, 51.786709], [-116.646294, 51.789036], [-116.648277, 51.79095], [-116.649874, 51.792127], [-116.651468, 51.792304], [-116.653784, 51.792963], [-116.655213, 51.794514], [-116.655987, 51.796897], [-116.654346, 51.801311], [-116.655784, 51.801861], [-116.657951, 51.803307], [-116.659063, 51.805189], [-116.664117, 51.805317], [-116.667057, 51.804484], [-116.666758, 51.806059], [-116.67743, 51.811417], [-116.679577, 51.813034], [-116.682078, 51.812147], [-116.688562, 51.807746], [-116.692381, 51.806314], [-116.694483, 51.803613], [-116.703585, 51.801541], [-116.706828, 51.802379], [-116.710726, 51.800967], [-116.715509, 51.798663], [-116.716942, 51.798797], [-116.720813, 51.80139], [-116.723071, 51.803978], [-116.725091, 51.804795], [-116.732308, 51.80595], [-116.744235, 51.806608], [-116.748984, 51.805061], [-116.754546, 51.79989], [-116.759611, 51.787514], [-116.765348, 51.78463], [-116.772863, 51.774833], [-116.778145, 51.77248], [-116.78223, 51.768934], [-116.785137, 51.764023], [-116.787107, 51.763351], [-116.791543, 51.763964], [-116.794716, 51.761067], [-116.796066, 51.758055], [-116.801781, 51.754339], [-116.802655, 51.753032], [-116.804185, 51.752306], [-116.806455, 51.750473], [-116.806818, 51.747089], [-116.809937, 51.745122], [-116.811084, 51.742411], [-116.811187, 51.740552], [-116.813518, 51.739619], [-116.817344, 51.73972], [-116.819304, 51.738634], [-116.819948, 51.737385], [-116.818601, 51.735565], [-116.815148, 51.733202], [-116.807979, 51.727878], [-116.804926, 51.725912], [-116.798023, 51.723603], [-116.799845, 51.721302], [-116.800132, 51.716896], [-116.803695, 51.715398], [-116.806965, 51.713058], [-116.808826, 51.710414], [-116.808859, 51.70724], [-116.809744, 51.705346], [-116.813013, 51.705423], [-116.819265, 51.706857], [-116.820445, 51.704804], [-116.825976, 51.704048], [-116.828282, 51.704288], [-116.831705, 51.703991], [-116.834156, 51.703444], [-116.836616, 51.703311], [-116.838555, 51.704812], [-116.842424, 51.704983], [-116.849152, 51.705418], [-116.853604, 51.708272], [-116.860821, 51.707831], [-116.86277, 51.706329], [-116.865232, 51.705194], [-116.870325, 51.704382], [-116.874437, 51.704615], [-116.876483, 51.705671], [-116.877952, 51.705459], [-116.878203, 51.704228], [-116.887289, 51.702969], [-116.895982, 51.702727], [-116.902585, 51.703775], [-116.907364, 51.706709], [-116.909765, 51.70709], [-116.912006, 51.706428], [-116.915894, 51.707426], [-116.920571, 51.709803], [-116.91806, 51.711868], [-116.916971, 51.71365], [-116.9228, 51.717148], [-116.925985, 51.717493], [-116.927775, 51.719365], [-116.929984, 51.721463], [-116.926396, 51.723724], [-116.926213, 51.724855], [-116.92685, 51.726608], [-116.926546, 51.729063], [-116.932497, 51.729528], [-116.943623, 51.733909], [-116.943136, 51.734785], [-116.944532, 51.74168], [-116.946191, 51.742752], [-116.949312, 51.742196], [-116.95431, 51.74324], [-116.955663, 51.746059], [-116.957371, 51.747203], [-116.958973, 51.74779], [-116.960613, 51.752037], [-116.969339, 51.756329], [-116.976363, 51.760185], [-116.974836, 51.760914], [-116.972793, 51.761275], [-116.972048, 51.762969], [-116.971819, 51.76503], [-116.97327, 51.766991], [-116.972926, 51.768081], [-116.973718, 51.769461], [-116.968725, 51.770835], [-116.967932, 51.771456], [-116.967215, 51.773393], [-116.963224, 51.774258], [-116.96288, 51.775347], [-116.963662, 51.776313], [-116.964559, 51.77825], [-116.964349, 51.78014], [-116.96473, 51.781709], [-116.966095, 51.782942], [-116.966124, 51.784186], [-116.964939, 51.785826], [-116.966065, 51.787704], [-116.96361, 51.790257], [-116.961202, 51.790879], [-116.964004, 51.794952], [-116.968417, 51.798317], [-116.975133, 51.802505], [-116.980112, 51.805307], [-116.986046, 51.80853], [-116.988991, 51.811106], [-116.98773, 51.813434], [-116.985322, 51.816059], [-116.985054, 51.818464], [-116.984242, 51.820259], [-116.988181, 51.822913], [-116.986327, 51.82456], [-116.986275, 51.826785], [-116.981189, 51.828432], [-116.979974, 51.830831], [-116.978884, 51.833616], [-116.979783, 51.835553], [-116.981103, 51.836714], [-116.984527, 51.835997], [-116.990542, 51.83653], [-116.995582, 51.836814], [-116.999847, 51.836546], [-117.000076, 51.835486], [-117.005748, 51.836106], [-117.019373, 51.842933], [-117.027292, 51.850483], [-117.032134, 51.854364], [-117.033476, 51.856354], [-117.034323, 51.859808], [-117.033052, 51.860721], [-117.030626, 51.86452], [-117.030871, 51.868881], [-117.028368, 51.872366], [-117.023285, 51.880024], [-117.018903, 51.883326], [-117.014433, 51.884898], [-117.013287, 51.887197], [-117.01078, 51.889681], [-117.011748, 51.890516], [-117.019467, 51.89136], [-117.02323, 51.894437], [-117.031338, 51.898854], [-117.032884, 51.901543], [-117.036317, 51.903828], [-117.042254, 51.908222], [-117.046674, 51.910168], [-117.04847, 51.912626], [-117.052337, 51.915551], [-117.059298, 51.917258], [-117.067835, 51.923192], [-117.073672, 51.927027], [-117.077684, 51.929162], [-117.07974, 51.930802], [-117.08152, 51.933431], [-117.08617, 51.936905], [-117.088954, 51.938022], [-117.09255, 51.938344], [-117.097655, 51.939695], [-117.096822, 51.943252], [-117.100921, 51.947704], [-117.102133, 51.950188], [-117.100933, 51.953005], [-117.101629, 51.95483], [-117.103179, 51.956517], [-117.110869, 51.955695], [-117.117295, 51.955201], [-117.120203, 51.9557], [-117.130484, 51.965068], [-117.131672, 51.967016], [-117.133327, 51.968258], [-117.135717, 51.96839], [-117.138263, 51.969151], [-117.14487, 51.972703], [-117.148482, 51.973438], [-117.154233, 51.971946], [-117.163612, 51.972605], [-117.167874, 51.973798], [-117.172836, 51.973931], [-117.17732, 51.974355], [-117.18622, 51.976892], [-117.188714, 51.976578], [-117.191703, 51.97739], [-117.195993, 51.979118], [-117.197227, 51.980134], [-117.197449, 51.985427], [-117.196456, 51.986354], [-117.196982, 51.987722], [-117.19936, 51.989026], [-117.19962, 51.990798], [-117.201696, 51.99285], [-117.205316, 51.994585], [-117.211105, 51.995924], [-117.216418, 51.99726], [-117.217236, 51.999054], [-117.21855, 52.000384], [-117.219483, 52.002149], [-117.222172, 52.005296], [-117.224856, 52.007441], [-117.226073, 52.00863], [-117.229787, 52.009504], [-117.232434, 52.010404], [-117.233634, 52.011765], [-117.231964, 52.016463], [-117.227257, 52.016516], [-117.222738, 52.01744], [-117.216801, 52.022244], [-117.215359, 52.025294], [-117.214686, 52.028479], [-117.220734, 52.032176], [-117.223611, 52.034899], [-117.225902, 52.035474], [-117.227011, 52.036106], [-117.227958, 52.038285], [-117.232032, 52.041073], [-117.236135, 52.037749], [-117.240316, 52.036328], [-117.24451, 52.035321], [-117.248207, 52.034778], [-117.250304, 52.035069], [-117.252059, 52.038627], [-117.257026, 52.040931], [-117.270592, 52.048861], [-117.268412, 52.055786], [-117.2766, 52.058131], [-117.282103, 52.059626], [-117.285564, 52.061904], [-117.289013, 52.063768], [-117.292472, 52.064457], [-117.294535, 52.065091], [-117.297115, 52.068853], [-117.302314, 52.071683], [-117.305068, 52.074312], [-117.304713, 52.075576], [-117.302102, 52.077511], [-117.298948, 52.077664], [-117.296208, 52.079214], [-117.293556, 52.08208], [-117.292034, 52.085404], [-117.295945, 52.091206], [-117.298598, 52.094281], [-117.304152, 52.124844], [-117.306966, 52.141018], [-117.315504, 52.185504], [-117.317308, 52.194041], [-117.327168, 52.189947], [-117.334041, 52.148641], [-117.381261, 52.137723], [-117.500184, 52.144272], [-117.509909, 52.15781], [-117.523122, 52.158244], [-117.61127, 52.144257], [-117.629354, 52.174763], [-117.663537, 52.197891], [-117.743216, 52.193991], [-117.741354, 52.202996], [-117.818327, 52.226353], [-117.822213, 52.246407], [-117.839588, 52.274126], [-117.79607, 52.292505], [-117.778004, 52.318929], [-117.752887, 52.316422], [-117.722995, 52.35558], [-117.704851, 52.357499], [-117.705803, 52.365344], [-117.729834, 52.382326], [-117.757444, 52.409537], [-117.766506, 52.417691], [-117.839755, 52.421115], [-117.886942, 52.426091], [-117.966801, 52.469708], [-117.987993, 52.500238]], [[-116.987931, 51.314614], [-116.988694, 51.321654], [-116.98566, 51.32172], [-116.978412, 51.321999], [-116.975657, 51.32221], [-116.975042, 51.322208], [-116.973481, 51.320352], [-116.972403, 51.318106], [-116.971374, 51.314464], [-116.970507, 51.314473], [-116.969286, 51.314788], [-116.968928, 51.314777], [-116.968391, 51.314672], [-116.963761, 51.315073], [-116.961922, 51.315154], [-116.961886, 51.314472], [-116.957227, 51.314224], [-116.955366, 51.314288], [-116.95483, 51.31104], [-116.954262, 51.310452], [-116.954156, 51.310231], [-116.954167, 51.308607], [-116.954043, 51.307222], [-116.942349, 51.306878], [-116.941032, 51.306758], [-116.940497, 51.302784], [-116.937262, 51.300311], [-116.940649, 51.29995], [-116.940867, 51.299404], [-116.940666, 51.298779], [-116.9405, 51.296046], [-116.940555, 51.288349], [-116.934544, 51.288219], [-116.934634, 51.280949], [-116.940571, 51.280998], [-116.940632, 51.279614], [-116.940421, 51.277854], [-116.941126, 51.275264], [-116.941174, 51.274449], [-116.942139, 51.275047], [-116.942782, 51.275267], [-116.944303, 51.276046], [-116.947571, 51.277093], [-116.950272, 51.277772], [-116.954523, 51.278244], [-116.956456, 51.278618], [-116.957602, 51.279081], [-116.959452, 51.280163], [-116.960407, 51.280511], [-116.961759, 51.280799], [-116.962906, 51.280827], [-116.964796, 51.280747], [-116.968879, 51.280203], [-116.97005, 51.280266], [-116.970936, 51.280497], [-116.971626, 51.280997], [-116.971981, 51.281941], [-116.972167, 51.283513], [-116.973409, 51.285366], [-116.974515, 51.286262], [-116.975605, 51.287017], [-116.978615, 51.290273], [-116.979943, 51.291441], [-116.980176, 51.292042], [-116.980472, 51.293604], [-116.981198, 51.294715], [-116.981749, 51.295255], [-116.983732, 51.296682], [-116.985048, 51.2978], [-116.986014, 51.299014], [-116.986509, 51.300299], [-116.9869, 51.300903], [-116.987448, 51.301128], [-116.988338, 51.301679], [-116.989109, 51.302436], [-116.989153, 51.303843], [-116.988951, 51.304952], [-116.98945, 51.306091], [-116.989669, 51.307038], [-116.990055, 51.307811], [-116.990841, 51.308627], [-116.99203, 51.309396], [-116.992848, 51.310296], [-116.990981, 51.31003], [-116.988816, 51.309531], [-116.98763, 51.309676], [-116.987931, 51.314614]]]]}, "properties": {"name": "Columbia Shuswap A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Columbia Shuswap A", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939011", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.211927, 51.063036], [-118.2121, 51.055857], [-118.223445, 51.055656], [-118.223475, 51.041342], [-118.228802, 51.041167], [-118.229344, 51.033961], [-118.240619, 51.03403], [-118.24065, 51.03269], [-118.244784, 51.032719], [-118.243, 51.024854], [-118.241285, 51.012229], [-118.241281, 50.999664], [-118.24151, 50.998736], [-118.247027, 50.998615], [-118.246783, 50.990643], [-118.230884, 50.990817], [-118.231225, 50.994221], [-118.230579, 50.993816], [-118.230437, 50.99379], [-118.229274, 50.993955], [-118.228769, 50.993772], [-118.228401, 50.993857], [-118.228243, 50.993831], [-118.227971, 50.993753], [-118.227895, 50.993611], [-118.227567, 50.993632], [-118.227294, 50.993545], [-118.226612, 50.993039], [-118.226195, 50.992837], [-118.226148, 50.992775], [-118.226581, 50.99241], [-118.226049, 50.992209], [-118.225924, 50.991788], [-118.224968, 50.991771], [-118.22283, 50.990147], [-118.22253, 50.989539], [-118.222097, 50.989301], [-118.221979, 50.989157], [-118.221941, 50.988213], [-118.220999, 50.987385], [-118.220797, 50.987037], [-118.219912, 50.986497], [-118.219265, 50.985953], [-118.218453, 50.986007], [-118.21246, 50.982621], [-118.209442, 50.981677], [-118.20977, 50.980972], [-118.210213, 50.979318], [-118.206716, 50.971444], [-118.206966, 50.96895], [-118.206915, 50.966222], [-118.206208, 50.960907], [-118.205922, 50.959992], [-118.195704, 50.951842], [-118.19572, 50.951898], [-118.177947, 50.95396], [-118.176098, 50.954047], [-118.17572, 50.957237], [-118.175503, 50.961319], [-118.175258, 50.966036], [-118.175456, 50.967541], [-118.175338, 50.96862], [-118.17314, 50.968566], [-118.172888, 50.967098], [-118.172109, 50.967075], [-118.172678, 50.96592], [-118.172615, 50.965427], [-118.17229, 50.965229], [-118.171368, 50.958043], [-118.169951, 50.958058], [-118.169842, 50.95609], [-118.169693, 50.956089], [-118.169695, 50.954948], [-118.169511, 50.954874], [-118.168915, 50.955018], [-118.16849, 50.954811], [-118.168324, 50.954096], [-118.167835, 50.953961], [-118.166654, 50.953981], [-118.166621, 50.953189], [-118.165908, 50.952683], [-118.165557, 50.952573], [-118.165157, 50.952525], [-118.164739, 50.952541], [-118.164494, 50.952636], [-118.162597, 50.949584], [-118.161428, 50.949609], [-118.160961, 50.946457], [-118.155725, 50.946604], [-118.155386, 50.942943], [-118.154982, 50.942154], [-118.152098, 50.942182], [-118.15198, 50.940371], [-118.15478, 50.940209], [-118.154731, 50.93627], [-118.149672, 50.936407], [-118.149574, 50.934721], [-118.148919, 50.934376], [-118.149085, 50.933934], [-118.150341, 50.933439], [-118.149615, 50.932652], [-118.144308, 50.932846], [-118.144124, 50.926767], [-118.143207, 50.925778], [-118.135571, 50.926], [-118.135896, 50.930492], [-118.137841, 50.933263], [-118.137522, 50.939714], [-118.139358, 50.941752], [-118.139081, 50.946538], [-118.139426, 50.95077], [-118.14131, 50.955468], [-118.145693, 50.961129], [-118.146656, 50.980339], [-118.142354, 50.982543], [-118.143031, 50.987937], [-118.141783, 50.991269], [-118.142848, 50.9919], [-118.141978, 50.997108], [-118.153329, 50.997255], [-118.153381, 51.004719], [-118.191119, 51.004815], [-118.194924, 51.005074], [-118.194738, 51.00442], [-118.19487, 51.004051], [-118.194259, 51.003615], [-118.195034, 51.003541], [-118.195085, 51.003496], [-118.197931, 51.005718], [-118.197926, 51.005817], [-118.19991, 51.006514], [-118.201113, 51.006766], [-118.206818, 51.010386], [-118.20802, 51.010748], [-118.209506, 51.010793], [-118.209388, 51.012073], [-118.207002, 51.01211], [-118.206978, 51.014141], [-118.207198, 51.01755], [-118.209446, 51.017539], [-118.209565, 51.019434], [-118.210145, 51.019469], [-118.21024, 51.020396], [-118.21296, 51.020367], [-118.212946, 51.022318], [-118.212088, 51.023542], [-118.211629, 51.024852], [-118.211322, 51.025399], [-118.206336, 51.025532], [-118.206317, 51.031173], [-118.17746, 51.04915], [-118.178537, 51.063179], [-118.211927, 51.063036]]]]}, "properties": {"name": "Revelstoke", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Revelstoke", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939019", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.484107, 52.23645], [-118.496201, 52.243268], [-118.506185, 52.251271], [-118.526532, 52.261663], [-118.538041, 52.271755], [-118.540532, 52.272994], [-118.540802, 52.272934], [-118.551791, 52.268418], [-118.558455, 52.264118], [-118.563529, 52.258381], [-118.562762, 52.25401], [-118.561584, 52.251616], [-118.556286, 52.243798], [-118.55493, 52.23995], [-118.55578, 52.233004], [-118.558818, 52.229483], [-118.563844, 52.227269], [-118.567895, 52.225354], [-118.569265, 52.224529], [-118.570935, 52.221129], [-118.5746, 52.20695], [-118.577333, 52.200316], [-118.582422, 52.193001], [-118.589527, 52.191231], [-118.595017, 52.191375], [-118.602133, 52.190048], [-118.607934, 52.188765], [-118.619486, 52.185349], [-118.623876, 52.184263], [-118.628637, 52.182691], [-118.632031, 52.179387], [-118.633044, 52.177509], [-118.636601, 52.173009], [-118.640088, 52.169552], [-118.644356, 52.167731], [-118.649025, 52.166534], [-118.657487, 52.165213], [-118.666314, 52.164108], [-118.669067, 52.161492], [-118.671709, 52.155324], [-118.673465, 52.153047], [-118.676296, 52.151462], [-118.683852, 52.151602], [-118.68686, 52.15332], [-118.688582, 52.155265], [-118.694153, 52.166661], [-118.699675, 52.166278], [-118.705478, 52.164859], [-118.711508, 52.163185], [-118.716069, 52.161344], [-118.720794, 52.160862], [-118.72425, 52.161626], [-118.726476, 52.162763], [-118.729902, 52.165193], [-118.731958, 52.169022], [-118.732519, 52.17422], [-118.733505, 52.176433], [-118.744974, 52.182502], [-118.751985, 52.185151], [-118.759001, 52.183616], [-118.768981, 52.180393], [-118.772605, 52.17996], [-118.777584, 52.17883], [-118.782607, 52.178326], [-118.792837, 52.176437], [-118.796433, 52.176746], [-118.80321, 52.177222], [-118.811545, 52.17414], [-118.817738, 52.171396], [-118.829017, 52.167941], [-118.831985, 52.166253], [-118.833675, 52.164312], [-118.835013, 52.15991], [-118.837789, 52.146155], [-118.841856, 52.142785], [-118.844539, 52.141207], [-118.84989, 52.137255], [-118.851123, 52.133139], [-118.850856, 52.127265], [-118.852724, 52.122459], [-118.855228, 52.119651], [-118.858173, 52.115889], [-118.864331, 52.106754], [-118.866696, 52.102417], [-118.865033, 52.100578], [-118.862672, 52.09906], [-118.861637, 52.096662], [-118.860507, 52.094418], [-118.854559, 52.088016], [-118.872814, 52.076017], [-118.872486, 52.072111], [-118.871457, 52.070287], [-118.868608, 52.067819], [-118.865379, 52.066672], [-118.86042, 52.066133], [-118.855018, 52.064567], [-118.851366, 52.061428], [-118.848232, 52.058144], [-118.848235, 52.056736], [-118.851318, 52.049354], [-118.855945, 52.045634], [-118.863384, 52.044196], [-118.871936, 52.043501], [-118.875686, 52.042964], [-118.887426, 52.041601], [-118.895386, 52.039887], [-118.909401, 52.03619], [-118.91221, 52.03649], [-118.917053, 52.038714], [-118.919494, 52.0395], [-118.926109, 52.038351], [-118.936248, 52.034104], [-118.941771, 52.030414], [-118.944264, 52.026197], [-118.947382, 52.010864], [-118.949397, 52.006844], [-118.951996, 52.005028], [-118.95674, 52.003313], [-118.955623, 52.000459], [-118.961584, 51.996739], [-118.971927, 51.988142], [-118.972721, 51.985423], [-118.972907, 51.9823], [-118.971859, 51.977219], [-118.96799, 51.975618], [-118.964317, 51.974281], [-118.949903, 51.970935], [-118.942339, 51.96909], [-118.930596, 51.966624], [-118.92501, 51.966908], [-118.918935, 51.966243], [-118.916019, 51.965653], [-118.905905, 51.961451], [-118.90226, 51.959371], [-118.89581, 51.956637], [-118.891037, 51.954073], [-118.895495, 51.948161], [-118.898706, 51.945346], [-118.900529, 51.942472], [-118.902617, 51.939395], [-118.903185, 51.93636], [-118.905854, 51.931396], [-118.908526, 51.928059], [-118.913873, 51.926753], [-118.921796, 51.926706], [-118.944324, 51.927548], [-118.952687, 51.930283], [-118.971405, 51.934233], [-118.97661, 51.934562], [-118.984605, 51.932636], [-118.987761, 51.931302], [-118.989085, 51.929587], [-118.989397, 51.927901], [-118.988665, 51.92606], [-118.988237, 51.923367], [-118.987022, 51.920096], [-118.984351, 51.917585], [-118.978775, 51.914356], [-118.97883, 51.911335], [-118.970755, 51.895479], [-118.967854, 51.891947], [-118.965958, 51.88711], [-118.969692, 51.877559], [-118.972628, 51.872835], [-118.976923, 51.870668], [-118.981312, 51.86905], [-118.990273, 51.867616], [-118.990141, 51.864552], [-118.988445, 51.86407], [-118.985855, 51.863073], [-118.975892, 51.858778], [-118.960603, 51.854254], [-118.950295, 51.849481], [-118.948914, 51.846961], [-118.949314, 51.844548], [-118.948417, 51.839943], [-118.947154, 51.836527], [-118.947771, 51.833989], [-118.949671, 51.831091], [-118.953403, 51.829147], [-118.958199, 51.82767], [-118.96504, 51.82434], [-118.963574, 51.82079], [-118.963188, 51.81815], [-118.961399, 51.810569], [-118.958683, 51.807563], [-118.953282, 51.802436], [-118.945367, 51.796547], [-118.942078, 51.793318], [-118.938786, 51.792902], [-118.9362, 51.792958], [-118.924106, 51.794311], [-118.921048, 51.793509], [-118.91772, 51.791632], [-118.910157, 51.787624], [-118.906007, 51.78617], [-118.900137, 51.786029], [-118.895485, 51.786568], [-118.888856, 51.785809], [-118.88582, 51.782988], [-118.885468, 51.778553], [-118.88682, 51.775044], [-118.89499, 51.766491], [-118.897403, 51.76345], [-118.893763, 51.754861], [-118.890443, 51.751578], [-118.888165, 51.747747], [-118.885514, 51.733102], [-118.886319, 51.73096], [-118.888346, 51.729369], [-118.891357, 51.728139], [-118.910805, 51.721041], [-118.916032, 51.719187], [-118.918446, 51.717422], [-118.91883, 51.71527], [-118.917588, 51.708211], [-118.917559, 51.703238], [-118.919772, 51.700635], [-118.924141, 51.696339], [-118.923768, 51.685739], [-118.922452, 51.682654], [-118.920698, 51.681228], [-118.916047, 51.67793], [-118.912395, 51.674735], [-118.91035, 51.672624], [-118.90802, 51.670401], [-118.907152, 51.668214], [-118.908382, 51.665947], [-118.907831, 51.663702], [-118.906708, 51.661587], [-118.903705, 51.656739], [-118.901503, 51.655823], [-118.899034, 51.653831], [-118.895898, 51.652474], [-118.890116, 51.646617], [-118.883953, 51.644192], [-118.880017, 51.644273], [-118.870386, 51.645468], [-118.863758, 51.64579], [-118.855704, 51.644851], [-118.850724, 51.642924], [-118.843728, 51.637216], [-118.839659, 51.63612], [-118.833626, 51.634998], [-118.825819, 51.634818], [-118.821303, 51.631898], [-118.817712, 51.626641], [-118.816493, 51.620269], [-118.818274, 51.614078], [-118.816363, 51.610011], [-118.815427, 51.607365], [-118.81504, 51.60172], [-118.816757, 51.597145], [-118.816744, 51.590883], [-118.817402, 51.589099], [-118.820821, 51.588579], [-118.824396, 51.587569], [-118.827356, 51.58571], [-118.82846, 51.582841], [-118.827584, 51.578932], [-118.82688, 51.574623], [-118.826997, 51.56826], [-118.82798, 51.56338], [-118.828184, 51.55955], [-118.828236, 51.555508], [-118.828499, 51.550767], [-118.831648, 51.543005], [-118.832564, 51.537185], [-118.832332, 51.531049], [-118.831293, 51.52904], [-118.828168, 51.526405], [-118.825016, 51.526139], [-118.81919, 51.527259], [-118.817189, 51.526607], [-118.814452, 51.525076], [-118.811019, 51.523996], [-118.806682, 51.52336], [-118.802479, 51.523547], [-118.799031, 51.524001], [-118.79641, 51.523905], [-118.793731, 51.524717], [-118.792679, 51.525521], [-118.78543, 51.53512], [-118.783094, 51.536409], [-118.780808, 51.535644], [-118.777643, 51.533658], [-118.775464, 51.531906], [-118.772592, 51.528623], [-118.771553, 51.52604], [-118.768398, 51.521367], [-118.767078, 51.520524], [-118.764126, 51.520392], [-118.759486, 51.521528], [-118.75676, 51.522416], [-118.753107, 51.523435], [-118.74835, 51.526035], [-118.745517, 51.527908], [-118.742089, 51.528673], [-118.73898, 51.527755], [-118.73403, 51.525692], [-118.727805, 51.523986], [-118.72466, 51.521737], [-118.722961, 51.519084], [-118.719647, 51.515032], [-118.716805, 51.512635], [-118.713806, 51.510729], [-118.70931, 51.509082], [-118.702975, 51.507214], [-118.698887, 51.506633], [-118.695383, 51.505442], [-118.693174, 51.504209], [-118.691823, 51.502608], [-118.691586, 51.500567], [-118.694444, 51.498996], [-118.69928, 51.497761], [-118.703135, 51.496867], [-118.707052, 51.493784], [-118.714882, 51.490174], [-118.715385, 51.488882], [-118.713236, 51.484887], [-118.709398, 51.480313], [-118.706565, 51.477212], [-118.703947, 51.475264], [-118.696947, 51.473456], [-118.69053, 51.471039], [-118.685803, 51.468277], [-118.681465, 51.464065], [-118.679438, 51.462654], [-118.675227, 51.460896], [-118.669608, 51.459945], [-118.664139, 51.459558], [-118.661637, 51.459617], [-118.65733, 51.461134], [-118.654547, 51.461654], [-118.651456, 51.463023], [-118.645665, 51.462469], [-118.641793, 51.462463], [-118.632545, 51.463762], [-118.631178, 51.461847], [-118.630228, 51.459017], [-118.63069, 51.455952], [-118.63194, 51.451134], [-118.632033, 51.44798], [-118.633729, 51.446929], [-118.633196, 51.445611], [-118.630217, 51.444146], [-118.62831, 51.44404], [-118.623022, 51.443473], [-118.619479, 51.442357], [-118.614247, 51.441583], [-118.612799, 51.440265], [-118.611381, 51.433132], [-118.611439, 51.430499], [-118.608718, 51.422966], [-118.608995, 51.420783], [-118.610621, 51.418349], [-118.614511, 51.415661], [-118.616855, 51.413663], [-118.618121, 51.411581], [-118.616845, 51.409337], [-118.614837, 51.408193], [-118.605208, 51.404157], [-118.597872, 51.400399], [-118.594832, 51.396566], [-118.590001, 51.393842], [-118.586587, 51.393565], [-118.581545, 51.390086], [-118.582252, 51.387442], [-118.589102, 51.381625], [-118.588836, 51.375792], [-118.590672, 51.372013], [-118.603508, 51.368075], [-118.610164, 51.366218], [-118.615586, 51.364078], [-118.616563, 51.362973], [-118.614668, 51.356714], [-118.611953, 51.345774], [-118.611427, 51.339668], [-118.616062, 51.333127], [-118.614276, 51.330198], [-118.61151, 51.328149], [-118.606231, 51.326199], [-118.602204, 51.323293], [-118.600285, 51.318384], [-118.600164, 51.310149], [-118.594784, 51.30803], [-118.590919, 51.303068], [-118.585775, 51.299472], [-118.579177, 51.297897], [-118.572823, 51.298471], [-118.568975, 51.298947], [-118.564053, 51.299724], [-118.560143, 51.299208], [-118.554792, 51.294863], [-118.551383, 51.290983], [-118.551883, 51.287621], [-118.549719, 51.279163], [-118.551081, 51.274755], [-118.555757, 51.27184], [-118.556228, 51.26889], [-118.558308, 51.26549], [-118.569229, 51.259155], [-118.569549, 51.25915], [-118.573573, 51.255871], [-118.576844, 51.251898], [-118.575372, 51.246192], [-118.573798, 51.244626], [-118.575077, 51.241496], [-118.574732, 51.239299], [-118.569019, 51.233635], [-118.566706, 51.230173], [-118.550703, 51.220655], [-118.546797, 51.217735], [-118.544246, 51.214149], [-118.54486, 51.209868], [-118.547172, 51.20712], [-118.551704, 51.205569], [-118.557607, 51.204017], [-118.568059, 51.202439], [-118.567554, 51.198089], [-118.565935, 51.194529], [-118.561308, 51.191239], [-118.556557, 51.188844], [-118.552284, 51.184977], [-118.548509, 51.182882], [-118.538765, 51.178495], [-118.535093, 51.177615], [-118.52209, 51.178399], [-118.510512, 51.178399], [-118.504484, 51.179136], [-118.496293, 51.176175], [-118.484531, 51.175267], [-118.479307, 51.173481], [-118.469439, 51.170512], [-118.473038, 51.164638], [-118.474379, 51.161591], [-118.474153, 51.159553], [-118.471986, 51.156386], [-118.473115, 51.154543], [-118.475739, 51.152666], [-118.478914, 51.151782], [-118.48405, 51.151308], [-118.491583, 51.146915], [-118.490918, 51.143186], [-118.490788, 51.138065], [-118.490434, 51.136063], [-118.488657, 51.134842], [-118.485892, 51.134375], [-118.48269, 51.133075], [-118.479008, 51.128948], [-118.476399, 51.128056], [-118.474326, 51.12663], [-118.474523, 51.124761], [-118.476313, 51.122352], [-118.478089, 51.119278], [-118.477751, 51.117081], [-118.47603, 51.114221], [-118.4756, 51.112861], [-118.480617, 51.108787], [-118.481306, 51.101816], [-118.475837, 51.097522], [-118.47254, 51.09243], [-118.471286, 51.090872], [-118.467383, 51.091586], [-118.46527, 51.090745], [-118.463523, 51.089134], [-118.462678, 51.087079], [-118.462764, 51.079036], [-118.460976, 51.07801], [-118.459258, 51.076008], [-118.45718, 51.07597], [-118.452913, 51.076595], [-118.449378, 51.076536], [-118.447942, 51.075793], [-118.444759, 51.075157], [-118.44148, 51.072447], [-118.439412, 51.070162], [-118.437032, 51.070448], [-118.432228, 51.072466], [-118.4304, 51.070305], [-118.429036, 51.067727], [-118.427799, 51.065973], [-118.425675, 51.064467], [-118.421143, 51.062776], [-118.42037, 51.061465], [-118.420247, 51.058923], [-118.422896, 51.056658], [-118.42332, 51.055109], [-118.434736, 51.055178], [-118.43391, 51.050351], [-118.435446, 51.048014], [-118.434632, 51.045569], [-118.430963, 51.041442], [-118.428736, 51.038391], [-118.429995, 51.03136], [-118.42544, 51.02834], [-118.421703, 51.024328], [-118.420257, 51.02206], [-118.422749, 51.02022], [-118.425707, 51.016246], [-118.422857, 51.011986], [-118.421228, 51.010131], [-118.421361, 51.006939], [-118.419124, 51.00478], [-118.415778, 51.003549], [-118.412154, 51.001803], [-118.410091, 51.000064], [-118.408299, 50.99815], [-118.40617, 50.997662], [-118.403556, 50.998149], [-118.399365, 51.000265], [-118.395535, 51.002673], [-118.393514, 51.003191], [-118.38911, 51.007042], [-118.37972, 51.006855], [-118.370324, 51.008908], [-118.360933, 51.00872], [-118.354288, 51.004273], [-118.350156, 51.00315], [-118.345936, 50.998785], [-118.352571, 50.99412], [-118.354589, 50.987372], [-118.351398, 50.97995], [-118.353726, 50.9745], [-118.353356, 50.963356], [-118.343577, 50.953133], [-118.343457, 50.953134], [-118.34119, 50.952345], [-118.339998, 50.950862], [-118.340274, 50.949019], [-118.339705, 50.94854], [-118.338404, 50.948464], [-118.335373, 50.948926], [-118.33385, 50.94842], [-118.332885, 50.947708], [-118.331149, 50.945444], [-118.329627, 50.94371], [-118.329389, 50.942697], [-118.330265, 50.940148], [-118.32975, 50.939409], [-118.32768, 50.937336], [-118.325282, 50.933786], [-118.323799, 50.932777], [-118.321127, 50.932299], [-118.31968, 50.931231], [-118.320694, 50.930559], [-118.325478, 50.928798], [-118.325988, 50.927627], [-118.32579, 50.926112], [-118.32504, 50.924782], [-118.323446, 50.922762], [-118.323862, 50.919591], [-118.323496, 50.918411], [-118.321771, 50.917315], [-118.319652, 50.914554], [-118.316971, 50.912887], [-118.314908, 50.908434], [-118.315037, 50.907511], [-118.31445, 50.904915], [-118.318604, 50.903278], [-118.319576, 50.901333], [-118.318684, 50.899413], [-118.314551, 50.896032], [-118.313888, 50.891781], [-118.314639, 50.888419], [-118.309816, 50.887165], [-118.307425, 50.887128], [-118.303797, 50.888023], [-118.299952, 50.888385], [-118.296916, 50.888326], [-118.293858, 50.889361], [-118.29108, 50.890122], [-118.287414, 50.889839], [-118.285039, 50.889598], [-118.283061, 50.89083], [-118.281864, 50.892735], [-118.281853, 50.894313], [-118.280915, 50.895457], [-118.278418, 50.895943], [-118.2761, 50.895785], [-118.270603, 50.894018], [-118.26862, 50.893471], [-118.266137, 50.888729], [-118.266126, 50.884501], [-118.270482, 50.881411], [-118.273424, 50.879791], [-118.276043, 50.879056], [-118.282235, 50.878509], [-118.290697, 50.87246], [-118.293261, 50.869853], [-118.294648, 50.866682], [-118.294476, 50.864643], [-118.293075, 50.862853], [-118.292881, 50.861222], [-118.290349, 50.859154], [-118.290066, 50.857846], [-118.287702, 50.854443], [-118.286309, 50.849282], [-118.28469, 50.847852], [-118.28295, 50.847148], [-118.277344, 50.846732], [-118.273624, 50.844302], [-118.271665, 50.84148], [-118.269821, 50.841301], [-118.26836, 50.840322], [-118.268372, 50.838535], [-118.270988, 50.833396], [-118.272085, 50.832496], [-118.276024, 50.823966], [-118.27272, 50.822808], [-118.270669, 50.823678], [-118.26746, 50.823782], [-118.264344, 50.82267], [-118.261276, 50.820951], [-118.258517, 50.81855], [-118.258786, 50.817584], [-118.26376, 50.815503], [-118.267962, 50.813439], [-118.26774, 50.809737], [-118.266307, 50.806768], [-118.261187, 50.799381], [-118.260845, 50.796406], [-118.262603, 50.793191], [-118.263843, 50.790468], [-118.263839, 50.788884], [-118.263181, 50.787483], [-118.261456, 50.784993], [-118.255634, 50.78335], [-118.252275, 50.782109], [-118.248818, 50.776438], [-118.247618, 50.773801], [-118.248896, 50.76978], [-118.248166, 50.767836], [-118.24846, 50.766899], [-118.241902, 50.755192], [-118.235345, 50.749941], [-118.226952, 50.74338], [-118.223168, 50.741901], [-118.217822, 50.740923], [-118.21388, 50.739947], [-118.205858, 50.738924], [-118.205938, 50.735639], [-118.208514, 50.732351], [-118.209836, 50.729511], [-118.208416, 50.728127], [-118.20718, 50.724516], [-118.207525, 50.723431], [-118.206665, 50.719914], [-118.208868, 50.713368], [-118.207066, 50.711201], [-118.204438, 50.705111], [-118.200667, 50.698946], [-118.203805, 50.695799], [-118.203876, 50.6958], [-118.207322, 50.69029], [-118.201491, 50.688777], [-118.193121, 50.686762], [-118.181941, 50.684754], [-118.168506, 50.683376], [-118.163477, 50.683537], [-118.152729, 50.684012], [-118.145243, 50.684159], [-118.137275, 50.683428], [-118.129275, 50.681227], [-118.128704, 50.680931], [-118.123266, 50.681227], [-118.10192, 50.687755], [-118.076602, 50.693254], [-118.069605, 50.688392], [-118.071643, 50.678198], [-118.06838, 50.666543], [-118.055379, 50.663511], [-118.039337, 50.663284], [-118.017526, 50.65464], [-118.013819, 50.65312], [-118.01128, 50.644469], [-118.006808, 50.639051], [-118.00511, 50.629691], [-118.007655, 50.609068], [-118.000918, 50.584358], [-117.994343, 50.548101], [-117.98868, 50.541363], [-117.984781, 50.538527], [-117.979432, 50.538735], [-117.979076, 50.537563], [-117.979434, 50.535461], [-117.977926, 50.532846], [-117.952049, 50.531947], [-117.926104, 50.530616], [-117.909082, 50.533057], [-117.901808, 50.533191], [-117.902013, 50.53164], [-117.902685, 50.529379], [-117.902865, 50.528231], [-117.893999, 50.528249], [-117.856983, 50.527858], [-117.849891, 50.542387], [-117.818364, 50.541001], [-117.805104, 50.547304], [-117.800117, 50.549023], [-117.793209, 50.55058], [-117.762936, 50.550906], [-117.758274, 50.553109], [-117.753392, 50.55445], [-117.74685, 50.555212], [-117.740674, 50.554376], [-117.734053, 50.551014], [-117.730211, 50.549883], [-117.72336, 50.549116], [-117.717362, 50.548806], [-117.703248, 50.547729], [-117.694257, 50.545131], [-117.691651, 50.541416], [-117.689225, 50.539435], [-117.687283, 50.538701], [-117.682857, 50.539109], [-117.676467, 50.538214], [-117.673772, 50.53343], [-117.671111, 50.532434], [-117.666359, 50.53316], [-117.662086, 50.533525], [-117.656091, 50.534822], [-117.648741, 50.532232], [-117.644728, 50.535401], [-117.644574, 50.537054], [-117.645464, 50.539457], [-117.644786, 50.541944], [-117.641667, 50.544293], [-117.637696, 50.548601], [-117.622274, 50.544765], [-117.615863, 50.5437], [-117.611996, 50.537167], [-117.608089, 50.53191], [-117.605442, 50.523436], [-117.597725, 50.51922], [-117.596154, 50.516085], [-117.592863, 50.51388], [-117.59016, 50.510135], [-117.587022, 50.507888], [-117.585277, 50.504226], [-117.58201, 50.502992], [-117.576847, 50.502562], [-117.57347, 50.502909], [-117.570982, 50.504853], [-117.564274, 50.50266], [-117.558806, 50.502312], [-117.555758, 50.499926], [-117.549423, 50.496941], [-117.545484, 50.489741], [-117.550225, 50.484198], [-117.546002, 50.483282], [-117.537014, 50.480101], [-117.527985, 50.475783], [-117.523331, 50.473145], [-117.521484, 50.470661], [-117.517004, 50.468148], [-117.514202, 50.463971], [-117.510899, 50.461195], [-117.507854, 50.460416], [-117.504787, 50.459873], [-117.499701, 50.457122], [-117.501617, 50.466723], [-117.50161, 50.469946], [-117.493764, 50.475809], [-117.496752, 50.477292], [-117.498918, 50.485235], [-117.494356, 50.488989], [-117.480546, 50.49125], [-117.473278, 50.494485], [-117.462944, 50.492538], [-117.451034, 50.493525], [-117.447958, 50.491857], [-117.4359, 50.484368], [-117.397372, 50.484677], [-117.385734, 50.485894], [-117.376035, 50.48646], [-117.365948, 50.486441], [-117.35613, 50.485201], [-117.351684, 50.483652], [-117.342729, 50.483438], [-117.332132, 50.484817], [-117.321201, 50.487318], [-117.316319, 50.489042], [-117.308054, 50.492311], [-117.295711, 50.497028], [-117.290184, 50.500359], [-117.288869, 50.501633], [-117.285031, 50.5029], [-117.281363, 50.504695], [-117.281046, 50.506389], [-117.279718, 50.509274], [-117.278094, 50.511187], [-117.276641, 50.511796], [-117.274852, 50.512774], [-117.271017, 50.513672], [-117.262223, 50.513976], [-117.243848, 50.519471], [-117.240688, 50.524042], [-117.245038, 50.535081], [-117.256965, 50.538366], [-117.258825, 50.544338], [-117.270776, 50.553021], [-117.273521, 50.554], [-117.279829, 50.556118], [-117.285792, 50.562057], [-117.290046, 50.563829], [-117.292381, 50.564976], [-117.300644, 50.568133], [-117.30705, 50.572412], [-117.306801, 50.577447], [-117.296685, 50.584303], [-117.280959, 50.592041], [-117.27337, 50.597802], [-117.273394, 50.602763], [-117.268903, 50.609763], [-117.267836, 50.613567], [-117.243827, 50.623098], [-117.243417, 50.623556], [-117.243434, 50.623638], [-117.241425, 50.624319], [-117.240351, 50.624892], [-117.236729, 50.627356], [-117.233841, 50.62941], [-117.229594, 50.632113], [-117.230805, 50.635629], [-117.229917, 50.639352], [-117.229203, 50.64182], [-117.229104, 50.643695], [-117.22986, 50.645342], [-117.229155, 50.646811], [-117.229791, 50.648277], [-117.231632, 50.649704], [-117.232713, 50.651335], [-117.234837, 50.652935], [-117.24063, 50.653232], [-117.247522, 50.653163], [-117.2506, 50.654259], [-117.254321, 50.65447], [-117.258137, 50.657858], [-117.260435, 50.659803], [-117.261332, 50.660985], [-117.262586, 50.66321], [-117.264239, 50.664688], [-117.266641, 50.665608], [-117.26907, 50.666736], [-117.271263, 50.668353], [-117.273694, 50.670832], [-117.275912, 50.671304], [-117.26927, 50.673441], [-117.268015, 50.674418], [-117.268528, 50.677802], [-117.268616, 50.680127], [-117.269045, 50.682289], [-117.270466, 50.685607], [-117.26747, 50.687335], [-117.265382, 50.690599], [-117.263427, 50.692546], [-117.263823, 50.707809], [-117.263135, 50.712085], [-117.265248, 50.715433], [-117.265055, 50.717334], [-117.265287, 50.718695], [-117.266416, 50.719887], [-117.2641, 50.722642], [-117.262548, 50.723343], [-117.260461, 50.724756], [-117.259411, 50.726887], [-117.258395, 50.728226], [-117.255415, 50.729308], [-117.253763, 50.730533], [-117.254765, 50.735246], [-117.254021, 50.738007], [-117.252086, 50.742012], [-117.255116, 50.744545], [-117.261495, 50.74604], [-117.266235, 50.744059], [-117.273545, 50.744592], [-117.275856, 50.744187], [-117.279319, 50.740625], [-117.281481, 50.740081], [-117.28332, 50.739304], [-117.28476, 50.737423], [-117.287586, 50.73695], [-117.290376, 50.735917], [-117.294761, 50.735596], [-117.298913, 50.733913], [-117.301373, 50.733395], [-117.303865, 50.733937], [-117.306422, 50.736596], [-117.308742, 50.738394], [-117.310604, 50.732769], [-117.314064, 50.729206], [-117.316869, 50.727776], [-117.32062, 50.72684], [-117.322135, 50.725579], [-117.323108, 50.724179], [-117.328268, 50.723505], [-117.337949, 50.722043], [-117.341055, 50.721991], [-117.343897, 50.720871], [-117.347842, 50.721234], [-117.353337, 50.720896], [-117.356367, 50.719974], [-117.361205, 50.716465], [-117.360069, 50.713922], [-117.36073, 50.712391], [-117.36694, 50.708085], [-117.370829, 50.701982], [-117.37442, 50.704504], [-117.376116, 50.70654], [-117.381827, 50.708206], [-117.392886, 50.709144], [-117.395793, 50.710639], [-117.397755, 50.711392], [-117.397818, 50.712159], [-117.39731, 50.713328], [-117.39893, 50.714744], [-117.401106, 50.716152], [-117.401858, 50.717444], [-117.401473, 50.718545], [-117.398139, 50.71809], [-117.394391, 50.719029], [-117.393732, 50.720559], [-117.392286, 50.722088], [-117.387127, 50.735015], [-117.385524, 50.737655], [-117.384092, 50.741387], [-117.382757, 50.744596], [-117.382002, 50.746152], [-117.382279, 50.747573], [-117.384461, 50.747983], [-117.387375, 50.74873], [-117.38997, 50.750595], [-117.39083, 50.752216], [-117.390242, 50.755366], [-117.390237, 50.758715], [-117.391316, 50.759991], [-117.394157, 50.76172], [-117.396396, 50.764394], [-117.398212, 50.767609], [-117.399855, 50.772581], [-117.400852, 50.776586], [-117.405659, 50.779317], [-117.412655, 50.781708], [-117.419657, 50.7831], [-117.422571, 50.781745], [-117.4291, 50.782765], [-117.430883, 50.784921], [-117.431391, 50.79255], [-117.433091, 50.795085], [-117.432689, 50.796832], [-117.435473, 50.797294], [-117.439061, 50.79711], [-117.445466, 50.796097], [-117.449092, 50.796473], [-117.455351, 50.797672], [-117.458751, 50.800389], [-117.461153, 50.804802], [-117.46259, 50.805768], [-117.465432, 50.808993], [-117.466797, 50.811191], [-117.465174, 50.812627], [-117.464664, 50.814546], [-117.464121, 50.817757], [-117.46128, 50.821232], [-117.453625, 50.829084], [-117.453266, 50.830043], [-117.454828, 50.830533], [-117.455407, 50.831027], [-117.455167, 50.832627], [-117.45618, 50.837559], [-117.456759, 50.839094], [-117.458235, 50.840128], [-117.45791, 50.840683], [-117.458745, 50.845533], [-117.459798, 50.84655], [-117.460307, 50.849692], [-117.461316, 50.850838], [-117.462906, 50.851907], [-117.465727, 50.854634], [-117.468217, 50.858336], [-117.47044, 50.859964], [-117.471201, 50.861305], [-117.469491, 50.863041], [-117.469692, 50.866214], [-117.472621, 50.866719], [-117.473838, 50.869029], [-117.4749, 50.870225], [-117.47839, 50.871439], [-117.480101, 50.872474], [-117.482017, 50.877662], [-117.485171, 50.879165], [-117.487512, 50.879461], [-117.490188, 50.881186], [-117.490646, 50.883108], [-117.490519, 50.884426], [-117.488239, 50.886395], [-117.484339, 50.888052], [-117.475403, 50.892527], [-117.474735, 50.896557], [-117.46729, 50.902411], [-117.461565, 50.900102], [-117.459129, 50.899331], [-117.456501, 50.899112], [-117.453845, 50.899185], [-117.447558, 50.900983], [-117.444932, 50.900263], [-117.442095, 50.90124], [-117.434593, 50.903328], [-117.432507, 50.903746], [-117.431273, 50.905432], [-117.428597, 50.903798], [-117.426117, 50.903966], [-117.421543, 50.90605], [-117.417603, 50.909246], [-117.416929, 50.913276], [-117.417089, 50.916868], [-117.416396, 50.919193], [-117.417766, 50.923244], [-117.418918, 50.924539], [-117.42098, 50.923914], [-117.42451, 50.923964], [-117.427546, 50.924788], [-117.431315, 50.926199], [-117.434199, 50.930485], [-117.437446, 50.932964], [-117.440985, 50.934365], [-117.438248, 50.936669], [-117.438681, 50.943023], [-117.439008, 50.944854], [-117.438624, 50.946803], [-117.437781, 50.948236], [-117.436439, 50.948592], [-117.431125, 50.948082], [-117.429894, 50.948267], [-117.429031, 50.950344], [-117.42493, 50.952643], [-117.423222, 50.952456], [-117.419666, 50.954895], [-117.41797, 50.955061], [-117.41675, 50.955598], [-117.411475, 50.959347], [-117.408898, 50.960387], [-117.404684, 50.961008], [-117.400324, 50.96074], [-117.397805, 50.961195], [-117.396444, 50.965393], [-117.396951, 50.968169], [-117.398013, 50.971379], [-117.39812, 50.971379], [-117.398541, 50.972731], [-117.399339, 50.974569], [-117.399606, 50.976459], [-117.400668, 50.977735], [-117.401809, 50.978812], [-117.401416, 50.980032], [-117.3993, 50.981754], [-117.398464, 50.982735], [-117.398866, 50.984723], [-117.398619, 50.985948], [-117.394623, 50.987254], [-117.392618, 50.988188], [-117.387791, 50.990854], [-117.387332, 50.993785], [-117.387973, 50.996556], [-117.388884, 50.997606], [-117.390199, 50.999796], [-117.383167, 51.006393], [-117.38017, 51.008237], [-117.373211, 51.012715], [-117.372266, 51.016623], [-117.358914, 51.022236], [-117.355622, 51.024759], [-117.348735, 51.032651], [-117.346403, 51.034005], [-117.347534, 51.039009], [-117.349903, 51.04146], [-117.34942, 51.042214], [-117.34903, 51.043212], [-117.350295, 51.044662], [-117.350456, 51.045423], [-117.350135, 51.046313], [-117.350492, 51.047156], [-117.351459, 51.04806], [-117.351599, 51.049631], [-117.351155, 51.051492], [-117.349215, 51.054132], [-117.353574, 51.054262], [-117.358484, 51.055944], [-117.361319, 51.058136], [-117.36449, 51.058719], [-117.367485, 51.058409], [-117.370122, 51.059044], [-117.371555, 51.059689], [-117.372203, 51.063583], [-117.374762, 51.066676], [-117.37813, 51.069442], [-117.380174, 51.070147], [-117.380325, 51.071626], [-117.381427, 51.073567], [-117.383779, 51.074726], [-117.384363, 51.080828], [-117.382982, 51.083297], [-117.379938, 51.087662], [-117.377446, 51.088594], [-117.375218, 51.090126], [-117.374514, 51.092548], [-117.375759, 51.095748], [-117.377487, 51.098505], [-117.380205, 51.10377], [-117.391517, 51.107788], [-117.39286, 51.107875], [-117.404359, 51.11106], [-117.406236, 51.111094], [-117.412023, 51.109631], [-117.413995, 51.109751], [-117.422248, 51.107716], [-117.432553, 51.106607], [-117.435337, 51.106083], [-117.436488, 51.105147], [-117.446488, 51.106693], [-117.451251, 51.106353], [-117.457442, 51.104644], [-117.461365, 51.102111], [-117.466261, 51.099225], [-117.469358, 51.097899], [-117.469371, 51.096012], [-117.468114, 51.093928], [-117.463177, 51.093232], [-117.458133, 51.090211], [-117.457108, 51.086989], [-117.454897, 51.082739], [-117.452718, 51.077584], [-117.452716, 51.074401], [-117.457072, 51.072199], [-117.458755, 51.069886], [-117.46151, 51.067845], [-117.469901, 51.067289], [-117.47133, 51.062959], [-117.474236, 51.05998], [-117.478068, 51.057267], [-117.48254, 51.057452], [-117.484652, 51.058986], [-117.488837, 51.060949], [-117.498014, 51.061029], [-117.504322, 51.060135], [-117.507038, 51.061037], [-117.507477, 51.063246], [-117.510321, 51.064807], [-117.516867, 51.065103], [-117.518569, 51.066346], [-117.521517, 51.067745], [-117.523899, 51.071131], [-117.524089, 51.072557], [-117.525095, 51.074344], [-117.528578, 51.077413], [-117.534573, 51.078886], [-117.539863, 51.082878], [-117.541286, 51.088402], [-117.543549, 51.090567], [-117.54547, 51.090296], [-117.634098, 51.072845], [-117.636637, 51.073636], [-117.6405, 51.073127], [-117.643314, 51.071444], [-117.644642, 51.069513], [-117.648221, 51.068901], [-117.651724, 51.070058], [-117.653508, 51.071412], [-117.655633, 51.071598], [-117.658164, 51.07248], [-117.662751, 51.072715], [-117.671193, 51.072836], [-117.675163, 51.07484], [-117.680803, 51.076753], [-117.685152, 51.077203], [-117.690995, 51.075616], [-117.696561, 51.075736], [-117.703134, 51.075218], [-117.70842, 51.074507], [-117.71131, 51.075353], [-117.713233, 51.077729], [-117.715058, 51.081219], [-117.715184, 51.08517], [-117.709959, 51.088031], [-117.704073, 51.090345], [-117.701439, 51.090693], [-117.700002, 51.094885], [-117.694433, 51.098924], [-117.690804, 51.10244], [-117.685371, 51.10626], [-117.679309, 51.109163], [-117.676383, 51.115385], [-117.675251, 51.118769], [-117.674986, 51.121738], [-117.672711, 51.125973], [-117.669798, 51.126758], [-117.669704, 51.129137], [-117.672634, 51.13088], [-117.676295, 51.132426], [-117.678983, 51.134235], [-117.681299, 51.138861], [-117.681566, 51.14386], [-117.680085, 51.147157], [-117.674436, 51.150671], [-117.671358, 51.15458], [-117.670545, 51.159688], [-117.671883, 51.163312], [-117.671065, 51.167154], [-117.6732, 51.169838], [-117.677596, 51.171185], [-117.681925, 51.173276], [-117.685978, 51.175804], [-117.689152, 51.176213], [-117.692192, 51.178108], [-117.694883, 51.179917], [-117.702175, 51.180842], [-117.705523, 51.18066], [-117.707722, 51.181333], [-117.709683, 51.183339], [-117.711861, 51.186917], [-117.711763, 51.194734], [-117.713759, 51.203072], [-117.716212, 51.209662], [-117.716757, 51.212758], [-117.719799, 51.227733], [-117.723341, 51.234584], [-117.72728, 51.234429], [-117.728419, 51.241567], [-117.733448, 51.24384], [-117.747617, 51.246368], [-117.75283, 51.250588], [-117.755733, 51.252709], [-117.752922, 51.256195], [-117.746204, 51.259469], [-117.738854, 51.261823], [-117.737222, 51.264081], [-117.722117, 51.274524], [-117.72901, 51.279928], [-117.736162, 51.278544], [-117.746142, 51.287382], [-117.74114, 51.294003], [-117.745849, 51.30254], [-117.730563, 51.314848], [-117.754516, 51.320193], [-117.768184, 51.329946], [-117.768549, 51.34184], [-117.793267, 51.341527], [-117.804928, 51.34519], [-117.803937, 51.356364], [-117.828705, 51.363662], [-117.839701, 51.371593], [-117.838482, 51.384105], [-117.835074, 51.387575], [-117.858825, 51.390422], [-117.865235, 51.401778], [-117.892092, 51.426057], [-117.911892, 51.426514], [-117.922864, 51.453195], [-117.930046, 51.451906], [-117.9495, 51.463251], [-117.949474, 51.463148], [-117.970931, 51.477172], [-117.9808, 51.485604], [-117.988587, 51.499875], [-117.977257, 51.509798], [-117.959917, 51.510207], [-117.948153, 51.525087], [-117.939451, 51.53094], [-117.94201, 51.540754], [-117.941668, 51.542557], [-117.954314, 51.544974], [-117.970538, 51.562413], [-117.97841, 51.571395], [-117.981405, 51.574574], [-117.988803, 51.576942], [-117.990124, 51.580053], [-117.981362, 51.592581], [-117.982012, 51.600233], [-117.986554, 51.607541], [-117.975768, 51.628803], [-117.976062, 51.633706], [-117.973718, 51.639325], [-117.951594, 51.647661], [-117.941132, 51.648199], [-117.933373, 51.655465], [-117.932547, 51.662449], [-117.930735, 51.665164], [-117.938342, 51.669514], [-117.940921, 51.683406], [-117.934235, 51.695894], [-117.923082, 51.701589], [-117.923226, 51.709557], [-117.927987, 51.714321], [-117.91876, 51.720736], [-117.908297, 51.723752], [-117.915652, 51.725687], [-117.92682, 51.72367], [-117.940946, 51.723431], [-117.958504, 51.725642], [-117.974941, 51.732773], [-117.981662, 51.7395], [-118.001435, 51.744223], [-118.013691, 51.744677], [-118.015533, 51.743044], [-118.015015, 51.739843], [-118.022139, 51.736076], [-118.021816, 51.733319], [-118.019229, 51.728474], [-118.024502, 51.725347], [-118.04017, 51.724013], [-118.058005, 51.723553], [-118.074831, 51.725572], [-118.078476, 51.720213], [-118.08485, 51.71408], [-118.090959, 51.70937], [-118.094686, 51.704379], [-118.104974, 51.707232], [-118.112096, 51.710157], [-118.12066, 51.716905], [-118.125553, 51.723901], [-118.122204, 51.737183], [-118.121296, 51.745152], [-118.123682, 51.751688], [-118.124789, 51.758608], [-118.126747, 51.764295], [-118.126999, 51.771305], [-118.130361, 51.778971], [-118.134902, 51.781562], [-118.160799, 51.77991], [-118.184814, 51.786971], [-118.18985, 51.791464], [-118.184367, 51.796541], [-118.175976, 51.802949], [-118.175621, 51.808768], [-118.176442, 51.812193], [-118.168723, 51.816878], [-118.158469, 51.821398], [-118.151252, 51.827445], [-118.148704, 51.833182], [-118.145534, 51.842343], [-118.139837, 51.855411], [-118.148736, 51.863473], [-118.139738, 51.87222], [-118.124049, 51.889081], [-118.125577, 51.894317], [-118.134146, 51.89679], [-118.142698, 51.898017], [-118.156198, 51.898158], [-118.175049, 51.907282], [-118.1745, 51.913156], [-118.171729, 51.916559], [-118.168315, 51.91792], [-118.169817, 51.924488], [-118.174371, 51.937205], [-118.180172, 51.94064], [-118.187819, 51.942933], [-118.194628, 51.951425], [-118.19452, 51.957753], [-118.19553, 51.963706], [-118.207205, 51.966768], [-118.211448, 51.971414], [-118.218656, 51.975184], [-118.233892, 51.973247], [-118.261552, 51.96413], [-118.275305, 51.964658], [-118.278764, 51.973527], [-118.285806, 51.982709], [-118.296897, 51.987354], [-118.311079, 51.987978], [-118.330685, 51.992527], [-118.346609, 51.993067], [-118.356984, 51.99193], [-118.358479, 51.985106], [-118.36081, 51.980264], [-118.36792, 51.979833], [-118.374752, 51.976264], [-118.379973, 51.978206], [-118.386167, 51.977952], [-118.392337, 51.979921], [-118.394732, 51.988476], [-118.398065, 52.00147], [-118.40368, 52.001373], [-118.396544, 52.008351], [-118.391617, 52.013613], [-118.392704, 52.021127], [-118.397255, 52.029361], [-118.422889, 52.044439], [-118.448968, 52.059216], [-118.455902, 52.063229], [-118.447118, 52.066856], [-118.440354, 52.075014], [-118.439018, 52.090817], [-118.440839, 52.105662], [-118.440623, 52.105903], [-118.444921, 52.127572], [-118.446402, 52.143275], [-118.445538, 52.152134], [-118.441206, 52.156159], [-118.451648, 52.161253], [-118.456494, 52.167353], [-118.454506, 52.176155], [-118.453507, 52.186481], [-118.46038, 52.195695], [-118.470325, 52.201668], [-118.478491, 52.21178], [-118.474563, 52.214817], [-118.468678, 52.21878], [-118.464414, 52.224018], [-118.484107, 52.23645]], [[-118.211927, 51.063036], [-118.178537, 51.063179], [-118.17746, 51.04915], [-118.206317, 51.031173], [-118.206336, 51.025532], [-118.211322, 51.025399], [-118.211629, 51.024852], [-118.212088, 51.023542], [-118.212946, 51.022318], [-118.21296, 51.020367], [-118.21024, 51.020396], [-118.210145, 51.019469], [-118.209565, 51.019434], [-118.209446, 51.017539], [-118.207198, 51.01755], [-118.206978, 51.014141], [-118.207002, 51.01211], [-118.209388, 51.012073], [-118.209506, 51.010793], [-118.20802, 51.010748], [-118.206818, 51.010386], [-118.201113, 51.006766], [-118.19991, 51.006514], [-118.197926, 51.005817], [-118.197931, 51.005718], [-118.195085, 51.003496], [-118.195034, 51.003541], [-118.194259, 51.003615], [-118.19487, 51.004051], [-118.194738, 51.00442], [-118.194924, 51.005074], [-118.191119, 51.004815], [-118.153381, 51.004719], [-118.153329, 50.997255], [-118.141978, 50.997108], [-118.142848, 50.9919], [-118.141783, 50.991269], [-118.143031, 50.987937], [-118.142354, 50.982543], [-118.146656, 50.980339], [-118.145693, 50.961129], [-118.14131, 50.955468], [-118.139426, 50.95077], [-118.139081, 50.946538], [-118.139358, 50.941752], [-118.137522, 50.939714], [-118.137841, 50.933263], [-118.135896, 50.930492], [-118.135571, 50.926], [-118.143207, 50.925778], [-118.144124, 50.926767], [-118.144308, 50.932846], [-118.149615, 50.932652], [-118.150341, 50.933439], [-118.149085, 50.933934], [-118.148919, 50.934376], [-118.149574, 50.934721], [-118.149672, 50.936407], [-118.154731, 50.93627], [-118.15478, 50.940209], [-118.15198, 50.940371], [-118.152098, 50.942182], [-118.154982, 50.942154], [-118.155386, 50.942943], [-118.155725, 50.946604], [-118.160961, 50.946457], [-118.161428, 50.949609], [-118.162597, 50.949584], [-118.164494, 50.952636], [-118.164739, 50.952541], [-118.165157, 50.952525], [-118.165557, 50.952573], [-118.165908, 50.952683], [-118.166621, 50.953189], [-118.166654, 50.953981], [-118.167835, 50.953961], [-118.168324, 50.954096], [-118.16849, 50.954811], [-118.168915, 50.955018], [-118.169511, 50.954874], [-118.169695, 50.954948], [-118.169693, 50.956089], [-118.169842, 50.95609], [-118.169951, 50.958058], [-118.171368, 50.958043], [-118.17229, 50.965229], [-118.172615, 50.965427], [-118.172678, 50.96592], [-118.172109, 50.967075], [-118.172888, 50.967098], [-118.17314, 50.968566], [-118.175338, 50.96862], [-118.175456, 50.967541], [-118.175258, 50.966036], [-118.175503, 50.961319], [-118.17572, 50.957237], [-118.176098, 50.954047], [-118.177947, 50.95396], [-118.19572, 50.951898], [-118.195704, 50.951842], [-118.205922, 50.959992], [-118.206208, 50.960907], [-118.206915, 50.966222], [-118.206966, 50.96895], [-118.206716, 50.971444], [-118.210213, 50.979318], [-118.20977, 50.980972], [-118.209442, 50.981677], [-118.21246, 50.982621], [-118.218453, 50.986007], [-118.219265, 50.985953], [-118.219912, 50.986497], [-118.220797, 50.987037], [-118.220999, 50.987385], [-118.221941, 50.988213], [-118.221979, 50.989157], [-118.222097, 50.989301], [-118.22253, 50.989539], [-118.22283, 50.990147], [-118.224968, 50.991771], [-118.225924, 50.991788], [-118.226049, 50.992209], [-118.226581, 50.99241], [-118.226148, 50.992775], [-118.226195, 50.992837], [-118.226612, 50.993039], [-118.227294, 50.993545], [-118.227567, 50.993632], [-118.227895, 50.993611], [-118.227971, 50.993753], [-118.228243, 50.993831], [-118.228401, 50.993857], [-118.228769, 50.993772], [-118.229274, 50.993955], [-118.230437, 50.99379], [-118.230579, 50.993816], [-118.231225, 50.994221], [-118.230884, 50.990817], [-118.246783, 50.990643], [-118.247027, 50.998615], [-118.24151, 50.998736], [-118.241281, 50.999664], [-118.241285, 51.012229], [-118.243, 51.024854], [-118.244784, 51.032719], [-118.24065, 51.03269], [-118.240619, 51.03403], [-118.229344, 51.033961], [-118.228802, 51.041167], [-118.223475, 51.041342], [-118.223445, 51.055656], [-118.2121, 51.055857], [-118.211927, 51.063036]]]]}, "properties": {"name": "Columbia Shuswap B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Columbia Shuswap B", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939023", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.323709, 50.751146], [-119.325461, 50.751207], [-119.331506, 50.751011], [-119.387393, 50.751326], [-119.387268, 50.73946], [-119.387255, 50.725989], [-119.387949, 50.681205], [-119.387991, 50.67442], [-119.387944, 50.64889], [-119.387793, 50.643015], [-119.387908, 50.641549], [-119.387895, 50.634296], [-119.249402, 50.633987], [-119.249371, 50.652459], [-119.249238, 50.663696], [-119.233156, 50.663528], [-119.231002, 50.663558], [-119.230917, 50.66349], [-119.226131, 50.663531], [-119.217133, 50.663506], [-119.216388, 50.663493], [-119.215148, 50.663334], [-119.214656, 50.663503], [-119.21436, 50.663462], [-119.208641, 50.663482], [-119.207839, 50.663384], [-119.186595, 50.663955], [-119.185329, 50.663936], [-119.180834, 50.664029], [-119.181259, 50.692523], [-119.180814, 50.707132], [-119.180411, 50.7316], [-119.18031, 50.750095], [-119.178016, 50.750094], [-119.178106, 50.75445], [-119.178597, 50.76592], [-119.180846, 50.765851], [-119.18081, 50.765879], [-119.186444, 50.765858], [-119.201389, 50.766011], [-119.206706, 50.770398], [-119.228042, 50.766458], [-119.25021, 50.76261], [-119.250211, 50.76254], [-119.259197, 50.761091], [-119.323709, 50.751146]], [[-119.322935, 50.743176], [-119.322949, 50.745775], [-119.323033, 50.746529], [-119.323184, 50.746913], [-119.322098, 50.748429], [-119.323496, 50.750633], [-119.322615, 50.749632], [-119.321173, 50.749156], [-119.320549, 50.748881], [-119.319964, 50.748524], [-119.319927, 50.748327], [-119.320652, 50.747502], [-119.320683, 50.747286], [-119.320541, 50.746974], [-119.320555, 50.74584], [-119.32041, 50.745493], [-119.319048, 50.743748], [-119.31717, 50.742157], [-119.316465, 50.741398], [-119.315917, 50.740932], [-119.315015, 50.740428], [-119.312219, 50.739225], [-119.311855, 50.738449], [-119.311509, 50.738051], [-119.311109, 50.737412], [-119.31018, 50.736378], [-119.309429, 50.73579], [-119.309424, 50.735412], [-119.30975, 50.734542], [-119.309519, 50.733873], [-119.309066, 50.733037], [-119.309172, 50.732306], [-119.308906, 50.731789], [-119.308156, 50.731228], [-119.307386, 50.730866], [-119.306301, 50.73041], [-119.305603, 50.730316], [-119.305453, 50.730175], [-119.305613, 50.729966], [-119.306111, 50.729704], [-119.306598, 50.729542], [-119.308163, 50.728808], [-119.308898, 50.7282], [-119.311072, 50.726863], [-119.311412, 50.726577], [-119.313423, 50.724271], [-119.314069, 50.723287], [-119.314505, 50.722315], [-119.314765, 50.720727], [-119.314776, 50.71836], [-119.314529, 50.717359], [-119.314319, 50.716823], [-119.313901, 50.716111], [-119.313248, 50.715522], [-119.312288, 50.71501], [-119.311598, 50.714493], [-119.310615, 50.714107], [-119.3087, 50.71321], [-119.30755, 50.712559], [-119.306938, 50.711914], [-119.306512, 50.711339], [-119.30649, 50.710601], [-119.306736, 50.71012], [-119.307067, 50.709933], [-119.307556, 50.709231], [-119.308645, 50.708067], [-119.308854, 50.707676], [-119.309532, 50.70706], [-119.309824, 50.706676], [-119.309846, 50.706244], [-119.30966, 50.705907], [-119.309198, 50.705475], [-119.308573, 50.705145], [-119.308023, 50.704617], [-119.307982, 50.704356], [-119.308179, 50.704038], [-119.308222, 50.703785], [-119.308198, 50.703543], [-119.307936, 50.703134], [-119.307955, 50.702945], [-119.308261, 50.702831], [-119.309068, 50.702806], [-119.309366, 50.702845], [-119.310169, 50.703342], [-119.310651, 50.703305], [-119.310933, 50.703021], [-119.310584, 50.703135], [-119.310215, 50.703098], [-119.309307, 50.702486], [-119.308597, 50.702158], [-119.308299, 50.702164], [-119.307861, 50.702479], [-119.307665, 50.702806], [-119.307622, 50.70306], [-119.307987, 50.703897], [-119.307939, 50.704078], [-119.307633, 50.704471], [-119.307609, 50.70484], [-119.308042, 50.7053], [-119.308307, 50.705484], [-119.308533, 50.705793], [-119.309269, 50.706327], [-119.309355, 50.706667], [-119.309034, 50.707033], [-119.308592, 50.707267], [-119.308089, 50.707404], [-119.307882, 50.707515], [-119.306549, 50.708621], [-119.306244, 50.709042], [-119.306131, 50.709349], [-119.306076, 50.709692], [-119.306171, 50.710175], [-119.305386, 50.710622], [-119.304938, 50.711001], [-119.304825, 50.711021], [-119.30413, 50.711017], [-119.303874, 50.710959], [-119.303484, 50.710553], [-119.301724, 50.710489], [-119.301054, 50.710385], [-119.300477, 50.710189], [-119.299835, 50.710067], [-119.299601, 50.709937], [-119.299484, 50.709543], [-119.299088, 50.709858], [-119.298822, 50.709925], [-119.298555, 50.709382], [-119.298593, 50.709291], [-119.299327, 50.70898], [-119.299805, 50.708862], [-119.30067, 50.708882], [-119.302314, 50.709794], [-119.303065, 50.709788], [-119.303269, 50.709648], [-119.303356, 50.709386], [-119.303167, 50.708995], [-119.303198, 50.708174], [-119.302234, 50.707321], [-119.302457, 50.706049], [-119.302419, 50.705861], [-119.302289, 50.705836], [-119.301755, 50.705918], [-119.300974, 50.70615], [-119.300521, 50.706159], [-119.300158, 50.706274], [-119.299762, 50.706281], [-119.299558, 50.706142], [-119.299273, 50.705554], [-119.299096, 50.705377], [-119.298577, 50.705226], [-119.298485, 50.705075], [-119.297435, 50.705024], [-119.297541, 50.704877], [-119.297765, 50.704802], [-119.298487, 50.704805], [-119.29886, 50.704933], [-119.299528, 50.704974], [-119.300158, 50.704826], [-119.300183, 50.704745], [-119.300096, 50.704711], [-119.299167, 50.704531], [-119.2985, 50.704248], [-119.298308, 50.704063], [-119.298417, 50.703951], [-119.29974, 50.704357], [-119.300136, 50.704386], [-119.300575, 50.704342], [-119.30082, 50.704165], [-119.301639, 50.704114], [-119.302003, 50.704007], [-119.303893, 50.703295], [-119.304717, 50.703054], [-119.305019, 50.702878], [-119.305624, 50.701921], [-119.305694, 50.701308], [-119.305462, 50.700925], [-119.304451, 50.700505], [-119.304185, 50.700294], [-119.304342, 50.700012], [-119.304294, 50.699932], [-119.303783, 50.699861], [-119.303551, 50.700063], [-119.303401, 50.700454], [-119.30317, 50.700647], [-119.302219, 50.700657], [-119.301457, 50.701005], [-119.301185, 50.701217], [-119.300521, 50.701545], [-119.299376, 50.70244], [-119.299053, 50.702509], [-119.298076, 50.70252], [-119.297343, 50.702597], [-119.296327, 50.703238], [-119.295568, 50.703621], [-119.292225, 50.704524], [-119.291634, 50.704851], [-119.291784, 50.699881], [-119.291685, 50.699668], [-119.291688, 50.698688], [-119.294071, 50.698635], [-119.294069, 50.697424], [-119.296785, 50.69742], [-119.297643, 50.697544], [-119.298818, 50.697562], [-119.298625, 50.693697], [-119.306073, 50.693492], [-119.306805, 50.693684], [-119.312099, 50.693557], [-119.312797, 50.69901], [-119.32197, 50.699021], [-119.33136, 50.698862], [-119.338495, 50.698914], [-119.33932, 50.698887], [-119.34013, 50.698786], [-119.341618, 50.698937], [-119.343032, 50.698908], [-119.343452, 50.702604], [-119.34343, 50.704642], [-119.3429, 50.707109], [-119.342907, 50.72028], [-119.3305, 50.720371], [-119.331472, 50.736234], [-119.331492, 50.738212], [-119.322291, 50.738384], [-119.322935, 50.743176]]]]}, "properties": {"name": "Salmon Arm", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Salmon Arm", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939032", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.143778, 50.957991], [-119.153189, 50.956077], [-119.163855, 50.954876], [-119.180552, 50.953291], [-119.221702, 50.950549], [-119.247526, 50.948075], [-119.290579, 50.94444], [-119.329842, 50.938558], [-119.362181, 50.933892], [-119.369377, 50.932742], [-119.375236, 50.931375], [-119.379057, 50.92986], [-119.382498, 50.9277], [-119.385959, 50.924242], [-119.39092, 50.918441], [-119.39486, 50.913145], [-119.396369, 50.911448], [-119.378886, 50.910908], [-119.378884, 50.910856], [-119.366151, 50.910783], [-119.366154, 50.896239], [-119.354545, 50.89623], [-119.354537, 50.888969], [-119.3588, 50.888965], [-119.358847, 50.88352], [-119.357406, 50.883522], [-119.357396, 50.881697], [-119.354512, 50.881699], [-119.354529, 50.871656], [-119.350271, 50.868965], [-119.350272, 50.867166], [-119.341835, 50.867159], [-119.341761, 50.874941], [-119.33151, 50.875168], [-119.331455, 50.852611], [-119.31993, 50.852596], [-119.319909, 50.828749], [-119.319843, 50.828499], [-119.31956, 50.8285], [-119.319413, 50.828427], [-119.319326, 50.828201], [-119.318929, 50.827906], [-119.318789, 50.827493], [-119.317943, 50.827498], [-119.317924, 50.825785], [-119.316785, 50.825789], [-119.316737, 50.823498], [-119.311256, 50.823483], [-119.311244, 50.816202], [-119.342148, 50.816229], [-119.342947, 50.815882], [-119.342966, 50.809019], [-119.366026, 50.808975], [-119.366115, 50.811863], [-119.366025, 50.812639], [-119.365946, 50.822085], [-119.366075, 50.823484], [-119.366075, 50.829817], [-119.387596, 50.82959], [-119.388089, 50.834199], [-119.400107, 50.83385], [-119.400274, 50.838185], [-119.400458, 50.838212], [-119.420154, 50.838224], [-119.460805, 50.838386], [-119.460747, 50.830159], [-119.461545, 50.811229], [-119.461719, 50.8002], [-119.472278, 50.800392], [-119.472104, 50.78547], [-119.461292, 50.785528], [-119.462105, 50.75058], [-119.524672, 50.750943], [-119.524741, 50.744594], [-119.523553, 50.744514], [-119.518039, 50.741957], [-119.516754, 50.740842], [-119.516244, 50.739499], [-119.516247, 50.737407], [-119.517124, 50.736029], [-119.521083, 50.7321], [-119.522198, 50.730646], [-119.519954, 50.729931], [-119.51506, 50.727361], [-119.506363, 50.727678], [-119.495161, 50.723948], [-119.482616, 50.718103], [-119.475471, 50.719144], [-119.4686, 50.721837], [-119.461347, 50.724492], [-119.454408, 50.727577], [-119.451452, 50.729341], [-119.446439, 50.732177], [-119.445856, 50.732693], [-119.444894, 50.73301], [-119.444569, 50.733314], [-119.444306, 50.733445], [-119.443909, 50.733436], [-119.443335, 50.733313], [-119.44301, 50.733328], [-119.442442, 50.733592], [-119.442277, 50.733577], [-119.440127, 50.734952], [-119.436808, 50.744673], [-119.422813, 50.74537], [-119.414817, 50.742592], [-119.413692, 50.734376], [-119.408433, 50.723918], [-119.397587, 50.726193], [-119.387255, 50.725989], [-119.387268, 50.73946], [-119.387393, 50.751326], [-119.331506, 50.751011], [-119.325461, 50.751207], [-119.323709, 50.751146], [-119.259197, 50.761091], [-119.250211, 50.76254], [-119.25021, 50.76261], [-119.228042, 50.766458], [-119.206706, 50.770398], [-119.203971, 50.76817], [-119.184386, 50.779552], [-119.176081, 50.784516], [-119.170656, 50.787137], [-119.158149, 50.79135], [-119.148237, 50.794345], [-119.131562, 50.798371], [-119.117761, 50.802028], [-119.101521, 50.804908], [-119.088744, 50.807451], [-119.076097, 50.811058], [-119.069921, 50.813573], [-119.048125, 50.825259], [-119.051267, 50.833473], [-119.054774, 50.845354], [-119.058609, 50.864722], [-119.059723, 50.877454], [-119.060629, 50.893511], [-119.06009, 50.911954], [-119.058466, 50.921494], [-119.055724, 50.925044], [-119.053577, 50.927272], [-119.047718, 50.931191], [-119.036117, 50.936936], [-119.032563, 50.93916], [-119.026507, 50.943564], [-119.021065, 50.94882], [-119.017452, 50.953978], [-119.003269, 50.976507], [-118.997528, 50.987768], [-118.995302, 50.993728], [-118.992823, 50.999995], [-119.03203, 50.999943], [-119.042604, 50.999878], [-119.080753, 50.978628], [-119.087209, 50.975678], [-119.094024, 50.972735], [-119.101038, 50.970224], [-119.10779, 50.968052], [-119.117976, 50.965001], [-119.137361, 50.959435], [-119.143778, 50.957991]], [[-119.329219, 50.793412], [-119.327055, 50.793404], [-119.325618, 50.793483], [-119.318459, 50.793282], [-119.305058, 50.793122], [-119.304376, 50.780641], [-119.304281, 50.777189], [-119.305063, 50.777916], [-119.30565, 50.778337], [-119.306409, 50.778771], [-119.307919, 50.779433], [-119.309899, 50.779889], [-119.311143, 50.78009], [-119.312008, 50.780684], [-119.312335, 50.781253], [-119.312864, 50.781917], [-119.313581, 50.782649], [-119.314437, 50.782749], [-119.315032, 50.782737], [-119.316946, 50.782403], [-119.31849, 50.782048], [-119.319729, 50.781619], [-119.320444, 50.781434], [-119.321634, 50.780825], [-119.32423, 50.779667], [-119.324871, 50.779439], [-119.325139, 50.779137], [-119.325798, 50.778664], [-119.327073, 50.778063], [-119.328757, 50.776834], [-119.329165, 50.776465], [-119.330358, 50.775669], [-119.330982, 50.775098], [-119.33145, 50.774531], [-119.331987, 50.774206], [-119.332499, 50.773674], [-119.333145, 50.773229], [-119.333442, 50.772647], [-119.333709, 50.772616], [-119.333703, 50.772463], [-119.333371, 50.7721], [-119.33396, 50.771639], [-119.334508, 50.771423], [-119.338338, 50.771834], [-119.339539, 50.771862], [-119.339842, 50.77443], [-119.340242, 50.776858], [-119.341265, 50.785955], [-119.33459, 50.786192], [-119.330463, 50.786242], [-119.328577, 50.786684], [-119.328494, 50.789151], [-119.329219, 50.793412]]]]}, "properties": {"name": "Columbia Shuswap C", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Columbia Shuswap C", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939037", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.429814, 50.895745], [-119.435223, 50.89459], [-119.440682, 50.893648], [-119.446111, 50.892884], [-119.45137, 50.89254], [-119.456523, 50.892631], [-119.467805, 50.893648], [-119.483407, 50.894899], [-119.504045, 50.89708], [-119.51177, 50.897474], [-119.517888, 50.897225], [-119.526314, 50.89591], [-119.531009, 50.894925], [-119.536244, 50.89345], [-119.541648, 50.891076], [-119.55693, 50.883463], [-119.555123, 50.881718], [-119.550481, 50.881654], [-119.55066, 50.867187], [-119.516824, 50.867347], [-119.516433, 50.853841], [-119.516485, 50.838612], [-119.514842, 50.838639], [-119.512863, 50.838755], [-119.506406, 50.838758], [-119.460805, 50.838386], [-119.400274, 50.838185], [-119.400107, 50.83385], [-119.388089, 50.834199], [-119.387596, 50.82959], [-119.366075, 50.829817], [-119.366075, 50.823484], [-119.365946, 50.822085], [-119.366025, 50.812639], [-119.366115, 50.811863], [-119.366026, 50.808975], [-119.342966, 50.809019], [-119.342947, 50.815882], [-119.342148, 50.816229], [-119.311244, 50.816202], [-119.311256, 50.823483], [-119.316737, 50.823498], [-119.316785, 50.825789], [-119.317924, 50.825785], [-119.317943, 50.827498], [-119.318789, 50.827493], [-119.318929, 50.827906], [-119.319326, 50.828201], [-119.319413, 50.828427], [-119.31956, 50.8285], [-119.319843, 50.828499], [-119.319909, 50.828749], [-119.31993, 50.852596], [-119.331455, 50.852611], [-119.33151, 50.875168], [-119.341761, 50.874941], [-119.341835, 50.867159], [-119.350272, 50.867166], [-119.350271, 50.868965], [-119.354529, 50.871656], [-119.354512, 50.881699], [-119.357396, 50.881697], [-119.357406, 50.883522], [-119.358847, 50.88352], [-119.3588, 50.888965], [-119.354537, 50.888969], [-119.354545, 50.89623], [-119.366154, 50.896239], [-119.366151, 50.910783], [-119.378884, 50.910856], [-119.378886, 50.910908], [-119.396369, 50.911448], [-119.398828, 50.908724], [-119.401789, 50.905806], [-119.405134, 50.903611], [-119.409445, 50.901876], [-119.414329, 50.900377], [-119.421788, 50.897785], [-119.429814, 50.895745]]]]}, "properties": {"name": "Columbia Shuswap G", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Columbia Shuswap G", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939038", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.482616, 50.718103], [-119.495161, 50.723948], [-119.506363, 50.727678], [-119.51506, 50.727361], [-119.519954, 50.729931], [-119.522198, 50.730646], [-119.521083, 50.7321], [-119.517124, 50.736029], [-119.516247, 50.737407], [-119.516244, 50.739499], [-119.516754, 50.740842], [-119.518039, 50.741957], [-119.523553, 50.744514], [-119.524741, 50.744594], [-119.525121, 50.669733], [-119.524992, 50.669605], [-119.525122, 50.669462], [-119.525142, 50.665959], [-119.525505, 50.576563], [-119.539165, 50.57647], [-119.550432, 50.576484], [-119.628833, 50.576109], [-119.642756, 50.575681], [-119.648248, 50.57508], [-119.649916, 50.574821], [-119.649203, 50.571104], [-119.651516, 50.568976], [-119.651601, 50.567862], [-119.651417, 50.557232], [-119.650886, 50.498509], [-119.650834, 50.485331], [-119.652618, 50.484926], [-119.654212, 50.484256], [-119.657577, 50.483594], [-119.658636, 50.483258], [-119.660395, 50.483034], [-119.667166, 50.481611], [-119.666221, 50.479472], [-119.664927, 50.477674], [-119.662854, 50.476043], [-119.659436, 50.474619], [-119.651179, 50.47187], [-119.650777, 50.43939], [-119.6514, 50.40205], [-119.644494, 50.402106], [-119.644418, 50.40217], [-119.628449, 50.402151], [-119.628609, 50.416445], [-119.606121, 50.416286], [-119.606402, 50.424382], [-119.605667, 50.425199], [-119.605893, 50.427032], [-119.606117, 50.431006], [-119.581674, 50.430803], [-119.581872, 50.4457], [-119.541589, 50.445315], [-119.525821, 50.445215], [-119.524439, 50.439938], [-119.524942, 50.431031], [-119.514059, 50.431613], [-119.506423, 50.432342], [-119.457063, 50.430881], [-119.446372, 50.430852], [-119.445713, 50.415956], [-119.374975, 50.416083], [-119.352398, 50.416169], [-119.352593, 50.425948], [-119.363983, 50.426133], [-119.364535, 50.448463], [-119.369206, 50.448398], [-119.37466, 50.448406], [-119.375119, 50.456033], [-119.374515, 50.456004], [-119.37279, 50.456125], [-119.372324, 50.456108], [-119.371941, 50.456079], [-119.370816, 50.455823], [-119.370075, 50.455947], [-119.369696, 50.456242], [-119.369394, 50.456697], [-119.368625, 50.457073], [-119.368558, 50.457156], [-119.368531, 50.45775], [-119.368304, 50.457998], [-119.367719, 50.458126], [-119.366931, 50.458421], [-119.365929, 50.458703], [-119.364991, 50.459099], [-119.364293, 50.45924], [-119.363424, 50.459338], [-119.362941, 50.459537], [-119.362641, 50.459741], [-119.362211, 50.459875], [-119.361061, 50.45997], [-119.360411, 50.460235], [-119.360236, 50.460375], [-119.360213, 50.460491], [-119.360165, 50.46177], [-119.359725, 50.462012], [-119.359513, 50.46225], [-119.359463, 50.463546], [-119.359338, 50.463837], [-119.358837, 50.464288], [-119.358603, 50.464392], [-119.357814, 50.464677], [-119.35721, 50.464708], [-119.356129, 50.465053], [-119.355611, 50.465396], [-119.355144, 50.465938], [-119.354459, 50.466329], [-119.353599, 50.466328], [-119.353502, 50.466393], [-119.353389, 50.467232], [-119.353013, 50.467608], [-119.352344, 50.468017], [-119.351487, 50.46835], [-119.350806, 50.468849], [-119.349609, 50.469413], [-119.349376, 50.469579], [-119.3493, 50.469735], [-119.349285, 50.470291], [-119.349632, 50.470465], [-119.349729, 50.470724], [-119.349694, 50.471129], [-119.349364, 50.471595], [-119.349487, 50.472348], [-119.349244, 50.472298], [-119.348954, 50.472116], [-119.3487, 50.472121], [-119.348576, 50.472196], [-119.348436, 50.472459], [-119.347704, 50.472492], [-119.346415, 50.473237], [-119.345861, 50.473725], [-119.345839, 50.473825], [-119.345895, 50.474409], [-119.346094, 50.474709], [-119.346064, 50.474971], [-119.345982, 50.475045], [-119.345206, 50.475015], [-119.345247, 50.476131], [-119.344923, 50.476676], [-119.344885, 50.477046], [-119.345079, 50.477267], [-119.345482, 50.477438], [-119.345986, 50.477951], [-119.345962, 50.478284], [-119.34579, 50.478512], [-119.345785, 50.478737], [-119.346291, 50.478961], [-119.346258, 50.479421], [-119.34587, 50.479878], [-119.345672, 50.480987], [-119.344974, 50.481712], [-119.344924, 50.482416], [-119.344623, 50.482853], [-119.344529, 50.483529], [-119.34433, 50.484073], [-119.343769, 50.484687], [-119.343752, 50.485219], [-119.343451, 50.485412], [-119.342742, 50.486183], [-119.342825, 50.486415], [-119.343575, 50.48702], [-119.343553, 50.487453], [-119.343444, 50.487517], [-119.342057, 50.487429], [-119.341711, 50.487561], [-119.341658, 50.487644], [-119.34167, 50.489001], [-119.341803, 50.489134], [-119.342453, 50.489427], [-119.342519, 50.489632], [-119.341727, 50.49017], [-119.341723, 50.490638], [-119.341927, 50.49076], [-119.343099, 50.490809], [-119.343916, 50.491106], [-119.343994, 50.491249], [-119.343823, 50.491514], [-119.343789, 50.491964], [-119.343963, 50.492059], [-119.344112, 50.492496], [-119.344336, 50.492717], [-119.345049, 50.492901], [-119.345047, 50.493153], [-119.344771, 50.493553], [-119.344316, 50.493761], [-119.344177, 50.493772], [-119.343909, 50.493778], [-119.343564, 50.493677], [-119.343139, 50.49364], [-119.342976, 50.493769], [-119.342971, 50.493923], [-119.34299, 50.494012], [-119.343494, 50.494218], [-119.343643, 50.494376], [-119.344091, 50.494611], [-119.344243, 50.494815], [-119.344297, 50.495093], [-119.344643, 50.495805], [-119.344895, 50.496043], [-119.34564, 50.496297], [-119.3457, 50.496377], [-119.345671, 50.496935], [-119.346561, 50.497511], [-119.34685, 50.49791], [-119.346819, 50.498424], [-119.346374, 50.498872], [-119.346072, 50.499607], [-119.345711, 50.499975], [-119.345702, 50.50065], [-119.345931, 50.500735], [-119.34617, 50.50073], [-119.346927, 50.500355], [-119.347309, 50.500626], [-119.348013, 50.500648], [-119.348203, 50.501328], [-119.348188, 50.501868], [-119.348842, 50.50198], [-119.349039, 50.502273], [-119.349244, 50.502413], [-119.349723, 50.502413], [-119.34993, 50.502318], [-119.35007, 50.502315], [-119.350191, 50.502457], [-119.350148, 50.502736], [-119.349294, 50.503141], [-119.349159, 50.503269], [-119.34919, 50.503611], [-119.349568, 50.5038], [-119.349714, 50.503951], [-119.349741, 50.504462], [-119.349706, 50.504635], [-119.349053, 50.505367], [-119.348897, 50.505667], [-119.348829, 50.506253], [-119.349079, 50.506482], [-119.349957, 50.506555], [-119.350501, 50.506714], [-119.350618, 50.506775], [-119.35057, 50.506973], [-119.350311, 50.507141], [-119.349921, 50.507265], [-119.349662, 50.507711], [-119.34922, 50.5079], [-119.348693, 50.507804], [-119.347956, 50.50743], [-119.347544, 50.507376], [-119.346953, 50.507398], [-119.346539, 50.507621], [-119.346517, 50.507712], [-119.346571, 50.508259], [-119.346921, 50.508469], [-119.347455, 50.509016], [-119.347802, 50.509161], [-119.348369, 50.509222], [-119.34873, 50.509413], [-119.348762, 50.509484], [-119.348744, 50.509664], [-119.3483, 50.510095], [-119.348282, 50.510599], [-119.348858, 50.511136], [-119.349389, 50.511891], [-119.349911, 50.512995], [-119.349879, 50.514084], [-119.349697, 50.514393], [-119.349353, 50.514563], [-119.349029, 50.514831], [-119.349048, 50.514988], [-119.348079, 50.515016], [-119.308124, 50.514571], [-119.308474, 50.528602], [-119.289783, 50.528421], [-119.244132, 50.528107], [-119.240451, 50.528165], [-119.230916, 50.528145], [-119.218675, 50.528397], [-119.196907, 50.527887], [-119.183378, 50.527813], [-119.183225, 50.533302], [-119.183562, 50.543864], [-119.182346, 50.561383], [-119.182173, 50.571044], [-119.182296, 50.572344], [-119.182448, 50.578275], [-119.18204, 50.591287], [-119.181918, 50.597996], [-119.181667, 50.603911], [-119.181743, 50.608882], [-119.181983, 50.614927], [-119.181517, 50.61644], [-119.181729, 50.616877], [-119.181748, 50.61937], [-119.181556, 50.61968], [-119.181385, 50.634213], [-119.181125, 50.640894], [-119.181134, 50.649472], [-119.180834, 50.664029], [-119.185329, 50.663936], [-119.186595, 50.663955], [-119.207839, 50.663384], [-119.208641, 50.663482], [-119.21436, 50.663462], [-119.214656, 50.663503], [-119.215148, 50.663334], [-119.216388, 50.663493], [-119.217133, 50.663506], [-119.226131, 50.663531], [-119.230917, 50.66349], [-119.231002, 50.663558], [-119.233156, 50.663528], [-119.249238, 50.663696], [-119.249371, 50.652459], [-119.249402, 50.633987], [-119.387895, 50.634296], [-119.387908, 50.641549], [-119.387793, 50.643015], [-119.387944, 50.64889], [-119.387949, 50.681205], [-119.387255, 50.725989], [-119.397587, 50.726193], [-119.408433, 50.723918], [-119.413692, 50.734376], [-119.414817, 50.742592], [-119.422813, 50.74537], [-119.436808, 50.744673], [-119.440127, 50.734952], [-119.442277, 50.733577], [-119.442442, 50.733592], [-119.44301, 50.733328], [-119.443335, 50.733313], [-119.444109, 50.733458], [-119.444445, 50.733388], [-119.444894, 50.73301], [-119.445856, 50.732693], [-119.446439, 50.732177], [-119.451452, 50.729341], [-119.454408, 50.727577], [-119.461347, 50.724492], [-119.4686, 50.721837], [-119.475471, 50.719144], [-119.482616, 50.718103]]]]}, "properties": {"name": "Columbia Shuswap D", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Columbia Shuswap D", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939039", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.645772, 51.300865], [-118.658962, 51.304065], [-118.676274, 51.303751], [-118.682816, 51.310523], [-118.689732, 51.311288], [-118.706949, 51.305423], [-118.717336, 51.293676], [-118.7294, 51.287558], [-118.725613, 51.282717], [-118.718359, 51.279288], [-118.718965, 51.273833], [-118.699721, 51.258708], [-118.699718, 51.256222], [-118.710516, 51.245615], [-118.706337, 51.237106], [-118.715864, 51.224743], [-118.731842, 51.219499], [-118.73694, 51.216184], [-118.724385, 51.189636], [-118.717684, 51.169527], [-118.720475, 51.153515], [-118.724375, 51.148346], [-118.733424, 51.147716], [-118.740792, 51.144202], [-118.745434, 51.13954], [-118.745184, 51.136019], [-118.739539, 51.1266], [-118.744993, 51.126261], [-118.750348, 51.122595], [-118.752952, 51.115633], [-118.766907, 51.113374], [-118.772595, 51.111768], [-118.769702, 51.105643], [-118.773298, 51.10271], [-118.771355, 51.096316], [-118.766676, 51.091415], [-118.772024, 51.087748], [-118.767925, 51.081007], [-118.760827, 51.077512], [-118.758141, 51.07061], [-118.764584, 51.064239], [-118.796076, 51.063728], [-118.809471, 51.060177], [-118.818125, 51.057192], [-118.824641, 51.054839], [-118.827504, 51.049377], [-118.827109, 51.046809], [-118.837068, 51.045883], [-118.943028, 51.035416], [-118.953243, 51.035137], [-118.953932, 51.034999], [-118.954022, 51.034676], [-118.967845, 51.030771], [-118.975677, 50.999969], [-118.992823, 50.999995], [-118.995302, 50.993728], [-118.997528, 50.987768], [-119.003269, 50.976507], [-119.017452, 50.953978], [-119.021065, 50.94882], [-119.026507, 50.943564], [-119.032563, 50.93916], [-119.036117, 50.936936], [-119.047718, 50.931191], [-119.053577, 50.927272], [-119.055724, 50.925044], [-119.058466, 50.921494], [-119.06009, 50.911954], [-119.060629, 50.893511], [-119.059723, 50.877454], [-119.058609, 50.864722], [-119.054774, 50.845354], [-119.051267, 50.833473], [-119.048125, 50.825259], [-119.069921, 50.813573], [-119.076097, 50.811058], [-119.088744, 50.807451], [-119.101521, 50.804908], [-119.117761, 50.802028], [-119.131562, 50.798371], [-119.148237, 50.794345], [-119.158149, 50.79135], [-119.170656, 50.787137], [-119.176081, 50.784516], [-119.184386, 50.779552], [-119.203971, 50.76817], [-119.201389, 50.766011], [-119.186444, 50.765858], [-119.18081, 50.765879], [-119.180846, 50.765851], [-119.178597, 50.76592], [-119.178106, 50.75445], [-119.178016, 50.750094], [-119.051075, 50.749993], [-119.038211, 50.750039], [-118.999706, 50.750006], [-118.883044, 50.750423], [-118.878833, 50.756066], [-118.877821, 50.758954], [-118.872345, 50.759547], [-118.868807, 50.758889], [-118.863854, 50.757242], [-118.858025, 50.757342], [-118.854953, 50.759322], [-118.855623, 50.764915], [-118.853912, 50.766489], [-118.850236, 50.767291], [-118.841281, 50.76698], [-118.837636, 50.767346], [-118.832184, 50.767736], [-118.829034, 50.769895], [-118.828812, 50.772857], [-118.830724, 50.776817], [-118.828428, 50.779184], [-118.824971, 50.782228], [-118.81669, 50.784429], [-118.812662, 50.786676], [-118.811543, 50.79003], [-118.810815, 50.794582], [-118.808691, 50.797193], [-118.802824, 50.798871], [-118.795102, 50.802576], [-118.788845, 50.809001], [-118.784417, 50.815351], [-118.783997, 50.819059], [-118.781638, 50.823023], [-118.778134, 50.826043], [-118.772086, 50.827473], [-118.765605, 50.826637], [-118.759049, 50.82403], [-118.752922, 50.82369], [-118.739336, 50.825777], [-118.732993, 50.825795], [-118.726088, 50.82269], [-118.721927, 50.818802], [-118.718005, 50.814251], [-118.715101, 50.813139], [-118.711381, 50.8142], [-118.705992, 50.8129], [-118.699381, 50.811202], [-118.684537, 50.814163], [-118.674847, 50.815431], [-118.667678, 50.819264], [-118.664455, 50.823019], [-118.663584, 50.832081], [-118.666871, 50.836377], [-118.670323, 50.83958], [-118.671289, 50.843631], [-118.668168, 50.846902], [-118.662465, 50.84986], [-118.657497, 50.85052], [-118.651617, 50.853229], [-118.639261, 50.848143], [-118.633745, 50.848361], [-118.630794, 50.850537], [-118.625853, 50.853575], [-118.620256, 50.857692], [-118.618552, 50.859964], [-118.617393, 50.862677], [-118.619946, 50.863296], [-118.621778, 50.863224], [-118.630792, 50.860667], [-118.636022, 50.860078], [-118.639426, 50.860903], [-118.639471, 50.862978], [-118.63803, 50.865622], [-118.634751, 50.868339], [-118.625828, 50.874441], [-118.622614, 50.878929], [-118.619481, 50.885735], [-118.60961, 50.894113], [-118.607733, 50.902612], [-118.613883, 50.918557], [-118.612785, 50.924619], [-118.607371, 50.924623], [-118.601851, 50.926198], [-118.593961, 50.927104], [-118.589846, 50.923659], [-118.584452, 50.923405], [-118.579239, 50.926088], [-118.575735, 50.929181], [-118.55583, 50.931192], [-118.54698, 50.932672], [-118.533775, 50.934571], [-118.529098, 50.930749], [-118.516032, 50.924374], [-118.502504, 50.91687], [-118.495623, 50.912887], [-118.486426, 50.906743], [-118.479149, 50.901209], [-118.470641, 50.894556], [-118.449784, 50.903425], [-118.430491, 50.897765], [-118.418346, 50.887676], [-118.411599, 50.88267], [-118.406409, 50.881943], [-118.396243, 50.882813], [-118.386971, 50.883286], [-118.37654, 50.886456], [-118.370168, 50.888062], [-118.362586, 50.885232], [-118.357279, 50.88162], [-118.351824, 50.882526], [-118.347152, 50.885889], [-118.337912, 50.883366], [-118.33164, 50.881068], [-118.323239, 50.882114], [-118.320573, 50.885662], [-118.314432, 50.888366], [-118.314639, 50.888419], [-118.313888, 50.891781], [-118.314551, 50.896032], [-118.318684, 50.899413], [-118.319576, 50.901333], [-118.318604, 50.903278], [-118.31445, 50.904915], [-118.315037, 50.907511], [-118.314908, 50.908434], [-118.316971, 50.912887], [-118.319652, 50.914554], [-118.321771, 50.917315], [-118.323496, 50.918411], [-118.323862, 50.919591], [-118.323446, 50.922762], [-118.32504, 50.924782], [-118.32579, 50.926112], [-118.325988, 50.927627], [-118.325478, 50.928798], [-118.320694, 50.930559], [-118.31968, 50.931231], [-118.321127, 50.932299], [-118.323799, 50.932777], [-118.325282, 50.933786], [-118.32768, 50.937336], [-118.32975, 50.939409], [-118.330265, 50.940148], [-118.329389, 50.942697], [-118.329627, 50.94371], [-118.331149, 50.945444], [-118.332885, 50.947708], [-118.33385, 50.94842], [-118.335373, 50.948926], [-118.338404, 50.948464], [-118.339705, 50.94854], [-118.340274, 50.949019], [-118.339998, 50.950862], [-118.34119, 50.952345], [-118.343457, 50.953134], [-118.343577, 50.953133], [-118.353356, 50.963356], [-118.353726, 50.9745], [-118.351398, 50.97995], [-118.354589, 50.987372], [-118.352571, 50.99412], [-118.345936, 50.998785], [-118.350156, 51.00315], [-118.354288, 51.004273], [-118.360933, 51.00872], [-118.370324, 51.008908], [-118.37972, 51.006855], [-118.38911, 51.007042], [-118.393514, 51.003191], [-118.395535, 51.002673], [-118.399365, 51.000265], [-118.403556, 50.998149], [-118.40617, 50.997662], [-118.408299, 50.99815], [-118.410091, 51.000064], [-118.412154, 51.001803], [-118.415778, 51.003549], [-118.419124, 51.00478], [-118.421361, 51.006939], [-118.421228, 51.010131], [-118.422857, 51.011986], [-118.425707, 51.016246], [-118.422749, 51.02022], [-118.420257, 51.02206], [-118.421703, 51.024328], [-118.42544, 51.02834], [-118.429995, 51.03136], [-118.428736, 51.038391], [-118.430963, 51.041442], [-118.434632, 51.045569], [-118.435446, 51.048014], [-118.43391, 51.050351], [-118.434736, 51.055178], [-118.42332, 51.055109], [-118.422896, 51.056658], [-118.420247, 51.058923], [-118.42037, 51.061465], [-118.421143, 51.062776], [-118.425675, 51.064467], [-118.427799, 51.065973], [-118.429036, 51.067727], [-118.4304, 51.070305], [-118.432228, 51.072466], [-118.437032, 51.070448], [-118.439412, 51.070162], [-118.44148, 51.072447], [-118.444759, 51.075157], [-118.447942, 51.075793], [-118.449378, 51.076536], [-118.452913, 51.076595], [-118.45718, 51.07597], [-118.459258, 51.076008], [-118.460976, 51.07801], [-118.462764, 51.079036], [-118.462678, 51.087079], [-118.463523, 51.089134], [-118.46527, 51.090745], [-118.467383, 51.091586], [-118.471286, 51.090872], [-118.47254, 51.09243], [-118.475837, 51.097522], [-118.481306, 51.101816], [-118.480617, 51.108787], [-118.4756, 51.112861], [-118.47603, 51.114221], [-118.477751, 51.117081], [-118.478089, 51.119278], [-118.476313, 51.122352], [-118.474523, 51.124761], [-118.474326, 51.12663], [-118.476399, 51.128056], [-118.479008, 51.128948], [-118.48269, 51.133075], [-118.485892, 51.134375], [-118.488657, 51.134842], [-118.490434, 51.136063], [-118.490788, 51.138065], [-118.490918, 51.143186], [-118.491583, 51.146915], [-118.48405, 51.151308], [-118.478914, 51.151782], [-118.475739, 51.152666], [-118.473115, 51.154543], [-118.471986, 51.156386], [-118.474153, 51.159553], [-118.474379, 51.161591], [-118.473038, 51.164638], [-118.469439, 51.170512], [-118.479307, 51.173481], [-118.484531, 51.175267], [-118.496293, 51.176175], [-118.504484, 51.179136], [-118.510512, 51.178399], [-118.52209, 51.178399], [-118.535093, 51.177615], [-118.538765, 51.178495], [-118.548509, 51.182882], [-118.552284, 51.184977], [-118.556557, 51.188844], [-118.561308, 51.191239], [-118.565935, 51.194529], [-118.567554, 51.198089], [-118.568059, 51.202439], [-118.557607, 51.204017], [-118.551704, 51.205569], [-118.547172, 51.20712], [-118.54486, 51.209868], [-118.544246, 51.214149], [-118.546797, 51.217735], [-118.550703, 51.220655], [-118.566706, 51.230173], [-118.569019, 51.233635], [-118.574732, 51.239299], [-118.575077, 51.241496], [-118.573798, 51.244626], [-118.575372, 51.246192], [-118.576844, 51.251898], [-118.573573, 51.255871], [-118.569549, 51.25915], [-118.569229, 51.259155], [-118.558308, 51.26549], [-118.556228, 51.26889], [-118.555757, 51.27184], [-118.551081, 51.274755], [-118.549719, 51.279163], [-118.551883, 51.287621], [-118.551383, 51.290983], [-118.554792, 51.294863], [-118.560143, 51.299208], [-118.564053, 51.299724], [-118.568975, 51.298947], [-118.572823, 51.298471], [-118.579177, 51.297897], [-118.585775, 51.299472], [-118.590919, 51.303068], [-118.594784, 51.30803], [-118.600011, 51.310089], [-118.607603, 51.306995], [-118.618104, 51.304789], [-118.628353, 51.301022], [-118.645772, 51.300865]], [[-119.01176, 50.84825], [-119.015466, 50.848445], [-119.015199, 50.854497], [-118.996795, 50.854283], [-118.997135, 50.852857], [-118.979012, 50.852566], [-118.973043, 50.852521], [-118.968254, 50.852691], [-118.963129, 50.852535], [-118.956659, 50.852564], [-118.957043, 50.8506], [-118.955437, 50.850136], [-118.954479, 50.849576], [-118.952387, 50.847676], [-118.951821, 50.847884], [-118.951487, 50.84851], [-118.951736, 50.849093], [-118.951202, 50.84964], [-118.950258, 50.849661], [-118.949448, 50.849785], [-118.948981, 50.850039], [-118.948853, 50.850324], [-118.949042, 50.850577], [-118.949407, 50.850751], [-118.951123, 50.851064], [-118.952086, 50.851353], [-118.953138, 50.85176], [-118.954037, 50.852227], [-118.954618, 50.852878], [-118.954943, 50.853559], [-118.954961, 50.853901], [-118.95429, 50.854041], [-118.953327, 50.85398], [-118.951262, 50.853372], [-118.950349, 50.853223], [-118.949479, 50.853487], [-118.948519, 50.854086], [-118.947752, 50.854835], [-118.944619, 50.853692], [-118.943661, 50.853271], [-118.943408, 50.852363], [-118.943471, 50.849272], [-118.943571, 50.848863], [-118.943397, 50.847629], [-118.941776, 50.841929], [-118.946047, 50.841903], [-118.950869, 50.837996], [-118.950618, 50.834512], [-118.956131, 50.834114], [-118.9561, 50.83207], [-118.961808, 50.831411], [-118.962246, 50.829188], [-118.962004, 50.822846], [-118.968549, 50.82301], [-118.968494, 50.815097], [-118.965957, 50.815182], [-118.966079, 50.806554], [-118.968793, 50.80651], [-118.96869, 50.801969], [-118.974465, 50.801829], [-118.974825, 50.802695], [-118.975315, 50.804667], [-118.978121, 50.8056], [-118.981643, 50.807144], [-118.981694, 50.807232], [-118.981439, 50.808966], [-118.982313, 50.8158], [-118.986622, 50.822126], [-118.987471, 50.82129], [-118.991491, 50.82217], [-118.994569, 50.821759], [-118.997351, 50.821937], [-119.0073, 50.823251], [-119.006878, 50.832984], [-119.008309, 50.835328], [-119.0, 50.837338], [-119.0, 50.83765], [-119.001636, 50.840698], [-119.00348, 50.840888], [-119.004824, 50.84027], [-119.005951, 50.839121], [-119.007167, 50.838437], [-119.008515, 50.838049], [-119.010383, 50.83782], [-119.011642, 50.838101], [-119.01314, 50.839111], [-119.013594, 50.839574], [-119.015331, 50.842091], [-119.016807, 50.843013], [-119.016571, 50.845604], [-119.015741, 50.846639], [-119.012826, 50.847545], [-119.012099, 50.847555], [-119.01176, 50.84825]]]]}, "properties": {"name": "Columbia Shuswap E", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Columbia Shuswap E", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939043", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.96107, 51.701515], [-118.96834, 51.696018], [-118.979106, 51.692283], [-119.009948, 51.687259], [-119.010711, 51.683463], [-118.99887, 51.679372], [-118.995517, 51.675087], [-118.994496, 51.669455], [-118.975711, 51.659479], [-118.970938, 51.652079], [-118.977996, 51.644069], [-118.977782, 51.644065], [-118.981397, 51.640752], [-118.983184, 51.635232], [-118.975383, 51.62726], [-118.968243, 51.619246], [-118.960567, 51.60952], [-118.957768, 51.601141], [-118.961968, 51.596949], [-118.972935, 51.595447], [-118.969364, 51.581955], [-118.966138, 51.574958], [-118.971067, 51.566508], [-118.981241, 51.553545], [-118.983695, 51.542357], [-118.970822, 51.533795], [-118.964786, 51.529113], [-118.955599, 51.517068], [-118.950202, 51.507397], [-118.962582, 51.499429], [-118.964711, 51.49064], [-118.952227, 51.471494], [-118.953461, 51.461309], [-118.961175, 51.452943], [-118.9672, 51.449219], [-118.974725, 51.44851], [-118.983536, 51.441982], [-119.000301, 51.430601], [-119.029034, 51.4229], [-119.040042, 51.413726], [-119.050888, 51.400862], [-119.058795, 51.39501], [-119.076165, 51.389391], [-119.083944, 51.392182], [-119.08879, 51.395668], [-119.091535, 51.395025], [-119.098258, 51.386923], [-119.108344, 51.376606], [-119.109035, 51.376164], [-119.133594, 51.365623], [-119.147029, 51.364742], [-119.154322, 51.358661], [-119.187056, 51.354494], [-119.192432, 51.317604], [-119.205354, 51.31798], [-119.205043, 51.311258], [-119.220994, 51.311123], [-119.222749, 51.293875], [-119.224527, 51.279895], [-119.23723, 51.268108], [-119.256225, 51.263774], [-119.274989, 51.257224], [-119.288335, 51.249217], [-119.288479, 51.249217], [-119.294002, 51.246342], [-119.302847, 51.246291], [-119.312604, 51.247899], [-119.318276, 51.251456], [-119.324165, 51.253218], [-119.336453, 51.254094], [-119.350628, 51.254616], [-119.363402, 51.255733], [-119.370889, 51.255492], [-119.376236, 51.253177], [-119.375823, 51.249404], [-119.375978, 51.249404], [-119.386672, 51.241267], [-119.408711, 51.231627], [-119.425383, 51.228236], [-119.440702, 51.221771], [-119.445493, 51.214044], [-119.444026, 51.202814], [-119.439449, 51.192634], [-119.439664, 51.182282], [-119.471462, 51.179384], [-119.472005, 51.179138], [-119.47225, 51.179498], [-119.473999, 51.179096], [-119.474783, 51.1788], [-119.475804, 51.178158], [-119.475984, 51.177334], [-119.483941, 51.173727], [-119.490638, 51.167032], [-119.49924, 51.157337], [-119.509461, 51.143205], [-119.510331, 51.134178], [-119.510235, 51.134084], [-119.511537, 51.131351], [-119.510135, 51.128022], [-119.508663, 51.118572], [-119.513996, 51.110872], [-119.525706, 51.106645], [-119.523913, 51.100494], [-119.524515, 51.092707], [-119.517339, 51.089599], [-119.516021, 51.086147], [-119.514287, 51.079097], [-119.510888, 51.072031], [-119.507139, 51.06665], [-119.509377, 51.054204], [-119.51492, 51.043105], [-119.519354, 51.036363], [-119.521699, 51.032645], [-119.523156, 51.031219], [-119.527515, 51.027427], [-119.534243, 51.022511], [-119.539465, 51.018363], [-119.543699, 51.014701], [-119.54808, 51.011029], [-119.538545, 51.001657], [-119.537988, 51.000905], [-119.537742, 50.999923], [-119.53761, 50.988318], [-119.536926, 50.983593], [-119.539858, 50.983599], [-119.572178, 50.984188], [-119.589794, 50.98425], [-119.599603, 50.984678], [-119.605994, 50.984781], [-119.613933, 50.984666], [-119.622973, 50.984355], [-119.652401, 50.983761], [-119.704539, 50.983703], [-119.704207, 50.983324], [-119.703866, 50.983089], [-119.703488, 50.982964], [-119.702642, 50.982884], [-119.701618, 50.982404], [-119.700932, 50.982159], [-119.70055, 50.981943], [-119.700049, 50.98191], [-119.69786, 50.982258], [-119.697192, 50.982255], [-119.696513, 50.982118], [-119.695137, 50.981726], [-119.694143, 50.981309], [-119.693348, 50.981111], [-119.692573, 50.980509], [-119.691395, 50.979106], [-119.691125, 50.978895], [-119.690531, 50.978694], [-119.68955, 50.978518], [-119.689158, 50.978384], [-119.687871, 50.977568], [-119.687023, 50.977182], [-119.686563, 50.976618], [-119.686526, 50.976222], [-119.686622, 50.975896], [-119.686987, 50.975312], [-119.68724, 50.974516], [-119.687204, 50.973148], [-119.687057, 50.972846], [-119.686424, 50.972231], [-119.685975, 50.971603], [-119.685234, 50.97162], [-119.684755, 50.971442], [-119.684252, 50.971364], [-119.683642, 50.971189], [-119.682057, 50.971117], [-119.681406, 50.970917], [-119.680977, 50.970647], [-119.680673, 50.970573], [-119.677812, 50.970603], [-119.675817, 50.970118], [-119.675419, 50.969894], [-119.674899, 50.969249], [-119.674631, 50.969039], [-119.67425, 50.967879], [-119.673631, 50.967263], [-119.673554, 50.966932], [-119.673382, 50.966657], [-119.672124, 50.965849], [-119.672096, 50.96558], [-119.672187, 50.965191], [-119.672127, 50.964886], [-119.671344, 50.964149], [-119.671247, 50.963927], [-119.671194, 50.963253], [-119.670439, 50.962542], [-119.67014, 50.962054], [-119.669988, 50.961625], [-119.669649, 50.961156], [-119.669425, 50.960245], [-119.669292, 50.958664], [-119.669075, 50.958271], [-119.668163, 50.958469], [-119.634562, 50.967658], [-119.61954, 50.971363], [-119.615904, 50.97237], [-119.606131, 50.973221], [-119.601859, 50.973323], [-119.602199, 50.972943], [-119.602315, 50.97223], [-119.602298, 50.972131], [-119.601814, 50.971656], [-119.601734, 50.971496], [-119.601927, 50.971375], [-119.602733, 50.971267], [-119.602924, 50.9711], [-119.60303, 50.969982], [-119.603135, 50.9698], [-119.603528, 50.969441], [-119.603617, 50.969232], [-119.603558, 50.968693], [-119.603365, 50.968293], [-119.603432, 50.967986], [-119.60347, 50.967896], [-119.603961, 50.967749], [-119.604042, 50.967675], [-119.604046, 50.967487], [-119.603862, 50.967248], [-119.604154, 50.966882], [-119.604241, 50.966655], [-119.604254, 50.965881], [-119.604189, 50.965703], [-119.603737, 50.965299], [-119.603772, 50.965136], [-119.6043, 50.964674], [-119.605466, 50.964119], [-119.605591, 50.96381], [-119.606509, 50.962881], [-119.6068, 50.962739], [-119.607518, 50.962579], [-119.608041, 50.962289], [-119.608617, 50.961376], [-119.608946, 50.96038], [-119.609053, 50.960269], [-119.609544, 50.960141], [-119.610214, 50.960144], [-119.610589, 50.959974], [-119.611053, 50.959883], [-119.611234, 50.959519], [-119.611771, 50.959201], [-119.61178, 50.95858], [-119.611987, 50.958242], [-119.612997, 50.957969], [-119.613376, 50.957592], [-119.614386, 50.957325], [-119.614448, 50.95718], [-119.614355, 50.957039], [-119.614422, 50.956965], [-119.615018, 50.956664], [-119.615223, 50.956012], [-119.615152, 50.955762], [-119.6152, 50.955572], [-119.615505, 50.955448], [-119.616504, 50.955471], [-119.616718, 50.95525], [-119.61703, 50.95472], [-119.617002, 50.953966], [-119.617071, 50.953893], [-119.61745, 50.953822], [-119.61774, 50.953652], [-119.618083, 50.952916], [-119.618244, 50.952734], [-119.619057, 50.952526], [-119.619504, 50.951868], [-119.620176, 50.951637], [-119.62067, 50.951086], [-119.620875, 50.950677], [-119.621325, 50.950317], [-119.621776, 50.950468], [-119.62206, 50.950444], [-119.622196, 50.950341], [-119.622317, 50.949971], [-119.622477, 50.949787], [-119.623067, 50.949899], [-119.623497, 50.9497], [-119.623748, 50.949354], [-119.623874, 50.948801], [-119.624201, 50.948525], [-119.624646, 50.948344], [-119.625365, 50.948454], [-119.62562, 50.948421], [-119.626695, 50.948072], [-119.62736, 50.947752], [-119.627357, 50.947437], [-119.628194, 50.947131], [-119.628211, 50.946941], [-119.628077, 50.9468], [-119.628279, 50.946625], [-119.628984, 50.946501], [-119.630309, 50.945734], [-119.631141, 50.945346], [-119.631891, 50.945023], [-119.632536, 50.945108], [-119.632954, 50.944955], [-119.633733, 50.944865], [-119.63486, 50.944156], [-119.635085, 50.944097], [-119.635415, 50.944143], [-119.635592, 50.944032], [-119.635653, 50.943841], [-119.635338, 50.943552], [-119.635032, 50.943415], [-119.635094, 50.943251], [-119.63534, 50.943083], [-119.635467, 50.943063], [-119.63569, 50.943211], [-119.636062, 50.943266], [-119.637947, 50.943115], [-119.639671, 50.943139], [-119.639926, 50.943097], [-119.64079, 50.942781], [-119.642167, 50.942704], [-119.642524, 50.942472], [-119.642831, 50.942096], [-119.643192, 50.941962], [-119.643807, 50.942002], [-119.644173, 50.941931], [-119.644519, 50.941752], [-119.645158, 50.941989], [-119.645315, 50.941995], [-119.645427, 50.941947], [-119.645345, 50.94176], [-119.64541, 50.94166], [-119.645937, 50.941414], [-119.646907, 50.94167], [-119.647431, 50.941388], [-119.64784, 50.941299], [-119.648841, 50.941645], [-119.649038, 50.941595], [-119.649512, 50.94117], [-119.650239, 50.940965], [-119.651296, 50.941256], [-119.65154, 50.941269], [-119.651917, 50.941152], [-119.652135, 50.940967], [-119.652093, 50.940762], [-119.651724, 50.940518], [-119.651585, 50.940332], [-119.651577, 50.940198], [-119.651712, 50.940078], [-119.65195, 50.939991], [-119.652333, 50.939956], [-119.653317, 50.939996], [-119.653785, 50.939716], [-119.654554, 50.939708], [-119.654832, 50.939602], [-119.654939, 50.939491], [-119.654879, 50.939197], [-119.655162, 50.93891], [-119.655754, 50.93905], [-119.656024, 50.939063], [-119.656024, 50.938558], [-119.655793, 50.937475], [-119.655638, 50.936022], [-119.655465, 50.935459], [-119.6553, 50.935346], [-119.654569, 50.935246], [-119.653802, 50.935281], [-119.653681, 50.93514], [-119.653365, 50.935083], [-119.651478, 50.935226], [-119.649941, 50.935207], [-119.64882, 50.934998], [-119.648348, 50.934722], [-119.648132, 50.934438], [-119.64804, 50.934072], [-119.648929, 50.931416], [-119.648939, 50.93111], [-119.648782, 50.930826], [-119.647703, 50.929879], [-119.647471, 50.929804], [-119.646884, 50.929754], [-119.645695, 50.929385], [-119.645182, 50.929126], [-119.643837, 50.928222], [-119.643231, 50.927579], [-119.642983, 50.927206], [-119.64233, 50.925708], [-119.664359, 50.92539], [-119.664201, 50.867725], [-119.663055, 50.868175], [-119.65462, 50.873389], [-119.634245, 50.88621], [-119.609074, 50.901911], [-119.601458, 50.902733], [-119.599453, 50.902894], [-119.598818, 50.902681], [-119.597609, 50.902402], [-119.59685, 50.902338], [-119.596014, 50.90214], [-119.594645, 50.902063], [-119.593524, 50.902106], [-119.593032, 50.902198], [-119.592036, 50.902184], [-119.591356, 50.902244], [-119.589012, 50.902045], [-119.588131, 50.901812], [-119.587391, 50.901298], [-119.587224, 50.901103], [-119.586233, 50.900919], [-119.585589, 50.900861], [-119.58314, 50.900286], [-119.582343, 50.900267], [-119.581236, 50.900346], [-119.579928, 50.900609], [-119.579331, 50.900865], [-119.578863, 50.900892], [-119.578011, 50.900669], [-119.577252, 50.900309], [-119.577104, 50.900222], [-119.576935, 50.899974], [-119.576355, 50.899528], [-119.576151, 50.898911], [-119.575671, 50.898446], [-119.575422, 50.897551], [-119.575032, 50.897191], [-119.572887, 50.896483], [-119.57228, 50.896532], [-119.571763, 50.896453], [-119.571266, 50.896483], [-119.571064, 50.896425], [-119.570828, 50.896258], [-119.570411, 50.895943], [-119.570207, 50.89557], [-119.570042, 50.895421], [-119.569915, 50.895181], [-119.569932, 50.894973], [-119.570037, 50.894837], [-119.569711, 50.894592], [-119.569653, 50.894305], [-119.569449, 50.893959], [-119.569003, 50.893609], [-119.568071, 50.893216], [-119.567193, 50.893028], [-119.566138, 50.892988], [-119.565701, 50.893061], [-119.565401, 50.893266], [-119.565116, 50.893776], [-119.564985, 50.894498], [-119.56456, 50.894543], [-119.564074, 50.894482], [-119.563927, 50.894414], [-119.563427, 50.89384], [-119.562922, 50.893464], [-119.562608, 50.892679], [-119.562132, 50.892537], [-119.561533, 50.892497], [-119.561264, 50.89252], [-119.560984, 50.892616], [-119.560682, 50.892784], [-119.560561, 50.893165], [-119.560141, 50.893579], [-119.55985, 50.89372], [-119.559514, 50.893791], [-119.559143, 50.893763], [-119.55755, 50.893249], [-119.556555, 50.893011], [-119.556245, 50.893079], [-119.555646, 50.893048], [-119.554938, 50.893091], [-119.554036, 50.893227], [-119.553322, 50.893441], [-119.552357, 50.89321], [-119.551513, 50.893121], [-119.551279, 50.893018], [-119.551143, 50.892858], [-119.551182, 50.892561], [-119.551399, 50.892359], [-119.551107, 50.891699], [-119.551329, 50.891316], [-119.551532, 50.891141], [-119.552281, 50.890783], [-119.5538, 50.890499], [-119.554277, 50.890353], [-119.554461, 50.890358], [-119.555104, 50.890677], [-119.555332, 50.890681], [-119.555297, 50.890537], [-119.555039, 50.890246], [-119.555076, 50.890147], [-119.556081, 50.890322], [-119.556105, 50.890249], [-119.555705, 50.88998], [-119.555644, 50.88989], [-119.555726, 50.889826], [-119.556433, 50.889739], [-119.55745, 50.889375], [-119.557822, 50.888378], [-119.558507, 50.887868], [-119.55892, 50.887364], [-119.560338, 50.883941], [-119.561618, 50.881864], [-119.561801, 50.88131], [-119.562203, 50.880861], [-119.562557, 50.8806], [-119.562986, 50.880375], [-119.56479, 50.879833], [-119.565358, 50.879532], [-119.565916, 50.879358], [-119.567868, 50.878407], [-119.568261, 50.878334], [-119.568917, 50.878105], [-119.570546, 50.877997], [-119.571214, 50.877721], [-119.572284, 50.877527], [-119.57298, 50.877259], [-119.574035, 50.876544], [-119.574365, 50.876087], [-119.574956, 50.875705], [-119.575235, 50.875375], [-119.575872, 50.875081], [-119.576128, 50.874815], [-119.577348, 50.873988], [-119.578678, 50.873365], [-119.57983, 50.873088], [-119.580617, 50.872441], [-119.582264, 50.871361], [-119.583661, 50.870674], [-119.583976, 50.870433], [-119.584284, 50.870353], [-119.584694, 50.870065], [-119.585592, 50.869595], [-119.586937, 50.869], [-119.588087, 50.868704], [-119.588797, 50.868671], [-119.590051, 50.868742], [-119.590418, 50.868688], [-119.590877, 50.868516], [-119.591549, 50.868583], [-119.591638, 50.868653], [-119.591026, 50.8689], [-119.591126, 50.868906], [-119.592298, 50.868782], [-119.594914, 50.868778], [-119.597524, 50.868674], [-119.600587, 50.868309], [-119.602571, 50.867932], [-119.603563, 50.867623], [-119.604125, 50.867241], [-119.60443, 50.866874], [-119.60498, 50.866521], [-119.605396, 50.86634], [-119.60411, 50.864696], [-119.603908, 50.86489], [-119.603781, 50.86491], [-119.603155, 50.864645], [-119.603059, 50.864692], [-119.603095, 50.864853], [-119.602687, 50.864934], [-119.601994, 50.865237], [-119.600804, 50.865579], [-119.600306, 50.865789], [-119.599699, 50.865855], [-119.599332, 50.866187], [-119.598662, 50.866418], [-119.598377, 50.866632], [-119.597313, 50.866934], [-119.596311, 50.867065], [-119.595793, 50.867201], [-119.595041, 50.867498], [-119.595007, 50.867633], [-119.594883, 50.867725], [-119.594713, 50.867711], [-119.59413, 50.867473], [-119.593658, 50.867411], [-119.593078, 50.867478], [-119.59255, 50.867426], [-119.591615, 50.867483], [-119.590711, 50.867332], [-119.589201, 50.86724], [-119.58859, 50.867245], [-119.587845, 50.867415], [-119.58668, 50.867916], [-119.583517, 50.869615], [-119.582074, 50.869971], [-119.578283, 50.871619], [-119.577556, 50.872058], [-119.576655, 50.872761], [-119.576058, 50.873009], [-119.574652, 50.873301], [-119.574105, 50.873187], [-119.574371, 50.87246], [-119.574374, 50.866939], [-119.567113, 50.867104], [-119.55066, 50.867187], [-119.550481, 50.881654], [-119.555123, 50.881718], [-119.55693, 50.883463], [-119.541648, 50.891076], [-119.536244, 50.89345], [-119.531009, 50.894925], [-119.526314, 50.89591], [-119.517888, 50.897225], [-119.51177, 50.897474], [-119.504045, 50.89708], [-119.483407, 50.894899], [-119.467805, 50.893648], [-119.456523, 50.892631], [-119.45137, 50.89254], [-119.446111, 50.892884], [-119.440682, 50.893648], [-119.435223, 50.89459], [-119.429814, 50.895745], [-119.421788, 50.897785], [-119.414329, 50.900377], [-119.409445, 50.901876], [-119.405134, 50.903611], [-119.401789, 50.905806], [-119.398828, 50.908724], [-119.39486, 50.913145], [-119.39092, 50.918441], [-119.385959, 50.924242], [-119.382498, 50.9277], [-119.379057, 50.92986], [-119.375236, 50.931375], [-119.369377, 50.932742], [-119.362181, 50.933892], [-119.329842, 50.938558], [-119.290579, 50.94444], [-119.247526, 50.948075], [-119.221702, 50.950549], [-119.180552, 50.953291], [-119.163855, 50.954876], [-119.153189, 50.956077], [-119.143778, 50.957991], [-119.137361, 50.959435], [-119.117976, 50.965001], [-119.10779, 50.968052], [-119.101038, 50.970224], [-119.094024, 50.972735], [-119.087209, 50.975678], [-119.080753, 50.978628], [-119.042604, 50.999878], [-119.03203, 50.999943], [-118.975677, 50.999969], [-118.967845, 51.030771], [-118.954022, 51.034676], [-118.953932, 51.034999], [-118.953243, 51.035137], [-118.943028, 51.035416], [-118.837068, 51.045883], [-118.827109, 51.046809], [-118.827504, 51.049377], [-118.824641, 51.054839], [-118.818125, 51.057192], [-118.809471, 51.060177], [-118.796076, 51.063728], [-118.764584, 51.064239], [-118.758141, 51.07061], [-118.760827, 51.077512], [-118.767925, 51.081007], [-118.772024, 51.087748], [-118.766676, 51.091415], [-118.771355, 51.096316], [-118.773298, 51.10271], [-118.769702, 51.105643], [-118.772595, 51.111768], [-118.766907, 51.113374], [-118.752952, 51.115633], [-118.750348, 51.122595], [-118.744993, 51.126261], [-118.739539, 51.1266], [-118.745184, 51.136019], [-118.745434, 51.13954], [-118.740792, 51.144202], [-118.733424, 51.147716], [-118.724375, 51.148346], [-118.720475, 51.153515], [-118.717684, 51.169527], [-118.724385, 51.189636], [-118.73694, 51.216184], [-118.731842, 51.219499], [-118.715864, 51.224743], [-118.706337, 51.237106], [-118.710516, 51.245615], [-118.699718, 51.256222], [-118.699721, 51.258708], [-118.718965, 51.273833], [-118.718359, 51.279288], [-118.725613, 51.282717], [-118.7294, 51.287558], [-118.717336, 51.293676], [-118.706949, 51.305423], [-118.689732, 51.311288], [-118.682816, 51.310523], [-118.676274, 51.303751], [-118.658962, 51.304065], [-118.645772, 51.300865], [-118.628353, 51.301022], [-118.618104, 51.304789], [-118.607603, 51.306995], [-118.600011, 51.310089], [-118.600164, 51.310149], [-118.600285, 51.318384], [-118.602204, 51.323293], [-118.606231, 51.326199], [-118.61151, 51.328149], [-118.614276, 51.330198], [-118.616062, 51.333127], [-118.611427, 51.339668], [-118.611953, 51.345774], [-118.614668, 51.356714], [-118.616563, 51.362973], [-118.615586, 51.364078], [-118.610164, 51.366218], [-118.603508, 51.368075], [-118.590672, 51.372013], [-118.588836, 51.375792], [-118.589102, 51.381625], [-118.582252, 51.387442], [-118.581545, 51.390086], [-118.586587, 51.393565], [-118.590001, 51.393842], [-118.594832, 51.396566], [-118.597872, 51.400399], [-118.605208, 51.404157], [-118.614837, 51.408193], [-118.616845, 51.409337], [-118.618121, 51.411581], [-118.616855, 51.413663], [-118.614511, 51.415661], [-118.610621, 51.418349], [-118.608995, 51.420783], [-118.608718, 51.422966], [-118.611439, 51.430499], [-118.611381, 51.433132], [-118.612799, 51.440265], [-118.614247, 51.441583], [-118.619479, 51.442357], [-118.623022, 51.443473], [-118.62831, 51.44404], [-118.630217, 51.444146], [-118.633196, 51.445611], [-118.633729, 51.446929], [-118.632033, 51.44798], [-118.63194, 51.451134], [-118.63069, 51.455952], [-118.630228, 51.459017], [-118.631178, 51.461847], [-118.632545, 51.463762], [-118.641793, 51.462463], [-118.645665, 51.462469], [-118.651456, 51.463023], [-118.654547, 51.461654], [-118.65733, 51.461134], [-118.661637, 51.459617], [-118.664139, 51.459558], [-118.669608, 51.459945], [-118.675227, 51.460896], [-118.679438, 51.462654], [-118.681465, 51.464065], [-118.685803, 51.468277], [-118.69053, 51.471039], [-118.696947, 51.473456], [-118.703947, 51.475264], [-118.706565, 51.477212], [-118.709398, 51.480313], [-118.713236, 51.484887], [-118.715385, 51.488882], [-118.714882, 51.490174], [-118.707052, 51.493784], [-118.703135, 51.496867], [-118.69928, 51.497761], [-118.694444, 51.498996], [-118.691586, 51.500567], [-118.691823, 51.502608], [-118.693174, 51.504209], [-118.695383, 51.505442], [-118.698887, 51.506633], [-118.702975, 51.507214], [-118.70931, 51.509082], [-118.713806, 51.510729], [-118.716805, 51.512635], [-118.719647, 51.515032], [-118.722961, 51.519084], [-118.72466, 51.521737], [-118.727805, 51.523986], [-118.73403, 51.525692], [-118.73898, 51.527755], [-118.742089, 51.528673], [-118.745517, 51.527908], [-118.74835, 51.526035], [-118.753107, 51.523435], [-118.75676, 51.522416], [-118.759486, 51.521528], [-118.764126, 51.520392], [-118.767078, 51.520524], [-118.768398, 51.521367], [-118.771553, 51.52604], [-118.772592, 51.528623], [-118.775464, 51.531906], [-118.777643, 51.533658], [-118.780808, 51.535644], [-118.783094, 51.536409], [-118.78543, 51.53512], [-118.792679, 51.525521], [-118.793731, 51.524717], [-118.79641, 51.523905], [-118.799031, 51.524001], [-118.802479, 51.523547], [-118.806682, 51.52336], [-118.811019, 51.523996], [-118.814452, 51.525076], [-118.817189, 51.526607], [-118.81919, 51.527259], [-118.825016, 51.526139], [-118.828168, 51.526405], [-118.831293, 51.52904], [-118.832332, 51.531049], [-118.832564, 51.537185], [-118.831648, 51.543005], [-118.828499, 51.550767], [-118.828236, 51.555508], [-118.828184, 51.55955], [-118.82798, 51.56338], [-118.826997, 51.56826], [-118.82688, 51.574623], [-118.827584, 51.578932], [-118.82846, 51.582841], [-118.827356, 51.58571], [-118.824396, 51.587569], [-118.820821, 51.588579], [-118.817402, 51.589099], [-118.816744, 51.590883], [-118.816757, 51.597145], [-118.81504, 51.60172], [-118.815427, 51.607365], [-118.816363, 51.610011], [-118.818274, 51.614078], [-118.816493, 51.620269], [-118.817712, 51.626641], [-118.821303, 51.631898], [-118.825819, 51.634818], [-118.833626, 51.634998], [-118.839659, 51.63612], [-118.843728, 51.637216], [-118.850724, 51.642924], [-118.855704, 51.644851], [-118.863758, 51.64579], [-118.870386, 51.645468], [-118.880017, 51.644273], [-118.883953, 51.644192], [-118.890116, 51.646617], [-118.895898, 51.652474], [-118.899034, 51.653831], [-118.901503, 51.655823], [-118.903705, 51.656739], [-118.906708, 51.661587], [-118.907831, 51.663702], [-118.908382, 51.665947], [-118.907152, 51.668214], [-118.90802, 51.670401], [-118.91035, 51.672624], [-118.912395, 51.674735], [-118.916047, 51.67793], [-118.920698, 51.681228], [-118.922452, 51.682654], [-118.923768, 51.685739], [-118.923877, 51.689561], [-118.924284, 51.68955], [-118.929463, 51.690937], [-118.932899, 51.696559], [-118.937835, 51.70272], [-118.948888, 51.700284], [-118.96107, 51.701515]], [[-119.487159, 50.934744], [-119.460724, 50.934712], [-119.460662, 50.932238], [-119.460324, 50.926282], [-119.460333, 50.918677], [-119.460049, 50.916365], [-119.467406, 50.916221], [-119.467824, 50.910782], [-119.46806, 50.902538], [-119.468025, 50.901555], [-119.468504, 50.901778], [-119.469138, 50.901918], [-119.470486, 50.901565], [-119.471024, 50.901526], [-119.471667, 50.901576], [-119.472403, 50.901777], [-119.473046, 50.902096], [-119.474237, 50.902565], [-119.475058, 50.902745], [-119.476092, 50.902697], [-119.476629, 50.902604], [-119.47705, 50.902488], [-119.477895, 50.902065], [-119.478272, 50.901949], [-119.478697, 50.901904], [-119.479881, 50.901959], [-119.480886, 50.901623], [-119.48186, 50.901756], [-119.482396, 50.901934], [-119.483171, 50.90234], [-119.484313, 50.902666], [-119.484575, 50.902804], [-119.485534, 50.903432], [-119.486159, 50.904209], [-119.486411, 50.904402], [-119.487847, 50.905172], [-119.488559, 50.90548], [-119.48979, 50.906705], [-119.490159, 50.906931], [-119.490319, 50.906981], [-119.491288, 50.907014], [-119.491649, 50.907105], [-119.49224, 50.907542], [-119.492846, 50.907727], [-119.493215, 50.907693], [-119.493494, 50.907561], [-119.493859, 50.907247], [-119.494142, 50.907187], [-119.49499, 50.907088], [-119.495933, 50.907158], [-119.497098, 50.907682], [-119.497674, 50.907804], [-119.498218, 50.908152], [-119.498824, 50.908274], [-119.499258, 50.908427], [-119.499917, 50.908764], [-119.500376, 50.909096], [-119.501845, 50.909703], [-119.502436, 50.909869], [-119.502574, 50.909768], [-119.503896, 50.909758], [-119.503945, 50.909865], [-119.503876, 50.909938], [-119.502877, 50.91039], [-119.503678, 50.910463], [-119.504396, 50.910341], [-119.504854, 50.910375], [-119.505015, 50.910472], [-119.504588, 50.910732], [-119.504525, 50.910868], [-119.504583, 50.911164], [-119.504845, 50.911563], [-119.504506, 50.911822], [-119.504044, 50.912515], [-119.504057, 50.913289], [-119.503962, 50.913371], [-119.503376, 50.91334], [-119.503326, 50.913736], [-119.503382, 50.913951], [-119.503865, 50.914471], [-119.504834, 50.915053], [-119.505531, 50.915298], [-119.506272, 50.91531], [-119.506789, 50.915407], [-119.507328, 50.915387], [-119.50776, 50.915206], [-119.508322, 50.915095], [-119.50868, 50.915123], [-119.509058, 50.915285], [-119.509561, 50.915365], [-119.510016, 50.915076], [-119.510464, 50.914672], [-119.510972, 50.914354], [-119.511105, 50.914336], [-119.510919, 50.920436], [-119.496095, 50.920018], [-119.496288, 50.927325], [-119.496215, 50.927366], [-119.487497, 50.927521], [-119.487159, 50.934744]]]]}, "properties": {"name": "Columbia Shuswap F", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Columbia Shuswap F", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939044", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.997135, 50.852857], [-118.996795, 50.854283], [-119.015199, 50.854497], [-119.015466, 50.848445], [-119.01176, 50.84825], [-119.012099, 50.847555], [-119.012826, 50.847545], [-119.015741, 50.846639], [-119.016571, 50.845604], [-119.016807, 50.843013], [-119.015331, 50.842091], [-119.013594, 50.839574], [-119.01314, 50.839111], [-119.011642, 50.838101], [-119.010383, 50.83782], [-119.008515, 50.838049], [-119.007167, 50.838437], [-119.005951, 50.839121], [-119.004824, 50.84027], [-119.00348, 50.840888], [-119.001636, 50.840698], [-119.0, 50.83765], [-119.0, 50.837338], [-119.008309, 50.835328], [-119.006878, 50.832984], [-119.0073, 50.823251], [-118.997351, 50.821937], [-118.994569, 50.821759], [-118.991491, 50.82217], [-118.987471, 50.82129], [-118.986622, 50.822126], [-118.982313, 50.8158], [-118.981439, 50.808966], [-118.981694, 50.807232], [-118.981643, 50.807144], [-118.978121, 50.8056], [-118.975315, 50.804667], [-118.974825, 50.802695], [-118.974465, 50.801829], [-118.96869, 50.801969], [-118.968793, 50.80651], [-118.966079, 50.806554], [-118.965957, 50.815182], [-118.968494, 50.815097], [-118.968549, 50.82301], [-118.962004, 50.822846], [-118.962246, 50.829188], [-118.961808, 50.831411], [-118.9561, 50.83207], [-118.956131, 50.834114], [-118.950618, 50.834512], [-118.950869, 50.837996], [-118.946047, 50.841903], [-118.941776, 50.841929], [-118.943397, 50.847629], [-118.943571, 50.848863], [-118.943471, 50.849272], [-118.943408, 50.852363], [-118.943661, 50.853271], [-118.944619, 50.853692], [-118.947752, 50.854835], [-118.948519, 50.854086], [-118.949479, 50.853487], [-118.950349, 50.853223], [-118.951262, 50.853372], [-118.953327, 50.85398], [-118.95429, 50.854041], [-118.954961, 50.853901], [-118.954943, 50.853559], [-118.954618, 50.852878], [-118.954037, 50.852227], [-118.953138, 50.85176], [-118.952086, 50.851353], [-118.951123, 50.851064], [-118.949407, 50.850751], [-118.949042, 50.850577], [-118.948853, 50.850324], [-118.948981, 50.850039], [-118.949448, 50.849785], [-118.950258, 50.849661], [-118.951202, 50.84964], [-118.951736, 50.849093], [-118.951487, 50.84851], [-118.951821, 50.847884], [-118.952387, 50.847676], [-118.954479, 50.849576], [-118.955437, 50.850136], [-118.957043, 50.8506], [-118.956659, 50.852564], [-118.963129, 50.852535], [-118.968254, 50.852691], [-118.973043, 50.852521], [-118.979012, 50.852566], [-118.997135, 50.852857]]]]}, "properties": {"name": "Sicamous", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Sicamous", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939045", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.594713, 50.867711], [-119.594883, 50.867725], [-119.595007, 50.867633], [-119.595041, 50.867498], [-119.595793, 50.867201], [-119.596311, 50.867065], [-119.597313, 50.866934], [-119.598377, 50.866632], [-119.598662, 50.866418], [-119.599332, 50.866187], [-119.599699, 50.865855], [-119.600306, 50.865789], [-119.600804, 50.865579], [-119.601994, 50.865237], [-119.602687, 50.864934], [-119.603095, 50.864853], [-119.603059, 50.864692], [-119.603155, 50.864645], [-119.603781, 50.86491], [-119.603908, 50.86489], [-119.604097, 50.864715], [-119.60404, 50.864473], [-119.603906, 50.86435], [-119.603674, 50.864256], [-119.603156, 50.864168], [-119.602368, 50.863799], [-119.60183, 50.863326], [-119.60124, 50.862674], [-119.600833, 50.86198], [-119.600418, 50.860911], [-119.600229, 50.859854], [-119.60134, 50.858092], [-119.601486, 50.857649], [-119.602385, 50.856694], [-119.603113, 50.855724], [-119.603855, 50.855006], [-119.604783, 50.854346], [-119.605142, 50.853933], [-119.590338, 50.853685], [-119.575204, 50.860267], [-119.574374, 50.866939], [-119.574371, 50.87246], [-119.574105, 50.873187], [-119.574652, 50.873301], [-119.574809, 50.873288], [-119.576058, 50.873009], [-119.576655, 50.872761], [-119.577556, 50.872058], [-119.578283, 50.871619], [-119.582074, 50.869971], [-119.583517, 50.869615], [-119.58668, 50.867916], [-119.58733, 50.867606], [-119.587986, 50.867375], [-119.58859, 50.867245], [-119.589201, 50.86724], [-119.590711, 50.867332], [-119.591615, 50.867483], [-119.59255, 50.867426], [-119.593078, 50.867478], [-119.593658, 50.867411], [-119.594346, 50.86753], [-119.594713, 50.867711]]]]}, "properties": {"name": "Chum Creek 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Chum Creek 2", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939801", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.602298, 50.972131], [-119.602315, 50.972445], [-119.60215, 50.973051], [-119.601859, 50.973323], [-119.606131, 50.973221], [-119.615904, 50.97237], [-119.61954, 50.971363], [-119.634562, 50.967658], [-119.668163, 50.958469], [-119.669075, 50.958271], [-119.668844, 50.958054], [-119.668745, 50.957831], [-119.668677, 50.956888], [-119.669337, 50.955461], [-119.669312, 50.954779], [-119.669507, 50.954468], [-119.669536, 50.954225], [-119.669202, 50.953638], [-119.669091, 50.953191], [-119.668737, 50.95247], [-119.668472, 50.952063], [-119.668411, 50.95201], [-119.668227, 50.952041], [-119.667778, 50.952358], [-119.667539, 50.952435], [-119.666677, 50.952571], [-119.665683, 50.952613], [-119.665152, 50.952544], [-119.663915, 50.951816], [-119.663714, 50.951794], [-119.66288, 50.951885], [-119.662521, 50.951831], [-119.662119, 50.951533], [-119.661753, 50.951371], [-119.661305, 50.950995], [-119.660419, 50.950439], [-119.66013, 50.95013], [-119.659952, 50.949757], [-119.659412, 50.949274], [-119.659027, 50.948744], [-119.658524, 50.948423], [-119.658247, 50.948069], [-119.657742, 50.946686], [-119.657591, 50.946564], [-119.657405, 50.94602], [-119.657103, 50.945721], [-119.656774, 50.944955], [-119.656823, 50.944576], [-119.656708, 50.944533], [-119.65659, 50.944221], [-119.656581, 50.942324], [-119.656383, 50.941078], [-119.656039, 50.939818], [-119.656024, 50.939063], [-119.655754, 50.93905], [-119.655162, 50.93891], [-119.654879, 50.939197], [-119.654939, 50.939491], [-119.654832, 50.939602], [-119.654554, 50.939708], [-119.653785, 50.939716], [-119.653317, 50.939996], [-119.652333, 50.939956], [-119.65195, 50.939991], [-119.651712, 50.940078], [-119.651577, 50.940198], [-119.651585, 50.940332], [-119.651724, 50.940518], [-119.652093, 50.940762], [-119.652135, 50.940967], [-119.651917, 50.941152], [-119.65154, 50.941269], [-119.651296, 50.941256], [-119.650239, 50.940965], [-119.649512, 50.94117], [-119.649038, 50.941595], [-119.648841, 50.941645], [-119.64784, 50.941299], [-119.647431, 50.941388], [-119.646907, 50.94167], [-119.645937, 50.941414], [-119.64541, 50.94166], [-119.645345, 50.94176], [-119.645427, 50.941947], [-119.645315, 50.941995], [-119.645158, 50.941989], [-119.644519, 50.941752], [-119.644173, 50.941931], [-119.643807, 50.942002], [-119.643192, 50.941962], [-119.642831, 50.942096], [-119.642524, 50.942472], [-119.642167, 50.942704], [-119.64079, 50.942781], [-119.639926, 50.943097], [-119.639671, 50.943139], [-119.637947, 50.943115], [-119.636062, 50.943266], [-119.63569, 50.943211], [-119.635467, 50.943063], [-119.63534, 50.943083], [-119.635094, 50.943251], [-119.635032, 50.943415], [-119.635338, 50.943552], [-119.635653, 50.943841], [-119.635592, 50.944032], [-119.635415, 50.944143], [-119.635085, 50.944097], [-119.63486, 50.944156], [-119.633733, 50.944865], [-119.632954, 50.944955], [-119.632536, 50.945108], [-119.631891, 50.945023], [-119.630309, 50.945734], [-119.628984, 50.946501], [-119.628279, 50.946625], [-119.628077, 50.9468], [-119.628211, 50.946941], [-119.628194, 50.947131], [-119.627357, 50.947437], [-119.62736, 50.947752], [-119.626459, 50.948168], [-119.625492, 50.948441], [-119.624775, 50.948341], [-119.624519, 50.948364], [-119.624118, 50.948572], [-119.623874, 50.948801], [-119.623748, 50.949354], [-119.623497, 50.9497], [-119.623067, 50.949899], [-119.622477, 50.949787], [-119.622317, 50.949971], [-119.622196, 50.950341], [-119.621976, 50.950482], [-119.621776, 50.950468], [-119.621325, 50.950317], [-119.620875, 50.950677], [-119.62067, 50.951086], [-119.620176, 50.951637], [-119.619504, 50.951868], [-119.619057, 50.952526], [-119.618244, 50.952734], [-119.618083, 50.952916], [-119.61774, 50.953652], [-119.61745, 50.953822], [-119.617071, 50.953893], [-119.617002, 50.953966], [-119.61703, 50.95472], [-119.616718, 50.95525], [-119.616504, 50.955471], [-119.615505, 50.955448], [-119.6152, 50.955572], [-119.615152, 50.955762], [-119.615223, 50.956012], [-119.615018, 50.956664], [-119.614422, 50.956965], [-119.614355, 50.957039], [-119.614448, 50.95718], [-119.614386, 50.957325], [-119.613376, 50.957592], [-119.612997, 50.957969], [-119.611987, 50.958242], [-119.61178, 50.95858], [-119.611771, 50.959201], [-119.611234, 50.959519], [-119.611053, 50.959883], [-119.610589, 50.959974], [-119.610214, 50.960144], [-119.609544, 50.960141], [-119.609053, 50.960269], [-119.608946, 50.96038], [-119.608617, 50.961376], [-119.608041, 50.962289], [-119.607518, 50.962579], [-119.6068, 50.962739], [-119.606509, 50.962881], [-119.605591, 50.96381], [-119.605466, 50.964119], [-119.6043, 50.964674], [-119.603772, 50.965136], [-119.603737, 50.965299], [-119.604189, 50.965703], [-119.604254, 50.965881], [-119.604241, 50.966655], [-119.604154, 50.966882], [-119.603862, 50.967248], [-119.604046, 50.967487], [-119.604042, 50.967675], [-119.603961, 50.967749], [-119.60347, 50.967896], [-119.603432, 50.967986], [-119.603365, 50.968293], [-119.603558, 50.968693], [-119.603617, 50.969232], [-119.603528, 50.969441], [-119.603135, 50.9698], [-119.60303, 50.969982], [-119.602924, 50.9711], [-119.602733, 50.971267], [-119.601802, 50.971414], [-119.601754, 50.971576], [-119.602298, 50.972131]]]]}, "properties": {"name": "Hustalen 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Hustalen 1", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939802", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.329219, 50.793412], [-119.328494, 50.789151], [-119.328577, 50.786684], [-119.330463, 50.786242], [-119.33459, 50.786192], [-119.341265, 50.785955], [-119.340242, 50.776858], [-119.339842, 50.77443], [-119.339539, 50.771862], [-119.338338, 50.771834], [-119.334508, 50.771423], [-119.33396, 50.771639], [-119.333371, 50.7721], [-119.333703, 50.772463], [-119.333709, 50.772616], [-119.333442, 50.772647], [-119.333145, 50.773229], [-119.332499, 50.773674], [-119.331987, 50.774206], [-119.33145, 50.774531], [-119.330982, 50.775098], [-119.330358, 50.775669], [-119.329165, 50.776465], [-119.328757, 50.776834], [-119.327073, 50.778063], [-119.325798, 50.778664], [-119.325139, 50.779137], [-119.324871, 50.779439], [-119.32423, 50.779667], [-119.321634, 50.780825], [-119.320444, 50.781434], [-119.319729, 50.781619], [-119.31849, 50.782048], [-119.316946, 50.782403], [-119.315032, 50.782737], [-119.314437, 50.782749], [-119.313581, 50.782649], [-119.312864, 50.781917], [-119.312335, 50.781253], [-119.312008, 50.780684], [-119.311143, 50.78009], [-119.309899, 50.779889], [-119.307919, 50.779433], [-119.306409, 50.778771], [-119.30565, 50.778337], [-119.305063, 50.777916], [-119.304281, 50.777189], [-119.304376, 50.780641], [-119.305058, 50.793122], [-119.318459, 50.793282], [-119.325618, 50.793483], [-119.327055, 50.793404], [-119.329219, 50.793412]]]]}, "properties": {"name": "North Bay 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "North Bay 5", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939803", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.329915, 50.484755], [-119.343756, 50.485098], [-119.343769, 50.484687], [-119.34433, 50.484073], [-119.344529, 50.483529], [-119.344623, 50.482853], [-119.344924, 50.482416], [-119.344974, 50.481712], [-119.345672, 50.480987], [-119.34587, 50.479878], [-119.346258, 50.479421], [-119.346291, 50.478961], [-119.345785, 50.478737], [-119.34579, 50.478512], [-119.345962, 50.478284], [-119.345986, 50.477951], [-119.345482, 50.477438], [-119.345079, 50.477267], [-119.344885, 50.477046], [-119.344923, 50.476676], [-119.345247, 50.476131], [-119.345169, 50.475115], [-119.345206, 50.475015], [-119.345982, 50.475045], [-119.346064, 50.474971], [-119.346094, 50.474709], [-119.345895, 50.474409], [-119.345839, 50.473825], [-119.345861, 50.473725], [-119.346415, 50.473237], [-119.347704, 50.472492], [-119.348436, 50.472459], [-119.348576, 50.472196], [-119.3487, 50.472121], [-119.348954, 50.472116], [-119.349244, 50.472298], [-119.349487, 50.472348], [-119.349364, 50.471595], [-119.349694, 50.471129], [-119.349729, 50.470724], [-119.349632, 50.470465], [-119.349285, 50.470291], [-119.3493, 50.469735], [-119.349376, 50.469579], [-119.349609, 50.469413], [-119.350806, 50.468849], [-119.351487, 50.46835], [-119.352344, 50.468017], [-119.353013, 50.467608], [-119.353389, 50.467232], [-119.353502, 50.466393], [-119.353599, 50.466328], [-119.354459, 50.466329], [-119.355144, 50.465938], [-119.355611, 50.465396], [-119.356129, 50.465053], [-119.35721, 50.464708], [-119.357814, 50.464677], [-119.358837, 50.464288], [-119.359417, 50.463727], [-119.359513, 50.46225], [-119.359725, 50.462012], [-119.360165, 50.46177], [-119.360236, 50.460375], [-119.36055, 50.460152], [-119.361061, 50.45997], [-119.362211, 50.459875], [-119.362641, 50.459741], [-119.362941, 50.459537], [-119.363424, 50.459338], [-119.364293, 50.45924], [-119.364991, 50.459099], [-119.365929, 50.458703], [-119.366931, 50.458421], [-119.367719, 50.458126], [-119.368304, 50.457998], [-119.368531, 50.45775], [-119.368558, 50.457156], [-119.368625, 50.457073], [-119.369394, 50.456697], [-119.369696, 50.456242], [-119.370075, 50.455947], [-119.370816, 50.455823], [-119.371941, 50.456079], [-119.372324, 50.456108], [-119.37279, 50.456125], [-119.374515, 50.456004], [-119.375119, 50.456033], [-119.37466, 50.448406], [-119.369206, 50.448398], [-119.364535, 50.448463], [-119.363983, 50.426133], [-119.352593, 50.425948], [-119.352398, 50.416169], [-119.330238, 50.416341], [-119.317791, 50.416145], [-119.317751, 50.427261], [-119.317382, 50.440788], [-119.328225, 50.441064], [-119.328873, 50.456912], [-119.328787, 50.458399], [-119.328936, 50.469982], [-119.329915, 50.484755]]]]}, "properties": {"name": "Okanagan (Part) 1 - Thompson/Okanagan", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Okanagan (Part) 1 - Thompson/Okanagan", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939804", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.581236, 50.900346], [-119.581929, 50.900286], [-119.58314, 50.900286], [-119.585589, 50.900861], [-119.586233, 50.900919], [-119.587224, 50.901103], [-119.587391, 50.901298], [-119.588131, 50.901812], [-119.589012, 50.902045], [-119.591356, 50.902244], [-119.592036, 50.902184], [-119.593032, 50.902198], [-119.593524, 50.902106], [-119.594645, 50.902063], [-119.596014, 50.90214], [-119.59685, 50.902338], [-119.597609, 50.902402], [-119.598818, 50.902681], [-119.599453, 50.902894], [-119.601458, 50.902733], [-119.609074, 50.901911], [-119.634245, 50.88621], [-119.65462, 50.873389], [-119.663055, 50.868175], [-119.669665, 50.865583], [-119.669116, 50.865356], [-119.65102, 50.859537], [-119.649595, 50.858985], [-119.649779, 50.859979], [-119.649806, 50.861967], [-119.649537, 50.862467], [-119.649444, 50.863108], [-119.648888, 50.863832], [-119.647382, 50.864819], [-119.646784, 50.865579], [-119.646618, 50.865907], [-119.646379, 50.867198], [-119.646154, 50.867734], [-119.645725, 50.867933], [-119.641961, 50.867982], [-119.641216, 50.868143], [-119.64037, 50.868532], [-119.639255, 50.868925], [-119.639083, 50.869135], [-119.639066, 50.869343], [-119.639168, 50.870366], [-119.638913, 50.870642], [-119.638305, 50.87097], [-119.637509, 50.871213], [-119.636774, 50.871545], [-119.636164, 50.872062], [-119.635928, 50.87266], [-119.635782, 50.872836], [-119.635309, 50.873043], [-119.633062, 50.873787], [-119.63226, 50.874156], [-119.631375, 50.87513], [-119.631278, 50.87541], [-119.63132, 50.875922], [-119.630846, 50.87685], [-119.630421, 50.877121], [-119.629052, 50.87779], [-119.628672, 50.878095], [-119.628285, 50.878572], [-119.62809, 50.878631], [-119.627051, 50.878591], [-119.625199, 50.878282], [-119.622771, 50.877572], [-119.620827, 50.876896], [-119.619104, 50.87608], [-119.617693, 50.875519], [-119.61719, 50.875178], [-119.61678, 50.874963], [-119.616477, 50.874889], [-119.616152, 50.874653], [-119.6146, 50.873869], [-119.613273, 50.872972], [-119.612802, 50.872723], [-119.612533, 50.872485], [-119.612454, 50.872334], [-119.612631, 50.872169], [-119.612633, 50.871971], [-119.612413, 50.871598], [-119.611357, 50.87101], [-119.609583, 50.869791], [-119.608749, 50.869134], [-119.607092, 50.867445], [-119.606354, 50.866454], [-119.605972, 50.866219], [-119.605396, 50.86634], [-119.60498, 50.866521], [-119.60443, 50.866874], [-119.604125, 50.867241], [-119.603563, 50.867623], [-119.602571, 50.867932], [-119.600404, 50.868341], [-119.59731, 50.868688], [-119.594914, 50.868778], [-119.592298, 50.868782], [-119.591126, 50.868906], [-119.591026, 50.8689], [-119.591638, 50.868653], [-119.591549, 50.868583], [-119.590877, 50.868516], [-119.590418, 50.868688], [-119.590051, 50.868742], [-119.588797, 50.868671], [-119.588087, 50.868704], [-119.587552, 50.868815], [-119.586604, 50.869115], [-119.585592, 50.869595], [-119.584694, 50.870065], [-119.584284, 50.870353], [-119.583976, 50.870433], [-119.583661, 50.870674], [-119.582264, 50.871361], [-119.580617, 50.872441], [-119.57983, 50.873088], [-119.578678, 50.873365], [-119.577348, 50.873988], [-119.576128, 50.874815], [-119.575872, 50.875081], [-119.575235, 50.875375], [-119.574956, 50.875705], [-119.574365, 50.876087], [-119.574035, 50.876544], [-119.57298, 50.877259], [-119.572284, 50.877527], [-119.571214, 50.877721], [-119.570546, 50.877997], [-119.568917, 50.878105], [-119.568261, 50.878334], [-119.567868, 50.878407], [-119.565916, 50.879358], [-119.565358, 50.879532], [-119.56479, 50.879833], [-119.562986, 50.880375], [-119.562557, 50.8806], [-119.562203, 50.880861], [-119.561801, 50.88131], [-119.561618, 50.881864], [-119.560338, 50.883941], [-119.55892, 50.887364], [-119.558507, 50.887868], [-119.557822, 50.888378], [-119.55745, 50.889375], [-119.556433, 50.889739], [-119.555726, 50.889826], [-119.555644, 50.88989], [-119.555705, 50.88998], [-119.556105, 50.890249], [-119.556081, 50.890322], [-119.555076, 50.890147], [-119.555039, 50.890246], [-119.555297, 50.890537], [-119.555332, 50.890681], [-119.555104, 50.890677], [-119.554461, 50.890358], [-119.554277, 50.890353], [-119.5538, 50.890499], [-119.55242, 50.890744], [-119.551409, 50.891225], [-119.551107, 50.891699], [-119.551394, 50.892277], [-119.551399, 50.892359], [-119.551182, 50.892561], [-119.551143, 50.892858], [-119.551279, 50.893018], [-119.551513, 50.893121], [-119.552758, 50.893283], [-119.553165, 50.893435], [-119.553406, 50.89344], [-119.553854, 50.893267], [-119.554938, 50.893091], [-119.555646, 50.893048], [-119.556245, 50.893079], [-119.556555, 50.893011], [-119.55755, 50.893249], [-119.559143, 50.893763], [-119.559514, 50.893791], [-119.55985, 50.89372], [-119.560141, 50.893579], [-119.560561, 50.893165], [-119.560682, 50.892784], [-119.560984, 50.892616], [-119.561264, 50.89252], [-119.561533, 50.892497], [-119.562248, 50.892561], [-119.562608, 50.892679], [-119.562922, 50.893464], [-119.563427, 50.89384], [-119.563854, 50.894352], [-119.564074, 50.894482], [-119.564417, 50.894538], [-119.564985, 50.894498], [-119.565079, 50.893875], [-119.565217, 50.893575], [-119.565481, 50.893175], [-119.565827, 50.893014], [-119.567193, 50.893028], [-119.568071, 50.893216], [-119.569003, 50.893609], [-119.569449, 50.893959], [-119.569653, 50.894305], [-119.569711, 50.894592], [-119.570037, 50.894837], [-119.569932, 50.894973], [-119.569915, 50.895181], [-119.570042, 50.895421], [-119.570207, 50.89557], [-119.570411, 50.895943], [-119.571064, 50.896425], [-119.571266, 50.896483], [-119.571763, 50.896453], [-119.572109, 50.896527], [-119.572887, 50.896483], [-119.573193, 50.89662], [-119.574408, 50.896953], [-119.57512, 50.897244], [-119.575328, 50.897419], [-119.575503, 50.897721], [-119.575671, 50.898446], [-119.576151, 50.898911], [-119.576309, 50.899465], [-119.576935, 50.899974], [-119.577104, 50.900222], [-119.578011, 50.900669], [-119.578863, 50.900892], [-119.579331, 50.900865], [-119.579859, 50.900629], [-119.581236, 50.900346]]]]}, "properties": {"name": "Quaaout 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Quaaout 1", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939805", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.348079, 50.515016], [-119.349048, 50.514988], [-119.349029, 50.514831], [-119.349353, 50.514563], [-119.349697, 50.514393], [-119.349879, 50.514084], [-119.349911, 50.512995], [-119.349389, 50.511891], [-119.348858, 50.511136], [-119.348282, 50.510599], [-119.3483, 50.510095], [-119.348744, 50.509664], [-119.348762, 50.509484], [-119.34873, 50.509413], [-119.348369, 50.509222], [-119.347802, 50.509161], [-119.347455, 50.509016], [-119.346921, 50.508469], [-119.346571, 50.508259], [-119.346517, 50.507712], [-119.346539, 50.507621], [-119.346953, 50.507398], [-119.347544, 50.507376], [-119.347956, 50.50743], [-119.348693, 50.507804], [-119.34922, 50.5079], [-119.349662, 50.507711], [-119.349921, 50.507265], [-119.350311, 50.507141], [-119.35057, 50.506973], [-119.350618, 50.506775], [-119.349957, 50.506555], [-119.349079, 50.506482], [-119.348829, 50.506253], [-119.348897, 50.505667], [-119.349053, 50.505367], [-119.349706, 50.504635], [-119.349741, 50.504462], [-119.349714, 50.503951], [-119.349568, 50.5038], [-119.34919, 50.503611], [-119.349159, 50.503269], [-119.349294, 50.503141], [-119.350148, 50.502736], [-119.350191, 50.502457], [-119.35007, 50.502315], [-119.34993, 50.502318], [-119.349723, 50.502413], [-119.349244, 50.502413], [-119.349039, 50.502273], [-119.348842, 50.50198], [-119.348188, 50.501868], [-119.348203, 50.501328], [-119.348013, 50.500648], [-119.347309, 50.500626], [-119.346927, 50.500355], [-119.34617, 50.50073], [-119.345931, 50.500735], [-119.345702, 50.50065], [-119.345711, 50.499975], [-119.346072, 50.499607], [-119.346374, 50.498872], [-119.346819, 50.498424], [-119.34685, 50.49791], [-119.346561, 50.497511], [-119.345671, 50.496935], [-119.3457, 50.496377], [-119.34564, 50.496297], [-119.344895, 50.496043], [-119.344643, 50.495805], [-119.344297, 50.495093], [-119.344243, 50.494815], [-119.344091, 50.494611], [-119.343643, 50.494376], [-119.343494, 50.494218], [-119.34299, 50.494012], [-119.342976, 50.493769], [-119.343139, 50.49364], [-119.343564, 50.493677], [-119.343909, 50.493778], [-119.344177, 50.493772], [-119.344316, 50.493761], [-119.344771, 50.493553], [-119.345047, 50.493153], [-119.345049, 50.492901], [-119.344336, 50.492717], [-119.344112, 50.492496], [-119.343963, 50.492059], [-119.343789, 50.491964], [-119.343823, 50.491514], [-119.343994, 50.491249], [-119.343916, 50.491106], [-119.343099, 50.490809], [-119.341927, 50.49076], [-119.341723, 50.490638], [-119.341727, 50.49017], [-119.342519, 50.489632], [-119.342453, 50.489427], [-119.341803, 50.489134], [-119.34167, 50.489001], [-119.341658, 50.487644], [-119.341711, 50.487561], [-119.342057, 50.487429], [-119.343444, 50.487517], [-119.343553, 50.487453], [-119.343575, 50.48702], [-119.342825, 50.486415], [-119.342732, 50.486264], [-119.342941, 50.485936], [-119.343451, 50.485412], [-119.343752, 50.485219], [-119.343756, 50.485098], [-119.329915, 50.484755], [-119.328936, 50.469982], [-119.29739, 50.471348], [-119.297647, 50.475727], [-119.297557, 50.482432], [-119.297433, 50.482728], [-119.297472, 50.4849], [-119.293879, 50.484963], [-119.276113, 50.485028], [-119.275304, 50.485177], [-119.274067, 50.485218], [-119.263201, 50.484969], [-119.263397, 50.487737], [-119.262928, 50.488343], [-119.263187, 50.49282], [-119.268615, 50.492746], [-119.269131, 50.492839], [-119.277428, 50.492995], [-119.279763, 50.492946], [-119.296208, 50.492877], [-119.296339, 50.500332], [-119.308023, 50.500269], [-119.307895, 50.504424], [-119.308124, 50.514571], [-119.348079, 50.515016]]]]}, "properties": {"name": "Salmon River 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Salmon River 1", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939806", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.487159, 50.934744], [-119.487497, 50.927521], [-119.496215, 50.927366], [-119.496288, 50.927325], [-119.496095, 50.920018], [-119.510919, 50.920436], [-119.511105, 50.914336], [-119.510972, 50.914354], [-119.510464, 50.914672], [-119.510016, 50.915076], [-119.509561, 50.915365], [-119.509058, 50.915285], [-119.50868, 50.915123], [-119.508422, 50.915093], [-119.508081, 50.915119], [-119.507187, 50.915407], [-119.506789, 50.915407], [-119.506272, 50.91531], [-119.505531, 50.915298], [-119.504834, 50.915053], [-119.503865, 50.914471], [-119.503382, 50.913951], [-119.503336, 50.913394], [-119.503376, 50.91334], [-119.503533, 50.913327], [-119.503962, 50.913371], [-119.504057, 50.913289], [-119.504044, 50.912515], [-119.504506, 50.911822], [-119.504845, 50.911563], [-119.504583, 50.911164], [-119.504525, 50.910868], [-119.504588, 50.910732], [-119.505015, 50.910472], [-119.50494, 50.9104], [-119.504311, 50.910342], [-119.503678, 50.910463], [-119.502877, 50.91039], [-119.503876, 50.909938], [-119.503945, 50.909865], [-119.503896, 50.909758], [-119.502574, 50.909768], [-119.502436, 50.909869], [-119.501845, 50.909703], [-119.500376, 50.909096], [-119.499917, 50.908764], [-119.499258, 50.908427], [-119.498824, 50.908274], [-119.498218, 50.908152], [-119.497674, 50.907804], [-119.497098, 50.907682], [-119.495933, 50.907158], [-119.49499, 50.907088], [-119.494142, 50.907187], [-119.493859, 50.907247], [-119.493494, 50.907561], [-119.493215, 50.907693], [-119.492846, 50.907727], [-119.49224, 50.907542], [-119.491649, 50.907105], [-119.491288, 50.907014], [-119.490319, 50.906981], [-119.490159, 50.906931], [-119.48979, 50.906705], [-119.488559, 50.90548], [-119.487847, 50.905172], [-119.486411, 50.904402], [-119.486159, 50.904209], [-119.485534, 50.903432], [-119.484489, 50.902753], [-119.483171, 50.90234], [-119.482396, 50.901934], [-119.481946, 50.901781], [-119.481127, 50.901627], [-119.480886, 50.901623], [-119.480619, 50.901692], [-119.479881, 50.901959], [-119.478697, 50.901904], [-119.478272, 50.901949], [-119.477895, 50.902065], [-119.47705, 50.902488], [-119.476629, 50.902604], [-119.476092, 50.902697], [-119.475058, 50.902745], [-119.474237, 50.902565], [-119.473046, 50.902096], [-119.472403, 50.901777], [-119.471667, 50.901576], [-119.471024, 50.901526], [-119.470486, 50.901565], [-119.469138, 50.901918], [-119.468504, 50.901778], [-119.468025, 50.901555], [-119.46806, 50.902538], [-119.467824, 50.910782], [-119.467406, 50.916221], [-119.460049, 50.916365], [-119.460333, 50.918677], [-119.460324, 50.926282], [-119.460662, 50.932238], [-119.460724, 50.934712], [-119.487159, 50.934744]]]]}, "properties": {"name": "Scotch Creek 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Scotch Creek 4", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939807", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.307986, 50.704437], [-119.308145, 50.704776], [-119.308573, 50.705145], [-119.309198, 50.705475], [-119.30966, 50.705907], [-119.309846, 50.706244], [-119.309824, 50.706676], [-119.309532, 50.70706], [-119.308854, 50.707676], [-119.308645, 50.708067], [-119.307556, 50.709231], [-119.307067, 50.709933], [-119.306736, 50.71012], [-119.30649, 50.710601], [-119.306512, 50.711339], [-119.306938, 50.711914], [-119.30755, 50.712559], [-119.3087, 50.71321], [-119.310615, 50.714107], [-119.311598, 50.714493], [-119.312288, 50.71501], [-119.313248, 50.715522], [-119.313901, 50.716111], [-119.314319, 50.716823], [-119.314529, 50.717359], [-119.314776, 50.71836], [-119.314766, 50.72068], [-119.317355, 50.720681], [-119.3305, 50.720371], [-119.342907, 50.72028], [-119.3429, 50.707109], [-119.34343, 50.704642], [-119.343452, 50.702604], [-119.343032, 50.698908], [-119.341618, 50.698937], [-119.34013, 50.698786], [-119.33932, 50.698887], [-119.338495, 50.698914], [-119.33136, 50.698862], [-119.32197, 50.699021], [-119.312803, 50.699009], [-119.313057, 50.702704], [-119.312815, 50.702705], [-119.312557, 50.702628], [-119.312136, 50.702412], [-119.312027, 50.701938], [-119.311798, 50.701879], [-119.311575, 50.701956], [-119.311426, 50.702372], [-119.310651, 50.703305], [-119.310169, 50.703342], [-119.309366, 50.702845], [-119.308657, 50.702805], [-119.308148, 50.702851], [-119.307955, 50.702945], [-119.30793, 50.703026], [-119.308198, 50.703543], [-119.308179, 50.704038], [-119.307986, 50.704437]]]]}, "properties": {"name": "Switsemalph 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Switsemalph 3", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939808", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.315611, 50.740732], [-119.31611, 50.741081], [-119.31717, 50.742157], [-119.319048, 50.743748], [-119.32041, 50.745493], [-119.320555, 50.74584], [-119.320541, 50.746974], [-119.320683, 50.747286], [-119.320652, 50.747502], [-119.319927, 50.748327], [-119.319964, 50.748524], [-119.320549, 50.748881], [-119.321173, 50.749156], [-119.322615, 50.749632], [-119.323496, 50.750633], [-119.322098, 50.748429], [-119.323184, 50.746913], [-119.323033, 50.746529], [-119.322949, 50.745775], [-119.322862, 50.742287], [-119.322291, 50.738384], [-119.331492, 50.738212], [-119.331472, 50.736234], [-119.3305, 50.720371], [-119.317355, 50.720681], [-119.314766, 50.72068], [-119.314505, 50.722315], [-119.314069, 50.723287], [-119.313423, 50.724271], [-119.311412, 50.726577], [-119.311072, 50.726863], [-119.308898, 50.7282], [-119.308163, 50.728808], [-119.306598, 50.729542], [-119.306111, 50.729704], [-119.305613, 50.729966], [-119.305477, 50.730103], [-119.305499, 50.730255], [-119.305603, 50.730316], [-119.306474, 50.73047], [-119.308156, 50.731228], [-119.30898, 50.731877], [-119.309172, 50.732306], [-119.309066, 50.733037], [-119.309519, 50.733873], [-119.30975, 50.734542], [-119.309424, 50.735412], [-119.309429, 50.73579], [-119.31018, 50.736378], [-119.311109, 50.737412], [-119.311509, 50.738051], [-119.311855, 50.738449], [-119.312219, 50.739225], [-119.315611, 50.740732]]], [[[-119.301054, 50.710385], [-119.302591, 50.710553], [-119.303484, 50.710553], [-119.303874, 50.710959], [-119.30413, 50.711017], [-119.304938, 50.711001], [-119.305386, 50.710622], [-119.306171, 50.710175], [-119.306076, 50.709692], [-119.306131, 50.709349], [-119.306244, 50.709042], [-119.306549, 50.708621], [-119.307882, 50.707515], [-119.308089, 50.707404], [-119.308592, 50.707267], [-119.309034, 50.707033], [-119.309277, 50.706813], [-119.309355, 50.706667], [-119.309269, 50.706327], [-119.308533, 50.705793], [-119.308307, 50.705484], [-119.308042, 50.7053], [-119.307609, 50.70484], [-119.307633, 50.704471], [-119.307939, 50.704078], [-119.307987, 50.703897], [-119.307622, 50.70306], [-119.307665, 50.702806], [-119.30801, 50.702332], [-119.308299, 50.702164], [-119.308712, 50.702184], [-119.309307, 50.702486], [-119.310215, 50.703098], [-119.310584, 50.703135], [-119.310933, 50.703021], [-119.311426, 50.702372], [-119.311575, 50.701956], [-119.311656, 50.701891], [-119.311912, 50.701886], [-119.312027, 50.701938], [-119.312136, 50.702412], [-119.312557, 50.702628], [-119.312815, 50.702705], [-119.313057, 50.702704], [-119.312803, 50.699009], [-119.312099, 50.693557], [-119.306805, 50.693684], [-119.306073, 50.693492], [-119.298625, 50.693697], [-119.298818, 50.697562], [-119.297643, 50.697544], [-119.296785, 50.69742], [-119.294069, 50.697424], [-119.294071, 50.698635], [-119.291688, 50.698688], [-119.291685, 50.699668], [-119.291784, 50.699881], [-119.291634, 50.704851], [-119.292225, 50.704524], [-119.295568, 50.703621], [-119.296327, 50.703238], [-119.297343, 50.702597], [-119.298076, 50.70252], [-119.299053, 50.702509], [-119.299376, 50.70244], [-119.300521, 50.701545], [-119.30211, 50.700686], [-119.30317, 50.700647], [-119.303401, 50.700454], [-119.303551, 50.700063], [-119.303783, 50.699861], [-119.304294, 50.699932], [-119.304342, 50.700012], [-119.304185, 50.700294], [-119.304451, 50.700505], [-119.305566, 50.701005], [-119.305718, 50.701505], [-119.305624, 50.701921], [-119.305019, 50.702878], [-119.304717, 50.703054], [-119.303893, 50.703295], [-119.302003, 50.704007], [-119.301639, 50.704114], [-119.30082, 50.704165], [-119.300575, 50.704342], [-119.300136, 50.704386], [-119.29974, 50.704357], [-119.298417, 50.703951], [-119.298308, 50.704063], [-119.2985, 50.704248], [-119.299167, 50.704531], [-119.300096, 50.704711], [-119.300183, 50.704745], [-119.300158, 50.704826], [-119.299528, 50.704974], [-119.29886, 50.704933], [-119.298487, 50.704805], [-119.297765, 50.704802], [-119.297472, 50.704941], [-119.297435, 50.705024], [-119.29755, 50.705057], [-119.298485, 50.705075], [-119.298577, 50.705226], [-119.299096, 50.705377], [-119.299273, 50.705554], [-119.299558, 50.706142], [-119.299762, 50.706281], [-119.300158, 50.706274], [-119.300521, 50.706159], [-119.300974, 50.70615], [-119.301755, 50.705918], [-119.302289, 50.705836], [-119.302419, 50.705861], [-119.302457, 50.706049], [-119.302218, 50.707241], [-119.302268, 50.707402], [-119.303198, 50.708174], [-119.303167, 50.708995], [-119.303356, 50.709386], [-119.303189, 50.709731], [-119.302896, 50.709818], [-119.302314, 50.709794], [-119.30067, 50.708882], [-119.299805, 50.708862], [-119.298688, 50.709227], [-119.298555, 50.709382], [-119.298822, 50.709925], [-119.299088, 50.709858], [-119.299484, 50.709543], [-119.299558, 50.709623], [-119.299555, 50.709848], [-119.299718, 50.710016], [-119.301054, 50.710385]]]]}, "properties": {"name": "Switsemalph", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Thompson/Okanagan", "census_subdivision": "Switsemalph", "economic_region_id": "5930", "census_division_code": "5939", "census_subdivision_code": "5939811", "regional_district_aka_census_division": "Columbia Shuswap"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.304567, 51.665665], [-121.342379, 51.664724], [-121.364837, 51.664577], [-121.396329, 51.664988], [-121.39702, 51.651969], [-121.397884, 51.643736], [-121.386901, 51.64381], [-121.381919, 51.64378], [-121.381465, 51.636228], [-121.370167, 51.63587], [-121.369867, 51.639124], [-121.359071, 51.639092], [-121.360167, 51.611414], [-121.358422, 51.611574], [-121.291024, 51.611535], [-121.290931, 51.605472], [-121.290538, 51.604762], [-121.290087, 51.599444], [-121.266813, 51.59969], [-121.266724, 51.611827], [-121.266789, 51.61649], [-121.283953, 51.617049], [-121.283842, 51.620285], [-121.289931, 51.620532], [-121.289917, 51.622498], [-121.295023, 51.622845], [-121.300395, 51.622382], [-121.299599, 51.625623], [-121.300265, 51.628566], [-121.28695, 51.629503], [-121.283022, 51.628949], [-121.256918, 51.629038], [-121.235147, 51.628783], [-121.234894, 51.632049], [-121.234938, 51.63392], [-121.234758, 51.648067], [-121.234553, 51.650447], [-121.23456, 51.652615], [-121.24719, 51.652445], [-121.247227, 51.654477], [-121.247021, 51.663432], [-121.264633, 51.663811], [-121.264734, 51.661692], [-121.279818, 51.661928], [-121.280433, 51.675896], [-121.297601, 51.675918], [-121.303783, 51.676034], [-121.303712, 51.675212], [-121.303781, 51.665646], [-121.304567, 51.665665]]]]}, "properties": {"name": "One Hundred Mile House", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "One Hundred Mile House", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941005", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.194477, 52.161987], [-122.198326, 52.16254], [-122.199083, 52.162735], [-122.19974, 52.163004], [-122.201424, 52.163948], [-122.201737, 52.160997], [-122.193832, 52.157617], [-122.196914, 52.157667], [-122.196968, 52.155949], [-122.196626, 52.155929], [-122.196312, 52.156101], [-122.195769, 52.156224], [-122.195531, 52.156546], [-122.194667, 52.155794], [-122.194405, 52.155657], [-122.193924, 52.15559], [-122.193505, 52.155345], [-122.19307, 52.15518], [-122.192912, 52.155009], [-122.192801, 52.154684], [-122.192699, 52.154647], [-122.192363, 52.154678], [-122.19196, 52.151598], [-122.178131, 52.143383], [-122.177854, 52.145978], [-122.175152, 52.145886], [-122.17499, 52.138037], [-122.174701, 52.13484], [-122.17539, 52.121964], [-122.175507, 52.121702], [-122.175452, 52.121031], [-122.170213, 52.121286], [-122.170496, 52.114514], [-122.161058, 52.114331], [-122.150459, 52.112213], [-122.15045, 52.111606], [-122.150174, 52.111112], [-122.149947, 52.110957], [-122.149578, 52.110818], [-122.148533, 52.110601], [-122.147843, 52.108954], [-122.147698, 52.10816], [-122.147726, 52.107163], [-122.145011, 52.107295], [-122.13953, 52.106848], [-122.137389, 52.106801], [-122.119789, 52.106818], [-122.119699, 52.103432], [-122.118329, 52.103408], [-122.118318, 52.101703], [-122.117587, 52.101688], [-122.117649, 52.099765], [-122.106191, 52.09948], [-122.064191, 52.099767], [-122.064582, 52.10687], [-122.064821, 52.115372], [-122.080454, 52.118655], [-122.081695, 52.123478], [-122.082178, 52.124932], [-122.082952, 52.124856], [-122.083635, 52.12704], [-122.083628, 52.127785], [-122.090897, 52.127831], [-122.091013, 52.124586], [-122.10648, 52.124419], [-122.106133, 52.128361], [-122.117636, 52.128174], [-122.117947, 52.135465], [-122.127889, 52.135255], [-122.129185, 52.135398], [-122.129564, 52.135769], [-122.129125, 52.142563], [-122.130095, 52.145255], [-122.130497, 52.14555], [-122.130987, 52.145805], [-122.131556, 52.14598], [-122.131644, 52.149933], [-122.144245, 52.1498], [-122.145052, 52.151247], [-122.145648, 52.151995], [-122.146552, 52.152842], [-122.148073, 52.153953], [-122.148622, 52.154591], [-122.148922, 52.155176], [-122.148982, 52.155766], [-122.148927, 52.156259], [-122.148539, 52.157122], [-122.147271, 52.159386], [-122.147131, 52.160044], [-122.147132, 52.161849], [-122.146901, 52.162474], [-122.146567, 52.162874], [-122.146587, 52.16323], [-122.147106, 52.165302], [-122.147075, 52.167385], [-122.156511, 52.16742], [-122.15682, 52.167334], [-122.157817, 52.167531], [-122.157649, 52.169598], [-122.15766, 52.171503], [-122.159958, 52.171473], [-122.16499, 52.171529], [-122.168927, 52.17142], [-122.168905, 52.168683], [-122.169619, 52.168323], [-122.171117, 52.167212], [-122.172526, 52.166369], [-122.172955, 52.165966], [-122.173012, 52.165157], [-122.172875, 52.164751], [-122.172295, 52.163951], [-122.172329, 52.163628], [-122.177214, 52.163855], [-122.181246, 52.163749], [-122.193147, 52.163956], [-122.193771, 52.163927], [-122.193788, 52.161819], [-122.194477, 52.161987]]], [[[-122.03702, 52.188329], [-122.050462, 52.185915], [-122.062797, 52.193277], [-122.068355, 52.196356], [-122.070284, 52.197555], [-122.074676, 52.1976], [-122.075798, 52.198641], [-122.076701, 52.19788], [-122.078324, 52.196728], [-122.078262, 52.191332], [-122.077374, 52.185386], [-122.077321, 52.184567], [-122.069355, 52.180651], [-122.068082, 52.179684], [-122.067669, 52.179216], [-122.066943, 52.17876], [-122.066026, 52.178445], [-122.062642, 52.177912], [-122.057709, 52.177901], [-122.048894, 52.178058], [-122.043486, 52.174652], [-122.043476, 52.173411], [-122.040849, 52.171965], [-122.039763, 52.17108], [-122.039062, 52.170307], [-122.02349, 52.170143], [-122.038767, 52.178105], [-122.040672, 52.178163], [-122.043738, 52.18029], [-122.043266, 52.185935], [-122.037303, 52.185801], [-122.03702, 52.188329]]]]}, "properties": {"name": "Williams Lake", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Williams Lake", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941009", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.355964, 52.530667], [-122.355797, 52.541029], [-122.356612, 52.541314], [-122.35754, 52.541866], [-122.385579, 52.54227], [-122.387819, 52.542087], [-122.387438, 52.543007], [-122.424087, 52.540285], [-122.446213, 52.539685], [-122.452716, 52.539367], [-122.451771, 52.539027], [-122.450176, 52.538218], [-122.448528, 52.536519], [-122.446779, 52.532218], [-122.445525, 52.529933], [-122.444204, 52.528202], [-122.443221, 52.526021], [-122.4427, 52.52253], [-122.441958, 52.521146], [-122.441333, 52.52033], [-122.44092, 52.51813], [-122.441219, 52.515893], [-122.440906, 52.514021], [-122.439955, 52.511711], [-122.437514, 52.507294], [-122.436186, 52.504289], [-122.434476, 52.498792], [-122.432908, 52.494928], [-122.433142, 52.49271], [-122.433126, 52.491312], [-122.431735, 52.487941], [-122.431773, 52.486875], [-122.433132, 52.482278], [-122.434504, 52.479327], [-122.4346, 52.477916], [-122.433352, 52.475343], [-122.431714, 52.472796], [-122.428919, 52.469711], [-122.426348, 52.467581], [-122.424745, 52.465526], [-122.423164, 52.46377], [-122.420867, 52.460667], [-122.420471, 52.459858], [-122.419194, 52.458417], [-122.416789, 52.456671], [-122.415683, 52.454002], [-122.413275, 52.451793], [-122.410245, 52.447637], [-122.408948, 52.444733], [-122.407602, 52.440914], [-122.405272, 52.437546], [-122.40222, 52.431741], [-122.401379, 52.429796], [-122.400248, 52.423981], [-122.400679, 52.422218], [-122.400426, 52.421092], [-122.398931, 52.417712], [-122.396334, 52.415027], [-122.394698, 52.412546], [-122.392611, 52.409958], [-122.391323, 52.408826], [-122.391005, 52.40594], [-122.391134, 52.405208], [-122.391908, 52.403264], [-122.391894, 52.402351], [-122.39124, 52.397958], [-122.390581, 52.395058], [-122.39068, 52.393694], [-122.390693, 52.390906], [-122.38979, 52.388119], [-122.38738, 52.385086], [-122.383897, 52.381328], [-122.382674, 52.380363], [-122.381893, 52.379997], [-122.379851, 52.379716], [-122.37753, 52.379078], [-122.376114, 52.378591], [-122.374598, 52.377825], [-122.374081, 52.377351], [-122.373129, 52.375674], [-122.373098, 52.374683], [-122.372798, 52.372149], [-122.372884, 52.371125], [-122.375748, 52.365794], [-122.375838, 52.364903], [-122.374496, 52.362328], [-122.372817, 52.360913], [-122.371414, 52.360353], [-122.367151, 52.359469], [-122.365709, 52.35862], [-122.362318, 52.35619], [-122.360963, 52.355486], [-122.358342, 52.354491], [-122.356649, 52.354029], [-122.351979, 52.353273], [-122.344729, 52.353085], [-122.33524, 52.352075], [-122.326479, 52.349459], [-122.322499, 52.348512], [-122.318104, 52.347123], [-122.315395, 52.346577], [-122.31224, 52.345695], [-122.309913, 52.345189], [-122.304836, 52.344421], [-122.299969, 52.343511], [-122.298157, 52.343098], [-122.29357, 52.341901], [-122.289446, 52.341114], [-122.288313, 52.340533], [-122.284969, 52.337895], [-122.284791, 52.337269], [-122.283138, 52.334995], [-122.282645, 52.333843], [-122.282117, 52.328342], [-122.282218, 52.327681], [-122.282019, 52.326643], [-122.281219, 52.325572], [-122.280097, 52.325024], [-122.279523, 52.324113], [-122.278774, 52.323253], [-122.276873, 52.321499], [-122.276011, 52.32022], [-122.275579, 52.318757], [-122.276187, 52.316637], [-122.278277, 52.313848], [-122.278396, 52.312252], [-122.278738, 52.31183], [-122.281557, 52.310017], [-122.285254, 52.30484], [-122.286438, 52.303434], [-122.286414, 52.30289], [-122.287047, 52.299716], [-122.287469, 52.299112], [-122.28854, 52.298219], [-122.288834, 52.296937], [-122.288631, 52.296233], [-122.287846, 52.295286], [-122.286385, 52.294146], [-122.285388, 52.293547], [-122.284299, 52.292613], [-122.277347, 52.287727], [-122.272303, 52.281812], [-122.271795, 52.280593], [-122.271679, 52.276276], [-122.270596, 52.273332], [-122.270785, 52.27231], [-122.270327, 52.27042], [-122.269551, 52.268263], [-122.268634, 52.266919], [-122.267514, 52.266167], [-122.267462, 52.265707], [-122.265866, 52.263918], [-122.265246, 52.262801], [-122.264568, 52.261185], [-122.264528, 52.260415], [-122.264061, 52.259329], [-122.26414, 52.257143], [-122.264416, 52.255839], [-122.264234, 52.25468], [-122.263963, 52.253922], [-122.264051, 52.25286], [-122.264502, 52.251901], [-122.265643, 52.251047], [-122.266046, 52.250397], [-122.266177, 52.249536], [-122.267377, 52.247725], [-122.267676, 52.246731], [-122.268255, 52.245665], [-122.269129, 52.244635], [-122.26999, 52.244033], [-122.270293, 52.243689], [-122.270394, 52.242971], [-122.270835, 52.241944], [-122.271387, 52.238883], [-122.273064, 52.235843], [-122.274239, 52.234235], [-122.27526, 52.233352], [-122.275779, 52.232259], [-122.277539, 52.227614], [-122.277747, 52.226038], [-122.278508, 52.224231], [-122.27866, 52.222857], [-122.279095, 52.221989], [-122.279335, 52.220612], [-122.279768, 52.219497], [-122.279828, 52.21763], [-122.279746, 52.216871], [-122.279415, 52.216105], [-122.276557, 52.211644], [-122.272841, 52.208082], [-122.27063, 52.205785], [-122.270439, 52.205033], [-122.270363, 52.204019], [-122.269951, 52.202731], [-122.269657, 52.200323], [-122.270516, 52.196312], [-122.270371, 52.195639], [-122.270243, 52.194083], [-122.270804, 52.189993], [-122.271228, 52.188178], [-122.271704, 52.18674], [-122.272137, 52.184362], [-122.274299, 52.176405], [-122.274553, 52.17131], [-122.273365, 52.164665], [-122.273385, 52.163184], [-122.273609, 52.161381], [-122.27357, 52.160643], [-122.273399, 52.159902], [-122.272628, 52.158397], [-122.272385, 52.157696], [-122.256381, 52.157761], [-122.238964, 52.157067], [-122.217037, 52.154433], [-122.191961, 52.151604], [-122.192363, 52.154678], [-122.192699, 52.154647], [-122.192801, 52.154684], [-122.192912, 52.155009], [-122.19307, 52.15518], [-122.193505, 52.155345], [-122.193924, 52.15559], [-122.194405, 52.155657], [-122.194667, 52.155794], [-122.195531, 52.156546], [-122.195769, 52.156224], [-122.196312, 52.156101], [-122.196626, 52.155929], [-122.196968, 52.155949], [-122.196914, 52.157667], [-122.193832, 52.157617], [-122.201737, 52.160997], [-122.201424, 52.163948], [-122.19974, 52.163004], [-122.199083, 52.162735], [-122.198326, 52.16254], [-122.194477, 52.161987], [-122.193788, 52.161819], [-122.193771, 52.163927], [-122.193147, 52.163956], [-122.181246, 52.163749], [-122.177214, 52.163855], [-122.172329, 52.163628], [-122.172295, 52.163951], [-122.172875, 52.164751], [-122.173012, 52.165157], [-122.172955, 52.165966], [-122.172526, 52.166369], [-122.171117, 52.167212], [-122.169619, 52.168323], [-122.168905, 52.168683], [-122.168927, 52.17142], [-122.16499, 52.171529], [-122.159958, 52.171473], [-122.15766, 52.171503], [-122.157649, 52.169598], [-122.157817, 52.167531], [-122.15682, 52.167334], [-122.156511, 52.16742], [-122.147075, 52.167385], [-122.147106, 52.165302], [-122.146587, 52.16323], [-122.146567, 52.162874], [-122.146901, 52.162474], [-122.147132, 52.161849], [-122.147131, 52.160044], [-122.147271, 52.159386], [-122.148539, 52.157122], [-122.148927, 52.156259], [-122.148982, 52.155766], [-122.148922, 52.155176], [-122.148622, 52.154591], [-122.148073, 52.153953], [-122.146552, 52.152842], [-122.145648, 52.151995], [-122.145052, 52.151247], [-122.144245, 52.1498], [-122.131644, 52.149933], [-122.131556, 52.14598], [-122.130987, 52.145805], [-122.130497, 52.14555], [-122.130095, 52.145255], [-122.129125, 52.142563], [-122.129564, 52.135769], [-122.129185, 52.135398], [-122.127889, 52.135255], [-122.117947, 52.135465], [-122.117636, 52.128174], [-122.106133, 52.128361], [-122.10648, 52.124419], [-122.091013, 52.124586], [-122.090608, 52.135576], [-122.06845, 52.135261], [-122.068903, 52.141813], [-122.044605, 52.141494], [-122.044429, 52.155509], [-122.043859, 52.16799], [-122.043514, 52.171763], [-122.043486, 52.174652], [-122.048894, 52.178058], [-122.057709, 52.177901], [-122.062642, 52.177912], [-122.065453, 52.178335], [-122.066512, 52.178587], [-122.067318, 52.178957], [-122.067669, 52.179216], [-122.068082, 52.179684], [-122.069355, 52.180651], [-122.077321, 52.184567], [-122.077374, 52.185386], [-122.078262, 52.191332], [-122.078324, 52.196728], [-122.076701, 52.19788], [-122.075798, 52.198641], [-122.074676, 52.1976], [-122.070284, 52.197555], [-122.068355, 52.196356], [-122.070064, 52.214652], [-122.047174, 52.232961], [-122.044592, 52.235273], [-122.04406, 52.242192], [-122.05965, 52.243318], [-122.094578, 52.243037], [-122.092061, 52.258145], [-122.144862, 52.259805], [-122.148214, 52.259995], [-122.146129, 52.279707], [-122.146133, 52.282278], [-122.121896, 52.281646], [-122.121925, 52.279941], [-122.122507, 52.271995], [-122.075017, 52.271022], [-122.075493, 52.265986], [-122.075559, 52.264236], [-122.065785, 52.263906], [-122.042027, 52.263459], [-122.015816, 52.262792], [-122.01559, 52.277175], [-122.015289, 52.285937], [-122.014683, 52.313523], [-122.024107, 52.313845], [-122.024417, 52.321984], [-122.013453, 52.322176], [-122.012348, 52.340789], [-122.011582, 52.362218], [-122.011594, 52.38982], [-122.014479, 52.389908], [-122.024053, 52.39043], [-122.023877, 52.400437], [-122.023645, 52.407111], [-122.032796, 52.418904], [-122.039253, 52.426807], [-122.039275, 52.439878], [-122.038626, 52.46757], [-122.039393, 52.471666], [-122.039921, 52.500479], [-122.040666, 52.500656], [-122.041244, 52.500638], [-122.042366, 52.500524], [-122.04742, 52.499774], [-122.052086, 52.500005], [-122.052803, 52.500252], [-122.058298, 52.5], [-122.05931, 52.50615], [-122.064884, 52.505931], [-122.064269, 52.499085], [-122.071628, 52.498852], [-122.072024, 52.503347], [-122.076887, 52.503349], [-122.085426, 52.503449], [-122.085374, 52.515116], [-122.085599, 52.527355], [-122.08607, 52.540389], [-122.093127, 52.540402], [-122.116634, 52.540749], [-122.136868, 52.540849], [-122.188433, 52.541334], [-122.249654, 52.541803], [-122.296936, 52.541855], [-122.34089, 52.542387], [-122.340076, 52.530535], [-122.355964, 52.530667]], [[-122.278181, 52.334182], [-122.281135, 52.334139], [-122.281507, 52.334623], [-122.281489, 52.334758], [-122.28173, 52.335317], [-122.282233, 52.335932], [-122.282563, 52.336517], [-122.283026, 52.336889], [-122.283092, 52.337028], [-122.267652, 52.337079], [-122.253471, 52.336874], [-122.253636, 52.333334], [-122.255351, 52.313393], [-122.27335, 52.313778], [-122.27772, 52.313917], [-122.276552, 52.315335], [-122.276266, 52.315809], [-122.275849, 52.316221], [-122.275203, 52.317179], [-122.275137, 52.317574], [-122.274911, 52.317977], [-122.275023, 52.318302], [-122.274843, 52.318435], [-122.274721, 52.318759], [-122.274903, 52.319334], [-122.275165, 52.319498], [-122.275153, 52.320199], [-122.275279, 52.320569], [-122.275578, 52.321146], [-122.275955, 52.321472], [-122.275948, 52.321778], [-122.276238, 52.321986], [-122.276576, 52.322033], [-122.276751, 52.322143], [-122.276937, 52.322413], [-122.277227, 52.322594], [-122.277119, 52.322819], [-122.277583, 52.323208], [-122.277782, 52.323632], [-122.278201, 52.323959], [-122.278502, 52.324508], [-122.278682, 52.325094], [-122.279115, 52.325492], [-122.27945, 52.325673], [-122.280284, 52.325921], [-122.280163, 52.326173], [-122.280509, 52.326427], [-122.280535, 52.32666], [-122.280781, 52.326878], [-122.280654, 52.327425], [-122.280707, 52.327858], [-122.28039, 52.328439], [-122.280592, 52.329457], [-122.280602, 52.331588], [-122.280732, 52.331777], [-122.280964, 52.331923], [-122.280754, 52.332165], [-122.280748, 52.332305], [-122.278947, 52.332322], [-122.278968, 52.332099], [-122.279621, 52.331498], [-122.279463, 52.33116], [-122.279134, 52.331146], [-122.278587, 52.332323], [-122.277674, 52.332326], [-122.278181, 52.334182]]], [[[-122.276319, 52.328836], [-122.278031, 52.328774], [-122.277731, 52.328263], [-122.277538, 52.327711], [-122.277208, 52.327303], [-122.276572, 52.327404], [-122.276791, 52.328061], [-122.276109, 52.328172], [-122.276319, 52.328836]]]]}, "properties": {"name": "Cariboo D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo D", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941010", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.191961, 52.151604], [-122.217037, 52.154433], [-122.238964, 52.157067], [-122.256381, 52.157761], [-122.272385, 52.157696], [-122.272218, 52.157214], [-122.271096, 52.155057], [-122.269901, 52.153006], [-122.269392, 52.151574], [-122.26943, 52.150963], [-122.269965, 52.149145], [-122.27041, 52.148446], [-122.27137, 52.147364], [-122.275013, 52.144353], [-122.276653, 52.142433], [-122.277477, 52.141312], [-122.278231, 52.139943], [-122.278444, 52.138565], [-122.278336, 52.137243], [-122.279098, 52.135424], [-122.279753, 52.134731], [-122.280335, 52.132491], [-122.280766, 52.13167], [-122.280924, 52.13087], [-122.280899, 52.129527], [-122.281166, 52.128288], [-122.281629, 52.127722], [-122.282149, 52.127346], [-122.283109, 52.1261], [-122.283324, 52.125041], [-122.283331, 52.124619], [-122.282652, 52.121434], [-122.282562, 52.120029], [-122.282751, 52.119066], [-122.283454, 52.117566], [-122.283768, 52.116587], [-122.283641, 52.115144], [-122.283739, 52.114372], [-122.283664, 52.111683], [-122.284073, 52.108889], [-122.284259, 52.108518], [-122.284396, 52.106352], [-122.283532, 52.104313], [-122.2831, 52.102898], [-122.282197, 52.101286], [-122.28182, 52.100886], [-122.281074, 52.099133], [-122.280391, 52.09726], [-122.28003, 52.095628], [-122.27946, 52.093909], [-122.278067, 52.091972], [-122.276557, 52.090429], [-122.276366, 52.089994], [-122.27568, 52.089071], [-122.275111, 52.087637], [-122.274841, 52.085796], [-122.274772, 52.083028], [-122.274949, 52.081891], [-122.275865, 52.079587], [-122.276196, 52.077935], [-122.276575, 52.07675], [-122.277371, 52.074651], [-122.277592, 52.074361], [-122.277813, 52.073846], [-122.277539, 52.073182], [-122.277555, 52.072611], [-122.278103, 52.070881], [-122.277954, 52.070046], [-122.277297, 52.068284], [-122.276737, 52.067332], [-122.276946, 52.066553], [-122.276269, 52.065069], [-122.276478, 52.064251], [-122.27593, 52.062701], [-122.275937, 52.0617], [-122.27573, 52.060843], [-122.275935, 52.057215], [-122.276692, 52.056391], [-122.277762, 52.055887], [-122.279298, 52.054868], [-122.279815, 52.054136], [-122.280064, 52.052887], [-122.279281, 52.0516], [-122.277745, 52.049762], [-122.274372, 52.047019], [-122.272905, 52.045461], [-122.271328, 52.043522], [-122.270445, 52.042037], [-122.270146, 52.039696], [-122.270129, 52.037196], [-122.270518, 52.034054], [-122.268809, 52.030443], [-122.268376, 52.028903], [-122.267806, 52.024922], [-122.267254, 52.022297], [-122.266846, 52.020933], [-122.266152, 52.019271], [-122.2651, 52.014275], [-122.265382, 52.01294], [-122.26631, 52.012373], [-122.266975, 52.011754], [-122.267456, 52.010404], [-122.267495, 52.00907], [-122.268204, 52.007198], [-122.270835, 52.003398], [-122.27383, 51.997553], [-122.275017, 51.994553], [-122.275539, 51.983841], [-122.275401, 51.983567], [-122.275309, 51.982694], [-122.275052, 51.982138], [-122.274809, 51.981029], [-122.273961, 51.97878], [-122.273626, 51.977555], [-122.273364, 51.975645], [-122.273309, 51.974532], [-122.272821, 51.973055], [-122.27267, 51.972065], [-122.27278, 51.970704], [-122.272737, 51.970203], [-122.273054, 51.969248], [-122.273257, 51.968986], [-122.274103, 51.968346], [-122.274612, 51.967677], [-122.275265, 51.967254], [-122.275501, 51.966938], [-122.275938, 51.965018], [-122.275923, 51.962595], [-122.276241, 51.961707], [-122.276315, 51.960594], [-122.27643, 51.960263], [-122.27702, 51.959368], [-122.276985, 51.958483], [-122.276852, 51.957724], [-122.276402, 51.956598], [-122.275801, 51.95403], [-122.275717, 51.952697], [-122.275301, 51.951217], [-122.274861, 51.949169], [-122.274043, 51.947051], [-122.273, 51.945066], [-122.27192, 51.943455], [-122.27109, 51.942729], [-122.269666, 51.941194], [-122.269061, 51.940053], [-122.269027, 51.938236], [-122.269432, 51.93675], [-122.269334, 51.935434], [-122.269539, 51.933859], [-122.270519, 51.93169], [-122.270905, 51.931009], [-122.271109, 51.930055], [-122.272847, 51.928063], [-122.273933, 51.926527], [-122.275884, 51.924432], [-122.276393, 51.924126], [-122.27721, 51.923424], [-122.278812, 51.921785], [-122.279217, 51.92151], [-122.280341, 51.921119], [-122.281351, 51.921034], [-122.281806, 51.920923], [-122.283786, 51.919906], [-122.284463, 51.919701], [-122.286643, 51.91977], [-122.287634, 51.919727], [-122.28939, 51.919034], [-122.291915, 51.917866], [-122.292666, 51.917683], [-122.293382, 51.917285], [-122.294295, 51.916193], [-122.295041, 51.915931], [-122.295694, 51.915606], [-122.296517, 51.914866], [-122.297452, 51.913075], [-122.297939, 51.912409], [-122.299101, 51.911423], [-122.299486, 51.910939], [-122.299626, 51.910006], [-122.30002, 51.909078], [-122.300681, 51.908001], [-122.301235, 51.906763], [-122.30132, 51.906168], [-122.302423, 51.904732], [-122.302744, 51.903592], [-122.303779, 51.902034], [-122.304854, 51.900936], [-122.305253, 51.900135], [-122.306252, 51.899091], [-122.3077, 51.898195], [-122.308329, 51.897496], [-122.308964, 51.897084], [-122.30982, 51.896707], [-122.310543, 51.896199], [-122.312682, 51.895489], [-122.315064, 51.89438], [-122.316298, 51.894085], [-122.316978, 51.893619], [-122.318514, 51.892894], [-122.319384, 51.892415], [-122.321072, 51.890731], [-122.322014, 51.890197], [-122.323113, 51.88932], [-122.323992, 51.888306], [-122.326112, 51.886377], [-122.327089, 51.885735], [-122.32824, 51.885236], [-122.328895, 51.885037], [-122.331355, 51.884522], [-122.333271, 51.884213], [-122.336647, 51.883214], [-122.337898, 51.883126], [-122.339977, 51.882814], [-122.341888, 51.881739], [-122.343959, 51.881105], [-122.345455, 51.880783], [-122.347748, 51.880579], [-122.34916, 51.880651], [-122.34967, 51.880512], [-122.350668, 51.879961], [-122.35404, 51.879313], [-122.355621, 51.879278], [-122.356852, 51.879367], [-122.357791, 51.879547], [-122.359965, 51.879793], [-122.365343, 51.879282], [-122.366247, 51.879292], [-122.36815, 51.879555], [-122.368977, 51.879601], [-122.374348, 51.879427], [-122.37526, 51.879551], [-122.380225, 51.879319], [-122.383549, 51.879347], [-122.385651, 51.879266], [-122.387703, 51.879411], [-122.390306, 51.879958], [-122.392308, 51.880121], [-122.396005, 51.880199], [-122.396555, 51.880129], [-122.39818, 51.879535], [-122.399133, 51.879272], [-122.400248, 51.87867], [-122.401547, 51.877695], [-122.402248, 51.876577], [-122.402413, 51.87608], [-122.402072, 51.874821], [-122.402007, 51.873958], [-122.400953, 51.871376], [-122.399876, 51.870855], [-122.397796, 51.86924], [-122.395711, 51.86825], [-122.393977, 51.867256], [-122.393535, 51.8668], [-122.392044, 51.865662], [-122.389349, 51.862864], [-122.388763, 51.862036], [-122.388388, 51.861357], [-122.386645, 51.859558], [-122.386145, 51.858756], [-122.385951, 51.858054], [-122.386404, 51.85666], [-122.387259, 51.855855], [-122.390154, 51.854046], [-122.390941, 51.853662], [-122.393049, 51.852954], [-122.394196, 51.852316], [-122.395903, 51.851628], [-122.397072, 51.851268], [-122.398172, 51.85109], [-122.399171, 51.85082], [-122.400821, 51.850178], [-122.401617, 51.849673], [-122.402349, 51.848639], [-122.402773, 51.847499], [-122.402521, 51.846034], [-122.401761, 51.84491], [-122.401617, 51.844423], [-122.401887, 51.842909], [-122.40234, 51.842057], [-122.402646, 51.840561], [-122.402165, 51.839904], [-122.401609, 51.839723], [-122.40137, 51.839526], [-122.401186, 51.839045], [-122.401195, 51.837773], [-122.40025, 51.83696], [-122.400097, 51.836527], [-122.400185, 51.835633], [-122.400534, 51.833927], [-122.401091, 51.832972], [-122.401461, 51.832153], [-122.401916, 51.828631], [-122.402337, 51.827321], [-122.403184, 51.825205], [-122.404232, 51.823846], [-122.405799, 51.822318], [-122.407649, 51.821544], [-122.408251, 51.820962], [-122.408667, 51.82024], [-122.408762, 51.819591], [-122.408681, 51.817574], [-122.409002, 51.816795], [-122.409068, 51.816236], [-122.408388, 51.814288], [-122.408144, 51.813924], [-122.406883, 51.812762], [-122.406886, 51.812459], [-122.407066, 51.812099], [-122.406724, 51.810893], [-122.407121, 51.809396], [-122.407206, 51.808398], [-122.407099, 51.807478], [-122.406366, 51.806254], [-122.405207, 51.805371], [-122.404633, 51.804786], [-122.404075, 51.803604], [-122.403844, 51.801843], [-122.404108, 51.801232], [-122.404447, 51.798545], [-122.404464, 51.797306], [-122.40485, 51.796292], [-122.405073, 51.795943], [-122.405476, 51.794532], [-122.405838, 51.792506], [-122.405669, 51.792269], [-122.404555, 51.791243], [-122.403028, 51.79025], [-122.401913, 51.789747], [-122.400852, 51.789041], [-122.400304, 51.788829], [-122.399201, 51.788531], [-122.398602, 51.788266], [-122.397643, 51.787437], [-122.397257, 51.786891], [-122.396061, 51.786241], [-122.394541, 51.785099], [-122.393904, 51.784318], [-122.393381, 51.783841], [-122.392832, 51.782604], [-122.392626, 51.781174], [-122.392851, 51.780717], [-122.39364, 51.779647], [-122.394094, 51.778126], [-122.393543, 51.775739], [-122.393036, 51.774869], [-122.392295, 51.774222], [-122.391809, 51.77386], [-122.391268, 51.773808], [-122.390798, 51.773631], [-122.389972, 51.772848], [-122.388918, 51.772176], [-122.388925, 51.771807], [-122.388613, 51.771187], [-122.388783, 51.76924], [-122.389041, 51.768488], [-122.38903, 51.768105], [-122.389238, 51.767174], [-122.390306, 51.764754], [-122.390725, 51.763091], [-122.390725, 51.761363], [-122.390484, 51.759519], [-122.390598, 51.757261], [-122.390864, 51.755143], [-122.39214, 51.752274], [-122.393064, 51.750623], [-122.396668, 51.745479], [-122.399108, 51.742808], [-122.399397, 51.742364], [-122.399305, 51.739993], [-122.39922, 51.739682], [-122.398875, 51.739083], [-122.39868, 51.738242], [-122.398643, 51.737519], [-122.398963, 51.736787], [-122.399008, 51.735843], [-122.39861, 51.734723], [-122.39844, 51.734511], [-122.398533, 51.732657], [-122.398443, 51.732223], [-122.397941, 51.731553], [-122.396671, 51.730325], [-122.396038, 51.729925], [-122.393531, 51.728806], [-122.392711, 51.728729], [-122.391953, 51.72873], [-122.39018, 51.72821], [-122.389749, 51.728059], [-122.389104, 51.727678], [-122.38781, 51.727319], [-122.386576, 51.727111], [-122.386159, 51.726901], [-122.384493, 51.726691], [-122.38376, 51.726396], [-122.381471, 51.725242], [-122.380841, 51.724828], [-122.377006, 51.723859], [-122.37569, 51.723623], [-122.372786, 51.722585], [-122.370202, 51.721941], [-122.364607, 51.720997], [-122.363356, 51.720535], [-122.362957, 51.720282], [-122.362504, 51.719441], [-122.362089, 51.7186], [-122.361905, 51.717626], [-122.360512, 51.715858], [-122.36001, 51.713975], [-122.359764, 51.713725], [-122.358567, 51.712923], [-122.358456, 51.712481], [-122.358232, 51.712148], [-122.355709, 51.709943], [-122.354514, 51.707929], [-122.354288, 51.707706], [-122.354357, 51.706897], [-122.353995, 51.705756], [-122.353696, 51.705198], [-122.353032, 51.704504], [-122.351941, 51.703888], [-122.351507, 51.703473], [-122.351426, 51.702425], [-122.351484, 51.702191], [-122.351885, 51.701704], [-122.352411, 51.70123], [-122.353715, 51.700618], [-122.354278, 51.700438], [-122.355196, 51.69998], [-122.355751, 51.699463], [-122.355936, 51.699421], [-122.356244, 51.698914], [-122.35624, 51.698611], [-122.357378, 51.697472], [-122.357415, 51.696443], [-122.357863, 51.695978], [-122.358314, 51.69511], [-122.358592, 51.694022], [-122.359342, 51.692582], [-122.359791, 51.69194], [-122.359881, 51.691605], [-122.359761, 51.689946], [-122.358017, 51.68726], [-122.355173, 51.684967], [-122.354304, 51.6845], [-122.352533, 51.683134], [-122.350945, 51.682166], [-122.350454, 51.681761], [-122.349164, 51.680351], [-122.348403, 51.679357], [-122.347754, 51.678258], [-122.347587, 51.677783], [-122.347195, 51.67709], [-122.346891, 51.676051], [-122.346855, 51.675432], [-122.346493, 51.674596], [-122.34502, 51.67319], [-122.344359, 51.672659], [-122.341956, 51.66874], [-122.341667, 51.668475], [-122.340843, 51.668006], [-122.338732, 51.667126], [-122.338, 51.666464], [-122.337165, 51.666021], [-122.336632, 51.665601], [-122.336194, 51.664662], [-122.335904, 51.663756], [-122.335673, 51.6634], [-122.335578, 51.662722], [-122.336397, 51.661104], [-122.337296, 51.658461], [-122.337597, 51.656671], [-122.335471, 51.654722], [-122.335005, 51.654443], [-122.334508, 51.65417], [-122.332784, 51.653604], [-122.331479, 51.652867], [-122.329949, 51.652279], [-122.328222, 51.651122], [-122.326406, 51.649823], [-122.325478, 51.648982], [-122.324912, 51.648026], [-122.324301, 51.647362], [-122.323899, 51.646431], [-122.323877, 51.645525], [-122.324248, 51.644464], [-122.324772, 51.643676], [-122.325304, 51.643182], [-122.325998, 51.642857], [-122.326362, 51.642544], [-122.327581, 51.641862], [-122.328138, 51.641134], [-122.328156, 51.639911], [-122.327641, 51.638727], [-122.327655, 51.636914], [-122.327398, 51.635809], [-122.327455, 51.634831], [-122.327234, 51.634029], [-122.325826, 51.631103], [-122.325318, 51.63038], [-122.323852, 51.628604], [-122.323567, 51.627741], [-122.323115, 51.6252], [-122.322207, 51.623977], [-122.321899, 51.62375], [-122.320581, 51.622195], [-122.318954, 51.621345], [-122.316808, 51.620654], [-122.315557, 51.620059], [-122.314229, 51.61911], [-122.313237, 51.617996], [-122.312599, 51.616863], [-122.311116, 51.615087], [-122.31049, 51.614852], [-122.309695, 51.614383], [-122.309176, 51.613991], [-122.308716, 51.613157], [-122.308095, 51.612499], [-122.307306, 51.611065], [-122.307259, 51.610217], [-122.307352, 51.609531], [-122.307522, 51.609089], [-122.307443, 51.608085], [-122.307586, 51.60767], [-122.307956, 51.607128], [-122.308609, 51.605896], [-122.309403, 51.605398], [-122.309974, 51.603586], [-122.309588, 51.602612], [-122.308685, 51.60158], [-122.308102, 51.601196], [-122.307361, 51.600349], [-122.305185, 51.599255], [-122.304166, 51.598395], [-122.303435, 51.597559], [-122.302668, 51.596653], [-122.301847, 51.5951], [-122.301779, 51.594749], [-122.301117, 51.593674], [-122.29926, 51.59172], [-122.298626, 51.590756], [-122.2984, 51.589106], [-122.297339, 51.587697], [-122.295752, 51.586251], [-122.294863, 51.585701], [-122.293911, 51.58462], [-122.293737, 51.584068], [-122.29481, 51.582028], [-122.295224, 51.580544], [-122.295881, 51.579429], [-122.297307, 51.578063], [-122.297905, 51.577298], [-122.298043, 51.57682], [-122.297841, 51.575495], [-122.298146, 51.574673], [-122.298181, 51.574072], [-122.298034, 51.573325], [-122.29593, 51.57197], [-122.295159, 51.571191], [-122.294889, 51.570755], [-122.295415, 51.568027], [-122.296151, 51.566567], [-122.296494, 51.564251], [-122.296878, 51.563211], [-122.297077, 51.562202], [-122.29674, 51.560883], [-122.296569, 51.559822], [-122.296265, 51.559148], [-122.294923, 51.556787], [-122.293584, 51.555674], [-122.292484, 51.554595], [-122.292034, 51.553822], [-122.291643, 51.552939], [-122.2612, 51.553707], [-122.254738, 51.553643], [-122.254897, 51.552823], [-122.219188, 51.552108], [-122.219281, 51.544832], [-122.179112, 51.544446], [-122.178957, 51.536304], [-122.179039, 51.51611], [-122.164239, 51.516086], [-122.055606, 51.516377], [-122.000031, 51.516316], [-121.946364, 51.517002], [-121.948752, 51.572463], [-121.947537, 51.580195], [-121.947291, 51.583905], [-121.943339, 51.617417], [-121.941038, 51.639769], [-121.941429, 51.643145], [-121.944293, 51.661291], [-121.949406, 51.691394], [-121.954811, 51.702093], [-121.955045, 51.731861], [-121.978777, 51.732178], [-121.979342, 51.794051], [-121.9755, 51.794131], [-121.975075, 51.801684], [-121.979656, 51.801656], [-121.978892, 51.855005], [-121.971916, 51.854928], [-121.971125, 51.863723], [-121.978279, 51.864015], [-121.978136, 51.875564], [-121.870778, 51.875849], [-121.835772, 51.875819], [-121.836128, 51.896564], [-121.837245, 51.925275], [-121.837783, 51.955214], [-121.83805, 51.962025], [-121.83852, 51.980918], [-121.838964, 51.985551], [-121.84597, 51.985905], [-121.855913, 51.98616], [-121.855575, 51.989022], [-121.854769, 51.993122], [-121.88394, 51.992121], [-121.883114, 51.999971], [-121.891492, 51.999956], [-121.892024, 52.005805], [-121.877162, 52.005963], [-121.876102, 52.014039], [-121.890439, 52.014297], [-121.89063, 52.021798], [-121.901482, 52.020883], [-121.902537, 52.035847], [-121.91271, 52.034107], [-121.913281, 52.043412], [-121.92813, 52.043425], [-121.928056, 52.052456], [-121.938588, 52.052155], [-121.939397, 52.058194], [-121.950978, 52.058149], [-121.951563, 52.061227], [-121.951485, 52.061837], [-121.951746, 52.062596], [-121.952325, 52.066918], [-121.95565, 52.066799], [-121.98716, 52.066881], [-121.987054, 52.077828], [-121.988401, 52.087782], [-122.000329, 52.087783], [-122.000585, 52.087919], [-122.000798, 52.088181], [-122.000689, 52.088494], [-122.00086, 52.088748], [-122.000544, 52.089105], [-122.000629, 52.089259], [-122.00073, 52.089331], [-122.001561, 52.08941], [-122.002166, 52.089631], [-122.002102, 52.089945], [-122.001556, 52.090202], [-122.001407, 52.090363], [-122.001433, 52.090469], [-122.001766, 52.090653], [-122.001819, 52.090833], [-122.00143, 52.09128], [-122.001617, 52.091425], [-122.00214, 52.091519], [-122.002268, 52.091691], [-122.002645, 52.091792], [-122.002611, 52.091963], [-122.002507, 52.092043], [-122.001993, 52.092228], [-122.002007, 52.092291], [-122.0025, 52.092412], [-122.002344, 52.092878], [-122.002979, 52.093127], [-122.003009, 52.09319], [-122.002801, 52.093349], [-122.008008, 52.091904], [-122.007267, 52.093318], [-122.007157, 52.093941], [-122.007408, 52.094849], [-122.008532, 52.097285], [-122.008828, 52.097667], [-122.010831, 52.099302], [-122.01167, 52.099791], [-122.013019, 52.100405], [-122.013808, 52.100874], [-122.014623, 52.101421], [-122.015901, 52.102507], [-122.016239, 52.102722], [-122.01735, 52.103224], [-122.02323, 52.105055], [-122.023782, 52.105315], [-122.024557, 52.105897], [-122.029221, 52.105606], [-122.030958, 52.105655], [-122.030817, 52.108724], [-122.029635, 52.108588], [-122.029081, 52.108369], [-122.029217, 52.110645], [-122.03955, 52.11122], [-122.056721, 52.113446], [-122.064821, 52.115372], [-122.064582, 52.10687], [-122.064191, 52.099767], [-122.106191, 52.09948], [-122.117649, 52.099765], [-122.117587, 52.101688], [-122.118318, 52.101703], [-122.118329, 52.103408], [-122.119699, 52.103432], [-122.119789, 52.106818], [-122.137389, 52.106801], [-122.13953, 52.106848], [-122.145011, 52.107295], [-122.147726, 52.107163], [-122.147698, 52.10816], [-122.147843, 52.108954], [-122.148533, 52.110601], [-122.149578, 52.110818], [-122.149947, 52.110957], [-122.150174, 52.111112], [-122.15045, 52.111606], [-122.150459, 52.112213], [-122.161058, 52.114331], [-122.170496, 52.114514], [-122.170213, 52.121286], [-122.175452, 52.121031], [-122.175507, 52.121702], [-122.17539, 52.121964], [-122.174701, 52.13484], [-122.17499, 52.138037], [-122.175152, 52.145886], [-122.177854, 52.145978], [-122.178131, 52.143383], [-122.191961, 52.151604]], [[-122.177392, 51.82798], [-122.18617, 51.828037], [-122.186212, 51.828934], [-122.185669, 51.843392], [-122.170093, 51.843164], [-122.16973, 51.843289], [-122.169356, 51.84327], [-122.164776, 51.843552], [-122.154659, 51.843108], [-122.156922, 51.828242], [-122.177392, 51.82798]], [[-122.108102, 51.861426], [-122.073863, 51.861888], [-122.073476, 51.847783], [-122.078376, 51.847762], [-122.078368, 51.841742], [-122.101393, 51.841695], [-122.101302, 51.847772], [-122.10809, 51.847823], [-122.108102, 51.861426]], [[-122.114843, 51.828999], [-122.110167, 51.829045], [-122.109684, 51.825201], [-122.084247, 51.826137], [-122.081894, 51.826335], [-122.081875, 51.814925], [-122.083286, 51.8149], [-122.108394, 51.815297], [-122.10855, 51.819739], [-122.112971, 51.819318], [-122.118547, 51.818942], [-122.121963, 51.81901], [-122.121849, 51.821824], [-122.127469, 51.821828], [-122.136011, 51.82195], [-122.135924, 51.823539], [-122.135611, 51.825726], [-122.122801, 51.825732], [-122.12278, 51.826074], [-122.123229, 51.82925], [-122.114843, 51.828999]], [[-122.20812, 51.792776], [-122.208649, 51.783285], [-122.238886, 51.784052], [-122.243968, 51.783955], [-122.246744, 51.784347], [-122.24772, 51.784278], [-122.247793, 51.786879], [-122.243, 51.788856], [-122.241271, 51.789153], [-122.240854, 51.789113], [-122.239358, 51.789161], [-122.238857, 51.789088], [-122.237562, 51.789161], [-122.237026, 51.793306], [-122.20812, 51.792776]], [[-122.105082, 51.844943], [-122.104969, 51.841195], [-122.104541, 51.838412], [-122.123044, 51.837428], [-122.123711, 51.84329], [-122.124076, 51.845307], [-122.105082, 51.844943]], [[-122.217188, 51.58415], [-122.217047, 51.590628], [-122.195293, 51.59079], [-122.19517, 51.582952], [-122.19505, 51.582381], [-122.212685, 51.582085], [-122.213177, 51.584936], [-122.21468, 51.584266], [-122.216579, 51.583516], [-122.217188, 51.58415]], [[-122.105667, 51.590163], [-122.105413, 51.60108], [-122.079165, 51.600562], [-122.079728, 51.589705], [-122.105667, 51.590163]]]]}, "properties": {"name": "Cariboo E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo E", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941012", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.504441, 53.033807], [-122.525595, 53.033817], [-122.525933, 53.031828], [-122.525922, 53.031369], [-122.525797, 53.030951], [-122.525212, 53.030081], [-122.521551, 53.026666], [-122.52844, 53.026368], [-122.530051, 53.026464], [-122.527967, 53.020562], [-122.526887, 53.019112], [-122.526921, 53.017217], [-122.52739, 53.016371], [-122.528381, 53.015191], [-122.522532, 53.01524], [-122.519497, 53.009632], [-122.51865, 53.00954], [-122.519081, 53.008936], [-122.519377, 53.007622], [-122.518688, 53.006405], [-122.516977, 53.004756], [-122.51528, 53.004429], [-122.513531, 53.003976], [-122.512755, 53.003071], [-122.513349, 53.002007], [-122.512763, 53.001261], [-122.511911, 53.000808], [-122.512834, 52.999397], [-122.512948, 52.998853], [-122.512932, 52.998452], [-122.513779, 52.998489], [-122.514072, 52.997671], [-122.514995, 52.997603], [-122.518115, 53.000649], [-122.521252, 53.001964], [-122.521937, 53.001325], [-122.523817, 53.00034], [-122.521513, 52.997748], [-122.522488, 52.99747], [-122.5227, 52.997341], [-122.522413, 52.99721], [-122.523238, 52.996693], [-122.520089, 52.994824], [-122.527687, 52.994732], [-122.527004, 52.990789], [-122.517618, 52.991188], [-122.517414, 52.991037], [-122.516085, 52.991019], [-122.515561, 52.990302], [-122.515103, 52.990281], [-122.514801, 52.988033], [-122.517833, 52.987783], [-122.517459, 52.987631], [-122.521211, 52.98772], [-122.526798, 52.987663], [-122.526762, 52.984979], [-122.539315, 52.985114], [-122.539445, 52.978337], [-122.538114, 52.978303], [-122.537719, 52.976706], [-122.53696, 52.976743], [-122.536418, 52.974659], [-122.536095, 52.975013], [-122.533067, 52.97304], [-122.532717, 52.973279], [-122.531015, 52.973534], [-122.530863, 52.971414], [-122.522157, 52.971294], [-122.521842, 52.959454], [-122.521636, 52.959019], [-122.520736, 52.95793], [-122.517679, 52.954483], [-122.51294, 52.954164], [-122.512335, 52.95362], [-122.508709, 52.951522], [-122.504144, 52.949349], [-122.503486, 52.94909], [-122.500399, 52.948454], [-122.498882, 52.947983], [-122.496265, 52.947503], [-122.493531, 52.946576], [-122.491396, 52.945468], [-122.4901, 52.944229], [-122.48973, 52.943096], [-122.489657, 52.941852], [-122.49014, 52.940483], [-122.490653, 52.939808], [-122.482654, 52.939447], [-122.48215, 52.950316], [-122.489068, 52.950398], [-122.496678, 52.950604], [-122.499063, 52.951079], [-122.501829, 52.951307], [-122.503329, 52.951502], [-122.506295, 52.952368], [-122.508624, 52.953241], [-122.509971, 52.953912], [-122.510885, 52.9545], [-122.511737, 52.9556], [-122.511851, 52.955979], [-122.511706, 52.956984], [-122.510889, 52.958222], [-122.510418, 52.95911], [-122.508762, 52.960784], [-122.507799, 52.961499], [-122.504976, 52.963816], [-122.50437, 52.964676], [-122.502636, 52.966485], [-122.501328, 52.967603], [-122.500457, 52.968211], [-122.499855, 52.968765], [-122.496734, 52.968652], [-122.496737, 52.968219], [-122.496048, 52.968236], [-122.495187, 52.968621], [-122.495104, 52.968747], [-122.469112, 52.968573], [-122.464444, 52.968448], [-122.464258, 52.970704], [-122.464496, 52.973414], [-122.464917, 52.97652], [-122.463873, 52.978716], [-122.45174, 52.978536], [-122.451717, 52.978043], [-122.450075, 52.978022], [-122.450051, 52.977681], [-122.448877, 52.977638], [-122.448297, 52.977698], [-122.447135, 52.977683], [-122.446496, 52.977572], [-122.44565, 52.977228], [-122.444431, 52.977141], [-122.444045, 52.977021], [-122.442965, 52.976477], [-122.441571, 52.976057], [-122.44039, 52.975099], [-122.439739, 52.97476], [-122.440886, 52.974679], [-122.440668, 52.974547], [-122.440614, 52.974362], [-122.441202, 52.972303], [-122.441664, 52.971697], [-122.440922, 52.971597], [-122.44212, 52.967538], [-122.446084, 52.967522], [-122.446085, 52.964561], [-122.442944, 52.96456], [-122.443981, 52.960822], [-122.443608, 52.960734], [-122.438025, 52.96097], [-122.428477, 52.961013], [-122.418448, 52.96138], [-122.413177, 52.961464], [-122.413354, 52.961999], [-122.41404, 52.962783], [-122.414639, 52.962953], [-122.415249, 52.964234], [-122.41616, 52.965689], [-122.416514, 52.96592], [-122.417049, 52.96653], [-122.418563, 52.96685], [-122.420097, 52.967316], [-122.421457, 52.967382], [-122.42254, 52.96804], [-122.422091, 52.968599], [-122.417601, 52.968312], [-122.417562, 52.968274], [-122.413659, 52.969772], [-122.412076, 52.969859], [-122.410252, 52.969264], [-122.408883, 52.968192], [-122.409028, 52.967135], [-122.405667, 52.967144], [-122.405293, 52.966994], [-122.40418, 52.966996], [-122.40402, 52.970725], [-122.402314, 52.970639], [-122.402023, 52.974867], [-122.396263, 52.974793], [-122.395615, 52.987077], [-122.401686, 52.987097], [-122.401174, 52.995747], [-122.405257, 52.996629], [-122.406097, 52.996671], [-122.413596, 52.996178], [-122.419771, 52.995886], [-122.427286, 52.996445], [-122.431346, 52.996555], [-122.433712, 52.996517], [-122.438317, 52.996304], [-122.440944, 52.996385], [-122.445778, 52.997013], [-122.449535, 52.997369], [-122.453651, 52.998037], [-122.455687, 52.998618], [-122.459086, 53.0], [-122.460085, 53.000545], [-122.461758, 53.001745], [-122.46277, 53.00275], [-122.463136, 53.002975], [-122.468402, 53.005328], [-122.473823, 53.006018], [-122.482005, 53.006714], [-122.489929, 53.004611], [-122.489883, 53.010908], [-122.490056, 53.015898], [-122.491798, 53.015659], [-122.495007, 53.015471], [-122.49559, 53.015796], [-122.497445, 53.018652], [-122.501265, 53.023405], [-122.500942, 53.030745], [-122.504441, 53.033807]], [[-122.503458, 52.991771], [-122.497862, 52.991902], [-122.497876, 52.991731], [-122.497654, 52.991411], [-122.496279, 52.99057], [-122.493111, 52.987952], [-122.494146, 52.987495], [-122.495853, 52.987663], [-122.497741, 52.987363], [-122.498742, 52.987132], [-122.499293, 52.987433], [-122.500058, 52.987664], [-122.501178, 52.987783], [-122.501729, 52.987754], [-122.5026, 52.989072], [-122.502818, 52.989692], [-122.502953, 52.990896], [-122.503458, 52.991771]], [[-122.432285, 52.973158], [-122.427426, 52.973062], [-122.426233, 52.972915], [-122.426234, 52.971657], [-122.426373, 52.971288], [-122.426614, 52.970979], [-122.426531, 52.970522], [-122.42691, 52.970288], [-122.425343, 52.969323], [-122.432069, 52.969508], [-122.432285, 52.973158]]]]}, "properties": {"name": "Quesnel", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Quesnel", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941013", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.18497, 52.714097], [-122.188023, 52.714134], [-122.192871, 52.704139], [-122.221857, 52.70234], [-122.238007, 52.697837], [-122.244784, 52.693401], [-122.248113, 52.688295], [-122.248477, 52.683422], [-122.246954, 52.675306], [-122.242234, 52.670143], [-122.236799, 52.663805], [-122.234788, 52.656741], [-122.234463, 52.64752], [-122.236965, 52.638888], [-122.235608, 52.634559], [-122.232314, 52.630664], [-122.225884, 52.624763], [-122.22434, 52.622255], [-122.224153, 52.618967], [-122.22554, 52.614273], [-122.230111, 52.612718], [-122.244287, 52.612824], [-122.249932, 52.60608], [-122.239983, 52.598361], [-122.234803, 52.595043], [-122.231561, 52.592543], [-122.215578, 52.582415], [-122.207556, 52.573549], [-122.205645, 52.568192], [-122.211529, 52.563538], [-122.224094, 52.554153], [-122.231873, 52.546622], [-122.233744, 52.542002], [-122.233785, 52.541685], [-122.136868, 52.540849], [-122.116634, 52.540749], [-122.093127, 52.540402], [-122.08607, 52.540389], [-122.085599, 52.527355], [-122.085374, 52.515116], [-122.085426, 52.503449], [-122.076887, 52.503349], [-122.072024, 52.503347], [-122.071628, 52.498852], [-122.064269, 52.499085], [-122.064884, 52.505931], [-122.05931, 52.50615], [-122.058298, 52.5], [-122.052803, 52.500252], [-122.052086, 52.500005], [-122.04742, 52.499774], [-122.042366, 52.500524], [-122.041244, 52.500638], [-122.040666, 52.500656], [-122.039921, 52.500479], [-122.039393, 52.471666], [-122.038626, 52.46757], [-122.039275, 52.439878], [-122.039253, 52.426807], [-122.032796, 52.418904], [-122.023645, 52.407111], [-122.023877, 52.400437], [-122.024053, 52.39043], [-122.014479, 52.389908], [-122.011594, 52.38982], [-122.011582, 52.362218], [-122.012348, 52.340789], [-122.013453, 52.322176], [-122.024417, 52.321984], [-122.024107, 52.313845], [-122.014683, 52.313523], [-122.015289, 52.285937], [-122.01559, 52.277175], [-122.015816, 52.262792], [-122.042027, 52.263459], [-122.04406, 52.242192], [-122.044592, 52.235273], [-122.047174, 52.232961], [-122.070064, 52.214652], [-122.070086, 52.214492], [-122.068355, 52.196356], [-122.062797, 52.193277], [-122.050462, 52.185915], [-122.03702, 52.188329], [-122.037303, 52.185801], [-122.043266, 52.185935], [-122.043738, 52.18029], [-122.040672, 52.178163], [-122.038767, 52.178105], [-122.02349, 52.170143], [-122.039062, 52.170307], [-122.039763, 52.17108], [-122.040849, 52.171965], [-122.043476, 52.173411], [-122.043544, 52.17123], [-122.043859, 52.16799], [-122.044429, 52.155509], [-122.044605, 52.141494], [-122.068903, 52.141813], [-122.06845, 52.135261], [-122.090608, 52.135576], [-122.090897, 52.127831], [-122.083628, 52.127785], [-122.083635, 52.12704], [-122.082952, 52.124856], [-122.082178, 52.124932], [-122.081695, 52.123478], [-122.080454, 52.118655], [-122.064821, 52.115372], [-122.056721, 52.113446], [-122.03955, 52.11122], [-122.029217, 52.110645], [-122.029081, 52.108369], [-122.028724, 52.108212], [-122.028139, 52.108199], [-122.027434, 52.108365], [-122.026455, 52.109094], [-122.026063, 52.109692], [-122.025753, 52.109824], [-122.025563, 52.109841], [-122.025449, 52.109678], [-122.025675, 52.10942], [-122.025695, 52.109159], [-122.025901, 52.109025], [-122.02589, 52.108855], [-122.025805, 52.1088], [-122.025194, 52.108741], [-122.024678, 52.108863], [-122.024324, 52.109084], [-122.024105, 52.109047], [-122.023921, 52.108802], [-122.023847, 52.108172], [-122.023175, 52.10752], [-122.022155, 52.107368], [-122.021412, 52.10737], [-122.021294, 52.107423], [-122.021187, 52.107665], [-122.021195, 52.107899], [-122.021362, 52.108269], [-122.021836, 52.108659], [-122.021866, 52.109297], [-122.021992, 52.109515], [-122.022266, 52.109625], [-122.023072, 52.11018], [-122.023574, 52.110625], [-122.024241, 52.110828], [-122.024718, 52.111066], [-122.025184, 52.111788], [-122.025035, 52.111914], [-122.024624, 52.111991], [-122.023425, 52.112062], [-122.022199, 52.112052], [-122.021881, 52.111968], [-122.021837, 52.111897], [-122.022062, 52.111692], [-122.021961, 52.111609], [-122.0217, 52.111545], [-122.020971, 52.111538], [-122.020646, 52.111653], [-122.020482, 52.111795], [-122.020493, 52.111929], [-122.021253, 52.111927], [-122.02122, 52.112062], [-122.020317, 52.11272], [-122.020238, 52.112908], [-122.020308, 52.113097], [-122.021033, 52.113993], [-122.021751, 52.114593], [-122.022341, 52.114939], [-122.022971, 52.115555], [-122.024106, 52.116366], [-122.024817, 52.116578], [-122.028603, 52.117049], [-122.028979, 52.117269], [-122.029924, 52.117484], [-122.030439, 52.117663], [-122.03033, 52.119802], [-122.030362, 52.121374], [-122.030108, 52.12421], [-122.025213, 52.124371], [-122.01384, 52.124314], [-122.013769, 52.125663], [-122.007231, 52.125608], [-122.006902, 52.124316], [-121.976418, 52.124303], [-121.956775, 52.123173], [-121.958521, 52.087599], [-121.961367, 52.087661], [-121.988401, 52.087782], [-121.987054, 52.077828], [-121.98716, 52.066881], [-121.95565, 52.066799], [-121.952325, 52.066918], [-121.951746, 52.062596], [-121.951485, 52.061837], [-121.951563, 52.061227], [-121.950978, 52.058149], [-121.939397, 52.058194], [-121.938588, 52.052155], [-121.928056, 52.052456], [-121.92813, 52.043425], [-121.913281, 52.043412], [-121.91271, 52.034107], [-121.902537, 52.035847], [-121.901482, 52.020883], [-121.89063, 52.021798], [-121.890439, 52.014297], [-121.876102, 52.014039], [-121.877162, 52.005963], [-121.892024, 52.005805], [-121.891492, 51.999956], [-121.883114, 51.999971], [-121.88394, 51.992121], [-121.854769, 51.993122], [-121.855575, 51.989022], [-121.855913, 51.98616], [-121.84597, 51.985905], [-121.838964, 51.985551], [-121.830678, 51.985219], [-121.829432, 51.989979], [-121.829474, 51.992248], [-121.826011, 51.992272], [-121.805935, 51.991772], [-121.707935, 51.991272], [-121.708478, 51.986789], [-121.696048, 51.98672], [-121.696312, 51.991824], [-121.554931, 51.991944], [-121.555513, 52.069315], [-121.555519, 52.080392], [-121.524412, 52.079064], [-121.518788, 52.079865], [-121.518428, 52.07957], [-121.518117, 52.079433], [-121.517489, 52.079304], [-121.516178, 52.079514], [-121.515778, 52.079529], [-121.513589, 52.079278], [-121.512526, 52.079007], [-121.510815, 52.078416], [-121.509241, 52.078101], [-121.508718, 52.078652], [-121.508425, 52.079085], [-121.508395, 52.079459], [-121.409027, 52.0755], [-121.390219, 52.0738], [-121.373124, 52.07491], [-121.312268, 52.072837], [-121.301173, 52.072656], [-121.301047, 52.072826], [-121.30139, 52.073002], [-121.302151, 52.073617], [-121.302572, 52.074232], [-121.302519, 52.074477], [-121.301848, 52.074696], [-121.301485, 52.074466], [-121.299914, 52.0738], [-121.298805, 52.073081], [-121.297778, 52.072591], [-121.210355, 52.070869], [-121.207588, 52.032925], [-121.204669, 52.003997], [-121.203838, 51.993204], [-121.203992, 51.992324], [-121.201886, 51.992733], [-121.201207, 51.992746], [-121.02379, 51.991782], [-121.000375, 51.991687], [-120.944688, 51.99158], [-120.883715, 51.991608], [-120.88619, 52.13593], [-120.782708, 52.13648], [-120.707737, 52.136701], [-120.387548, 52.137445], [-120.395699, 52.141455], [-120.407612, 52.144258], [-120.403092, 52.161175], [-120.401447, 52.16619], [-120.392928, 52.169793], [-120.386956, 52.178549], [-120.387681, 52.18455], [-120.389718, 52.187611], [-120.390201, 52.188689], [-120.393745, 52.189749], [-120.395356, 52.193376], [-120.391625, 52.194041], [-120.392891, 52.200801], [-120.3951, 52.204226], [-120.401027, 52.207859], [-120.408298, 52.207451], [-120.415241, 52.208744], [-120.420752, 52.210024], [-120.423067, 52.212979], [-120.424652, 52.218334], [-120.429399, 52.223482], [-120.441184, 52.232154], [-120.436681, 52.236105], [-120.437093, 52.23875], [-120.445028, 52.242809], [-120.452029, 52.245979], [-120.478652, 52.274057], [-120.482694, 52.277972], [-120.493481, 52.280476], [-120.4915, 52.288514], [-120.481214, 52.286316], [-120.48036, 52.29066], [-120.479547, 52.292946], [-120.478098, 52.293522], [-120.471391, 52.298287], [-120.466473, 52.30442], [-120.480553, 52.312597], [-120.48948, 52.31726], [-120.500802, 52.322237], [-120.507849, 52.325119], [-120.512819, 52.326278], [-120.519488, 52.324453], [-120.534851, 52.329401], [-120.524738, 52.339201], [-120.519992, 52.341633], [-120.517549, 52.343966], [-120.519535, 52.34557], [-120.526944, 52.349806], [-120.527241, 52.354395], [-120.527415, 52.360337], [-120.525196, 52.365965], [-120.523516, 52.373479], [-120.52109, 52.379753], [-120.513244, 52.388218], [-120.491155, 52.400391], [-120.472605, 52.405885], [-120.459803, 52.411718], [-120.45922, 52.421242], [-120.463976, 52.423931], [-120.471019, 52.427698], [-120.47979, 52.431832], [-120.484717, 52.435639], [-120.492915, 52.43965], [-120.49705, 52.440038], [-120.500002, 52.441651], [-120.49948, 52.443706], [-120.502298, 52.444847], [-120.504976, 52.445811], [-120.507617, 52.448539], [-120.509009, 52.451197], [-120.512832, 52.4527], [-120.518482, 52.454394], [-120.521868, 52.453834], [-120.531243, 52.457205], [-120.538863, 52.461678], [-120.541232, 52.463756], [-120.542151, 52.466116], [-120.540563, 52.468634], [-120.53855, 52.473324], [-120.532763, 52.478986], [-120.509402, 52.494745], [-120.462478, 52.510658], [-120.449726, 52.510552], [-120.441107, 52.517185], [-120.418039, 52.527927], [-120.410033, 52.532622], [-120.407678, 52.534483], [-120.400902, 52.535894], [-120.389651, 52.537088], [-120.371267, 52.529218], [-120.363013, 52.528142], [-120.341467, 52.552356], [-120.333704, 52.558284], [-120.33321, 52.566753], [-120.325552, 52.57221], [-120.31617, 52.566357], [-120.304611, 52.577188], [-120.305762, 52.581378], [-120.306344, 52.58515], [-120.303127, 52.588355], [-120.300522, 52.588388], [-120.291581, 52.587359], [-120.290556, 52.589703], [-120.292979, 52.597025], [-120.293678, 52.607627], [-120.288465, 52.607693], [-120.267894, 52.60831], [-120.263176, 52.611439], [-120.254286, 52.61535], [-120.251507, 52.61962], [-120.244585, 52.621508], [-120.237695, 52.620766], [-120.234038, 52.627993], [-120.235279, 52.634714], [-120.289728, 52.657755], [-120.254384, 52.677351], [-120.254915, 52.684127], [-120.268267, 52.688256], [-120.275197, 52.696096], [-120.286898, 52.705013], [-120.269119, 52.71288], [-120.269493, 52.713673], [-120.26965, 52.714577], [-120.270185, 52.715031], [-120.272, 52.715767], [-120.272623, 52.716214], [-120.27252, 52.716275], [-120.275697, 52.717971], [-120.288881, 52.721402], [-120.293694, 52.725604], [-120.273781, 52.745923], [-120.293627, 52.763474], [-120.290363, 52.771993], [-120.308274, 52.780113], [-120.334238, 52.781339], [-120.339696, 52.788234], [-120.321408, 52.800516], [-120.316019, 52.805716], [-120.302438, 52.81511], [-120.305607, 52.817219], [-120.334228, 52.833139], [-120.332027, 52.839839], [-120.316334, 52.85227], [-120.312923, 52.858713], [-120.298805, 52.864925], [-120.282731, 52.868669], [-120.274945, 52.865162], [-120.26817, 52.861665], [-120.259537, 52.859616], [-120.242505, 52.86151], [-120.232543, 52.863479], [-120.227753, 52.868194], [-120.225586, 52.873059], [-120.218366, 52.877869], [-120.212143, 52.876332], [-120.185614, 52.864289], [-120.177253, 52.860035], [-120.165268, 52.861974], [-120.15744, 52.86665], [-120.147103, 52.873864], [-120.142545, 52.876741], [-120.146587, 52.884604], [-120.152668, 52.887439], [-120.161952, 52.893016], [-120.165868, 52.89851], [-120.166911, 52.914195], [-120.159125, 52.921344], [-120.163909, 52.923924], [-120.17037, 52.924954], [-120.17592, 52.922433], [-120.180489, 52.922332], [-120.187842, 52.924017], [-120.201287, 52.932513], [-120.20833, 52.932839], [-120.215662, 52.928122], [-120.217275, 52.922234], [-120.22713, 52.918315], [-120.235064, 52.919955], [-120.248094, 52.92112], [-120.253411, 52.923614], [-120.262112, 52.927148], [-120.269351, 52.928867], [-120.275487, 52.925682], [-120.285785, 52.923418], [-120.293935, 52.923731], [-120.300838, 52.921199], [-120.309274, 52.922501], [-120.317077, 52.924441], [-120.327034, 52.924779], [-120.338438, 52.927389], [-120.341523, 52.93306], [-120.345652, 52.934936], [-120.348885, 52.937439], [-120.353095, 52.940307], [-120.358748, 52.945896], [-120.361678, 52.951163], [-120.364409, 52.955005], [-120.37188, 52.962107], [-120.376763, 52.964766], [-120.3854, 52.966325], [-120.396576, 52.965642], [-120.411238, 52.964302], [-120.418527, 52.965323], [-120.426995, 52.968604], [-120.434201, 52.972626], [-120.441102, 52.978594], [-120.451299, 52.990655], [-120.453127, 52.993257], [-120.455761, 52.991584], [-120.467183, 52.988792], [-120.475775, 52.991792], [-120.483288, 52.989852], [-120.489907, 52.982272], [-120.494781, 52.981451], [-120.498741, 52.985462], [-120.502283, 52.991078], [-120.5102, 52.991137], [-120.515615, 52.988374], [-120.521562, 52.986424], [-120.5295, 52.985471], [-120.536061, 52.983842], [-120.541071, 52.980872], [-120.544901, 52.97613], [-120.533577, 52.962508], [-120.535181, 52.95587], [-120.557256, 52.951667], [-120.560093, 52.951676], [-120.576903, 52.950007], [-120.589382, 52.947831], [-120.592572, 52.946306], [-120.594587, 52.94025], [-120.588624, 52.93461], [-120.569803, 52.920182], [-120.571461, 52.916743], [-120.579848, 52.911922], [-120.592097, 52.910696], [-120.603902, 52.911963], [-120.611165, 52.913675], [-120.623788, 52.918985], [-120.642008, 52.925756], [-120.663396, 52.932186], [-120.671693, 52.931522], [-120.682211, 52.928134], [-120.69001, 52.922588], [-120.693267, 52.917489], [-120.701785, 52.90552], [-120.711342, 52.900339], [-120.722833, 52.896953], [-120.737653, 52.907965], [-120.789591, 52.908463], [-120.807869, 52.899509], [-120.843657, 52.901921], [-120.887237, 52.886747], [-120.934576, 52.857649], [-120.995269, 52.880429], [-121.057196, 52.883075], [-121.072507, 52.875311], [-121.120412, 52.869753], [-121.131864, 52.925783], [-121.142767, 52.939472], [-121.174956, 52.942858], [-121.175337, 52.942424], [-121.175994, 52.942192], [-121.1774, 52.942266], [-121.178197, 52.941986], [-121.17941, 52.941296], [-121.180234, 52.940742], [-121.180584, 52.940361], [-121.181323, 52.939355], [-121.181693, 52.938501], [-121.181546, 52.938237], [-121.180451, 52.937441], [-121.179713, 52.937094], [-121.179147, 52.937034], [-121.17775, 52.937479], [-121.176819, 52.938047], [-121.174663, 52.938619], [-121.172391, 52.93887], [-121.171258, 52.938335], [-121.171023, 52.937947], [-121.171016, 52.937522], [-121.172171, 52.937024], [-121.173016, 52.936773], [-121.173611, 52.935141], [-121.173193, 52.933567], [-121.172615, 52.932686], [-121.171044, 52.931513], [-121.169135, 52.930643], [-121.168898, 52.930363], [-121.169102, 52.929495], [-121.171295, 52.926388], [-121.171443, 52.925668], [-121.171314, 52.924879], [-121.171713, 52.922935], [-121.1721, 52.922002], [-121.172659, 52.921303], [-121.173244, 52.920748], [-121.173781, 52.92005], [-121.173974, 52.91962], [-121.17406, 52.918916], [-121.17384, 52.918452], [-121.173537, 52.918134], [-121.172344, 52.917301], [-121.171864, 52.916756], [-121.17158, 52.915988], [-121.17152, 52.914584], [-121.17196, 52.914017], [-121.176656, 52.910617], [-121.179314, 52.908954], [-121.179824, 52.909282], [-121.180008, 52.909833], [-121.180301, 52.910277], [-121.180745, 52.910743], [-121.180894, 52.911077], [-121.180742, 52.911839], [-121.180315, 52.912472], [-121.180165, 52.912856], [-121.180101, 52.913322], [-121.180321, 52.913739], [-121.180837, 52.914169], [-121.181236, 52.914275], [-121.181599, 52.914487], [-121.181999, 52.91453], [-121.182222, 52.914487], [-121.184497, 52.915592], [-121.184608, 52.915756], [-121.184842, 52.915876], [-121.185333, 52.915884], [-121.185748, 52.91554], [-121.185985, 52.915569], [-121.186492, 52.915937], [-121.186817, 52.916311], [-121.187194, 52.916559], [-121.187579, 52.916969], [-121.188055, 52.918038], [-121.188022, 52.918765], [-121.187723, 52.919534], [-121.187665, 52.919902], [-121.187893, 52.920796], [-121.188317, 52.921369], [-121.189157, 52.921903], [-121.189512, 52.922313], [-121.189819, 52.922767], [-121.190533, 52.924207], [-121.191817, 52.925198], [-121.19202, 52.925291], [-121.192905, 52.92552], [-121.194494, 52.925553], [-121.195094, 52.925436], [-121.195836, 52.925116], [-121.197015, 52.925052], [-121.197912, 52.925291], [-121.198313, 52.925342], [-121.199706, 52.925416], [-121.201597, 52.925428], [-121.20244, 52.925512], [-121.203631, 52.925881], [-121.205122, 52.926883], [-121.205535, 52.927063], [-121.22736, 52.928992], [-121.241987, 52.926154], [-121.252428, 52.9184], [-121.262417, 52.911841], [-121.269209, 52.908728], [-121.28184, 52.899067], [-121.295633, 52.898437], [-121.310578, 52.894986], [-121.324108, 52.885633], [-121.333752, 52.881227], [-121.336116, 52.875483], [-121.343815, 52.871145], [-121.346475, 52.871132], [-121.360309, 52.87131], [-121.366164, 52.871698], [-121.381069, 52.872237], [-121.392354, 52.873779], [-121.42274, 52.875638], [-121.442533, 52.872296], [-121.452555, 52.866541], [-121.467817, 52.848844], [-121.473414, 52.845785], [-121.476365, 52.845332], [-121.478582, 52.846673], [-121.488206, 52.857871], [-121.49103, 52.861279], [-121.495033, 52.862532], [-121.500367, 52.863156], [-121.504216, 52.862884], [-121.529645, 52.869409], [-121.563999, 52.867036], [-121.578752, 52.857155], [-121.60454, 52.860522], [-121.614382, 52.849212], [-121.6131, 52.836136], [-121.620411, 52.824025], [-121.595005, 52.811373], [-121.591128, 52.807173], [-121.602965, 52.796937], [-121.610482, 52.793518], [-121.614448, 52.789836], [-121.616483, 52.785174], [-121.610343, 52.77471], [-121.604831, 52.768992], [-121.599103, 52.753243], [-121.582017, 52.739403], [-121.599343, 52.725129], [-121.65545, 52.738378], [-121.693963, 52.719825], [-121.719302, 52.732865], [-121.758907, 52.742037], [-121.821893, 52.742138], [-121.821899, 52.742078], [-121.896082, 52.742714], [-121.938174, 52.743137], [-121.940704, 52.714498], [-122.015076, 52.714148], [-122.015197, 52.714059], [-122.0617, 52.714412], [-122.092692, 52.714757], [-122.119231, 52.714837], [-122.18497, 52.714097]]]]}, "properties": {"name": "Cariboo F", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo F", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941014", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.510815, 52.078416], [-121.512526, 52.079007], [-121.513589, 52.079278], [-121.515778, 52.079529], [-121.516178, 52.079514], [-121.517489, 52.079304], [-121.518117, 52.079433], [-121.518428, 52.07957], [-121.518788, 52.079865], [-121.524412, 52.079064], [-121.555519, 52.080392], [-121.555513, 52.069315], [-121.554931, 51.991944], [-121.696312, 51.991824], [-121.696048, 51.98672], [-121.708478, 51.986789], [-121.707935, 51.991272], [-121.805935, 51.991772], [-121.826011, 51.992272], [-121.829474, 51.992248], [-121.829432, 51.989979], [-121.830678, 51.985219], [-121.838964, 51.985551], [-121.83852, 51.980918], [-121.83805, 51.962025], [-121.837783, 51.955214], [-121.837245, 51.925275], [-121.836128, 51.896564], [-121.835772, 51.875819], [-121.870778, 51.875849], [-121.978136, 51.875564], [-121.978279, 51.864015], [-121.971125, 51.863723], [-121.971916, 51.854928], [-121.978892, 51.855005], [-121.979656, 51.801656], [-121.975075, 51.801684], [-121.9755, 51.794131], [-121.979342, 51.794051], [-121.978777, 51.732178], [-121.955045, 51.731861], [-121.954811, 51.702093], [-121.949406, 51.691394], [-121.944293, 51.661291], [-121.941429, 51.643145], [-121.941038, 51.639769], [-121.943339, 51.617417], [-121.947291, 51.583905], [-121.947537, 51.580195], [-121.948752, 51.572463], [-121.946364, 51.517002], [-121.885728, 51.517847], [-121.885893, 51.566133], [-121.753437, 51.56516], [-121.738144, 51.564981], [-121.716274, 51.564811], [-121.696852, 51.564602], [-121.696672, 51.564561], [-121.696622, 51.564601], [-121.693001, 51.564578], [-121.63108, 51.564048], [-121.630498, 51.547384], [-121.526627, 51.547724], [-121.525577, 51.462816], [-121.525142, 51.451053], [-121.509495, 51.450387], [-121.50897, 51.446495], [-121.475584, 51.445951], [-121.473813, 51.436454], [-121.464966, 51.436204], [-121.464893, 51.436132], [-121.426162, 51.436703], [-121.426683, 51.401462], [-121.419303, 51.401611], [-121.419581, 51.395039], [-121.420642, 51.37756], [-121.385044, 51.378197], [-121.362486, 51.380068], [-121.342105, 51.378268], [-121.332599, 51.377365], [-121.309135, 51.377091], [-121.295739, 51.37662], [-121.282231, 51.376792], [-121.276618, 51.37985], [-121.2761, 51.38923], [-121.272525, 51.394357], [-121.276784, 51.404355], [-121.276978, 51.411826], [-121.277198, 51.437585], [-121.276355, 51.470481], [-121.275618, 51.493358], [-121.276708, 51.515769], [-121.27755, 51.528466], [-121.278761, 51.541463], [-121.27861, 51.546344], [-121.278499, 51.54635], [-121.277729, 51.556732], [-121.278298, 51.562759], [-121.278072, 51.568224], [-121.282343, 51.571856], [-121.286505, 51.574439], [-121.288953, 51.577562], [-121.289642, 51.582531], [-121.289692, 51.597524], [-121.290087, 51.599444], [-121.290538, 51.604762], [-121.290931, 51.605472], [-121.291024, 51.611535], [-121.358422, 51.611574], [-121.360167, 51.611414], [-121.359071, 51.639092], [-121.369867, 51.639124], [-121.370167, 51.63587], [-121.381465, 51.636228], [-121.381919, 51.64378], [-121.386901, 51.64381], [-121.397884, 51.643736], [-121.39702, 51.651969], [-121.396329, 51.664988], [-121.364837, 51.664577], [-121.342379, 51.664724], [-121.304567, 51.665665], [-121.303781, 51.665646], [-121.303712, 51.675212], [-121.303783, 51.676034], [-121.297601, 51.675918], [-121.280396, 51.675895], [-121.280272, 51.681505], [-121.278793, 51.681631], [-121.278756, 51.688748], [-121.279822, 51.688746], [-121.280313, 51.688691], [-121.280179, 51.698983], [-121.232783, 51.700675], [-121.233982, 51.713409], [-121.227982, 51.712437], [-121.227915, 51.71645], [-121.228567, 51.727418], [-121.234575, 51.727932], [-121.234271, 51.753676], [-121.235083, 51.763], [-121.209359, 51.76299], [-121.209363, 51.769743], [-121.210349, 51.80625], [-121.204396, 51.813247], [-121.194612, 51.81361], [-121.194327, 51.817055], [-121.195287, 51.817264], [-121.21019, 51.817315], [-121.210138, 51.821072], [-121.212619, 51.855783], [-121.212078, 51.861611], [-121.210108, 51.988583], [-121.209579, 51.99202], [-121.203992, 51.992324], [-121.203838, 51.993204], [-121.204922, 52.006741], [-121.207588, 52.032925], [-121.210355, 52.070869], [-121.297778, 52.072591], [-121.298805, 52.073081], [-121.299914, 52.0738], [-121.301485, 52.074466], [-121.301848, 52.074696], [-121.302519, 52.074477], [-121.302572, 52.074232], [-121.302151, 52.073617], [-121.30139, 52.073002], [-121.301047, 52.072826], [-121.301173, 52.072656], [-121.312268, 52.072837], [-121.373124, 52.07491], [-121.390219, 52.0738], [-121.409027, 52.0755], [-121.508395, 52.079459], [-121.508425, 52.079085], [-121.508718, 52.078652], [-121.509241, 52.078101], [-121.510815, 52.078416]], [[-121.581381, 51.848046], [-121.581963, 51.848346], [-121.582128, 51.849817], [-121.579197, 51.84999], [-121.579118, 51.848909], [-121.579988, 51.848442], [-121.58079, 51.848362], [-121.581381, 51.848046]], [[-121.476882, 51.794307], [-121.476844, 51.797354], [-121.475698, 51.796953], [-121.475324, 51.796894], [-121.474309, 51.796863], [-121.472643, 51.796374], [-121.472267, 51.79635], [-121.471889, 51.796373], [-121.471582, 51.796458], [-121.471104, 51.796849], [-121.470952, 51.797062], [-121.471064, 51.794568], [-121.476882, 51.794307]]]]}, "properties": {"name": "Cariboo G", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo G", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941015", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.707737, 52.136701], [-120.793355, 52.136434], [-120.88619, 52.13593], [-120.883715, 51.991608], [-120.944688, 51.99158], [-121.000375, 51.991687], [-121.02379, 51.991782], [-121.201207, 51.992746], [-121.201886, 51.992733], [-121.203992, 51.992324], [-121.209579, 51.99202], [-121.210108, 51.988583], [-121.212078, 51.861611], [-121.212619, 51.855783], [-121.210138, 51.821072], [-121.21019, 51.817315], [-121.195287, 51.817264], [-121.194327, 51.817055], [-121.194612, 51.81361], [-121.204396, 51.813247], [-121.210349, 51.80625], [-121.209363, 51.769743], [-121.209359, 51.76299], [-121.235083, 51.763], [-121.234271, 51.753676], [-121.234575, 51.727932], [-121.228567, 51.727418], [-121.227915, 51.71645], [-121.227982, 51.712437], [-121.233982, 51.713409], [-121.232783, 51.700675], [-121.280179, 51.698983], [-121.280313, 51.688691], [-121.279822, 51.688746], [-121.278756, 51.688748], [-121.278793, 51.681631], [-121.280272, 51.681505], [-121.280433, 51.675896], [-121.279818, 51.661928], [-121.264734, 51.661692], [-121.264633, 51.663811], [-121.247021, 51.663432], [-121.247227, 51.654477], [-121.24719, 51.652445], [-121.23456, 51.652615], [-121.234553, 51.650447], [-121.234758, 51.648067], [-121.212877, 51.647685], [-121.213057, 51.651454], [-121.214035, 51.66099], [-121.204278, 51.661314], [-121.14691, 51.662393], [-121.141796, 51.662345], [-121.137666, 51.662551], [-121.106095, 51.662752], [-121.099663, 51.661397], [-121.074533, 51.661738], [-121.073574, 51.676508], [-121.045164, 51.67635], [-121.045301, 51.689049], [-120.956582, 51.690139], [-120.904662, 51.691154], [-120.811509, 51.691902], [-120.810242, 51.692053], [-120.807225, 51.692135], [-120.780926, 51.692238], [-120.78052, 51.719547], [-120.77946, 51.72873], [-120.779222, 51.732931], [-120.767026, 51.733073], [-120.697308, 51.734228], [-120.680138, 51.734079], [-120.679217, 51.717476], [-120.660828, 51.717207], [-120.660497, 51.7135], [-120.660528, 51.712907], [-120.657335, 51.664629], [-120.620262, 51.664471], [-120.572963, 51.66409], [-120.561021, 51.66441], [-120.55081, 51.66498], [-120.546783, 51.666912], [-120.544171, 51.669646], [-120.542928, 51.6742], [-120.538794, 51.676551], [-120.531869, 51.678635], [-120.528657, 51.684998], [-120.517993, 51.690331], [-120.503634, 51.696662], [-120.481308, 51.704349], [-120.459356, 51.709881], [-120.442969, 51.711806], [-120.432975, 51.712162], [-120.407525, 51.705143], [-120.391271, 51.704009], [-120.37918, 51.709241], [-120.37496, 51.71661], [-120.376948, 51.719218], [-120.372433, 51.722067], [-120.359196, 51.723867], [-120.345668, 51.727593], [-120.338523, 51.732975], [-120.338488, 51.738346], [-120.343593, 51.747533], [-120.349925, 51.752667], [-120.379363, 51.762383], [-120.37576, 51.769503], [-120.35865, 51.771209], [-120.348643, 51.768018], [-120.336606, 51.770898], [-120.328987, 51.775647], [-120.321559, 51.783724], [-120.317383, 51.810951], [-120.319525, 51.819913], [-120.312354, 51.824762], [-120.307694, 51.826954], [-120.305008, 51.831447], [-120.298526, 51.828475], [-120.286052, 51.828271], [-120.275782, 51.832197], [-120.267403, 51.831382], [-120.247031, 51.828927], [-120.237825, 51.826273], [-120.22665, 51.82543], [-120.219196, 51.828633], [-120.219143, 51.835536], [-120.222446, 51.839846], [-120.225228, 51.845539], [-120.228877, 51.850748], [-120.225842, 51.85474], [-120.223963, 51.866594], [-120.231063, 51.872143], [-120.238302, 51.868918], [-120.25745, 51.87262], [-120.256623, 51.877177], [-120.260078, 51.883419], [-120.266333, 51.886617], [-120.272374, 51.88877], [-120.273161, 51.892606], [-120.269162, 51.895897], [-120.255702, 51.903372], [-120.247977, 51.912332], [-120.247705, 51.919562], [-120.247878, 51.930039], [-120.24723, 51.930558], [-120.246958, 51.930982], [-120.246406, 51.93134], [-120.246314, 51.931506], [-120.246466, 51.931871], [-120.246386, 51.932956], [-120.246821, 51.933183], [-120.24724, 51.933247], [-120.247792, 51.933809], [-120.249354, 51.938016], [-120.250276, 51.940253], [-120.257965, 51.945385], [-120.264653, 51.948623], [-120.268464, 51.950845], [-120.2686, 51.960723], [-120.270098, 51.967237], [-120.273689, 51.974292], [-120.278017, 51.977715], [-120.285161, 51.975332], [-120.293575, 51.969467], [-120.298318, 51.968572], [-120.307584, 51.974849], [-120.316315, 51.976125], [-120.323659, 51.972386], [-120.331015, 51.968125], [-120.339086, 51.96882], [-120.340259, 51.972211], [-120.345313, 51.975481], [-120.336043, 51.981312], [-120.328862, 51.984719], [-120.328571, 51.989187], [-120.331635, 51.991244], [-120.330012, 51.995075], [-120.32604, 51.998309], [-120.319891, 52.000895], [-120.316659, 52.004813], [-120.311256, 52.007823], [-120.305795, 52.012913], [-120.296437, 52.012181], [-120.288393, 52.012869], [-120.288704, 52.019735], [-120.297312, 52.02273], [-120.308591, 52.02377], [-120.31699, 52.027651], [-120.320338, 52.039169], [-120.320284, 52.044561], [-120.31921, 52.048947], [-120.318031, 52.057141], [-120.316783, 52.064339], [-120.314379, 52.068535], [-120.308497, 52.074336], [-120.301121, 52.075485], [-120.296288, 52.077778], [-120.293672, 52.082617], [-120.295212, 52.088847], [-120.299767, 52.098038], [-120.301015, 52.101158], [-120.302806, 52.10528], [-120.305292, 52.108471], [-120.31063, 52.111982], [-120.313669, 52.115881], [-120.316676, 52.120953], [-120.310914, 52.129043], [-120.309854, 52.132844], [-120.308116, 52.140331], [-120.319927, 52.153347], [-120.32455, 52.155325], [-120.332614, 52.153515], [-120.338154, 52.153329], [-120.344026, 52.155082], [-120.347443, 52.155817], [-120.350941, 52.153318], [-120.357967, 52.147145], [-120.3707, 52.137669], [-120.375371, 52.133944], [-120.378531, 52.133442], [-120.382216, 52.134823], [-120.387548, 52.137445], [-120.707737, 52.136701]], [[-121.037497, 51.788515], [-120.968977, 51.788896], [-120.952742, 51.78748], [-120.922636, 51.78652], [-120.923319, 51.779115], [-120.923798, 51.77735], [-120.920671, 51.769094], [-120.920749, 51.767884], [-120.962183, 51.769339], [-120.985595, 51.769316], [-121.031464, 51.767247], [-121.03776, 51.767384], [-121.037497, 51.788515]], [[-121.124245, 51.746562], [-121.12485, 51.739257], [-121.136312, 51.73985], [-121.136054, 51.741737], [-121.135893, 51.746935], [-121.124245, 51.746562]]]]}, "properties": {"name": "Cariboo H", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo H", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941016", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.204278, 51.661314], [-121.214035, 51.66099], [-121.213057, 51.651454], [-121.212877, 51.647685], [-121.234758, 51.648067], [-121.234938, 51.63392], [-121.234894, 51.632049], [-121.235147, 51.628783], [-121.256918, 51.629038], [-121.283022, 51.628949], [-121.28695, 51.629503], [-121.300265, 51.628566], [-121.299599, 51.625623], [-121.300395, 51.622382], [-121.295023, 51.622845], [-121.289917, 51.622498], [-121.289931, 51.620532], [-121.283842, 51.620285], [-121.283953, 51.617049], [-121.266789, 51.61649], [-121.266724, 51.611827], [-121.266813, 51.59969], [-121.290087, 51.599444], [-121.289692, 51.597524], [-121.289642, 51.582531], [-121.288953, 51.577562], [-121.286505, 51.574439], [-121.282343, 51.571856], [-121.278072, 51.568224], [-121.278298, 51.562759], [-121.277729, 51.556732], [-121.278499, 51.54635], [-121.27861, 51.546344], [-121.278761, 51.541463], [-121.27755, 51.528466], [-121.276708, 51.515769], [-121.275618, 51.493358], [-121.276355, 51.470481], [-121.277198, 51.437585], [-121.276978, 51.411826], [-121.276784, 51.404355], [-121.272525, 51.394357], [-121.2761, 51.38923], [-121.276619, 51.379858], [-121.269359, 51.383315], [-121.249436, 51.393024], [-121.234728, 51.400307], [-121.224329, 51.405659], [-121.21792, 51.410583], [-121.207968, 51.415137], [-121.197918, 51.419883], [-121.171792, 51.430894], [-121.159177, 51.433848], [-121.140019, 51.437901], [-121.133842, 51.43963], [-121.12515, 51.440771], [-121.12352, 51.440885], [-121.118344, 51.44105], [-121.107118, 51.438167], [-121.094351, 51.438374], [-121.090015, 51.437069], [-121.087596, 51.437447], [-121.081148, 51.437257], [-121.078976, 51.436927], [-121.078986, 51.436733], [-121.073796, 51.43458], [-121.06335, 51.435856], [-121.047601, 51.429848], [-121.025563, 51.429393], [-121.00172, 51.42906], [-121.001735, 51.433813], [-121.001491, 51.438951], [-120.963315, 51.439915], [-120.96071, 51.439859], [-120.948329, 51.445102], [-120.935389, 51.444388], [-120.913944, 51.443477], [-120.895748, 51.442294], [-120.833467, 51.435159], [-120.783628, 51.434103], [-120.742477, 51.433567], [-120.727433, 51.434321], [-120.721955, 51.43445], [-120.697732, 51.433955], [-120.674199, 51.434172], [-120.632106, 51.433814], [-120.623223, 51.434163], [-120.622978, 51.433954], [-120.622647, 51.433825], [-120.621668, 51.433621], [-120.620087, 51.433586], [-120.619103, 51.433404], [-120.583958, 51.433855], [-120.560729, 51.434618], [-120.560667, 51.437586], [-120.5596, 51.450796], [-120.559094, 51.455609], [-120.558555, 51.458648], [-120.557671, 51.46691], [-120.557744, 51.469248], [-120.558546, 51.476518], [-120.558566, 51.488981], [-120.560267, 51.563575], [-120.560765, 51.574219], [-120.561344, 51.590842], [-120.561525, 51.593102], [-120.560408, 51.639311], [-120.560428, 51.661259], [-120.558415, 51.664548], [-120.561021, 51.66441], [-120.572963, 51.66409], [-120.620262, 51.664471], [-120.657335, 51.664629], [-120.660528, 51.712907], [-120.660497, 51.7135], [-120.660828, 51.717207], [-120.679217, 51.717476], [-120.680138, 51.734079], [-120.697308, 51.734228], [-120.767026, 51.733073], [-120.779222, 51.732931], [-120.77946, 51.72873], [-120.78052, 51.719547], [-120.780926, 51.692238], [-120.807225, 51.692135], [-120.810242, 51.692053], [-120.811509, 51.691902], [-120.904662, 51.691154], [-120.956582, 51.690139], [-121.045301, 51.689049], [-121.045164, 51.67635], [-121.073574, 51.676508], [-121.074533, 51.661738], [-121.099663, 51.661397], [-121.106095, 51.662752], [-121.137666, 51.662551], [-121.141796, 51.662345], [-121.14691, 51.662393], [-121.204278, 51.661314]]]]}, "properties": {"name": "Cariboo L", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo L", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941017", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.496737, 52.968219], [-122.496734, 52.968652], [-122.499855, 52.968765], [-122.500457, 52.968211], [-122.501328, 52.967603], [-122.502636, 52.966485], [-122.50437, 52.964676], [-122.504976, 52.963816], [-122.507799, 52.961499], [-122.508762, 52.960784], [-122.509196, 52.960372], [-122.510418, 52.95911], [-122.511195, 52.957792], [-122.499029, 52.957561], [-122.477168, 52.957422], [-122.465411, 52.956996], [-122.463627, 52.957001], [-122.450543, 52.956613], [-122.450598, 52.953062], [-122.451231, 52.953099], [-122.452239, 52.938508], [-122.476106, 52.939204], [-122.490653, 52.939808], [-122.492339, 52.937588], [-122.495351, 52.934825], [-122.495894, 52.934003], [-122.495908, 52.933295], [-122.49425, 52.930176], [-122.493506, 52.929095], [-122.492871, 52.928528], [-122.491373, 52.927459], [-122.490426, 52.926601], [-122.489612, 52.926096], [-122.484693, 52.923778], [-122.482446, 52.922139], [-122.481125, 52.921038], [-122.480436, 52.920668], [-122.47807, 52.917969], [-122.476922, 52.916239], [-122.476171, 52.913185], [-122.476224, 52.910825], [-122.477713, 52.906838], [-122.477211, 52.904731], [-122.47653, 52.90315], [-122.475752, 52.902172], [-122.47461, 52.900206], [-122.470448, 52.897459], [-122.466467, 52.893732], [-122.464736, 52.891858], [-122.462554, 52.88917], [-122.461234, 52.887238], [-122.459751, 52.884181], [-122.45894, 52.880991], [-122.45778, 52.87821], [-122.457261, 52.877554], [-122.455622, 52.876003], [-122.453501, 52.874914], [-122.450703, 52.873359], [-122.448388, 52.871897], [-122.447269, 52.871037], [-122.44614, 52.869774], [-122.444905, 52.867725], [-122.443606, 52.86419], [-122.442645, 52.861083], [-122.442151, 52.85543], [-122.4424, 52.853655], [-122.442978, 52.851221], [-122.445946, 52.845141], [-122.447192, 52.843325], [-122.451345, 52.838222], [-122.452867, 52.83589], [-122.456563, 52.830875], [-122.458776, 52.827311], [-122.459445, 52.824353], [-122.45916, 52.821845], [-122.459444, 52.819532], [-122.460319, 52.816229], [-122.461488, 52.814408], [-122.462217, 52.812552], [-122.462603, 52.809798], [-122.462214, 52.807722], [-122.46207, 52.803461], [-122.462412, 52.797042], [-122.462421, 52.794013], [-122.462252, 52.792874], [-122.461837, 52.791507], [-122.46084, 52.785577], [-122.460362, 52.784101], [-122.459273, 52.779314], [-122.460524, 52.777583], [-122.464552, 52.773528], [-122.470438, 52.767855], [-122.472597, 52.766294], [-122.476028, 52.764452], [-122.479776, 52.763135], [-122.480848, 52.762677], [-122.481913, 52.761808], [-122.484373, 52.759151], [-122.484963, 52.757753], [-122.484728, 52.755159], [-122.485089, 52.753618], [-122.484533, 52.752713], [-122.483857, 52.751933], [-122.483297, 52.751129], [-122.480727, 52.748527], [-122.478641, 52.745687], [-122.478559, 52.742844], [-122.480245, 52.73931], [-122.481822, 52.736397], [-122.48404, 52.733607], [-122.48474, 52.731299], [-122.484372, 52.730372], [-122.483472, 52.728654], [-122.482033, 52.723486], [-122.481642, 52.722998], [-122.481637, 52.719432], [-122.481124, 52.717079], [-122.482046, 52.71365], [-122.482439, 52.712561], [-122.485775, 52.708936], [-122.485666, 52.707263], [-122.484772, 52.705325], [-122.483457, 52.703515], [-122.482762, 52.702295], [-122.481666, 52.701454], [-122.48117, 52.700484], [-122.478841, 52.69699], [-122.476188, 52.694563], [-122.47381, 52.692789], [-122.472765, 52.692317], [-122.467765, 52.690757], [-122.461725, 52.687647], [-122.459468, 52.68439], [-122.458211, 52.681273], [-122.457476, 52.680358], [-122.456777, 52.678799], [-122.456749, 52.678088], [-122.457103, 52.676486], [-122.457819, 52.675207], [-122.460401, 52.672693], [-122.463074, 52.669741], [-122.463864, 52.668989], [-122.466257, 52.667457], [-122.470383, 52.665281], [-122.473681, 52.663698], [-122.478871, 52.661537], [-122.481081, 52.660409], [-122.486256, 52.657927], [-122.486637, 52.657596], [-122.488926, 52.656124], [-122.490916, 52.653428], [-122.491619, 52.652019], [-122.492312, 52.649487], [-122.493504, 52.647385], [-122.493742, 52.646637], [-122.49365, 52.645215], [-122.492707, 52.644206], [-122.492011, 52.643859], [-122.485231, 52.642486], [-122.484077, 52.642369], [-122.48362, 52.642381], [-122.482742, 52.640196], [-122.482195, 52.63749], [-122.481771, 52.637404], [-122.481356, 52.636738], [-122.480313, 52.633451], [-122.479064, 52.632646], [-122.477434, 52.631874], [-122.476154, 52.631356], [-122.474049, 52.630789], [-122.471439, 52.630275], [-122.470662, 52.629822], [-122.468901, 52.62895], [-122.467999, 52.628848], [-122.467026, 52.628852], [-122.465419, 52.627012], [-122.466117, 52.626395], [-122.466664, 52.625596], [-122.46657, 52.623649], [-122.467103, 52.620117], [-122.467587, 52.618881], [-122.469171, 52.616045], [-122.469685, 52.614695], [-122.469654, 52.614162], [-122.471233, 52.611438], [-122.471924, 52.610944], [-122.473446, 52.609443], [-122.474437, 52.607362], [-122.475742, 52.602641], [-122.47637, 52.601637], [-122.47933, 52.599403], [-122.480618, 52.598797], [-122.482945, 52.59811], [-122.48468, 52.597266], [-122.485127, 52.595876], [-122.48518, 52.594373], [-122.484737, 52.592816], [-122.483821, 52.591032], [-122.483776, 52.590206], [-122.482774, 52.588529], [-122.484702, 52.588721], [-122.484429, 52.58734], [-122.483847, 52.586564], [-122.483691, 52.586087], [-122.483357, 52.585556], [-122.482719, 52.58478], [-122.482213, 52.583888], [-122.481312, 52.582698], [-122.481107, 52.582525], [-122.480108, 52.582045], [-122.479334, 52.581394], [-122.479001, 52.580808], [-122.478812, 52.580664], [-122.477957, 52.580417], [-122.476579, 52.579682], [-122.476348, 52.579222], [-122.475426, 52.578707], [-122.47452, 52.577956], [-122.474125, 52.577559], [-122.47356, 52.57672], [-122.473178, 52.575299], [-122.473158, 52.57458], [-122.473292, 52.573303], [-122.47354, 52.57218], [-122.474123, 52.570448], [-122.474712, 52.569246], [-122.475562, 52.568404], [-122.475994, 52.567861], [-122.473587, 52.56794], [-122.475435, 52.564701], [-122.476479, 52.562368], [-122.47811, 52.560444], [-122.478983, 52.55894], [-122.481489, 52.55634], [-122.482477, 52.55397], [-122.48141, 52.549609], [-122.479529, 52.546545], [-122.478185, 52.544796], [-122.477015, 52.543839], [-122.476041, 52.54328], [-122.473924, 52.542449], [-122.470294, 52.541448], [-122.467, 52.540894], [-122.460332, 52.540478], [-122.457014, 52.540323], [-122.454032, 52.539842], [-122.452716, 52.539367], [-122.446213, 52.539685], [-122.424087, 52.540285], [-122.387438, 52.543007], [-122.387819, 52.542087], [-122.385579, 52.54227], [-122.35754, 52.541866], [-122.356612, 52.541314], [-122.355797, 52.541029], [-122.355964, 52.530667], [-122.340076, 52.530535], [-122.34089, 52.542387], [-122.296936, 52.541855], [-122.249654, 52.541803], [-122.233785, 52.541685], [-122.233744, 52.542002], [-122.231873, 52.546622], [-122.224094, 52.554153], [-122.211529, 52.563538], [-122.205645, 52.568192], [-122.207556, 52.573549], [-122.215578, 52.582415], [-122.231561, 52.592543], [-122.234803, 52.595043], [-122.239983, 52.598361], [-122.249932, 52.60608], [-122.244287, 52.612824], [-122.230111, 52.612718], [-122.22554, 52.614273], [-122.224153, 52.618967], [-122.22434, 52.622255], [-122.225884, 52.624763], [-122.232314, 52.630664], [-122.235608, 52.634559], [-122.236965, 52.638888], [-122.234463, 52.64752], [-122.234788, 52.656741], [-122.236799, 52.663805], [-122.242234, 52.670143], [-122.246954, 52.675306], [-122.248477, 52.683422], [-122.248113, 52.688295], [-122.244784, 52.693401], [-122.238007, 52.697837], [-122.221857, 52.70234], [-122.192871, 52.704139], [-122.188023, 52.714134], [-122.18497, 52.714097], [-122.119231, 52.714837], [-122.12269, 52.724039], [-122.123226, 52.72515], [-122.122953, 52.725554], [-122.122934, 52.726739], [-122.12209, 52.727522], [-122.120925, 52.728027], [-122.120208, 52.728212], [-122.120345, 52.728571], [-122.120491, 52.730642], [-122.12069, 52.730935], [-122.123432, 52.734658], [-122.124, 52.735172], [-122.124419, 52.735772], [-122.125164, 52.736303], [-122.125957, 52.736618], [-122.129267, 52.737056], [-122.130559, 52.737482], [-122.133379, 52.73807], [-122.134169, 52.738141], [-122.135501, 52.738488], [-122.13643, 52.738859], [-122.137522, 52.739688], [-122.138158, 52.740466], [-122.140744, 52.744563], [-122.140908, 52.74567], [-122.140797, 52.746079], [-122.140146, 52.747236], [-122.139526, 52.748077], [-122.137566, 52.750091], [-122.136491, 52.750786], [-122.132782, 52.752272], [-122.132426, 52.752554], [-122.132493, 52.752929], [-122.132938, 52.75322], [-122.133447, 52.753416], [-122.134657, 52.753564], [-122.135407, 52.753496], [-122.137303, 52.753506], [-122.139015, 52.75339], [-122.140563, 52.753034], [-122.141768, 52.752606], [-122.143206, 52.752332], [-122.144451, 52.751979], [-122.14573, 52.751775], [-122.147593, 52.751913], [-122.148726, 52.751906], [-122.149856, 52.752083], [-122.150677, 52.752581], [-122.151184, 52.753346], [-122.151585, 52.754605], [-122.151927, 52.756328], [-122.151747, 52.757757], [-122.151781, 52.758422], [-122.151865, 52.758724], [-122.152452, 52.759391], [-122.152549, 52.760151], [-122.152562, 52.763687], [-122.151926, 52.766113], [-122.152043, 52.769141], [-122.152617, 52.770991], [-122.156329, 52.774101], [-122.156884, 52.77473], [-122.161262, 52.777951], [-122.165055, 52.779658], [-122.165459, 52.781897], [-122.164944, 52.78619], [-122.167208, 52.787805], [-122.167107, 52.79161], [-122.166298, 52.792572], [-122.16451, 52.793706], [-122.16417, 52.794276], [-122.163688, 52.794813], [-122.163645, 52.795499], [-122.163733, 52.796238], [-122.164174, 52.796901], [-122.165231, 52.797809], [-122.165788, 52.79816], [-122.166848, 52.798717], [-122.168452, 52.799233], [-122.174263, 52.801822], [-122.175137, 52.802526], [-122.175772, 52.803997], [-122.175759, 52.804648], [-122.175471, 52.805504], [-122.174298, 52.807194], [-122.172103, 52.810917], [-122.172124, 52.811414], [-122.172365, 52.812022], [-122.173111, 52.813045], [-122.173703, 52.81355], [-122.174445, 52.814398], [-122.175361, 52.81514], [-122.177689, 52.816645], [-122.181105, 52.818531], [-122.18158, 52.81892], [-122.183303, 52.819938], [-122.186043, 52.821231], [-122.188135, 52.821957], [-122.190689, 52.822593], [-122.191614, 52.822714], [-122.193753, 52.82279], [-122.196851, 52.819947], [-122.197518, 52.819526], [-122.199566, 52.81847], [-122.201952, 52.817631], [-122.202567, 52.817471], [-122.206273, 52.817591], [-122.209203, 52.818975], [-122.209758, 52.820753], [-122.209276, 52.822922], [-122.207703, 52.824034], [-122.206191, 52.826995], [-122.206766, 52.830741], [-122.210114, 52.832259], [-122.212705, 52.833307], [-122.213379, 52.833645], [-122.215551, 52.835194], [-122.216488, 52.835976], [-122.219387, 52.837782], [-122.220823, 52.839058], [-122.221821, 52.839811], [-122.222206, 52.839975], [-122.223435, 52.841281], [-122.227787, 52.844678], [-122.228859, 52.845372], [-122.234212, 52.847154], [-122.237437, 52.850677], [-122.237314, 52.853473], [-122.239235, 52.856409], [-122.241442, 52.856966], [-122.25314, 52.857953], [-122.253954, 52.858106], [-122.255219, 52.858732], [-122.256117, 52.859309], [-122.257301, 52.860347], [-122.258393, 52.861645], [-122.25928, 52.863601], [-122.259403, 52.864668], [-122.259296, 52.865137], [-122.258887, 52.865964], [-122.25771, 52.867669], [-122.256978, 52.868361], [-122.255818, 52.86911], [-122.253264, 52.870408], [-122.253347, 52.871152], [-122.263959, 52.879903], [-122.265937, 52.881673], [-122.267559, 52.883433], [-122.267974, 52.884113], [-122.268528, 52.885446], [-122.269363, 52.886751], [-122.269872, 52.887816], [-122.27028, 52.888309], [-122.271074, 52.888599], [-122.272324, 52.888881], [-122.27474, 52.888504], [-122.279028, 52.888715], [-122.280422, 52.889515], [-122.28186, 52.892681], [-122.282692, 52.897515], [-122.280655, 52.900574], [-122.279574, 52.902925], [-122.281891, 52.906384], [-122.282882, 52.906994], [-122.28541, 52.908193], [-122.292232, 52.908013], [-122.294448, 52.908486], [-122.295769, 52.90949], [-122.296933, 52.910227], [-122.298568, 52.911559], [-122.298537, 52.913706], [-122.297943, 52.914568], [-122.297225, 52.915962], [-122.295054, 52.918882], [-122.293833, 52.920352], [-122.293041, 52.921849], [-122.29274, 52.922948], [-122.29296, 52.924535], [-122.294579, 52.925836], [-122.295335, 52.926225], [-122.297063, 52.927784], [-122.299633, 52.930925], [-122.300744, 52.93173], [-122.302809, 52.933035], [-122.303442, 52.934335], [-122.307129, 52.938016], [-122.308514, 52.941662], [-122.311112, 52.945622], [-122.312443, 52.946808], [-122.313394, 52.947244], [-122.317733, 52.947913], [-122.31902, 52.948305], [-122.319705, 52.948584], [-122.321376, 52.950414], [-122.3216, 52.952364], [-122.321614, 52.953225], [-122.315501, 52.959147], [-122.312458, 52.962252], [-122.312628, 52.964124], [-122.315497, 52.968521], [-122.319258, 52.971786], [-122.319802, 52.973356], [-122.321572, 52.974903], [-122.323942, 52.975426], [-122.328476, 52.975566], [-122.329166, 52.975991], [-122.330156, 52.976957], [-122.331432, 52.979169], [-122.332518, 52.980123], [-122.333594, 52.980741], [-122.337597, 52.982249], [-122.339854, 52.983248], [-122.340993, 52.984071], [-122.343294, 52.986125], [-122.344833, 52.987237], [-122.345509, 52.987605], [-122.348568, 52.987581], [-122.349641, 52.988349], [-122.352356, 52.989636], [-122.353222, 52.990682], [-122.354021, 52.9914], [-122.355336, 52.993237], [-122.356956, 52.993641], [-122.357907, 52.993586], [-122.35857, 52.993509], [-122.361325, 52.99278], [-122.363036, 52.992793], [-122.364408, 52.995121], [-122.36584, 52.995905], [-122.366, 52.996909], [-122.366864, 52.997575], [-122.36738, 52.99881], [-122.367295, 53.000184], [-122.36784, 53.000712], [-122.370079, 53.001331], [-122.376276, 53.000938], [-122.378179, 52.999488], [-122.380121, 52.99903], [-122.380702, 52.998041], [-122.381396, 52.996327], [-122.383421, 52.995229], [-122.392083, 52.995442], [-122.399508, 52.995387], [-122.401174, 52.995747], [-122.401686, 52.987097], [-122.395615, 52.987077], [-122.396263, 52.974793], [-122.402023, 52.974867], [-122.402314, 52.970639], [-122.40402, 52.970725], [-122.40418, 52.966996], [-122.405293, 52.966994], [-122.405667, 52.967144], [-122.409028, 52.967135], [-122.408883, 52.968192], [-122.410252, 52.969264], [-122.412076, 52.969859], [-122.413659, 52.969772], [-122.417562, 52.968274], [-122.417601, 52.968312], [-122.422091, 52.968599], [-122.42254, 52.96804], [-122.421457, 52.967382], [-122.420097, 52.967316], [-122.418563, 52.96685], [-122.417049, 52.96653], [-122.416514, 52.96592], [-122.41616, 52.965689], [-122.415249, 52.964234], [-122.414639, 52.962953], [-122.41404, 52.962783], [-122.413354, 52.961999], [-122.413177, 52.961464], [-122.418448, 52.96138], [-122.428477, 52.961013], [-122.438025, 52.96097], [-122.443608, 52.960734], [-122.443981, 52.960822], [-122.442944, 52.96456], [-122.446085, 52.964561], [-122.446084, 52.967522], [-122.44212, 52.967538], [-122.440922, 52.971597], [-122.441664, 52.971697], [-122.441202, 52.972303], [-122.440614, 52.974362], [-122.440668, 52.974547], [-122.440886, 52.974679], [-122.439739, 52.97476], [-122.44039, 52.975099], [-122.441571, 52.976057], [-122.442965, 52.976477], [-122.444045, 52.977021], [-122.444431, 52.977141], [-122.44565, 52.977228], [-122.446496, 52.977572], [-122.447135, 52.977683], [-122.448297, 52.977698], [-122.448877, 52.977638], [-122.450051, 52.977681], [-122.450075, 52.978022], [-122.451717, 52.978043], [-122.45174, 52.978536], [-122.463873, 52.978716], [-122.464917, 52.97652], [-122.464496, 52.973414], [-122.464258, 52.970704], [-122.464444, 52.968448], [-122.469112, 52.968573], [-122.495104, 52.968747], [-122.495187, 52.968621], [-122.496048, 52.968236], [-122.496737, 52.968219]], [[-122.462239, 52.554798], [-122.479898, 52.551968], [-122.479925, 52.553869], [-122.479524, 52.555323], [-122.479012, 52.55631], [-122.477796, 52.558049], [-122.476523, 52.55959], [-122.476268, 52.560055], [-122.47567, 52.560511], [-122.474717, 52.561443], [-122.474133, 52.562159], [-122.473346, 52.56381], [-122.472024, 52.565782], [-122.471665, 52.566475], [-122.465847, 52.56657], [-122.46686, 52.55982], [-122.462354, 52.559841], [-122.460846, 52.560046], [-122.460751, 52.557208], [-122.460862, 52.555181], [-122.462239, 52.554798]], [[-122.452476, 52.566496], [-122.439167, 52.566145], [-122.439268, 52.563214], [-122.443355, 52.563296], [-122.444036, 52.554293], [-122.457867, 52.555142], [-122.457644, 52.555614], [-122.456907, 52.556597], [-122.4567, 52.557087], [-122.456788, 52.559263], [-122.453661, 52.559173], [-122.452476, 52.566496]]]]}, "properties": {"name": "Cariboo A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo A", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941019", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.833255, 53.375274], [-122.834953, 53.374727], [-122.835911, 53.374198], [-122.836847, 53.373558], [-122.83788, 53.372117], [-122.837627, 53.371379], [-122.8381, 53.369812], [-122.839892, 53.365245], [-122.84235, 53.362664], [-122.845194, 53.360595], [-122.846214, 53.359742], [-122.847471, 53.358353], [-122.848251, 53.357962], [-122.849407, 53.356366], [-122.85026, 53.353787], [-122.850325, 53.351342], [-122.851332, 53.349758], [-122.855584, 53.347308], [-122.862162, 53.344268], [-122.863508, 53.343462], [-122.87018, 53.340789], [-122.872396, 53.338908], [-122.872539, 53.336296], [-122.879667, 53.329936], [-122.883006, 53.327878], [-122.884831, 53.325245], [-122.885384, 53.323047], [-122.885403, 53.320046], [-122.88368, 53.318406], [-122.877148, 53.314231], [-122.872952, 53.311766], [-122.87522, 53.310839], [-122.875778, 53.310749], [-122.876542, 53.310451], [-122.878025, 53.309605], [-122.879233, 53.307626], [-122.879937, 53.30703], [-122.881089, 53.306301], [-122.882413, 53.305576], [-122.883739, 53.305001], [-122.884878, 53.304638], [-122.885678, 53.279357], [-122.897412, 53.279435], [-122.897497, 53.27223], [-122.885539, 53.272258], [-122.884934, 53.250098], [-122.880747, 53.138588], [-122.872074, 53.088621], [-122.87941, 53.075515], [-122.899117, 53.035081], [-122.909676, 53.010678], [-122.909656, 53.004589], [-122.910264, 52.994266], [-122.910517, 52.958667], [-122.910376, 52.956135], [-122.887127, 52.956206], [-122.886566, 52.959175], [-122.870871, 52.959254], [-122.827543, 52.958899], [-122.782503, 52.958614], [-122.75334, 52.956709], [-122.724088, 52.955396], [-122.694401, 52.953891], [-122.688902, 52.953699], [-122.654501, 52.954691], [-122.640972, 52.954934], [-122.63664, 52.957428], [-122.636396, 52.957501], [-122.623565, 52.957437], [-122.612142, 52.957305], [-122.61166, 52.955571], [-122.583137, 52.954987], [-122.55043, 52.956774], [-122.542388, 52.956689], [-122.544031, 52.978343], [-122.539445, 52.978337], [-122.539315, 52.985114], [-122.526762, 52.984979], [-122.526798, 52.987663], [-122.521211, 52.98772], [-122.517459, 52.987631], [-122.517833, 52.987783], [-122.514801, 52.988033], [-122.515103, 52.990281], [-122.515561, 52.990302], [-122.516085, 52.991019], [-122.517414, 52.991037], [-122.517618, 52.991188], [-122.527004, 52.990789], [-122.527687, 52.994732], [-122.520089, 52.994824], [-122.523238, 52.996693], [-122.522413, 52.99721], [-122.5227, 52.997341], [-122.522488, 52.99747], [-122.521513, 52.997748], [-122.523817, 53.00034], [-122.521937, 53.001325], [-122.521252, 53.001964], [-122.518115, 53.000649], [-122.514995, 52.997603], [-122.514072, 52.997671], [-122.513779, 52.998489], [-122.512932, 52.998452], [-122.512948, 52.998853], [-122.512834, 52.999397], [-122.511911, 53.000808], [-122.512763, 53.001261], [-122.513349, 53.002007], [-122.512755, 53.003071], [-122.513531, 53.003976], [-122.51528, 53.004429], [-122.516977, 53.004756], [-122.518688, 53.006405], [-122.519377, 53.007622], [-122.519081, 53.008936], [-122.51865, 53.00954], [-122.519497, 53.009632], [-122.522532, 53.01524], [-122.528381, 53.015191], [-122.52739, 53.016371], [-122.526921, 53.017217], [-122.526887, 53.019112], [-122.527967, 53.020562], [-122.530051, 53.026464], [-122.52844, 53.026368], [-122.521551, 53.026666], [-122.525212, 53.030081], [-122.525797, 53.030951], [-122.525922, 53.031369], [-122.525933, 53.031828], [-122.525595, 53.033817], [-122.504441, 53.033807], [-122.500942, 53.030745], [-122.501265, 53.023405], [-122.497445, 53.018652], [-122.49559, 53.015796], [-122.495007, 53.015471], [-122.491798, 53.015659], [-122.490056, 53.015898], [-122.489883, 53.010908], [-122.489929, 53.004611], [-122.482005, 53.006714], [-122.481611, 53.006681], [-122.481457, 53.012895], [-122.481656, 53.017147], [-122.481706, 53.021633], [-122.482018, 53.024944], [-122.481898, 53.025513], [-122.481971, 53.026217], [-122.480172, 53.026209], [-122.477269, 53.025939], [-122.462717, 53.026348], [-122.444877, 53.02663], [-122.445041, 53.040529], [-122.439752, 53.040676], [-122.439642, 53.055274], [-122.414003, 53.055375], [-122.41389, 53.069361], [-122.382724, 53.069459], [-122.367693, 53.06937], [-122.352014, 53.069534], [-122.352301, 53.083905], [-122.349457, 53.08386], [-122.349506, 53.083437], [-122.349384, 53.08264], [-122.348679, 53.080914], [-122.347955, 53.079875], [-122.346347, 53.079012], [-122.344753, 53.078818], [-122.343768, 53.078912], [-122.342696, 53.079107], [-122.340276, 53.079744], [-122.338926, 53.079717], [-122.338287, 53.079389], [-122.337838, 53.07815], [-122.33765, 53.077978], [-122.337128, 53.077734], [-122.335857, 53.07739], [-122.334554, 53.077301], [-122.333556, 53.077402], [-122.332072, 53.077922], [-122.331516, 53.078193], [-122.331181, 53.078631], [-122.331201, 53.079022], [-122.331535, 53.079339], [-122.332167, 53.079755], [-122.332461, 53.080143], [-122.332421, 53.080439], [-122.331967, 53.081215], [-122.331835, 53.081291], [-122.331823, 53.081598], [-122.32798, 53.211353], [-122.411159, 53.212105], [-122.413409, 53.232613], [-122.428517, 53.232633], [-122.429993, 53.26111], [-122.445963, 53.26083], [-122.447244, 53.286832], [-122.447121, 53.293025], [-122.450163, 53.293121], [-122.455368, 53.313485], [-122.467852, 53.313606], [-122.471385, 53.330572], [-122.487328, 53.330944], [-122.488827, 53.352739], [-122.489633, 53.372594], [-122.520965, 53.37171], [-122.540087, 53.372087], [-122.564546, 53.372756], [-122.567944, 53.37246], [-122.598185, 53.372409], [-122.612461, 53.372434], [-122.612316, 53.376045], [-122.635941, 53.375924], [-122.63653, 53.386496], [-122.643054, 53.38665], [-122.646048, 53.3869], [-122.649137, 53.385536], [-122.651794, 53.384022], [-122.655598, 53.382358], [-122.658431, 53.38146], [-122.659433, 53.381047], [-122.661504, 53.380329], [-122.665666, 53.379433], [-122.669215, 53.379394], [-122.670597, 53.379855], [-122.672355, 53.381213], [-122.674087, 53.383724], [-122.675856, 53.38561], [-122.678264, 53.386729], [-122.679046, 53.387617], [-122.679685, 53.388136], [-122.680375, 53.388988], [-122.682518, 53.389862], [-122.684384, 53.390366], [-122.686565, 53.39077], [-122.689141, 53.391334], [-122.691597, 53.39176], [-122.69384, 53.391862], [-122.69821, 53.391686], [-122.699834, 53.391458], [-122.701624, 53.391004], [-122.704781, 53.389617], [-122.708843, 53.388639], [-122.711473, 53.388478], [-122.713401, 53.388222], [-122.71561, 53.388272], [-122.719674, 53.387483], [-122.723674, 53.385914], [-122.725992, 53.384072], [-122.727235, 53.383448], [-122.73025, 53.382934], [-122.734459, 53.382534], [-122.738932, 53.382433], [-122.742951, 53.382824], [-122.745501, 53.382921], [-122.748053, 53.383245], [-122.75118, 53.383431], [-122.752039, 53.383622], [-122.753011, 53.383669], [-122.75401, 53.383804], [-122.755843, 53.384279], [-122.75835, 53.384638], [-122.759761, 53.384988], [-122.760649, 53.385786], [-122.762698, 53.38607], [-122.766315, 53.385976], [-122.766667, 53.385917], [-122.768435, 53.385952], [-122.783658, 53.384237], [-122.79052, 53.382593], [-122.795633, 53.381502], [-122.79888, 53.380118], [-122.80062, 53.379708], [-122.806019, 53.378805], [-122.811158, 53.378406], [-122.813975, 53.378553], [-122.822801, 53.377469], [-122.824494, 53.377184], [-122.826262, 53.377106], [-122.827887, 53.376885], [-122.829, 53.376577], [-122.829978, 53.376129], [-122.833255, 53.375274]]], [[[-122.493111, 52.987952], [-122.496279, 52.99057], [-122.497654, 52.991411], [-122.497876, 52.991731], [-122.497862, 52.991902], [-122.503458, 52.991771], [-122.502953, 52.990896], [-122.502818, 52.989692], [-122.5026, 52.989072], [-122.501729, 52.987754], [-122.501178, 52.987783], [-122.500058, 52.987664], [-122.499293, 52.987433], [-122.498742, 52.987132], [-122.497741, 52.987363], [-122.495853, 52.987663], [-122.494356, 52.987491], [-122.494146, 52.987495], [-122.493111, 52.987952]]]]}, "properties": {"name": "Cariboo B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo B", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941021", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.52785, 53.166717], [-121.561439, 53.16601], [-121.565868, 53.166123], [-121.566842, 53.165925], [-121.6435, 53.158324], [-121.647258, 53.157848], [-121.708885, 53.156009], [-121.740187, 53.118918], [-121.74359, 53.11679], [-121.744052, 53.115929], [-121.774295, 53.088366], [-121.771834, 53.089832], [-121.766914, 53.091389], [-121.763159, 53.092463], [-121.760798, 53.092934], [-121.759002, 53.093118], [-121.75764, 53.093139], [-121.753474, 53.092884], [-121.751805, 53.092544], [-121.750835, 53.092187], [-121.750262, 53.091738], [-121.749935, 53.091298], [-121.749815, 53.090824], [-121.750046, 53.089817], [-121.750995, 53.087486], [-121.75108, 53.086807], [-121.750921, 53.086288], [-121.750613, 53.085871], [-121.750289, 53.085658], [-121.749682, 53.08556], [-121.747943, 53.085697], [-121.74745, 53.085621], [-121.747032, 53.085408], [-121.745921, 53.083661], [-121.745038, 53.082625], [-121.7437, 53.081501], [-121.74246, 53.080659], [-121.740885, 53.080148], [-121.739481, 53.07984], [-121.737777, 53.079624], [-121.736376, 53.079543], [-121.73509, 53.079597], [-121.733939, 53.079867], [-121.732505, 53.080366], [-121.727405, 53.081197], [-121.725229, 53.081155], [-121.724358, 53.081081], [-121.723266, 53.080635], [-121.722483, 53.08005], [-121.721717, 53.079206], [-121.719606, 53.075224], [-121.719051, 53.073871], [-121.718428, 53.073285], [-121.717344, 53.07268], [-121.716205, 53.07229], [-121.713227, 53.071527], [-121.711503, 53.071231], [-121.710178, 53.07107], [-121.708778, 53.070988], [-121.710047, 53.067085], [-121.697057, 53.065273], [-121.697953, 53.062987], [-121.694664, 53.063145], [-121.69115, 53.066485], [-121.683994, 53.065434], [-121.68258, 53.067118], [-121.68159, 53.067848], [-121.680878, 53.068235], [-121.680052, 53.068544], [-121.679129, 53.068569], [-121.678262, 53.068435], [-121.67709, 53.067823], [-121.676842, 53.067415], [-121.677065, 53.06672], [-121.677532, 53.065751], [-121.67847, 53.06461], [-121.678993, 53.06371], [-121.679121, 53.062902], [-121.679113, 53.061479], [-121.678791, 53.061093], [-121.676278, 53.059951], [-121.673423, 53.058229], [-121.67293, 53.057639], [-121.671832, 53.056777], [-121.671301, 53.056199], [-121.670883, 53.055585], [-121.67076, 53.055028], [-121.664935, 53.054463], [-121.663556, 53.054942], [-121.66568, 53.055718], [-121.665813, 53.05582], [-121.662246, 53.058871], [-121.660113, 53.058069], [-121.65871, 53.059037], [-121.656859, 53.058234], [-121.659151, 53.056054], [-121.656347, 53.056196], [-121.654278, 53.056428], [-121.652808, 53.056249], [-121.651261, 53.055809], [-121.649977, 53.055232], [-121.648166, 53.054645], [-121.646432, 53.054432], [-121.644549, 53.054379], [-121.642571, 53.054213], [-121.64076, 53.053682], [-121.639458, 53.053139], [-121.638419, 53.052516], [-121.635834, 53.051505], [-121.632429, 53.050891], [-121.632413, 53.050474], [-121.628933, 53.049737], [-121.628385, 53.049477], [-121.627969, 53.049148], [-121.627741, 53.048704], [-121.627795, 53.04809], [-121.628222, 53.04628], [-121.630134, 53.043191], [-121.630554, 53.042671], [-121.630362, 53.042285], [-121.63072, 53.041082], [-121.630048, 53.04054], [-121.629651, 53.04012], [-121.629668, 53.039688], [-121.629873, 53.039198], [-121.630286, 53.038617], [-121.631339, 53.037783], [-121.632335, 53.03717], [-121.634074, 53.03551], [-121.636544, 53.034698], [-121.637022, 53.034228], [-121.637171, 53.033784], [-121.63683, 53.033319], [-121.635133, 53.032697], [-121.633117, 53.032314], [-121.632232, 53.032214], [-121.631611, 53.032204], [-121.630784, 53.032341], [-121.629959, 53.032706], [-121.629043, 53.033356], [-121.628002, 53.034811], [-121.627517, 53.0353], [-121.626505, 53.035779], [-121.625416, 53.036054], [-121.624437, 53.036067], [-121.620352, 53.035745], [-121.61941, 53.035519], [-121.618052, 53.035078], [-121.616355, 53.034399], [-121.614487, 53.033572], [-121.613657, 53.033085], [-121.567043, 53.064572], [-121.562446, 53.080789], [-121.56, 53.081603], [-121.556816, 53.079094], [-121.55088, 53.083162], [-121.547591, 53.081309], [-121.546047, 53.082347], [-121.543656, 53.081189], [-121.538906, 53.085183], [-121.530347, 53.094957], [-121.526925, 53.092708], [-121.526371, 53.092433], [-121.522493, 53.091513], [-121.521478, 53.091114], [-121.517262, 53.088416], [-121.509436, 53.093088], [-121.512389, 53.104559], [-121.516988, 53.114435], [-121.518428, 53.128376], [-121.522914, 53.145884], [-121.52785, 53.166717]]]]}, "properties": {"name": "Wells", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Wells", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941025", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.336265, 53.450127], [-122.339864, 53.446074], [-122.348115, 53.440083], [-122.344511, 53.435385], [-122.332219, 53.424024], [-122.327889, 53.41806], [-122.326422, 53.411656], [-122.34505, 53.399421], [-122.349534, 53.390124], [-122.344955, 53.383158], [-122.34305, 53.377114], [-122.348617, 53.373491], [-122.407575, 53.37302], [-122.489633, 53.372594], [-122.488827, 53.352739], [-122.487328, 53.330944], [-122.471385, 53.330572], [-122.467852, 53.313606], [-122.455368, 53.313485], [-122.450163, 53.293121], [-122.447121, 53.293025], [-122.447244, 53.286832], [-122.445963, 53.26083], [-122.429993, 53.26111], [-122.428517, 53.232633], [-122.413409, 53.232613], [-122.411159, 53.212105], [-122.32798, 53.211353], [-122.331823, 53.081598], [-122.331835, 53.081291], [-122.331967, 53.081215], [-122.332421, 53.080439], [-122.332461, 53.080143], [-122.332167, 53.079755], [-122.331535, 53.079339], [-122.331201, 53.079022], [-122.331181, 53.078631], [-122.331516, 53.078193], [-122.332072, 53.077922], [-122.333556, 53.077402], [-122.334554, 53.077301], [-122.335857, 53.07739], [-122.337128, 53.077734], [-122.33765, 53.077978], [-122.337838, 53.07815], [-122.338287, 53.079389], [-122.338926, 53.079717], [-122.340276, 53.079744], [-122.342696, 53.079107], [-122.343768, 53.078912], [-122.344753, 53.078818], [-122.346347, 53.079012], [-122.347955, 53.079875], [-122.348679, 53.080914], [-122.349384, 53.08264], [-122.349506, 53.083437], [-122.349457, 53.08386], [-122.352301, 53.083905], [-122.352014, 53.069534], [-122.367693, 53.06937], [-122.382724, 53.069459], [-122.41389, 53.069361], [-122.414003, 53.055375], [-122.439642, 53.055274], [-122.439752, 53.040676], [-122.445041, 53.040529], [-122.444877, 53.02663], [-122.462717, 53.026348], [-122.477269, 53.025939], [-122.480172, 53.026209], [-122.481971, 53.026217], [-122.481898, 53.025513], [-122.482018, 53.024944], [-122.481706, 53.021633], [-122.481656, 53.017147], [-122.481457, 53.012895], [-122.481611, 53.006681], [-122.473823, 53.006018], [-122.468402, 53.005328], [-122.463136, 53.002975], [-122.46277, 53.00275], [-122.461758, 53.001745], [-122.460085, 53.000545], [-122.459086, 53.0], [-122.455687, 52.998618], [-122.453651, 52.998037], [-122.449535, 52.997369], [-122.445778, 52.997013], [-122.440944, 52.996385], [-122.438317, 52.996304], [-122.433712, 52.996517], [-122.431346, 52.996555], [-122.427286, 52.996445], [-122.419771, 52.995886], [-122.413596, 52.996178], [-122.406097, 52.996671], [-122.405257, 52.996629], [-122.399508, 52.995387], [-122.392083, 52.995442], [-122.383421, 52.995229], [-122.381396, 52.996327], [-122.380702, 52.998041], [-122.380121, 52.99903], [-122.378179, 52.999488], [-122.376276, 53.000938], [-122.370079, 53.001331], [-122.36784, 53.000712], [-122.367295, 53.000184], [-122.36738, 52.99881], [-122.366864, 52.997575], [-122.366, 52.996909], [-122.36584, 52.995905], [-122.364408, 52.995121], [-122.363036, 52.992793], [-122.361325, 52.99278], [-122.35857, 52.993509], [-122.357907, 52.993586], [-122.356956, 52.993641], [-122.355336, 52.993237], [-122.354021, 52.9914], [-122.353222, 52.990682], [-122.352356, 52.989636], [-122.349641, 52.988349], [-122.348568, 52.987581], [-122.345509, 52.987605], [-122.344833, 52.987237], [-122.343294, 52.986125], [-122.340993, 52.984071], [-122.339854, 52.983248], [-122.337597, 52.982249], [-122.333594, 52.980741], [-122.332518, 52.980123], [-122.331432, 52.979169], [-122.330156, 52.976957], [-122.329166, 52.975991], [-122.328476, 52.975566], [-122.323942, 52.975426], [-122.321572, 52.974903], [-122.319802, 52.973356], [-122.319258, 52.971786], [-122.315497, 52.968521], [-122.312628, 52.964124], [-122.312458, 52.962252], [-122.315501, 52.959147], [-122.321614, 52.953225], [-122.3216, 52.952364], [-122.321376, 52.950414], [-122.319705, 52.948584], [-122.31902, 52.948305], [-122.317733, 52.947913], [-122.313394, 52.947244], [-122.312443, 52.946808], [-122.311112, 52.945622], [-122.308514, 52.941662], [-122.307129, 52.938016], [-122.303442, 52.934335], [-122.302809, 52.933035], [-122.300744, 52.93173], [-122.299633, 52.930925], [-122.297063, 52.927784], [-122.295335, 52.926225], [-122.294579, 52.925836], [-122.29296, 52.924535], [-122.29274, 52.922948], [-122.293041, 52.921849], [-122.293833, 52.920352], [-122.295054, 52.918882], [-122.297225, 52.915962], [-122.297943, 52.914568], [-122.298537, 52.913706], [-122.298568, 52.911559], [-122.296933, 52.910227], [-122.295769, 52.90949], [-122.294448, 52.908486], [-122.292232, 52.908013], [-122.28541, 52.908193], [-122.282882, 52.906994], [-122.281891, 52.906384], [-122.279574, 52.902925], [-122.280655, 52.900574], [-122.282692, 52.897515], [-122.28186, 52.892681], [-122.280422, 52.889515], [-122.279028, 52.888715], [-122.27474, 52.888504], [-122.272324, 52.888881], [-122.271074, 52.888599], [-122.27028, 52.888309], [-122.269872, 52.887816], [-122.269363, 52.886751], [-122.268528, 52.885446], [-122.267974, 52.884113], [-122.267559, 52.883433], [-122.265937, 52.881673], [-122.263959, 52.879903], [-122.253347, 52.871152], [-122.253264, 52.870408], [-122.255818, 52.86911], [-122.256978, 52.868361], [-122.25771, 52.867669], [-122.258887, 52.865964], [-122.259296, 52.865137], [-122.259403, 52.864668], [-122.25928, 52.863601], [-122.258393, 52.861645], [-122.257301, 52.860347], [-122.256117, 52.859309], [-122.255219, 52.858732], [-122.253954, 52.858106], [-122.25314, 52.857953], [-122.241442, 52.856966], [-122.239235, 52.856409], [-122.237314, 52.853473], [-122.237437, 52.850677], [-122.234212, 52.847154], [-122.228859, 52.845372], [-122.227787, 52.844678], [-122.223435, 52.841281], [-122.222206, 52.839975], [-122.221821, 52.839811], [-122.220823, 52.839058], [-122.219387, 52.837782], [-122.216488, 52.835976], [-122.215551, 52.835194], [-122.213379, 52.833645], [-122.212705, 52.833307], [-122.210114, 52.832259], [-122.206766, 52.830741], [-122.206191, 52.826995], [-122.207703, 52.824034], [-122.209276, 52.822922], [-122.209758, 52.820753], [-122.209203, 52.818975], [-122.206273, 52.817591], [-122.202567, 52.817471], [-122.201952, 52.817631], [-122.199566, 52.81847], [-122.197518, 52.819526], [-122.196851, 52.819947], [-122.193753, 52.82279], [-122.191614, 52.822714], [-122.190689, 52.822593], [-122.188135, 52.821957], [-122.186043, 52.821231], [-122.183303, 52.819938], [-122.18158, 52.81892], [-122.181105, 52.818531], [-122.177689, 52.816645], [-122.175361, 52.81514], [-122.174445, 52.814398], [-122.173703, 52.81355], [-122.173111, 52.813045], [-122.172365, 52.812022], [-122.172124, 52.811414], [-122.172103, 52.810917], [-122.174298, 52.807194], [-122.175471, 52.805504], [-122.175759, 52.804648], [-122.175772, 52.803997], [-122.175137, 52.802526], [-122.174263, 52.801822], [-122.168452, 52.799233], [-122.166848, 52.798717], [-122.165788, 52.79816], [-122.165231, 52.797809], [-122.164174, 52.796901], [-122.163733, 52.796238], [-122.163645, 52.795499], [-122.163688, 52.794813], [-122.16417, 52.794276], [-122.16451, 52.793706], [-122.166298, 52.792572], [-122.167107, 52.79161], [-122.167208, 52.787805], [-122.164944, 52.78619], [-122.165459, 52.781897], [-122.165055, 52.779658], [-122.161262, 52.777951], [-122.156884, 52.77473], [-122.156329, 52.774101], [-122.152617, 52.770991], [-122.152043, 52.769141], [-122.151926, 52.766113], [-122.152562, 52.763687], [-122.152549, 52.760151], [-122.152452, 52.759391], [-122.151865, 52.758724], [-122.151781, 52.758422], [-122.151747, 52.757757], [-122.151927, 52.756328], [-122.151585, 52.754605], [-122.151184, 52.753346], [-122.150677, 52.752581], [-122.149856, 52.752083], [-122.148726, 52.751906], [-122.147593, 52.751913], [-122.14573, 52.751775], [-122.144451, 52.751979], [-122.143206, 52.752332], [-122.141768, 52.752606], [-122.140563, 52.753034], [-122.139015, 52.75339], [-122.137303, 52.753506], [-122.135407, 52.753496], [-122.134657, 52.753564], [-122.133447, 52.753416], [-122.132938, 52.75322], [-122.132493, 52.752929], [-122.132426, 52.752554], [-122.132782, 52.752272], [-122.136491, 52.750786], [-122.137566, 52.750091], [-122.139526, 52.748077], [-122.140146, 52.747236], [-122.140797, 52.746079], [-122.140908, 52.74567], [-122.140744, 52.744563], [-122.138158, 52.740466], [-122.137522, 52.739688], [-122.13643, 52.738859], [-122.135501, 52.738488], [-122.134169, 52.738141], [-122.133379, 52.73807], [-122.130559, 52.737482], [-122.129267, 52.737056], [-122.125957, 52.736618], [-122.125164, 52.736303], [-122.124419, 52.735772], [-122.124, 52.735172], [-122.123432, 52.734658], [-122.12069, 52.730935], [-122.120491, 52.730642], [-122.120345, 52.728571], [-122.120208, 52.728212], [-122.120925, 52.728027], [-122.12209, 52.727522], [-122.122934, 52.726739], [-122.122953, 52.725554], [-122.123226, 52.72515], [-122.12269, 52.724039], [-122.119231, 52.714837], [-122.092692, 52.714757], [-122.0617, 52.714412], [-122.015197, 52.714059], [-122.015076, 52.714148], [-121.940704, 52.714498], [-121.938174, 52.743137], [-121.896082, 52.742714], [-121.821899, 52.742078], [-121.821893, 52.742138], [-121.758907, 52.742037], [-121.719302, 52.732865], [-121.693963, 52.719825], [-121.65545, 52.738378], [-121.599343, 52.725129], [-121.582017, 52.739403], [-121.599103, 52.753243], [-121.604831, 52.768992], [-121.610343, 52.77471], [-121.616483, 52.785174], [-121.614448, 52.789836], [-121.610482, 52.793518], [-121.602965, 52.796937], [-121.591128, 52.807173], [-121.595005, 52.811373], [-121.620411, 52.824025], [-121.6131, 52.836136], [-121.614382, 52.849212], [-121.60454, 52.860522], [-121.578752, 52.857155], [-121.563999, 52.867036], [-121.529645, 52.869409], [-121.504216, 52.862884], [-121.500367, 52.863156], [-121.495033, 52.862532], [-121.49103, 52.861279], [-121.488206, 52.857871], [-121.478582, 52.846673], [-121.476365, 52.845332], [-121.473414, 52.845785], [-121.467817, 52.848844], [-121.452555, 52.866541], [-121.442533, 52.872296], [-121.42274, 52.875638], [-121.392354, 52.873779], [-121.381069, 52.872237], [-121.366164, 52.871698], [-121.360309, 52.87131], [-121.346475, 52.871132], [-121.343815, 52.871145], [-121.336116, 52.875483], [-121.333752, 52.881227], [-121.324108, 52.885633], [-121.310578, 52.894986], [-121.295633, 52.898437], [-121.28184, 52.899067], [-121.269209, 52.908728], [-121.262417, 52.911841], [-121.252428, 52.9184], [-121.241987, 52.926154], [-121.22736, 52.928992], [-121.205535, 52.927063], [-121.205122, 52.926883], [-121.203631, 52.925881], [-121.20244, 52.925512], [-121.201597, 52.925428], [-121.199706, 52.925416], [-121.198313, 52.925342], [-121.197912, 52.925291], [-121.197015, 52.925052], [-121.195836, 52.925116], [-121.195094, 52.925436], [-121.194494, 52.925553], [-121.192905, 52.92552], [-121.19202, 52.925291], [-121.191817, 52.925198], [-121.190533, 52.924207], [-121.189819, 52.922767], [-121.189512, 52.922313], [-121.189157, 52.921903], [-121.188317, 52.921369], [-121.187893, 52.920796], [-121.187665, 52.919902], [-121.187723, 52.919534], [-121.188022, 52.918765], [-121.188055, 52.918038], [-121.187579, 52.916969], [-121.187194, 52.916559], [-121.186817, 52.916311], [-121.186492, 52.915937], [-121.185985, 52.915569], [-121.185748, 52.91554], [-121.185333, 52.915884], [-121.184842, 52.915876], [-121.184608, 52.915756], [-121.184497, 52.915592], [-121.182222, 52.914487], [-121.181999, 52.91453], [-121.181599, 52.914487], [-121.181236, 52.914275], [-121.180837, 52.914169], [-121.180321, 52.913739], [-121.180101, 52.913322], [-121.180165, 52.912856], [-121.180315, 52.912472], [-121.180742, 52.911839], [-121.180894, 52.911077], [-121.180745, 52.910743], [-121.180301, 52.910277], [-121.180008, 52.909833], [-121.179824, 52.909282], [-121.179314, 52.908954], [-121.176656, 52.910617], [-121.17196, 52.914017], [-121.17152, 52.914584], [-121.17158, 52.915988], [-121.171864, 52.916756], [-121.172344, 52.917301], [-121.173537, 52.918134], [-121.17384, 52.918452], [-121.17406, 52.918916], [-121.173974, 52.91962], [-121.173781, 52.92005], [-121.173244, 52.920748], [-121.172659, 52.921303], [-121.1721, 52.922002], [-121.171713, 52.922935], [-121.171314, 52.924879], [-121.171443, 52.925668], [-121.171295, 52.926388], [-121.169102, 52.929495], [-121.168898, 52.930363], [-121.169135, 52.930643], [-121.171044, 52.931513], [-121.172615, 52.932686], [-121.173193, 52.933567], [-121.173611, 52.935141], [-121.173016, 52.936773], [-121.172171, 52.937024], [-121.171016, 52.937522], [-121.171023, 52.937947], [-121.171258, 52.938335], [-121.172391, 52.93887], [-121.174663, 52.938619], [-121.176819, 52.938047], [-121.17775, 52.937479], [-121.179147, 52.937034], [-121.179713, 52.937094], [-121.180451, 52.937441], [-121.181546, 52.938237], [-121.181693, 52.938501], [-121.181323, 52.939355], [-121.180584, 52.940361], [-121.180234, 52.940742], [-121.17941, 52.941296], [-121.178197, 52.941986], [-121.1774, 52.942266], [-121.175994, 52.942192], [-121.175337, 52.942424], [-121.174956, 52.942858], [-121.142767, 52.939472], [-121.131864, 52.925783], [-121.120412, 52.869753], [-121.072507, 52.875311], [-121.057196, 52.883075], [-120.995269, 52.880429], [-120.934576, 52.857649], [-120.887237, 52.886747], [-120.843657, 52.901921], [-120.807869, 52.899509], [-120.789591, 52.908463], [-120.737653, 52.907965], [-120.722833, 52.896953], [-120.711342, 52.900339], [-120.701785, 52.90552], [-120.693267, 52.917489], [-120.69001, 52.922588], [-120.682211, 52.928134], [-120.671693, 52.931522], [-120.663396, 52.932186], [-120.642008, 52.925756], [-120.623788, 52.918985], [-120.611165, 52.913675], [-120.603902, 52.911963], [-120.592097, 52.910696], [-120.579848, 52.911922], [-120.571461, 52.916743], [-120.569803, 52.920182], [-120.588624, 52.93461], [-120.594587, 52.94025], [-120.592572, 52.946306], [-120.589382, 52.947831], [-120.576903, 52.950007], [-120.560093, 52.951676], [-120.557256, 52.951667], [-120.535181, 52.95587], [-120.533577, 52.962508], [-120.544901, 52.97613], [-120.541071, 52.980872], [-120.536061, 52.983842], [-120.5295, 52.985471], [-120.521562, 52.986424], [-120.515615, 52.988374], [-120.5102, 52.991137], [-120.502283, 52.991078], [-120.498741, 52.985462], [-120.494781, 52.981451], [-120.489907, 52.982272], [-120.483288, 52.989852], [-120.475775, 52.991792], [-120.467183, 52.988792], [-120.455761, 52.991584], [-120.453127, 52.993257], [-120.45739, 52.999311], [-120.488419, 53.054554], [-120.474238, 53.065544], [-120.425288, 53.067841], [-120.42163, 53.071711], [-120.417042, 53.082304], [-120.41505, 53.091808], [-120.417066, 53.100242], [-120.422683, 53.10657], [-120.429558, 53.11006], [-120.44501, 53.115132], [-120.456143, 53.118449], [-120.461137, 53.121776], [-120.462597, 53.124713], [-120.462496, 53.128635], [-120.462138, 53.133339], [-120.462805, 53.138524], [-120.466718, 53.149096], [-120.470612, 53.153412], [-120.476909, 53.156215], [-120.502224, 53.162491], [-120.525173, 53.170781], [-120.56961, 53.190478], [-120.575403, 53.192598], [-120.583097, 53.190901], [-120.593347, 53.189001], [-120.598461, 53.188598], [-120.600986, 53.190038], [-120.604025, 53.193232], [-120.607609, 53.19654], [-120.614412, 53.203261], [-120.627163, 53.213961], [-120.671023, 53.241166], [-120.694319, 53.256411], [-120.708991, 53.263831], [-120.715009, 53.264523], [-120.718672, 53.263996], [-120.733163, 53.260573], [-120.751662, 53.257608], [-120.767405, 53.255549], [-120.777272, 53.255279], [-120.787481, 53.256644], [-120.79545, 53.261391], [-120.79994, 53.266886], [-120.811163, 53.287845], [-120.822728, 53.285285], [-120.833381, 53.282725], [-120.84365, 53.281364], [-120.85298, 53.281639], [-120.860461, 53.283546], [-120.867571, 53.285833], [-120.88028, 53.295223], [-120.885374, 53.298101], [-120.906741, 53.30304], [-120.922812, 53.30707], [-120.927029, 53.306654], [-120.935504, 53.30254], [-120.937543, 53.300582], [-120.9389, 53.295014], [-120.938101, 53.286815], [-120.941443, 53.283114], [-120.946037, 53.281496], [-120.962538, 53.278842], [-120.972055, 53.278779], [-120.976062, 53.28088], [-120.977319, 53.284067], [-120.976185, 53.289329], [-120.975348, 53.304358], [-120.980221, 53.313593], [-120.990426, 53.319888], [-121.002288, 53.325422], [-121.018193, 53.329766], [-120.998278, 53.383036], [-120.997872, 53.389181], [-121.004701, 53.411873], [-121.008286, 53.430403], [-121.024415, 53.427714], [-121.036532, 53.414613], [-121.054507, 53.400504], [-121.073477, 53.393161], [-121.089005, 53.392742], [-121.111133, 53.397294], [-121.127219, 53.397966], [-121.135002, 53.394585], [-121.138995, 53.387476], [-121.142495, 53.379773], [-121.159981, 53.381283], [-121.174018, 53.396431], [-121.191936, 53.400583], [-121.187196, 53.389343], [-121.197692, 53.379055], [-121.208841, 53.37974], [-121.228164, 53.38473], [-121.264053, 53.403216], [-121.275473, 53.416035], [-121.283508, 53.429864], [-121.288296, 53.445714], [-121.328667, 53.444949], [-121.536343, 53.440161], [-121.546495, 53.439646], [-121.555426, 53.439387], [-121.571344, 53.45255], [-121.630807, 53.45334], [-121.75927, 53.455609], [-121.814029, 53.456911], [-121.838615, 53.456886], [-121.896532, 53.456605], [-121.931003, 53.456153], [-121.942744, 53.456968], [-121.972079, 53.456766], [-122.014899, 53.456592], [-122.036478, 53.456563], [-122.136862, 53.45664], [-122.162903, 53.456789], [-122.213057, 53.456296], [-122.27543, 53.456014], [-122.280705, 53.454885], [-122.287072, 53.450016], [-122.336265, 53.450127]], [[-121.744052, 53.115929], [-121.74359, 53.11679], [-121.740187, 53.118918], [-121.708885, 53.156009], [-121.647258, 53.157848], [-121.6435, 53.158324], [-121.566842, 53.165925], [-121.565868, 53.166123], [-121.561439, 53.16601], [-121.52785, 53.166717], [-121.522914, 53.145884], [-121.518428, 53.128376], [-121.516988, 53.114435], [-121.512389, 53.104559], [-121.509436, 53.093088], [-121.517262, 53.088416], [-121.521478, 53.091114], [-121.522493, 53.091513], [-121.526371, 53.092433], [-121.526925, 53.092708], [-121.530347, 53.094957], [-121.538906, 53.085183], [-121.543656, 53.081189], [-121.546047, 53.082347], [-121.547591, 53.081309], [-121.55088, 53.083162], [-121.556816, 53.079094], [-121.56, 53.081603], [-121.562446, 53.080789], [-121.567043, 53.064572], [-121.613657, 53.033085], [-121.614487, 53.033572], [-121.616355, 53.034399], [-121.618052, 53.035078], [-121.61941, 53.035519], [-121.620352, 53.035745], [-121.624437, 53.036067], [-121.625416, 53.036054], [-121.626505, 53.035779], [-121.627517, 53.0353], [-121.628002, 53.034811], [-121.629043, 53.033356], [-121.629959, 53.032706], [-121.630784, 53.032341], [-121.631611, 53.032204], [-121.632232, 53.032214], [-121.633117, 53.032314], [-121.635133, 53.032697], [-121.63683, 53.033319], [-121.637171, 53.033784], [-121.637022, 53.034228], [-121.636544, 53.034698], [-121.634074, 53.03551], [-121.632335, 53.03717], [-121.631339, 53.037783], [-121.630286, 53.038617], [-121.629873, 53.039198], [-121.629668, 53.039688], [-121.629651, 53.04012], [-121.630048, 53.04054], [-121.63072, 53.041082], [-121.630362, 53.042285], [-121.630554, 53.042671], [-121.630134, 53.043191], [-121.628222, 53.04628], [-121.627795, 53.04809], [-121.627741, 53.048704], [-121.627969, 53.049148], [-121.628385, 53.049477], [-121.628933, 53.049737], [-121.632413, 53.050474], [-121.632429, 53.050891], [-121.635834, 53.051505], [-121.638419, 53.052516], [-121.639458, 53.053139], [-121.64076, 53.053682], [-121.642571, 53.054213], [-121.644549, 53.054379], [-121.646432, 53.054432], [-121.648166, 53.054645], [-121.649977, 53.055232], [-121.651261, 53.055809], [-121.652808, 53.056249], [-121.654278, 53.056428], [-121.656347, 53.056196], [-121.659151, 53.056054], [-121.656859, 53.058234], [-121.65871, 53.059037], [-121.660113, 53.058069], [-121.662246, 53.058871], [-121.665813, 53.05582], [-121.66568, 53.055718], [-121.663556, 53.054942], [-121.664935, 53.054463], [-121.67076, 53.055028], [-121.670883, 53.055585], [-121.671301, 53.056199], [-121.671832, 53.056777], [-121.67293, 53.057639], [-121.673423, 53.058229], [-121.676278, 53.059951], [-121.678791, 53.061093], [-121.679113, 53.061479], [-121.679121, 53.062902], [-121.678993, 53.06371], [-121.67847, 53.06461], [-121.677532, 53.065751], [-121.677065, 53.06672], [-121.676842, 53.067415], [-121.67709, 53.067823], [-121.678262, 53.068435], [-121.679129, 53.068569], [-121.680052, 53.068544], [-121.680878, 53.068235], [-121.68159, 53.067848], [-121.68258, 53.067118], [-121.683994, 53.065434], [-121.69115, 53.066485], [-121.694664, 53.063145], [-121.697953, 53.062987], [-121.697057, 53.065273], [-121.710047, 53.067085], [-121.708778, 53.070988], [-121.710178, 53.07107], [-121.711503, 53.071231], [-121.713227, 53.071527], [-121.716205, 53.07229], [-121.717344, 53.07268], [-121.718428, 53.073285], [-121.719051, 53.073871], [-121.719606, 53.075224], [-121.721717, 53.079206], [-121.722483, 53.08005], [-121.723266, 53.080635], [-121.724358, 53.081081], [-121.725229, 53.081155], [-121.727405, 53.081197], [-121.732505, 53.080366], [-121.733939, 53.079867], [-121.73509, 53.079597], [-121.736376, 53.079543], [-121.737777, 53.079624], [-121.739481, 53.07984], [-121.740885, 53.080148], [-121.74246, 53.080659], [-121.7437, 53.081501], [-121.745038, 53.082625], [-121.745921, 53.083661], [-121.747032, 53.085408], [-121.74745, 53.085621], [-121.747943, 53.085697], [-121.749682, 53.08556], [-121.750289, 53.085658], [-121.750613, 53.085871], [-121.750921, 53.086288], [-121.75108, 53.086807], [-121.750995, 53.087486], [-121.750046, 53.089817], [-121.749815, 53.090824], [-121.749935, 53.091298], [-121.750262, 53.091738], [-121.750835, 53.092187], [-121.751805, 53.092544], [-121.753474, 53.092884], [-121.75764, 53.093139], [-121.759002, 53.093118], [-121.760798, 53.092934], [-121.763159, 53.092463], [-121.766914, 53.091389], [-121.771834, 53.089832], [-121.774295, 53.088366], [-121.744052, 53.115929]]]]}, "properties": {"name": "Cariboo C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo C", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941026", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.953022, 53.4338], [-124.964751, 53.436197], [-124.970942, 53.434182], [-124.983832, 53.431528], [-124.984723, 53.434815], [-124.992324, 53.436971], [-124.992679, 53.44122], [-124.996351, 53.444526], [-125.001721, 53.446838], [-125.001588, 53.441285], [-125.001188, 53.377108], [-124.996313, 53.241811], [-124.995451, 53.238034], [-125.004558, 53.23496], [-125.00062, 53.19037], [-125.000335, 53.000282], [-124.906875, 53.000143], [-124.75017, 52.999985], [-124.541678, 52.999907], [-124.50001, 52.999925], [-124.250564, 53.000285], [-124.000712, 53.000648], [-123.99847, 52.971136], [-123.995247, 52.877608], [-123.994164, 52.871057], [-123.994156, 52.870349], [-123.994561, 52.870517], [-123.994769, 52.870506], [-123.995419, 52.870302], [-123.995517, 52.87005], [-123.995692, 52.869951], [-123.995989, 52.869956], [-123.99641, 52.870151], [-123.996794, 52.870084], [-123.996883, 52.870003], [-123.996774, 52.869797], [-123.996264, 52.869622], [-123.996129, 52.869515], [-123.996157, 52.869442], [-123.99666, 52.869348], [-123.996777, 52.869257], [-123.996874, 52.868951], [-123.997404, 52.868749], [-123.997612, 52.868739], [-123.998059, 52.868834], [-123.998841, 52.868593], [-123.999028, 52.868348], [-123.99904, 52.868177], [-123.998899, 52.8679], [-123.998983, 52.86772], [-123.999162, 52.8677], [-123.999313, 52.867861], [-123.999476, 52.86785], [-123.999668, 52.867715], [-124.0, 52.867783], [-124.000278, 52.867717], [-124.000283, 52.867394], [-124.0, 52.867072], [-124.000102, 52.866578], [-124.000352, 52.866521], [-124.000473, 52.866557], [-124.000779, 52.867004], [-124.001078, 52.867001], [-124.001204, 52.866703], [-124.001648, 52.866592], [-124.002055, 52.866238], [-124.002084, 52.865608], [-124.001879, 52.86508], [-124.002124, 52.864762], [-124.001795, 52.864029], [-124.001868, 52.863946], [-124.002357, 52.863852], [-124.002773, 52.863849], [-124.00317, 52.864004], [-124.002798, 52.712509], [-124.002571, 52.712593], [-124.002497, 52.712538], [-124.002536, 52.712305], [-124.002462, 52.712278], [-124.002259, 52.712469], [-124.001935, 52.712607], [-124.001729, 52.71259], [-124.00128, 52.712415], [-124.001174, 52.712308], [-124.001231, 52.712225], [-124.001761, 52.712104], [-124.002099, 52.711957], [-124.002128, 52.711895], [-124.001679, 52.711791], [-124.001634, 52.711701], [-124.001707, 52.711664], [-124.002718, 52.711899], [-124.002777, 52.711853], [-124.002549, 52.711586], [-124.002617, 52.711269], [-124.00285, 52.711197], [-124.002773, 52.71099], [-124.003201, 52.710986], [-124.002867, 52.710611], [-124.002303, 52.71058], [-124.002259, 52.710527], [-124.002301, 52.710436], [-124.002773, 52.710406], [-124.002801, 52.71028], [-124.00205, 52.709801], [-124.002239, 52.709691], [-124.002099, 52.709341], [-124.001873, 52.709209], [-124.00159, 52.709149], [-124.001776, 52.708922], [-124.001717, 52.708877], [-124.001034, 52.708793], [-124.000706, 52.708662], [-124.000938, 52.708434], [-124.000384, 52.708187], [-124.0, 52.707831], [-123.999939, 52.707508], [-123.999437, 52.707521], [-123.999317, 52.70746], [-123.99933, 52.707396], [-123.999768, 52.707168], [-124.000184, 52.707209], [-124.000316, 52.707172], [-124.0003, 52.707109], [-123.999911, 52.706897], [-123.999697, 52.706646], [-123.999519, 52.706585], [-123.999588, 52.706369], [-123.999509, 52.706208], [-123.99899, 52.706185], [-123.998061, 52.706283], [-123.998029, 52.706211], [-123.998395, 52.705993], [-123.998377, 52.705903], [-123.997507, 52.706027], [-123.996886, 52.706033], [-123.996518, 52.705876], [-123.996558, 52.705497], [-123.993782, 52.701711], [-123.993779, 52.700471], [-123.995038, 52.69921], [-123.994527, 52.698202], [-123.994445, 52.696928], [-123.993828, 52.695881], [-123.994076, 52.69569], [-123.994416, 52.695741], [-123.994579, 52.695694], [-123.994507, 52.694491], [-123.994348, 52.694421], [-123.996765, 52.666254], [-123.997948, 52.594607], [-123.997872, 52.557661], [-123.997431, 52.501313], [-123.807481, 52.501739], [-123.765985, 52.501733], [-123.691781, 52.50193], [-123.549528, 52.501779], [-123.547457, 52.501826], [-123.306277, 52.501024], [-123.226079, 52.501828], [-122.906998, 52.505776], [-122.885191, 52.505863], [-122.814342, 52.505933], [-122.740557, 52.506644], [-122.682742, 52.507386], [-122.634527, 52.506371], [-122.580436, 52.507294], [-122.552069, 52.507027], [-122.495124, 52.506926], [-122.478121, 52.506589], [-122.461812, 52.507818], [-122.442602, 52.499133], [-122.441478, 52.499132], [-122.441958, 52.496918], [-122.442526, 52.495288], [-122.441836, 52.495212], [-122.437907, 52.502765], [-122.435788, 52.5031], [-122.436186, 52.504289], [-122.437285, 52.506813], [-122.439955, 52.511711], [-122.440906, 52.514021], [-122.441219, 52.515893], [-122.44092, 52.51813], [-122.441333, 52.52033], [-122.441958, 52.521146], [-122.4427, 52.52253], [-122.443221, 52.526021], [-122.444204, 52.528202], [-122.445525, 52.529933], [-122.446779, 52.532218], [-122.448528, 52.536519], [-122.450176, 52.538218], [-122.451771, 52.539027], [-122.454032, 52.539842], [-122.457014, 52.540323], [-122.460332, 52.540478], [-122.467, 52.540894], [-122.470294, 52.541448], [-122.473924, 52.542449], [-122.476041, 52.54328], [-122.477015, 52.543839], [-122.478185, 52.544796], [-122.479529, 52.546545], [-122.48141, 52.549609], [-122.482477, 52.55397], [-122.481489, 52.55634], [-122.478983, 52.55894], [-122.47811, 52.560444], [-122.476479, 52.562368], [-122.475435, 52.564701], [-122.473587, 52.56794], [-122.475994, 52.567861], [-122.476492, 52.567222], [-122.477785, 52.565205], [-122.478271, 52.563993], [-122.478624, 52.562798], [-122.479512, 52.561373], [-122.48005, 52.560684], [-122.480463, 52.559444], [-122.482428, 52.558077], [-122.483403, 52.557212], [-122.485763, 52.557384], [-122.496216, 52.556755], [-122.497333, 52.557079], [-122.499528, 52.558217], [-122.506395, 52.558039], [-122.506352, 52.56784], [-122.507294, 52.576957], [-122.507288, 52.577982], [-122.504548, 52.589946], [-122.503912, 52.594146], [-122.496312, 52.593974], [-122.496608, 52.589964], [-122.49258, 52.590609], [-122.493164, 52.587715], [-122.484723, 52.58878], [-122.484702, 52.588721], [-122.482774, 52.588529], [-122.483776, 52.590206], [-122.483821, 52.591032], [-122.484737, 52.592816], [-122.48518, 52.594373], [-122.485127, 52.595876], [-122.48468, 52.597266], [-122.482945, 52.59811], [-122.480618, 52.598797], [-122.47933, 52.599403], [-122.47637, 52.601637], [-122.475742, 52.602641], [-122.474437, 52.607362], [-122.473446, 52.609443], [-122.471924, 52.610944], [-122.471233, 52.611438], [-122.469654, 52.614162], [-122.469685, 52.614695], [-122.469171, 52.616045], [-122.467587, 52.618881], [-122.467103, 52.620117], [-122.46657, 52.623649], [-122.466664, 52.625596], [-122.466117, 52.626395], [-122.465419, 52.627012], [-122.467026, 52.628852], [-122.467999, 52.628848], [-122.468901, 52.62895], [-122.470662, 52.629822], [-122.471439, 52.630275], [-122.474049, 52.630789], [-122.476154, 52.631356], [-122.477434, 52.631874], [-122.479064, 52.632646], [-122.480313, 52.633451], [-122.481356, 52.636738], [-122.481771, 52.637404], [-122.482195, 52.63749], [-122.482742, 52.640196], [-122.48362, 52.642381], [-122.484077, 52.642369], [-122.485231, 52.642486], [-122.492011, 52.643859], [-122.492707, 52.644206], [-122.49365, 52.645215], [-122.493742, 52.646637], [-122.493504, 52.647385], [-122.492312, 52.649487], [-122.491619, 52.652019], [-122.490916, 52.653428], [-122.488926, 52.656124], [-122.486637, 52.657596], [-122.486256, 52.657927], [-122.481081, 52.660409], [-122.478871, 52.661537], [-122.473681, 52.663698], [-122.470383, 52.665281], [-122.466257, 52.667457], [-122.463864, 52.668989], [-122.463074, 52.669741], [-122.460401, 52.672693], [-122.457819, 52.675207], [-122.457103, 52.676486], [-122.456749, 52.678088], [-122.456777, 52.678799], [-122.457476, 52.680358], [-122.458211, 52.681273], [-122.459468, 52.68439], [-122.461725, 52.687647], [-122.467765, 52.690757], [-122.472765, 52.692317], [-122.47381, 52.692789], [-122.476188, 52.694563], [-122.478841, 52.69699], [-122.48117, 52.700484], [-122.481666, 52.701454], [-122.482762, 52.702295], [-122.483457, 52.703515], [-122.484772, 52.705325], [-122.485666, 52.707263], [-122.485775, 52.708936], [-122.482439, 52.712561], [-122.482046, 52.71365], [-122.481124, 52.717079], [-122.481637, 52.719432], [-122.481642, 52.722998], [-122.482033, 52.723486], [-122.483472, 52.728654], [-122.484372, 52.730372], [-122.48474, 52.731299], [-122.48404, 52.733607], [-122.481822, 52.736397], [-122.480245, 52.73931], [-122.478559, 52.742844], [-122.478641, 52.745687], [-122.480727, 52.748527], [-122.483297, 52.751129], [-122.483857, 52.751933], [-122.484533, 52.752713], [-122.485089, 52.753618], [-122.484728, 52.755159], [-122.484963, 52.757753], [-122.484373, 52.759151], [-122.481913, 52.761808], [-122.480848, 52.762677], [-122.479776, 52.763135], [-122.476028, 52.764452], [-122.472597, 52.766294], [-122.470438, 52.767855], [-122.464552, 52.773528], [-122.460524, 52.777583], [-122.459273, 52.779314], [-122.460362, 52.784101], [-122.46084, 52.785577], [-122.461837, 52.791507], [-122.462252, 52.792874], [-122.462421, 52.794013], [-122.462412, 52.797042], [-122.46207, 52.803461], [-122.462214, 52.807722], [-122.462603, 52.809798], [-122.462217, 52.812552], [-122.461488, 52.814408], [-122.460319, 52.816229], [-122.459444, 52.819532], [-122.45916, 52.821845], [-122.459445, 52.824353], [-122.458776, 52.827311], [-122.456563, 52.830875], [-122.452867, 52.83589], [-122.451345, 52.838222], [-122.447192, 52.843325], [-122.445946, 52.845141], [-122.442978, 52.851221], [-122.4424, 52.853655], [-122.442151, 52.85543], [-122.442645, 52.861083], [-122.443606, 52.86419], [-122.444905, 52.867725], [-122.44614, 52.869774], [-122.447269, 52.871037], [-122.448388, 52.871897], [-122.450703, 52.873359], [-122.453501, 52.874914], [-122.455622, 52.876003], [-122.457261, 52.877554], [-122.45778, 52.87821], [-122.45894, 52.880991], [-122.459751, 52.884181], [-122.461234, 52.887238], [-122.462554, 52.88917], [-122.464736, 52.891858], [-122.466467, 52.893732], [-122.470448, 52.897459], [-122.47461, 52.900206], [-122.475752, 52.902172], [-122.47653, 52.90315], [-122.477211, 52.904731], [-122.477713, 52.906838], [-122.476224, 52.910825], [-122.476171, 52.913185], [-122.476922, 52.916239], [-122.47807, 52.917969], [-122.480436, 52.920668], [-122.481125, 52.921038], [-122.482446, 52.922139], [-122.484693, 52.923778], [-122.489612, 52.926096], [-122.490426, 52.926601], [-122.491373, 52.927459], [-122.492871, 52.928528], [-122.493506, 52.929095], [-122.49425, 52.930176], [-122.495908, 52.933295], [-122.495894, 52.934003], [-122.495351, 52.934825], [-122.492339, 52.937588], [-122.49014, 52.940483], [-122.489657, 52.941852], [-122.48973, 52.943096], [-122.4901, 52.944229], [-122.491396, 52.945468], [-122.493531, 52.946576], [-122.496265, 52.947503], [-122.498882, 52.947983], [-122.500399, 52.948454], [-122.503486, 52.94909], [-122.504144, 52.949349], [-122.508709, 52.951522], [-122.512335, 52.95362], [-122.51294, 52.954164], [-122.517679, 52.954483], [-122.520736, 52.95793], [-122.521636, 52.959019], [-122.521842, 52.959454], [-122.522157, 52.971294], [-122.530863, 52.971414], [-122.531015, 52.973534], [-122.532717, 52.973279], [-122.533067, 52.97304], [-122.536095, 52.975013], [-122.536418, 52.974659], [-122.53696, 52.976743], [-122.537719, 52.976706], [-122.538114, 52.978303], [-122.544031, 52.978343], [-122.542388, 52.956689], [-122.55043, 52.956774], [-122.583137, 52.954987], [-122.61166, 52.955571], [-122.612142, 52.957305], [-122.623565, 52.957437], [-122.636396, 52.957501], [-122.63664, 52.957428], [-122.640972, 52.954934], [-122.654501, 52.954691], [-122.688902, 52.953699], [-122.694401, 52.953891], [-122.724088, 52.955396], [-122.75334, 52.956709], [-122.782503, 52.958614], [-122.827543, 52.958899], [-122.870871, 52.959254], [-122.886566, 52.959175], [-122.887127, 52.956206], [-122.910376, 52.956135], [-122.910517, 52.958667], [-122.910264, 52.994266], [-122.909656, 53.004589], [-122.909676, 53.010678], [-122.899117, 53.035081], [-122.87941, 53.075515], [-122.872074, 53.088621], [-122.880747, 53.138588], [-122.884934, 53.250098], [-122.885539, 53.272258], [-122.897497, 53.27223], [-122.897412, 53.279435], [-122.885678, 53.279357], [-122.884878, 53.304638], [-122.885532, 53.30443], [-122.887826, 53.30397], [-122.889255, 53.303963], [-122.889799, 53.304072], [-122.890209, 53.304276], [-122.890851, 53.304777], [-122.892113, 53.306284], [-122.892433, 53.306949], [-122.893263, 53.307858], [-122.893552, 53.308365], [-122.893655, 53.308964], [-122.893527, 53.309543], [-122.8925, 53.311143], [-122.892448, 53.312145], [-122.892883, 53.313256], [-122.893372, 53.313602], [-122.893957, 53.31423], [-122.895813, 53.3143], [-122.896354, 53.314406], [-122.897156, 53.314888], [-122.897843, 53.314831], [-122.898597, 53.31461], [-122.89957, 53.314171], [-122.901761, 53.312995], [-122.902896, 53.312639], [-122.903769, 53.312232], [-122.904074, 53.312186], [-122.904648, 53.312227], [-122.904902, 53.312098], [-122.905021, 53.311874], [-122.904858, 53.311774], [-122.905128, 53.311532], [-122.905278, 53.311182], [-122.905295, 53.310148], [-122.905146, 53.309627], [-122.90518, 53.308099], [-122.905707, 53.307703], [-122.906261, 53.307506], [-122.907973, 53.30722], [-122.909684, 53.306798], [-122.909956, 53.306654], [-122.909896, 53.306152], [-122.909402, 53.305593], [-122.909299, 53.305198], [-122.908953, 53.304685], [-122.908941, 53.303715], [-122.90935, 53.302322], [-122.909576, 53.302007], [-122.909621, 53.301738], [-122.909937, 53.301288], [-122.910133, 53.300829], [-122.910599, 53.300506], [-122.911604, 53.299968], [-122.911889, 53.299878], [-122.912237, 53.299654], [-122.912552, 53.299582], [-122.913257, 53.299583], [-122.914306, 53.299898], [-122.915492, 53.300429], [-122.916196, 53.3006], [-122.917531, 53.300629], [-122.918686, 53.300576], [-122.919333, 53.300334], [-122.919873, 53.300011], [-122.92232, 53.299437], [-122.923762, 53.298871], [-122.924543, 53.298638], [-122.925037, 53.298539], [-122.925847, 53.298504], [-122.926689, 53.298397], [-122.927924, 53.29845], [-122.929412, 53.297888], [-122.931099, 53.297411], [-122.933397, 53.296446], [-122.93556, 53.295806], [-122.936814, 53.295281], [-122.938314, 53.295319], [-122.93982, 53.295594], [-122.940918, 53.296159], [-122.941972, 53.29646], [-122.942718, 53.296795], [-122.9441, 53.297142], [-122.944486, 53.296964], [-122.945201, 53.29629], [-122.945187, 53.295772], [-122.94558, 53.295399], [-122.945851, 53.294722], [-122.946447, 53.294157], [-122.946838, 53.293603], [-122.947048, 53.293546], [-122.947457, 53.293573], [-122.947966, 53.293871], [-122.948898, 53.294745], [-122.948914, 53.295229], [-122.949518, 53.296216], [-122.95001, 53.296585], [-122.950575, 53.296759], [-122.950872, 53.297259], [-122.952072, 53.298384], [-122.952425, 53.298576], [-122.952976, 53.298737], [-122.953776, 53.298837], [-122.954861, 53.298798], [-122.955877, 53.298354], [-122.956988, 53.297495], [-122.957666, 53.296434], [-122.957857, 53.295996], [-122.958712, 53.295251], [-122.95955, 53.295288], [-122.960284, 53.295487], [-122.960739, 53.296017], [-122.961321, 53.297357], [-122.961829, 53.298018], [-122.962976, 53.298904], [-122.964068, 53.30003], [-122.964752, 53.300423], [-122.965158, 53.300768], [-122.965628, 53.300966], [-122.965977, 53.300932], [-122.966347, 53.300727], [-122.966797, 53.30008], [-122.966792, 53.299642], [-122.966553, 53.2992], [-122.966708, 53.298868], [-122.968179, 53.297632], [-122.970703, 53.295037], [-122.970926, 53.294752], [-122.971099, 53.294137], [-122.971524, 53.293906], [-122.973428, 53.293208], [-122.973631, 53.293094], [-122.973727, 53.292894], [-122.973649, 53.292398], [-122.97297, 53.291847], [-122.972113, 53.290907], [-122.971775, 53.290764], [-122.970882, 53.290743], [-122.970626, 53.290612], [-122.970295, 53.29025], [-122.96928, 53.288177], [-122.96853, 53.286315], [-122.968531, 53.285539], [-122.96902, 53.284712], [-122.968917, 53.283812], [-122.96766, 53.282446], [-122.967676, 53.281973], [-122.967808, 53.281751], [-122.96843, 53.281434], [-122.968862, 53.281331], [-122.969382, 53.281311], [-122.970017, 53.28144], [-122.970565, 53.281688], [-122.970871, 53.28193], [-122.971182, 53.282325], [-122.971298, 53.283309], [-122.971883, 53.283755], [-122.972448, 53.283913], [-122.973177, 53.283927], [-122.97453, 53.283796], [-122.975892, 53.283582], [-122.977597, 53.283085], [-122.978568, 53.283051], [-122.979598, 53.283145], [-122.980839, 53.2834], [-122.981799, 53.283457], [-122.982877, 53.283317], [-122.985129, 53.283427], [-122.986182, 53.28337], [-122.987543, 53.283416], [-122.989179, 53.283698], [-122.991444, 53.284586], [-122.991824, 53.284633], [-122.992512, 53.284481], [-122.993703, 53.283655], [-122.994366, 53.28289], [-122.994281, 53.281899], [-122.994563, 53.281708], [-122.994871, 53.281645], [-122.996732, 53.281719], [-122.997485, 53.281611], [-122.998223, 53.281235], [-122.998717, 53.280643], [-122.998739, 53.280059], [-122.998579, 53.279835], [-122.999111, 53.279048], [-122.999671, 53.278532], [-123.002891, 53.27649], [-123.003156, 53.275706], [-123.003658, 53.275392], [-123.004167, 53.275276], [-123.006417, 53.275308], [-123.007391, 53.275461], [-123.008212, 53.275684], [-123.010031, 53.276557], [-123.010964, 53.276538], [-123.012852, 53.276259], [-123.014185, 53.276618], [-123.01459, 53.276871], [-123.014774, 53.277178], [-123.014762, 53.277514], [-123.014578, 53.277847], [-123.013517, 53.278783], [-123.013165, 53.279236], [-123.01319, 53.279882], [-123.013435, 53.280235], [-123.013855, 53.280494], [-123.015096, 53.280791], [-123.01715, 53.280784], [-123.018154, 53.280607], [-123.019524, 53.280177], [-123.019993, 53.280106], [-123.02076, 53.280111], [-123.021422, 53.280259], [-123.022058, 53.280557], [-123.022544, 53.280984], [-123.022839, 53.281507], [-123.022835, 53.281791], [-123.022602, 53.281979], [-123.021439, 53.282078], [-123.021042, 53.282192], [-123.020567, 53.282608], [-123.020037, 53.283275], [-123.019558, 53.283658], [-123.019085, 53.283921], [-123.017543, 53.284521], [-123.017251, 53.284911], [-123.017355, 53.28522], [-123.017717, 53.285599], [-123.018445, 53.286189], [-123.019349, 53.286681], [-123.019792, 53.286762], [-123.020932, 53.286807], [-123.021657, 53.286727], [-123.022635, 53.286445], [-123.023088, 53.28654], [-123.023166, 53.286767], [-123.023074, 53.286989], [-123.022508, 53.287381], [-123.022202, 53.287878], [-123.022138, 53.288516], [-123.022451, 53.289256], [-123.022797, 53.289715], [-123.02336, 53.290209], [-123.02375, 53.290337], [-123.024157, 53.290349], [-123.025014, 53.290141], [-123.025751, 53.289604], [-123.026408, 53.288919], [-123.026822, 53.288685], [-123.027999, 53.288517], [-123.028806, 53.288553], [-123.029183, 53.288645], [-123.029573, 53.288862], [-123.029786, 53.289094], [-123.029763, 53.289486], [-123.029493, 53.289846], [-123.028847, 53.290158], [-123.027066, 53.290436], [-123.026734, 53.290525], [-123.026573, 53.290681], [-123.026698, 53.290944], [-123.027794, 53.291727], [-123.028738, 53.292253], [-123.029283, 53.292432], [-123.030298, 53.292182], [-123.031219, 53.29174], [-123.031753, 53.291729], [-123.032022, 53.291823], [-123.032501, 53.292303], [-123.033045, 53.293988], [-123.033211, 53.294154], [-123.033614, 53.294174], [-123.034227, 53.294009], [-123.034543, 53.293811], [-123.035172, 53.293141], [-123.035692, 53.292868], [-123.036272, 53.292775], [-123.036748, 53.292852], [-123.037347, 53.293065], [-123.038081, 53.293787], [-123.038816, 53.294127], [-123.039453, 53.29416], [-123.040995, 53.29396], [-123.041461, 53.293979], [-123.041987, 53.294123], [-123.042415, 53.294339], [-123.044182, 53.296117], [-123.044879, 53.296443], [-123.045843, 53.296527], [-123.046348, 53.296758], [-123.046628, 53.296991], [-123.04699, 53.297717], [-123.046909, 53.298895], [-123.047142, 53.299159], [-123.052145, 53.29933], [-123.05347, 53.29958], [-123.055017, 53.300159], [-123.055925, 53.300399], [-123.056624, 53.300388], [-123.057336, 53.300127], [-123.057761, 53.299538], [-123.057721, 53.298746], [-123.057447, 53.298341], [-123.05743, 53.298065], [-123.057987, 53.296525], [-123.058075, 53.295849], [-123.059086, 53.295249], [-123.059507, 53.294724], [-123.059647, 53.2935], [-123.060286, 53.292281], [-123.060284, 53.291927], [-123.060091, 53.29143], [-123.06016, 53.290907], [-123.060518, 53.290625], [-123.061049, 53.290467], [-123.062002, 53.290435], [-123.062993, 53.290307], [-123.065849, 53.289624], [-123.066131, 53.289668], [-123.066786, 53.289954], [-123.067218, 53.290235], [-123.067605, 53.290222], [-123.068093, 53.290117], [-123.069202, 53.289617], [-123.07022, 53.289667], [-123.070747, 53.289615], [-123.072298, 53.288937], [-123.074637, 53.28838], [-123.076692, 53.287701], [-123.077186, 53.28769], [-123.077734, 53.287859], [-123.078429, 53.288259], [-123.079784, 53.289209], [-123.080737, 53.289296], [-123.082087, 53.289236], [-123.082895, 53.289353], [-123.084488, 53.289864], [-123.086259, 53.290276], [-123.088228, 53.291311], [-123.088753, 53.29138], [-123.089466, 53.291155], [-123.090079, 53.291081], [-123.091371, 53.291188], [-123.092297, 53.291102], [-123.092786, 53.291182], [-123.095631, 53.292244], [-123.096926, 53.293268], [-123.09785, 53.293822], [-123.098465, 53.293971], [-123.099273, 53.293878], [-123.099828, 53.29373], [-123.100329, 53.293214], [-123.101335, 53.292902], [-123.103306, 53.292572], [-123.10476, 53.292421], [-123.105659, 53.291994], [-123.106033, 53.291697], [-123.107482, 53.291732], [-123.108682, 53.291425], [-123.109184, 53.290894], [-123.109222, 53.290756], [-123.109024, 53.290376], [-123.109243, 53.290192], [-123.109683, 53.290065], [-123.111369, 53.289856], [-123.112175, 53.289675], [-123.112901, 53.289605], [-123.115504, 53.289644], [-123.117625, 53.28957], [-123.118765, 53.28946], [-123.119291, 53.289487], [-123.119905, 53.289406], [-123.120595, 53.289387], [-123.120881, 53.289423], [-123.121302, 53.289728], [-123.122517, 53.289852], [-123.122672, 53.28997], [-123.124159, 53.29044], [-123.124958, 53.290937], [-123.125809, 53.291203], [-123.126555, 53.291326], [-123.127487, 53.291237], [-123.127934, 53.291085], [-123.128987, 53.2903], [-123.129467, 53.289759], [-123.131832, 53.28942], [-123.132762, 53.289649], [-123.134295, 53.289191], [-123.135687, 53.289118], [-123.137322, 53.288926], [-123.13757, 53.289048], [-123.137782, 53.289058], [-123.138386, 53.288521], [-123.139799, 53.288425], [-123.140095, 53.288244], [-123.142333, 53.287512], [-123.142675, 53.287334], [-123.14332, 53.287325], [-123.144117, 53.28746], [-123.145026, 53.288039], [-123.145541, 53.288665], [-123.145749, 53.289261], [-123.145696, 53.290762], [-123.146087, 53.290967], [-123.148674, 53.29191], [-123.150496, 53.292786], [-123.151238, 53.292887], [-123.151792, 53.292833], [-123.152729, 53.291947], [-123.153447, 53.291595], [-123.154071, 53.291415], [-123.155886, 53.29118], [-123.158054, 53.291119], [-123.159139, 53.290807], [-123.159995, 53.290703], [-123.161355, 53.290685], [-123.163528, 53.290972], [-123.167453, 53.291845], [-123.168722, 53.292553], [-123.169561, 53.293144], [-123.170675, 53.294368], [-123.171492, 53.296165], [-123.171867, 53.296567], [-123.171822, 53.296693], [-123.171427, 53.296879], [-123.170287, 53.297128], [-123.16743, 53.297426], [-123.166171, 53.297474], [-123.165716, 53.297604], [-123.165356, 53.297814], [-123.165361, 53.298304], [-123.165668, 53.298736], [-123.166104, 53.299015], [-123.167223, 53.299419], [-123.169258, 53.299699], [-123.170951, 53.299644], [-123.172857, 53.299363], [-123.175351, 53.298642], [-123.175854, 53.298425], [-123.177801, 53.297971], [-123.18041, 53.297616], [-123.183817, 53.29771], [-123.185062, 53.297534], [-123.185479, 53.297378], [-123.186828, 53.296507], [-123.1875, 53.296182], [-123.189256, 53.295637], [-123.190372, 53.295553], [-123.190813, 53.295593], [-123.191361, 53.295768], [-123.192367, 53.296514], [-123.193576, 53.29702], [-123.194693, 53.297396], [-123.196841, 53.29792], [-123.198868, 53.298979], [-123.199311, 53.298925], [-123.199863, 53.298705], [-123.201377, 53.297847], [-123.202368, 53.297171], [-123.204044, 53.296742], [-123.204459, 53.29657], [-123.205614, 53.296484], [-123.208706, 53.296729], [-123.209075, 53.296874], [-123.20928, 53.297065], [-123.209432, 53.297529], [-123.208977, 53.298391], [-123.208611, 53.298731], [-123.208385, 53.299498], [-123.208301, 53.300557], [-123.208464, 53.301218], [-123.209871, 53.301453], [-123.212959, 53.301264], [-123.214694, 53.301546], [-123.215371, 53.301489], [-123.216387, 53.301167], [-123.217191, 53.300753], [-123.218317, 53.29982], [-123.218468, 53.299437], [-123.218394, 53.298591], [-123.218548, 53.298205], [-123.219337, 53.297554], [-123.220004, 53.297265], [-123.22092, 53.297087], [-123.221962, 53.297064], [-123.223253, 53.297247], [-123.223943, 53.29745], [-123.224916, 53.297928], [-123.226185, 53.298944], [-123.227157, 53.300246], [-123.22947, 53.300839], [-123.229793, 53.300847], [-123.232416, 53.300466], [-123.23377, 53.300149], [-123.235533, 53.299562], [-123.235942, 53.299273], [-123.236341, 53.298806], [-123.237093, 53.298551], [-123.237622, 53.298643], [-123.239649, 53.299643], [-123.240148, 53.299817], [-123.241924, 53.300104], [-123.242744, 53.30013], [-123.243332, 53.300055], [-123.244144, 53.299817], [-123.244666, 53.299518], [-123.245472, 53.29875], [-123.246609, 53.297928], [-123.247471, 53.296947], [-123.247731, 53.296372], [-123.248139, 53.295859], [-123.24881, 53.295489], [-123.249211, 53.295155], [-123.250169, 53.295058], [-123.250546, 53.294802], [-123.250842, 53.294405], [-123.251203, 53.294308], [-123.253318, 53.294506], [-123.253873, 53.295044], [-123.255195, 53.29559], [-123.256084, 53.29561], [-123.256613, 53.295335], [-123.258447, 53.293445], [-123.258928, 53.29316], [-123.259663, 53.292951], [-123.260137, 53.292599], [-123.261045, 53.292155], [-123.261565, 53.29221], [-123.261911, 53.292374], [-123.262315, 53.292847], [-123.262717, 53.293583], [-123.264104, 53.294297], [-123.265733, 53.29448], [-123.267819, 53.293799], [-123.268964, 53.293223], [-123.269948, 53.292918], [-123.271469, 53.292227], [-123.272513, 53.29164], [-123.272757, 53.291136], [-123.272783, 53.29076], [-123.272129, 53.289736], [-123.272039, 53.289261], [-123.27289, 53.288442], [-123.273372, 53.288264], [-123.274516, 53.288289], [-123.277282, 53.288671], [-123.279797, 53.289061], [-123.280673, 53.289302], [-123.281508, 53.289367], [-123.282992, 53.289336], [-123.283488, 53.289222], [-123.283633, 53.289101], [-123.28391, 53.288564], [-123.28385, 53.288326], [-123.282982, 53.287353], [-123.282494, 53.28711], [-123.282166, 53.286814], [-123.282076, 53.286372], [-123.282547, 53.285747], [-123.284113, 53.285343], [-123.285288, 53.284705], [-123.285544, 53.284418], [-123.287103, 53.283255], [-123.287827, 53.283105], [-123.288812, 53.282384], [-123.289494, 53.282134], [-123.289954, 53.282107], [-123.290334, 53.281986], [-123.29216, 53.281138], [-123.292876, 53.281222], [-123.295054, 53.281652], [-123.296408, 53.282892], [-123.297967, 53.283608], [-123.299559, 53.284155], [-123.301687, 53.283564], [-123.30328, 53.283405], [-123.30512, 53.28364], [-123.30373, 53.30129], [-123.301464, 53.360178], [-123.301268, 53.371964], [-123.301432, 53.392078], [-123.301833, 53.411751], [-123.301709, 53.470231], [-123.328485, 53.470174], [-123.36636, 53.46988], [-123.41896, 53.470183], [-123.419881, 53.483511], [-123.445872, 53.483631], [-123.484322, 53.483686], [-123.523036, 53.483599], [-123.549941, 53.484018], [-123.6299, 53.484093], [-123.813793, 53.484843], [-123.884967, 53.484474], [-123.907713, 53.484405], [-123.982627, 53.48424], [-123.997404, 53.484234], [-123.997629, 53.484308], [-123.997561, 53.443996], [-124.007209, 53.443628], [-124.017091, 53.439683], [-124.031981, 53.435231], [-124.046556, 53.432179], [-124.0562, 53.434751], [-124.069718, 53.432815], [-124.085892, 53.434949], [-124.093873, 53.43278], [-124.104604, 53.43114], [-124.11273, 53.424444], [-124.104917, 53.41654], [-124.108628, 53.412033], [-124.122963, 53.413231], [-124.136619, 53.408157], [-124.144757, 53.408239], [-124.160938, 53.409684], [-124.168329, 53.413284], [-124.180501, 53.4125], [-124.198742, 53.419076], [-124.208564, 53.418881], [-124.215382, 53.42065], [-124.219199, 53.429384], [-124.219357, 53.433516], [-124.218284, 53.440125], [-124.215656, 53.443693], [-124.225371, 53.447], [-124.238615, 53.452692], [-124.246236, 53.452894], [-124.248789, 53.461474], [-124.253849, 53.466525], [-124.266319, 53.467757], [-124.270086, 53.474009], [-124.280815, 53.480445], [-124.286554, 53.476213], [-124.27971, 53.465089], [-124.279709, 53.460974], [-124.294689, 53.455516], [-124.30565, 53.455445], [-124.321089, 53.459045], [-124.337667, 53.461036], [-124.353637, 53.456738], [-124.380977, 53.45482], [-124.38474, 53.460678], [-124.386392, 53.470532], [-124.386156, 53.485261], [-124.398793, 53.489794], [-124.404326, 53.495154], [-124.393279, 53.497297], [-124.381268, 53.496868], [-124.381305, 53.501863], [-124.390851, 53.504063], [-124.399848, 53.503264], [-124.40596, 53.504546], [-124.423386, 53.506418], [-124.439176, 53.509365], [-124.466642, 53.515582], [-124.48523, 53.520216], [-124.49638, 53.526288], [-124.504772, 53.528645], [-124.514888, 53.530149], [-124.528041, 53.531109], [-124.536495, 53.528448], [-124.536837, 53.52481], [-124.528264, 53.517072], [-124.509196, 53.501437], [-124.513864, 53.494149], [-124.512788, 53.488737], [-124.517364, 53.483311], [-124.518485, 53.476972], [-124.534058, 53.472553], [-124.542854, 53.471067], [-124.551936, 53.47074], [-124.561152, 53.467473], [-124.5521, 53.462348], [-124.536377, 53.458036], [-124.527397, 53.454522], [-124.520918, 53.450402], [-124.522154, 53.445373], [-124.53256, 53.441319], [-124.537446, 53.436214], [-124.535429, 53.428613], [-124.53231, 53.421384], [-124.527822, 53.415279], [-124.527401, 53.41158], [-124.526138, 53.407298], [-124.523288, 53.402369], [-124.517646, 53.399463], [-124.515764, 53.394648], [-124.523208, 53.393207], [-124.538471, 53.394642], [-124.554282, 53.393573], [-124.573521, 53.390141], [-124.584289, 53.389895], [-124.597739, 53.388551], [-124.606411, 53.385919], [-124.615285, 53.386405], [-124.628848, 53.386032], [-124.634344, 53.39114], [-124.637626, 53.399708], [-124.647342, 53.40755], [-124.661235, 53.408708], [-124.669711, 53.406717], [-124.679814, 53.401663], [-124.687519, 53.399543], [-124.685315, 53.393629], [-124.684134, 53.388623], [-124.68117, 53.384125], [-124.688448, 53.380024], [-124.697244, 53.378091], [-124.713314, 53.366169], [-124.719163, 53.359952], [-124.7283, 53.355396], [-124.736622, 53.354623], [-124.749557, 53.356382], [-124.779706, 53.36181], [-124.805885, 53.369095], [-124.820146, 53.376844], [-124.840068, 53.386916], [-124.855085, 53.396461], [-124.861698, 53.401832], [-124.868753, 53.409326], [-124.87524, 53.415328], [-124.898816, 53.435306], [-124.900824, 53.435449], [-124.914475, 53.438165], [-124.934162, 53.438871], [-124.94298, 53.434511], [-124.953022, 53.4338]], [[-124.50031, 53.081982], [-124.511622, 53.082613], [-124.511882, 53.091362], [-124.511181, 53.097749], [-124.488891, 53.098111], [-124.462914, 53.097358], [-124.462208, 53.092348], [-124.463, 53.090684], [-124.46342, 53.0906], [-124.46445, 53.090579], [-124.465908, 53.090427], [-124.467289, 53.090193], [-124.46896, 53.089723], [-124.469917, 53.08972], [-124.471758, 53.089464], [-124.474773, 53.089381], [-124.475546, 53.089273], [-124.476227, 53.089094], [-124.477773, 53.088877], [-124.478404, 53.088627], [-124.479352, 53.088363], [-124.479673, 53.088171], [-124.479962, 53.087879], [-124.48057, 53.087736], [-124.481136, 53.087289], [-124.483656, 53.08715], [-124.485449, 53.086758], [-124.486744, 53.086617], [-124.487083, 53.086532], [-124.487635, 53.086516], [-124.488525, 53.086325], [-124.489143, 53.086083], [-124.489254, 53.085839], [-124.488708, 53.085586], [-124.488246, 53.085592], [-124.487802, 53.085282], [-124.487792, 53.084976], [-124.488123, 53.084657], [-124.488131, 53.084397], [-124.487718, 53.084142], [-124.487622, 53.083998], [-124.487727, 53.083971], [-124.487724, 53.08389], [-124.487435, 53.083732], [-124.487338, 53.083516], [-124.487394, 53.083381], [-124.487913, 53.08288], [-124.488098, 53.082185], [-124.488408, 53.082074], [-124.50031, 53.081982]], [[-124.341651, 53.118613], [-124.340967, 53.123473], [-124.327734, 53.122951], [-124.327846, 53.118144], [-124.341651, 53.118613]], [[-123.516635, 53.213724], [-123.517344, 53.225515], [-123.504702, 53.225244], [-123.498182, 53.224786], [-123.497684, 53.225235], [-123.496622, 53.225816], [-123.496089, 53.22593], [-123.490619, 53.22595], [-123.493901, 53.212741], [-123.493592, 53.21232], [-123.493363, 53.21172], [-123.493042, 53.211257], [-123.492874, 53.21115], [-123.492113, 53.210959], [-123.492468, 53.209181], [-123.493375, 53.207626], [-123.494357, 53.207212], [-123.493917, 53.202767], [-123.517557, 53.200819], [-123.517376, 53.205679], [-123.517003, 53.205877], [-123.516113, 53.207274], [-123.515719, 53.207559], [-123.515805, 53.207796], [-123.516106, 53.208028], [-123.516162, 53.208317], [-123.51671, 53.208834], [-123.517109, 53.208972], [-123.518087, 53.209142], [-123.518556, 53.209395], [-123.517666, 53.210012], [-123.516534, 53.211271], [-123.515761, 53.211984], [-123.515133, 53.212188], [-123.514212, 53.212241], [-123.513395, 53.212197], [-123.512279, 53.211959], [-123.511934, 53.211831], [-123.516635, 53.213724]], [[-123.537629, 53.180625], [-123.538187, 53.187852], [-123.52088, 53.188013], [-123.521053, 53.187811], [-123.521065, 53.187541], [-123.521393, 53.187485], [-123.522262, 53.187491], [-123.523407, 53.186947], [-123.523867, 53.186602], [-123.524206, 53.186152], [-123.525199, 53.185456], [-123.525222, 53.184818], [-123.525607, 53.1845], [-123.525678, 53.184087], [-123.525492, 53.183683], [-123.525356, 53.183559], [-123.52525, 53.18355], [-123.525042, 53.183559], [-123.524879, 53.183785], [-123.524121, 53.184175], [-123.523967, 53.18502], [-123.523835, 53.185138], [-123.523013, 53.185258], [-123.522682, 53.185206], [-123.522368, 53.185233], [-123.52213, 53.185271], [-123.521893, 53.185389], [-123.521728, 53.185515], [-123.521582, 53.185778], [-123.521135, 53.186031], [-123.521098, 53.186544], [-123.520892, 53.186886], [-123.520246, 53.186718], [-123.520735, 53.186185], [-123.520834, 53.185816], [-123.521042, 53.185654], [-123.521068, 53.185456], [-123.520918, 53.185322], [-123.520185, 53.185298], [-123.519423, 53.1854], [-123.518886, 53.185591], [-123.518545, 53.185817], [-123.517909, 53.186423], [-123.517389, 53.186739], [-123.515797, 53.187191], [-123.515897, 53.181327], [-123.537629, 53.180625]], [[-123.849265, 52.985508], [-123.848937, 52.992894], [-123.836997, 52.992888], [-123.836751, 52.985543], [-123.849265, 52.985508]], [[-123.814783, 52.985831], [-123.814847, 52.986377], [-123.81467, 52.990369], [-123.810945, 52.990443], [-123.808467, 52.990426], [-123.808398, 52.985881], [-123.814783, 52.985831]], [[-123.589306, 52.940796], [-123.591144, 52.940894], [-123.590472, 52.947685], [-123.588971, 52.953591], [-123.589029, 52.953584], [-123.589357, 52.954841], [-123.5922, 52.963777], [-123.599829, 52.963815], [-123.604631, 52.963733], [-123.604437, 52.972063], [-123.586345, 52.972149], [-123.585798, 52.964081], [-123.573622, 52.963893], [-123.573292, 52.944844], [-123.566485, 52.945056], [-123.565858, 52.93551], [-123.570321, 52.935286], [-123.575033, 52.935488], [-123.575305, 52.935866], [-123.575657, 52.936628], [-123.576004, 52.93695], [-123.576288, 52.937092], [-123.576654, 52.937603], [-123.576794, 52.938052], [-123.577351, 52.938579], [-123.577568, 52.939163], [-123.577688, 52.939342], [-123.577958, 52.93952], [-123.578212, 52.939644], [-123.578526, 52.939697], [-123.579538, 52.939656], [-123.580595, 52.93975], [-123.581521, 52.940006], [-123.582132, 52.940111], [-123.583181, 52.940583], [-123.583973, 52.940821], [-123.584469, 52.941205], [-123.585122, 52.94105], [-123.585476, 52.940841], [-123.589306, 52.940796]]]]}, "properties": {"name": "Cariboo I", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo I", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941027", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.300554, 53.000115], [-126.499693, 53.000157], [-126.60911, 53.00028], [-126.614182, 52.995649], [-126.626203, 52.9903], [-126.635597, 52.98427], [-126.634031, 52.97968], [-126.626531, 52.975392], [-126.623724, 52.971493], [-126.643908, 52.948587], [-126.646063, 52.941926], [-126.637717, 52.937952], [-126.624301, 52.935138], [-126.619032, 52.929966], [-126.617631, 52.929608], [-126.616356, 52.928534], [-126.615714, 52.927634], [-126.615783, 52.923656], [-126.615541, 52.921858], [-126.614548, 52.919894], [-126.613737, 52.918766], [-126.611438, 52.917288], [-126.607183, 52.916353], [-126.604843, 52.916744], [-126.59776, 52.913484], [-126.587348, 52.879381], [-126.600295, 52.875247], [-126.612164, 52.868751], [-126.621945, 52.860622], [-126.623924, 52.856312], [-126.631933, 52.854014], [-126.637717, 52.849752], [-126.639197, 52.846009], [-126.632731, 52.842261], [-126.612764, 52.834379], [-126.601119, 52.812979], [-126.595984, 52.812525], [-126.590136, 52.816789], [-126.573216, 52.81856], [-126.553514, 52.815253], [-126.550608, 52.800144], [-126.555683, 52.79945], [-126.555854, 52.792354], [-126.53028, 52.775152], [-126.517553, 52.774297], [-126.505649, 52.775529], [-126.48619, 52.779391], [-126.481185, 52.783987], [-126.476178, 52.785956], [-126.464407, 52.783575], [-126.45411, 52.784396], [-126.446294, 52.791201], [-126.443323, 52.795442], [-126.434973, 52.793643], [-126.416158, 52.79423], [-126.404058, 52.798975], [-126.370249, 52.822908], [-126.338951, 52.828948], [-126.338956, 52.82889], [-126.335656, 52.829533], [-126.334615, 52.794389], [-126.333533, 52.751601], [-126.334673, 52.751881], [-126.33517, 52.751868], [-126.336469, 52.751314], [-126.337899, 52.751113], [-126.338394, 52.750971], [-126.338884, 52.750586], [-126.33906, 52.750294], [-126.339075, 52.749974], [-126.338749, 52.749378], [-126.338725, 52.749047], [-126.339354, 52.747917], [-126.340401, 52.746544], [-126.340711, 52.746457], [-126.341369, 52.746476], [-126.341812, 52.74662], [-126.349492, 52.731806], [-126.349238, 52.721023], [-126.346034, 52.702086], [-126.351255, 52.703593], [-126.361122, 52.706934], [-126.378574, 52.695006], [-126.387859, 52.692714], [-126.402321, 52.689427], [-126.411389, 52.688857], [-126.418247, 52.683347], [-126.417645, 52.680024], [-126.412576, 52.677632], [-126.41658, 52.661491], [-126.445674, 52.654168], [-126.444137, 52.652356], [-126.429226, 52.637183], [-126.424726, 52.631854], [-126.422414, 52.626762], [-126.416376, 52.620959], [-126.413067, 52.614749], [-126.396319, 52.602571], [-126.396441, 52.602098], [-126.396383, 52.601584], [-126.396732, 52.601178], [-126.396967, 52.600715], [-126.397272, 52.600541], [-126.39743, 52.600366], [-126.397428, 52.600158], [-126.396856, 52.599314], [-126.410485, 52.593228], [-126.384677, 52.578328], [-126.384134, 52.568366], [-126.376269, 52.559611], [-126.358842, 52.535049], [-126.344367, 52.524516], [-126.339124, 52.527419], [-126.331767, 52.521206], [-126.317988, 52.518336], [-126.313697, 52.521382], [-126.312912, 52.532511], [-126.300805, 52.545312], [-126.284214, 52.541237], [-126.270406, 52.541211], [-126.261195, 52.530231], [-126.244434, 52.524734], [-126.238285, 52.519315], [-126.220073, 52.496295], [-126.212269, 52.494943], [-126.197782, 52.499968], [-126.192514, 52.507794], [-126.183621, 52.520519], [-126.18301, 52.520514], [-126.182186, 52.520271], [-126.181656, 52.519818], [-126.181067, 52.519014], [-126.171538, 52.531105], [-126.170456, 52.532165], [-126.167198, 52.531613], [-126.154011, 52.545635], [-126.145381, 52.546317], [-126.143762, 52.546685], [-126.140558, 52.547898], [-126.137768, 52.549863], [-126.135353, 52.552674], [-126.13404, 52.555161], [-126.133806, 52.557962], [-126.136635, 52.563513], [-126.136025, 52.576913], [-126.118291, 52.588121], [-126.100494, 52.58895], [-126.092566, 52.594069], [-126.084184, 52.591705], [-126.066874, 52.579792], [-126.046785, 52.581573], [-126.006576, 52.602122], [-126.010705, 52.613838], [-125.999968, 52.616381], [-125.987994, 52.619302], [-125.958173, 52.602978], [-125.937429, 52.62227], [-125.916234, 52.624582], [-125.884929, 52.628169], [-125.87264, 52.632478], [-125.871014, 52.63363], [-125.857819, 52.632197], [-125.855637, 52.632126], [-125.855663, 52.631809], [-125.848395, 52.624406], [-125.849677, 52.619842], [-125.855105, 52.616207], [-125.862016, 52.615457], [-125.863346, 52.612149], [-125.866546, 52.610604], [-125.865787, 52.607779], [-125.862679, 52.606896], [-125.861116, 52.604667], [-125.859759, 52.596556], [-125.856082, 52.582204], [-125.854592, 52.579215], [-125.852723, 52.577636], [-125.850569, 52.576747], [-125.837145, 52.577754], [-125.83242, 52.577805], [-125.827984, 52.577535], [-125.82417, 52.576994], [-125.820618, 52.570762], [-125.821905, 52.565876], [-125.826532, 52.558064], [-125.823862, 52.556231], [-125.818828, 52.555606], [-125.81651, 52.553376], [-125.814762, 52.55067], [-125.806952, 52.551441], [-125.801814, 52.550385], [-125.800394, 52.547981], [-125.801681, 52.546787], [-125.809001, 52.54062], [-125.803967, 52.537061], [-125.798662, 52.536368], [-125.796131, 52.53615], [-125.79154, 52.536432], [-125.790029, 52.533813], [-125.791393, 52.5324], [-125.796449, 52.527939], [-125.796345, 52.527522], [-125.796705, 52.527713], [-125.799359, 52.525234], [-125.796417, 52.522683], [-125.787863, 52.519019], [-125.778298, 52.51125], [-125.765346, 52.508949], [-125.754095, 52.50795], [-125.751163, 52.501712], [-125.751492, 52.500525], [-125.747905, 52.499718], [-125.746589, 52.498354], [-125.745923, 52.497246], [-125.747077, 52.495731], [-125.754499, 52.491115], [-125.758461, 52.486879], [-125.755461, 52.482936], [-125.749511, 52.479689], [-125.735178, 52.479839], [-125.723802, 52.485556], [-125.711669, 52.486319], [-125.69999, 52.492142], [-125.678079, 52.492563], [-125.655955, 52.4984], [-125.645826, 52.502915], [-125.636047, 52.507795], [-125.631059, 52.509716], [-125.620459, 52.511152], [-125.609512, 52.508211], [-125.595705, 52.504716], [-125.57721, 52.504498], [-125.568099, 52.504215], [-125.557167, 52.50287], [-125.547984, 52.499367], [-125.541025, 52.499159], [-125.530137, 52.497013], [-125.518029, 52.489527], [-125.499614, 52.485354], [-125.494772, 52.480568], [-125.490527, 52.480303], [-125.483045, 52.479298], [-125.472124, 52.48128], [-125.462534, 52.478507], [-125.460878, 52.473557], [-125.456018, 52.471541], [-125.454691, 52.464276], [-125.457415, 52.45846], [-125.466641, 52.456237], [-125.472137, 52.455422], [-125.47575, 52.452914], [-125.47682, 52.447603], [-125.482834, 52.437965], [-125.489382, 52.431965], [-125.489931, 52.429325], [-125.489425, 52.421807], [-125.48522, 52.408315], [-125.479785, 52.402189], [-125.466415, 52.398775], [-125.456278, 52.400848], [-125.451134, 52.404805], [-125.440126, 52.404986], [-125.429693, 52.404513], [-125.416304, 52.398128], [-125.406486, 52.395356], [-125.384045, 52.395726], [-125.373758, 52.390844], [-125.365338, 52.386015], [-125.358647, 52.380694], [-125.355744, 52.375982], [-125.355281, 52.370892], [-125.359071, 52.366491], [-125.359396, 52.366359], [-125.358661, 52.363832], [-125.353381, 52.357332], [-125.351532, 52.352032], [-125.343716, 52.344942], [-125.349477, 52.337185], [-125.363323, 52.332331], [-125.38281, 52.329563], [-125.384332, 52.32715], [-125.377914, 52.317475], [-125.381204, 52.314195], [-125.39202, 52.312098], [-125.400592, 52.308281], [-125.403855, 52.300476], [-125.419322, 52.288816], [-125.420225, 52.283385], [-125.420905, 52.280478], [-125.428412, 52.276124], [-125.439403, 52.276159], [-125.448192, 52.280762], [-125.455177, 52.287051], [-125.462107, 52.288292], [-125.46871, 52.286418], [-125.47747, 52.280096], [-125.484416, 52.261804], [-125.484461, 52.261344], [-125.488664, 52.256885], [-125.485387, 52.252753], [-125.49042, 52.249644], [-125.499255, 52.249673], [-125.510943, 52.246875], [-125.513809, 52.24269], [-125.508781, 52.240488], [-125.508609, 52.23414], [-125.502668, 52.229262], [-125.490899, 52.228875], [-125.485682, 52.227841], [-125.479557, 52.22328], [-125.466483, 52.218256], [-125.457805, 52.214258], [-125.455998, 52.20875], [-125.451358, 52.204553], [-125.453631, 52.196395], [-125.457283, 52.191938], [-125.462624, 52.186923], [-125.469999, 52.182604], [-125.482728, 52.177554], [-125.511727, 52.172235], [-125.545592, 52.167423], [-125.557637, 52.171434], [-125.566024, 52.174842], [-125.572947, 52.173051], [-125.573676, 52.158], [-125.577572, 52.157699], [-125.591161, 52.159417], [-125.599224, 52.15847], [-125.608858, 52.151439], [-125.615126, 52.149238], [-125.629597, 52.149161], [-125.630689, 52.147173], [-125.629861, 52.139625], [-125.631082, 52.138817], [-125.639217, 52.138574], [-125.646334, 52.137473], [-125.645748, 52.129347], [-125.647499, 52.128468], [-125.649702, 52.128898], [-125.653707, 52.128921], [-125.659341, 52.128354], [-125.666832, 52.12264], [-125.668843, 52.122034], [-125.669628, 52.1166], [-125.671352, 52.1134], [-125.673886, 52.109171], [-125.672415, 52.107006], [-125.668307, 52.103955], [-125.66191, 52.100385], [-125.662208, 52.096108], [-125.661034, 52.093835], [-125.664786, 52.086713], [-125.664526, 52.083312], [-125.664418, 52.083207], [-125.665143, 52.072824], [-125.659761, 52.066957], [-125.659097, 52.060563], [-125.644266, 52.052042], [-125.636059, 52.050022], [-125.623367, 52.048769], [-125.618377, 52.052473], [-125.605961, 52.056989], [-125.598199, 52.055656], [-125.590509, 52.053837], [-125.583649, 52.055688], [-125.579602, 52.055573], [-125.584051, 52.045291], [-125.585594, 52.038096], [-125.590988, 52.026912], [-125.599794, 52.022997], [-125.603305, 52.012296], [-125.602561, 52.006389], [-125.606894, 52.000678], [-125.6106, 51.999328], [-125.611796, 51.993887], [-125.616321, 51.98786], [-125.614901, 51.981574], [-125.611884, 51.977153], [-125.603401, 51.976794], [-125.599738, 51.976283], [-125.598065, 51.974316], [-125.598683, 51.972255], [-125.604695, 51.968361], [-125.604419, 51.967236], [-125.599279, 51.961625], [-125.593038, 51.957147], [-125.585846, 51.951668], [-125.584877, 51.949814], [-125.589554, 51.944934], [-125.589236, 51.942722], [-125.58339, 51.937613], [-125.578725, 51.935333], [-125.574815, 51.931499], [-125.574804, 51.929103], [-125.576272, 51.927071], [-125.580415, 51.923769], [-125.579514, 51.920095], [-125.577966, 51.915718], [-125.575292, 51.913363], [-125.56825, 51.916176], [-125.558111, 51.915702], [-125.544054, 51.910466], [-125.53558, 51.912654], [-125.529464, 51.917035], [-125.529731, 51.920473], [-125.537654, 51.925649], [-125.539302, 51.933096], [-125.533375, 51.93542], [-125.52858, 51.938846], [-125.525959, 51.93842], [-125.515501, 51.933929], [-125.50041, 51.925713], [-125.489109, 51.918525], [-125.487475, 51.91582], [-125.488956, 51.911792], [-125.496464, 51.898011], [-125.498974, 51.884883], [-125.498609, 51.88341], [-125.501321, 51.878416], [-125.505482, 51.876749], [-125.512763, 51.870181], [-125.513624, 51.868202], [-125.501555, 51.867573], [-125.496486, 51.864573], [-125.486204, 51.865464], [-125.472691, 51.865049], [-125.466308, 51.864177], [-125.461759, 51.858449], [-125.459208, 51.850456], [-125.463373, 51.844256], [-125.463007, 51.840467], [-125.453838, 51.841139], [-125.445642, 51.840303], [-125.438412, 51.838678], [-125.427812, 51.841796], [-125.415058, 51.841411], [-125.40628, 51.838137], [-125.404608, 51.833182], [-125.406512, 51.828701], [-125.416714, 51.826691], [-125.418617, 51.823269], [-125.416603, 51.82007], [-125.410849, 51.817735], [-125.400293, 51.807872], [-125.388867, 51.802072], [-125.386385, 51.796705], [-125.382592, 51.793576], [-125.379456, 51.789328], [-125.36946, 51.787465], [-125.354128, 51.790828], [-125.348871, 51.790663], [-125.345606, 51.787584], [-125.341256, 51.784534], [-125.32803, 51.780129], [-125.311132, 51.778322], [-125.299503, 51.774399], [-125.289826, 51.7718], [-125.280991, 51.771011], [-125.274465, 51.772386], [-125.266252, 51.768159], [-125.254715, 51.765081], [-125.252131, 51.761253], [-125.242024, 51.754535], [-125.237746, 51.748585], [-125.240407, 51.743841], [-125.247175, 51.740614], [-125.248876, 51.737271], [-125.247697, 51.735097], [-125.249415, 51.733598], [-125.254893, 51.73233], [-125.255355, 51.727055], [-125.256548, 51.723231], [-125.2449, 51.710526], [-125.239225, 51.705439], [-125.235077, 51.699995], [-125.234254, 51.694127], [-125.238546, 51.687765], [-125.247107, 51.679673], [-125.248396, 51.675741], [-125.245392, 51.664878], [-125.240086, 51.656194], [-125.233783, 51.650758], [-125.22896, 51.646908], [-125.229068, 51.644366], [-125.232882, 51.640487], [-125.292023, 51.609331], [-125.296032, 51.589395], [-125.292164, 51.584245], [-125.284171, 51.58097], [-125.268945, 51.577226], [-125.250178, 51.573989], [-125.237892, 51.572069], [-125.235324, 51.570301], [-125.234387, 51.565634], [-125.235642, 51.561333], [-125.237882, 51.559755], [-125.243433, 51.557752], [-125.250212, 51.556075], [-125.257319, 51.554087], [-125.263233, 51.552144], [-125.267479, 51.549071], [-125.267842, 51.545474], [-125.266768, 51.540665], [-125.26363, 51.536967], [-125.261769, 51.533978], [-125.252292, 51.526872], [-125.24552, 51.526625], [-125.240987, 51.523855], [-125.241848, 51.518157], [-125.248659, 51.510556], [-125.259733, 51.511778], [-125.266733, 51.509737], [-125.271611, 51.507524], [-125.280404, 51.506711], [-125.28899, 51.504829], [-125.287016, 51.499747], [-125.281969, 51.493329], [-125.27866, 51.486526], [-125.286009, 51.480642], [-125.289563, 51.4756], [-125.296526, 51.474793], [-125.304057, 51.478678], [-125.314742, 51.479624], [-125.330134, 51.483802], [-125.33784, 51.485336], [-125.339927, 51.481394], [-125.345201, 51.478909], [-125.322761, 51.467857], [-125.316274, 51.463268], [-125.311634, 51.459399], [-125.317661, 51.45407], [-125.326936, 51.453645], [-125.331536, 51.450017], [-125.336011, 51.444146], [-125.331328, 51.439144], [-125.330937, 51.438544], [-125.336922, 51.433142], [-125.341371, 51.426328], [-125.341947, 51.418994], [-125.338564, 51.409055], [-125.332971, 51.402037], [-125.326629, 51.39587], [-125.314581, 51.38985], [-125.305014, 51.387164], [-125.276467, 51.380587], [-125.266668, 51.376858], [-125.257908, 51.382901], [-125.256204, 51.388672], [-125.251004, 51.393741], [-125.243194, 51.394694], [-125.228199, 51.394685], [-125.221878, 51.393036], [-125.2146, 51.392295], [-125.205627, 51.394742], [-125.197265, 51.399637], [-125.185346, 51.400196], [-125.177112, 51.39858], [-125.171366, 51.392037], [-125.166553, 51.383097], [-125.166752, 51.379746], [-125.170571, 51.376914], [-125.167308, 51.375002], [-125.160769, 51.375864], [-125.152955, 51.373722], [-125.146869, 51.370207], [-125.131186, 51.364069], [-125.113578, 51.360544], [-125.093832, 51.359238], [-125.082867, 51.355608], [-125.075699, 51.352529], [-125.065789, 51.353944], [-125.061929, 51.357391], [-125.055812, 51.355289], [-125.048129, 51.35506], [-125.041704, 51.352133], [-125.020167, 51.351786], [-125.009007, 51.349718], [-125.001042, 51.346408], [-124.994508, 51.342864], [-124.985927, 51.342626], [-124.980413, 51.341334], [-124.975014, 51.341308], [-124.969289, 51.338969], [-124.965712, 51.334738], [-124.965293, 51.328251], [-124.942904, 51.328572], [-124.937011, 51.330124], [-124.930311, 51.328507], [-124.9209, 51.330291], [-124.912629, 51.332506], [-124.904099, 51.332151], [-124.899393, 51.332715], [-124.887875, 51.330392], [-124.883407, 51.324518], [-124.879087, 51.320927], [-124.872374, 51.321741], [-124.862097, 51.3193], [-124.853027, 51.315073], [-124.847311, 51.314688], [-124.840298, 51.310753], [-124.830154, 51.30943], [-124.821004, 51.308544], [-124.810473, 51.308758], [-124.805676, 51.306924], [-124.803803, 51.305618], [-124.799763, 51.305424], [-124.792008, 51.299226], [-124.782265, 51.289089], [-124.771313, 51.260129], [-124.766799, 51.243488], [-124.762032, 51.238224], [-124.749279, 51.235812], [-124.736938, 51.230931], [-124.714691, 51.225605], [-124.686615, 51.204452], [-124.679592, 51.208947], [-124.676755, 51.219248], [-124.655818, 51.20715], [-124.648172, 51.205399], [-124.630555, 51.201065], [-124.630434, 51.200672], [-124.625994, 51.19647], [-124.620444, 51.194812], [-124.612447, 51.195618], [-124.606985, 51.191124], [-124.603573, 51.187781], [-124.59402, 51.187418], [-124.580826, 51.181085], [-124.570179, 51.179612], [-124.560631, 51.181187], [-124.560548, 51.181238], [-124.544805, 51.179543], [-124.540176, 51.175558], [-124.524531, 51.169854], [-124.516687, 51.169326], [-124.498402, 51.166542], [-124.433783, 51.148399], [-124.422271, 51.151817], [-124.419843, 51.157271], [-124.423189, 51.163538], [-124.429841, 51.168873], [-124.424994, 51.171651], [-124.418014, 51.174355], [-124.408646, 51.18133], [-124.40249, 51.188115], [-124.397017, 51.188511], [-124.391443, 51.190479], [-124.379184, 51.193279], [-124.37705, 51.195581], [-124.368969, 51.200085], [-124.366406, 51.19603], [-124.376042, 51.173173], [-124.378036, 51.158282], [-124.375973, 51.142674], [-124.362655, 51.145405], [-124.350884, 51.146925], [-124.339942, 51.145836], [-124.319915, 51.141018], [-124.29732, 51.137434], [-124.277723, 51.138403], [-124.26897, 51.139179], [-124.256763, 51.143154], [-124.245271, 51.148528], [-124.185326, 51.135293], [-124.186798, 51.132802], [-124.184132, 51.129783], [-124.180044, 51.1299], [-124.175629, 51.132123], [-124.168028, 51.126024], [-124.174821, 51.11822], [-124.174605, 51.109605], [-124.169523, 51.100817], [-124.170261, 51.088116], [-124.165694, 51.080977], [-124.159891, 51.077776], [-124.166452, 51.068473], [-124.173168, 51.061484], [-124.169227, 51.05541], [-124.161632, 51.052841], [-124.163519, 51.048035], [-124.160186, 51.042291], [-124.155204, 51.036633], [-124.148674, 51.031852], [-124.148373, 51.031858], [-124.137683, 51.030663], [-124.134904, 51.028699], [-124.130139, 51.023459], [-124.113901, 51.014976], [-124.097826, 51.014172], [-124.087148, 51.009699], [-124.084192, 51.004206], [-124.08328, 51.001211], [-124.087312, 50.997226], [-124.090631, 50.99171], [-124.082929, 50.986297], [-124.073426, 50.985074], [-124.066752, 50.977076], [-124.059945, 50.958892], [-124.050688, 50.955261], [-124.045792, 50.951438], [-124.045416, 50.946527], [-124.042168, 50.942623], [-124.032262, 50.944337], [-124.032052, 50.945252], [-124.027696, 50.944372], [-124.002249, 50.958172], [-124.002268, 50.964741], [-123.995798, 50.962711], [-123.982715, 50.962655], [-123.971377, 50.958036], [-123.963637, 50.952164], [-123.951851, 50.950007], [-123.943442, 50.946345], [-123.936655, 50.936185], [-123.916484, 50.93694], [-123.919865, 50.942006], [-123.909791, 50.944187], [-123.894209, 50.940052], [-123.888553, 50.944314], [-123.881876, 50.948601], [-123.874857, 50.950705], [-123.87413, 50.945685], [-123.864988, 50.939969], [-123.849532, 50.93776], [-123.838297, 50.934415], [-123.834617, 50.92779], [-123.827242, 50.924094], [-123.835105, 50.912792], [-123.831527, 50.904486], [-123.823557, 50.904288], [-123.80459, 50.91118], [-123.790066, 50.910617], [-123.779823, 50.906598], [-123.765789, 50.91079], [-123.758707, 50.905017], [-123.761364, 50.888296], [-123.758217, 50.883464], [-123.750653, 50.886736], [-123.737001, 50.887185], [-123.709469, 50.884215], [-123.698913, 50.885232], [-123.680996, 50.882547], [-123.666789, 50.876939], [-123.662188, 50.880379], [-123.6638, 50.890553], [-123.663922, 50.896094], [-123.655077, 50.901492], [-123.643619, 50.899555], [-123.636997, 50.899178], [-123.628787, 50.895306], [-123.617115, 50.897011], [-123.60709, 50.90157], [-123.601577, 50.908381], [-123.601001, 50.913535], [-123.593942, 50.921859], [-123.587833, 50.926094], [-123.577435, 50.931331], [-123.552586, 50.928136], [-123.544015, 50.933766], [-123.535535, 50.939663], [-123.52632, 50.943759], [-123.515727, 50.947043], [-123.512627, 50.954083], [-123.502893, 50.958867], [-123.468636, 50.973644], [-123.451748, 50.980804], [-123.434372, 50.985334], [-123.412842, 50.987088], [-123.40226, 50.98823], [-123.398066, 50.994246], [-123.390618, 50.996615], [-123.383819, 51.004325], [-123.377332, 51.004661], [-123.371487, 51.002899], [-123.366755, 50.996746], [-123.359564, 50.990408], [-123.348469, 50.990732], [-123.334852, 50.99238], [-123.325476, 50.991387], [-123.322346, 50.985194], [-123.31384, 50.981258], [-123.297955, 50.987215], [-123.294526, 50.994613], [-123.284691, 50.996248], [-123.277417, 50.996287], [-123.271049, 50.998022], [-123.262682, 50.998047], [-123.256927, 50.999232], [-123.24902, 50.998843], [-123.243442, 51.000394], [-123.242374, 51.002634], [-123.244323, 51.007305], [-123.249876, 51.012078], [-123.252717, 51.018112], [-123.253245, 51.022542], [-123.255194, 51.025465], [-123.254221, 51.029721], [-123.252301, 51.031439], [-123.252612, 51.04149], [-123.249282, 51.043955], [-123.250958, 51.047005], [-123.252117, 51.053245], [-123.25155, 51.056895], [-123.251643, 51.058244], [-123.252552, 51.060266], [-123.252916, 51.06156], [-123.254257, 51.064084], [-123.255435, 51.068299], [-123.257316, 51.070318], [-123.259464, 51.071663], [-123.264302, 51.074125], [-123.265006, 51.074969], [-123.266538, 51.075919], [-123.266901, 51.076988], [-123.268148, 51.077884], [-123.270305, 51.080577], [-123.27034, 51.080768], [-123.352828, 51.10383], [-123.354535, 51.103391], [-123.357572, 51.103604], [-123.362297, 51.104664], [-123.374623, 51.108003], [-123.377975, 51.108385], [-123.38342, 51.108309], [-123.385133, 51.108589], [-123.388219, 51.109565], [-123.389859, 51.109657], [-123.395286, 51.109184], [-123.401813, 51.109219], [-123.404094, 51.109416], [-123.403298, 51.110452], [-123.402055, 51.110914], [-123.401171, 51.111483], [-123.400305, 51.112951], [-123.401021, 51.113505], [-123.404622, 51.115047], [-123.40909, 51.116126], [-123.409819, 51.116572], [-123.41305, 51.117998], [-123.41559, 51.120333], [-123.418116, 51.121887], [-123.425296, 51.123384], [-123.42761, 51.12359], [-123.431178, 51.12344], [-123.439033, 51.123819], [-123.440463, 51.124029], [-123.450527, 51.126959], [-123.454854, 51.128603], [-123.457761, 51.131043], [-123.46047, 51.132145], [-123.465132, 51.132888], [-123.469416, 51.132949], [-123.471581, 51.133829], [-123.47501, 51.135485], [-123.478634, 51.138137], [-123.480962, 51.138117], [-123.485256, 51.139085], [-123.48797, 51.140627], [-123.490851, 51.141611], [-123.494466, 51.143149], [-123.496611, 51.143462], [-123.498038, 51.143338], [-123.500159, 51.142635], [-123.501563, 51.141836], [-123.506345, 51.140328], [-123.509334, 51.139937], [-123.520538, 51.144027], [-123.535488, 51.151628], [-123.541492, 51.15868], [-123.542246, 51.159475], [-123.544409, 51.159779], [-123.548008, 51.16039], [-123.548378, 51.160752], [-123.549054, 51.161467], [-123.549538, 51.16214], [-123.55008, 51.163106], [-123.550308, 51.166201], [-123.551148, 51.168493], [-123.552605, 51.175194], [-123.55297, 51.17562], [-123.586613, 51.202261], [-123.589947, 51.20617], [-123.590101, 51.206612], [-123.587402, 51.216574], [-123.587848, 51.217615], [-123.588489, 51.218082], [-123.59014, 51.218776], [-123.591007, 51.219549], [-123.593152, 51.223787], [-123.593399, 51.224766], [-123.594766, 51.227568], [-123.592333, 51.242271], [-123.592235, 51.243907], [-123.591983, 51.244381], [-123.586449, 51.27778], [-123.600197, 51.299951], [-123.609949, 51.309628], [-123.627948, 51.367844], [-123.627522, 51.370003], [-123.628565, 51.372893], [-123.628596, 51.373176], [-123.628298, 51.373854], [-123.628601, 51.375071], [-123.628909, 51.375465], [-123.629651, 51.376072], [-123.63001, 51.376554], [-123.630657, 51.377779], [-123.630996, 51.378979], [-123.631647, 51.380188], [-123.63251, 51.381008], [-123.633471, 51.381443], [-123.633759, 51.381881], [-123.634059, 51.383892], [-123.633925, 51.38683], [-123.633471, 51.388481], [-123.63275, 51.389215], [-123.631554, 51.389736], [-123.630668, 51.38992], [-123.62984, 51.390834], [-123.629841, 51.392028], [-123.630569, 51.393676], [-123.631091, 51.394521], [-123.631309, 51.394715], [-123.631975, 51.395101], [-123.634551, 51.395776], [-123.635574, 51.396374], [-123.63589, 51.396753], [-123.63602, 51.397089], [-123.635868, 51.39761], [-123.634462, 51.399103], [-123.634352, 51.399399], [-123.634799, 51.400961], [-123.635483, 51.401854], [-123.637169, 51.403038], [-123.638047, 51.403439], [-123.63897, 51.403624], [-123.640769, 51.403764], [-123.643246, 51.404077], [-123.643792, 51.404245], [-123.644576, 51.40464], [-123.645218, 51.405221], [-123.646107, 51.406956], [-123.647023, 51.408091], [-123.647878, 51.408774], [-123.648965, 51.409402], [-123.650168, 51.41058], [-123.650162, 51.411852], [-123.649584, 51.413195], [-123.649572, 51.413682], [-123.65036, 51.414134], [-123.651546, 51.414577], [-123.654272, 51.414682], [-123.65512, 51.415136], [-123.65521, 51.415685], [-123.654867, 51.416714], [-123.655424, 51.417338], [-123.657069, 51.418507], [-123.659319, 51.419721], [-123.660372, 51.42086], [-123.660962, 51.422727], [-123.661448, 51.423627], [-123.661551, 51.424516], [-123.661801, 51.425242], [-123.662486, 51.425802], [-123.662951, 51.42596], [-123.664067, 51.426161], [-123.665797, 51.426306], [-123.666857, 51.426489], [-123.668286, 51.426585], [-123.669038, 51.42652], [-123.669211, 51.426229], [-123.669269, 51.425832], [-123.668844, 51.424916], [-123.669639, 51.424724], [-123.670267, 51.42478], [-123.671039, 51.425063], [-123.672719, 51.426523], [-123.673355, 51.427839], [-123.673579, 51.428804], [-123.673496, 51.430032], [-123.672963, 51.430909], [-123.67286, 51.431612], [-123.673232, 51.432338], [-123.674381, 51.433089], [-123.676228, 51.433466], [-123.678749, 51.43433], [-123.679271, 51.435034], [-123.679695, 51.435844], [-123.679838, 51.436737], [-123.67979, 51.437212], [-123.679251, 51.437786], [-123.678543, 51.438219], [-123.677311, 51.438462], [-123.674526, 51.438785], [-123.67309, 51.439302], [-123.671434, 51.440406], [-123.670666, 51.441397], [-123.67066, 51.44186], [-123.671038, 51.442451], [-123.672643, 51.443444], [-123.673433, 51.443793], [-123.67819, 51.445003], [-123.679012, 51.445032], [-123.679628, 51.444934], [-123.682243, 51.443699], [-123.683114, 51.443544], [-123.683499, 51.443586], [-123.683933, 51.443828], [-123.684331, 51.44433], [-123.684353, 51.444939], [-123.684162, 51.445297], [-123.683124, 51.445697], [-123.681657, 51.446047], [-123.677798, 51.446576], [-123.677009, 51.44692], [-123.675938, 51.447801], [-123.675691, 51.448399], [-123.675651, 51.448739], [-123.675859, 51.449282], [-123.676283, 51.449686], [-123.677197, 51.450152], [-123.677976, 51.450309], [-123.679574, 51.450421], [-123.682646, 51.450428], [-123.683217, 51.450525], [-123.684525, 51.450921], [-123.685217, 51.451251], [-123.686013, 51.452026], [-123.686766, 51.453564], [-123.687341, 51.453942], [-123.687705, 51.454027], [-123.688371, 51.454071], [-123.689109, 51.45391], [-123.6899, 51.453486], [-123.691223, 51.452425], [-123.69155, 51.452499], [-123.691987, 51.452727], [-123.692146, 51.453144], [-123.691806, 51.455484], [-123.690385, 51.456118], [-123.689981, 51.456962], [-123.689363, 51.457663], [-123.689036, 51.45836], [-123.689142, 51.458723], [-123.689433, 51.459038], [-123.690265, 51.459532], [-123.69066, 51.459688], [-123.691615, 51.459872], [-123.692819, 51.459854], [-123.693788, 51.459667], [-123.694332, 51.459456], [-123.695366, 51.458545], [-123.695919, 51.458334], [-123.697149, 51.458274], [-123.697875, 51.458391], [-123.69847, 51.458619], [-123.698928, 51.458914], [-123.700288, 51.460493], [-123.701136, 51.461118], [-123.703344, 51.462168], [-123.704402, 51.462796], [-123.704876, 51.463173], [-123.705137, 51.463535], [-123.705166, 51.463755], [-123.704877, 51.464692], [-123.704242, 51.465478], [-123.703292, 51.466244], [-123.702712, 51.46703], [-123.701933, 51.467692], [-123.701599, 51.468839], [-123.701643, 51.469103], [-123.701945, 51.469427], [-123.702452, 51.469676], [-123.702977, 51.469796], [-123.704021, 51.469816], [-123.705671, 51.469329], [-123.707091, 51.469479], [-123.708177, 51.469797], [-123.708513, 51.470828], [-123.707793, 51.47177], [-123.708069, 51.473529], [-123.708045, 51.473646], [-123.707689, 51.473752], [-123.707266, 51.474729], [-123.707468, 51.475344], [-123.70658, 51.475903], [-123.704006, 51.476208], [-123.699589, 51.476372], [-123.699014, 51.476635], [-123.698194, 51.477628], [-123.698034, 51.478736], [-123.698152, 51.479538], [-123.697854, 51.480131], [-123.697535, 51.480478], [-123.696959, 51.480883], [-123.694688, 51.481869], [-123.694318, 51.482185], [-123.693911, 51.482795], [-123.693694, 51.483376], [-123.69379, 51.484369], [-123.694094, 51.484984], [-123.695732, 51.48726], [-123.69569, 51.487684], [-123.69527, 51.488501], [-123.694694, 51.489088], [-123.694285, 51.489338], [-123.693364, 51.489649], [-123.690247, 51.490106], [-123.689091, 51.490468], [-123.68845, 51.490902], [-123.68851, 51.49262], [-123.687423, 51.493341], [-123.68699, 51.493516], [-123.685323, 51.493736], [-123.682985, 51.494414], [-123.682688, 51.494529], [-123.682195, 51.495039], [-123.681781, 51.496034], [-123.681489, 51.497292], [-123.680512, 51.49888], [-123.679386, 51.500002], [-123.678644, 51.501169], [-123.678146, 51.503359], [-123.677662, 51.504889], [-123.677096, 51.506115], [-123.676901, 51.507194], [-123.676003, 51.508621], [-123.675086, 51.509561], [-123.674822, 51.510013], [-123.67476, 51.510812], [-123.675126, 51.511844], [-123.67514, 51.512159], [-123.674829, 51.515496], [-123.67486, 51.517612], [-123.674676, 51.518483], [-123.674162, 51.519605], [-123.674132, 51.520432], [-123.674342, 51.521052], [-123.675169, 51.521808], [-123.676704, 51.522678], [-123.677134, 51.523015], [-123.677348, 51.523305], [-123.677693, 51.524225], [-123.678151, 51.524657], [-123.678942, 51.525085], [-123.681541, 51.526242], [-123.681797, 51.526468], [-123.681999, 51.526863], [-123.68198, 51.527378], [-123.681335, 51.528636], [-123.681215, 51.529075], [-123.68141, 51.529693], [-123.681931, 51.530193], [-123.682407, 51.530409], [-123.684391, 51.530907], [-123.685869, 51.53152], [-123.686467, 51.531993], [-123.68678, 51.53302], [-123.68716, 51.533525], [-123.687613, 51.533797], [-123.68909, 51.53433], [-123.689443, 51.534531], [-123.689974, 51.535056], [-123.690587, 51.536874], [-123.691007, 51.537437], [-123.691965, 51.53837], [-123.69225, 51.538859], [-123.692352, 51.539326], [-123.69226, 51.539888], [-123.692148, 51.540159], [-123.691527, 51.540901], [-123.691331, 51.541607], [-123.691609, 51.541992], [-123.693036, 51.542345], [-123.693333, 51.542761], [-123.693395, 51.543282], [-123.692957, 51.544341], [-123.693144, 51.545208], [-123.693668, 51.545859], [-123.694314, 51.546401], [-123.69682, 51.548233], [-123.697696, 51.549313], [-123.698065, 51.550537], [-123.698185, 51.552198], [-123.698705, 51.553604], [-123.69887, 51.554663], [-123.698841, 51.555231], [-123.698636, 51.555927], [-123.698381, 51.556273], [-123.697754, 51.556492], [-123.697194, 51.556509], [-123.695828, 51.55634], [-123.692788, 51.556156], [-123.691923, 51.556154], [-123.691077, 51.556257], [-123.6907, 51.556464], [-123.690592, 51.556808], [-123.690674, 51.557045], [-123.690994, 51.557327], [-123.692375, 51.558144], [-123.693995, 51.558547], [-123.695531, 51.559135], [-123.696819, 51.55982], [-123.697471, 51.560347], [-123.69807, 51.561156], [-123.698487, 51.561977], [-123.698856, 51.563553], [-123.698954, 51.564879], [-123.699159, 51.565313], [-123.699821, 51.565855], [-123.700242, 51.566021], [-123.701622, 51.566263], [-123.705963, 51.565739], [-123.706669, 51.565923], [-123.707342, 51.566631], [-123.707982, 51.567699], [-123.708295, 51.568545], [-123.708314, 51.569459], [-123.710153, 51.57308], [-123.709077, 51.575917], [-123.709061, 51.576609], [-123.709269, 51.577072], [-123.709555, 51.577399], [-123.711347, 51.578486], [-123.711625, 51.579135], [-123.711415, 51.579932], [-123.710472, 51.580684], [-123.709559, 51.581252], [-123.708962, 51.581518], [-123.7081, 51.581726], [-123.706207, 51.581814], [-123.704944, 51.582012], [-123.70412, 51.582269], [-123.703614, 51.582535], [-123.703221, 51.583152], [-123.703134, 51.583632], [-123.703279, 51.584278], [-123.704616, 51.586568], [-123.704714, 51.587077], [-123.704522, 51.587501], [-123.703526, 51.588132], [-123.702223, 51.588576], [-123.699161, 51.589136], [-123.697504, 51.589106], [-123.696655, 51.589169], [-123.696088, 51.589405], [-123.695742, 51.589762], [-123.695432, 51.591176], [-123.695471, 51.591694], [-123.695869, 51.592604], [-123.696442, 51.593151], [-123.697021, 51.59342], [-123.69772, 51.593607], [-123.699307, 51.593754], [-123.699889, 51.593924], [-123.700287, 51.594129], [-123.700911, 51.594776], [-123.701437, 51.595129], [-123.703411, 51.595609], [-123.704911, 51.596404], [-123.706353, 51.596881], [-123.707224, 51.596922], [-123.709237, 51.596848], [-123.711429, 51.597042], [-123.712222, 51.596918], [-123.712858, 51.59662], [-123.713154, 51.596269], [-123.713473, 51.595088], [-123.713926, 51.594776], [-123.714194, 51.594702], [-123.714906, 51.594691], [-123.715347, 51.59479], [-123.71643, 51.59552], [-123.717128, 51.595833], [-123.717593, 51.595814], [-123.718134, 51.595662], [-123.718633, 51.595376], [-123.719094, 51.594844], [-123.719295, 51.593889], [-123.719448, 51.593668], [-123.720772, 51.593003], [-123.722008, 51.592573], [-123.723333, 51.592341], [-123.72512, 51.592395], [-123.725998, 51.592529], [-123.727081, 51.592949], [-123.727728, 51.59346], [-123.727984, 51.593875], [-123.728052, 51.595232], [-123.727866, 51.596015], [-123.728432, 51.597038], [-123.729482, 51.598079], [-123.730346, 51.598728], [-123.731108, 51.59918], [-123.733099, 51.600137], [-123.733542, 51.600635], [-123.733643, 51.600909], [-123.73362, 51.601441], [-123.733143, 51.601998], [-123.732374, 51.602481], [-123.732177, 51.602846], [-123.7325, 51.604116], [-123.733129, 51.605254], [-123.733367, 51.606076], [-123.733343, 51.606458], [-123.732719, 51.608024], [-123.732697, 51.610996], [-123.733037, 51.612377], [-123.733415, 51.615748], [-123.733161, 51.617096], [-123.733378, 51.617435], [-123.733891, 51.61785], [-123.734731, 51.618239], [-123.735641, 51.618431], [-123.738007, 51.618409], [-123.738513, 51.618526], [-123.738998, 51.618915], [-123.739073, 51.619272], [-123.738631, 51.619925], [-123.738119, 51.620339], [-123.737079, 51.620936], [-123.736524, 51.621459], [-123.736478, 51.622034], [-123.736733, 51.623077], [-123.736516, 51.62371], [-123.735223, 51.62583], [-123.73505, 51.626495], [-123.735103, 51.626879], [-123.735278, 51.627221], [-123.735752, 51.62759], [-123.736503, 51.627915], [-123.737975, 51.628366], [-123.738618, 51.628946], [-123.738906, 51.629662], [-123.73885, 51.631502], [-123.738979, 51.631998], [-123.739312, 51.632197], [-123.740008, 51.632315], [-123.740422, 51.63229], [-123.741915, 51.631934], [-123.742232, 51.632447], [-123.740361, 51.633389], [-123.74001, 51.633734], [-123.739975, 51.633985], [-123.740225, 51.634645], [-123.740231, 51.635056], [-123.739645, 51.63685], [-123.739682, 51.637309], [-123.739896, 51.637781], [-123.740216, 51.638123], [-123.741405, 51.63882], [-123.741701, 51.639117], [-123.742145, 51.640049], [-123.742487, 51.64167], [-123.743772, 51.643578], [-123.744083, 51.644766], [-123.74398, 51.64567], [-123.744087, 51.646038], [-123.744887, 51.647274], [-123.746107, 51.648591], [-123.748446, 51.650269], [-123.748698, 51.650746], [-123.748739, 51.651296], [-123.748603, 51.651589], [-123.747893, 51.652925], [-123.746921, 51.65417], [-123.746625, 51.65495], [-123.746668, 51.656814], [-123.745427, 51.658535], [-123.745582, 51.659081], [-123.746921, 51.660813], [-123.747226, 51.66167], [-123.748025, 51.662658], [-123.748789, 51.66295], [-123.749002, 51.663422], [-123.74887, 51.664056], [-123.748028, 51.665677], [-123.749592, 51.669078], [-123.748728, 51.669905], [-123.747508, 51.67053], [-123.746608, 51.670856], [-123.744781, 51.672279], [-123.743993, 51.672685], [-123.741847, 51.673264], [-123.739595, 51.673558], [-123.738051, 51.67359], [-123.734523, 51.672893], [-123.733253, 51.672861], [-123.731153, 51.673132], [-123.729908, 51.67357], [-123.72929, 51.674052], [-123.727044, 51.676689], [-123.725857, 51.677964], [-123.724055, 51.679407], [-123.721349, 51.681312], [-123.720998, 51.681785], [-123.720812, 51.682596], [-123.720943, 51.683071], [-123.721649, 51.684439], [-123.721894, 51.685117], [-123.721451, 51.686017], [-123.720535, 51.686395], [-123.717124, 51.687243], [-123.715658, 51.687951], [-123.714943, 51.688167], [-123.71457, 51.688471], [-123.714541, 51.688982], [-123.714874, 51.689973], [-123.71677, 51.692283], [-123.717547, 51.692844], [-123.717303, 51.694237], [-123.71694, 51.694706], [-123.716295, 51.695255], [-123.715137, 51.695791], [-123.712505, 51.696507], [-123.711472, 51.696873], [-123.710995, 51.697215], [-123.710915, 51.697527], [-123.711272, 51.698258], [-123.713248, 51.699488], [-123.714965, 51.700243], [-123.715041, 51.700346], [-123.714809, 51.700695], [-123.71306, 51.701511], [-123.71239, 51.702073], [-123.711684, 51.703322], [-123.711696, 51.704596], [-123.711241, 51.705434], [-123.711037, 51.706095], [-123.707686, 51.709667], [-123.706061, 51.710703], [-123.705319, 51.711445], [-123.705089, 51.712033], [-123.705551, 51.714015], [-123.70544, 51.714329], [-123.70455, 51.714918], [-123.702154, 51.715894], [-123.702047, 51.71627], [-123.702188, 51.716953], [-123.702132, 51.717707], [-123.70169, 51.718543], [-123.700542, 51.719702], [-123.697924, 51.721633], [-123.69688, 51.722572], [-123.696455, 51.722794], [-123.695913, 51.722924], [-123.692778, 51.723351], [-123.690747, 51.723367], [-123.689113, 51.723049], [-123.688484, 51.723173], [-123.685669, 51.723012], [-123.683737, 51.723315], [-123.682401, 51.723405], [-123.682089, 51.72352], [-123.680981, 51.724788], [-123.679651, 51.72548], [-123.678947, 51.726171], [-123.678659, 51.727502], [-123.678347, 51.727977], [-123.678157, 51.729374], [-123.677934, 51.730003], [-123.677654, 51.730412], [-123.676655, 51.731079], [-123.67563, 51.73194], [-123.67402, 51.732472], [-123.670582, 51.733914], [-123.669335, 51.73432], [-123.667157, 51.735603], [-123.664786, 51.736774], [-123.664516, 51.736968], [-123.663873, 51.737945], [-123.66137, 51.740652], [-123.660545, 51.741319], [-123.657538, 51.743331], [-123.65523, 51.74455], [-123.653343, 51.745946], [-123.652717, 51.746681], [-123.652707, 51.74715], [-123.653389, 51.747823], [-123.65362, 51.748599], [-123.653102, 51.749264], [-123.651875, 51.74975], [-123.651302, 51.750083], [-123.650959, 51.750623], [-123.650776, 51.752106], [-123.650825, 51.753412], [-123.65042, 51.754211], [-123.64968, 51.757177], [-123.649579, 51.759418], [-123.648995, 51.760561], [-123.648921, 51.760973], [-123.648901, 51.762045], [-123.649101, 51.762821], [-123.649907, 51.763959], [-123.65024, 51.764961], [-123.651016, 51.765731], [-123.65137, 51.766231], [-123.651901, 51.76764], [-123.651861, 51.768315], [-123.651514, 51.768879], [-123.650431, 51.76991], [-123.648522, 51.771454], [-123.647999, 51.772231], [-123.64803, 51.772779], [-123.648873, 51.773952], [-123.649053, 51.774409], [-123.650066, 51.779005], [-123.651494, 51.781038], [-123.653153, 51.782756], [-123.653584, 51.783055], [-123.654421, 51.783421], [-123.655167, 51.783633], [-123.655936, 51.783754], [-123.659444, 51.784092], [-123.662864, 51.784015], [-123.664663, 51.784059], [-123.665606, 51.784267], [-123.666221, 51.784605], [-123.666754, 51.785295], [-123.667213, 51.786993], [-123.667919, 51.787767], [-123.668784, 51.788336], [-123.669307, 51.788799], [-123.670098, 51.78976], [-123.669826, 51.790085], [-123.669441, 51.79033], [-123.667355, 51.79106], [-123.665136, 51.791535], [-123.663198, 51.792592], [-123.662098, 51.793654], [-123.660895, 51.795348], [-123.659407, 51.796113], [-123.657088, 51.796761], [-123.656175, 51.797345], [-123.655278, 51.798029], [-123.654683, 51.799028], [-123.654599, 51.799456], [-123.65491, 51.799781], [-123.655358, 51.799913], [-123.655721, 51.799808], [-123.656286, 51.799445], [-123.656727, 51.799317], [-123.657683, 51.799297], [-123.658098, 51.799395], [-123.658302, 51.799556], [-123.658411, 51.799859], [-123.658322, 51.800176], [-123.657275, 51.801153], [-123.657059, 51.801766], [-123.657161, 51.802941], [-123.657902, 51.804655], [-123.659841, 51.805438], [-123.660216, 51.80572], [-123.661021, 51.806656], [-123.661991, 51.807428], [-123.663007, 51.807554], [-123.663688, 51.807419], [-123.664848, 51.807463], [-123.665403, 51.807657], [-123.668151, 51.80898], [-123.6686, 51.809285], [-123.669381, 51.810063], [-123.671318, 51.81134], [-123.672079, 51.812207], [-123.67285, 51.81288], [-123.675285, 51.81455], [-123.675711, 51.815298], [-123.676642, 51.816048], [-123.67736, 51.816786], [-123.678308, 51.817314], [-123.678888, 51.817853], [-123.679128, 51.818528], [-123.678073, 51.82018], [-123.678061, 51.821267], [-123.677705, 51.821621], [-123.677155, 51.821889], [-123.676838, 51.822271], [-123.676537, 51.82287], [-123.676248, 51.824075], [-123.675499, 51.824673], [-123.673554, 51.826752], [-123.673359, 51.827184], [-123.67322, 51.827825], [-123.673665, 51.828524], [-123.674123, 51.828812], [-123.67607, 51.829433], [-123.676617, 51.829724], [-123.676854, 51.829927], [-123.677366, 51.830993], [-123.67763, 51.83233], [-123.678393, 51.832881], [-123.679063, 51.833719], [-123.679048, 51.834324], [-123.679444, 51.834925], [-123.680006, 51.83669], [-123.680152, 51.837474], [-123.680668, 51.838576], [-123.68059, 51.839596], [-123.680722, 51.840522], [-123.68213, 51.841667], [-123.682678, 51.842288], [-123.683177, 51.843855], [-123.683902, 51.844252], [-123.684725, 51.844444], [-123.685208, 51.844659], [-123.68587, 51.845346], [-123.685913, 51.846054], [-123.685722, 51.847135], [-123.685685, 51.848322], [-123.685838, 51.848962], [-123.6863, 51.849604], [-123.686389, 51.849993], [-123.686665, 51.850446], [-123.687208, 51.850882], [-123.688308, 51.852082], [-123.689263, 51.852813], [-123.689239, 51.85321], [-123.688557, 51.854005], [-123.689084, 51.855939], [-123.689629, 51.856979], [-123.689736, 51.858434], [-123.690085, 51.859223], [-123.69015, 51.860044], [-123.689256, 51.861224], [-123.688991, 51.8617], [-123.688982, 51.861946], [-123.689377, 51.86309], [-123.690497, 51.864323], [-123.690603, 51.864789], [-123.690338, 51.866101], [-123.690424, 51.866646], [-123.691516, 51.86813], [-123.692324, 51.86995], [-123.693495, 51.871574], [-123.693703, 51.872083], [-123.69371, 51.87248], [-123.69301, 51.872995], [-123.692853, 51.873228], [-123.692817, 51.874358], [-123.693056, 51.874702], [-123.694103, 51.875499], [-123.694442, 51.876255], [-123.695175, 51.876677], [-123.69566, 51.877124], [-123.695976, 51.877597], [-123.695951, 51.878568], [-123.695771, 51.879176], [-123.695481, 51.879554], [-123.695266, 51.880618], [-123.69535, 51.881811], [-123.695849, 51.882287], [-123.69662, 51.88376], [-123.697394, 51.884442], [-123.697608, 51.884775], [-123.697594, 51.88588], [-123.698033, 51.886776], [-123.69807, 51.887585], [-123.697582, 51.888754], [-123.697771, 51.890523], [-123.697646, 51.892046], [-123.697438, 51.892651], [-123.69733, 51.893587], [-123.69713, 51.89402], [-123.696753, 51.894475], [-123.695429, 51.895316], [-123.694838, 51.89629], [-123.693276, 51.897401], [-123.692895, 51.897979], [-123.691846, 51.898865], [-123.692069, 51.899557], [-123.691804, 51.900075], [-123.690531, 51.901777], [-123.690055, 51.902166], [-123.689829, 51.902496], [-123.689846, 51.903166], [-123.690233, 51.904677], [-123.689868, 51.905296], [-123.689675, 51.90545], [-123.687746, 51.906538], [-123.686656, 51.908309], [-123.686279, 51.909199], [-123.685846, 51.90974], [-123.684865, 51.910592], [-123.684586, 51.910956], [-123.68443, 51.911371], [-123.684237, 51.912782], [-123.683591, 51.914108], [-123.682484, 51.915405], [-123.682058, 51.916086], [-123.680887, 51.917411], [-123.680618, 51.917603], [-123.680189, 51.917758], [-123.678875, 51.917914], [-123.678056, 51.918107], [-123.677512, 51.918422], [-123.677341, 51.918754], [-123.677275, 51.92039], [-123.677161, 51.920714], [-123.676672, 51.920977], [-123.675221, 51.921129], [-123.674203, 51.921337], [-123.673739, 51.921755], [-123.673128, 51.923192], [-123.672821, 51.924616], [-123.672526, 51.925102], [-123.671814, 51.925734], [-123.66832, 51.928232], [-123.667879, 51.928743], [-123.667857, 51.929659], [-123.668497, 51.931013], [-123.668507, 51.931737], [-123.668319, 51.932282], [-123.666929, 51.934488], [-123.66661, 51.936522], [-123.666227, 51.937449], [-123.665443, 51.938389], [-123.66509, 51.940587], [-123.665135, 51.941486], [-123.665853, 51.942098], [-123.666055, 51.94247], [-123.666357, 51.943205], [-123.666387, 51.943941], [-123.666634, 51.944344], [-123.666832, 51.944995], [-123.667485, 51.945855], [-123.667767, 51.946798], [-123.66732, 51.948293], [-123.666504, 51.949504], [-123.666511, 51.950508], [-123.666162, 51.951145], [-123.665827, 51.951404], [-123.664639, 51.951908], [-123.663026, 51.953123], [-123.662713, 51.953627], [-123.662782, 51.954135], [-123.663176, 51.95457], [-123.664728, 51.955496], [-123.665136, 51.955916], [-123.665227, 51.956213], [-123.667638, 51.9568], [-123.668985, 51.956777], [-123.669377, 51.95684], [-123.671654, 51.957693], [-123.673479, 51.958226], [-123.67439, 51.958573], [-123.67499, 51.958907], [-123.675583, 51.959398], [-123.676221, 51.960191], [-123.676942, 51.961445], [-123.677358, 51.961644], [-123.678395, 51.961893], [-123.67976, 51.962094], [-123.680743, 51.96231], [-123.682867, 51.96384], [-123.684334, 51.964516], [-123.686029, 51.965817], [-123.686824, 51.966811], [-123.686899, 51.967475], [-123.68761, 51.969037], [-123.687474, 51.969809], [-123.686616, 51.970609], [-123.686323, 51.971598], [-123.685418, 51.972972], [-123.683545, 51.975224], [-123.683154, 51.975809], [-123.683119, 51.976137], [-123.685929, 51.977709], [-123.686485, 51.978311], [-123.687289, 51.980372], [-123.688155, 51.981408], [-123.688784, 51.983068], [-123.689171, 51.98362], [-123.690673, 51.985225], [-123.690879, 51.985682], [-123.690589, 51.98607], [-123.688921, 51.986709], [-123.688772, 51.986901], [-123.688778, 51.987351], [-123.689346, 51.988137], [-123.689702, 51.989004], [-123.690423, 51.990117], [-123.691141, 51.9909], [-123.692296, 51.993285], [-123.692149, 51.993769], [-123.691699, 51.994627], [-123.691401, 51.994998], [-123.69, 51.995728], [-123.688251, 51.996391], [-123.686932, 51.996607], [-123.685858, 51.996472], [-123.683515, 51.995554], [-123.681321, 51.995759], [-123.680542, 51.996371], [-123.680432, 51.997427], [-123.680211, 51.998236], [-123.679927, 51.998586], [-123.678724, 51.999206], [-123.677949, 51.99975], [-123.676842, 52.000196], [-123.676473, 52.000241], [-123.673045, 52.001406], [-123.672264, 52.001748], [-123.672244, 52.00216], [-123.67248, 52.002542], [-123.673246, 52.003023], [-123.677344, 52.00527], [-123.678107, 52.006213], [-123.677703, 52.007232], [-123.677897, 52.007599], [-123.677568, 52.007678], [-123.676131, 52.008758], [-123.675051, 52.009691], [-123.674275, 52.010008], [-123.673376, 52.009933], [-123.671374, 52.010484], [-123.66886, 52.011525], [-123.668353, 52.011617], [-123.666622, 52.012287], [-123.665934, 52.012471], [-123.66391, 52.013167], [-123.662345, 52.013586], [-123.661805, 52.013673], [-123.65956, 52.013494], [-123.652552, 52.013734], [-123.651612, 52.013919], [-123.651061, 52.01424], [-123.649718, 52.015671], [-123.649143, 52.01701], [-123.649011, 52.019851], [-123.648844, 52.020589], [-123.648804, 52.022087], [-123.648491, 52.024204], [-123.648412, 52.024386], [-123.647794, 52.024929], [-123.646479, 52.025558], [-123.645023, 52.025901], [-123.643511, 52.026027], [-123.642046, 52.026022], [-123.641138, 52.026185], [-123.640164, 52.026522], [-123.638565, 52.027299], [-123.636935, 52.027861], [-123.63569, 52.028132], [-123.634737, 52.028155], [-123.633756, 52.027962], [-123.630566, 52.027878], [-123.625871, 52.027969], [-123.622132, 52.028448], [-123.620534, 52.028983], [-123.618875, 52.029362], [-123.616295, 52.029636], [-123.614468, 52.02969], [-123.613716, 52.029617], [-123.611361, 52.029052], [-123.609668, 52.028521], [-123.608507, 52.028482], [-123.607977, 52.028643], [-123.607491, 52.029048], [-123.607409, 52.029492], [-123.607518, 52.030086], [-123.607767, 52.030644], [-123.608026, 52.030932], [-123.608714, 52.031459], [-123.610023, 52.032184], [-123.610359, 52.032513], [-123.61064, 52.033119], [-123.610438, 52.033464], [-123.610057, 52.033782], [-123.609678, 52.033933], [-123.608885, 52.033958], [-123.607468, 52.033672], [-123.606822, 52.033344], [-123.606265, 52.032461], [-123.605639, 52.032184], [-123.605103, 52.032052], [-123.604079, 52.031969], [-123.602693, 52.031971], [-123.601795, 52.032215], [-123.601015, 52.032632], [-123.600369, 52.033247], [-123.599084, 52.034788], [-123.597781, 52.035915], [-123.597146, 52.036327], [-123.595757, 52.037425], [-123.594615, 52.037959], [-123.593919, 52.038105], [-123.592664, 52.03813], [-123.590899, 52.037903], [-123.590244, 52.038011], [-123.589683, 52.038265], [-123.588974, 52.038946], [-123.588315, 52.040525], [-123.587197, 52.041817], [-123.584712, 52.04378], [-123.583939, 52.044202], [-123.582864, 52.044594], [-123.582193, 52.045034], [-123.581498, 52.045659], [-123.580538, 52.046913], [-123.579325, 52.048022], [-123.576818, 52.048985], [-123.575735, 52.049701], [-123.575261, 52.050342], [-123.575232, 52.051093], [-123.575448, 52.051449], [-123.576056, 52.051979], [-123.576602, 52.052837], [-123.577126, 52.053322], [-123.577525, 52.053977], [-123.577617, 52.054555], [-123.577079, 52.055142], [-123.57482, 52.056371], [-123.572033, 52.057606], [-123.571491, 52.058049], [-123.57041, 52.059338], [-123.569691, 52.059753], [-123.569128, 52.05995], [-123.567875, 52.060095], [-123.564053, 52.060068], [-123.563296, 52.060191], [-123.562166, 52.060703], [-123.561589, 52.061227], [-123.561196, 52.062106], [-123.560625, 52.062865], [-123.558741, 52.063472], [-123.55737, 52.064223], [-123.555507, 52.065947], [-123.551799, 52.067426], [-123.550515, 52.068146], [-123.550615, 52.068755], [-123.550952, 52.069284], [-123.552909, 52.074219], [-123.55303, 52.087934], [-123.555598, 52.087812], [-123.563199, 52.084882], [-123.563394, 52.084857], [-123.563423, 52.084767], [-123.563786, 52.08463], [-123.563999, 52.084197], [-123.564951, 52.083411], [-123.564979, 52.083249], [-123.565472, 52.083031], [-123.5665, 52.08236], [-123.567611, 52.08132], [-123.568569, 52.080884], [-123.568918, 52.080829], [-123.570713, 52.080802], [-123.571425, 52.08053], [-123.5717, 52.080483], [-123.572911, 52.080423], [-123.57415, 52.080291], [-123.575594, 52.080266], [-123.575858, 52.080319], [-123.576901, 52.080853], [-123.576905, 52.081141], [-123.576283, 52.08171], [-123.576347, 52.08198], [-123.576509, 52.082105], [-123.57683, 52.082202], [-123.577298, 52.082218], [-123.577588, 52.082126], [-123.578125, 52.081917], [-123.578688, 52.081401], [-123.57904, 52.080429], [-123.579488, 52.080013], [-123.581644, 52.078556], [-123.582006, 52.078445], [-123.582955, 52.078432], [-123.583477, 52.078223], [-123.584013, 52.077834], [-123.584586, 52.077102], [-123.584947, 52.076884], [-123.585343, 52.076918], [-123.58567, 52.077375], [-123.586465, 52.077929], [-123.586837, 52.078485], [-123.587058, 52.078636], [-123.587658, 52.078822], [-123.589088, 52.078859], [-123.590013, 52.079188], [-123.59047, 52.079527], [-123.590733, 52.079643], [-123.591683, 52.079719], [-123.592399, 52.079707], [-123.593432, 52.07953], [-123.594366, 52.079534], [-123.596215, 52.07922], [-123.596825, 52.079037], [-123.597919, 52.078995], [-123.598617, 52.078731], [-123.599368, 52.078214], [-123.600135, 52.077842], [-123.600426, 52.077768], [-123.601375, 52.077808], [-123.60187, 52.077753], [-123.602161, 52.077589], [-123.602173, 52.077382], [-123.602347, 52.0773], [-123.603077, 52.077305], [-123.603868, 52.077518], [-123.604077, 52.077795], [-123.60414, 52.07829], [-123.604305, 52.078505], [-123.604772, 52.078573], [-123.605646, 52.078525], [-123.605911, 52.078586], [-123.606362, 52.078593], [-123.607805, 52.078432], [-123.608112, 52.078476], [-123.6087, 52.07867], [-123.609006, 52.078678], [-123.609781, 52.078862], [-123.610057, 52.078871], [-123.610623, 52.07857], [-123.61087, 52.078533], [-123.611063, 52.078694], [-123.610952, 52.079171], [-123.61107, 52.079315], [-123.611407, 52.079366], [-123.611729, 52.079346], [-123.612541, 52.079091], [-123.613165, 52.078755], [-123.614021, 52.078401], [-123.614329, 52.078416], [-123.614816, 52.078926], [-123.615123, 52.078933], [-123.615254, 52.078888], [-123.615354, 52.078807], [-123.615366, 52.0786], [-123.614999, 52.078368], [-123.615009, 52.078099], [-123.615573, 52.07769], [-123.615964, 52.077509], [-123.616381, 52.076994], [-123.616771, 52.076848], [-123.617094, 52.07681], [-123.617419, 52.077223], [-123.618594, 52.077801], [-123.618891, 52.078077], [-123.619198, 52.078247], [-123.619638, 52.078335], [-123.620848, 52.078238], [-123.621766, 52.078251], [-123.622103, 52.078331], [-123.623234, 52.078836], [-123.623369, 52.07907], [-123.623313, 52.079268], [-123.622737, 52.079748], [-123.622256, 52.079813], [-123.622111, 52.079886], [-123.6221, 52.080101], [-123.622324, 52.080443], [-123.622328, 52.08081], [-123.622492, 52.08099], [-123.623396, 52.081065], [-123.623972, 52.081521], [-123.624191, 52.08153], [-123.624729, 52.081419], [-123.625474, 52.081406], [-123.626178, 52.081699], [-123.626557, 52.081688], [-123.626809, 52.081876], [-123.627132, 52.082008], [-123.627716, 52.082041], [-123.62881, 52.082027], [-123.630415, 52.081918], [-123.630775, 52.081629], [-123.631037, 52.081601], [-123.63117, 52.081691], [-123.631469, 52.082192], [-123.631587, 52.082236], [-123.632024, 52.082243], [-123.632399, 52.08198], [-123.633216, 52.081948], [-123.633757, 52.082008], [-123.634433, 52.082383], [-123.635178, 52.082343], [-123.635352, 52.082404], [-123.635428, 52.082539], [-123.635429, 52.082638], [-123.635214, 52.082873], [-123.635335, 52.083115], [-123.635817, 52.08323], [-123.636562, 52.083199], [-123.636957, 52.083331], [-123.637046, 52.08343], [-123.636918, 52.083575], [-123.636949, 52.083744], [-123.637492, 52.084021], [-123.637666, 52.083867], [-123.637662, 52.08366], [-123.637938, 52.083559], [-123.638245, 52.083558], [-123.639169, 52.083841], [-123.639171, 52.084119], [-123.639013, 52.084273], [-123.639177, 52.084461], [-123.639396, 52.084478], [-123.640308, 52.084958], [-123.640923, 52.085153], [-123.641612, 52.085329], [-123.64208, 52.085344], [-123.64249, 52.085441], [-123.643539, 52.085418], [-123.644047, 52.085234], [-123.644734, 52.085196], [-123.645216, 52.08522], [-123.645465, 52.085317], [-123.646078, 52.085368], [-123.646389, 52.085644], [-123.646509, 52.085905], [-123.64695, 52.086118], [-123.646988, 52.086738], [-123.646845, 52.08691], [-123.646848, 52.08709], [-123.647273, 52.087132], [-123.647655, 52.08731], [-123.647867, 52.08783], [-123.648145, 52.088027], [-123.649489, 52.088023], [-123.649783, 52.088128], [-123.650398, 52.088487], [-123.652091, 52.089005], [-123.652469, 52.088962], [-123.652495, 52.088344], [-123.652751, 52.088135], [-123.653031, 52.088065], [-123.653851, 52.088213], [-123.655537, 52.08895], [-123.657321, 52.089867], [-123.659089, 52.091268], [-123.659884, 52.092063], [-123.661183, 52.093078], [-123.662504, 52.094355], [-123.663414, 52.095041], [-123.663929, 52.095675], [-123.664229, 52.096608], [-123.664494, 52.096902], [-123.66543, 52.09735], [-123.666697, 52.097736], [-123.667496, 52.098174], [-123.667809, 52.098697], [-123.668089, 52.098968], [-123.668618, 52.09924], [-123.669669, 52.099564], [-123.670657, 52.100168], [-123.670757, 52.100399], [-123.670433, 52.10057], [-123.670349, 52.100839], [-123.670506, 52.101], [-123.671161, 52.101289], [-123.671837, 52.101432], [-123.672464, 52.101842], [-123.673668, 52.103069], [-123.674289, 52.103474], [-123.674708, 52.103682], [-123.67576, 52.103952], [-123.675939, 52.104061], [-123.675791, 52.104767], [-123.675974, 52.105429], [-123.676654, 52.106149], [-123.677549, 52.106758], [-123.677604, 52.107423], [-123.677999, 52.107858], [-123.677921, 52.107957], [-123.677449, 52.108137], [-123.677412, 52.10832], [-123.677821, 52.108684], [-123.677835, 52.108956], [-123.678104, 52.109518], [-123.678493, 52.109857], [-123.678896, 52.110025], [-123.679522, 52.110155], [-123.679754, 52.110349], [-123.679857, 52.110706], [-123.679768, 52.111078], [-123.679872, 52.111256], [-123.680353, 52.111378], [-123.681178, 52.111001], [-123.681753, 52.110967], [-123.682332, 52.111166], [-123.682776, 52.111501], [-123.683004, 52.11184], [-123.682951, 52.112498], [-123.68259, 52.112857], [-123.68186, 52.113244], [-123.681803, 52.11352], [-123.682021, 52.113724], [-123.683091, 52.11415], [-123.683982, 52.114677], [-123.684378, 52.115044], [-123.684444, 52.115243], [-123.683338, 52.11579], [-123.683377, 52.116411], [-123.683042, 52.117111], [-123.683247, 52.117378], [-123.68347, 52.11743], [-123.683825, 52.117425], [-123.684617, 52.117226], [-123.684936, 52.117853], [-123.684826, 52.11858], [-123.683892, 52.119594], [-123.683676, 52.11999], [-123.682996, 52.120418], [-123.682827, 52.12063], [-123.682992, 52.121104], [-123.68344, 52.121623], [-123.684379, 52.121866], [-123.684896, 52.122241], [-123.684995, 52.122608], [-123.684658, 52.122976], [-123.684092, 52.123253], [-123.682511, 52.123477], [-123.682467, 52.123752], [-123.682789, 52.124109], [-123.683492, 52.124551], [-123.683977, 52.125042], [-123.6855, 52.127825], [-123.68571, 52.128597], [-123.686188, 52.128949], [-123.686657, 52.129048], [-123.687196, 52.128956], [-123.687538, 52.128752], [-123.68764, 52.128469], [-123.687124, 52.128026], [-123.686953, 52.127654], [-123.687181, 52.127383], [-123.687656, 52.127235], [-123.688216, 52.127306], [-123.688803, 52.12762], [-123.68934, 52.128208], [-123.689427, 52.128558], [-123.690084, 52.129101], [-123.691771, 52.129866], [-123.692223, 52.129971], [-123.692712, 52.129973], [-123.693214, 52.130159], [-123.693667, 52.130465], [-123.69388, 52.130752], [-123.693907, 52.130999], [-123.693573, 52.131606], [-123.693461, 52.132854], [-123.693267, 52.133314], [-123.693043, 52.134772], [-123.693113, 52.134992], [-123.693673, 52.135419], [-123.693874, 52.135724], [-123.694044, 52.136446], [-123.694515, 52.137208], [-123.694498, 52.137797], [-123.693715, 52.139042], [-123.693483, 52.140039], [-123.693595, 52.14068], [-123.695535, 52.142587], [-123.696291, 52.143053], [-123.697317, 52.143234], [-123.697748, 52.143394], [-123.698001, 52.143621], [-123.698416, 52.14434], [-123.699203, 52.144918], [-123.70044, 52.145173], [-123.700956, 52.145808], [-123.701228, 52.145982], [-123.701592, 52.146063], [-123.70255, 52.145998], [-123.70344, 52.145437], [-123.704825, 52.145351], [-123.705887, 52.145411], [-123.707873, 52.145835], [-123.708802, 52.146231], [-123.709172, 52.146538], [-123.711068, 52.148893], [-123.711592, 52.149], [-123.712365, 52.148586], [-123.713295, 52.148369], [-123.713887, 52.148393], [-123.714247, 52.148523], [-123.714591, 52.148764], [-123.714675, 52.148961], [-123.714541, 52.149297], [-123.714604, 52.149503], [-123.715158, 52.149852], [-123.716079, 52.150176], [-123.716463, 52.150208], [-123.716689, 52.150061], [-123.716841, 52.1495], [-123.717108, 52.149278], [-123.717705, 52.14918], [-123.718163, 52.149255], [-123.718455, 52.14942], [-123.718589, 52.149692], [-123.718551, 52.150896], [-123.718692, 52.151776], [-123.718828, 52.151938], [-123.719808, 52.15243], [-123.720448, 52.153097], [-123.720748, 52.15384], [-123.721138, 52.154082], [-123.721266, 52.154365], [-123.720394, 52.155103], [-123.720073, 52.156637], [-123.720314, 52.15684], [-123.720998, 52.15686], [-123.721561, 52.156799], [-123.722224, 52.156893], [-123.722642, 52.157179], [-123.722713, 52.157538], [-123.722433, 52.158179], [-123.721444, 52.158937], [-123.72068, 52.159794], [-123.720623, 52.159965], [-123.720896, 52.160253], [-123.721901, 52.160586], [-123.722657, 52.160579], [-123.72379, 52.160157], [-123.724549, 52.159492], [-123.725048, 52.159357], [-123.725233, 52.159494], [-123.725388, 52.159841], [-123.725552, 52.161851], [-123.725678, 52.162096], [-123.72603, 52.162324], [-123.726562, 52.162319], [-123.727214, 52.161893], [-123.727547, 52.161775], [-123.728533, 52.161681], [-123.72917, 52.161755], [-123.729917, 52.162154], [-123.730546, 52.162309], [-123.731805, 52.162332], [-123.732875, 52.162193], [-123.733604, 52.162188], [-123.734963, 52.162476], [-123.736941, 52.163061], [-123.738789, 52.163368], [-123.739448, 52.163678], [-123.739966, 52.164094], [-123.740427, 52.164322], [-123.741209, 52.164333], [-123.742087, 52.164211], [-123.742412, 52.164303], [-123.742523, 52.164517], [-123.742404, 52.164964], [-123.742063, 52.165515], [-123.742158, 52.165772], [-123.742687, 52.166286], [-123.742698, 52.166467], [-123.742458, 52.166793], [-123.742592, 52.167021], [-123.743254, 52.167053], [-123.74372, 52.166958], [-123.743856, 52.166806], [-123.743921, 52.166395], [-123.744414, 52.166199], [-123.74471, 52.166328], [-123.745046, 52.166808], [-123.745646, 52.166981], [-123.746124, 52.166967], [-123.746243, 52.16671], [-123.74604, 52.166179], [-123.746346, 52.166025], [-123.747306, 52.166038], [-123.74757, 52.166261], [-123.747435, 52.166504], [-123.746635, 52.166894], [-123.746654, 52.167354], [-123.747105, 52.167498], [-123.74754, 52.167501], [-123.74806, 52.167032], [-123.748372, 52.166932], [-123.74877, 52.166964], [-123.749478, 52.16729], [-123.750609, 52.167347], [-123.751014, 52.167116], [-123.750897, 52.166566], [-123.751044, 52.166401], [-123.751741, 52.166133], [-123.751946, 52.165914], [-123.751675, 52.165593], [-123.751118, 52.165374], [-123.750897, 52.165202], [-123.750896, 52.164864], [-123.751331, 52.164649], [-123.751677, 52.164639], [-123.752182, 52.164799], [-123.752725, 52.165235], [-123.753305, 52.16538], [-123.753863, 52.165292], [-123.754064, 52.164935], [-123.754519, 52.164703], [-123.755074, 52.164597], [-123.755556, 52.164661], [-123.75584, 52.16482], [-123.755191, 52.165404], [-123.75509, 52.165827], [-123.755172, 52.165965], [-123.755472, 52.166119], [-123.755926, 52.166102], [-123.756332, 52.165764], [-123.756743, 52.165682], [-123.757227, 52.165873], [-123.757617, 52.166179], [-123.757976, 52.166331], [-123.758833, 52.166476], [-123.759716, 52.166474], [-123.760068, 52.166534], [-123.760264, 52.166751], [-123.760231, 52.167197], [-123.760364, 52.167569], [-123.760682, 52.16771], [-123.76167, 52.167751], [-123.761857, 52.16766], [-123.761594, 52.167008], [-123.761631, 52.166669], [-123.761995, 52.166545], [-123.762517, 52.166508], [-123.763076, 52.16679], [-123.763542, 52.167236], [-123.764437, 52.167543], [-123.76468, 52.16773], [-123.764791, 52.167973], [-123.764543, 52.168418], [-123.764909, 52.169022], [-123.765209, 52.169117], [-123.766159, 52.169093], [-123.76649, 52.169288], [-123.766502, 52.170004], [-123.767462, 52.170526], [-123.767742, 52.17078], [-123.767465, 52.171272], [-123.76661, 52.171387], [-123.766357, 52.171504], [-123.766504, 52.171682], [-123.767645, 52.172059], [-123.768277, 52.171894], [-123.768728, 52.17197], [-123.768861, 52.17238], [-123.768986, 52.172473], [-123.771746, 52.17252], [-123.772822, 52.172621], [-123.773201, 52.172505], [-123.773595, 52.17248], [-123.773867, 52.172661], [-123.773877, 52.172808], [-123.773708, 52.172967], [-123.773734, 52.173276], [-123.774062, 52.173313], [-123.774441, 52.173056], [-123.774727, 52.172977], [-123.775024, 52.173206], [-123.775103, 52.17366], [-123.775299, 52.173756], [-123.775639, 52.173734], [-123.77717, 52.17334], [-123.777573, 52.173284], [-123.777999, 52.173337], [-123.778223, 52.173455], [-123.777797, 52.174152], [-123.777584, 52.175076], [-123.777797, 52.175233], [-123.778596, 52.175543], [-123.778911, 52.175903], [-123.778538, 52.17611], [-123.778, 52.176195], [-123.778032, 52.176415], [-123.778419, 52.176675], [-123.779404, 52.176776], [-123.779713, 52.177047], [-123.779739, 52.177463], [-123.778955, 52.177864], [-123.778918, 52.178048], [-123.779191, 52.178249], [-123.77989, 52.178507], [-123.780426, 52.178864], [-123.780623, 52.1789], [-123.781376, 52.178726], [-123.781626, 52.178839], [-123.781637, 52.179346], [-123.781937, 52.179821], [-123.781965, 52.18015], [-123.781638, 52.180435], [-123.781237, 52.180556], [-123.781079, 52.181346], [-123.781149, 52.181437], [-123.782153, 52.181884], [-123.783199, 52.182203], [-123.785514, 52.18248], [-123.786286, 52.183043], [-123.786372, 52.183358], [-123.786274, 52.183708], [-123.786514, 52.184095], [-123.787445, 52.184141], [-123.787946, 52.184449], [-123.788115, 52.184902], [-123.787663, 52.185588], [-123.787814, 52.185817], [-123.788004, 52.185896], [-123.788324, 52.185897], [-123.78859, 52.185812], [-123.789484, 52.185269], [-123.790144, 52.185175], [-123.795531, 52.185884], [-123.796277, 52.18605], [-123.797139, 52.186068], [-123.797643, 52.185995], [-123.798277, 52.185747], [-123.799165, 52.185547], [-123.800971, 52.185352], [-123.803015, 52.184622], [-123.803865, 52.184181], [-123.804059, 52.183755], [-123.80401, 52.1834], [-123.803451, 52.182275], [-123.80327, 52.182056], [-123.802724, 52.181723], [-123.802524, 52.181422], [-123.802575, 52.180882], [-123.802865, 52.180712], [-123.80423, 52.180451], [-123.806367, 52.180185], [-123.806926, 52.180178], [-123.810772, 52.18041], [-123.811664, 52.180769], [-123.813878, 52.182158], [-123.814597, 52.182355], [-123.815215, 52.182311], [-123.816057, 52.181731], [-123.816629, 52.181575], [-123.818262, 52.181724], [-123.819956, 52.182292], [-123.820806, 52.182438], [-123.824371, 52.182361], [-123.82496, 52.18209], [-123.825478, 52.181492], [-123.825843, 52.181418], [-123.82645, 52.181499], [-123.827909, 52.181972], [-123.830234, 52.182885], [-123.831488, 52.18349], [-123.832203, 52.184003], [-123.833161, 52.185033], [-123.83361, 52.185897], [-123.834559, 52.187082], [-123.836315, 52.188211], [-123.837303, 52.189331], [-123.837369, 52.189777], [-123.837072, 52.190858], [-123.836935, 52.191985], [-123.837119, 52.192497], [-123.837056, 52.193492], [-123.838216, 52.194797], [-123.838543, 52.195558], [-123.839057, 52.195874], [-123.839953, 52.196119], [-123.840355, 52.196422], [-123.840363, 52.196624], [-123.840203, 52.196824], [-123.839758, 52.197108], [-123.839325, 52.197193], [-123.83833, 52.1972], [-123.838123, 52.197268], [-123.837935, 52.197457], [-123.837896, 52.197796], [-123.83841, 52.19837], [-123.838475, 52.198611], [-123.838181, 52.199159], [-123.838129, 52.199589], [-123.838541, 52.199896], [-123.839233, 52.199887], [-123.839685, 52.199967], [-123.840096, 52.200192], [-123.840624, 52.200655], [-123.840994, 52.201219], [-123.841195, 52.202498], [-123.842301, 52.204507], [-123.842656, 52.20486], [-123.843027, 52.205028], [-123.84407, 52.205083], [-123.844394, 52.205281], [-123.844865, 52.206208], [-123.84513, 52.206448], [-123.846171, 52.20672], [-123.846469, 52.206901], [-123.845742, 52.207938], [-123.845566, 52.208918], [-123.84564, 52.209164], [-123.846045, 52.209368], [-123.846453, 52.209428], [-123.84672, 52.209408], [-123.84751, 52.209107], [-123.847847, 52.209122], [-123.848025, 52.209197], [-123.848261, 52.209488], [-123.848332, 52.209805], [-123.847958, 52.210616], [-123.848368, 52.210989], [-123.848497, 52.211563], [-123.84845, 52.212053], [-123.848175, 52.212581], [-123.846804, 52.214246], [-123.846723, 52.214757], [-123.846984, 52.215068], [-123.847729, 52.21571], [-123.848744, 52.217104], [-123.849311, 52.218144], [-123.849831, 52.218772], [-123.850141, 52.218936], [-123.850382, 52.218951], [-123.850868, 52.218844], [-123.850974, 52.21804], [-123.851272, 52.217732], [-123.8522, 52.217476], [-123.853072, 52.217398], [-123.853748, 52.217428], [-123.854645, 52.21757], [-123.855192, 52.217876], [-123.855462, 52.218247], [-123.855828, 52.219339], [-123.856334, 52.220411], [-123.856593, 52.220625], [-123.857754, 52.220994], [-123.858349, 52.221293], [-123.85875, 52.221672], [-123.858899, 52.223663], [-123.858724, 52.227146], [-123.859504, 52.227764], [-123.859523, 52.229236], [-123.860356, 52.230032], [-123.861729, 52.231847], [-123.862275, 52.232143], [-123.863473, 52.23247], [-123.865305, 52.234173], [-123.867109, 52.235185], [-123.869158, 52.236991], [-123.870071, 52.237596], [-123.872395, 52.238691], [-123.873381, 52.239227], [-123.875159, 52.240919], [-123.876412, 52.241864], [-123.877669, 52.242363], [-123.878501, 52.242394], [-123.879337, 52.242638], [-123.879772, 52.242945], [-123.879771, 52.243197], [-123.879389, 52.243605], [-123.879508, 52.243956], [-123.879818, 52.244201], [-123.880361, 52.244415], [-123.881814, 52.244491], [-123.882469, 52.244668], [-123.882766, 52.244644], [-123.882977, 52.244539], [-123.883285, 52.244016], [-123.883054, 52.24368], [-123.883212, 52.243304], [-123.884618, 52.242967], [-123.885418, 52.242922], [-123.885531, 52.242974], [-123.886235, 52.243707], [-123.886263, 52.24407], [-123.886002, 52.244396], [-123.885127, 52.244331], [-123.88402, 52.244483], [-123.883727, 52.244663], [-123.884001, 52.245274], [-123.884768, 52.245621], [-123.885061, 52.245838], [-123.885289, 52.246358], [-123.885307, 52.24683], [-123.885023, 52.247914], [-123.885228, 52.248228], [-123.885555, 52.248474], [-123.886075, 52.248276], [-123.886556, 52.24783], [-123.8872, 52.247684], [-123.887975, 52.247688], [-123.888418, 52.247827], [-123.888637, 52.248014], [-123.888465, 52.248656], [-123.888607, 52.248955], [-123.889206, 52.249356], [-123.890161, 52.24979], [-123.891092, 52.250533], [-123.891659, 52.25077], [-123.891875, 52.25107], [-123.891998, 52.25171], [-123.89232, 52.252077], [-123.893151, 52.25358], [-123.893073, 52.254405], [-123.893184, 52.254782], [-123.893585, 52.255407], [-123.893925, 52.256196], [-123.894769, 52.259103], [-123.894587, 52.26125], [-123.894265, 52.262655], [-123.895045, 52.262821], [-123.895728, 52.262718], [-123.897186, 52.262849], [-123.89853, 52.263247], [-123.898966, 52.263489], [-123.899052, 52.26379], [-123.898456, 52.264936], [-123.898421, 52.265668], [-123.898561, 52.266571], [-123.898475, 52.266871], [-123.897403, 52.267372], [-123.897031, 52.268863], [-123.896001, 52.269541], [-123.895923, 52.269787], [-123.896361, 52.270391], [-123.897197, 52.270863], [-123.898699, 52.271132], [-123.899026, 52.271103], [-123.899484, 52.270924], [-123.90024, 52.270511], [-123.901465, 52.270072], [-123.90241, 52.269599], [-123.903315, 52.269408], [-123.905253, 52.269542], [-123.905922, 52.269757], [-123.906838, 52.27027], [-123.908339, 52.27068], [-123.908954, 52.270712], [-123.909991, 52.270598], [-123.910455, 52.270669], [-123.910839, 52.270915], [-123.910889, 52.271758], [-123.910738, 52.271985], [-123.909052, 52.272818], [-123.90878, 52.273151], [-123.908502, 52.27401], [-123.908461, 52.27452], [-123.908535, 52.274825], [-123.909103, 52.27546], [-123.909102, 52.276653], [-123.909848, 52.278609], [-123.910143, 52.279009], [-123.910802, 52.279584], [-123.911571, 52.27974], [-123.912431, 52.279723], [-123.913266, 52.279351], [-123.913729, 52.279365], [-123.914075, 52.279584], [-123.914235, 52.279852], [-123.914178, 52.280623], [-123.914365, 52.281137], [-123.914993, 52.281528], [-123.915456, 52.281622], [-123.917591, 52.281207], [-123.918347, 52.281273], [-123.918686, 52.281487], [-123.919078, 52.281923], [-123.919193, 52.282713], [-123.919386, 52.283152], [-123.919778, 52.283623], [-123.921062, 52.283945], [-123.922451, 52.284746], [-123.923664, 52.284942], [-123.924281, 52.284972], [-123.924673, 52.284901], [-123.924977, 52.284673], [-123.925406, 52.284183], [-123.925619, 52.283643], [-123.926318, 52.283441], [-123.926821, 52.283602], [-123.927264, 52.283853], [-123.928355, 52.285045], [-123.930174, 52.285068], [-123.931394, 52.285503], [-123.931696, 52.285746], [-123.931881, 52.286339], [-123.932941, 52.28708], [-123.933579, 52.287647], [-123.933715, 52.28803], [-123.93324, 52.288425], [-123.933238, 52.288902], [-123.93414, 52.290393], [-123.936695, 52.29134], [-123.937534, 52.291525], [-123.937782, 52.291646], [-123.938073, 52.291992], [-123.938043, 52.292331], [-123.937175, 52.292572], [-123.936534, 52.292686], [-123.936371, 52.292923], [-123.936973, 52.293458], [-123.9371, 52.294069], [-123.937556, 52.29456], [-123.939079, 52.294883], [-123.939757, 52.295352], [-123.939834, 52.295989], [-123.940028, 52.296214], [-123.940624, 52.296531], [-123.940622, 52.297049], [-123.940908, 52.298361], [-123.940863, 52.298649], [-123.940654, 52.298924], [-123.940295, 52.299133], [-123.94011, 52.299509], [-123.939737, 52.301066], [-123.93978, 52.301187], [-123.940079, 52.301368], [-123.940891, 52.301561], [-123.944765, 52.301732], [-123.945601, 52.301936], [-123.946501, 52.302305], [-123.947648, 52.303167], [-123.949643, 52.304162], [-123.951241, 52.304813], [-123.952913, 52.305298], [-123.95511, 52.306538], [-123.955229, 52.306666], [-123.954967, 52.307589], [-123.955833, 52.308757], [-123.956278, 52.309121], [-123.957332, 52.309694], [-123.959019, 52.310231], [-123.961128, 52.310601], [-123.963677, 52.310837], [-123.964484, 52.310824], [-123.967275, 52.310077], [-123.96793, 52.310075], [-123.968435, 52.310221], [-123.969127, 52.31073], [-123.969913, 52.311545], [-123.97104, 52.312277], [-123.972168, 52.31259], [-123.973011, 52.313099], [-123.97425, 52.31371], [-123.975189, 52.314018], [-123.976785, 52.314194], [-123.977953, 52.314083], [-123.978396, 52.314112], [-123.980345, 52.314375], [-123.9808, 52.314741], [-123.981529, 52.31488], [-123.982941, 52.314853], [-123.984953, 52.315164], [-123.986816, 52.315126], [-123.9875, 52.315165], [-123.99098, 52.315536], [-123.992219, 52.315443], [-123.99394, 52.315123], [-123.994805, 52.31512], [-123.995816, 52.315335], [-123.996403, 52.3156], [-123.996631, 52.315999], [-123.996571, 52.316806], [-123.996191, 52.317674], [-123.996191, 52.317943], [-123.996402, 52.318143], [-123.997288, 52.318235], [-123.997624, 52.318462], [-123.997834, 52.319176], [-123.997612, 52.319583], [-123.996139, 52.321133], [-123.99583, 52.322306], [-123.996179, 52.323973], [-123.996111, 52.325101], [-123.996367, 52.325566], [-123.997176, 52.32616], [-123.997472, 52.326613], [-123.997323, 52.326919], [-123.99652, 52.327404], [-123.996297, 52.327631], [-123.996195, 52.328116], [-123.996336, 52.328362], [-123.996702, 52.328668], [-123.99805, 52.32951], [-123.997041, 52.341724], [-123.996988, 52.352097], [-123.99726, 52.367309], [-123.997903, 52.388359], [-123.998202, 52.409145], [-123.998258, 52.418856], [-123.999343, 52.449958], [-123.999411, 52.501378], [-123.997431, 52.501379], [-123.997872, 52.557661], [-123.997948, 52.594607], [-123.996765, 52.666254], [-123.994348, 52.694421], [-123.994507, 52.694491], [-123.994579, 52.695694], [-123.994416, 52.695741], [-123.994076, 52.69569], [-123.993828, 52.695881], [-123.994445, 52.696928], [-123.994527, 52.698202], [-123.995038, 52.69921], [-123.993779, 52.700471], [-123.993782, 52.701711], [-123.996558, 52.705497], [-123.996518, 52.705876], [-123.996886, 52.706033], [-123.997507, 52.706027], [-123.998377, 52.705903], [-123.998395, 52.705993], [-123.998029, 52.706211], [-123.998061, 52.706283], [-123.99899, 52.706185], [-123.999509, 52.706208], [-123.999588, 52.706369], [-123.999519, 52.706585], [-123.999697, 52.706646], [-123.999911, 52.706897], [-124.0003, 52.707109], [-124.000316, 52.707172], [-124.000184, 52.707209], [-123.999768, 52.707168], [-123.99933, 52.707396], [-123.999317, 52.70746], [-123.999437, 52.707521], [-123.999939, 52.707508], [-124.0, 52.707831], [-124.000384, 52.708187], [-124.000938, 52.708434], [-124.000706, 52.708662], [-124.001034, 52.708793], [-124.001717, 52.708877], [-124.001776, 52.708922], [-124.00159, 52.709149], [-124.001873, 52.709209], [-124.002099, 52.709341], [-124.002239, 52.709691], [-124.00205, 52.709801], [-124.002801, 52.71028], [-124.002773, 52.710406], [-124.002301, 52.710436], [-124.002259, 52.710527], [-124.002303, 52.71058], [-124.002867, 52.710611], [-124.003201, 52.710986], [-124.002773, 52.71099], [-124.00285, 52.711197], [-124.002617, 52.711269], [-124.002549, 52.711586], [-124.002777, 52.711853], [-124.002718, 52.711899], [-124.001707, 52.711664], [-124.001634, 52.711701], [-124.001679, 52.711791], [-124.002128, 52.711895], [-124.002099, 52.711957], [-124.001761, 52.712104], [-124.001231, 52.712225], [-124.001174, 52.712308], [-124.00128, 52.712415], [-124.001729, 52.71259], [-124.001935, 52.712607], [-124.002259, 52.712469], [-124.002462, 52.712278], [-124.002536, 52.712305], [-124.002497, 52.712538], [-124.002571, 52.712593], [-124.002798, 52.712509], [-124.00317, 52.864004], [-124.002773, 52.863849], [-124.002357, 52.863852], [-124.001868, 52.863946], [-124.001795, 52.864029], [-124.002124, 52.864762], [-124.001879, 52.86508], [-124.002084, 52.865608], [-124.002055, 52.866238], [-124.001648, 52.866592], [-124.001204, 52.866703], [-124.001078, 52.867001], [-124.000779, 52.867004], [-124.000473, 52.866557], [-124.000352, 52.866521], [-124.000102, 52.866578], [-124.0, 52.867072], [-124.000283, 52.867394], [-124.000278, 52.867717], [-124.0, 52.867783], [-123.999668, 52.867715], [-123.999476, 52.86785], [-123.999313, 52.867861], [-123.999162, 52.8677], [-123.998983, 52.86772], [-123.998899, 52.8679], [-123.99904, 52.868177], [-123.999028, 52.868348], [-123.998841, 52.868593], [-123.998059, 52.868834], [-123.997612, 52.868739], [-123.997404, 52.868749], [-123.996874, 52.868951], [-123.996777, 52.869257], [-123.99666, 52.869348], [-123.996157, 52.869442], [-123.996129, 52.869515], [-123.996264, 52.869622], [-123.996774, 52.869797], [-123.996883, 52.870003], [-123.996794, 52.870084], [-123.99641, 52.870151], [-123.995989, 52.869956], [-123.995692, 52.869951], [-123.995517, 52.87005], [-123.995419, 52.870302], [-123.994769, 52.870506], [-123.994561, 52.870517], [-123.994156, 52.870349], [-123.994164, 52.871057], [-123.995247, 52.877608], [-123.99847, 52.971136], [-124.000712, 53.000648], [-124.250564, 53.000285], [-124.50001, 52.999925], [-124.541678, 52.999907], [-124.75017, 52.999985], [-124.906875, 53.000143], [-125.000335, 53.000282], [-125.137167, 53.00056], [-125.189076, 53.000709], [-125.251087, 53.000661], [-125.456176, 53.000729], [-125.750806, 53.000395], [-126.000386, 53.000164], [-126.087737, 53.000131], [-126.249703, 53.000087], [-126.300554, 53.000115]], [[-125.411514, 52.912879], [-125.41128, 52.927588], [-125.399623, 52.927822], [-125.399843, 52.915907], [-125.399826, 52.912994], [-125.411514, 52.912879]], [[-125.147645, 52.980975], [-125.141329, 52.980887], [-125.141378, 52.973542], [-125.147692, 52.973631], [-125.147645, 52.980975]], [[-125.153379, 52.973604], [-125.153369, 52.966739], [-125.165642, 52.966544], [-125.166006, 52.970417], [-125.165738, 52.973765], [-125.153379, 52.973604]], [[-125.344923, 52.49503], [-125.343919, 52.495841], [-125.343398, 52.496004], [-125.343055, 52.495912], [-125.343003, 52.495778], [-125.343302, 52.495332], [-125.344054, 52.49476], [-125.344119, 52.494318], [-125.344623, 52.493858], [-125.344866, 52.493422], [-125.344843, 52.49326], [-125.344682, 52.493012], [-125.343848, 52.492542], [-125.343017, 52.492172], [-125.342842, 52.491933], [-125.342802, 52.49144], [-125.342674, 52.49128], [-125.341988, 52.491105], [-125.341429, 52.491117], [-125.341124, 52.491193], [-125.340896, 52.491352], [-125.340704, 52.491616], [-125.340689, 52.491904], [-125.340963, 52.492349], [-125.341382, 52.493432], [-125.315406, 52.493132], [-125.311956, 52.493478], [-125.305407, 52.493239], [-125.305454, 52.486038], [-125.281353, 52.486261], [-125.28059, 52.472572], [-125.292089, 52.47176], [-125.304302, 52.471111], [-125.304554, 52.464342], [-125.304979, 52.463901], [-125.31584, 52.463575], [-125.316937, 52.478911], [-125.317341, 52.479019], [-125.31793, 52.479331], [-125.318114, 52.479266], [-125.318263, 52.481285], [-125.316971, 52.481787], [-125.316632, 52.481802], [-125.316305, 52.481737], [-125.31553, 52.481546], [-125.314654, 52.481167], [-125.313596, 52.480918], [-125.312922, 52.480409], [-125.309671, 52.479079], [-125.308998, 52.478885], [-125.307856, 52.478737], [-125.307096, 52.478554], [-125.306684, 52.478571], [-125.305867, 52.478713], [-125.305321, 52.478715], [-125.304901, 52.47938], [-125.304916, 52.479703], [-125.305115, 52.479843], [-125.305611, 52.48004], [-125.305936, 52.480294], [-125.307724, 52.481294], [-125.309584, 52.48222], [-125.311447, 52.482651], [-125.312199, 52.482627], [-125.313188, 52.482392], [-125.313718, 52.482409], [-125.314588, 52.482715], [-125.315097, 52.483137], [-125.315425, 52.483221], [-125.316473, 52.483236], [-125.316801, 52.483338], [-125.317149, 52.483493], [-125.317957, 52.484034], [-125.318559, 52.484256], [-125.319091, 52.484282], [-125.31941, 52.484231], [-125.322749, 52.483275], [-125.323696, 52.483094], [-125.324358, 52.483081], [-125.325459, 52.483293], [-125.32587, 52.483258], [-125.32667, 52.483063], [-125.327215, 52.483078], [-125.328935, 52.483548], [-125.329589, 52.48341], [-125.330786, 52.482927], [-125.332068, 52.482912], [-125.332903, 52.48312], [-125.333223, 52.48332], [-125.333385, 52.483614], [-125.333381, 52.483785], [-125.333199, 52.484004], [-125.332782, 52.484184], [-125.330891, 52.484634], [-125.330489, 52.485074], [-125.330435, 52.485192], [-125.330692, 52.485601], [-125.330661, 52.48642], [-125.330846, 52.486559], [-125.333095, 52.487018], [-125.334599, 52.48706], [-125.335681, 52.487201], [-125.336518, 52.487418], [-125.336749, 52.487576], [-125.336962, 52.487985], [-125.337155, 52.488045], [-125.337866, 52.488084], [-125.338346, 52.488012], [-125.339148, 52.48813], [-125.340021, 52.488167], [-125.341242, 52.488431], [-125.342264, 52.488798], [-125.343143, 52.488744], [-125.343441, 52.488801], [-125.345205, 52.489549], [-125.345505, 52.489929], [-125.345769, 52.490463], [-125.345999, 52.490648], [-125.346552, 52.49078], [-125.347708, 52.49092], [-125.348591, 52.491154], [-125.349003, 52.491164], [-125.349513, 52.491072], [-125.349893, 52.491263], [-125.350604, 52.491339], [-125.351128, 52.491517], [-125.35121, 52.491678], [-125.35113, 52.491813], [-125.350565, 52.491726], [-125.350571, 52.492131], [-125.350329, 52.492279], [-125.348006, 52.49291], [-125.347154, 52.493223], [-125.346503, 52.493731], [-125.345962, 52.494362], [-125.344923, 52.49503]], [[-125.288179, 52.442902], [-125.288363, 52.453003], [-125.288319, 52.45716], [-125.264713, 52.457149], [-125.264436, 52.449983], [-125.264525, 52.442807], [-125.288179, 52.442902]], [[-125.15975, 52.357546], [-125.160402, 52.357695], [-125.161183, 52.358023], [-125.161714, 52.358399], [-125.161831, 52.358667], [-125.161727, 52.359235], [-125.16179, 52.35936], [-125.161986, 52.359456], [-125.161952, 52.359654], [-125.162092, 52.359958], [-125.160817, 52.360776], [-125.159516, 52.361387], [-125.158992, 52.361563], [-125.15847, 52.361559], [-125.158225, 52.361686], [-125.154787, 52.359936], [-125.154365, 52.359631], [-125.15405, 52.359254], [-125.153522, 52.357814], [-125.153229, 52.356853], [-125.153209, 52.356409], [-125.153458, 52.355643], [-125.154847, 52.353919], [-125.158086, 52.352535], [-125.157973, 52.35273], [-125.157213, 52.353095], [-125.157071, 52.353521], [-125.156411, 52.354153], [-125.156721, 52.354758], [-125.157557, 52.355372], [-125.157726, 52.355801], [-125.157201, 52.356476], [-125.15712, 52.356919], [-125.156789, 52.35706], [-125.156562, 52.357252], [-125.15607, 52.357405], [-125.155945, 52.357524], [-125.156832, 52.358263], [-125.157083, 52.358286], [-125.157351, 52.358057], [-125.157467, 52.358036], [-125.15815, 52.358185], [-125.158557, 52.358403], [-125.158821, 52.358407], [-125.159111, 52.35833], [-125.159168, 52.358256], [-125.159156, 52.35805], [-125.158989, 52.357927], [-125.159017, 52.357865], [-125.159531, 52.357594], [-125.15975, 52.357546]], [[-125.052997, 52.371624], [-125.053144, 52.386081], [-125.041153, 52.386294], [-125.04058, 52.379151], [-125.029153, 52.379546], [-125.028671, 52.371752], [-125.052997, 52.371624]], [[-125.107752, 52.280925], [-125.108766, 52.280864], [-125.110261, 52.280402], [-125.111339, 52.28104], [-125.113764, 52.281687], [-125.117291, 52.282066], [-125.118123, 52.281971], [-125.118776, 52.282722], [-125.130815, 52.282965], [-125.131442, 52.297392], [-125.120795, 52.297386], [-125.116265, 52.29746], [-125.107875, 52.29747], [-125.107245, 52.290912], [-125.107433, 52.287099], [-125.107223, 52.284995], [-125.106394, 52.2813], [-125.107752, 52.280925]], [[-124.289319, 52.482833], [-124.289245, 52.497376], [-124.277395, 52.497504], [-124.277344, 52.482825], [-124.289319, 52.482833]], [[-124.286317, 52.313144], [-124.286421, 52.320514], [-124.297974, 52.320417], [-124.297822, 52.324283], [-124.286533, 52.324318], [-124.286685, 52.32772], [-124.262824, 52.327993], [-124.262725, 52.320306], [-124.256716, 52.320349], [-124.256708, 52.313108], [-124.2508, 52.313227], [-124.250443, 52.306226], [-124.262568, 52.305956], [-124.263225, 52.313279], [-124.268342, 52.313169], [-124.26877, 52.320386], [-124.274824, 52.320203], [-124.274684, 52.313371], [-124.286317, 52.313144]], [[-124.245126, 52.313158], [-124.230702, 52.313324], [-124.209131, 52.313463], [-124.208901, 52.309386], [-124.208916, 52.306759], [-124.19749, 52.30666], [-124.197392, 52.298731], [-124.245095, 52.298321], [-124.245126, 52.313158]], [[-124.16829, 52.279458], [-124.168212, 52.289912], [-124.168032, 52.297477], [-124.161829, 52.297474], [-124.161424, 52.286494], [-124.15557, 52.286358], [-124.155814, 52.279497], [-124.16829, 52.279458]], [[-124.325495, 52.200135], [-124.325712, 52.20059], [-124.32598, 52.207957], [-124.296069, 52.208011], [-124.296077, 52.206389], [-124.29832, 52.20575], [-124.298885, 52.204796], [-124.298814, 52.203837], [-124.298213, 52.202833], [-124.297012, 52.202342], [-124.295723, 52.202344], [-124.295807, 52.200292], [-124.325495, 52.200135]], [[-124.321384, 52.173057], [-124.321349, 52.177167], [-124.308538, 52.177112], [-124.308544, 52.173223], [-124.321384, 52.173057]], [[-124.061701, 52.201885], [-124.062139, 52.201854], [-124.062622, 52.201894], [-124.063302, 52.202099], [-124.056955, 52.211378], [-124.05274, 52.211572], [-124.053816, 52.211288], [-124.054305, 52.210906], [-124.055018, 52.2101], [-124.056167, 52.208579], [-124.056473, 52.207901], [-124.05652, 52.207334], [-124.056414, 52.205987], [-124.056539, 52.205771], [-124.057433, 52.205151], [-124.05829, 52.204954], [-124.058336, 52.204361], [-124.058534, 52.204053], [-124.059467, 52.203317], [-124.059933, 52.203186], [-124.060293, 52.203003], [-124.059979, 52.2027], [-124.059498, 52.202812], [-124.059191, 52.202177], [-124.060037, 52.202043], [-124.06036, 52.202059], [-124.060671, 52.202217], [-124.061241, 52.20224], [-124.061384, 52.202139], [-124.061455, 52.201959], [-124.061701, 52.201885]], [[-123.96689, 52.156532], [-123.937889, 52.156167], [-123.937171, 52.14578], [-123.93784, 52.13509], [-123.948501, 52.135027], [-123.959243, 52.135084], [-123.959628, 52.131407], [-123.982988, 52.130913], [-123.982333, 52.138506], [-123.967632, 52.138775], [-123.967793, 52.139258], [-123.966997, 52.143124], [-123.96689, 52.156532]], [[-123.916864, 52.150296], [-123.914395, 52.151557], [-123.912851, 52.150218], [-123.913269, 52.149946], [-123.913906, 52.149742], [-123.914397, 52.149415], [-123.914861, 52.149195], [-123.915002, 52.149006], [-123.915048, 52.148582], [-123.916864, 52.150296]], [[-124.123258, 51.414589], [-124.124102, 51.415544], [-124.124238, 51.415821], [-124.124954, 51.416264], [-124.125476, 51.416502], [-124.125712, 51.416716], [-124.126409, 51.416961], [-124.127905, 51.417629], [-124.128972, 51.418302], [-124.129698, 51.418539], [-124.132242, 51.419061], [-124.133247, 51.419618], [-124.134384, 51.420768], [-124.135203, 51.421884], [-124.135308, 51.422089], [-124.135329, 51.422396], [-124.135735, 51.423039], [-124.13582, 51.423559], [-124.136154, 51.424303], [-124.136188, 51.424545], [-124.136441, 51.424867], [-124.137183, 51.425174], [-124.13977, 51.425742], [-124.140721, 51.426291], [-124.142045, 51.427785], [-124.09766, 51.428327], [-124.061717, 51.428656], [-124.056154, 51.428825], [-124.056258, 51.436649], [-124.056099, 51.444614], [-124.056223, 51.446445], [-124.050307, 51.446501], [-124.044412, 51.446487], [-124.043842, 51.4379], [-124.043394, 51.429001], [-124.044749, 51.428991], [-124.044893, 51.424969], [-124.056303, 51.424817], [-124.063497, 51.424652], [-124.063069, 51.420772], [-124.062778, 51.41915], [-124.062071, 51.413931], [-124.064688, 51.413777], [-124.078725, 51.414124], [-124.078914, 51.420265], [-124.086559, 51.420088], [-124.085667, 51.411195], [-124.104904, 51.411104], [-124.107427, 51.411032], [-124.107479, 51.409393], [-124.119758, 51.408571], [-124.121538, 51.408648], [-124.121302, 51.409267], [-124.120884, 51.409847], [-124.120488, 51.410713], [-124.120507, 51.411505], [-124.120641, 51.412241], [-124.121149, 51.413], [-124.121835, 51.413443], [-124.123258, 51.414589]], [[-123.947448, 51.475364], [-123.924293, 51.475281], [-123.924294, 51.461148], [-123.941843, 51.461194], [-123.947447, 51.461156], [-123.947448, 51.475364]], [[-123.856987, 51.487476], [-123.857153, 51.488403], [-123.834157, 51.489362], [-123.833607, 51.485997], [-123.830935, 51.475044], [-123.830906, 51.4739], [-123.84495, 51.473489], [-123.845599, 51.47342], [-123.846103, 51.476076], [-123.845532, 51.476081], [-123.845317, 51.476145], [-123.844962, 51.476409], [-123.844345, 51.477312], [-123.84411, 51.478492], [-123.84409, 51.479058], [-123.844217, 51.479723], [-123.844626, 51.480844], [-123.845148, 51.481757], [-123.845471, 51.482106], [-123.845704, 51.482239], [-123.848168, 51.482275], [-123.849518, 51.482148], [-123.852253, 51.48202], [-123.853317, 51.481923], [-123.855051, 51.481497], [-123.855612, 51.481412], [-123.85654, 51.481432], [-123.856987, 51.487476]]]]}, "properties": {"name": "Cariboo J", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo J", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941039", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.547457, 52.501826], [-123.549528, 52.501779], [-123.691781, 52.50193], [-123.765985, 52.501733], [-123.807481, 52.501739], [-123.997431, 52.501313], [-123.997431, 52.501379], [-123.999411, 52.501378], [-123.999343, 52.449958], [-123.998258, 52.418856], [-123.998202, 52.409145], [-123.997903, 52.388359], [-123.99726, 52.367309], [-123.996988, 52.352097], [-123.997041, 52.341724], [-123.99805, 52.32951], [-123.996702, 52.328668], [-123.996336, 52.328362], [-123.996195, 52.328116], [-123.996297, 52.327631], [-123.99652, 52.327404], [-123.997323, 52.326919], [-123.997472, 52.326613], [-123.997176, 52.32616], [-123.996367, 52.325566], [-123.996111, 52.325101], [-123.996179, 52.323973], [-123.99583, 52.322306], [-123.996139, 52.321133], [-123.997612, 52.319583], [-123.997834, 52.319176], [-123.997624, 52.318462], [-123.997288, 52.318235], [-123.996402, 52.318143], [-123.996191, 52.317943], [-123.996191, 52.317674], [-123.996571, 52.316806], [-123.996641, 52.316355], [-123.996631, 52.315999], [-123.996403, 52.3156], [-123.995816, 52.315335], [-123.994805, 52.31512], [-123.99394, 52.315123], [-123.992219, 52.315443], [-123.99098, 52.315536], [-123.9875, 52.315165], [-123.986816, 52.315126], [-123.984953, 52.315164], [-123.982941, 52.314853], [-123.981529, 52.31488], [-123.9808, 52.314741], [-123.980345, 52.314375], [-123.978396, 52.314112], [-123.977953, 52.314083], [-123.976785, 52.314194], [-123.975189, 52.314018], [-123.97425, 52.31371], [-123.973011, 52.313099], [-123.972168, 52.31259], [-123.97104, 52.312277], [-123.969913, 52.311545], [-123.969127, 52.31073], [-123.968435, 52.310221], [-123.96793, 52.310075], [-123.967275, 52.310077], [-123.964484, 52.310824], [-123.963677, 52.310837], [-123.961128, 52.310601], [-123.959019, 52.310231], [-123.957332, 52.309694], [-123.956278, 52.309121], [-123.955833, 52.308757], [-123.954967, 52.307589], [-123.955229, 52.306666], [-123.95511, 52.306538], [-123.952913, 52.305298], [-123.951241, 52.304813], [-123.949643, 52.304162], [-123.947648, 52.303167], [-123.946501, 52.302305], [-123.945601, 52.301936], [-123.944765, 52.301732], [-123.940891, 52.301561], [-123.940079, 52.301368], [-123.93978, 52.301187], [-123.939737, 52.301066], [-123.94011, 52.299509], [-123.940295, 52.299133], [-123.940654, 52.298924], [-123.940863, 52.298649], [-123.940908, 52.298361], [-123.940622, 52.297049], [-123.940624, 52.296531], [-123.940028, 52.296214], [-123.939834, 52.295989], [-123.939757, 52.295352], [-123.939079, 52.294883], [-123.937556, 52.29456], [-123.9371, 52.294069], [-123.936973, 52.293458], [-123.936371, 52.292923], [-123.936534, 52.292686], [-123.937175, 52.292572], [-123.938043, 52.292331], [-123.938073, 52.291992], [-123.937782, 52.291646], [-123.937534, 52.291525], [-123.936695, 52.29134], [-123.93414, 52.290393], [-123.933238, 52.288902], [-123.93324, 52.288425], [-123.933715, 52.28803], [-123.933579, 52.287647], [-123.932941, 52.28708], [-123.931881, 52.286339], [-123.931696, 52.285746], [-123.931394, 52.285503], [-123.930174, 52.285068], [-123.928355, 52.285045], [-123.927264, 52.283853], [-123.926821, 52.283602], [-123.926318, 52.283441], [-123.925619, 52.283643], [-123.925406, 52.284183], [-123.924977, 52.284673], [-123.924673, 52.284901], [-123.924281, 52.284972], [-123.923664, 52.284942], [-123.922451, 52.284746], [-123.921062, 52.283945], [-123.919778, 52.283623], [-123.919386, 52.283152], [-123.919193, 52.282713], [-123.919078, 52.281923], [-123.918686, 52.281487], [-123.918347, 52.281273], [-123.917591, 52.281207], [-123.915456, 52.281622], [-123.914993, 52.281528], [-123.914365, 52.281137], [-123.914178, 52.280623], [-123.914235, 52.279852], [-123.914075, 52.279584], [-123.913729, 52.279365], [-123.913266, 52.279351], [-123.912431, 52.279723], [-123.911571, 52.27974], [-123.910802, 52.279584], [-123.910143, 52.279009], [-123.909848, 52.278609], [-123.909102, 52.276653], [-123.909103, 52.27546], [-123.908535, 52.274825], [-123.908461, 52.27452], [-123.908502, 52.27401], [-123.90878, 52.273151], [-123.909052, 52.272818], [-123.910738, 52.271985], [-123.910889, 52.271758], [-123.910839, 52.270915], [-123.910455, 52.270669], [-123.909991, 52.270598], [-123.908954, 52.270712], [-123.908339, 52.27068], [-123.906838, 52.27027], [-123.905922, 52.269757], [-123.905253, 52.269542], [-123.903315, 52.269408], [-123.90241, 52.269599], [-123.901465, 52.270072], [-123.90024, 52.270511], [-123.899484, 52.270924], [-123.899026, 52.271103], [-123.898699, 52.271132], [-123.897197, 52.270863], [-123.896361, 52.270391], [-123.895923, 52.269787], [-123.896001, 52.269541], [-123.897031, 52.268863], [-123.897403, 52.267372], [-123.898475, 52.266871], [-123.898561, 52.266571], [-123.898421, 52.265668], [-123.898456, 52.264936], [-123.899052, 52.26379], [-123.898966, 52.263489], [-123.89853, 52.263247], [-123.897186, 52.262849], [-123.895728, 52.262718], [-123.895045, 52.262821], [-123.894265, 52.262655], [-123.894587, 52.26125], [-123.894769, 52.259103], [-123.893925, 52.256196], [-123.893585, 52.255407], [-123.893184, 52.254782], [-123.893073, 52.254405], [-123.893151, 52.25358], [-123.89232, 52.252077], [-123.891998, 52.25171], [-123.891875, 52.25107], [-123.891659, 52.25077], [-123.891092, 52.250533], [-123.890161, 52.24979], [-123.889206, 52.249356], [-123.888607, 52.248955], [-123.888465, 52.248656], [-123.888637, 52.248014], [-123.888418, 52.247827], [-123.887975, 52.247688], [-123.8872, 52.247684], [-123.886556, 52.24783], [-123.886075, 52.248276], [-123.885555, 52.248474], [-123.885228, 52.248228], [-123.885023, 52.247914], [-123.885307, 52.24683], [-123.885289, 52.246358], [-123.885061, 52.245838], [-123.884768, 52.245621], [-123.884001, 52.245274], [-123.883727, 52.244663], [-123.88402, 52.244483], [-123.885127, 52.244331], [-123.886002, 52.244396], [-123.886263, 52.24407], [-123.886235, 52.243707], [-123.885531, 52.242974], [-123.885418, 52.242922], [-123.884618, 52.242967], [-123.883212, 52.243304], [-123.883054, 52.24368], [-123.883285, 52.244016], [-123.882977, 52.244539], [-123.882766, 52.244644], [-123.882469, 52.244668], [-123.881814, 52.244491], [-123.880361, 52.244415], [-123.879818, 52.244201], [-123.879508, 52.243956], [-123.879389, 52.243605], [-123.879771, 52.243197], [-123.879772, 52.242945], [-123.879337, 52.242638], [-123.878501, 52.242394], [-123.877669, 52.242363], [-123.876412, 52.241864], [-123.875159, 52.240919], [-123.873381, 52.239227], [-123.872395, 52.238691], [-123.870071, 52.237596], [-123.869158, 52.236991], [-123.867109, 52.235185], [-123.865305, 52.234173], [-123.863473, 52.23247], [-123.862275, 52.232143], [-123.861729, 52.231847], [-123.860356, 52.230032], [-123.859523, 52.229236], [-123.859504, 52.227764], [-123.858724, 52.227146], [-123.858899, 52.223663], [-123.85875, 52.221672], [-123.858349, 52.221293], [-123.857754, 52.220994], [-123.856593, 52.220625], [-123.856334, 52.220411], [-123.855828, 52.219339], [-123.855462, 52.218247], [-123.855192, 52.217876], [-123.854645, 52.21757], [-123.853748, 52.217428], [-123.853072, 52.217398], [-123.8522, 52.217476], [-123.851272, 52.217732], [-123.850974, 52.21804], [-123.850868, 52.218844], [-123.850382, 52.218951], [-123.850141, 52.218936], [-123.849831, 52.218772], [-123.849311, 52.218144], [-123.848744, 52.217104], [-123.847729, 52.21571], [-123.846984, 52.215068], [-123.846723, 52.214757], [-123.846804, 52.214246], [-123.848175, 52.212581], [-123.84845, 52.212053], [-123.848497, 52.211563], [-123.848368, 52.210989], [-123.847958, 52.210616], [-123.848332, 52.209805], [-123.848261, 52.209488], [-123.848025, 52.209197], [-123.847847, 52.209122], [-123.84751, 52.209107], [-123.84672, 52.209408], [-123.846453, 52.209428], [-123.846045, 52.209368], [-123.84564, 52.209164], [-123.845566, 52.208918], [-123.845742, 52.207938], [-123.846469, 52.206901], [-123.846171, 52.20672], [-123.84513, 52.206448], [-123.844865, 52.206208], [-123.844394, 52.205281], [-123.84407, 52.205083], [-123.843027, 52.205028], [-123.842656, 52.20486], [-123.842301, 52.204507], [-123.841195, 52.202498], [-123.840994, 52.201219], [-123.840624, 52.200655], [-123.840096, 52.200192], [-123.839685, 52.199967], [-123.839233, 52.199887], [-123.838541, 52.199896], [-123.838129, 52.199589], [-123.838181, 52.199159], [-123.838475, 52.198611], [-123.83841, 52.19837], [-123.837896, 52.197796], [-123.837935, 52.197457], [-123.838123, 52.197268], [-123.83833, 52.1972], [-123.839325, 52.197193], [-123.839758, 52.197108], [-123.840203, 52.196824], [-123.840363, 52.196624], [-123.840355, 52.196422], [-123.839953, 52.196119], [-123.839057, 52.195874], [-123.838543, 52.195558], [-123.838216, 52.194797], [-123.837056, 52.193492], [-123.837119, 52.192497], [-123.836935, 52.191985], [-123.837072, 52.190858], [-123.837369, 52.189777], [-123.837303, 52.189331], [-123.836315, 52.188211], [-123.834559, 52.187082], [-123.83361, 52.185897], [-123.833161, 52.185033], [-123.832203, 52.184003], [-123.831488, 52.18349], [-123.830234, 52.182885], [-123.827909, 52.181972], [-123.82645, 52.181499], [-123.825843, 52.181418], [-123.825478, 52.181492], [-123.82496, 52.18209], [-123.824371, 52.182361], [-123.820806, 52.182438], [-123.819956, 52.182292], [-123.818262, 52.181724], [-123.816629, 52.181575], [-123.816057, 52.181731], [-123.815215, 52.182311], [-123.814597, 52.182355], [-123.813878, 52.182158], [-123.811664, 52.180769], [-123.810772, 52.18041], [-123.806926, 52.180178], [-123.806367, 52.180185], [-123.80423, 52.180451], [-123.802865, 52.180712], [-123.802575, 52.180882], [-123.802524, 52.181422], [-123.802724, 52.181723], [-123.80327, 52.182056], [-123.803451, 52.182275], [-123.80401, 52.1834], [-123.804059, 52.183755], [-123.803865, 52.184181], [-123.803015, 52.184622], [-123.800971, 52.185352], [-123.799165, 52.185547], [-123.798277, 52.185747], [-123.797643, 52.185995], [-123.797139, 52.186068], [-123.796277, 52.18605], [-123.795531, 52.185884], [-123.790144, 52.185175], [-123.789484, 52.185269], [-123.78859, 52.185812], [-123.788324, 52.185897], [-123.788004, 52.185896], [-123.787814, 52.185817], [-123.787663, 52.185588], [-123.788115, 52.184902], [-123.787946, 52.184449], [-123.787445, 52.184141], [-123.786514, 52.184095], [-123.786274, 52.183708], [-123.786372, 52.183358], [-123.786286, 52.183043], [-123.785514, 52.18248], [-123.783199, 52.182203], [-123.782153, 52.181884], [-123.781149, 52.181437], [-123.781079, 52.181346], [-123.781237, 52.180556], [-123.781638, 52.180435], [-123.781965, 52.18015], [-123.781937, 52.179821], [-123.781637, 52.179346], [-123.781626, 52.178839], [-123.781376, 52.178726], [-123.780623, 52.1789], [-123.780426, 52.178864], [-123.77989, 52.178507], [-123.779191, 52.178249], [-123.778918, 52.178048], [-123.778955, 52.177864], [-123.779739, 52.177463], [-123.779713, 52.177047], [-123.779404, 52.176776], [-123.778419, 52.176675], [-123.778032, 52.176415], [-123.778, 52.176195], [-123.778538, 52.17611], [-123.778911, 52.175903], [-123.778596, 52.175543], [-123.777797, 52.175233], [-123.777584, 52.175076], [-123.777797, 52.174152], [-123.778223, 52.173455], [-123.777999, 52.173337], [-123.777573, 52.173284], [-123.77717, 52.17334], [-123.775639, 52.173734], [-123.775299, 52.173756], [-123.775103, 52.17366], [-123.775024, 52.173206], [-123.774727, 52.172977], [-123.774441, 52.173056], [-123.774062, 52.173313], [-123.773734, 52.173276], [-123.773708, 52.172967], [-123.773877, 52.172808], [-123.773867, 52.172661], [-123.773595, 52.17248], [-123.773201, 52.172505], [-123.772822, 52.172621], [-123.771746, 52.17252], [-123.768986, 52.172473], [-123.768861, 52.17238], [-123.768728, 52.17197], [-123.768277, 52.171894], [-123.767645, 52.172059], [-123.766504, 52.171682], [-123.766357, 52.171504], [-123.76661, 52.171387], [-123.767465, 52.171272], [-123.767742, 52.17078], [-123.767462, 52.170526], [-123.766502, 52.170004], [-123.76649, 52.169288], [-123.766159, 52.169093], [-123.765209, 52.169117], [-123.764909, 52.169022], [-123.764543, 52.168418], [-123.764791, 52.167973], [-123.76468, 52.16773], [-123.764437, 52.167543], [-123.763542, 52.167236], [-123.763076, 52.16679], [-123.762517, 52.166508], [-123.761995, 52.166545], [-123.761631, 52.166669], [-123.761594, 52.167008], [-123.761857, 52.16766], [-123.76167, 52.167751], [-123.760682, 52.16771], [-123.760364, 52.167569], [-123.760231, 52.167197], [-123.760264, 52.166751], [-123.760068, 52.166534], [-123.759716, 52.166474], [-123.758833, 52.166476], [-123.757976, 52.166331], [-123.757617, 52.166179], [-123.757227, 52.165873], [-123.756743, 52.165682], [-123.756332, 52.165764], [-123.755926, 52.166102], [-123.755472, 52.166119], [-123.755172, 52.165965], [-123.75509, 52.165827], [-123.755191, 52.165404], [-123.75584, 52.16482], [-123.755556, 52.164661], [-123.755074, 52.164597], [-123.754519, 52.164703], [-123.754064, 52.164935], [-123.753863, 52.165292], [-123.753305, 52.16538], [-123.752725, 52.165235], [-123.752182, 52.164799], [-123.751677, 52.164639], [-123.751331, 52.164649], [-123.750896, 52.164864], [-123.750897, 52.165202], [-123.751118, 52.165374], [-123.751675, 52.165593], [-123.751946, 52.165914], [-123.751741, 52.166133], [-123.751044, 52.166401], [-123.750897, 52.166566], [-123.751014, 52.167116], [-123.750609, 52.167347], [-123.749478, 52.16729], [-123.74877, 52.166964], [-123.748372, 52.166932], [-123.74806, 52.167032], [-123.74754, 52.167501], [-123.747105, 52.167498], [-123.746654, 52.167354], [-123.746635, 52.166894], [-123.747435, 52.166504], [-123.74757, 52.166261], [-123.747306, 52.166038], [-123.746346, 52.166025], [-123.74604, 52.166179], [-123.746243, 52.16671], [-123.746124, 52.166967], [-123.745646, 52.166981], [-123.745046, 52.166808], [-123.74471, 52.166328], [-123.744414, 52.166199], [-123.743921, 52.166395], [-123.743856, 52.166806], [-123.74372, 52.166958], [-123.743254, 52.167053], [-123.742592, 52.167021], [-123.742458, 52.166793], [-123.742698, 52.166467], [-123.742687, 52.166286], [-123.742158, 52.165772], [-123.742063, 52.165515], [-123.742404, 52.164964], [-123.742523, 52.164517], [-123.742412, 52.164303], [-123.742087, 52.164211], [-123.741209, 52.164333], [-123.740427, 52.164322], [-123.739966, 52.164094], [-123.739448, 52.163678], [-123.738789, 52.163368], [-123.736941, 52.163061], [-123.734963, 52.162476], [-123.733604, 52.162188], [-123.732875, 52.162193], [-123.731805, 52.162332], [-123.730546, 52.162309], [-123.729917, 52.162154], [-123.72917, 52.161755], [-123.728533, 52.161681], [-123.727547, 52.161775], [-123.727214, 52.161893], [-123.726562, 52.162319], [-123.72603, 52.162324], [-123.725678, 52.162096], [-123.725552, 52.161851], [-123.725388, 52.159841], [-123.725233, 52.159494], [-123.725048, 52.159357], [-123.724549, 52.159492], [-123.72379, 52.160157], [-123.722657, 52.160579], [-123.721901, 52.160586], [-123.720896, 52.160253], [-123.720623, 52.159965], [-123.72068, 52.159794], [-123.721444, 52.158937], [-123.722433, 52.158179], [-123.722713, 52.157538], [-123.722642, 52.157179], [-123.722224, 52.156893], [-123.721561, 52.156799], [-123.720998, 52.15686], [-123.720314, 52.15684], [-123.720073, 52.156637], [-123.720394, 52.155103], [-123.721266, 52.154365], [-123.721138, 52.154082], [-123.720748, 52.15384], [-123.720448, 52.153097], [-123.719808, 52.15243], [-123.718828, 52.151938], [-123.718692, 52.151776], [-123.718551, 52.150896], [-123.718589, 52.149692], [-123.718455, 52.14942], [-123.718163, 52.149255], [-123.717705, 52.14918], [-123.717108, 52.149278], [-123.716841, 52.1495], [-123.716689, 52.150061], [-123.716463, 52.150208], [-123.716079, 52.150176], [-123.715158, 52.149852], [-123.714604, 52.149503], [-123.714541, 52.149297], [-123.714675, 52.148961], [-123.714591, 52.148764], [-123.714247, 52.148523], [-123.713887, 52.148393], [-123.713295, 52.148369], [-123.712365, 52.148586], [-123.711592, 52.149], [-123.711068, 52.148893], [-123.709172, 52.146538], [-123.708802, 52.146231], [-123.707873, 52.145835], [-123.705887, 52.145411], [-123.704825, 52.145351], [-123.70344, 52.145437], [-123.70255, 52.145998], [-123.701592, 52.146063], [-123.701228, 52.145982], [-123.700956, 52.145808], [-123.70044, 52.145173], [-123.699203, 52.144918], [-123.698416, 52.14434], [-123.698001, 52.143621], [-123.697748, 52.143394], [-123.697317, 52.143234], [-123.696291, 52.143053], [-123.695535, 52.142587], [-123.693595, 52.14068], [-123.693483, 52.140039], [-123.693715, 52.139042], [-123.694498, 52.137797], [-123.694515, 52.137208], [-123.694044, 52.136446], [-123.693874, 52.135724], [-123.693673, 52.135419], [-123.693113, 52.134992], [-123.693043, 52.134772], [-123.693267, 52.133314], [-123.693461, 52.132854], [-123.693573, 52.131606], [-123.693907, 52.130999], [-123.69388, 52.130752], [-123.693667, 52.130465], [-123.693214, 52.130159], [-123.692712, 52.129973], [-123.692223, 52.129971], [-123.691771, 52.129866], [-123.690084, 52.129101], [-123.689427, 52.128558], [-123.68934, 52.128208], [-123.688803, 52.12762], [-123.688216, 52.127306], [-123.687656, 52.127235], [-123.687181, 52.127383], [-123.686953, 52.127654], [-123.687124, 52.128026], [-123.68764, 52.128469], [-123.687538, 52.128752], [-123.687196, 52.128956], [-123.686657, 52.129048], [-123.686188, 52.128949], [-123.68571, 52.128597], [-123.6855, 52.127825], [-123.683977, 52.125042], [-123.683492, 52.124551], [-123.682789, 52.124109], [-123.682467, 52.123752], [-123.682511, 52.123477], [-123.684092, 52.123253], [-123.684658, 52.122976], [-123.684995, 52.122608], [-123.684896, 52.122241], [-123.684379, 52.121866], [-123.68344, 52.121623], [-123.682992, 52.121104], [-123.682827, 52.12063], [-123.682996, 52.120418], [-123.683676, 52.11999], [-123.683892, 52.119594], [-123.684826, 52.11858], [-123.684936, 52.117853], [-123.684617, 52.117226], [-123.683825, 52.117425], [-123.68347, 52.11743], [-123.683247, 52.117378], [-123.683042, 52.117111], [-123.683377, 52.116411], [-123.683338, 52.11579], [-123.684444, 52.115243], [-123.684378, 52.115044], [-123.683982, 52.114677], [-123.683091, 52.11415], [-123.682021, 52.113724], [-123.681803, 52.11352], [-123.68186, 52.113244], [-123.68259, 52.112857], [-123.682951, 52.112498], [-123.683004, 52.11184], [-123.682776, 52.111501], [-123.682332, 52.111166], [-123.681753, 52.110967], [-123.681178, 52.111001], [-123.680353, 52.111378], [-123.679872, 52.111256], [-123.679768, 52.111078], [-123.679857, 52.110706], [-123.679754, 52.110349], [-123.679522, 52.110155], [-123.678896, 52.110025], [-123.678493, 52.109857], [-123.678104, 52.109518], [-123.677835, 52.108956], [-123.677821, 52.108684], [-123.677412, 52.10832], [-123.677449, 52.108137], [-123.677921, 52.107957], [-123.677999, 52.107858], [-123.677604, 52.107423], [-123.677549, 52.106758], [-123.676654, 52.106149], [-123.675974, 52.105429], [-123.675791, 52.104767], [-123.675939, 52.104061], [-123.67576, 52.103952], [-123.674708, 52.103682], [-123.674289, 52.103474], [-123.673668, 52.103069], [-123.672464, 52.101842], [-123.671837, 52.101432], [-123.671161, 52.101289], [-123.670506, 52.101], [-123.670349, 52.100839], [-123.670433, 52.10057], [-123.670757, 52.100399], [-123.670657, 52.100168], [-123.669669, 52.099564], [-123.668618, 52.09924], [-123.668089, 52.098968], [-123.667809, 52.098697], [-123.667496, 52.098174], [-123.666697, 52.097736], [-123.66543, 52.09735], [-123.664494, 52.096902], [-123.664229, 52.096608], [-123.663929, 52.095675], [-123.663414, 52.095041], [-123.662504, 52.094355], [-123.661183, 52.093078], [-123.659884, 52.092063], [-123.659089, 52.091268], [-123.657321, 52.089867], [-123.655537, 52.08895], [-123.653851, 52.088213], [-123.653031, 52.088065], [-123.652751, 52.088135], [-123.652495, 52.088344], [-123.652469, 52.088962], [-123.652091, 52.089005], [-123.650398, 52.088487], [-123.649783, 52.088128], [-123.649489, 52.088023], [-123.648145, 52.088027], [-123.647867, 52.08783], [-123.647655, 52.08731], [-123.647273, 52.087132], [-123.646848, 52.08709], [-123.646845, 52.08691], [-123.646988, 52.086738], [-123.64695, 52.086118], [-123.646509, 52.085905], [-123.646389, 52.085644], [-123.646078, 52.085368], [-123.645465, 52.085317], [-123.645216, 52.08522], [-123.644734, 52.085196], [-123.644047, 52.085234], [-123.643539, 52.085418], [-123.64249, 52.085441], [-123.64208, 52.085344], [-123.641612, 52.085329], [-123.640923, 52.085153], [-123.640308, 52.084958], [-123.639396, 52.084478], [-123.639177, 52.084461], [-123.639013, 52.084273], [-123.639171, 52.084119], [-123.639169, 52.083841], [-123.638245, 52.083558], [-123.637938, 52.083559], [-123.637662, 52.08366], [-123.637666, 52.083867], [-123.637492, 52.084021], [-123.636949, 52.083744], [-123.636918, 52.083575], [-123.637046, 52.08343], [-123.636957, 52.083331], [-123.636562, 52.083199], [-123.635817, 52.08323], [-123.635335, 52.083115], [-123.635214, 52.082873], [-123.635429, 52.082638], [-123.635428, 52.082539], [-123.635352, 52.082404], [-123.635178, 52.082343], [-123.634433, 52.082383], [-123.633757, 52.082008], [-123.633216, 52.081948], [-123.632399, 52.08198], [-123.632024, 52.082243], [-123.631587, 52.082236], [-123.631469, 52.082192], [-123.63117, 52.081691], [-123.631037, 52.081601], [-123.630775, 52.081629], [-123.630415, 52.081918], [-123.62881, 52.082027], [-123.627716, 52.082041], [-123.627132, 52.082008], [-123.626809, 52.081876], [-123.626557, 52.081688], [-123.626178, 52.081699], [-123.625474, 52.081406], [-123.624729, 52.081419], [-123.624191, 52.08153], [-123.623972, 52.081521], [-123.623396, 52.081065], [-123.622492, 52.08099], [-123.622328, 52.08081], [-123.622324, 52.080443], [-123.6221, 52.080101], [-123.622111, 52.079886], [-123.622256, 52.079813], [-123.622737, 52.079748], [-123.623313, 52.079268], [-123.623369, 52.07907], [-123.623234, 52.078836], [-123.622103, 52.078331], [-123.621766, 52.078251], [-123.620848, 52.078238], [-123.619638, 52.078335], [-123.619198, 52.078247], [-123.618891, 52.078077], [-123.618594, 52.077801], [-123.617419, 52.077223], [-123.617094, 52.07681], [-123.616771, 52.076848], [-123.616381, 52.076994], [-123.615964, 52.077509], [-123.615573, 52.07769], [-123.615009, 52.078099], [-123.614999, 52.078368], [-123.615366, 52.0786], [-123.615354, 52.078807], [-123.615254, 52.078888], [-123.615123, 52.078933], [-123.614816, 52.078926], [-123.614329, 52.078416], [-123.614021, 52.078401], [-123.613165, 52.078755], [-123.612541, 52.079091], [-123.611729, 52.079346], [-123.611407, 52.079366], [-123.61107, 52.079315], [-123.610952, 52.079171], [-123.611063, 52.078694], [-123.61087, 52.078533], [-123.610623, 52.07857], [-123.610057, 52.078871], [-123.609781, 52.078862], [-123.609006, 52.078678], [-123.6087, 52.07867], [-123.608112, 52.078476], [-123.607805, 52.078432], [-123.606362, 52.078593], [-123.605911, 52.078586], [-123.605646, 52.078525], [-123.604772, 52.078573], [-123.604305, 52.078505], [-123.60414, 52.07829], [-123.604077, 52.077795], [-123.603868, 52.077518], [-123.603077, 52.077305], [-123.602347, 52.0773], [-123.602173, 52.077382], [-123.602161, 52.077589], [-123.60187, 52.077753], [-123.601375, 52.077808], [-123.600426, 52.077768], [-123.600135, 52.077842], [-123.599368, 52.078214], [-123.598617, 52.078731], [-123.597919, 52.078995], [-123.596825, 52.079037], [-123.596215, 52.07922], [-123.594366, 52.079534], [-123.593432, 52.07953], [-123.592399, 52.079707], [-123.591683, 52.079719], [-123.590733, 52.079643], [-123.59047, 52.079527], [-123.590013, 52.079188], [-123.589088, 52.078859], [-123.587658, 52.078822], [-123.587058, 52.078636], [-123.586837, 52.078485], [-123.586465, 52.077929], [-123.58567, 52.077375], [-123.585343, 52.076918], [-123.584947, 52.076884], [-123.584586, 52.077102], [-123.584013, 52.077834], [-123.583477, 52.078223], [-123.582955, 52.078432], [-123.582006, 52.078445], [-123.581644, 52.078556], [-123.579488, 52.080013], [-123.57904, 52.080429], [-123.578688, 52.081401], [-123.578125, 52.081917], [-123.577588, 52.082126], [-123.577298, 52.082218], [-123.57683, 52.082202], [-123.576509, 52.082105], [-123.576347, 52.08198], [-123.576283, 52.08171], [-123.576905, 52.081141], [-123.576901, 52.080853], [-123.575858, 52.080319], [-123.575594, 52.080266], [-123.57415, 52.080291], [-123.572911, 52.080423], [-123.5717, 52.080483], [-123.571425, 52.08053], [-123.570713, 52.080802], [-123.568918, 52.080829], [-123.568569, 52.080884], [-123.567611, 52.08132], [-123.5665, 52.08236], [-123.565472, 52.083031], [-123.564979, 52.083249], [-123.564951, 52.083411], [-123.563999, 52.084197], [-123.563786, 52.08463], [-123.563423, 52.084767], [-123.563394, 52.084857], [-123.563199, 52.084882], [-123.555598, 52.087812], [-123.55303, 52.087934], [-123.552909, 52.074219], [-123.550952, 52.069284], [-123.550615, 52.068755], [-123.550515, 52.068146], [-123.551799, 52.067426], [-123.555507, 52.065947], [-123.55737, 52.064223], [-123.558741, 52.063472], [-123.560625, 52.062865], [-123.561196, 52.062106], [-123.561589, 52.061227], [-123.562166, 52.060703], [-123.563296, 52.060191], [-123.564053, 52.060068], [-123.567875, 52.060095], [-123.569128, 52.05995], [-123.569691, 52.059753], [-123.57041, 52.059338], [-123.571491, 52.058049], [-123.572033, 52.057606], [-123.57482, 52.056371], [-123.577079, 52.055142], [-123.577617, 52.054555], [-123.577525, 52.053977], [-123.577126, 52.053322], [-123.576602, 52.052837], [-123.576056, 52.051979], [-123.575448, 52.051449], [-123.575232, 52.051093], [-123.575261, 52.050342], [-123.575735, 52.049701], [-123.576818, 52.048985], [-123.579325, 52.048022], [-123.580538, 52.046913], [-123.581498, 52.045659], [-123.582193, 52.045034], [-123.582864, 52.044594], [-123.583939, 52.044202], [-123.584712, 52.04378], [-123.587197, 52.041817], [-123.588315, 52.040525], [-123.588974, 52.038946], [-123.589683, 52.038265], [-123.590244, 52.038011], [-123.590899, 52.037903], [-123.592664, 52.03813], [-123.593919, 52.038105], [-123.594615, 52.037959], [-123.595757, 52.037425], [-123.597146, 52.036327], [-123.597781, 52.035915], [-123.599084, 52.034788], [-123.600369, 52.033247], [-123.601015, 52.032632], [-123.601795, 52.032215], [-123.602693, 52.031971], [-123.604079, 52.031969], [-123.605103, 52.032052], [-123.605639, 52.032184], [-123.606265, 52.032461], [-123.606822, 52.033344], [-123.607468, 52.033672], [-123.608885, 52.033958], [-123.609678, 52.033933], [-123.610057, 52.033782], [-123.610438, 52.033464], [-123.61064, 52.033119], [-123.610359, 52.032513], [-123.610023, 52.032184], [-123.608714, 52.031459], [-123.608026, 52.030932], [-123.607767, 52.030644], [-123.607518, 52.030086], [-123.607409, 52.029492], [-123.607491, 52.029048], [-123.607977, 52.028643], [-123.608507, 52.028482], [-123.609668, 52.028521], [-123.611361, 52.029052], [-123.613716, 52.029617], [-123.614468, 52.02969], [-123.616295, 52.029636], [-123.618875, 52.029362], [-123.620534, 52.028983], [-123.622132, 52.028448], [-123.625871, 52.027969], [-123.630566, 52.027878], [-123.633756, 52.027962], [-123.634737, 52.028155], [-123.63569, 52.028132], [-123.636935, 52.027861], [-123.638565, 52.027299], [-123.640164, 52.026522], [-123.641138, 52.026185], [-123.642046, 52.026022], [-123.643511, 52.026027], [-123.645023, 52.025901], [-123.646479, 52.025558], [-123.647794, 52.024929], [-123.648412, 52.024386], [-123.648491, 52.024204], [-123.648804, 52.022087], [-123.648844, 52.020589], [-123.649011, 52.019851], [-123.649143, 52.01701], [-123.649718, 52.015671], [-123.651061, 52.01424], [-123.651612, 52.013919], [-123.652552, 52.013734], [-123.65956, 52.013494], [-123.661805, 52.013673], [-123.662345, 52.013586], [-123.66391, 52.013167], [-123.665934, 52.012471], [-123.666622, 52.012287], [-123.668353, 52.011617], [-123.66886, 52.011525], [-123.671374, 52.010484], [-123.673376, 52.009933], [-123.674275, 52.010008], [-123.675051, 52.009691], [-123.676131, 52.008758], [-123.677568, 52.007678], [-123.677897, 52.007599], [-123.677703, 52.007232], [-123.678107, 52.006213], [-123.677344, 52.00527], [-123.673246, 52.003023], [-123.67248, 52.002542], [-123.672244, 52.00216], [-123.672264, 52.001748], [-123.673045, 52.001406], [-123.676473, 52.000241], [-123.676842, 52.000196], [-123.677949, 51.99975], [-123.678724, 51.999206], [-123.679927, 51.998586], [-123.680211, 51.998236], [-123.680432, 51.997427], [-123.680542, 51.996371], [-123.681321, 51.995759], [-123.683515, 51.995554], [-123.685858, 51.996472], [-123.686932, 51.996607], [-123.688251, 51.996391], [-123.69, 51.995728], [-123.691401, 51.994998], [-123.691699, 51.994627], [-123.692149, 51.993769], [-123.692296, 51.993285], [-123.691141, 51.9909], [-123.690423, 51.990117], [-123.689702, 51.989004], [-123.689346, 51.988137], [-123.688778, 51.987351], [-123.688772, 51.986901], [-123.688921, 51.986709], [-123.690589, 51.98607], [-123.690879, 51.985682], [-123.690673, 51.985225], [-123.689171, 51.98362], [-123.688784, 51.983068], [-123.688155, 51.981408], [-123.687289, 51.980372], [-123.686485, 51.978311], [-123.685929, 51.977709], [-123.683119, 51.976137], [-123.683154, 51.975809], [-123.683545, 51.975224], [-123.685418, 51.972972], [-123.686323, 51.971598], [-123.686616, 51.970609], [-123.687474, 51.969809], [-123.68761, 51.969037], [-123.686899, 51.967475], [-123.686824, 51.966811], [-123.686029, 51.965817], [-123.684334, 51.964516], [-123.682867, 51.96384], [-123.680743, 51.96231], [-123.67976, 51.962094], [-123.678395, 51.961893], [-123.677358, 51.961644], [-123.676942, 51.961445], [-123.676221, 51.960191], [-123.675583, 51.959398], [-123.67499, 51.958907], [-123.67439, 51.958573], [-123.673479, 51.958226], [-123.671654, 51.957693], [-123.669377, 51.95684], [-123.668985, 51.956777], [-123.667638, 51.9568], [-123.665227, 51.956213], [-123.665136, 51.955916], [-123.664728, 51.955496], [-123.663176, 51.95457], [-123.662782, 51.954135], [-123.662713, 51.953627], [-123.663026, 51.953123], [-123.664639, 51.951908], [-123.665827, 51.951404], [-123.666162, 51.951145], [-123.666511, 51.950508], [-123.666504, 51.949504], [-123.66732, 51.948293], [-123.667767, 51.946798], [-123.667485, 51.945855], [-123.666832, 51.944995], [-123.666634, 51.944344], [-123.666387, 51.943941], [-123.666357, 51.943205], [-123.666055, 51.94247], [-123.665853, 51.942098], [-123.665135, 51.941486], [-123.66509, 51.940587], [-123.665443, 51.938389], [-123.666227, 51.937449], [-123.66661, 51.936522], [-123.666929, 51.934488], [-123.668319, 51.932282], [-123.668507, 51.931737], [-123.668497, 51.931013], [-123.667857, 51.929659], [-123.667879, 51.928743], [-123.66832, 51.928232], [-123.671814, 51.925734], [-123.672526, 51.925102], [-123.672821, 51.924616], [-123.673128, 51.923192], [-123.673739, 51.921755], [-123.674203, 51.921337], [-123.675221, 51.921129], [-123.676672, 51.920977], [-123.677161, 51.920714], [-123.677275, 51.92039], [-123.677341, 51.918754], [-123.677512, 51.918422], [-123.678056, 51.918107], [-123.678875, 51.917914], [-123.680189, 51.917758], [-123.680618, 51.917603], [-123.680887, 51.917411], [-123.682058, 51.916086], [-123.682484, 51.915405], [-123.683591, 51.914108], [-123.684237, 51.912782], [-123.68443, 51.911371], [-123.684586, 51.910956], [-123.684865, 51.910592], [-123.685846, 51.90974], [-123.686279, 51.909199], [-123.686656, 51.908309], [-123.687746, 51.906538], [-123.689675, 51.90545], [-123.689868, 51.905296], [-123.690233, 51.904677], [-123.689846, 51.903166], [-123.689829, 51.902496], [-123.690055, 51.902166], [-123.690531, 51.901777], [-123.691804, 51.900075], [-123.692069, 51.899557], [-123.691846, 51.898865], [-123.692895, 51.897979], [-123.693276, 51.897401], [-123.694838, 51.89629], [-123.695429, 51.895316], [-123.696753, 51.894475], [-123.69713, 51.89402], [-123.69733, 51.893587], [-123.697438, 51.892651], [-123.697646, 51.892046], [-123.697771, 51.890523], [-123.697582, 51.888754], [-123.69807, 51.887585], [-123.698033, 51.886776], [-123.697594, 51.88588], [-123.697608, 51.884775], [-123.697394, 51.884442], [-123.69662, 51.88376], [-123.695849, 51.882287], [-123.69535, 51.881811], [-123.695266, 51.880618], [-123.695481, 51.879554], [-123.695771, 51.879176], [-123.695951, 51.878568], [-123.695976, 51.877597], [-123.69566, 51.877124], [-123.695175, 51.876677], [-123.694442, 51.876255], [-123.694103, 51.875499], [-123.693056, 51.874702], [-123.692817, 51.874358], [-123.692853, 51.873228], [-123.69301, 51.872995], [-123.69371, 51.87248], [-123.693703, 51.872083], [-123.693495, 51.871574], [-123.692324, 51.86995], [-123.691516, 51.86813], [-123.690424, 51.866646], [-123.690338, 51.866101], [-123.690603, 51.864789], [-123.690497, 51.864323], [-123.689377, 51.86309], [-123.688982, 51.861946], [-123.688991, 51.8617], [-123.689256, 51.861224], [-123.69015, 51.860044], [-123.690085, 51.859223], [-123.689736, 51.858434], [-123.689629, 51.856979], [-123.689084, 51.855939], [-123.688557, 51.854005], [-123.689239, 51.85321], [-123.689263, 51.852813], [-123.688308, 51.852082], [-123.687208, 51.850882], [-123.686665, 51.850446], [-123.686389, 51.849993], [-123.6863, 51.849604], [-123.685838, 51.848962], [-123.685685, 51.848322], [-123.685722, 51.847135], [-123.685913, 51.846054], [-123.68587, 51.845346], [-123.685208, 51.844659], [-123.684725, 51.844444], [-123.683902, 51.844252], [-123.683177, 51.843855], [-123.682678, 51.842288], [-123.68213, 51.841667], [-123.680722, 51.840522], [-123.68059, 51.839596], [-123.680668, 51.838576], [-123.680152, 51.837474], [-123.680006, 51.83669], [-123.679444, 51.834925], [-123.679048, 51.834324], [-123.679063, 51.833719], [-123.678393, 51.832881], [-123.67763, 51.83233], [-123.677366, 51.830993], [-123.676854, 51.829927], [-123.676617, 51.829724], [-123.67607, 51.829433], [-123.674123, 51.828812], [-123.673665, 51.828524], [-123.67322, 51.827825], [-123.673359, 51.827184], [-123.673554, 51.826752], [-123.675499, 51.824673], [-123.676248, 51.824075], [-123.676537, 51.82287], [-123.676838, 51.822271], [-123.677155, 51.821889], [-123.677705, 51.821621], [-123.678061, 51.821267], [-123.678073, 51.82018], [-123.679128, 51.818528], [-123.678888, 51.817853], [-123.678308, 51.817314], [-123.67736, 51.816786], [-123.676642, 51.816048], [-123.675711, 51.815298], [-123.675285, 51.81455], [-123.67285, 51.81288], [-123.672079, 51.812207], [-123.671318, 51.81134], [-123.669381, 51.810063], [-123.6686, 51.809285], [-123.668151, 51.80898], [-123.665403, 51.807657], [-123.664848, 51.807463], [-123.663688, 51.807419], [-123.663007, 51.807554], [-123.661991, 51.807428], [-123.661021, 51.806656], [-123.660216, 51.80572], [-123.659841, 51.805438], [-123.657902, 51.804655], [-123.657161, 51.802941], [-123.657059, 51.801766], [-123.657275, 51.801153], [-123.658322, 51.800176], [-123.658411, 51.799859], [-123.658302, 51.799556], [-123.658098, 51.799395], [-123.657683, 51.799297], [-123.656727, 51.799317], [-123.656286, 51.799445], [-123.655721, 51.799808], [-123.655358, 51.799913], [-123.65491, 51.799781], [-123.654599, 51.799456], [-123.654683, 51.799028], [-123.655278, 51.798029], [-123.656175, 51.797345], [-123.657088, 51.796761], [-123.659407, 51.796113], [-123.660895, 51.795348], [-123.662098, 51.793654], [-123.663198, 51.792592], [-123.665136, 51.791535], [-123.667355, 51.79106], [-123.669441, 51.79033], [-123.669826, 51.790085], [-123.670098, 51.78976], [-123.669307, 51.788799], [-123.668784, 51.788336], [-123.667919, 51.787767], [-123.667213, 51.786993], [-123.666754, 51.785295], [-123.666221, 51.784605], [-123.665606, 51.784267], [-123.664663, 51.784059], [-123.662864, 51.784015], [-123.659444, 51.784092], [-123.655936, 51.783754], [-123.655167, 51.783633], [-123.654421, 51.783421], [-123.653584, 51.783055], [-123.653153, 51.782756], [-123.651494, 51.781038], [-123.650066, 51.779005], [-123.649053, 51.774409], [-123.648873, 51.773952], [-123.64803, 51.772779], [-123.647999, 51.772231], [-123.648522, 51.771454], [-123.650431, 51.76991], [-123.651514, 51.768879], [-123.651861, 51.768315], [-123.651901, 51.76764], [-123.65137, 51.766231], [-123.651016, 51.765731], [-123.65024, 51.764961], [-123.649907, 51.763959], [-123.649101, 51.762821], [-123.648901, 51.762045], [-123.648921, 51.760973], [-123.648995, 51.760561], [-123.649579, 51.759418], [-123.64968, 51.757177], [-123.65042, 51.754211], [-123.650825, 51.753412], [-123.650776, 51.752106], [-123.650959, 51.750623], [-123.651302, 51.750083], [-123.651875, 51.74975], [-123.653102, 51.749264], [-123.65362, 51.748599], [-123.653389, 51.747823], [-123.652707, 51.74715], [-123.652717, 51.746681], [-123.653343, 51.745946], [-123.65523, 51.74455], [-123.657538, 51.743331], [-123.660545, 51.741319], [-123.66137, 51.740652], [-123.663873, 51.737945], [-123.664516, 51.736968], [-123.664786, 51.736774], [-123.667157, 51.735603], [-123.669335, 51.73432], [-123.670582, 51.733914], [-123.67402, 51.732472], [-123.67563, 51.73194], [-123.676655, 51.731079], [-123.677654, 51.730412], [-123.677934, 51.730003], [-123.678157, 51.729374], [-123.678347, 51.727977], [-123.678659, 51.727502], [-123.678947, 51.726171], [-123.679651, 51.72548], [-123.680981, 51.724788], [-123.682089, 51.72352], [-123.682401, 51.723405], [-123.683737, 51.723315], [-123.685669, 51.723012], [-123.688484, 51.723173], [-123.689113, 51.723049], [-123.690747, 51.723367], [-123.692778, 51.723351], [-123.695913, 51.722924], [-123.696455, 51.722794], [-123.69688, 51.722572], [-123.697924, 51.721633], [-123.700542, 51.719702], [-123.70169, 51.718543], [-123.702132, 51.717707], [-123.702188, 51.716953], [-123.702047, 51.71627], [-123.702154, 51.715894], [-123.70455, 51.714918], [-123.70544, 51.714329], [-123.705551, 51.714015], [-123.705089, 51.712033], [-123.705319, 51.711445], [-123.706061, 51.710703], [-123.707686, 51.709667], [-123.711037, 51.706095], [-123.711241, 51.705434], [-123.711696, 51.704596], [-123.711684, 51.703322], [-123.71239, 51.702073], [-123.71306, 51.701511], [-123.714809, 51.700695], [-123.715041, 51.700346], [-123.714965, 51.700243], [-123.713248, 51.699488], [-123.711272, 51.698258], [-123.710915, 51.697527], [-123.710995, 51.697215], [-123.711472, 51.696873], [-123.712505, 51.696507], [-123.715137, 51.695791], [-123.716295, 51.695255], [-123.71694, 51.694706], [-123.717303, 51.694237], [-123.717547, 51.692844], [-123.71677, 51.692283], [-123.714874, 51.689973], [-123.714541, 51.688982], [-123.71457, 51.688471], [-123.714943, 51.688167], [-123.715658, 51.687951], [-123.717124, 51.687243], [-123.720535, 51.686395], [-123.721451, 51.686017], [-123.721894, 51.685117], [-123.721649, 51.684439], [-123.720943, 51.683071], [-123.720812, 51.682596], [-123.720998, 51.681785], [-123.721349, 51.681312], [-123.724055, 51.679407], [-123.725857, 51.677964], [-123.727044, 51.676689], [-123.72929, 51.674052], [-123.729908, 51.67357], [-123.731153, 51.673132], [-123.733253, 51.672861], [-123.734523, 51.672893], [-123.738051, 51.67359], [-123.739595, 51.673558], [-123.741847, 51.673264], [-123.743993, 51.672685], [-123.744781, 51.672279], [-123.746608, 51.670856], [-123.747508, 51.67053], [-123.748728, 51.669905], [-123.749592, 51.669078], [-123.748028, 51.665677], [-123.74887, 51.664056], [-123.749002, 51.663422], [-123.748789, 51.66295], [-123.748025, 51.662658], [-123.747226, 51.66167], [-123.746921, 51.660813], [-123.745582, 51.659081], [-123.745427, 51.658535], [-123.746668, 51.656814], [-123.746625, 51.65495], [-123.746921, 51.65417], [-123.747893, 51.652925], [-123.748603, 51.651589], [-123.748739, 51.651296], [-123.748698, 51.650746], [-123.748446, 51.650269], [-123.746107, 51.648591], [-123.744887, 51.647274], [-123.744087, 51.646038], [-123.74398, 51.64567], [-123.744083, 51.644766], [-123.743772, 51.643578], [-123.742487, 51.64167], [-123.742145, 51.640049], [-123.741701, 51.639117], [-123.741405, 51.63882], [-123.740216, 51.638123], [-123.739896, 51.637781], [-123.739682, 51.637309], [-123.739645, 51.63685], [-123.740231, 51.635056], [-123.740225, 51.634645], [-123.739975, 51.633985], [-123.74001, 51.633734], [-123.740361, 51.633389], [-123.742232, 51.632447], [-123.741915, 51.631934], [-123.740422, 51.63229], [-123.740008, 51.632315], [-123.739312, 51.632197], [-123.738979, 51.631998], [-123.73885, 51.631502], [-123.738906, 51.629662], [-123.738618, 51.628946], [-123.737975, 51.628366], [-123.736503, 51.627915], [-123.735752, 51.62759], [-123.735278, 51.627221], [-123.735103, 51.626879], [-123.73505, 51.626495], [-123.735223, 51.62583], [-123.736516, 51.62371], [-123.736733, 51.623077], [-123.736478, 51.622034], [-123.736524, 51.621459], [-123.737079, 51.620936], [-123.738119, 51.620339], [-123.738631, 51.619925], [-123.739073, 51.619272], [-123.738998, 51.618915], [-123.738513, 51.618526], [-123.738007, 51.618409], [-123.735641, 51.618431], [-123.734731, 51.618239], [-123.733891, 51.61785], [-123.733378, 51.617435], [-123.733161, 51.617096], [-123.733415, 51.615748], [-123.733037, 51.612377], [-123.732697, 51.610996], [-123.732719, 51.608024], [-123.733343, 51.606458], [-123.733367, 51.606076], [-123.733129, 51.605254], [-123.7325, 51.604116], [-123.732177, 51.602846], [-123.732374, 51.602481], [-123.733143, 51.601998], [-123.73362, 51.601441], [-123.733643, 51.600909], [-123.733542, 51.600635], [-123.733099, 51.600137], [-123.731108, 51.59918], [-123.730346, 51.598728], [-123.729482, 51.598079], [-123.728432, 51.597038], [-123.727866, 51.596015], [-123.728052, 51.595232], [-123.727984, 51.593875], [-123.727728, 51.59346], [-123.727081, 51.592949], [-123.725998, 51.592529], [-123.72512, 51.592395], [-123.723333, 51.592341], [-123.722008, 51.592573], [-123.720772, 51.593003], [-123.719448, 51.593668], [-123.719295, 51.593889], [-123.719094, 51.594844], [-123.718633, 51.595376], [-123.718134, 51.595662], [-123.717593, 51.595814], [-123.717128, 51.595833], [-123.71643, 51.59552], [-123.715347, 51.59479], [-123.714906, 51.594691], [-123.714194, 51.594702], [-123.713926, 51.594776], [-123.713473, 51.595088], [-123.713154, 51.596269], [-123.712858, 51.59662], [-123.712222, 51.596918], [-123.711429, 51.597042], [-123.709237, 51.596848], [-123.707224, 51.596922], [-123.706353, 51.596881], [-123.704911, 51.596404], [-123.703411, 51.595609], [-123.701437, 51.595129], [-123.700911, 51.594776], [-123.700287, 51.594129], [-123.699889, 51.593924], [-123.699307, 51.593754], [-123.69772, 51.593607], [-123.697021, 51.59342], [-123.696442, 51.593151], [-123.695869, 51.592604], [-123.695471, 51.591694], [-123.695432, 51.591176], [-123.695742, 51.589762], [-123.696088, 51.589405], [-123.696655, 51.589169], [-123.697504, 51.589106], [-123.699161, 51.589136], [-123.702223, 51.588576], [-123.703526, 51.588132], [-123.704522, 51.587501], [-123.704714, 51.587077], [-123.704616, 51.586568], [-123.703279, 51.584278], [-123.703134, 51.583632], [-123.703221, 51.583152], [-123.703614, 51.582535], [-123.70412, 51.582269], [-123.704944, 51.582012], [-123.706207, 51.581814], [-123.7081, 51.581726], [-123.708962, 51.581518], [-123.709559, 51.581252], [-123.710472, 51.580684], [-123.711415, 51.579932], [-123.711625, 51.579135], [-123.711347, 51.578486], [-123.709555, 51.577399], [-123.709269, 51.577072], [-123.709061, 51.576609], [-123.709077, 51.575917], [-123.710153, 51.57308], [-123.708314, 51.569459], [-123.708295, 51.568545], [-123.707982, 51.567699], [-123.707342, 51.566631], [-123.706669, 51.565923], [-123.705963, 51.565739], [-123.701622, 51.566263], [-123.700242, 51.566021], [-123.699821, 51.565855], [-123.699159, 51.565313], [-123.698954, 51.564879], [-123.698856, 51.563553], [-123.698487, 51.561977], [-123.69807, 51.561156], [-123.697471, 51.560347], [-123.696819, 51.55982], [-123.695531, 51.559135], [-123.693995, 51.558547], [-123.692375, 51.558144], [-123.690994, 51.557327], [-123.690674, 51.557045], [-123.690592, 51.556808], [-123.6907, 51.556464], [-123.691077, 51.556257], [-123.691923, 51.556154], [-123.692788, 51.556156], [-123.695828, 51.55634], [-123.697194, 51.556509], [-123.697754, 51.556492], [-123.698381, 51.556273], [-123.698636, 51.555927], [-123.698841, 51.555231], [-123.69887, 51.554663], [-123.698705, 51.553604], [-123.698185, 51.552198], [-123.698065, 51.550537], [-123.697696, 51.549313], [-123.69682, 51.548233], [-123.694314, 51.546401], [-123.693668, 51.545859], [-123.693144, 51.545208], [-123.692957, 51.544341], [-123.693395, 51.543282], [-123.693333, 51.542761], [-123.693036, 51.542345], [-123.691609, 51.541992], [-123.691331, 51.541607], [-123.691527, 51.540901], [-123.692148, 51.540159], [-123.69226, 51.539888], [-123.692352, 51.539326], [-123.69225, 51.538859], [-123.691965, 51.53837], [-123.691007, 51.537437], [-123.690587, 51.536874], [-123.689974, 51.535056], [-123.689443, 51.534531], [-123.68909, 51.53433], [-123.687613, 51.533797], [-123.68716, 51.533525], [-123.68678, 51.53302], [-123.686467, 51.531993], [-123.685869, 51.53152], [-123.684391, 51.530907], [-123.682407, 51.530409], [-123.681931, 51.530193], [-123.68141, 51.529693], [-123.681215, 51.529075], [-123.681335, 51.528636], [-123.68198, 51.527378], [-123.681999, 51.526863], [-123.681797, 51.526468], [-123.681541, 51.526242], [-123.678942, 51.525085], [-123.678151, 51.524657], [-123.677693, 51.524225], [-123.677348, 51.523305], [-123.677134, 51.523015], [-123.676704, 51.522678], [-123.675169, 51.521808], [-123.674342, 51.521052], [-123.674132, 51.520432], [-123.674162, 51.519605], [-123.674676, 51.518483], [-123.67486, 51.517612], [-123.674829, 51.515496], [-123.67514, 51.512159], [-123.675126, 51.511844], [-123.67476, 51.510812], [-123.674822, 51.510013], [-123.675086, 51.509561], [-123.676003, 51.508621], [-123.676901, 51.507194], [-123.677096, 51.506115], [-123.677662, 51.504889], [-123.678146, 51.503359], [-123.678644, 51.501169], [-123.679386, 51.500002], [-123.680512, 51.49888], [-123.681489, 51.497292], [-123.681781, 51.496034], [-123.682195, 51.495039], [-123.682688, 51.494529], [-123.682985, 51.494414], [-123.685323, 51.493736], [-123.68699, 51.493516], [-123.687423, 51.493341], [-123.68851, 51.49262], [-123.68845, 51.490902], [-123.689091, 51.490468], [-123.690247, 51.490106], [-123.693364, 51.489649], [-123.694285, 51.489338], [-123.694694, 51.489088], [-123.69527, 51.488501], [-123.69569, 51.487684], [-123.695732, 51.48726], [-123.694094, 51.484984], [-123.69379, 51.484369], [-123.693694, 51.483376], [-123.693911, 51.482795], [-123.694318, 51.482185], [-123.694688, 51.481869], [-123.696959, 51.480883], [-123.697535, 51.480478], [-123.697854, 51.480131], [-123.698152, 51.479538], [-123.698034, 51.478736], [-123.698194, 51.477628], [-123.699014, 51.476635], [-123.699589, 51.476372], [-123.704006, 51.476208], [-123.70658, 51.475903], [-123.707468, 51.475344], [-123.707266, 51.474729], [-123.707689, 51.473752], [-123.708045, 51.473646], [-123.708069, 51.473529], [-123.707793, 51.47177], [-123.708513, 51.470828], [-123.708177, 51.469797], [-123.707091, 51.469479], [-123.705671, 51.469329], [-123.704021, 51.469816], [-123.702977, 51.469796], [-123.702452, 51.469676], [-123.701945, 51.469427], [-123.701643, 51.469103], [-123.701599, 51.468839], [-123.701933, 51.467692], [-123.702712, 51.46703], [-123.703292, 51.466244], [-123.704242, 51.465478], [-123.704877, 51.464692], [-123.705166, 51.463755], [-123.705137, 51.463535], [-123.704876, 51.463173], [-123.704402, 51.462796], [-123.703344, 51.462168], [-123.701136, 51.461118], [-123.700288, 51.460493], [-123.698928, 51.458914], [-123.69847, 51.458619], [-123.697875, 51.458391], [-123.697149, 51.458274], [-123.695919, 51.458334], [-123.695366, 51.458545], [-123.694332, 51.459456], [-123.693788, 51.459667], [-123.692819, 51.459854], [-123.691615, 51.459872], [-123.69066, 51.459688], [-123.690265, 51.459532], [-123.689433, 51.459038], [-123.689142, 51.458723], [-123.689036, 51.45836], [-123.689363, 51.457663], [-123.689981, 51.456962], [-123.690385, 51.456118], [-123.691806, 51.455484], [-123.692146, 51.453144], [-123.691987, 51.452727], [-123.69155, 51.452499], [-123.691223, 51.452425], [-123.6899, 51.453486], [-123.689109, 51.45391], [-123.688371, 51.454071], [-123.687705, 51.454027], [-123.687341, 51.453942], [-123.686766, 51.453564], [-123.686013, 51.452026], [-123.685217, 51.451251], [-123.684525, 51.450921], [-123.683217, 51.450525], [-123.682646, 51.450428], [-123.679574, 51.450421], [-123.677976, 51.450309], [-123.677197, 51.450152], [-123.676283, 51.449686], [-123.675859, 51.449282], [-123.675651, 51.448739], [-123.675691, 51.448399], [-123.675938, 51.447801], [-123.677009, 51.44692], [-123.677798, 51.446576], [-123.681657, 51.446047], [-123.683124, 51.445697], [-123.684162, 51.445297], [-123.684353, 51.444939], [-123.684331, 51.44433], [-123.683933, 51.443828], [-123.683499, 51.443586], [-123.683114, 51.443544], [-123.682243, 51.443699], [-123.679628, 51.444934], [-123.679012, 51.445032], [-123.67819, 51.445003], [-123.673433, 51.443793], [-123.672643, 51.443444], [-123.671038, 51.442451], [-123.67066, 51.44186], [-123.670666, 51.441397], [-123.671434, 51.440406], [-123.67309, 51.439302], [-123.674526, 51.438785], [-123.677311, 51.438462], [-123.678543, 51.438219], [-123.679251, 51.437786], [-123.67979, 51.437212], [-123.679838, 51.436737], [-123.679695, 51.435844], [-123.679271, 51.435034], [-123.678749, 51.43433], [-123.676228, 51.433466], [-123.674381, 51.433089], [-123.673232, 51.432338], [-123.67286, 51.431612], [-123.672963, 51.430909], [-123.673496, 51.430032], [-123.673579, 51.428804], [-123.673355, 51.427839], [-123.672719, 51.426523], [-123.671039, 51.425063], [-123.670267, 51.42478], [-123.669639, 51.424724], [-123.668844, 51.424916], [-123.669269, 51.425832], [-123.669211, 51.426229], [-123.669038, 51.42652], [-123.668286, 51.426585], [-123.666857, 51.426489], [-123.665797, 51.426306], [-123.664067, 51.426161], [-123.662951, 51.42596], [-123.662486, 51.425802], [-123.661801, 51.425242], [-123.661551, 51.424516], [-123.661448, 51.423627], [-123.660962, 51.422727], [-123.660372, 51.42086], [-123.659319, 51.419721], [-123.657069, 51.418507], [-123.655424, 51.417338], [-123.654867, 51.416714], [-123.65521, 51.415685], [-123.65512, 51.415136], [-123.654272, 51.414682], [-123.651546, 51.414577], [-123.65036, 51.414134], [-123.649572, 51.413682], [-123.649584, 51.413195], [-123.650162, 51.411852], [-123.650168, 51.41058], [-123.648965, 51.409402], [-123.647878, 51.408774], [-123.647023, 51.408091], [-123.646107, 51.406956], [-123.645218, 51.405221], [-123.644576, 51.40464], [-123.643792, 51.404245], [-123.643246, 51.404077], [-123.640769, 51.403764], [-123.63897, 51.403624], [-123.638047, 51.403439], [-123.637169, 51.403038], [-123.635483, 51.401854], [-123.634799, 51.400961], [-123.634352, 51.399399], [-123.634462, 51.399103], [-123.635868, 51.39761], [-123.63602, 51.397089], [-123.63589, 51.396753], [-123.635574, 51.396374], [-123.634551, 51.395776], [-123.631975, 51.395101], [-123.631309, 51.394715], [-123.631091, 51.394521], [-123.630569, 51.393676], [-123.629841, 51.392028], [-123.62984, 51.390834], [-123.630668, 51.38992], [-123.631554, 51.389736], [-123.63275, 51.389215], [-123.633471, 51.388481], [-123.633925, 51.38683], [-123.634059, 51.383892], [-123.633759, 51.381881], [-123.633471, 51.381443], [-123.63251, 51.381008], [-123.631647, 51.380188], [-123.630996, 51.378979], [-123.630657, 51.377779], [-123.63001, 51.376554], [-123.629651, 51.376072], [-123.628909, 51.375465], [-123.628601, 51.375071], [-123.628298, 51.373854], [-123.628596, 51.373176], [-123.628565, 51.372893], [-123.627522, 51.370003], [-123.627948, 51.367844], [-123.609949, 51.309628], [-123.600197, 51.299951], [-123.586449, 51.27778], [-123.591983, 51.244381], [-123.592235, 51.243907], [-123.592333, 51.242271], [-123.594766, 51.227568], [-123.593399, 51.224766], [-123.593152, 51.223787], [-123.591007, 51.219549], [-123.59014, 51.218776], [-123.588489, 51.218082], [-123.587848, 51.217615], [-123.587402, 51.216574], [-123.590101, 51.206612], [-123.589947, 51.20617], [-123.586613, 51.202261], [-123.55297, 51.17562], [-123.552605, 51.175194], [-123.551148, 51.168493], [-123.550308, 51.166201], [-123.55008, 51.163106], [-123.549538, 51.16214], [-123.549054, 51.161467], [-123.548008, 51.16039], [-123.544409, 51.159779], [-123.542246, 51.159475], [-123.541492, 51.15868], [-123.535488, 51.151628], [-123.520538, 51.144027], [-123.509334, 51.139937], [-123.506345, 51.140328], [-123.501563, 51.141836], [-123.500159, 51.142635], [-123.498038, 51.143338], [-123.496611, 51.143462], [-123.494466, 51.143149], [-123.490851, 51.141611], [-123.48797, 51.140627], [-123.485256, 51.139085], [-123.480962, 51.138117], [-123.478634, 51.138137], [-123.47501, 51.135485], [-123.471581, 51.133829], [-123.469416, 51.132949], [-123.465132, 51.132888], [-123.46047, 51.132145], [-123.457761, 51.131043], [-123.454854, 51.128603], [-123.450527, 51.126959], [-123.440463, 51.124029], [-123.439033, 51.123819], [-123.431178, 51.12344], [-123.42761, 51.12359], [-123.425296, 51.123384], [-123.418116, 51.121887], [-123.41559, 51.120333], [-123.41305, 51.117998], [-123.409819, 51.116572], [-123.40909, 51.116126], [-123.404622, 51.115047], [-123.401021, 51.113505], [-123.400305, 51.112951], [-123.401171, 51.111483], [-123.402055, 51.110914], [-123.403298, 51.110452], [-123.404094, 51.109416], [-123.401813, 51.109219], [-123.395286, 51.109184], [-123.389859, 51.109657], [-123.388219, 51.109565], [-123.385133, 51.108589], [-123.38342, 51.108309], [-123.377975, 51.108385], [-123.374623, 51.108003], [-123.362297, 51.104664], [-123.357572, 51.103604], [-123.354535, 51.103391], [-123.352828, 51.10383], [-123.27034, 51.080768], [-123.270305, 51.080577], [-123.268148, 51.077884], [-123.266901, 51.076988], [-123.266538, 51.075919], [-123.265006, 51.074969], [-123.264302, 51.074125], [-123.259464, 51.071663], [-123.257316, 51.070318], [-123.255435, 51.068299], [-123.254257, 51.064084], [-123.252916, 51.06156], [-123.252552, 51.060266], [-123.251643, 51.058244], [-123.25155, 51.056895], [-123.252117, 51.053245], [-123.250958, 51.047005], [-123.249257, 51.043908], [-123.241112, 51.048476], [-123.237443, 51.051948], [-123.235104, 51.058088], [-123.230909, 51.058406], [-123.22568, 51.060527], [-123.221145, 51.061557], [-123.216593, 51.066386], [-123.200363, 51.072137], [-123.182325, 51.072265], [-123.179451, 51.077162], [-123.170872, 51.081658], [-123.162469, 51.093534], [-123.152134, 51.113237], [-123.146721, 51.122735], [-123.128688, 51.132596], [-123.109272, 51.139401], [-123.10069, 51.138488], [-123.098417, 51.136749], [-123.088113, 51.132715], [-123.083618, 51.133364], [-123.068215, 51.141158], [-123.061648, 51.139905], [-123.054606, 51.140255], [-123.049138, 51.143541], [-123.05032, 51.149795], [-123.058734, 51.159692], [-123.057131, 51.173697], [-123.059124, 51.180981], [-123.070265, 51.194882], [-123.080029, 51.212286], [-123.067938, 51.220323], [-123.067485, 51.220015], [-123.065937, 51.219332], [-123.065279, 51.21909], [-123.063732, 51.218714], [-123.061941, 51.218057], [-123.060937, 51.217158], [-123.059934, 51.215459], [-123.059274, 51.214948], [-123.058587, 51.214552], [-123.058213, 51.214427], [-123.056624, 51.214356], [-123.055635, 51.214041], [-123.054906, 51.213682], [-123.053403, 51.213638], [-123.052344, 51.213323], [-123.033159, 51.200651], [-123.018703, 51.198628], [-122.970224, 51.194115], [-122.905259, 51.183902], [-122.888648, 51.177266], [-122.82252, 51.144786], [-122.807359, 51.145872], [-122.790921, 51.148786], [-122.776048, 51.13762], [-122.743034, 51.159111], [-122.72633, 51.158037], [-122.720932, 51.159645], [-122.721029, 51.159769], [-122.720827, 51.160065], [-122.720839, 51.160325], [-122.720206, 51.160899], [-122.719876, 51.161008], [-122.719691, 51.161213], [-122.719318, 51.161257], [-122.718658, 51.161624], [-122.7173, 51.161522], [-122.716411, 51.161673], [-122.716026, 51.161654], [-122.715241, 51.161544], [-122.714641, 51.161318], [-122.714313, 51.161272], [-122.713083, 51.161297], [-122.712739, 51.161385], [-122.712581, 51.161358], [-122.711692, 51.161805], [-122.710858, 51.16236], [-122.710245, 51.162386], [-122.710052, 51.162302], [-122.71345, 51.147911], [-122.712611, 51.137764], [-122.707479, 51.125044], [-122.697562, 51.116112], [-122.683501, 51.104071], [-122.675187, 51.098651], [-122.661912, 51.09264], [-122.646655, 51.086155], [-122.633831, 51.081509], [-122.625963, 51.079948], [-122.617835, 51.081301], [-122.604118, 51.086237], [-122.587315, 51.096156], [-122.579393, 51.103407], [-122.579664, 51.103696], [-122.581851, 51.104503], [-122.582479, 51.104964], [-122.582749, 51.105424], [-122.582746, 51.106448], [-122.582473, 51.106906], [-122.581013, 51.108438], [-122.580367, 51.109407], [-122.580452, 51.109865], [-122.580908, 51.110326], [-122.581722, 51.110724], [-122.583267, 51.111134], [-122.588642, 51.111323], [-122.592551, 51.111974], [-122.59328, 51.112372], [-122.594006, 51.113346], [-122.594174, 51.114776], [-122.595795, 51.117694], [-122.595879, 51.118207], [-122.595333, 51.11923], [-122.592417, 51.121215], [-122.591143, 51.122407], [-122.586808, 51.122342], [-122.586617, 51.127595], [-122.596546, 51.132633], [-122.602496, 51.142573], [-122.593899, 51.166402], [-122.593806, 51.166429], [-122.593451, 51.168626], [-122.594143, 51.173395], [-122.589771, 51.176626], [-122.5777, 51.177294], [-122.568157, 51.178847], [-122.558014, 51.184349], [-122.552354, 51.191137], [-122.547628, 51.201806], [-122.530271, 51.209186], [-122.538557, 51.22101], [-122.541317, 51.22234], [-122.541355, 51.222476], [-122.542555, 51.223276], [-122.545097, 51.224355], [-122.546386, 51.225265], [-122.546937, 51.226179], [-122.551529, 51.22975], [-122.55209, 51.231107], [-122.552298, 51.232752], [-122.551616, 51.234213], [-122.551775, 51.236922], [-122.552327, 51.237828], [-122.554535, 51.239987], [-122.556637, 51.241803], [-122.560664, 51.244361], [-122.563861, 51.245119], [-122.567236, 51.246437], [-122.57134, 51.247588], [-122.57381, 51.24755], [-122.57654, 51.2479], [-122.580196, 51.247644], [-122.583572, 51.247665], [-122.585224, 51.247567], [-122.590236, 51.247598], [-122.590879, 51.247773], [-122.592254, 51.247664], [-122.593354, 51.247393], [-122.593807, 51.247449], [-122.595633, 51.248136], [-122.597181, 51.248541], [-122.598364, 51.248773], [-122.598919, 51.248777], [-122.600388, 51.248336], [-122.603144, 51.247123], [-122.604541, 51.246117], [-122.606572, 51.245348], [-122.608945, 51.244913], [-122.613974, 51.244664], [-122.614879, 51.244787], [-122.616896, 51.245474], [-122.618169, 51.246157], [-122.61871, 51.246322], [-122.621178, 51.246507], [-122.622361, 51.246802], [-122.625108, 51.246818], [-122.628031, 51.247844], [-122.629491, 51.24814], [-122.630859, 51.248761], [-122.632193, 51.249844], [-122.635157, 51.251438], [-122.638566, 51.254723], [-122.640939, 51.255968], [-122.642045, 51.25699], [-122.644155, 51.258179], [-122.64616, 51.258027], [-122.647343, 51.258131], [-122.649546, 51.259663], [-122.652937, 51.261884], [-122.653518, 51.263292], [-122.653694, 51.26341], [-122.654615, 51.263513], [-122.656714, 51.264873], [-122.657912, 51.265004], [-122.658914, 51.265855], [-122.65921, 51.266812], [-122.661683, 51.266652], [-122.662414, 51.266718], [-122.664508, 51.267735], [-122.667067, 51.268368], [-122.670554, 51.271021], [-122.672854, 51.272156], [-122.674883, 51.274371], [-122.674383, 51.276119], [-122.674966, 51.277572], [-122.675073, 51.278429], [-122.675429, 51.278899], [-122.674756, 51.279066], [-122.673403, 51.279789], [-122.67178, 51.280406], [-122.671477, 51.280665], [-122.671574, 51.280936], [-122.671833, 51.281027], [-122.672592, 51.281091], [-122.673207, 51.281355], [-122.673405, 51.281544], [-122.673814, 51.282605], [-122.674266, 51.283497], [-122.674224, 51.283586], [-122.673834, 51.283712], [-122.672399, 51.283878], [-122.672226, 51.28396], [-122.672096, 51.284354], [-122.671937, 51.284561], [-122.671418, 51.284892], [-122.670944, 51.285097], [-122.670499, 51.285186], [-122.669365, 51.285237], [-122.669076, 51.285352], [-122.668862, 51.285496], [-122.668369, 51.286124], [-122.668236, 51.286537], [-122.668293, 51.286762], [-122.668492, 51.287024], [-122.669062, 51.287304], [-122.669219, 51.287476], [-122.669316, 51.28798], [-122.669501, 51.288286], [-122.669714, 51.288439], [-122.670371, 51.288684], [-122.67139, 51.288803], [-122.671818, 51.288967], [-122.671643, 51.289443], [-122.67134, 51.289802], [-122.671337, 51.290279], [-122.671536, 51.290485], [-122.672909, 51.291065], [-122.673464, 51.291381], [-122.673636, 51.291543], [-122.673774, 51.292398], [-122.673872, 51.292596], [-122.674101, 51.292741], [-122.675017, 51.292753], [-122.675938, 51.292575], [-122.676296, 51.292612], [-122.676596, 51.292738], [-122.676724, 51.292928], [-122.676809, 51.293134], [-122.676431, 51.293862], [-122.676239, 51.294473], [-122.676569, 51.294672], [-122.67707, 51.294808], [-122.677313, 51.294943], [-122.677425, 51.295132], [-122.677339, 51.295322], [-122.676933, 51.295716], [-122.676659, 51.295894], [-122.676141, 51.296074], [-122.675738, 51.296333], [-122.675675, 51.297115], [-122.675142, 51.297743], [-122.674995, 51.298148], [-122.675008, 51.2984], [-122.675578, 51.298716], [-122.676293, 51.29923], [-122.676735, 51.29959], [-122.676862, 51.29979], [-122.676888, 51.299969], [-122.676758, 51.300274], [-122.675907, 51.301046], [-122.675726, 51.302339], [-122.67482, 51.302688], [-122.674199, 51.303037], [-122.673217, 51.30396], [-122.671877, 51.304999], [-122.671531, 51.305142], [-122.670239, 51.305237], [-122.670067, 51.305336], [-122.669444, 51.305999], [-122.668654, 51.306106], [-122.668035, 51.306491], [-122.667787, 51.306966], [-122.667881, 51.307983], [-122.667732, 51.308719], [-122.667845, 51.309107], [-122.668029, 51.30935], [-122.66867, 51.309882], [-122.668655, 51.310161], [-122.668367, 51.310332], [-122.667633, 51.310545], [-122.667345, 51.310742], [-122.666864, 51.311756], [-122.666904, 51.312233], [-122.667115, 51.312746], [-122.667083, 51.313133], [-122.666649, 51.313563], [-122.665482, 51.314297], [-122.665438, 51.314405], [-122.665593, 51.314955], [-122.665174, 51.315375], [-122.665126, 51.315852], [-122.664879, 51.31639], [-122.664546, 51.316776], [-122.664387, 51.316866], [-122.663928, 51.316946], [-122.662437, 51.316923], [-122.662206, 51.316958], [-122.661861, 51.317138], [-122.661759, 51.317236], [-122.661626, 51.317766], [-122.661278, 51.318314], [-122.660874, 51.318655], [-122.660053, 51.319002], [-122.659413, 51.320062], [-122.659326, 51.320106], [-122.658839, 51.320132], [-122.65825, 51.320059], [-122.657292, 51.319615], [-122.656734, 51.319542], [-122.656533, 51.319559], [-122.655957, 51.319935], [-122.655467, 51.319961], [-122.654566, 51.31966], [-122.652821, 51.318783], [-122.651618, 51.318519], [-122.651015, 51.318616], [-122.650322, 51.319055], [-122.649987, 51.319531], [-122.650343, 51.321033], [-122.650231, 51.321381], [-122.649037, 51.323363], [-122.649178, 51.32404], [-122.649871, 51.324602], [-122.650536, 51.324806], [-122.650864, 51.324998], [-122.651042, 51.325631], [-122.650925, 51.326034], [-122.65027, 51.326711], [-122.649641, 51.327191], [-122.648916, 51.328056], [-122.648814, 51.328492], [-122.64865, 51.328764], [-122.647944, 51.329084], [-122.647645, 51.329323], [-122.646849, 51.329661], [-122.64664, 51.32996], [-122.646374, 51.330751], [-122.645681, 51.331705], [-122.644838, 51.332541], [-122.644744, 51.333135], [-122.644837, 51.333374], [-122.645243, 51.333468], [-122.646285, 51.334024], [-122.645853, 51.334217], [-122.645826, 51.33453], [-122.645993, 51.334704], [-122.647007, 51.335177], [-122.647409, 51.335479], [-122.647419, 51.335772], [-122.645897, 51.337154], [-122.645412, 51.338343], [-122.645155, 51.339232], [-122.644823, 51.339623], [-122.644437, 51.339781], [-122.642482, 51.340253], [-122.642318, 51.340372], [-122.642226, 51.340778], [-122.64202, 51.341073], [-122.640627, 51.341771], [-122.639121, 51.342166], [-122.638935, 51.342284], [-122.63895, 51.342489], [-122.639555, 51.343229], [-122.63952, 51.343803], [-122.638497, 51.344578], [-122.636957, 51.345199], [-122.636634, 51.345676], [-122.636184, 51.347033], [-122.636004, 51.347892], [-122.635981, 51.348617], [-122.635527, 51.349033], [-122.634151, 51.349647], [-122.633395, 51.349822], [-122.632168, 51.349983], [-122.631556, 51.350245], [-122.631357, 51.350694], [-122.631599, 51.351733], [-122.631545, 51.352434], [-122.631045, 51.353116], [-122.630256, 51.353575], [-122.630084, 51.353904], [-122.630252, 51.354116], [-122.631642, 51.354348], [-122.632198, 51.354606], [-122.631972, 51.355304], [-122.631728, 51.355535], [-122.630595, 51.355359], [-122.630227, 51.355409], [-122.629329, 51.356094], [-122.628463, 51.356378], [-122.627964, 51.356751], [-122.62767, 51.356842], [-122.627058, 51.356821], [-122.626467, 51.356695], [-122.625874, 51.356769], [-122.625268, 51.357016], [-122.623875, 51.357796], [-122.623371, 51.358119], [-122.622517, 51.358994], [-122.620243, 51.360256], [-122.617875, 51.360998], [-122.617527, 51.361283], [-122.617604, 51.361696], [-122.618172, 51.362438], [-122.618577, 51.362799], [-122.619654, 51.363425], [-122.620133, 51.36397], [-122.620217, 51.364483], [-122.6196, 51.36511], [-122.619721, 51.365803], [-122.61939, 51.366871], [-122.619089, 51.366984], [-122.618581, 51.366979], [-122.618143, 51.367175], [-122.616746, 51.367197], [-122.616403, 51.367394], [-122.616527, 51.367761], [-122.617723, 51.368985], [-122.617667, 51.369221], [-122.61704, 51.369824], [-122.617022, 51.370799], [-122.616756, 51.37104], [-122.615727, 51.371419], [-122.615098, 51.371799], [-122.613419, 51.372554], [-122.613236, 51.372825], [-122.613496, 51.373665], [-122.613681, 51.373834], [-122.614581, 51.374166], [-122.616061, 51.374498], [-122.616406, 51.374744], [-122.616615, 51.375125], [-122.616543, 51.375656], [-122.616619, 51.375854], [-122.617039, 51.376127], [-122.618122, 51.376116], [-122.618384, 51.376191], [-122.618523, 51.376347], [-122.618575, 51.376995], [-122.618726, 51.377147], [-122.619931, 51.377275], [-122.621457, 51.377789], [-122.622029, 51.37789], [-122.622549, 51.377835], [-122.623019, 51.377469], [-122.623918, 51.377539], [-122.62437, 51.377699], [-122.624858, 51.378009], [-122.625189, 51.37887], [-122.625079, 51.379182], [-122.624559, 51.379645], [-122.622833, 51.380031], [-122.62243, 51.380776], [-122.621769, 51.381404], [-122.621801, 51.38186], [-122.623056, 51.383241], [-122.623063, 51.383663], [-122.622754, 51.384143], [-122.622697, 51.384412], [-122.622951, 51.384705], [-122.624481, 51.385255], [-122.624943, 51.385554], [-122.625001, 51.386152], [-122.624617, 51.387], [-122.62462, 51.387269], [-122.625016, 51.38764], [-122.625899, 51.388028], [-122.626369, 51.388336], [-122.626439, 51.388606], [-122.626349, 51.389001], [-122.626421, 51.389119], [-122.626779, 51.389273], [-122.62718, 51.389247], [-122.628508, 51.388757], [-122.628896, 51.388713], [-122.629283, 51.388858], [-122.630026, 51.389399], [-122.63054, 51.389878], [-122.63061, 51.390022], [-122.630617, 51.390966], [-122.630827, 51.391587], [-122.630866, 51.392244], [-122.631246, 51.393208], [-122.631445, 51.393397], [-122.631775, 51.393568], [-122.633638, 51.394195], [-122.633981, 51.394384], [-122.634324, 51.394692], [-122.634534, 51.395367], [-122.634445, 51.395744], [-122.634212, 51.396211], [-122.634311, 51.396454], [-122.634853, 51.397013], [-122.635006, 51.397391], [-122.635033, 51.397778], [-122.634842, 51.398308], [-122.63484, 51.398587], [-122.634979, 51.398956], [-122.635381, 51.399235], [-122.635796, 51.399336], [-122.636183, 51.399355], [-122.636672, 51.399546], [-122.637029, 51.399906], [-122.637227, 51.40032], [-122.637281, 51.400735], [-122.637105, 51.401031], [-122.635976, 51.401908], [-122.63573, 51.402213], [-122.635685, 51.402519], [-122.635926, 51.402888], [-122.636457, 51.403177], [-122.637058, 51.403377], [-122.637385, 51.403657], [-122.637355, 51.403972], [-122.63721, 51.404214], [-122.637104, 51.404681], [-122.637176, 51.404879], [-122.637688, 51.405483], [-122.638061, 51.405664], [-122.638245, 51.405889], [-122.638243, 51.406285], [-122.638053, 51.406581], [-122.637735, 51.406769], [-122.636669, 51.407135], [-122.636152, 51.407151], [-122.63549, 51.407077], [-122.635101, 51.407157], [-122.634827, 51.407426], [-122.634649, 51.408145], [-122.634373, 51.408396], [-122.634314, 51.408539], [-122.634369, 51.408844], [-122.634017, 51.409716], [-122.633755, 51.410137], [-122.633494, 51.410317], [-122.633049, 51.410478], [-122.631738, 51.410653], [-122.631364, 51.410778], [-122.63106, 51.410975], [-122.630827, 51.411244], [-122.629958, 51.411952], [-122.628877, 51.412433], [-122.627854, 51.412628], [-122.627294, 51.412465], [-122.62679, 51.41248], [-122.625753, 51.412721], [-122.625566, 51.412926], [-122.625607, 51.413161], [-122.626508, 51.41355], [-122.626765, 51.413856], [-122.626749, 51.414127], [-122.626371, 51.414709], [-122.626081, 51.414987], [-122.6251, 51.415263], [-122.624854, 51.415397], [-122.624148, 51.415494], [-122.623918, 51.415628], [-122.623872, 51.415987], [-122.624029, 51.416222], [-122.624542, 51.416619], [-122.624586, 51.416763], [-122.624525, 51.416988], [-122.62412, 51.417211], [-122.622435, 51.417502], [-122.622176, 51.4176], [-122.62203, 51.417896], [-122.621079, 51.418163], [-122.620303, 51.418089], [-122.619381, 51.418248], [-122.618719, 51.418291], [-122.617954, 51.418513], [-122.616972, 51.419148], [-122.616742, 51.41921], [-122.616353, 51.41921], [-122.615952, 51.419081], [-122.615722, 51.419071], [-122.615116, 51.419178], [-122.614742, 51.419321], [-122.613879, 51.419264], [-122.613577, 51.419308], [-122.613043, 51.419494], [-122.612008, 51.419465], [-122.611748, 51.4195], [-122.611518, 51.41958], [-122.610346, 51.420358], [-122.609826, 51.420581], [-122.609524, 51.420652], [-122.608863, 51.420677], [-122.608184, 51.42089], [-122.607693, 51.421203], [-122.607184, 51.421948], [-122.60678, 51.422126], [-122.606117, 51.422215], [-122.605096, 51.422067], [-122.604522, 51.422047], [-122.603987, 51.422225], [-122.602741, 51.423246], [-122.602392, 51.423838], [-122.602117, 51.423954], [-122.601615, 51.423935], [-122.601028, 51.42343], [-122.600757, 51.423293], [-122.600353, 51.423318], [-122.600108, 51.423534], [-122.599717, 51.423703], [-122.599142, 51.423729], [-122.598753, 51.423808], [-122.598305, 51.424013], [-122.5981, 51.424417], [-122.597667, 51.424694], [-122.597334, 51.424837], [-122.596095, 51.425157], [-122.595199, 51.425532], [-122.594373, 51.426319], [-122.593996, 51.426588], [-122.592742, 51.42688], [-122.591848, 51.427174], [-122.590938, 51.427684], [-122.590562, 51.427826], [-122.590143, 51.427906], [-122.589066, 51.427983], [-122.588677, 51.428062], [-122.588415, 51.428186], [-122.588138, 51.428645], [-122.58747, 51.429461], [-122.58689, 51.429827], [-122.586371, 51.430041], [-122.585622, 51.430219], [-122.583276, 51.430219], [-122.58286, 51.43028], [-122.582295, 51.430468], [-122.5814, 51.430959], [-122.580347, 51.431207], [-122.579828, 51.431429], [-122.579581, 51.431653], [-122.579551, 51.43178], [-122.579701, 51.432643], [-122.579482, 51.433012], [-122.579164, 51.433235], [-122.578963, 51.433296], [-122.5783, 51.433358], [-122.577193, 51.433272], [-122.57597, 51.433314], [-122.575595, 51.433419], [-122.574135, 51.434151], [-122.5736, 51.434339], [-122.573184, 51.434409], [-122.571543, 51.434322], [-122.570812, 51.434148], [-122.569594, 51.433667], [-122.568991, 51.433566], [-122.568574, 51.433564], [-122.567938, 51.43367], [-122.567129, 51.434036], [-122.566884, 51.434251], [-122.566358, 51.434977], [-122.566011, 51.43529], [-122.565836, 51.435353], [-122.564787, 51.435411], [-122.564125, 51.435266], [-122.563323, 51.434884], [-122.562475, 51.434819], [-122.562057, 51.434907], [-122.561509, 51.435166], [-122.561303, 51.435498], [-122.5611, 51.435632], [-122.560525, 51.435648], [-122.559778, 51.43543], [-122.559565, 51.435401], [-122.559382, 51.435444], [-122.559749, 51.464827], [-122.559711, 51.485123], [-122.548617, 51.484945], [-122.486024, 51.482423], [-122.472421, 51.482169], [-122.471499, 51.482074], [-122.470085, 51.482202], [-122.469194, 51.482118], [-122.469018, 51.482432], [-122.467972, 51.483272], [-122.467481, 51.483279], [-122.466576, 51.483104], [-122.465856, 51.483028], [-122.465684, 51.483083], [-122.465507, 51.483306], [-122.465476, 51.483557], [-122.465617, 51.483792], [-122.467395, 51.48443], [-122.468247, 51.484389], [-122.468433, 51.484426], [-122.469103, 51.485022], [-122.469185, 51.485291], [-122.469098, 51.485427], [-122.468837, 51.485605], [-122.467997, 51.485942], [-122.467894, 51.486059], [-122.467759, 51.48658], [-122.467511, 51.486804], [-122.46683, 51.487116], [-122.466442, 51.487194], [-122.465695, 51.487092], [-122.464901, 51.487106], [-122.46417, 51.486834], [-122.463954, 51.486805], [-122.463579, 51.486966], [-122.463116, 51.488321], [-122.46294, 51.488573], [-122.462622, 51.488742], [-122.461437, 51.489024], [-122.459047, 51.48895], [-122.45883, 51.488967], [-122.458598, 51.489091], [-122.458579, 51.48947], [-122.459998, 51.490087], [-122.460442, 51.490377], [-122.460611, 51.490621], [-122.460607, 51.490998], [-122.460432, 51.49124], [-122.459765, 51.491517], [-122.458625, 51.491709], [-122.457614, 51.491965], [-122.457267, 51.492116], [-122.455842, 51.493099], [-122.455709, 51.493395], [-122.455807, 51.493674], [-122.456034, 51.493899], [-122.456666, 51.494208], [-122.456792, 51.494442], [-122.456733, 51.494559], [-122.456166, 51.494979], [-122.455803, 51.49513], [-122.455011, 51.495127], [-122.454351, 51.495052], [-122.452899, 51.494667], [-122.452338, 51.49462], [-122.452165, 51.494654], [-122.451847, 51.494824], [-122.451801, 51.494941], [-122.451913, 51.495311], [-122.452199, 51.495455], [-122.453463, 51.495712], [-122.453619, 51.495956], [-122.453517, 51.496162], [-122.452822, 51.496402], [-122.450614, 51.496679], [-122.450022, 51.49683], [-122.449745, 51.497036], [-122.449584, 51.497286], [-122.449536, 51.497672], [-122.449357, 51.498139], [-122.448892, 51.498596], [-122.448528, 51.49881], [-122.447923, 51.49897], [-122.446454, 51.498908], [-122.445863, 51.498806], [-122.44523, 51.498813], [-122.444839, 51.498891], [-122.444418, 51.499178], [-122.444286, 51.499293], [-122.444184, 51.499545], [-122.444208, 51.499833], [-122.444322, 51.500004], [-122.445135, 51.50071], [-122.445735, 51.501045], [-122.445863, 51.501307], [-122.445787, 51.501503], [-122.4456, 51.501566], [-122.443943, 51.501603], [-122.443593, 51.501762], [-122.443435, 51.501906], [-122.443403, 51.502042], [-122.443559, 51.502311], [-122.444201, 51.502755], [-122.443806, 51.503302], [-122.443559, 51.503516], [-122.443371, 51.503543], [-122.441676, 51.503211], [-122.439293, 51.50247], [-122.439018, 51.502514], [-122.438903, 51.502559], [-122.438595, 51.502918], [-122.438447, 51.503168], [-122.438358, 51.503608], [-122.438512, 51.503754], [-122.43929, 51.503954], [-122.439875, 51.504434], [-122.439873, 51.504551], [-122.439509, 51.504864], [-122.438841, 51.505185], [-122.438243, 51.505757], [-122.438071, 51.50581], [-122.437767, 51.5058], [-122.43757, 51.505475], [-122.436896, 51.505229], [-122.436308, 51.504903], [-122.435921, 51.50482], [-122.435604, 51.504872], [-122.435269, 51.50506], [-122.434906, 51.505398], [-122.434815, 51.505696], [-122.43461, 51.505947], [-122.433781, 51.50667], [-122.43346, 51.506858], [-122.43294, 51.506991], [-122.432018, 51.507012], [-122.431236, 51.507305], [-122.429637, 51.50728], [-122.428829, 51.507411], [-122.428321, 51.50757], [-122.427322, 51.508104], [-122.427145, 51.50832], [-122.427084, 51.508634], [-122.427567, 51.509248], [-122.427633, 51.509626], [-122.427499, 51.509967], [-122.427165, 51.510137], [-122.426168, 51.510419], [-122.425159, 51.510432], [-122.424741, 51.510574], [-122.421754, 51.510775], [-122.421407, 51.51089], [-122.420854, 51.511329], [-122.418725, 51.512208], [-122.417873, 51.512213], [-122.417229, 51.512003], [-122.416695, 51.511991], [-122.415956, 51.512356], [-122.414909, 51.513071], [-122.414499, 51.513545], [-122.414117, 51.514172], [-122.413577, 51.514575], [-122.412842, 51.514642], [-122.412466, 51.514794], [-122.411657, 51.514996], [-122.409422, 51.515047], [-122.409219, 51.515137], [-122.408851, 51.515693], [-122.408605, 51.515817], [-122.408274, 51.515788], [-122.408087, 51.515643], [-122.408048, 51.515409], [-122.408172, 51.514681], [-122.408145, 51.514538], [-122.408003, 51.514429], [-122.406007, 51.513817], [-122.405029, 51.513784], [-122.404667, 51.513864], [-122.404333, 51.514015], [-122.403765, 51.514398], [-122.403327, 51.514991], [-122.402528, 51.516596], [-122.402395, 51.516748], [-122.402163, 51.516836], [-122.401702, 51.516833], [-122.401329, 51.516734], [-122.400716, 51.516308], [-122.399738, 51.51596], [-122.399308, 51.515905], [-122.39909, 51.515931], [-122.397804, 51.516392], [-122.3976, 51.516409], [-122.396939, 51.516261], [-122.395651, 51.515508], [-122.395234, 51.515452], [-122.394702, 51.515485], [-122.39434, 51.515564], [-122.393746, 51.515866], [-122.393105, 51.516314], [-122.392074, 51.516902], [-122.39184, 51.517143], [-122.391751, 51.517395], [-122.391489, 51.517618], [-122.390695, 51.517722], [-122.389831, 51.517689], [-122.389401, 51.517444], [-122.38861, 51.517252], [-122.387952, 51.51688], [-122.387536, 51.516815], [-122.387161, 51.516822], [-122.386119, 51.51715], [-122.384493, 51.517986], [-122.382859, 51.518319], [-122.382049, 51.518675], [-122.381761, 51.518601], [-122.381464, 51.518087], [-122.381194, 51.517923], [-122.380603, 51.517885], [-122.38004, 51.517936], [-122.379451, 51.517842], [-122.377814, 51.517375], [-122.376497, 51.516738], [-122.376253, 51.516701], [-122.375619, 51.516663], [-122.375143, 51.516749], [-122.374172, 51.517086], [-122.373692, 51.517362], [-122.373026, 51.517538], [-122.372839, 51.517528], [-122.372712, 51.517402], [-122.372638, 51.516422], [-122.372412, 51.516168], [-122.372095, 51.516131], [-122.371719, 51.516272], [-122.370563, 51.517409], [-122.370187, 51.517506], [-122.369409, 51.517519], [-122.36859, 51.51738], [-122.366875, 51.516418], [-122.366558, 51.516389], [-122.364748, 51.516936], [-122.364181, 51.517329], [-122.364033, 51.51758], [-122.364058, 51.51784], [-122.364673, 51.518276], [-122.364797, 51.518609], [-122.364665, 51.518789], [-122.364433, 51.518913], [-122.36266, 51.518903], [-122.361903, 51.518477], [-122.361177, 51.517691], [-122.360663, 51.51739], [-122.360059, 51.517333], [-122.359208, 51.517419], [-122.357329, 51.517867], [-122.355892, 51.518534], [-122.355585, 51.518729], [-122.354811, 51.519517], [-122.354508, 51.519569], [-122.353933, 51.519475], [-122.353528, 51.519474], [-122.352804, 51.519784], [-122.352004, 51.520337], [-122.351525, 51.520569], [-122.351193, 51.520603], [-122.350733, 51.520565], [-122.349729, 51.520207], [-122.348848, 51.520132], [-122.34824, 51.520425], [-122.347568, 51.521105], [-122.347265, 51.521129], [-122.34689, 51.521019], [-122.345762, 51.520403], [-122.345287, 51.520327], [-122.344095, 51.521103], [-122.343399, 51.52136], [-122.343189, 51.521844], [-122.342896, 51.522211], [-122.342284, 51.522586], [-122.341838, 51.522564], [-122.340807, 51.522154], [-122.340174, 51.522087], [-122.339365, 51.522137], [-122.338886, 51.522368], [-122.337201, 51.522368], [-122.336808, 51.522519], [-122.335858, 51.52254], [-122.335059, 51.522922], [-122.333729, 51.52313], [-122.333369, 51.523137], [-122.330789, 51.524138], [-122.330082, 51.524234], [-122.328756, 51.524199], [-122.327186, 51.524083], [-122.326339, 51.52387], [-122.325734, 51.523841], [-122.32513, 51.523692], [-122.324512, 51.523654], [-122.323863, 51.523677], [-122.323601, 51.523828], [-122.323036, 51.523996], [-122.322504, 51.523993], [-122.322143, 51.523892], [-122.32117, 51.523428], [-122.32051, 51.523208], [-122.319835, 51.523087], [-122.318745, 51.522775], [-122.318311, 51.522799], [-122.317747, 51.52294], [-122.317056, 51.522953], [-122.315987, 51.523083], [-122.314824, 51.522698], [-122.313966, 51.522324], [-122.31335, 51.521988], [-122.313095, 51.521726], [-122.312724, 51.521526], [-122.311733, 51.521223], [-122.310914, 51.521092], [-122.310524, 51.521145], [-122.310393, 51.521233], [-122.310021, 51.521959], [-122.310085, 51.522517], [-122.309911, 51.522651], [-122.308997, 51.522969], [-122.308406, 51.523074], [-122.307429, 51.522879], [-122.30644, 51.522433], [-122.305659, 51.522663], [-122.305051, 51.522731], [-122.304675, 51.522845], [-122.304441, 51.522979], [-122.304409, 51.523257], [-122.304292, 51.523382], [-122.303987, 51.523596], [-122.303625, 51.523692], [-122.303422, 51.523655], [-122.303081, 51.523483], [-122.302699, 51.522968], [-122.302085, 51.522596], [-122.301695, 51.522549], [-122.300182, 51.52254], [-122.298516, 51.522124], [-122.297104, 51.522216], [-122.296466, 51.522382], [-122.296249, 51.522391], [-122.295907, 51.522227], [-122.295339, 51.521674], [-122.294908, 51.521528], [-122.294246, 51.521569], [-122.294085, 51.521657], [-122.293049, 51.52256], [-122.292712, 51.522755], [-122.292019, 51.52294], [-122.291556, 51.522946], [-122.291154, 51.522827], [-122.291042, 51.522718], [-122.291163, 51.522378], [-122.291128, 51.521855], [-122.290702, 51.521323], [-122.290452, 51.520791], [-122.290224, 51.520573], [-122.289923, 51.520428], [-122.289478, 51.520344], [-122.287405, 51.520287], [-122.286231, 51.519776], [-122.285707, 51.519179], [-122.285563, 51.519061], [-122.285205, 51.518924], [-122.284385, 51.518857], [-122.283765, 51.518943], [-122.282915, 51.518866], [-122.282787, 51.518802], [-122.281918, 51.51887], [-122.281994, 51.520096], [-122.281272, 51.521946], [-122.281192, 51.523117], [-122.281377, 51.523598], [-122.281898, 51.524379], [-122.28246, 51.524987], [-122.284352, 51.526663], [-122.285596, 51.528774], [-122.286517, 51.530846], [-122.287835, 51.53242], [-122.28857, 51.532943], [-122.289181, 51.533619], [-122.289881, 51.534444], [-122.290094, 51.535023], [-122.290133, 51.536345], [-122.290008, 51.536685], [-122.289881, 51.538376], [-122.289439, 51.540179], [-122.288766, 51.541803], [-122.288931, 51.54202], [-122.289032, 51.542458], [-122.288705, 51.543522], [-122.288755, 51.543797], [-122.28866, 51.544553], [-122.28921, 51.545595], [-122.289837, 51.546407], [-122.291167, 51.547185], [-122.29164, 51.54772], [-122.29256, 51.549315], [-122.292711, 51.549817], [-122.292586, 51.550329], [-122.291769, 51.551413], [-122.29145, 51.552263], [-122.291467, 51.552682], [-122.291766, 51.553118], [-122.292034, 51.553822], [-122.292484, 51.554595], [-122.293584, 51.555674], [-122.294923, 51.556787], [-122.295261, 51.557327], [-122.296569, 51.559822], [-122.29674, 51.560883], [-122.297077, 51.562202], [-122.296878, 51.563211], [-122.296494, 51.564251], [-122.296151, 51.566567], [-122.295415, 51.568027], [-122.294889, 51.570755], [-122.295159, 51.571191], [-122.29593, 51.57197], [-122.298034, 51.573325], [-122.298181, 51.574072], [-122.298146, 51.574673], [-122.297841, 51.575495], [-122.298043, 51.57682], [-122.297905, 51.577298], [-122.297307, 51.578063], [-122.295881, 51.579429], [-122.295224, 51.580544], [-122.29481, 51.582028], [-122.293737, 51.584068], [-122.293911, 51.58462], [-122.294863, 51.585701], [-122.295752, 51.586251], [-122.297339, 51.587697], [-122.2984, 51.589106], [-122.298626, 51.590756], [-122.29926, 51.59172], [-122.301117, 51.593674], [-122.301779, 51.594749], [-122.301847, 51.5951], [-122.302668, 51.596653], [-122.303435, 51.597559], [-122.304166, 51.598395], [-122.305185, 51.599255], [-122.307361, 51.600349], [-122.308102, 51.601196], [-122.308685, 51.60158], [-122.309588, 51.602612], [-122.309974, 51.603586], [-122.309403, 51.605398], [-122.308609, 51.605896], [-122.307956, 51.607128], [-122.307586, 51.60767], [-122.307443, 51.608085], [-122.307522, 51.609089], [-122.307352, 51.609531], [-122.307259, 51.610217], [-122.307306, 51.611065], [-122.308095, 51.612499], [-122.308716, 51.613157], [-122.309176, 51.613991], [-122.309695, 51.614383], [-122.31049, 51.614852], [-122.311116, 51.615087], [-122.312599, 51.616863], [-122.313237, 51.617996], [-122.314229, 51.61911], [-122.315557, 51.620059], [-122.316808, 51.620654], [-122.318954, 51.621345], [-122.320581, 51.622195], [-122.321899, 51.62375], [-122.322207, 51.623977], [-122.323115, 51.6252], [-122.323567, 51.627741], [-122.323852, 51.628604], [-122.325318, 51.63038], [-122.325826, 51.631103], [-122.327234, 51.634029], [-122.327455, 51.634831], [-122.327398, 51.635809], [-122.327655, 51.636914], [-122.327641, 51.638727], [-122.328156, 51.639911], [-122.328138, 51.641134], [-122.327581, 51.641862], [-122.326362, 51.642544], [-122.325998, 51.642857], [-122.325304, 51.643182], [-122.324772, 51.643676], [-122.324248, 51.644464], [-122.323877, 51.645525], [-122.323899, 51.646431], [-122.324301, 51.647362], [-122.324912, 51.648026], [-122.325478, 51.648982], [-122.326406, 51.649823], [-122.328222, 51.651122], [-122.329949, 51.652279], [-122.331479, 51.652867], [-122.332784, 51.653604], [-122.334508, 51.65417], [-122.335005, 51.654443], [-122.335471, 51.654722], [-122.337597, 51.656671], [-122.337296, 51.658461], [-122.336397, 51.661104], [-122.335578, 51.662722], [-122.335673, 51.6634], [-122.335904, 51.663756], [-122.336194, 51.664662], [-122.336632, 51.665601], [-122.337165, 51.666021], [-122.338, 51.666464], [-122.338732, 51.667126], [-122.340843, 51.668006], [-122.341667, 51.668475], [-122.341956, 51.66874], [-122.344359, 51.672659], [-122.34502, 51.67319], [-122.346493, 51.674596], [-122.346855, 51.675432], [-122.346891, 51.676051], [-122.347195, 51.67709], [-122.347587, 51.677783], [-122.347754, 51.678258], [-122.348403, 51.679357], [-122.349164, 51.680351], [-122.350454, 51.681761], [-122.350945, 51.682166], [-122.352533, 51.683134], [-122.354304, 51.6845], [-122.355173, 51.684967], [-122.358017, 51.68726], [-122.359761, 51.689946], [-122.359881, 51.691605], [-122.359791, 51.69194], [-122.359342, 51.692582], [-122.358592, 51.694022], [-122.358314, 51.69511], [-122.357863, 51.695978], [-122.357415, 51.696443], [-122.357378, 51.697472], [-122.35624, 51.698611], [-122.356244, 51.698914], [-122.355936, 51.699421], [-122.355751, 51.699463], [-122.355196, 51.69998], [-122.354278, 51.700438], [-122.353715, 51.700618], [-122.352411, 51.70123], [-122.351885, 51.701704], [-122.351484, 51.702191], [-122.351426, 51.702425], [-122.351507, 51.703473], [-122.351941, 51.703888], [-122.353032, 51.704504], [-122.353696, 51.705198], [-122.353995, 51.705756], [-122.354357, 51.706897], [-122.354288, 51.707706], [-122.354514, 51.707929], [-122.355709, 51.709943], [-122.358232, 51.712148], [-122.358456, 51.712481], [-122.358567, 51.712923], [-122.359764, 51.713725], [-122.36001, 51.713975], [-122.360512, 51.715858], [-122.361905, 51.717626], [-122.362089, 51.7186], [-122.362504, 51.719441], [-122.362957, 51.720282], [-122.363356, 51.720535], [-122.364607, 51.720997], [-122.370202, 51.721941], [-122.372786, 51.722585], [-122.37569, 51.723623], [-122.377006, 51.723859], [-122.380841, 51.724828], [-122.381471, 51.725242], [-122.38376, 51.726396], [-122.384493, 51.726691], [-122.386159, 51.726901], [-122.386576, 51.727111], [-122.38781, 51.727319], [-122.389104, 51.727678], [-122.389749, 51.728059], [-122.39018, 51.72821], [-122.391953, 51.72873], [-122.392711, 51.728729], [-122.393531, 51.728806], [-122.396038, 51.729925], [-122.396671, 51.730325], [-122.397941, 51.731553], [-122.398443, 51.732223], [-122.398533, 51.732657], [-122.39844, 51.734511], [-122.39861, 51.734723], [-122.399008, 51.735843], [-122.398963, 51.736787], [-122.398643, 51.737519], [-122.39868, 51.738242], [-122.398875, 51.739083], [-122.39922, 51.739682], [-122.399305, 51.739993], [-122.399397, 51.742364], [-122.399108, 51.742808], [-122.396668, 51.745479], [-122.393064, 51.750623], [-122.39214, 51.752274], [-122.390864, 51.755143], [-122.390598, 51.757261], [-122.390484, 51.759519], [-122.390725, 51.761363], [-122.390725, 51.763091], [-122.390306, 51.764754], [-122.389238, 51.767174], [-122.38903, 51.768105], [-122.389041, 51.768488], [-122.388783, 51.76924], [-122.388613, 51.771187], [-122.388925, 51.771807], [-122.388918, 51.772176], [-122.389972, 51.772848], [-122.390798, 51.773631], [-122.391268, 51.773808], [-122.391809, 51.77386], [-122.392295, 51.774222], [-122.393036, 51.774869], [-122.393543, 51.775739], [-122.394094, 51.778126], [-122.39364, 51.779647], [-122.392851, 51.780717], [-122.392626, 51.781174], [-122.392832, 51.782604], [-122.393381, 51.783841], [-122.393904, 51.784318], [-122.394541, 51.785099], [-122.396061, 51.786241], [-122.397257, 51.786891], [-122.397643, 51.787437], [-122.398602, 51.788266], [-122.399201, 51.788531], [-122.400304, 51.788829], [-122.400852, 51.789041], [-122.401913, 51.789747], [-122.403028, 51.79025], [-122.404555, 51.791243], [-122.405669, 51.792269], [-122.405838, 51.792506], [-122.405476, 51.794532], [-122.405073, 51.795943], [-122.40485, 51.796292], [-122.404464, 51.797306], [-122.404447, 51.798545], [-122.404108, 51.801232], [-122.403844, 51.801843], [-122.404075, 51.803604], [-122.404633, 51.804786], [-122.405207, 51.805371], [-122.406366, 51.806254], [-122.407099, 51.807478], [-122.407206, 51.808398], [-122.407121, 51.809396], [-122.406724, 51.810893], [-122.407066, 51.812099], [-122.406886, 51.812459], [-122.406883, 51.812762], [-122.408144, 51.813924], [-122.408388, 51.814288], [-122.409068, 51.816236], [-122.409002, 51.816795], [-122.408681, 51.817574], [-122.408762, 51.819591], [-122.408667, 51.82024], [-122.408251, 51.820962], [-122.407649, 51.821544], [-122.405799, 51.822318], [-122.404232, 51.823846], [-122.403184, 51.825205], [-122.402337, 51.827321], [-122.401916, 51.828631], [-122.401461, 51.832153], [-122.401091, 51.832972], [-122.400534, 51.833927], [-122.400185, 51.835633], [-122.400097, 51.836527], [-122.40025, 51.83696], [-122.401195, 51.837773], [-122.401186, 51.839045], [-122.40137, 51.839526], [-122.401609, 51.839723], [-122.402165, 51.839904], [-122.402646, 51.840561], [-122.40234, 51.842057], [-122.401887, 51.842909], [-122.401617, 51.844423], [-122.401761, 51.84491], [-122.402521, 51.846034], [-122.402773, 51.847499], [-122.402349, 51.848639], [-122.401617, 51.849673], [-122.400821, 51.850178], [-122.399171, 51.85082], [-122.398172, 51.85109], [-122.397072, 51.851268], [-122.395903, 51.851628], [-122.394196, 51.852316], [-122.393049, 51.852954], [-122.390941, 51.853662], [-122.390154, 51.854046], [-122.387259, 51.855855], [-122.386404, 51.85666], [-122.385951, 51.858054], [-122.386145, 51.858756], [-122.386645, 51.859558], [-122.388388, 51.861357], [-122.388763, 51.862036], [-122.389349, 51.862864], [-122.392044, 51.865662], [-122.393535, 51.8668], [-122.393977, 51.867256], [-122.395711, 51.86825], [-122.397796, 51.86924], [-122.399876, 51.870855], [-122.400953, 51.871376], [-122.402007, 51.873958], [-122.402072, 51.874821], [-122.402413, 51.87608], [-122.402248, 51.876577], [-122.401547, 51.877695], [-122.400248, 51.87867], [-122.399133, 51.879272], [-122.39818, 51.879535], [-122.396555, 51.880129], [-122.396005, 51.880199], [-122.392308, 51.880121], [-122.390306, 51.879958], [-122.387703, 51.879411], [-122.385651, 51.879266], [-122.383549, 51.879347], [-122.380225, 51.879319], [-122.37526, 51.879551], [-122.374348, 51.879427], [-122.368977, 51.879601], [-122.36815, 51.879555], [-122.366247, 51.879292], [-122.365343, 51.879282], [-122.359965, 51.879793], [-122.357791, 51.879547], [-122.356852, 51.879367], [-122.355621, 51.879278], [-122.35404, 51.879313], [-122.350668, 51.879961], [-122.34967, 51.880512], [-122.34916, 51.880651], [-122.347748, 51.880579], [-122.345455, 51.880783], [-122.343959, 51.881105], [-122.341888, 51.881739], [-122.339977, 51.882814], [-122.337898, 51.883126], [-122.336647, 51.883214], [-122.333271, 51.884213], [-122.331355, 51.884522], [-122.328895, 51.885037], [-122.32824, 51.885236], [-122.327089, 51.885735], [-122.326112, 51.886377], [-122.323992, 51.888306], [-122.323113, 51.88932], [-122.322014, 51.890197], [-122.321072, 51.890731], [-122.319384, 51.892415], [-122.318514, 51.892894], [-122.316978, 51.893619], [-122.316298, 51.894085], [-122.315064, 51.89438], [-122.312682, 51.895489], [-122.310543, 51.896199], [-122.30982, 51.896707], [-122.308964, 51.897084], [-122.308329, 51.897496], [-122.3077, 51.898195], [-122.306252, 51.899091], [-122.305253, 51.900135], [-122.304854, 51.900936], [-122.303779, 51.902034], [-122.302744, 51.903592], [-122.302423, 51.904732], [-122.30132, 51.906168], [-122.301235, 51.906763], [-122.300681, 51.908001], [-122.30002, 51.909078], [-122.299626, 51.910006], [-122.299486, 51.910939], [-122.299101, 51.911423], [-122.297939, 51.912409], [-122.297452, 51.913075], [-122.296517, 51.914866], [-122.295694, 51.915606], [-122.295041, 51.915931], [-122.294295, 51.916193], [-122.293382, 51.917285], [-122.292666, 51.917683], [-122.291915, 51.917866], [-122.28939, 51.919034], [-122.287634, 51.919727], [-122.286643, 51.91977], [-122.284463, 51.919701], [-122.283786, 51.919906], [-122.281806, 51.920923], [-122.281351, 51.921034], [-122.280341, 51.921119], [-122.279217, 51.92151], [-122.278812, 51.921785], [-122.27721, 51.923424], [-122.276393, 51.924126], [-122.275884, 51.924432], [-122.273933, 51.926527], [-122.272847, 51.928063], [-122.271109, 51.930055], [-122.270905, 51.931009], [-122.270519, 51.93169], [-122.269539, 51.933859], [-122.269334, 51.935434], [-122.269432, 51.93675], [-122.269027, 51.938236], [-122.269061, 51.940053], [-122.269666, 51.941194], [-122.27109, 51.942729], [-122.27192, 51.943455], [-122.273, 51.945066], [-122.274043, 51.947051], [-122.274861, 51.949169], [-122.275301, 51.951217], [-122.275717, 51.952697], [-122.275801, 51.95403], [-122.276402, 51.956598], [-122.276852, 51.957724], [-122.276985, 51.958483], [-122.27702, 51.959368], [-122.27643, 51.960263], [-122.276315, 51.960594], [-122.276241, 51.961707], [-122.275923, 51.962595], [-122.275938, 51.965018], [-122.275501, 51.966938], [-122.275265, 51.967254], [-122.274612, 51.967677], [-122.274103, 51.968346], [-122.273257, 51.968986], [-122.273054, 51.969248], [-122.272737, 51.970203], [-122.27278, 51.970704], [-122.27267, 51.972065], [-122.272821, 51.973055], [-122.273309, 51.974532], [-122.273364, 51.975645], [-122.273626, 51.977555], [-122.273961, 51.97878], [-122.274809, 51.981029], [-122.275052, 51.982138], [-122.275309, 51.982694], [-122.275401, 51.983567], [-122.275539, 51.983841], [-122.275017, 51.994553], [-122.27383, 51.997553], [-122.270835, 52.003398], [-122.268204, 52.007198], [-122.267495, 52.00907], [-122.267456, 52.010404], [-122.266975, 52.011754], [-122.26631, 52.012373], [-122.265382, 52.01294], [-122.2651, 52.014275], [-122.266152, 52.019271], [-122.266846, 52.020933], [-122.267254, 52.022297], [-122.267806, 52.024922], [-122.268376, 52.028903], [-122.268809, 52.030443], [-122.270518, 52.034054], [-122.270129, 52.037196], [-122.270146, 52.039696], [-122.270445, 52.042037], [-122.271328, 52.043522], [-122.272905, 52.045461], [-122.274372, 52.047019], [-122.277745, 52.049762], [-122.279281, 52.0516], [-122.280064, 52.052887], [-122.279815, 52.054136], [-122.279298, 52.054868], [-122.277762, 52.055887], [-122.276692, 52.056391], [-122.275935, 52.057215], [-122.27573, 52.060843], [-122.275937, 52.0617], [-122.27593, 52.062701], [-122.276478, 52.064251], [-122.276269, 52.065069], [-122.276946, 52.066553], [-122.276737, 52.067332], [-122.277297, 52.068284], [-122.277954, 52.070046], [-122.278103, 52.070881], [-122.277555, 52.072611], [-122.277539, 52.073182], [-122.277813, 52.073846], [-122.277592, 52.074361], [-122.277371, 52.074651], [-122.276575, 52.07675], [-122.276196, 52.077935], [-122.275865, 52.079587], [-122.274949, 52.081891], [-122.274772, 52.083028], [-122.274841, 52.085796], [-122.275111, 52.087637], [-122.27568, 52.089071], [-122.276366, 52.089994], [-122.276557, 52.090429], [-122.278067, 52.091972], [-122.27946, 52.093909], [-122.28003, 52.095628], [-122.280391, 52.09726], [-122.281074, 52.099133], [-122.28182, 52.100886], [-122.282197, 52.101286], [-122.2831, 52.102898], [-122.283532, 52.104313], [-122.284396, 52.106352], [-122.284259, 52.108518], [-122.284073, 52.108889], [-122.283664, 52.111683], [-122.283739, 52.114372], [-122.283641, 52.115144], [-122.283768, 52.116587], [-122.283454, 52.117566], [-122.282751, 52.119066], [-122.282562, 52.120029], [-122.282652, 52.121434], [-122.283331, 52.124619], [-122.283324, 52.125041], [-122.283109, 52.1261], [-122.282149, 52.127346], [-122.281629, 52.127722], [-122.281166, 52.128288], [-122.280899, 52.129527], [-122.280924, 52.13087], [-122.280766, 52.13167], [-122.280335, 52.132491], [-122.279753, 52.134731], [-122.279098, 52.135424], [-122.278336, 52.137243], [-122.278444, 52.138565], [-122.278231, 52.139943], [-122.277477, 52.141312], [-122.276653, 52.142433], [-122.275013, 52.144353], [-122.27137, 52.147364], [-122.27041, 52.148446], [-122.269965, 52.149145], [-122.26943, 52.150963], [-122.269392, 52.151574], [-122.269901, 52.153006], [-122.271096, 52.155057], [-122.272218, 52.157214], [-122.272628, 52.158397], [-122.273399, 52.159902], [-122.27357, 52.160643], [-122.273609, 52.161381], [-122.273385, 52.163184], [-122.273365, 52.164665], [-122.274553, 52.17131], [-122.274299, 52.176405], [-122.272137, 52.184362], [-122.271704, 52.18674], [-122.271228, 52.188178], [-122.270804, 52.189993], [-122.270243, 52.194083], [-122.270371, 52.195639], [-122.270516, 52.196312], [-122.269657, 52.200323], [-122.269951, 52.202731], [-122.270363, 52.204019], [-122.270439, 52.205033], [-122.27063, 52.205785], [-122.272841, 52.208082], [-122.276557, 52.211644], [-122.279415, 52.216105], [-122.279746, 52.216871], [-122.279828, 52.21763], [-122.279768, 52.219497], [-122.279335, 52.220612], [-122.279095, 52.221989], [-122.27866, 52.222857], [-122.278508, 52.224231], [-122.277747, 52.226038], [-122.277539, 52.227614], [-122.275779, 52.232259], [-122.27526, 52.233352], [-122.274239, 52.234235], [-122.273064, 52.235843], [-122.271387, 52.238883], [-122.270835, 52.241944], [-122.270394, 52.242971], [-122.270293, 52.243689], [-122.26999, 52.244033], [-122.269129, 52.244635], [-122.268255, 52.245665], [-122.267676, 52.246731], [-122.267377, 52.247725], [-122.266177, 52.249536], [-122.266046, 52.250397], [-122.265643, 52.251047], [-122.264502, 52.251901], [-122.264051, 52.25286], [-122.263963, 52.253922], [-122.264234, 52.25468], [-122.264416, 52.255839], [-122.26414, 52.257143], [-122.264061, 52.259329], [-122.264528, 52.260415], [-122.264568, 52.261185], [-122.265246, 52.262801], [-122.265866, 52.263918], [-122.267462, 52.265707], [-122.267514, 52.266167], [-122.268634, 52.266919], [-122.269551, 52.268263], [-122.270327, 52.27042], [-122.270785, 52.27231], [-122.270596, 52.273332], [-122.271679, 52.276276], [-122.271795, 52.280593], [-122.272303, 52.281812], [-122.277347, 52.287727], [-122.284299, 52.292613], [-122.285388, 52.293547], [-122.286385, 52.294146], [-122.287846, 52.295286], [-122.288631, 52.296233], [-122.288834, 52.296937], [-122.28854, 52.298219], [-122.287469, 52.299112], [-122.287047, 52.299716], [-122.286414, 52.30289], [-122.286438, 52.303434], [-122.285254, 52.30484], [-122.281557, 52.310017], [-122.278738, 52.31183], [-122.278396, 52.312252], [-122.278277, 52.313848], [-122.276187, 52.316637], [-122.275579, 52.318757], [-122.276011, 52.32022], [-122.276873, 52.321499], [-122.278774, 52.323253], [-122.279523, 52.324113], [-122.280097, 52.325024], [-122.281219, 52.325572], [-122.282019, 52.326643], [-122.282218, 52.327681], [-122.282117, 52.328342], [-122.282645, 52.333843], [-122.283138, 52.334995], [-122.284791, 52.337269], [-122.284969, 52.337895], [-122.288313, 52.340533], [-122.289446, 52.341114], [-122.29357, 52.341901], [-122.298157, 52.343098], [-122.299969, 52.343511], [-122.304836, 52.344421], [-122.309913, 52.345189], [-122.31224, 52.345695], [-122.315395, 52.346577], [-122.318104, 52.347123], [-122.322499, 52.348512], [-122.326479, 52.349459], [-122.33524, 52.352075], [-122.344729, 52.353085], [-122.351979, 52.353273], [-122.356649, 52.354029], [-122.358342, 52.354491], [-122.360963, 52.355486], [-122.362318, 52.35619], [-122.365709, 52.35862], [-122.367151, 52.359469], [-122.371414, 52.360353], [-122.372817, 52.360913], [-122.374496, 52.362328], [-122.375838, 52.364903], [-122.375748, 52.365794], [-122.372884, 52.371125], [-122.372798, 52.372149], [-122.373098, 52.374683], [-122.373129, 52.375674], [-122.374081, 52.377351], [-122.374598, 52.377825], [-122.376114, 52.378591], [-122.37753, 52.379078], [-122.379851, 52.379716], [-122.381893, 52.379997], [-122.382674, 52.380363], [-122.383897, 52.381328], [-122.38738, 52.385086], [-122.38979, 52.388119], [-122.390693, 52.390906], [-122.39068, 52.393694], [-122.390581, 52.395058], [-122.39124, 52.397958], [-122.391894, 52.402351], [-122.391908, 52.403264], [-122.391134, 52.405208], [-122.391005, 52.40594], [-122.391323, 52.408826], [-122.392611, 52.409958], [-122.394698, 52.412546], [-122.396334, 52.415027], [-122.398931, 52.417712], [-122.400426, 52.421092], [-122.400679, 52.422218], [-122.400248, 52.423981], [-122.401379, 52.429796], [-122.40222, 52.431741], [-122.405272, 52.437546], [-122.407602, 52.440914], [-122.408948, 52.444733], [-122.410245, 52.447637], [-122.413275, 52.451793], [-122.415683, 52.454002], [-122.416789, 52.456671], [-122.419194, 52.458417], [-122.420471, 52.459858], [-122.420867, 52.460667], [-122.423164, 52.46377], [-122.424745, 52.465526], [-122.426348, 52.467581], [-122.428919, 52.469711], [-122.431714, 52.472796], [-122.433352, 52.475343], [-122.4346, 52.477916], [-122.434504, 52.479327], [-122.433132, 52.482278], [-122.431773, 52.486875], [-122.431735, 52.487941], [-122.433126, 52.491312], [-122.433142, 52.49271], [-122.432908, 52.494928], [-122.434476, 52.498792], [-122.435788, 52.5031], [-122.437907, 52.502765], [-122.441836, 52.495212], [-122.442526, 52.495288], [-122.441958, 52.496918], [-122.441478, 52.499132], [-122.442602, 52.499133], [-122.461812, 52.507818], [-122.478121, 52.506589], [-122.495124, 52.506926], [-122.552069, 52.507027], [-122.580436, 52.507294], [-122.634527, 52.506371], [-122.682742, 52.507386], [-122.740557, 52.506644], [-122.814342, 52.505933], [-122.885191, 52.505863], [-122.906998, 52.505776], [-123.226079, 52.501828], [-123.306277, 52.501024], [-123.547457, 52.501826]], [[-123.224483, 52.095558], [-123.22458, 52.097927], [-123.236115, 52.097683], [-123.236168, 52.099084], [-123.235872, 52.102774], [-123.249466, 52.10271], [-123.249276, 52.112385], [-123.249375, 52.115219], [-123.248246, 52.116228], [-123.231252, 52.116851], [-123.231176, 52.116936], [-123.230843, 52.116866], [-123.2242, 52.117101], [-123.224515, 52.106349], [-123.221589, 52.106369], [-123.221179, 52.102107], [-123.203894, 52.102217], [-123.203789, 52.095734], [-123.224483, 52.095558]], [[-123.231534, 52.053249], [-123.231536, 52.053689], [-123.231696, 52.053954], [-123.22554, 52.053448], [-123.222701, 52.053396], [-123.204877, 52.053971], [-123.180541, 52.054107], [-123.150778, 52.054138], [-123.130022, 52.054323], [-123.129704, 52.018559], [-123.129487, 52.008405], [-123.128926, 51.991925], [-123.128941, 51.987401], [-123.149665, 51.987281], [-123.16808, 51.987006], [-123.168473, 51.987506], [-123.168593, 51.988], [-123.168756, 51.989439], [-123.168702, 51.990185], [-123.168732, 51.990446], [-123.168865, 51.990625], [-123.168722, 51.991866], [-123.16842, 51.99263], [-123.168422, 51.992856], [-123.168585, 51.993871], [-123.168514, 51.994744], [-123.168912, 51.995643], [-123.169293, 51.995956], [-123.169073, 51.996127], [-123.16892, 51.996533], [-123.171533, 51.997503], [-123.172629, 51.998613], [-123.174532, 51.999633], [-123.178697, 52.000995], [-123.180034, 52.001643], [-123.182116, 52.003708], [-123.184457, 52.004801], [-123.186821, 52.006173], [-123.187377, 52.007578], [-123.188182, 52.008045], [-123.190315, 52.008813], [-123.192425, 52.009391], [-123.197345, 52.009711], [-123.198449, 52.0106], [-123.198327, 52.011705], [-123.20162, 52.014119], [-123.203344, 52.016303], [-123.204571, 52.017206], [-123.20598, 52.018062], [-123.207453, 52.018564], [-123.209287, 52.01889], [-123.210763, 52.019697], [-123.214008, 52.022536], [-123.215709, 52.024414], [-123.217261, 52.026628], [-123.217492, 52.027834], [-123.218393, 52.029173], [-123.22375, 52.030931], [-123.225372, 52.032235], [-123.228455, 52.033437], [-123.232048, 52.035302], [-123.231949, 52.037245], [-123.232671, 52.037947], [-123.233602, 52.038274], [-123.234451, 52.039049], [-123.234841, 52.040461], [-123.234332, 52.041365], [-123.232777, 52.042332], [-123.231929, 52.043568], [-123.232058, 52.044631], [-123.233433, 52.045664], [-123.234421, 52.046972], [-123.234369, 52.048449], [-123.235645, 52.050265], [-123.235125, 52.051381], [-123.234837, 52.051749], [-123.234224, 52.051967], [-123.233364, 52.052157], [-123.232813, 52.052446], [-123.23207, 52.052716], [-123.231534, 52.053249]], [[-123.171946, 51.960633], [-123.170392, 51.960682], [-123.156402, 51.961466], [-123.156214, 51.960919], [-123.154782, 51.959609], [-123.154624, 51.95904], [-123.154777, 51.958474], [-123.153319, 51.957293], [-123.152201, 51.956886], [-123.149278, 51.956801], [-123.147784, 51.957102], [-123.146585, 51.957248], [-123.145049, 51.956831], [-123.14468, 51.95635], [-123.144488, 51.955943], [-123.144375, 51.954923], [-123.144092, 51.954106], [-123.144354, 51.953354], [-123.143976, 51.952425], [-123.143525, 51.952013], [-123.1434, 51.951652], [-123.143407, 51.949998], [-123.143821, 51.949225], [-123.14462, 51.948313], [-123.146513, 51.945602], [-123.147311, 51.944012], [-123.14777, 51.943621], [-123.149107, 51.942974], [-123.149778, 51.942523], [-123.150186, 51.942094], [-123.150281, 51.941691], [-123.150063, 51.941174], [-123.149375, 51.940322], [-123.148377, 51.939568], [-123.147279, 51.939435], [-123.144527, 51.939517], [-123.142547, 51.939815], [-123.141461, 51.939876], [-123.140296, 51.939866], [-123.139868, 51.939721], [-123.139345, 51.939455], [-123.137829, 51.938117], [-123.137286, 51.936559], [-123.136404, 51.934953], [-123.135988, 51.934611], [-123.134258, 51.933789], [-123.13356, 51.933697], [-123.131894, 51.933846], [-123.128785, 51.934719], [-123.126931, 51.935669], [-123.124443, 51.936535], [-123.121941, 51.937995], [-123.120938, 51.93813], [-123.120076, 51.938122], [-123.119164, 51.937922], [-123.118248, 51.937583], [-123.117919, 51.937193], [-123.117179, 51.935303], [-123.117186, 51.933308], [-123.11694, 51.932492], [-123.116552, 51.929846], [-123.1163, 51.929337], [-123.115816, 51.928985], [-123.11276, 51.928256], [-123.112185, 51.928217], [-123.113046, 51.924877], [-123.112557, 51.911258], [-123.164887, 51.91115], [-123.171134, 51.911215], [-123.171481, 51.921591], [-123.171487, 51.943808], [-123.171946, 51.960633]], [[-122.566381, 51.991235], [-122.565564, 52.003279], [-122.543235, 52.002842], [-122.543695, 51.990882], [-122.566381, 51.991235]], [[-122.519255, 51.900471], [-122.519615, 51.901069], [-122.519593, 51.903249], [-122.519875, 51.909774], [-122.519992, 51.918138], [-122.519325, 51.942124], [-122.505769, 51.941823], [-122.448694, 51.941637], [-122.449691, 51.911724], [-122.450009, 51.899399], [-122.519255, 51.900471]]]]}, "properties": {"name": "Cariboo K", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Cariboo K", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941041", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.237026, 51.793306], [-122.237562, 51.789161], [-122.238857, 51.789088], [-122.239358, 51.789161], [-122.240854, 51.789113], [-122.241271, 51.789153], [-122.243, 51.788856], [-122.247793, 51.786879], [-122.24772, 51.784278], [-122.246744, 51.784347], [-122.243968, 51.783955], [-122.238886, 51.784052], [-122.208649, 51.783285], [-122.20812, 51.792776], [-122.237026, 51.793306]]]]}, "properties": {"name": "Alkali Lake 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Alkali Lake 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941801", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.920671, 51.769094], [-120.923798, 51.77735], [-120.923319, 51.779115], [-120.922636, 51.78652], [-120.952742, 51.78748], [-120.968977, 51.788896], [-121.037497, 51.788515], [-121.03776, 51.767384], [-121.031464, 51.767247], [-120.985595, 51.769316], [-120.962183, 51.769339], [-120.920749, 51.767884], [-120.920671, 51.769094]]]]}, "properties": {"name": "Canim Lake 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Canim Lake 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941802", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.47164, 51.796441], [-121.471889, 51.796373], [-121.472643, 51.796374], [-121.474309, 51.796863], [-121.475324, 51.796894], [-121.475698, 51.796953], [-121.476844, 51.797354], [-121.476882, 51.794307], [-121.471064, 51.794568], [-121.470952, 51.797062], [-121.4713, 51.796662], [-121.47164, 51.796441]]]]}, "properties": {"name": "Canim Lake 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Canim Lake 4", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941803", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.178957, 51.536304], [-122.179112, 51.544446], [-122.219281, 51.544832], [-122.219188, 51.552108], [-122.254897, 51.552823], [-122.254738, 51.553643], [-122.2612, 51.553707], [-122.291643, 51.552939], [-122.291467, 51.552682], [-122.29145, 51.552263], [-122.291769, 51.551413], [-122.292586, 51.550329], [-122.292711, 51.549817], [-122.292593, 51.549384], [-122.29164, 51.54772], [-122.291167, 51.547185], [-122.289837, 51.546407], [-122.28921, 51.545595], [-122.28866, 51.544553], [-122.288755, 51.543797], [-122.288705, 51.543522], [-122.289032, 51.542458], [-122.288931, 51.54202], [-122.288766, 51.541803], [-122.289439, 51.540179], [-122.289881, 51.538376], [-122.290008, 51.536685], [-122.290133, 51.536345], [-122.290094, 51.535023], [-122.289881, 51.534444], [-122.28857, 51.532943], [-122.287835, 51.53242], [-122.286517, 51.530846], [-122.285596, 51.528774], [-122.284352, 51.526663], [-122.28246, 51.524987], [-122.281898, 51.524379], [-122.281377, 51.523598], [-122.281192, 51.523117], [-122.281272, 51.521946], [-122.281994, 51.520096], [-122.281805, 51.517967], [-122.281945, 51.516579], [-122.28227, 51.515899], [-122.280917, 51.515932], [-122.273861, 51.515822], [-122.266166, 51.515885], [-122.204008, 51.515964], [-122.179039, 51.51611], [-122.178957, 51.536304]]]]}, "properties": {"name": "Canoe Creek 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Canoe Creek 3", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941804", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.042027, 52.263459], [-122.065785, 52.263906], [-122.075559, 52.264236], [-122.075493, 52.265986], [-122.075017, 52.271022], [-122.122507, 52.271995], [-122.121925, 52.279941], [-122.121896, 52.281646], [-122.146133, 52.282278], [-122.146129, 52.279707], [-122.148214, 52.259995], [-122.144862, 52.259805], [-122.092061, 52.258145], [-122.094578, 52.243037], [-122.05965, 52.243318], [-122.04406, 52.242192], [-122.042027, 52.263459]]]]}, "properties": {"name": "Deep Creek 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Deep Creek 2", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941805", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.195293, 51.59079], [-122.217047, 51.590628], [-122.217188, 51.58415], [-122.216579, 51.583516], [-122.21468, 51.584266], [-122.213177, 51.584936], [-122.212685, 51.582085], [-122.19505, 51.582381], [-122.19517, 51.582952], [-122.195293, 51.59079]]]]}, "properties": {"name": "Dog Creek 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Dog Creek 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941806", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.079165, 51.600562], [-122.105413, 51.60108], [-122.105667, 51.590163], [-122.079728, 51.589705], [-122.079165, 51.600562]]]]}, "properties": {"name": "Dog Creek 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Dog Creek 2", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941807", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.924293, 51.475281], [-123.947448, 51.475364], [-123.947447, 51.461156], [-123.941843, 51.461194], [-123.924294, 51.461148], [-123.924293, 51.475281]]]]}, "properties": {"name": "Lohbiee 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Lohbiee 3", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941808", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.499029, 52.957561], [-122.511195, 52.957792], [-122.511706, 52.956984], [-122.511815, 52.956581], [-122.511851, 52.955979], [-122.511737, 52.9556], [-122.510885, 52.9545], [-122.509971, 52.953912], [-122.508624, 52.953241], [-122.506295, 52.952368], [-122.503329, 52.951502], [-122.501829, 52.951307], [-122.499063, 52.951079], [-122.496678, 52.950604], [-122.489068, 52.950398], [-122.48215, 52.950316], [-122.482654, 52.939447], [-122.476106, 52.939204], [-122.452239, 52.938508], [-122.451231, 52.953099], [-122.450598, 52.953062], [-122.450543, 52.956613], [-122.463627, 52.957001], [-122.465411, 52.956996], [-122.477168, 52.957422], [-122.499029, 52.957561]]]]}, "properties": {"name": "Quesnel 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Quesnel 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941809", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.267652, 52.337079], [-122.283092, 52.337028], [-122.283026, 52.336889], [-122.282563, 52.336517], [-122.282233, 52.335932], [-122.28173, 52.335317], [-122.281489, 52.334758], [-122.281507, 52.334623], [-122.281135, 52.334139], [-122.278181, 52.334182], [-122.277674, 52.332326], [-122.278587, 52.332323], [-122.279134, 52.331146], [-122.279463, 52.33116], [-122.279621, 52.331498], [-122.278968, 52.332099], [-122.278947, 52.332322], [-122.280748, 52.332305], [-122.280754, 52.332165], [-122.280964, 52.331923], [-122.280732, 52.331777], [-122.280602, 52.331588], [-122.280592, 52.329457], [-122.28039, 52.328439], [-122.280707, 52.327858], [-122.280654, 52.327425], [-122.280781, 52.326878], [-122.280535, 52.32666], [-122.280509, 52.326427], [-122.280163, 52.326173], [-122.280284, 52.325921], [-122.27945, 52.325673], [-122.279115, 52.325492], [-122.278682, 52.325094], [-122.278502, 52.324508], [-122.278201, 52.323959], [-122.277782, 52.323632], [-122.277583, 52.323208], [-122.277119, 52.322819], [-122.277227, 52.322594], [-122.276937, 52.322413], [-122.276751, 52.322143], [-122.276576, 52.322033], [-122.276238, 52.321986], [-122.275948, 52.321778], [-122.275955, 52.321472], [-122.275578, 52.321146], [-122.275279, 52.320569], [-122.275153, 52.320199], [-122.275165, 52.319498], [-122.274903, 52.319334], [-122.274721, 52.318776], [-122.274843, 52.318435], [-122.275023, 52.318302], [-122.274911, 52.317977], [-122.275137, 52.317574], [-122.275203, 52.317179], [-122.275849, 52.316221], [-122.276266, 52.315809], [-122.276552, 52.315335], [-122.27772, 52.313917], [-122.27335, 52.313778], [-122.255351, 52.313393], [-122.253636, 52.333334], [-122.253471, 52.336874], [-122.267652, 52.337079]], [[-122.277208, 52.327303], [-122.277538, 52.327711], [-122.277731, 52.328263], [-122.278031, 52.328774], [-122.276319, 52.328836], [-122.276109, 52.328172], [-122.276791, 52.328061], [-122.276572, 52.327404], [-122.277208, 52.327303]]]]}, "properties": {"name": "Soda Creek 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Soda Creek 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941810", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.185669, 51.843392], [-122.186212, 51.828934], [-122.18617, 51.828037], [-122.177392, 51.82798], [-122.156922, 51.828242], [-122.154659, 51.843108], [-122.164776, 51.843552], [-122.169356, 51.84327], [-122.16973, 51.843289], [-122.170093, 51.843164], [-122.185669, 51.843392]]]]}, "properties": {"name": "Johny Sticks 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Johny Sticks 2", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941811", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.025213, 52.124371], [-122.030108, 52.12421], [-122.030362, 52.121374], [-122.03033, 52.119802], [-122.030439, 52.117663], [-122.029924, 52.117484], [-122.028979, 52.117269], [-122.028603, 52.117049], [-122.024817, 52.116578], [-122.024222, 52.116411], [-122.023646, 52.116074], [-122.023388, 52.11582], [-122.022971, 52.115555], [-122.022341, 52.114939], [-122.021751, 52.114593], [-122.021005, 52.113966], [-122.020336, 52.113143], [-122.020238, 52.112908], [-122.020405, 52.11264], [-122.02122, 52.112062], [-122.021253, 52.111927], [-122.020493, 52.111929], [-122.020482, 52.111795], [-122.020646, 52.111653], [-122.020971, 52.111538], [-122.021875, 52.111573], [-122.022062, 52.111692], [-122.021837, 52.111897], [-122.021881, 52.111968], [-122.022199, 52.112052], [-122.023425, 52.112062], [-122.024786, 52.111975], [-122.025035, 52.111914], [-122.025186, 52.111726], [-122.024915, 52.111445], [-122.024718, 52.111066], [-122.024241, 52.110828], [-122.023574, 52.110625], [-122.023072, 52.11018], [-122.022266, 52.109625], [-122.021992, 52.109515], [-122.021866, 52.109297], [-122.021836, 52.108659], [-122.021305, 52.108178], [-122.021195, 52.107899], [-122.021218, 52.10753], [-122.021294, 52.107423], [-122.0215, 52.107362], [-122.022155, 52.107368], [-122.02316, 52.10751], [-122.023847, 52.108172], [-122.023948, 52.108893], [-122.02422, 52.109092], [-122.024324, 52.109084], [-122.024678, 52.108863], [-122.025046, 52.108758], [-122.025805, 52.1088], [-122.025948, 52.108936], [-122.025695, 52.109159], [-122.025675, 52.10942], [-122.025449, 52.109678], [-122.025563, 52.109841], [-122.025753, 52.109824], [-122.026063, 52.109692], [-122.026576, 52.108977], [-122.027434, 52.108365], [-122.02795, 52.108215], [-122.028724, 52.108212], [-122.029635, 52.108588], [-122.030817, 52.108724], [-122.030958, 52.105655], [-122.029221, 52.105606], [-122.024557, 52.105897], [-122.023782, 52.105315], [-122.02323, 52.105055], [-122.01735, 52.103224], [-122.016239, 52.102722], [-122.015901, 52.102507], [-122.014623, 52.101421], [-122.013808, 52.100874], [-122.013019, 52.100405], [-122.01167, 52.099791], [-122.010831, 52.099302], [-122.008828, 52.097667], [-122.008532, 52.097285], [-122.007408, 52.094849], [-122.007157, 52.093941], [-122.007267, 52.093318], [-122.008008, 52.091904], [-122.002801, 52.093349], [-122.003009, 52.09319], [-122.002979, 52.093127], [-122.002344, 52.092878], [-122.0025, 52.092412], [-122.002007, 52.092291], [-122.001993, 52.092228], [-122.002507, 52.092043], [-122.002611, 52.091963], [-122.002645, 52.091792], [-122.002268, 52.091691], [-122.00214, 52.091519], [-122.001617, 52.091425], [-122.00143, 52.09128], [-122.001819, 52.090833], [-122.001766, 52.090653], [-122.001433, 52.090469], [-122.001407, 52.090363], [-122.001556, 52.090202], [-122.002102, 52.089945], [-122.002166, 52.089631], [-122.001561, 52.08941], [-122.00073, 52.089331], [-122.000629, 52.089259], [-122.000544, 52.089105], [-122.00086, 52.088748], [-122.000689, 52.088494], [-122.000798, 52.088181], [-122.000585, 52.087919], [-122.000329, 52.087783], [-121.988401, 52.087782], [-121.961367, 52.087661], [-121.958521, 52.087599], [-121.956775, 52.123173], [-121.976418, 52.124303], [-122.006902, 52.124316], [-122.007231, 52.125608], [-122.013769, 52.125663], [-122.01384, 52.124314], [-122.025213, 52.124371]]]]}, "properties": {"name": "Williams Lake 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Williams Lake 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941812", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.124245, 51.746562], [-121.135893, 51.746935], [-121.136054, 51.741737], [-121.136312, 51.73985], [-121.125609, 51.739276], [-121.12485, 51.739257], [-121.124245, 51.746562]]]]}, "properties": {"name": "Canim Lake 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Canim Lake 2", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941813", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.296069, 52.208011], [-124.32598, 52.207957], [-124.325712, 52.20059], [-124.325495, 52.200135], [-124.295807, 52.200292], [-124.295723, 52.202344], [-124.297012, 52.202342], [-124.298213, 52.202833], [-124.298814, 52.203837], [-124.298885, 52.204796], [-124.29832, 52.20575], [-124.296077, 52.206389], [-124.296069, 52.208011]]]]}, "properties": {"name": "Alexis Creek 14", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Alexis Creek 14", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941817", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.308538, 52.177112], [-124.321349, 52.177167], [-124.321384, 52.173057], [-124.308544, 52.173223], [-124.308538, 52.177112]]]]}, "properties": {"name": "Alexis Creek 16", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Alexis Creek 16", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941818", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.231696, 52.053954], [-123.231536, 52.053689], [-123.231534, 52.053249], [-123.231837, 52.052889], [-123.23207, 52.052716], [-123.232813, 52.052446], [-123.233364, 52.052157], [-123.234224, 52.051967], [-123.234837, 52.051749], [-123.235125, 52.051381], [-123.235645, 52.050265], [-123.234369, 52.048449], [-123.234421, 52.046972], [-123.233433, 52.045664], [-123.232058, 52.044631], [-123.231929, 52.043568], [-123.232777, 52.042332], [-123.234332, 52.041365], [-123.234841, 52.040461], [-123.234451, 52.039049], [-123.233602, 52.038274], [-123.232671, 52.037947], [-123.231949, 52.037245], [-123.232048, 52.035302], [-123.228455, 52.033437], [-123.225372, 52.032235], [-123.22375, 52.030931], [-123.218393, 52.029173], [-123.217492, 52.027834], [-123.217261, 52.026628], [-123.215709, 52.024414], [-123.214008, 52.022536], [-123.210763, 52.019697], [-123.209287, 52.01889], [-123.207453, 52.018564], [-123.20598, 52.018062], [-123.204571, 52.017206], [-123.203344, 52.016303], [-123.20162, 52.014119], [-123.198327, 52.011705], [-123.198449, 52.0106], [-123.197345, 52.009711], [-123.192425, 52.009391], [-123.190315, 52.008813], [-123.188182, 52.008045], [-123.187377, 52.007578], [-123.186821, 52.006173], [-123.184457, 52.004801], [-123.182116, 52.003708], [-123.180034, 52.001643], [-123.178697, 52.000995], [-123.174532, 51.999633], [-123.172629, 51.998613], [-123.171533, 51.997503], [-123.16892, 51.996533], [-123.169073, 51.996127], [-123.169293, 51.995956], [-123.168912, 51.995643], [-123.168514, 51.994744], [-123.168585, 51.993871], [-123.168422, 51.992856], [-123.16842, 51.99263], [-123.168722, 51.991866], [-123.168865, 51.990625], [-123.168732, 51.990446], [-123.168702, 51.990185], [-123.168756, 51.989439], [-123.168593, 51.988], [-123.168473, 51.987506], [-123.16808, 51.987006], [-123.149665, 51.987281], [-123.128941, 51.987401], [-123.128926, 51.991925], [-123.129487, 52.008405], [-123.129704, 52.018559], [-123.130022, 52.054323], [-123.150778, 52.054138], [-123.180541, 52.054107], [-123.204877, 52.053971], [-123.222701, 52.053396], [-123.22554, 52.053448], [-123.231696, 52.053954]]]]}, "properties": {"name": "Anahim's Flat 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Anahim's Flat 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941821", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.19749, 52.30666], [-124.208916, 52.306759], [-124.208901, 52.309386], [-124.209131, 52.313463], [-124.230702, 52.313324], [-124.245126, 52.313158], [-124.245095, 52.298321], [-124.197392, 52.298731], [-124.19749, 52.30666]]]]}, "properties": {"name": "Charley Boy's Meadow 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Charley Boy's Meadow 3", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941827", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.10726, 51.416285], [-124.124913, 51.41624], [-124.124238, 51.415821], [-124.124102, 51.415544], [-124.123258, 51.414589], [-124.122527, 51.414084], [-124.121835, 51.413443], [-124.121149, 51.413], [-124.120641, 51.412241], [-124.120507, 51.411505], [-124.120488, 51.410713], [-124.120884, 51.409847], [-124.121302, 51.409267], [-124.121538, 51.408648], [-124.119758, 51.408571], [-124.107479, 51.409393], [-124.10726, 51.416285]]]]}, "properties": {"name": "Chilco Lake 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Chilco Lake 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941828", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.09766, 51.428327], [-124.142045, 51.427785], [-124.140721, 51.426291], [-124.13977, 51.425742], [-124.137183, 51.425174], [-124.136441, 51.424867], [-124.136188, 51.424545], [-124.136154, 51.424303], [-124.13582, 51.423559], [-124.135735, 51.423039], [-124.135329, 51.422396], [-124.135308, 51.422089], [-124.135203, 51.421884], [-124.134384, 51.420768], [-124.133247, 51.419618], [-124.132242, 51.419061], [-124.129698, 51.418539], [-124.128972, 51.418302], [-124.127905, 51.417629], [-124.126409, 51.416961], [-124.125712, 51.416716], [-124.125476, 51.416502], [-124.124913, 51.41624], [-124.10726, 51.416285], [-124.107427, 51.411032], [-124.104904, 51.411104], [-124.085667, 51.411195], [-124.086559, 51.420088], [-124.078914, 51.420265], [-124.078875, 51.42114], [-124.063122, 51.421253], [-124.063497, 51.424652], [-124.056303, 51.424817], [-124.056447, 51.428807], [-124.061717, 51.428656], [-124.09766, 51.428327]]]]}, "properties": {"name": "Chilco Lake 1A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Chilco Lake 1A", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941829", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.833607, 51.485997], [-123.834157, 51.489362], [-123.857153, 51.488403], [-123.856987, 51.487476], [-123.85654, 51.481432], [-123.855612, 51.481412], [-123.855051, 51.481497], [-123.853317, 51.481923], [-123.852253, 51.48202], [-123.849518, 51.482148], [-123.848168, 51.482275], [-123.845704, 51.482239], [-123.845471, 51.482106], [-123.844912, 51.481408], [-123.844626, 51.480844], [-123.844217, 51.479723], [-123.84409, 51.479058], [-123.844264, 51.477564], [-123.84461, 51.47686], [-123.844962, 51.476409], [-123.845317, 51.476145], [-123.845532, 51.476081], [-123.846103, 51.476076], [-123.845599, 51.47342], [-123.84495, 51.473489], [-123.830906, 51.4739], [-123.830935, 51.475044], [-123.833607, 51.485997]]]]}, "properties": {"name": "Tanakut 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Tanakut 4", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941831", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.462914, 53.097358], [-124.488891, 53.098111], [-124.511181, 53.097749], [-124.511882, 53.091362], [-124.511622, 53.082613], [-124.50031, 53.081982], [-124.488679, 53.082049], [-124.488274, 53.082102], [-124.488057, 53.082267], [-124.48787, 53.082944], [-124.487623, 53.083135], [-124.487338, 53.083516], [-124.487435, 53.083732], [-124.487724, 53.08389], [-124.487727, 53.083971], [-124.487622, 53.083998], [-124.487718, 53.084142], [-124.488131, 53.084397], [-124.488123, 53.084657], [-124.487792, 53.084976], [-124.487802, 53.085282], [-124.488246, 53.085592], [-124.488708, 53.085586], [-124.489254, 53.085839], [-124.489143, 53.086083], [-124.488747, 53.08625], [-124.487635, 53.086516], [-124.487083, 53.086532], [-124.486744, 53.086617], [-124.485449, 53.086758], [-124.483656, 53.08715], [-124.481136, 53.087289], [-124.48057, 53.087736], [-124.479962, 53.087879], [-124.479673, 53.088171], [-124.479352, 53.088363], [-124.478404, 53.088627], [-124.477773, 53.088877], [-124.476227, 53.089094], [-124.475546, 53.089273], [-124.474773, 53.089381], [-124.471758, 53.089464], [-124.469917, 53.08972], [-124.46896, 53.089723], [-124.467289, 53.090193], [-124.465908, 53.090427], [-124.46445, 53.090579], [-124.46342, 53.0906], [-124.463, 53.090684], [-124.462208, 53.092348], [-124.462914, 53.097358]]]]}, "properties": {"name": "Kluskus 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Kluskus 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941833", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.836997, 52.992888], [-123.848937, 52.992894], [-123.849265, 52.985508], [-123.836751, 52.985543], [-123.836997, 52.992888]]]]}, "properties": {"name": "Coglistiko River 29", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Coglistiko River 29", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941835", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.573622, 52.963893], [-123.585798, 52.964081], [-123.586345, 52.972149], [-123.604437, 52.972063], [-123.604631, 52.963733], [-123.599829, 52.963815], [-123.5922, 52.963777], [-123.589357, 52.954841], [-123.589029, 52.953584], [-123.588971, 52.953591], [-123.590472, 52.947685], [-123.591144, 52.940894], [-123.589306, 52.940796], [-123.585476, 52.940841], [-123.585285, 52.940994], [-123.584469, 52.941205], [-123.583973, 52.940821], [-123.583181, 52.940583], [-123.582132, 52.940111], [-123.580282, 52.939707], [-123.579538, 52.939656], [-123.578526, 52.939697], [-123.578212, 52.939644], [-123.577688, 52.939342], [-123.577351, 52.938579], [-123.576794, 52.938052], [-123.576654, 52.937603], [-123.576288, 52.937092], [-123.576004, 52.93695], [-123.575657, 52.936628], [-123.575305, 52.935866], [-123.575033, 52.935488], [-123.570321, 52.935286], [-123.565858, 52.93551], [-123.566485, 52.945056], [-123.573292, 52.944844], [-123.573622, 52.963893]]]]}, "properties": {"name": "Nazco 20", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Nazco 20", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941837", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.063302, 52.202099], [-124.062622, 52.201894], [-124.062139, 52.201854], [-124.061701, 52.201885], [-124.061455, 52.201959], [-124.061384, 52.202139], [-124.061241, 52.20224], [-124.060671, 52.202217], [-124.06036, 52.202059], [-124.060037, 52.202043], [-124.059191, 52.202177], [-124.059498, 52.202812], [-124.059979, 52.2027], [-124.060293, 52.203003], [-124.059933, 52.203186], [-124.059467, 52.203317], [-124.058534, 52.204053], [-124.058336, 52.204361], [-124.05829, 52.204954], [-124.057433, 52.205151], [-124.056539, 52.205771], [-124.056414, 52.205987], [-124.05652, 52.207334], [-124.056473, 52.207901], [-124.056167, 52.208579], [-124.055018, 52.2101], [-124.054305, 52.210906], [-124.053816, 52.211288], [-124.05274, 52.211572], [-124.056955, 52.211378], [-124.063302, 52.202099]]]]}, "properties": {"name": "Puntzi Lake 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Puntzi Lake 2", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941838", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.982333, 52.138506], [-123.982988, 52.130913], [-123.959628, 52.131407], [-123.959243, 52.135084], [-123.948501, 52.135027], [-123.93784, 52.13509], [-123.937171, 52.14578], [-123.953243, 52.146167], [-123.956345, 52.146123], [-123.956681, 52.142986], [-123.966997, 52.143124], [-123.967793, 52.139258], [-123.967632, 52.138775], [-123.982333, 52.138506]]]]}, "properties": {"name": "Redstone Flat 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Redstone Flat 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941839", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.305454, 52.486038], [-125.305134, 52.479849], [-125.304916, 52.479703], [-125.304882, 52.479605], [-125.304901, 52.47938], [-125.305168, 52.478888], [-125.30541, 52.478695], [-125.305867, 52.478713], [-125.306684, 52.478571], [-125.307096, 52.478554], [-125.307856, 52.478737], [-125.308834, 52.478853], [-125.309326, 52.478969], [-125.310571, 52.479412], [-125.312922, 52.480409], [-125.313596, 52.480918], [-125.314654, 52.481167], [-125.31553, 52.481546], [-125.316305, 52.481737], [-125.316632, 52.481802], [-125.316971, 52.481787], [-125.318263, 52.481285], [-125.318114, 52.479266], [-125.31793, 52.479331], [-125.317341, 52.479019], [-125.316937, 52.478911], [-125.31584, 52.463575], [-125.304979, 52.463901], [-125.304554, 52.464342], [-125.304302, 52.471111], [-125.292089, 52.47176], [-125.28059, 52.472572], [-125.281353, 52.486261], [-125.305454, 52.486038]]]]}, "properties": {"name": "Squinas 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Squinas 2", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941840", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.171946, 51.960633], [-123.171487, 51.943808], [-123.171481, 51.921591], [-123.171134, 51.911215], [-123.164887, 51.91115], [-123.112557, 51.911258], [-123.113046, 51.924877], [-123.112185, 51.928217], [-123.11276, 51.928256], [-123.115816, 51.928985], [-123.1163, 51.929337], [-123.116552, 51.929846], [-123.11694, 51.932492], [-123.117186, 51.933308], [-123.117179, 51.935303], [-123.117919, 51.937193], [-123.118248, 51.937583], [-123.119164, 51.937922], [-123.120076, 51.938122], [-123.120938, 51.93813], [-123.121941, 51.937995], [-123.124443, 51.936535], [-123.126931, 51.935669], [-123.128785, 51.934719], [-123.131894, 51.933846], [-123.13356, 51.933697], [-123.134258, 51.933789], [-123.135988, 51.934611], [-123.136404, 51.934953], [-123.137286, 51.936559], [-123.137829, 51.938117], [-123.139345, 51.939455], [-123.139868, 51.939721], [-123.140296, 51.939866], [-123.141461, 51.939876], [-123.142547, 51.939815], [-123.144527, 51.939517], [-123.147279, 51.939435], [-123.148377, 51.939568], [-123.149375, 51.940322], [-123.150063, 51.941174], [-123.150281, 51.941691], [-123.150186, 51.942094], [-123.149778, 51.942523], [-123.149107, 51.942974], [-123.14777, 51.943621], [-123.147311, 51.944012], [-123.146513, 51.945602], [-123.14462, 51.948313], [-123.143821, 51.949225], [-123.143407, 51.949998], [-123.1434, 51.951652], [-123.143525, 51.952013], [-123.143976, 51.952425], [-123.144354, 51.953354], [-123.144092, 51.954106], [-123.144375, 51.954923], [-123.144488, 51.955943], [-123.14468, 51.95635], [-123.145049, 51.956831], [-123.146585, 51.957248], [-123.147784, 51.957102], [-123.149278, 51.956801], [-123.152201, 51.956886], [-123.153319, 51.957293], [-123.154777, 51.958474], [-123.154624, 51.95904], [-123.154782, 51.959609], [-123.156214, 51.960919], [-123.156402, 51.961466], [-123.170392, 51.960682], [-123.171946, 51.960633]]]]}, "properties": {"name": "Stone 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Stone 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941841", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.15557, 52.286358], [-124.161424, 52.286494], [-124.161829, 52.297474], [-124.168032, 52.297477], [-124.168212, 52.289912], [-124.16829, 52.279458], [-124.155814, 52.279497], [-124.15557, 52.286358]]]]}, "properties": {"name": "Agats Meadow 8", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Agats Meadow 8", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941844", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.343008, 52.495859], [-125.343265, 52.495999], [-125.34353, 52.495993], [-125.343919, 52.495841], [-125.344923, 52.49503], [-125.345465, 52.494731], [-125.345962, 52.494362], [-125.346503, 52.493731], [-125.347154, 52.493223], [-125.348006, 52.49291], [-125.350329, 52.492279], [-125.350571, 52.492131], [-125.350565, 52.491726], [-125.35113, 52.491813], [-125.35121, 52.491678], [-125.351128, 52.491517], [-125.350604, 52.491339], [-125.349893, 52.491263], [-125.349513, 52.491072], [-125.349003, 52.491164], [-125.348591, 52.491154], [-125.347708, 52.49092], [-125.346552, 52.49078], [-125.345999, 52.490648], [-125.345769, 52.490463], [-125.345505, 52.489929], [-125.345205, 52.489549], [-125.343441, 52.488801], [-125.343143, 52.488744], [-125.342264, 52.488798], [-125.341242, 52.488431], [-125.340021, 52.488167], [-125.339148, 52.48813], [-125.338346, 52.488012], [-125.337866, 52.488084], [-125.337155, 52.488045], [-125.336962, 52.487985], [-125.336749, 52.487576], [-125.336518, 52.487418], [-125.335681, 52.487201], [-125.334599, 52.48706], [-125.333095, 52.487018], [-125.330846, 52.486559], [-125.330661, 52.48642], [-125.330692, 52.485601], [-125.330435, 52.485192], [-125.330489, 52.485074], [-125.330891, 52.484634], [-125.332782, 52.484184], [-125.333199, 52.484004], [-125.333381, 52.483785], [-125.333385, 52.483614], [-125.333223, 52.48332], [-125.332903, 52.48312], [-125.332068, 52.482912], [-125.330786, 52.482927], [-125.329589, 52.48341], [-125.328935, 52.483548], [-125.327215, 52.483078], [-125.32667, 52.483063], [-125.32587, 52.483258], [-125.325459, 52.483293], [-125.324358, 52.483081], [-125.323696, 52.483094], [-125.322749, 52.483275], [-125.31941, 52.484231], [-125.319091, 52.484282], [-125.318559, 52.484256], [-125.317957, 52.484034], [-125.317149, 52.483493], [-125.316801, 52.483338], [-125.316473, 52.483236], [-125.315425, 52.483221], [-125.315097, 52.483137], [-125.314588, 52.482715], [-125.313718, 52.482409], [-125.313188, 52.482392], [-125.312199, 52.482627], [-125.311447, 52.482651], [-125.309584, 52.48222], [-125.307724, 52.481294], [-125.305936, 52.480294], [-125.305611, 52.48004], [-125.305134, 52.479849], [-125.305454, 52.486038], [-125.305407, 52.493239], [-125.311956, 52.493478], [-125.315406, 52.493132], [-125.341382, 52.493432], [-125.340963, 52.492349], [-125.340689, 52.491904], [-125.340704, 52.491616], [-125.340896, 52.491352], [-125.341124, 52.491193], [-125.341429, 52.491117], [-125.341988, 52.491105], [-125.342674, 52.49128], [-125.342802, 52.49144], [-125.342842, 52.491933], [-125.343017, 52.492172], [-125.343848, 52.492542], [-125.344682, 52.493012], [-125.344843, 52.49326], [-125.344866, 52.493422], [-125.344623, 52.493858], [-125.344119, 52.494318], [-125.344054, 52.49476], [-125.343302, 52.495332], [-125.343008, 52.495859]]]]}, "properties": {"name": "Thomas Squinas Ranch 2A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Thomas Squinas Ranch 2A", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941845", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.297822, 52.324283], [-124.297974, 52.320417], [-124.286421, 52.320514], [-124.286317, 52.313144], [-124.274684, 52.313371], [-124.274824, 52.320203], [-124.26877, 52.320386], [-124.268342, 52.313169], [-124.263225, 52.313279], [-124.262568, 52.305956], [-124.250443, 52.306226], [-124.2508, 52.313227], [-124.256708, 52.313108], [-124.256716, 52.320349], [-124.262725, 52.320306], [-124.262824, 52.327993], [-124.286685, 52.32772], [-124.286533, 52.324318], [-124.297822, 52.324283]]]]}, "properties": {"name": "Alexis Creek 21", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Alexis Creek 21", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941848", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.565564, 52.003279], [-122.566381, 51.991235], [-122.543695, 51.990882], [-122.543235, 52.002842], [-122.565564, 52.003279]]]]}, "properties": {"name": "Baptiste Meadow 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Baptiste Meadow 2", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941849", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.449721, 51.910544], [-122.448694, 51.941637], [-122.505769, 51.941823], [-122.519325, 51.942124], [-122.519992, 51.918138], [-122.519875, 51.909774], [-122.519593, 51.903249], [-122.519615, 51.901069], [-122.519255, 51.900471], [-122.450009, 51.899399], [-122.449721, 51.910544]]]]}, "properties": {"name": "Toosey 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Toosey 1", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941850", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.107223, 52.284995], [-125.107433, 52.287099], [-125.107245, 52.290912], [-125.107875, 52.29747], [-125.116265, 52.29746], [-125.120795, 52.297386], [-125.131442, 52.297392], [-125.130815, 52.282965], [-125.118776, 52.282722], [-125.118123, 52.281971], [-125.117291, 52.282066], [-125.113764, 52.281687], [-125.111339, 52.28104], [-125.110261, 52.280402], [-125.108766, 52.280864], [-125.107752, 52.280925], [-125.106394, 52.2813], [-125.107223, 52.284995]]]]}, "properties": {"name": "Towdystan Lake 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Towdystan Lake 3", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941851", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.538187, 53.187852], [-123.537629, 53.180625], [-123.515897, 53.181327], [-123.515797, 53.187191], [-123.517389, 53.186739], [-123.517909, 53.186423], [-123.518545, 53.185817], [-123.518886, 53.185591], [-123.519423, 53.1854], [-123.520185, 53.185298], [-123.520918, 53.185322], [-123.521068, 53.185456], [-123.521042, 53.185654], [-123.520834, 53.185816], [-123.520735, 53.186185], [-123.520246, 53.186718], [-123.520892, 53.186886], [-123.521098, 53.186544], [-123.521135, 53.186031], [-123.521582, 53.185778], [-123.521728, 53.185515], [-123.521893, 53.185389], [-123.52213, 53.185271], [-123.522368, 53.185233], [-123.522682, 53.185206], [-123.523013, 53.185258], [-123.523835, 53.185138], [-123.523967, 53.18502], [-123.524121, 53.184175], [-123.524879, 53.183785], [-123.525042, 53.183559], [-123.52525, 53.18355], [-123.525356, 53.183559], [-123.525492, 53.183683], [-123.525678, 53.184087], [-123.525607, 53.1845], [-123.525222, 53.184818], [-123.525199, 53.185456], [-123.524206, 53.186152], [-123.523867, 53.186602], [-123.523407, 53.186947], [-123.522262, 53.187491], [-123.521393, 53.187485], [-123.521065, 53.187541], [-123.521053, 53.187811], [-123.52088, 53.188013], [-123.538187, 53.187852]]]]}, "properties": {"name": "Trout Lake Alec 16", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Trout Lake Alec 16", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941852", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.052997, 52.371624], [-125.028671, 52.371752], [-125.029153, 52.379546], [-125.04058, 52.379151], [-125.041153, 52.386294], [-125.053144, 52.386081], [-125.052997, 52.371624]]]]}, "properties": {"name": "Ulkatcho 13", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Ulkatcho 13", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941854", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.579118, 51.848909], [-121.579197, 51.84999], [-121.582128, 51.849817], [-121.581963, 51.848346], [-121.581381, 51.848046], [-121.58079, 51.848362], [-121.579988, 51.848442], [-121.579118, 51.848909]]]]}, "properties": {"name": "Windy Mouth 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Windy Mouth 7", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941855", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.277344, 52.482825], [-124.277395, 52.497504], [-124.289245, 52.497376], [-124.289319, 52.482833], [-124.277344, 52.482825]]]]}, "properties": {"name": "Alexis Creek 34", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Alexis Creek 34", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941856", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.411514, 52.912879], [-125.399826, 52.912994], [-125.399843, 52.915907], [-125.399623, 52.927822], [-125.41128, 52.927588], [-125.411514, 52.912879]]]]}, "properties": {"name": "Betty Creek 18", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Betty Creek 18", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941861", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.153379, 52.973604], [-125.165738, 52.973765], [-125.166006, 52.970417], [-125.165642, 52.966544], [-125.153369, 52.966739], [-125.153379, 52.973604]]], [[[-125.141329, 52.980887], [-125.147645, 52.980975], [-125.147692, 52.973631], [-125.141378, 52.973542], [-125.141329, 52.980887]]]]}, "properties": {"name": "Salmon River Meadow 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Salmon River Meadow 7", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941862", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.327734, 53.122951], [-124.340967, 53.123473], [-124.341651, 53.118613], [-124.327846, 53.118144], [-124.327734, 53.122951]]]]}, "properties": {"name": "Sundayman's Meadow 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Sundayman's Meadow 3", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941864", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.504702, 53.225244], [-123.517344, 53.225515], [-123.516635, 53.213724], [-123.511934, 53.211831], [-123.512279, 53.211959], [-123.513395, 53.212197], [-123.514212, 53.212241], [-123.515133, 53.212188], [-123.515761, 53.211984], [-123.516534, 53.211271], [-123.517666, 53.210012], [-123.518556, 53.209395], [-123.518087, 53.209142], [-123.517109, 53.208972], [-123.51671, 53.208834], [-123.516162, 53.208317], [-123.516106, 53.208028], [-123.515805, 53.207796], [-123.515719, 53.207559], [-123.516113, 53.207274], [-123.517003, 53.205877], [-123.517376, 53.205679], [-123.517557, 53.200819], [-123.493917, 53.202767], [-123.494357, 53.207212], [-123.493375, 53.207626], [-123.492468, 53.209181], [-123.492113, 53.210959], [-123.492874, 53.21115], [-123.493042, 53.211257], [-123.493363, 53.21172], [-123.493592, 53.21232], [-123.493901, 53.212741], [-123.490619, 53.22595], [-123.496089, 53.22593], [-123.496622, 53.225816], [-123.497684, 53.225235], [-123.498182, 53.224786], [-123.504702, 53.225244]]]]}, "properties": {"name": "Euchinico Creek 17", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Euchinico Creek 17", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941866", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.081894, 51.826335], [-122.084247, 51.826137], [-122.108311, 51.825251], [-122.10855, 51.819739], [-122.108394, 51.815297], [-122.083286, 51.8149], [-122.081875, 51.814925], [-122.081894, 51.826335]]]]}, "properties": {"name": "Sandy Harry 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Sandy Harry 4", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941868", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.158992, 52.361563], [-125.159516, 52.361387], [-125.160817, 52.360776], [-125.162092, 52.359958], [-125.161952, 52.359654], [-125.161986, 52.359456], [-125.16179, 52.35936], [-125.161727, 52.359235], [-125.161831, 52.358667], [-125.161714, 52.358399], [-125.161439, 52.358161], [-125.160538, 52.357746], [-125.159867, 52.357561], [-125.159604, 52.357566], [-125.159017, 52.357865], [-125.158989, 52.357927], [-125.159156, 52.35805], [-125.159111, 52.35833], [-125.158821, 52.358407], [-125.158557, 52.358403], [-125.15815, 52.358185], [-125.157467, 52.358036], [-125.157351, 52.358057], [-125.157083, 52.358286], [-125.156832, 52.358263], [-125.156263, 52.357744], [-125.155963, 52.357578], [-125.15597, 52.357462], [-125.15607, 52.357405], [-125.156562, 52.357252], [-125.156789, 52.35706], [-125.15712, 52.356919], [-125.157201, 52.356476], [-125.157726, 52.355801], [-125.157557, 52.355372], [-125.156721, 52.354758], [-125.156411, 52.354153], [-125.157071, 52.353521], [-125.157213, 52.353095], [-125.157973, 52.35273], [-125.158086, 52.352535], [-125.154847, 52.353919], [-125.153458, 52.355643], [-125.153209, 52.356409], [-125.153229, 52.356853], [-125.15405, 52.359254], [-125.154365, 52.359631], [-125.154787, 52.359936], [-125.158225, 52.361686], [-125.15847, 52.361559], [-125.158992, 52.361563]]]]}, "properties": {"name": "Fishtrap 19", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fishtrap 19", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941871", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.104969, 51.841195], [-122.105082, 51.844943], [-122.124076, 51.845307], [-122.123711, 51.84329], [-122.123044, 51.837428], [-122.104541, 51.838412], [-122.104969, 51.841195]]]]}, "properties": {"name": "Swan Lake 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Swan Lake 3", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941872", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.135611, 51.825726], [-122.135924, 51.823539], [-122.136011, 51.82195], [-122.127469, 51.821828], [-122.121849, 51.821824], [-122.121963, 51.81901], [-122.118547, 51.818942], [-122.112971, 51.819318], [-122.10855, 51.819739], [-122.108311, 51.825251], [-122.109684, 51.825201], [-122.110167, 51.829045], [-122.114843, 51.828999], [-122.123229, 51.82925], [-122.12278, 51.826074], [-122.122801, 51.825732], [-122.135611, 51.825726]]]]}, "properties": {"name": "Alkali Lake 4A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Alkali Lake 4A", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941873", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.063122, 51.421253], [-124.078875, 51.42114], [-124.078914, 51.420265], [-124.078725, 51.414124], [-124.064688, 51.413777], [-124.062071, 51.413931], [-124.063122, 51.421253]]]]}, "properties": {"name": "Lezbye 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Lezbye 6", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941876", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.937889, 52.156167], [-123.96689, 52.156532], [-123.966997, 52.143124], [-123.956681, 52.142986], [-123.956345, 52.146123], [-123.953243, 52.146167], [-123.937171, 52.14578], [-123.937889, 52.156167]]]]}, "properties": {"name": "Redstone Flat 1A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Redstone Flat 1A", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941878", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.916864, 52.150296], [-123.915048, 52.148582], [-123.915002, 52.149006], [-123.914861, 52.149195], [-123.914397, 52.149415], [-123.913906, 52.149742], [-123.913269, 52.149946], [-123.912851, 52.150218], [-123.914395, 52.151557], [-123.916864, 52.150296]]]]}, "properties": {"name": "Michel Gardens 36", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Michel Gardens 36", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941879", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.264436, 52.449983], [-125.264713, 52.457149], [-125.288319, 52.45716], [-125.288363, 52.453003], [-125.288179, 52.442902], [-125.264525, 52.442807], [-125.264436, 52.449983]]]]}, "properties": {"name": "Ulkatcho 14A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Ulkatcho 14A", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941880", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.808467, 52.990426], [-123.810945, 52.990443], [-123.81467, 52.990369], [-123.814847, 52.986377], [-123.814783, 52.985831], [-123.808398, 52.985881], [-123.808467, 52.990426]]]]}, "properties": {"name": "Baezaeko River 27", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Baezaeko River 27", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941881", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.482428, 52.558077], [-122.480463, 52.559444], [-122.48005, 52.560684], [-122.479512, 52.561373], [-122.478624, 52.562798], [-122.478271, 52.563993], [-122.477785, 52.565205], [-122.476492, 52.567222], [-122.475712, 52.568235], [-122.474712, 52.569246], [-122.474425, 52.569747], [-122.47354, 52.57218], [-122.47321, 52.573877], [-122.473178, 52.575299], [-122.473488, 52.576531], [-122.47369, 52.576964], [-122.474125, 52.577559], [-122.47484, 52.578237], [-122.475426, 52.578707], [-122.476348, 52.579222], [-122.476579, 52.579682], [-122.477957, 52.580417], [-122.478812, 52.580664], [-122.479001, 52.580808], [-122.479334, 52.581394], [-122.480108, 52.582045], [-122.481107, 52.582525], [-122.481312, 52.582698], [-122.482213, 52.583888], [-122.482719, 52.58478], [-122.483357, 52.585556], [-122.483691, 52.586087], [-122.483847, 52.586564], [-122.484429, 52.58734], [-122.484723, 52.58878], [-122.493164, 52.587715], [-122.49258, 52.590609], [-122.496608, 52.589964], [-122.496312, 52.593974], [-122.503912, 52.594146], [-122.504548, 52.589946], [-122.507288, 52.577982], [-122.507294, 52.576957], [-122.506352, 52.56784], [-122.506395, 52.558039], [-122.499528, 52.558217], [-122.497333, 52.557079], [-122.496216, 52.556755], [-122.485763, 52.557384], [-122.483403, 52.557212], [-122.482428, 52.558077]]], [[[-122.439167, 52.566145], [-122.452476, 52.566496], [-122.453661, 52.559173], [-122.456788, 52.559263], [-122.4567, 52.557087], [-122.456907, 52.556597], [-122.457644, 52.555614], [-122.457867, 52.555142], [-122.444036, 52.554293], [-122.443355, 52.563296], [-122.439268, 52.563214], [-122.439167, 52.566145]]], [[[-122.460751, 52.557208], [-122.460846, 52.560046], [-122.462354, 52.559841], [-122.46686, 52.55982], [-122.465847, 52.56657], [-122.471665, 52.566475], [-122.472024, 52.565782], [-122.473346, 52.56381], [-122.474133, 52.562159], [-122.474717, 52.561443], [-122.47567, 52.560511], [-122.476268, 52.560055], [-122.476523, 52.55959], [-122.477796, 52.558049], [-122.479012, 52.55631], [-122.479524, 52.555323], [-122.479925, 52.553869], [-122.479898, 52.551968], [-122.462239, 52.554798], [-122.460862, 52.555181], [-122.460751, 52.557208]]]]}, "properties": {"name": "Alexandria", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Alexandria", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941882", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.248246, 52.116228], [-123.249375, 52.115219], [-123.249276, 52.112385], [-123.249466, 52.10271], [-123.235872, 52.102774], [-123.236168, 52.099084], [-123.236115, 52.097683], [-123.22458, 52.097927], [-123.224483, 52.095558], [-123.203789, 52.095734], [-123.203894, 52.102217], [-123.221179, 52.102107], [-123.221589, 52.106369], [-123.224515, 52.106349], [-123.2242, 52.117101], [-123.230843, 52.116866], [-123.231176, 52.116936], [-123.231252, 52.116851], [-123.248246, 52.116228]]]]}, "properties": {"name": "Anahim's Meadow", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Anahim's Meadow", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941883", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.044245, 51.444762], [-124.044412, 51.446487], [-124.050307, 51.446501], [-124.056223, 51.446445], [-124.056099, 51.444614], [-124.056258, 51.436649], [-124.056154, 51.428825], [-124.056447, 51.428807], [-124.056303, 51.424817], [-124.044893, 51.424969], [-124.044749, 51.428991], [-124.043394, 51.429001], [-124.044245, 51.444762]]]]}, "properties": {"name": "Garden", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Garden", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941884", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.073863, 51.861888], [-122.108102, 51.861426], [-122.10809, 51.847823], [-122.101302, 51.847772], [-122.101393, 51.841695], [-122.078368, 51.841742], [-122.078376, 51.847762], [-122.073476, 51.847783], [-122.073863, 51.861888]]]]}, "properties": {"name": "Little Springs", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Little Springs", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941885", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.42691, 52.970288], [-122.426531, 52.970522], [-122.426614, 52.970979], [-122.426373, 52.971288], [-122.426234, 52.971657], [-122.426233, 52.972915], [-122.427426, 52.973062], [-122.432285, 52.973158], [-122.432069, 52.969508], [-122.425343, 52.969323], [-122.42691, 52.970288]]]]}, "properties": {"name": "Dragon Lake 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Dragon Lake 3", "economic_region_id": "5950", "census_division_code": "5941", "census_subdivision_code": "5941886", "regional_district_aka_census_division": "Cariboo"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.917572, 50.590875], [-126.917713, 50.591246], [-126.918837, 50.592344], [-126.920919, 50.593787], [-126.920603, 50.589371], [-126.926441, 50.589465], [-126.927018, 50.588], [-126.928763, 50.588008], [-126.930043, 50.587842], [-126.930154, 50.587419], [-126.935613, 50.586819], [-126.933643, 50.581566], [-126.932393, 50.579882], [-126.930946, 50.578428], [-126.927221, 50.575959], [-126.924793, 50.574851], [-126.92169, 50.573968], [-126.920138, 50.573775], [-126.918433, 50.573793], [-126.915654, 50.574117], [-126.913129, 50.573466], [-126.911011, 50.573302], [-126.908874, 50.57349], [-126.906733, 50.573983], [-126.905427, 50.574416], [-126.904264, 50.57506], [-126.90357, 50.575635], [-126.902864, 50.576443], [-126.901532, 50.578941], [-126.901463, 50.581084], [-126.902156, 50.582475], [-126.903321, 50.583797], [-126.91083, 50.583828], [-126.910688, 50.583091], [-126.915147, 50.583176], [-126.915593, 50.588178], [-126.915592, 50.588856], [-126.917572, 50.590875]], [[-126.928319, 50.583329], [-126.925207, 50.583195], [-126.925117, 50.58239], [-126.926818, 50.582485], [-126.926735, 50.581841], [-126.928047, 50.581485], [-126.928356, 50.581819], [-126.928406, 50.582009], [-126.928419, 50.582484], [-126.928254, 50.582484], [-126.928319, 50.583329]]]]}, "properties": {"name": "Alert Bay - Village", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alert Bay - Village", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943008", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.111512, 50.593948], [-127.113662, 50.593877], [-127.115897, 50.593568], [-127.117695, 50.593135], [-127.119477, 50.593012], [-127.122625, 50.593638], [-127.123686, 50.590292], [-127.123674, 50.58471], [-127.123584, 50.582336], [-127.124424, 50.573061], [-127.122589, 50.572482], [-127.120966, 50.572274], [-127.101263, 50.571985], [-127.101001, 50.579043], [-127.091266, 50.578245], [-127.069557, 50.57865], [-127.047279, 50.578518], [-127.047292, 50.586847], [-127.043106, 50.586725], [-127.043246, 50.588264], [-127.041865, 50.591479], [-127.047574, 50.591979], [-127.065054, 50.593184], [-127.086628, 50.594984], [-127.08669, 50.595848], [-127.110447, 50.595627], [-127.110481, 50.593866], [-127.111512, 50.593948]]], [[[-127.143848, 50.610132], [-127.145725, 50.610557], [-127.150946, 50.611409], [-127.156043, 50.613824], [-127.162466, 50.615326], [-127.168472, 50.61627], [-127.169574, 50.605332], [-127.171021, 50.592382], [-127.173189, 50.578987], [-127.1503, 50.576738], [-127.143848, 50.610132]]]]}, "properties": {"name": "Port McNeill", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Port McNeill", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943012", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.441468, 50.377582], [-127.441208, 50.378388], [-127.441537, 50.382385], [-127.441118, 50.384369], [-127.451395, 50.392845], [-127.455163, 50.393262], [-127.459809, 50.393348], [-127.473047, 50.402167], [-127.471136, 50.404725], [-127.471016, 50.424133], [-127.470867, 50.434341], [-127.484421, 50.434702], [-127.484868, 50.447374], [-127.493212, 50.447537], [-127.506596, 50.44685], [-127.513467, 50.446756], [-127.519843, 50.444695], [-127.522126, 50.443861], [-127.51479, 50.436028], [-127.503941, 50.422981], [-127.496794, 50.409618], [-127.49473, 50.404053], [-127.48896, 50.398099], [-127.482892, 50.393016], [-127.474855, 50.389094], [-127.469611, 50.385809], [-127.462387, 50.3825], [-127.455411, 50.380028], [-127.447812, 50.375557], [-127.447547, 50.374771], [-127.443381, 50.375435], [-127.441468, 50.377582]]]]}, "properties": {"name": "Port Alice", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Port Alice", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943017", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.493855, 50.7306], [-127.494053, 50.730584], [-127.49425, 50.730668], [-127.494647, 50.73062], [-127.495683, 50.731029], [-127.4964, 50.7312], [-127.4983, 50.731188], [-127.499062, 50.731288], [-127.499286, 50.731372], [-127.500594, 50.732125], [-127.50095, 50.732526], [-127.501162, 50.732934], [-127.50215, 50.733001], [-127.502635, 50.733276], [-127.50262, 50.734415], [-127.504188, 50.733899], [-127.505265, 50.733873], [-127.523164, 50.734561], [-127.522754, 50.728999], [-127.521409, 50.714978], [-127.521334, 50.707188], [-127.520766, 50.705704], [-127.50617, 50.705551], [-127.495234, 50.705821], [-127.493813, 50.703206], [-127.494827, 50.690827], [-127.491019, 50.690951], [-127.490218, 50.690671], [-127.489125, 50.690061], [-127.487444, 50.690168], [-127.488043, 50.688245], [-127.48544, 50.688215], [-127.485116, 50.688278], [-127.484125, 50.68829], [-127.482405, 50.688394], [-127.479252, 50.688778], [-127.478434, 50.688815], [-127.477681, 50.688816], [-127.476896, 50.688625], [-127.475489, 50.688455], [-127.473213, 50.688425], [-127.47191, 50.688558], [-127.469331, 50.689043], [-127.466523, 50.6892], [-127.46617, 50.683751], [-127.435425, 50.68325], [-127.418115, 50.682409], [-127.41751, 50.6806], [-127.417723, 50.676885], [-127.398801, 50.675887], [-127.383725, 50.676118], [-127.383985, 50.673244], [-127.379301, 50.673227], [-127.379129, 50.668532], [-127.372223, 50.669031], [-127.372256, 50.66586], [-127.351576, 50.666497], [-127.351593, 50.668273], [-127.346404, 50.6683], [-127.345503, 50.662322], [-127.328031, 50.662674], [-127.328868, 50.671067], [-127.328887, 50.672823], [-127.326093, 50.674936], [-127.327734, 50.676176], [-127.331605, 50.675658], [-127.336752, 50.675999], [-127.343066, 50.680245], [-127.353541, 50.68471], [-127.366033, 50.689443], [-127.372413, 50.692847], [-127.376016, 50.696553], [-127.377078, 50.699907], [-127.381314, 50.70336], [-127.385844, 50.70396], [-127.390237, 50.703076], [-127.394469, 50.70069], [-127.402522, 50.699516], [-127.411026, 50.697015], [-127.415025, 50.699281], [-127.418522, 50.702354], [-127.420788, 50.705078], [-127.420495, 50.71411], [-127.419352, 50.716511], [-127.415987, 50.717555], [-127.415633, 50.71853], [-127.423301, 50.718336], [-127.427622, 50.718367], [-127.428839, 50.726463], [-127.441867, 50.725656], [-127.456169, 50.722333], [-127.456403, 50.721699], [-127.45694, 50.721222], [-127.456833, 50.722179], [-127.459878, 50.722536], [-127.464757, 50.723574], [-127.46851, 50.722779], [-127.47406, 50.727377], [-127.487283, 50.732932], [-127.491816, 50.732084], [-127.492761, 50.731799], [-127.492621, 50.73124], [-127.492973, 50.731128], [-127.493452, 50.730775], [-127.493855, 50.7306]], [[-127.410074, 50.690154], [-127.410753, 50.690401], [-127.412478, 50.691186], [-127.411463, 50.69205], [-127.413748, 50.692037], [-127.413891, 50.694533], [-127.414043, 50.695268], [-127.413277, 50.695103], [-127.412362, 50.694992], [-127.410505, 50.695031], [-127.410361, 50.695063], [-127.409898, 50.695364], [-127.409447, 50.695294], [-127.408936, 50.695305], [-127.408396, 50.695388], [-127.408168, 50.695448], [-127.40792, 50.695678], [-127.40769, 50.695755], [-127.406485, 50.695848], [-127.405885, 50.696], [-127.405452, 50.696203], [-127.402994, 50.696496], [-127.40303, 50.695911], [-127.40289, 50.695254], [-127.405718, 50.695205], [-127.405757, 50.694505], [-127.408089, 50.694549], [-127.408051, 50.693988], [-127.40818, 50.693453], [-127.408195, 50.692563], [-127.408105, 50.692069], [-127.39638, 50.692102], [-127.396421, 50.688948], [-127.399372, 50.688587], [-127.399578, 50.689265], [-127.402864, 50.689571], [-127.40303, 50.688852], [-127.404222, 50.688962], [-127.405457, 50.689733], [-127.405687, 50.689958], [-127.407161, 50.690249], [-127.40747, 50.689625], [-127.410074, 50.690154]], [[-127.385799, 50.694456], [-127.385685, 50.696878], [-127.39662, 50.696985], [-127.39635, 50.697741], [-127.394418, 50.69757], [-127.393488, 50.697605], [-127.393063, 50.697812], [-127.392588, 50.698507], [-127.39235, 50.698531], [-127.392104, 50.698512], [-127.391334, 50.698265], [-127.390284, 50.69812], [-127.389771, 50.698122], [-127.388979, 50.69843], [-127.388617, 50.698811], [-127.388088, 50.699201], [-127.387735, 50.699609], [-127.387418, 50.699767], [-127.386213, 50.699796], [-127.385543, 50.69993], [-127.384638, 50.699864], [-127.384141, 50.699947], [-127.383732, 50.699896], [-127.383566, 50.699767], [-127.383548, 50.699461], [-127.383466, 50.699353], [-127.382653, 50.699117], [-127.382343, 50.698662], [-127.381689, 50.698716], [-127.381514, 50.698471], [-127.381095, 50.69833], [-127.380847, 50.698138], [-127.380968, 50.697493], [-127.380941, 50.697024], [-127.380149, 50.694424], [-127.385799, 50.694456]]], [[[-127.498688, 50.602121], [-127.515405, 50.60147], [-127.514011, 50.595397], [-127.511895, 50.594794], [-127.509642, 50.596762], [-127.509449, 50.596795], [-127.508287, 50.592382], [-127.496566, 50.592353], [-127.496564, 50.592988], [-127.489136, 50.59279], [-127.483232, 50.592431], [-127.483385, 50.595112], [-127.483463, 50.595445], [-127.49105, 50.59795], [-127.491813, 50.600752], [-127.498356, 50.600638], [-127.498688, 50.602121]]]]}, "properties": {"name": "Port Hardy", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Port Hardy", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943023", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.867273, 50.984817], [-127.891685, 50.991772], [-127.908168, 51.000234], [-127.99284, 51.080989], [-127.999843, 51.080322], [-128.539475, 51.024663], [-128.844878, 50.991893], [-129.084384, 50.965575], [-129.093931, 50.951517], [-129.11151, 50.906039], [-129.119891, 50.852586], [-129.119486, 50.812762], [-129.101922, 50.755013], [-129.076311, 50.706962], [-129.059578, 50.686358], [-129.03067, 50.655555], [-128.984165, 50.613835], [-128.870434, 50.51685], [-128.800031, 50.46068], [-128.694454, 50.374492], [-128.570527, 50.275088], [-128.424029, 50.204146], [-128.358095, 50.177223], [-128.184402, 50.104356], [-128.06818, 50.045016], [-128.0, 50.005441], [-128.0, 50.000002], [-127.990668, 50.000011], [-127.984685, 49.996531], [-127.923393, 49.934489], [-127.923375, 49.934645], [-127.923521, 49.934807], [-127.914189, 50.011831], [-127.897964, 50.055448], [-127.95201, 50.090809], [-127.967404, 50.122169], [-127.917327, 50.128661], [-127.909549, 50.124435], [-127.907587, 50.119101], [-127.90232, 50.115753], [-127.895411, 50.115405], [-127.892123, 50.119714], [-127.880454, 50.12618], [-127.860854, 50.142232], [-127.850642, 50.143863], [-127.843496, 50.137234], [-127.838456, 50.140014], [-127.827909, 50.145313], [-127.821716, 50.145226], [-127.814967, 50.144059], [-127.807395, 50.142572], [-127.803379, 50.141596], [-127.799425, 50.14223], [-127.794118, 50.144072], [-127.7895, 50.146613], [-127.782511, 50.148814], [-127.779051, 50.148918], [-127.775303, 50.147177], [-127.771384, 50.146814], [-127.767986, 50.148529], [-127.765376, 50.15156], [-127.766725, 50.153959], [-127.769857, 50.156617], [-127.763324, 50.159283], [-127.757774, 50.164495], [-127.748059, 50.162897], [-127.742457, 50.162891], [-127.736224, 50.163795], [-127.732194, 50.16642], [-127.72709, 50.175705], [-127.739465, 50.180507], [-127.741275, 50.183375], [-127.734726, 50.189646], [-127.715325, 50.188552], [-127.706849, 50.188731], [-127.701339, 50.189337], [-127.700638, 50.202069], [-127.692485, 50.203095], [-127.695529, 50.211357], [-127.692583, 50.213537], [-127.688946, 50.215016], [-127.68462, 50.215794], [-127.664138, 50.233279], [-127.661863, 50.239768], [-127.650677, 50.23875], [-127.644471, 50.238652], [-127.639777, 50.239576], [-127.637055, 50.241988], [-127.637134, 50.246212], [-127.638537, 50.250228], [-127.632444, 50.250246], [-127.62558, 50.254665], [-127.623816, 50.257016], [-127.616473, 50.258356], [-127.611238, 50.260804], [-127.604853, 50.262083], [-127.598079, 50.267115], [-127.596618, 50.273924], [-127.598209, 50.279172], [-127.599092, 50.281107], [-127.592528, 50.283763], [-127.589286, 50.284094], [-127.585763, 50.282579], [-127.579738, 50.283708], [-127.566283, 50.288168], [-127.56265, 50.292253], [-127.551462, 50.293832], [-127.542089, 50.292065], [-127.53541, 50.288885], [-127.528868, 50.285324], [-127.526162, 50.278917], [-127.521453, 50.277226], [-127.512457, 50.277917], [-127.50606, 50.276581], [-127.488946, 50.27157], [-127.48538, 50.268442], [-127.475972, 50.267665], [-127.468346, 50.267148], [-127.461813, 50.263583], [-127.45583, 50.261101], [-127.443821, 50.259738], [-127.440442, 50.257838], [-127.4283, 50.259463], [-127.421041, 50.258796], [-127.414265, 50.255051], [-127.410386, 50.250475], [-127.402284, 50.253207], [-127.39303, 50.256966], [-127.382261, 50.260497], [-127.377765, 50.257576], [-127.381261, 50.262102], [-127.382476, 50.264298], [-127.383325, 50.266138], [-127.383625, 50.267697], [-127.382835, 50.2697], [-127.38156, 50.271702], [-127.379506, 50.273302], [-127.379721, 50.273635], [-127.379054, 50.275309], [-127.37797, 50.279572], [-127.376781, 50.281256], [-127.374199, 50.282621], [-127.371808, 50.284097], [-127.36905, 50.285351], [-127.367076, 50.285707], [-127.363463, 50.285577], [-127.364572, 50.287194], [-127.365463, 50.288838], [-127.366227, 50.290866], [-127.366806, 50.292968], [-127.367167, 50.294853], [-127.365103, 50.294979], [-127.364355, 50.295094], [-127.362795, 50.295127], [-127.362061, 50.295215], [-127.361889, 50.295285], [-127.36146, 50.295548], [-127.361326, 50.295745], [-127.361104, 50.296928], [-127.360391, 50.297629], [-127.360269, 50.297942], [-127.360592, 50.299998], [-127.361039, 50.300418], [-127.361548, 50.300767], [-127.361872, 50.301113], [-127.362068, 50.301601], [-127.362154, 50.30234], [-127.36235, 50.302748], [-127.36254, 50.302939], [-127.36323, 50.30329], [-127.363595, 50.3037], [-127.364202, 50.304816], [-127.366083, 50.306127], [-127.366896, 50.306941], [-127.367342, 50.307845], [-127.368754, 50.308909], [-127.369727, 50.309192], [-127.372259, 50.309516], [-127.376207, 50.30972], [-127.429048, 50.336975], [-127.434032, 50.338693], [-127.439828, 50.340397], [-127.439995, 50.341082], [-127.439882, 50.342465], [-127.444529, 50.350574], [-127.446513, 50.360695], [-127.446312, 50.369303], [-127.447547, 50.374771], [-127.447812, 50.375557], [-127.455411, 50.380028], [-127.462387, 50.3825], [-127.469611, 50.385809], [-127.474855, 50.389094], [-127.482892, 50.393016], [-127.48896, 50.398099], [-127.49473, 50.404053], [-127.496794, 50.409618], [-127.503941, 50.422981], [-127.51479, 50.436028], [-127.522126, 50.443861], [-127.519843, 50.444695], [-127.545807, 50.466685], [-127.568885, 50.487666], [-127.602601, 50.509115], [-127.62282, 50.523776], [-127.625693, 50.525635], [-127.635244, 50.527348], [-127.653937, 50.528462], [-127.66572, 50.528802], [-127.665867, 50.532139], [-127.665721, 50.542633], [-127.6267, 50.544749], [-127.626865, 50.54685], [-127.62559, 50.546906], [-127.622287, 50.54634], [-127.620496, 50.546663], [-127.620272, 50.546909], [-127.620022, 50.548135], [-127.620429, 50.549236], [-127.620197, 50.549637], [-127.621457, 50.552245], [-127.623184, 50.579752], [-127.623115, 50.587088], [-127.662629, 50.589931], [-127.692461, 50.593104], [-127.709906, 50.594668], [-127.759121, 50.597127], [-127.759331, 50.607185], [-127.760188, 50.63056], [-127.761495, 50.671577], [-127.762531, 50.696046], [-127.763246, 50.737846], [-127.765215, 50.768198], [-127.759403, 50.768336], [-127.742999, 50.768907], [-127.651087, 50.771329], [-127.602721, 50.771223], [-127.602999, 50.796272], [-127.603422, 50.808646], [-127.567967, 50.803942], [-127.520498, 50.802522], [-127.489203, 50.803582], [-127.459507, 50.801815], [-127.426228, 50.82798], [-127.52906, 50.857711], [-127.586792, 50.878351], [-127.630345, 50.894873], [-127.681804, 50.92303], [-127.755841, 50.958177], [-127.808327, 50.972078], [-127.867273, 50.984817]], [[-127.984036, 50.921015], [-127.983778, 50.921048], [-127.983297, 50.921017], [-127.98259, 50.920742], [-127.981594, 50.920121], [-127.980844, 50.919917], [-127.980277, 50.919858], [-127.979195, 50.919885], [-127.978683, 50.919818], [-127.978234, 50.919597], [-127.977555, 50.919429], [-127.977288, 50.919194], [-127.976925, 50.919273], [-127.977288, 50.919193], [-127.977411, 50.918835], [-127.97737, 50.918754], [-127.976977, 50.918525], [-127.975748, 50.918146], [-127.975464, 50.918089], [-127.974852, 50.918084], [-127.973969, 50.918157], [-127.97284, 50.918381], [-127.972224, 50.918529], [-127.970964, 50.918967], [-127.970679, 50.919], [-127.970202, 50.919284], [-127.968925, 50.920397], [-127.968183, 50.920561], [-127.967781, 50.920738], [-127.967324, 50.920761], [-127.966704, 50.921132], [-127.965901, 50.921369], [-127.963834, 50.921629], [-127.963678, 50.921609], [-127.963425, 50.9214], [-127.963363, 50.92105], [-127.963265, 50.92094], [-127.962885, 50.920748], [-127.962374, 50.920689], [-127.961833, 50.920729], [-127.96056, 50.921087], [-127.959987, 50.921181], [-127.958752, 50.921719], [-127.957614, 50.92232], [-127.955888, 50.92378], [-127.955232, 50.923944], [-127.954611, 50.92428], [-127.954413, 50.924261], [-127.952816, 50.923697], [-127.951682, 50.923543], [-127.950515, 50.923588], [-127.948074, 50.923969], [-127.948005, 50.923834], [-127.948215, 50.923333], [-127.948205, 50.923153], [-127.947972, 50.9228], [-127.947481, 50.922498], [-127.946193, 50.922209], [-127.944516, 50.922104], [-127.943062, 50.922208], [-127.941962, 50.922431], [-127.938635, 50.923579], [-127.936925, 50.92431], [-127.936017, 50.924849], [-127.934812, 50.925909], [-127.93445, 50.92614], [-127.933994, 50.926144], [-127.933557, 50.926006], [-127.932833, 50.925918], [-127.932091, 50.925975], [-127.931305, 50.926155], [-127.929613, 50.926742], [-127.928978, 50.927105], [-127.927907, 50.927906], [-127.924947, 50.930343], [-127.922632, 50.932631], [-127.922117, 50.933329], [-127.921699, 50.934152], [-127.921888, 50.935196], [-127.92177, 50.935438], [-127.922015, 50.935944], [-127.922126, 50.936018], [-127.922396, 50.936065], [-127.923351, 50.936029], [-127.924079, 50.935937], [-127.924508, 50.935806], [-127.924707, 50.935816], [-127.925029, 50.936054], [-127.925107, 50.936387], [-127.925081, 50.936854], [-127.924892, 50.937105], [-127.924161, 50.93725], [-127.924002, 50.937365], [-127.923897, 50.937608], [-127.923933, 50.937941], [-127.924025, 50.938247], [-127.92432, 50.938448], [-127.924759, 50.938461], [-127.925475, 50.938378], [-127.925925, 50.938553], [-127.926001, 50.938976], [-127.92562, 50.939495], [-127.925665, 50.93998], [-127.926093, 50.940524], [-127.926747, 50.940593], [-127.926873, 50.940684], [-127.926752, 50.940916], [-127.926318, 50.941253], [-127.926301, 50.941407], [-127.926115, 50.941414], [-127.925252, 50.941172], [-127.924882, 50.941169], [-127.92463, 50.941023], [-127.924473, 50.941057], [-127.923939, 50.941385], [-127.92374, 50.941365], [-127.923444, 50.941192], [-127.92321, 50.940902], [-127.923012, 50.940792], [-127.922884, 50.940791], [-127.922726, 50.940843], [-127.922565, 50.941103], [-127.922064, 50.941179], [-127.921991, 50.941241], [-127.922201, 50.941423], [-127.922321, 50.941721], [-127.922221, 50.941819], [-127.921907, 50.941835], [-127.921573, 50.941507], [-127.921478, 50.941245], [-127.921, 50.941007], [-127.920179, 50.940865], [-127.919723, 50.940896], [-127.91941, 50.940795], [-127.918926, 50.940835], [-127.918493, 50.94048], [-127.918023, 50.940484], [-127.917968, 50.940422], [-127.91802, 50.940063], [-127.917894, 50.939918], [-127.917514, 50.939715], [-127.917216, 50.939687], [-127.916386, 50.939876], [-127.916284, 50.94001], [-127.915969, 50.940097], [-127.915728, 50.940059], [-127.915449, 50.939778], [-127.915182, 50.939694], [-127.914652, 50.939798], [-127.914262, 50.940063], [-127.914177, 50.940027], [-127.914152, 50.939846], [-127.913982, 50.939836], [-127.913974, 50.940241], [-127.91387, 50.940348], [-127.913758, 50.940319], [-127.913591, 50.94013], [-127.913455, 50.939309], [-127.913514, 50.939176], [-127.914177, 50.938804], [-127.914295, 50.93867], [-127.914268, 50.938508], [-127.913618, 50.937818], [-127.912987, 50.9373], [-127.912116, 50.936895], [-127.911352, 50.936646], [-127.910375, 50.93644], [-127.909479, 50.936377], [-127.908226, 50.936437], [-127.907226, 50.936589], [-127.905909, 50.93691], [-127.905421, 50.937085], [-127.904731, 50.937429], [-127.90435, 50.937848], [-127.90433, 50.938082], [-127.904705, 50.938509], [-127.904868, 50.939374], [-127.904796, 50.93948], [-127.90399, 50.939869], [-127.903829, 50.940047], [-127.903711, 50.940208], [-127.903522, 50.940953], [-127.903547, 50.941114], [-127.904211, 50.941921], [-127.904606, 50.942141], [-127.904989, 50.942144], [-127.905214, 50.94229], [-127.905064, 50.942577], [-127.904907, 50.942692], [-127.904719, 50.942735], [-127.904436, 50.942634], [-127.90422, 50.942776], [-127.904259, 50.94292], [-127.904701, 50.94296], [-127.904654, 50.943112], [-127.90428, 50.943216], [-127.903704, 50.943554], [-127.903244, 50.943683], [-127.902693, 50.9442], [-127.902128, 50.944536], [-127.901627, 50.944657], [-127.901085, 50.944716], [-127.899561, 50.944791], [-127.899305, 50.944744], [-127.899122, 50.944643], [-127.899113, 50.944418], [-127.89939, 50.94416], [-127.899978, 50.94395], [-127.900068, 50.943861], [-127.899681, 50.943317], [-127.899454, 50.942695], [-127.899187, 50.942512], [-127.898736, 50.942356], [-127.898219, 50.941991], [-127.898005, 50.941926], [-127.897692, 50.94195], [-127.897505, 50.942038], [-127.89724, 50.94244], [-127.897139, 50.942465], [-127.896761, 50.942238], [-127.895512, 50.942037], [-127.895061, 50.941826], [-127.894733, 50.941859], [-127.894637, 50.941776], [-127.894572, 50.941443], [-127.894626, 50.941021], [-127.89438, 50.940551], [-127.893953, 50.939953], [-127.89384, 50.939899], [-127.893598, 50.939932], [-127.89335, 50.940155], [-127.893208, 50.940171], [-127.892968, 50.940026], [-127.892964, 50.939647], [-127.892781, 50.939556], [-127.892669, 50.939537], [-127.892365, 50.939668], [-127.89218, 50.939677], [-127.891546, 50.939409], [-127.890638, 50.939338], [-127.89065, 50.939411], [-127.891002, 50.939566], [-127.891, 50.939647], [-127.890871, 50.939727], [-127.890442, 50.939768], [-127.890177, 50.939567], [-127.890212, 50.939298], [-127.889945, 50.939143], [-127.889453, 50.939408], [-127.88916, 50.939188], [-127.888867, 50.939527], [-127.888637, 50.93967], [-127.888442, 50.939523], [-127.888377, 50.939271], [-127.888276, 50.939225], [-127.887722, 50.939211], [-127.887415, 50.938975], [-127.886925, 50.93924], [-127.886556, 50.939173], [-127.886326, 50.939261], [-127.886058, 50.93924], [-127.885428, 50.938784], [-127.885229, 50.93872], [-127.885043, 50.938754], [-127.884791, 50.938634], [-127.884777, 50.938553], [-127.884967, 50.938367], [-127.884932, 50.93806], [-127.884833, 50.938005], [-127.884245, 50.938189], [-127.883876, 50.938167], [-127.883285, 50.937882], [-127.882978, 50.93761], [-127.882787, 50.93733], [-127.88259, 50.937193], [-127.882434, 50.937165], [-127.88158, 50.937138], [-127.881352, 50.93718], [-127.880743, 50.937652], [-127.880455, 50.937766], [-127.880215, 50.937719], [-127.879599, 50.937317], [-127.879527, 50.937343], [-127.879434, 50.937595], [-127.879162, 50.937654], [-127.878739, 50.937479], [-127.878461, 50.937251], [-127.878234, 50.937286], [-127.878077, 50.93724], [-127.877798, 50.936985], [-127.877055, 50.936536], [-127.87689, 50.936329], [-127.876581, 50.936109], [-127.876527, 50.935947], [-127.876581, 50.935544], [-127.876429, 50.935407], [-127.876259, 50.935343], [-127.876044, 50.935349], [-127.875471, 50.935559], [-127.875, 50.935574], [-127.874816, 50.935527], [-127.874536, 50.935334], [-127.874377, 50.934856], [-127.874198, 50.934602], [-127.873803, 50.934446], [-127.873462, 50.934461], [-127.872482, 50.934919], [-127.872254, 50.934971], [-127.872111, 50.934961], [-127.871959, 50.934852], [-127.871737, 50.93457], [-127.87147, 50.934406], [-127.871326, 50.934467], [-127.871291, 50.93479], [-127.871176, 50.93487], [-127.870946, 50.934896], [-127.870807, 50.934813], [-127.870785, 50.934561], [-127.870642, 50.934514], [-127.870385, 50.93454], [-127.869935, 50.934328], [-127.869737, 50.934308], [-127.869622, 50.934335], [-127.869642, 50.934731], [-127.868866, 50.93501], [-127.868002, 50.93483], [-127.867835, 50.934695], [-127.867522, 50.934107], [-127.867257, 50.933825], [-127.866936, 50.933597], [-127.866497, 50.93353], [-127.86474, 50.933756], [-127.864465, 50.933979], [-127.864564, 50.934635], [-127.864481, 50.935031], [-127.864664, 50.935149], [-127.864603, 50.935346], [-127.864486, 50.935436], [-127.863943, 50.935565], [-127.863373, 50.935578], [-127.86312, 50.935475], [-127.862959, 50.935051], [-127.862845, 50.934988], [-127.862506, 50.934984], [-127.862156, 50.935233], [-127.861835, 50.935005], [-127.861722, 50.934967], [-127.861508, 50.93502], [-127.86086, 50.934725], [-127.860501, 50.934847], [-127.860336, 50.935171], [-127.860206, 50.935276], [-127.859863, 50.935381], [-127.859648, 50.93537], [-127.859426, 50.935179], [-127.859395, 50.934748], [-127.85931, 50.934638], [-127.859155, 50.934582], [-127.858914, 50.934554], [-127.858513, 50.934675], [-127.858418, 50.935025], [-127.858275, 50.935097], [-127.857924, 50.934921], [-127.857637, 50.935045], [-127.857522, 50.935034], [-127.856627, 50.934379], [-127.856441, 50.934476], [-127.856348, 50.934726], [-127.856175, 50.934815], [-127.855792, 50.934829], [-127.855212, 50.934625], [-127.854622, 50.933756], [-127.854213, 50.933608], [-127.853956, 50.933605], [-127.853471, 50.933727], [-127.853378, 50.93395], [-127.852894, 50.934027], [-127.852601, 50.934339], [-127.852198, 50.934533], [-127.851886, 50.934511], [-127.851493, 50.934265], [-127.851206, 50.934379], [-127.850725, 50.934212], [-127.850498, 50.934192], [-127.850157, 50.934198], [-127.848868, 50.934508], [-127.848521, 50.934731], [-127.848506, 50.935323], [-127.848067, 50.935814], [-127.847827, 50.935703], [-127.847499, 50.93579], [-127.847289, 50.935662], [-127.846948, 50.935651], [-127.846569, 50.935421], [-127.846421, 50.935034], [-127.846141, 50.934869], [-127.845443, 50.934943], [-127.844791, 50.935377], [-127.844575, 50.935438], [-127.843592, 50.935464], [-127.843437, 50.935409], [-127.843372, 50.935228], [-127.843164, 50.93502], [-127.843006, 50.935018], [-127.84276, 50.935151], [-127.842293, 50.935145], [-127.842082, 50.934964], [-127.842034, 50.934631], [-127.841637, 50.934527], [-127.84162, 50.934131], [-127.841508, 50.933996], [-127.841284, 50.933886], [-127.840605, 50.933717], [-127.840151, 50.933712], [-127.840048, 50.933756], [-127.839912, 50.934088], [-127.839423, 50.934308], [-127.839238, 50.934296], [-127.839097, 50.934224], [-127.838922, 50.933853], [-127.83842, 50.93401], [-127.837998, 50.933853], [-127.837588, 50.933138], [-127.83758, 50.932922], [-127.837636, 50.932886], [-127.838148, 50.932973], [-127.838995, 50.932613], [-127.839939, 50.93246], [-127.840685, 50.932215], [-127.841608, 50.931748], [-127.842135, 50.931125], [-127.842444, 50.93012], [-127.842651, 50.929799], [-127.842827, 50.929656], [-127.843475, 50.929366], [-127.843897, 50.928957], [-127.844122, 50.928464], [-127.844252, 50.927817], [-127.844285, 50.927054], [-127.844158, 50.926405], [-127.845137, 50.925425], [-127.845895, 50.92412], [-127.845911, 50.923508], [-127.845536, 50.922534], [-127.845478, 50.922011], [-127.845397, 50.921813], [-127.84512, 50.921531], [-127.845123, 50.921369], [-127.845394, 50.920742], [-127.845656, 50.918838], [-127.84682, 50.917807], [-127.846954, 50.917502], [-127.847168, 50.916344], [-127.847158, 50.915077], [-127.846828, 50.914578], [-127.845922, 50.913769], [-127.844548, 50.913027], [-127.843707, 50.912497], [-127.842092, 50.911654], [-127.841381, 50.911674], [-127.840957, 50.911535], [-127.840439, 50.911233], [-127.840316, 50.910979], [-127.839961, 50.910949], [-127.839582, 50.910774], [-127.839402, 50.910575], [-127.839462, 50.910459], [-127.83981, 50.91021], [-127.839827, 50.910085], [-127.839603, 50.909884], [-127.838672, 50.909669], [-127.838263, 50.909467], [-127.838068, 50.90933], [-127.837696, 50.908867], [-127.837276, 50.908575], [-127.83577, 50.907877], [-127.834993, 50.907735], [-127.834352, 50.907728], [-127.834156, 50.907599], [-127.833878, 50.907319], [-127.833815, 50.907038], [-127.833849, 50.906788], [-127.834112, 50.906574], [-127.834128, 50.906413], [-127.833923, 50.906141], [-127.833347, 50.905802], [-127.832999, 50.905512], [-127.832462, 50.904814], [-127.832452, 50.904678], [-127.832603, 50.904356], [-127.832865, 50.904053], [-127.833708, 50.903341], [-127.834054, 50.903139], [-127.83438, 50.902665], [-127.83483, 50.902291], [-127.835448, 50.902001], [-127.836136, 50.901774], [-127.836393, 50.90175], [-127.836861, 50.901817], [-127.837245, 50.901759], [-127.83754, 50.901374], [-127.837886, 50.901143], [-127.838858, 50.90101], [-127.839418, 50.900728], [-127.839862, 50.900624], [-127.84005, 50.900518], [-127.840299, 50.900233], [-127.840497, 50.899749], [-127.840493, 50.899264], [-127.840454, 50.899164], [-127.840201, 50.899044], [-127.840246, 50.898964], [-127.840653, 50.898581], [-127.84134, 50.898399], [-127.84161, 50.898385], [-127.84188, 50.89844], [-127.84233, 50.898653], [-127.842856, 50.898621], [-127.843557, 50.898422], [-127.844104, 50.898165], [-127.844533, 50.898134], [-127.844686, 50.898252], [-127.84432, 50.898681], [-127.84464, 50.898917], [-127.845133, 50.899111], [-127.84563, 50.899144], [-127.846839, 50.898588], [-127.847296, 50.898513], [-127.847479, 50.898533], [-127.848128, 50.898818], [-127.849946, 50.899464], [-127.850844, 50.899987], [-127.851331, 50.900377], [-127.852062, 50.900718], [-127.852127, 50.901007], [-127.85194, 50.901652], [-127.85133, 50.902167], [-127.851327, 50.902266], [-127.851467, 50.902402], [-127.851957, 50.902686], [-127.85223, 50.90259], [-127.853126, 50.902051], [-127.853906, 50.902058], [-127.854637, 50.901885], [-127.854752, 50.901769], [-127.854757, 50.901608], [-127.854438, 50.901253], [-127.854539, 50.900644], [-127.85501, 50.9], [-127.855607, 50.899467], [-127.855989, 50.898967], [-127.856406, 50.898728], [-127.856509, 50.898603], [-127.856559, 50.898306], [-127.856302, 50.897801], [-127.856266, 50.897476], [-127.85654, 50.896184], [-127.856887, 50.895954], [-127.857619, 50.895655], [-127.858191, 50.895526], [-127.858655, 50.895189], [-127.85921, 50.895105], [-127.859854, 50.894408], [-127.860478, 50.893876], [-127.860866, 50.893745], [-127.861146, 50.893856], [-127.861578, 50.893689], [-127.862146, 50.893128], [-127.862681, 50.892773], [-127.862643, 50.892575], [-127.862489, 50.892456], [-127.862635, 50.892286], [-127.862833, 50.892316], [-127.863139, 50.892561], [-127.863409, 50.892627], [-127.864443, 50.892188], [-127.866495, 50.891964], [-127.868283, 50.892125], [-127.869244, 50.892414], [-127.869672, 50.892373], [-127.870002, 50.892224], [-127.869827, 50.891808], [-127.869674, 50.891672], [-127.868757, 50.89142], [-127.868604, 50.891302], [-127.868356, 50.890903], [-127.868335, 50.89058], [-127.86838, 50.890463], [-127.868541, 50.890357], [-127.869864, 50.88974], [-127.870549, 50.889585], [-127.871048, 50.889536], [-127.871666, 50.889246], [-127.872993, 50.889088], [-127.873738, 50.88887], [-127.875304, 50.888767], [-127.87693, 50.888585], [-127.878024, 50.888551], [-127.879012, 50.888848], [-127.879448, 50.889078], [-127.87995, 50.889478], [-127.879998, 50.889828], [-127.880209, 50.889975], [-127.880526, 50.889771], [-127.880632, 50.88952], [-127.880847, 50.889451], [-127.881115, 50.889489], [-127.881694, 50.88971], [-127.882162, 50.889724], [-127.882501, 50.889862], [-127.882973, 50.88975], [-127.883623, 50.889845], [-127.883975, 50.890065], [-127.884026, 50.890317], [-127.884476, 50.890475], [-127.884673, 50.890611], [-127.885199, 50.891137], [-127.88585, 50.891332], [-127.886197, 50.891624], [-127.886305, 50.891886], [-127.88587, 50.892278], [-127.885716, 50.892735], [-127.885256, 50.89291], [-127.88427, 50.893152], [-127.883671, 50.893245], [-127.883001, 50.893275], [-127.882357, 50.893467], [-127.882143, 50.893483], [-127.881981, 50.893688], [-127.881755, 50.894252], [-127.881935, 50.894488], [-127.882061, 50.894525], [-127.883029, 50.894463], [-127.88401, 50.893923], [-127.884096, 50.893924], [-127.885003, 50.894562], [-127.885502, 50.894558], [-127.887243, 50.893648], [-127.887768, 50.893725], [-127.887978, 50.893826], [-127.888273, 50.894062], [-127.88818, 50.894323], [-127.888288, 50.894575], [-127.889278, 50.894881], [-127.889937, 50.895185], [-127.890188, 50.895465], [-127.890211, 50.895655], [-127.890165, 50.89578], [-127.8896, 50.896216], [-127.888994, 50.896633], [-127.888777, 50.896703], [-127.887947, 50.896425], [-127.887576, 50.896448], [-127.887313, 50.896689], [-127.887429, 50.89723], [-127.888115, 50.89765], [-127.889092, 50.897902], [-127.889671, 50.897979], [-127.891095, 50.897966], [-127.891604, 50.898069], [-127.892194, 50.898345], [-127.892508, 50.898302], [-127.892544, 50.897979], [-127.892659, 50.897909], [-127.892816, 50.897911], [-127.893326, 50.89804], [-127.893771, 50.898476], [-127.894136, 50.898606], [-127.89478, 50.89845], [-127.895449, 50.898466], [-127.895936, 50.898893], [-127.896003, 50.899037], [-127.896042, 50.899191], [-127.895969, 50.899298], [-127.895651, 50.899547], [-127.895715, 50.899843], [-127.896069, 50.900477], [-127.896609, 50.901111], [-127.898062, 50.902232], [-127.898648, 50.903298], [-127.89871, 50.903659], [-127.898835, 50.903831], [-127.899902, 50.903787], [-127.900374, 50.903674], [-127.900748, 50.903516], [-127.900718, 50.902939], [-127.900961, 50.902286], [-127.900838, 50.901484], [-127.900883, 50.900783], [-127.901239, 50.900184], [-127.901618, 50.8998], [-127.901566, 50.899503], [-127.9019, 50.899264], [-127.902386, 50.899151], [-127.902641, 50.899145], [-127.9031, 50.899006], [-127.903432, 50.898819], [-127.904002, 50.898727], [-127.904622, 50.898399], [-127.905147, 50.897801], [-127.905198, 50.897469], [-127.905417, 50.897228], [-127.905505, 50.896501], [-127.905837, 50.896297], [-127.906096, 50.896219], [-127.906567, 50.896142], [-127.907122, 50.896139], [-127.907929, 50.896263], [-127.908662, 50.896495], [-127.909365, 50.896896], [-127.909668, 50.896737], [-127.909785, 50.896595], [-127.90985, 50.89619], [-127.910324, 50.895961], [-127.910866, 50.895939], [-127.911305, 50.895998], [-127.911743, 50.896136], [-127.912939, 50.896696], [-127.91352, 50.896774], [-127.914478, 50.897097], [-127.915359, 50.897177], [-127.916115, 50.897076], [-127.916776, 50.896785], [-127.917089, 50.896744], [-127.917958, 50.896724], [-127.918409, 50.896864], [-127.919105, 50.896942], [-127.919733, 50.896858], [-127.920689, 50.896642], [-127.921713, 50.896687], [-127.922183, 50.896656], [-127.923343, 50.896298], [-127.924591, 50.895806], [-127.924997, 50.895459], [-127.925253, 50.895452], [-127.92539, 50.895706], [-127.926533, 50.895464], [-127.927557, 50.89542], [-127.927698, 50.895502], [-127.927594, 50.895743], [-127.927676, 50.895825], [-127.927847, 50.8958], [-127.928509, 50.895501], [-127.929286, 50.895058], [-127.929473, 50.894997], [-127.929758, 50.895017], [-127.93, 50.895568], [-127.929997, 50.89572], [-127.929835, 50.895979], [-127.929974, 50.896045], [-127.930303, 50.896021], [-127.930541, 50.896211], [-127.930042, 50.896845], [-127.929948, 50.897177], [-127.930168, 50.898789], [-127.930263, 50.89896], [-127.930248, 50.89906], [-127.929957, 50.899272], [-127.929952, 50.899524], [-127.9301, 50.89984], [-127.930409, 50.900077], [-127.930462, 50.900212], [-127.930584, 50.901085], [-127.930865, 50.901888], [-127.931694, 50.902948], [-127.931911, 50.903401], [-127.932357, 50.9038], [-127.932819, 50.904757], [-127.932879, 50.905244], [-127.932796, 50.905711], [-127.933021, 50.906513], [-127.932867, 50.906988], [-127.932884, 50.907483], [-127.932964, 50.907726], [-127.933313, 50.908081], [-127.933321, 50.908269], [-127.932869, 50.90875], [-127.931188, 50.909518], [-127.930537, 50.910006], [-127.93012, 50.910164], [-127.929389, 50.91103], [-127.929103, 50.911082], [-127.928068, 50.910982], [-127.927996, 50.911035], [-127.928176, 50.911261], [-127.928722, 50.911581], [-127.929084, 50.91198], [-127.930644, 50.913326], [-127.931308, 50.913557], [-127.932003, 50.913644], [-127.932439, 50.913846], [-127.933162, 50.913997], [-127.934011, 50.914265], [-127.934572, 50.91454], [-127.934963, 50.914859], [-127.935028, 50.915192], [-127.935362, 50.91541], [-127.935356, 50.915725], [-127.935026, 50.916505], [-127.935201, 50.917505], [-127.93548, 50.918442], [-127.935675, 50.919883], [-127.935681, 50.920809], [-127.935476, 50.921725], [-127.93559, 50.92231], [-127.936388, 50.922299], [-127.936869, 50.922384], [-127.937307, 50.922541], [-127.937562, 50.922562], [-127.938234, 50.922443], [-127.939312, 50.921957], [-127.939948, 50.921477], [-127.940367, 50.921256], [-127.941223, 50.921075], [-127.941573, 50.920674], [-127.941935, 50.920497], [-127.94235, 50.920393], [-127.942539, 50.920179], [-127.942476, 50.919855], [-127.942015, 50.919427], [-127.940776, 50.918922], [-127.940439, 50.918703], [-127.940188, 50.918431], [-127.939864, 50.917681], [-127.939722, 50.91643], [-127.93904, 50.91574], [-127.939023, 50.915237], [-127.939231, 50.914889], [-127.939077, 50.914779], [-127.938467, 50.914656], [-127.938286, 50.914538], [-127.937759, 50.913921], [-127.937603, 50.913263], [-127.937396, 50.912974], [-127.937337, 50.912452], [-127.937174, 50.912117], [-127.936582, 50.911231], [-127.936019, 50.910992], [-127.935742, 50.910693], [-127.935545, 50.909333], [-127.935655, 50.908876], [-127.935902, 50.908643], [-127.937481, 50.908649], [-127.938123, 50.908492], [-127.938314, 50.908297], [-127.938411, 50.908334], [-127.938615, 50.90883], [-127.938855, 50.908833], [-127.938973, 50.908726], [-127.939663, 50.907698], [-127.939622, 50.907023], [-127.93982, 50.906511], [-127.939831, 50.906], [-127.940022, 50.905714], [-127.939809, 50.904425], [-127.939881, 50.903743], [-127.940205, 50.903314], [-127.940407, 50.903199], [-127.941065, 50.903043], [-127.941264, 50.902945], [-127.94161, 50.902741], [-127.941903, 50.90244], [-127.942157, 50.90192], [-127.942314, 50.901229], [-127.942547, 50.900978], [-127.942526, 50.900664], [-127.942295, 50.900212], [-127.942384, 50.899997], [-127.9426, 50.899882], [-127.944723, 50.899731], [-127.94551, 50.899494], [-127.946001, 50.899194], [-127.946659, 50.89902], [-127.947637, 50.89911], [-127.948301, 50.899367], [-127.948613, 50.899414], [-127.949764, 50.89948], [-127.950272, 50.899601], [-127.950723, 50.899785], [-127.951804, 50.899759], [-127.952569, 50.899846], [-127.95391, 50.900344], [-127.954353, 50.900312], [-127.954867, 50.900137], [-127.955439, 50.900088], [-127.955698, 50.899929], [-127.955811, 50.899929], [-127.956385, 50.900366], [-127.956975, 50.900668], [-127.957182, 50.900931], [-127.957519, 50.901132], [-127.958287, 50.901165], [-127.959198, 50.901119], [-127.959439, 50.901095], [-127.960399, 50.900816], [-127.961224, 50.900842], [-127.961377, 50.900923], [-127.961458, 50.901131], [-127.962006, 50.901406], [-127.96291, 50.901692], [-127.96345, 50.901777], [-127.963765, 50.901646], [-127.963899, 50.901377], [-127.964057, 50.901243], [-127.964329, 50.901246], [-127.964904, 50.901629], [-127.965231, 50.901586], [-127.965563, 50.901347], [-127.966202, 50.901415], [-127.96712, 50.901756], [-127.9683, 50.902964], [-127.968623, 50.9032], [-127.969033, 50.903347], [-127.969475, 50.903305], [-127.971452, 50.902613], [-127.971879, 50.90258], [-127.972091, 50.902673], [-127.972347, 50.902639], [-127.972414, 50.902801], [-127.972282, 50.903043], [-127.972307, 50.903133], [-127.972435, 50.903206], [-127.972918, 50.903201], [-127.973293, 50.903025], [-127.97339, 50.903062], [-127.9734, 50.903278], [-127.97331, 50.903421], [-127.973488, 50.903764], [-127.974498, 50.904421], [-127.975245, 50.904688], [-127.975671, 50.904728], [-127.976186, 50.90466], [-127.976801, 50.904459], [-127.977005, 50.904281], [-127.97737, 50.904482], [-127.978294, 50.90449], [-127.978684, 50.904206], [-127.978883, 50.904215], [-127.979023, 50.90429], [-127.979939, 50.904046], [-127.98068, 50.904008], [-127.980882, 50.903857], [-127.981109, 50.903902], [-127.981374, 50.904103], [-127.981885, 50.904143], [-127.982309, 50.904272], [-127.982602, 50.904536], [-127.982652, 50.904879], [-127.983123, 50.904784], [-127.98315, 50.904919], [-127.982959, 50.905097], [-127.983198, 50.905242], [-127.983626, 50.905165], [-127.98381, 50.905221], [-127.983964, 50.905349], [-127.984177, 50.905342], [-127.984723, 50.90513], [-127.985285, 50.904821], [-127.985539, 50.904849], [-127.98575, 50.90504], [-127.986149, 50.904999], [-127.98624, 50.905296], [-127.986508, 50.90547], [-127.98663, 50.905731], [-127.986786, 50.906443], [-127.986869, 50.906534], [-127.98701, 50.906607], [-127.987648, 50.906621], [-127.987818, 50.906668], [-127.988376, 50.907176], [-127.988818, 50.907819], [-127.988999, 50.907974], [-127.989208, 50.908119], [-127.989874, 50.90834], [-127.990447, 50.908705], [-127.990697, 50.909022], [-127.991039, 50.909727], [-127.991652, 50.910298], [-127.992241, 50.910636], [-127.993147, 50.910896], [-127.993345, 50.91159], [-127.99372, 50.911997], [-127.994169, 50.912254], [-127.99454, 50.912302], [-127.994997, 50.912161], [-127.995315, 50.91193], [-127.99576, 50.911728], [-127.996029, 50.911721], [-127.996382, 50.911859], [-127.996593, 50.912661], [-127.996814, 50.913004], [-127.996891, 50.913356], [-127.996675, 50.914191], [-127.996645, 50.914937], [-127.996393, 50.915384], [-127.996119, 50.915552], [-127.995691, 50.915612], [-127.995357, 50.915878], [-127.994739, 50.916189], [-127.994591, 50.916475], [-127.99394, 50.916999], [-127.993496, 50.917132], [-127.992568, 50.917204], [-127.991846, 50.917107], [-127.990643, 50.91681], [-127.990401, 50.916817], [-127.990001, 50.916929], [-127.989335, 50.916798], [-127.988852, 50.916767], [-127.987306, 50.917132], [-127.986833, 50.917342], [-127.985679, 50.91808], [-127.985085, 50.918525], [-127.984779, 50.918854], [-127.984599, 50.919302], [-127.984748, 50.920275], [-127.984542, 50.920651], [-127.984036, 50.921015]]]]}, "properties": {"name": "Mount Waddington B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Mount Waddington B", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943027", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.651087, 50.771328], [-127.742999, 50.768907], [-127.759403, 50.768336], [-127.765215, 50.768198], [-127.763246, 50.737846], [-127.762531, 50.696046], [-127.761495, 50.671577], [-127.760188, 50.63056], [-127.759331, 50.607185], [-127.759121, 50.597127], [-127.709906, 50.594668], [-127.692461, 50.593104], [-127.662629, 50.589931], [-127.623115, 50.587088], [-127.623184, 50.579752], [-127.621457, 50.552245], [-127.620197, 50.549637], [-127.620429, 50.549236], [-127.620022, 50.548135], [-127.620272, 50.546909], [-127.620496, 50.546663], [-127.622287, 50.54634], [-127.62559, 50.546906], [-127.626865, 50.54685], [-127.6267, 50.544749], [-127.665721, 50.542633], [-127.665867, 50.532139], [-127.66572, 50.528802], [-127.653937, 50.528462], [-127.635244, 50.527348], [-127.625693, 50.525635], [-127.62282, 50.523776], [-127.602601, 50.509115], [-127.568885, 50.487666], [-127.545807, 50.466685], [-127.519843, 50.444695], [-127.513467, 50.446756], [-127.506596, 50.44685], [-127.493212, 50.447537], [-127.484868, 50.447374], [-127.484421, 50.434702], [-127.470867, 50.434341], [-127.471016, 50.424133], [-127.471136, 50.404725], [-127.473047, 50.402167], [-127.459809, 50.393348], [-127.455163, 50.393262], [-127.451395, 50.392845], [-127.441118, 50.384369], [-127.441537, 50.382385], [-127.441208, 50.378388], [-127.441468, 50.377582], [-127.443381, 50.375435], [-127.447547, 50.374771], [-127.446312, 50.369303], [-127.446513, 50.360695], [-127.444529, 50.350574], [-127.439882, 50.342465], [-127.439995, 50.341082], [-127.439828, 50.340397], [-127.434032, 50.338693], [-127.429048, 50.336975], [-127.376207, 50.30972], [-127.372259, 50.309516], [-127.369727, 50.309192], [-127.368754, 50.308909], [-127.367342, 50.307845], [-127.366896, 50.306941], [-127.366083, 50.306127], [-127.364202, 50.304816], [-127.363462, 50.303518], [-127.36323, 50.30329], [-127.36254, 50.302939], [-127.36227, 50.302621], [-127.362117, 50.302205], [-127.36203, 50.301447], [-127.361766, 50.300967], [-127.360592, 50.299998], [-127.360269, 50.297942], [-127.360391, 50.297629], [-127.361104, 50.296928], [-127.361213, 50.296598], [-127.361231, 50.296077], [-127.36146, 50.295548], [-127.361889, 50.295285], [-127.362301, 50.295182], [-127.363329, 50.29509], [-127.364355, 50.295094], [-127.365103, 50.294979], [-127.367167, 50.294853], [-127.366806, 50.292968], [-127.366227, 50.290866], [-127.365463, 50.288838], [-127.364572, 50.287194], [-127.363463, 50.285577], [-127.367076, 50.285707], [-127.36905, 50.285351], [-127.371808, 50.284097], [-127.374199, 50.282621], [-127.376781, 50.281256], [-127.37797, 50.279572], [-127.379054, 50.275309], [-127.379721, 50.273635], [-127.379506, 50.273302], [-127.38156, 50.271702], [-127.382835, 50.2697], [-127.383625, 50.267697], [-127.383325, 50.266138], [-127.382476, 50.264298], [-127.381261, 50.262102], [-127.377765, 50.257576], [-127.376562, 50.251897], [-127.365, 50.250361], [-127.348241, 50.240831], [-127.333925, 50.232004], [-127.321035, 50.230438], [-127.313094, 50.230808], [-127.306644, 50.23226], [-127.30426, 50.236555], [-127.295733, 50.234084], [-127.291098, 50.24011], [-127.2945, 50.26077], [-127.295597, 50.270923], [-127.296923, 50.276806], [-127.294386, 50.280045], [-127.284943, 50.279331], [-127.275779, 50.277109], [-127.269319, 50.278559], [-127.265834, 50.282173], [-127.265579, 50.284328], [-127.257028, 50.283148], [-127.253344, 50.280718], [-127.248847, 50.280211], [-127.245237, 50.277465], [-127.243113, 50.273881], [-127.240108, 50.269663], [-127.236616, 50.267034], [-127.225455, 50.264464], [-127.220554, 50.268046], [-127.217862, 50.270587], [-127.214678, 50.271687], [-127.204764, 50.273288], [-127.201557, 50.275296], [-127.197917, 50.272644], [-127.194059, 50.270816], [-127.190594, 50.26834], [-127.186952, 50.265032], [-127.178719, 50.262811], [-127.167498, 50.272778], [-127.165474, 50.276687], [-127.163789, 50.280952], [-127.161908, 50.284477], [-127.161246, 50.286864], [-127.161477, 50.287481], [-127.156162, 50.292521], [-127.147694, 50.296082], [-127.141648, 50.303601], [-127.136194, 50.307336], [-127.127653, 50.312036], [-127.12007, 50.319023], [-127.115552, 50.322031], [-127.114962, 50.322953], [-127.112373, 50.324139], [-127.110515, 50.324218], [-127.108243, 50.322168], [-127.105183, 50.321413], [-127.101456, 50.320634], [-127.097339, 50.322505], [-127.095599, 50.324173], [-127.094924, 50.325747], [-127.094592, 50.328084], [-127.094713, 50.329016], [-127.095346, 50.33089], [-127.093667, 50.333024], [-127.097974, 50.334751], [-127.096834, 50.337448], [-127.09468, 50.340423], [-127.089147, 50.341537], [-127.083495, 50.343187], [-127.079289, 50.345411], [-127.07644, 50.347593], [-127.076458, 50.349706], [-127.078505, 50.352323], [-127.08194, 50.355044], [-127.082141, 50.357738], [-127.085527, 50.361458], [-127.085672, 50.36344], [-127.087806, 50.364962], [-127.092293, 50.365469], [-127.096247, 50.364633], [-127.09757, 50.363204], [-127.098122, 50.361507], [-127.098396, 50.35992], [-127.098207, 50.358517], [-127.098082, 50.356514], [-127.099805, 50.354433], [-127.107204, 50.353167], [-127.112464, 50.353938], [-127.117004, 50.355158], [-127.119071, 50.356217], [-127.125987, 50.361437], [-127.130957, 50.362568], [-127.133267, 50.363612], [-127.134454, 50.365346], [-127.134591, 50.366924], [-127.135142, 50.369971], [-127.137024, 50.371103], [-127.139961, 50.371734], [-127.14373, 50.372689], [-127.145693, 50.374034], [-127.147313, 50.376862], [-127.147265, 50.379166], [-127.146445, 50.38055], [-127.146975, 50.382137], [-127.149798, 50.38265], [-127.153257, 50.383155], [-127.157592, 50.384948], [-127.161251, 50.385128], [-127.165188, 50.386047], [-127.167188, 50.38707], [-127.168505, 50.388446], [-127.17076, 50.389203], [-127.169202, 50.390655], [-127.166758, 50.393452], [-127.167547, 50.396813], [-127.167688, 50.398161], [-127.171591, 50.399176], [-127.173909, 50.401062], [-127.171738, 50.402678], [-127.169747, 50.403151], [-127.167871, 50.403741], [-127.166362, 50.404843], [-127.164874, 50.406101], [-127.16336, 50.407865], [-127.162228, 50.41096], [-127.161014, 50.412768], [-127.160402, 50.413468], [-127.15868, 50.413422], [-127.155262, 50.41283], [-127.152616, 50.412499], [-127.149168, 50.413065], [-127.144637, 50.41464], [-127.140265, 50.416645], [-127.138079, 50.418513], [-127.135964, 50.420723], [-127.132358, 50.423655], [-127.131363, 50.425291], [-127.130428, 50.42806], [-127.129301, 50.428759], [-127.12702, 50.430664], [-127.125618, 50.432546], [-127.124367, 50.434987], [-127.123761, 50.438366], [-127.122735, 50.439437], [-127.120397, 50.441023], [-127.118553, 50.442817], [-127.117542, 50.444282], [-127.112086, 50.446972], [-127.109313, 50.447413], [-127.107057, 50.446668], [-127.105608, 50.446094], [-127.102546, 50.445176], [-127.101462, 50.445114], [-127.098765, 50.444706], [-127.097153, 50.444361], [-127.096395, 50.443842], [-127.095492, 50.444362], [-127.09493, 50.445895], [-127.095247, 50.447408], [-127.097609, 50.449177], [-127.097168, 50.449515], [-127.095212, 50.450534], [-127.093484, 50.45179], [-127.091894, 50.453319], [-127.090706, 50.455263], [-127.087953, 50.457046], [-127.08619, 50.458397], [-127.085213, 50.459766], [-127.084394, 50.461563], [-127.084423, 50.46278], [-127.085561, 50.464215], [-127.087556, 50.465475], [-127.089587, 50.466639], [-127.090831, 50.467786], [-127.090565, 50.477145], [-127.081382, 50.482736], [-127.068517, 50.486163], [-127.067375, 50.488422], [-127.06577, 50.490362], [-127.063517, 50.491957], [-127.061853, 50.493017], [-127.059821, 50.494022], [-127.057304, 50.495018], [-127.054067, 50.495597], [-127.052544, 50.495497], [-127.048917, 50.495027], [-127.045421, 50.494205], [-127.031012, 50.490483], [-127.032852, 50.500802], [-127.077222, 50.50108], [-127.07674, 50.506774], [-127.061011, 50.51092], [-127.054748, 50.511435], [-127.046345, 50.51456], [-127.030475, 50.520323], [-127.030472, 50.520521], [-127.030055, 50.520489], [-127.024329, 50.522132], [-127.021776, 50.5224], [-127.020029, 50.523611], [-127.016049, 50.529303], [-127.015886, 50.529885], [-127.01527, 50.530413], [-127.01444, 50.530801], [-127.013627, 50.531016], [-127.011973, 50.531117], [-127.008598, 50.530979], [-127.007634, 50.530768], [-127.006556, 50.530419], [-127.004298, 50.529318], [-127.001687, 50.528814], [-127.000976, 50.528996], [-127.000414, 50.529351], [-127.000227, 50.529624], [-126.999907, 50.530584], [-127.000167, 50.530951], [-127.000908, 50.531592], [-127.002022, 50.533249], [-127.002594, 50.533843], [-127.003249, 50.534334], [-127.004727, 50.535126], [-127.005248, 50.535315], [-127.007436, 50.535732], [-127.009854, 50.536031], [-127.011016, 50.536386], [-127.01195, 50.536875], [-127.012223, 50.537231], [-127.012259, 50.538228], [-127.012177, 50.538755], [-127.011754, 50.539859], [-127.011524, 50.541855], [-127.011792, 50.542416], [-127.013189, 50.544366], [-127.013704, 50.544919], [-127.013838, 50.545394], [-127.013165, 50.546487], [-127.012279, 50.547289], [-127.011597, 50.547512], [-127.011091, 50.547562], [-127.010824, 50.547524], [-127.010397, 50.547219], [-127.01008, 50.546746], [-127.009848, 50.545782], [-127.009148, 50.54487], [-127.008151, 50.54321], [-127.00712, 50.542351], [-127.006319, 50.542003], [-127.005935, 50.542023], [-127.005425, 50.542174], [-127.00493, 50.54251], [-127.004085, 50.544086], [-127.003495, 50.544714], [-127.003063, 50.545822], [-127.001364, 50.54811], [-127.001277, 50.549276], [-127.000857, 50.550126], [-127.001203, 50.550395], [-127.002046, 50.550664], [-127.002914, 50.55109], [-127.003533, 50.551963], [-127.003539, 50.552182], [-127.003285, 50.552504], [-127.002962, 50.55341], [-127.002981, 50.553752], [-127.003136, 50.554076], [-127.002152, 50.554245], [-127.001945, 50.556561], [-127.002789, 50.558906], [-127.002256, 50.560216], [-127.0016, 50.561128], [-127.00044, 50.56316], [-126.999767, 50.56386], [-126.998703, 50.564287], [-126.998264, 50.564339], [-126.997907, 50.564337], [-126.997378, 50.56425], [-126.99668, 50.564287], [-126.997362, 50.565688], [-126.994776, 50.566205], [-126.992413, 50.566358], [-126.988804, 50.567375], [-126.987208, 50.567534], [-126.985325, 50.567325], [-126.983953, 50.566779], [-126.982944, 50.566599], [-126.982006, 50.566662], [-126.982604, 50.567527], [-126.982655, 50.567698], [-126.982005, 50.567696], [-126.981607, 50.567779], [-126.980717, 50.567773], [-126.979504, 50.568058], [-126.978785, 50.568368], [-126.978423, 50.568588], [-126.977015, 50.569768], [-126.976358, 50.569972], [-126.975883, 50.570189], [-126.975196, 50.570698], [-126.974853, 50.571143], [-126.974723, 50.572154], [-126.956049, 50.581245], [-126.97062, 50.590017], [-126.995128, 50.606262], [-126.9993, 50.608102], [-127.005767, 50.610819], [-127.009945, 50.610909], [-127.020472, 50.611295], [-127.038524, 50.612096], [-127.05614, 50.613723], [-127.061371, 50.614708], [-127.066772, 50.615613], [-127.075167, 50.617976], [-127.084619, 50.620221], [-127.096107, 50.621667], [-127.107023, 50.621923], [-127.130888, 50.621634], [-127.149804, 50.621795], [-127.159093, 50.62409], [-127.167953, 50.628284], [-127.174003, 50.633442], [-127.177585, 50.638243], [-127.179205, 50.642484], [-127.181217, 50.650569], [-127.182777, 50.664365], [-127.18491, 50.685653], [-127.184398, 50.749963], [-127.184725, 50.758963], [-127.188877, 50.759901], [-127.231975, 50.772482], [-127.370393, 50.812013], [-127.414035, 50.82468], [-127.426228, 50.82798], [-127.459507, 50.801815], [-127.489203, 50.803582], [-127.520498, 50.802522], [-127.567967, 50.803942], [-127.603422, 50.808646], [-127.602999, 50.796272], [-127.602721, 50.771223], [-127.651087, 50.771328]], [[-127.41751, 50.6806], [-127.418115, 50.682409], [-127.435425, 50.68325], [-127.46617, 50.683751], [-127.466523, 50.6892], [-127.469331, 50.689043], [-127.47191, 50.688558], [-127.473213, 50.688425], [-127.475489, 50.688455], [-127.476896, 50.688625], [-127.477681, 50.688816], [-127.478434, 50.688815], [-127.479252, 50.688778], [-127.482405, 50.688394], [-127.484125, 50.68829], [-127.485116, 50.688278], [-127.48544, 50.688215], [-127.488043, 50.688245], [-127.487444, 50.690168], [-127.489125, 50.690061], [-127.490218, 50.690671], [-127.491019, 50.690951], [-127.494827, 50.690827], [-127.493813, 50.703206], [-127.495234, 50.705821], [-127.50617, 50.705551], [-127.520766, 50.705704], [-127.521334, 50.707188], [-127.521409, 50.714978], [-127.522754, 50.728999], [-127.523164, 50.734561], [-127.505265, 50.733873], [-127.504188, 50.733899], [-127.50262, 50.734415], [-127.502505, 50.735587], [-127.5055, 50.735897], [-127.505366, 50.737025], [-127.498137, 50.742845], [-127.495049, 50.742784], [-127.494662, 50.742563], [-127.494444, 50.742281], [-127.49446, 50.741777], [-127.494763, 50.741188], [-127.494735, 50.740738], [-127.494551, 50.740305], [-127.494701, 50.740027], [-127.495234, 50.739746], [-127.495484, 50.739489], [-127.495376, 50.738831], [-127.495526, 50.738158], [-127.49536, 50.737572], [-127.494925, 50.737431], [-127.494774, 50.737285], [-127.494973, 50.736811], [-127.495572, 50.736234], [-127.495934, 50.736041], [-127.496433, 50.735939], [-127.496623, 50.735736], [-127.496705, 50.735421], [-127.496645, 50.735079], [-127.496535, 50.734961], [-127.496325, 50.734896], [-127.496219, 50.734633], [-127.495906, 50.734269], [-127.495897, 50.734116], [-127.496088, 50.733876], [-127.496493, 50.733665], [-127.496561, 50.733252], [-127.49643, 50.732944], [-127.494666, 50.731358], [-127.494477, 50.731094], [-127.494469, 50.730878], [-127.494223, 50.730631], [-127.493855, 50.7306], [-127.493452, 50.730775], [-127.492973, 50.731128], [-127.492621, 50.73124], [-127.492761, 50.731799], [-127.491816, 50.732084], [-127.487283, 50.732932], [-127.47406, 50.727377], [-127.46851, 50.722779], [-127.464757, 50.723574], [-127.459878, 50.722536], [-127.456833, 50.722179], [-127.45694, 50.721222], [-127.456403, 50.721699], [-127.456169, 50.722333], [-127.441867, 50.725656], [-127.428839, 50.726463], [-127.427622, 50.718367], [-127.423301, 50.718336], [-127.415633, 50.71853], [-127.415987, 50.717555], [-127.419352, 50.716511], [-127.420495, 50.71411], [-127.420788, 50.705078], [-127.418522, 50.702354], [-127.415025, 50.699281], [-127.411026, 50.697015], [-127.402522, 50.699516], [-127.394469, 50.70069], [-127.390237, 50.703076], [-127.385844, 50.70396], [-127.381314, 50.70336], [-127.377078, 50.699907], [-127.376016, 50.696553], [-127.372413, 50.692847], [-127.366033, 50.689443], [-127.353541, 50.68471], [-127.343066, 50.680245], [-127.336752, 50.675999], [-127.331605, 50.675658], [-127.327734, 50.676176], [-127.326093, 50.674936], [-127.328887, 50.672823], [-127.328868, 50.671067], [-127.328031, 50.662674], [-127.345503, 50.662322], [-127.346404, 50.6683], [-127.351593, 50.668273], [-127.351576, 50.666497], [-127.372256, 50.66586], [-127.372223, 50.669031], [-127.379129, 50.668532], [-127.379301, 50.673227], [-127.383985, 50.673244], [-127.383725, 50.676118], [-127.398801, 50.675887], [-127.417723, 50.676885], [-127.41751, 50.6806]], [[-127.498688, 50.602121], [-127.498356, 50.600638], [-127.491813, 50.600752], [-127.49105, 50.59795], [-127.483463, 50.595445], [-127.483385, 50.595112], [-127.483232, 50.592431], [-127.489136, 50.59279], [-127.496564, 50.592988], [-127.496566, 50.592353], [-127.508287, 50.592382], [-127.509449, 50.596795], [-127.509642, 50.596762], [-127.511895, 50.594794], [-127.514011, 50.595397], [-127.515405, 50.60147], [-127.498688, 50.602121]], [[-127.573949, 50.612537], [-127.574243, 50.612005], [-127.577943, 50.613593], [-127.575425, 50.61461], [-127.573846, 50.615477], [-127.568686, 50.617069], [-127.56635, 50.618098], [-127.565422, 50.61919], [-127.563236, 50.61778], [-127.56583, 50.616123], [-127.570079, 50.614091], [-127.570701, 50.613858], [-127.573041, 50.613258], [-127.573473, 50.61306], [-127.573949, 50.612537]], [[-127.173169, 50.578985], [-127.171021, 50.592382], [-127.169574, 50.605332], [-127.168472, 50.61627], [-127.162466, 50.615326], [-127.156043, 50.613824], [-127.150946, 50.611409], [-127.145725, 50.610557], [-127.143848, 50.610132], [-127.1503, 50.576738], [-127.173169, 50.578985]], [[-127.123686, 50.590292], [-127.122625, 50.593638], [-127.119477, 50.593012], [-127.117695, 50.593135], [-127.115897, 50.593568], [-127.113662, 50.593877], [-127.111512, 50.593948], [-127.110481, 50.593866], [-127.110447, 50.595627], [-127.08669, 50.595848], [-127.086628, 50.594984], [-127.065054, 50.593184], [-127.047574, 50.591979], [-127.041865, 50.591479], [-127.043246, 50.588264], [-127.043106, 50.586725], [-127.047292, 50.586847], [-127.047279, 50.578518], [-127.069557, 50.57865], [-127.091266, 50.578245], [-127.101001, 50.579043], [-127.101263, 50.571985], [-127.120966, 50.572274], [-127.122589, 50.572482], [-127.124424, 50.573061], [-127.123584, 50.582336], [-127.123674, 50.58471], [-127.123686, 50.590292]]]]}, "properties": {"name": "Mount Waddington C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Mount Waddington C", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943031", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.944001, 50.604957], [-126.950563, 50.604074], [-126.956316, 50.601259], [-126.959252, 50.598086], [-126.960729, 50.595597], [-126.960236, 50.59107], [-126.957882, 50.584801], [-126.956049, 50.581245], [-126.974723, 50.572154], [-126.974853, 50.571143], [-126.975196, 50.570698], [-126.975883, 50.570189], [-126.976358, 50.569972], [-126.977015, 50.569768], [-126.978423, 50.568588], [-126.978785, 50.568368], [-126.979504, 50.568058], [-126.980717, 50.567773], [-126.981607, 50.567779], [-126.982005, 50.567696], [-126.982655, 50.567698], [-126.982604, 50.567527], [-126.982006, 50.566662], [-126.982944, 50.566599], [-126.983953, 50.566779], [-126.985325, 50.567325], [-126.987208, 50.567534], [-126.988804, 50.567375], [-126.992413, 50.566358], [-126.994776, 50.566205], [-126.997362, 50.565688], [-126.99668, 50.564287], [-126.997378, 50.56425], [-126.997907, 50.564337], [-126.998264, 50.564339], [-126.998703, 50.564287], [-126.999767, 50.56386], [-127.00044, 50.56316], [-127.0016, 50.561128], [-127.002256, 50.560216], [-127.002789, 50.558906], [-127.001945, 50.556561], [-127.002152, 50.554245], [-127.003136, 50.554076], [-127.002981, 50.553752], [-127.002962, 50.55341], [-127.003285, 50.552504], [-127.003539, 50.552182], [-127.003533, 50.551963], [-127.002914, 50.55109], [-127.002046, 50.550664], [-127.001203, 50.550395], [-127.000857, 50.550126], [-127.001277, 50.549276], [-127.001364, 50.54811], [-127.003063, 50.545822], [-127.003495, 50.544714], [-127.004085, 50.544086], [-127.00493, 50.54251], [-127.005425, 50.542174], [-127.005935, 50.542023], [-127.006319, 50.542003], [-127.00712, 50.542351], [-127.008151, 50.54321], [-127.009148, 50.54487], [-127.009848, 50.545782], [-127.01008, 50.546746], [-127.010397, 50.547219], [-127.010824, 50.547524], [-127.011091, 50.547562], [-127.011597, 50.547512], [-127.012279, 50.547289], [-127.013165, 50.546487], [-127.013838, 50.545394], [-127.013704, 50.544919], [-127.013189, 50.544366], [-127.011792, 50.542416], [-127.011524, 50.541855], [-127.011754, 50.539859], [-127.012177, 50.538755], [-127.012259, 50.538228], [-127.012223, 50.537231], [-127.01195, 50.536875], [-127.011016, 50.536386], [-127.009854, 50.536031], [-127.007436, 50.535732], [-127.005248, 50.535315], [-127.004727, 50.535126], [-127.003249, 50.534334], [-127.002594, 50.533843], [-127.002022, 50.533249], [-127.000908, 50.531592], [-127.000167, 50.530951], [-126.999907, 50.530584], [-127.000227, 50.529624], [-127.000414, 50.529351], [-127.000976, 50.528996], [-127.001687, 50.528814], [-127.004298, 50.529318], [-127.006556, 50.530419], [-127.007634, 50.530768], [-127.008598, 50.530979], [-127.011973, 50.531117], [-127.013627, 50.531016], [-127.01444, 50.530801], [-127.01527, 50.530413], [-127.015886, 50.529885], [-127.016049, 50.529303], [-127.020029, 50.523611], [-127.021776, 50.5224], [-127.024329, 50.522132], [-127.030055, 50.520489], [-127.030472, 50.520521], [-127.030475, 50.520323], [-127.046345, 50.51456], [-127.054748, 50.511435], [-127.061011, 50.51092], [-127.07674, 50.506774], [-127.077222, 50.50108], [-127.032852, 50.500802], [-127.031012, 50.490483], [-127.045421, 50.494205], [-127.048917, 50.495027], [-127.052544, 50.495497], [-127.054067, 50.495597], [-127.057304, 50.495018], [-127.059821, 50.494022], [-127.061853, 50.493017], [-127.063517, 50.491957], [-127.06577, 50.490362], [-127.067375, 50.488422], [-127.068517, 50.486163], [-127.081382, 50.482736], [-127.090565, 50.477145], [-127.090831, 50.467786], [-127.089587, 50.466639], [-127.087556, 50.465475], [-127.085561, 50.464215], [-127.084423, 50.46278], [-127.084394, 50.461563], [-127.085213, 50.459766], [-127.08619, 50.458397], [-127.087953, 50.457046], [-127.090706, 50.455263], [-127.091894, 50.453319], [-127.093484, 50.45179], [-127.095212, 50.450534], [-127.097168, 50.449515], [-127.097609, 50.449177], [-127.095247, 50.447408], [-127.09493, 50.445895], [-127.095492, 50.444362], [-127.096395, 50.443842], [-127.097153, 50.444361], [-127.098765, 50.444706], [-127.101462, 50.445114], [-127.102546, 50.445176], [-127.105608, 50.446094], [-127.107057, 50.446668], [-127.109313, 50.447413], [-127.112086, 50.446972], [-127.117542, 50.444282], [-127.118553, 50.442817], [-127.120397, 50.441023], [-127.122735, 50.439437], [-127.123761, 50.438366], [-127.124367, 50.434987], [-127.125618, 50.432546], [-127.12702, 50.430664], [-127.129301, 50.428759], [-127.130428, 50.42806], [-127.131363, 50.425291], [-127.132358, 50.423655], [-127.135964, 50.420723], [-127.138079, 50.418513], [-127.140265, 50.416645], [-127.144637, 50.41464], [-127.149168, 50.413065], [-127.152616, 50.412499], [-127.155262, 50.41283], [-127.15868, 50.413422], [-127.160402, 50.413468], [-127.161014, 50.412768], [-127.162228, 50.41096], [-127.16336, 50.407865], [-127.164874, 50.406101], [-127.166362, 50.404843], [-127.167871, 50.403741], [-127.169747, 50.403151], [-127.171738, 50.402678], [-127.173909, 50.401062], [-127.171591, 50.399176], [-127.167688, 50.398161], [-127.167547, 50.396813], [-127.166758, 50.393452], [-127.169202, 50.390655], [-127.17076, 50.389203], [-127.168505, 50.388446], [-127.167188, 50.38707], [-127.165188, 50.386047], [-127.161251, 50.385128], [-127.157592, 50.384948], [-127.153257, 50.383155], [-127.149798, 50.38265], [-127.146975, 50.382137], [-127.146445, 50.38055], [-127.147265, 50.379166], [-127.147313, 50.376862], [-127.145693, 50.374034], [-127.14373, 50.372689], [-127.139961, 50.371734], [-127.137024, 50.371103], [-127.135142, 50.369971], [-127.134591, 50.366924], [-127.134454, 50.365346], [-127.133267, 50.363612], [-127.130957, 50.362568], [-127.125987, 50.361437], [-127.119071, 50.356217], [-127.117004, 50.355158], [-127.112464, 50.353938], [-127.107204, 50.353167], [-127.099805, 50.354433], [-127.098082, 50.356514], [-127.098207, 50.358517], [-127.098396, 50.35992], [-127.098122, 50.361507], [-127.09757, 50.363204], [-127.096247, 50.364633], [-127.092293, 50.365469], [-127.087806, 50.364962], [-127.085672, 50.36344], [-127.085527, 50.361458], [-127.082141, 50.357738], [-127.08194, 50.355044], [-127.078505, 50.352323], [-127.076458, 50.349706], [-127.07644, 50.347593], [-127.079289, 50.345411], [-127.083495, 50.343187], [-127.089147, 50.341537], [-127.09468, 50.340423], [-127.094771, 50.340295], [-127.07856, 50.335609], [-127.075411, 50.335297], [-127.071145, 50.336339], [-127.066955, 50.33598], [-127.066681, 50.332426], [-127.067522, 50.329438], [-127.064911, 50.326717], [-127.058609, 50.326826], [-127.053791, 50.326258], [-127.046824, 50.323154], [-127.048164, 50.313103], [-127.044458, 50.310129], [-127.04394, 50.306765], [-127.041245, 50.304993], [-127.035142, 50.303378], [-127.02961, 50.299983], [-127.027956, 50.295879], [-127.024547, 50.288305], [-127.021306, 50.287298], [-127.013434, 50.28309], [-127.010639, 50.281359], [-127.006384, 50.281665], [-126.999754, 50.280532], [-126.998944, 50.279388], [-126.998421, 50.277948], [-126.998818, 50.250086], [-126.998873, 50.25002], [-126.986917, 50.245354], [-126.976575, 50.244139], [-126.972808, 50.240271], [-126.972017, 50.234652], [-126.97294, 50.231114], [-126.988498, 50.224924], [-126.989587, 50.221562], [-126.991967, 50.199972], [-126.992455, 50.198056], [-126.992472, 50.197433], [-126.989634, 50.196373], [-126.989039, 50.195998], [-126.990524, 50.181643], [-126.96976, 50.181986], [-126.94061, 50.182579], [-126.931843, 50.18441], [-126.92765, 50.190259], [-126.91818, 50.194141], [-126.903667, 50.190154], [-126.900283, 50.183017], [-126.885978, 50.173518], [-126.887204, 50.166609], [-126.885, 50.164233], [-126.878313, 50.162466], [-126.871909, 50.159498], [-126.842956, 50.140236], [-126.839624, 50.138759], [-126.827196, 50.141725], [-126.820081, 50.143365], [-126.816161, 50.156752], [-126.818558, 50.161532], [-126.821935, 50.169743], [-126.820802, 50.171095], [-126.813874, 50.173984], [-126.807899, 50.174588], [-126.808734, 50.170875], [-126.804691, 50.16963], [-126.799783, 50.172547], [-126.796183, 50.176542], [-126.788142, 50.178862], [-126.781174, 50.178577], [-126.779919, 50.175049], [-126.781425, 50.172627], [-126.785161, 50.169871], [-126.78847, 50.168745], [-126.789407, 50.166912], [-126.787568, 50.165441], [-126.785861, 50.162183], [-126.781348, 50.156739], [-126.771678, 50.151994], [-126.766462, 50.147739], [-126.765566, 50.144437], [-126.766447, 50.141804], [-126.769523, 50.138213], [-126.772444, 50.136236], [-126.778838, 50.139716], [-126.782568, 50.140973], [-126.786466, 50.13943], [-126.791006, 50.124795], [-126.773436, 50.118178], [-126.756412, 50.112122], [-126.747113, 50.103448], [-126.734429, 50.106397], [-126.723022, 50.110391], [-126.714144, 50.114806], [-126.702964, 50.114707], [-126.687934, 50.109824], [-126.683031, 50.107365], [-126.679757, 50.102899], [-126.678592, 50.098563], [-126.674037, 50.097062], [-126.668833, 50.096815], [-126.667342, 50.095848], [-126.667089, 50.092022], [-126.665385, 50.090682], [-126.659635, 50.092103], [-126.653866, 50.093803], [-126.650374, 50.094162], [-126.647056, 50.093362], [-126.647018, 50.091095], [-126.651596, 50.073641], [-126.654857, 50.070987], [-126.66268, 50.068538], [-126.668748, 50.069602], [-126.674381, 50.073197], [-126.677679, 50.073261], [-126.680956, 50.068546], [-126.68293, 50.06439], [-126.68822, 50.062392], [-126.695425, 50.061822], [-126.69675, 50.060843], [-126.697886, 50.059664], [-126.695486, 50.055815], [-126.694694, 50.054392], [-126.696705, 50.051316], [-126.698937, 50.049065], [-126.697116, 50.04686], [-126.691467, 50.044058], [-126.689131, 50.042055], [-126.690062, 50.039771], [-126.691931, 50.038029], [-126.6935, 50.035676], [-126.693206, 50.03255], [-126.688261, 50.030932], [-126.683306, 50.030046], [-126.678536, 50.027994], [-126.674755, 50.024279], [-126.672043, 50.017953], [-126.665991, 50.01736], [-126.659035, 50.018346], [-126.647276, 50.022746], [-126.641111, 50.024422], [-126.634708, 50.025099], [-126.627915, 50.028197], [-126.62023, 50.024369], [-126.61332, 50.021512], [-126.607872, 50.021407], [-126.59931, 50.023376], [-126.592092, 50.027815], [-126.5909, 50.028642], [-126.558745, 50.02947], [-126.559549, 50.026419], [-126.563037, 50.02277], [-126.562361, 50.020847], [-126.560392, 50.020249], [-126.554406, 50.018668], [-126.55165, 50.01783], [-126.551253, 50.017257], [-126.547216, 50.01355], [-126.548786, 50.010564], [-126.553035, 50.005021], [-126.557575, 49.998587], [-126.56777, 49.99921], [-126.572264, 49.995461], [-126.571569, 49.990245], [-126.568222, 49.987745], [-126.562966, 49.98681], [-126.560267, 49.985145], [-126.555921, 49.981584], [-126.552402, 49.980694], [-126.545232, 49.980419], [-126.542669, 49.980244], [-126.539196, 49.977158], [-126.533616, 49.972584], [-126.533668, 49.971294], [-126.527576, 49.971413], [-126.52208, 49.971116], [-126.517676, 49.967488], [-126.514987, 49.963734], [-126.512054, 49.960619], [-126.505779, 49.96099], [-126.498973, 49.962295], [-126.493986, 49.963887], [-126.487206, 49.957878], [-126.481718, 49.955037], [-126.47813, 49.952269], [-126.475905, 49.949603], [-126.478034, 49.94678], [-126.481328, 49.945498], [-126.479827, 49.943003], [-126.473276, 49.936182], [-126.470703, 49.933744], [-126.46952, 49.929041], [-126.471421, 49.926126], [-126.473904, 49.923981], [-126.476138, 49.921571], [-126.477199, 49.919708], [-126.470506, 49.917975], [-126.466253, 49.911799], [-126.465988, 49.908822], [-126.459977, 49.906913], [-126.453092, 49.907523], [-126.448181, 49.910991], [-126.442024, 49.913129], [-126.435887, 49.914987], [-126.431668, 49.917093], [-126.425723, 49.916153], [-126.418446, 49.914691], [-126.416072, 49.911112], [-126.411829, 49.909887], [-126.407053, 49.909584], [-126.404415, 49.908714], [-126.401078, 49.907846], [-126.397232, 49.908538], [-126.394042, 49.908429], [-126.388829, 49.906755], [-126.384448, 49.907475], [-126.376198, 49.908259], [-126.374312, 49.909998], [-126.374391, 49.912788], [-126.37229, 49.914748], [-126.367602, 49.91604], [-126.361885, 49.917736], [-126.356101, 49.918005], [-126.348758, 49.920064], [-126.34502, 49.922527], [-126.342659, 49.92436], [-126.342139, 49.927564], [-126.34347, 49.931548], [-126.349692, 49.936858], [-126.351761, 49.937419], [-126.35595, 49.940701], [-126.356621, 49.942623], [-126.354819, 49.945056], [-126.352462, 49.947796], [-126.348434, 49.950554], [-126.344791, 49.951616], [-126.339373, 49.951831], [-126.334264, 49.952377], [-126.330186, 49.952973], [-126.326026, 49.953783], [-126.323502, 49.958906], [-126.317449, 49.961], [-126.311602, 49.963466], [-126.308543, 49.967115], [-126.306756, 49.970205], [-126.281835, 49.988504], [-126.263141, 50.000115], [-126.243772, 50.005478], [-126.240986, 50.007997], [-126.23836, 50.011063], [-126.231738, 50.013912], [-126.228932, 50.014823], [-126.226292, 50.01623], [-126.226477, 50.02214], [-126.237774, 50.025047], [-126.226694, 50.035622], [-126.238124, 50.045152], [-126.234074, 50.051813], [-126.235223, 50.060731], [-126.241799, 50.059926], [-126.244873, 50.057933], [-126.253102, 50.064931], [-126.254226, 50.068996], [-126.242752, 50.074638], [-126.243962, 50.076988], [-126.237861, 50.083264], [-126.225758, 50.080535], [-126.235627, 50.094263], [-126.241713, 50.10032], [-126.217952, 50.11], [-126.225728, 50.123173], [-126.160345, 50.121435], [-126.167659, 50.131316], [-126.149171, 50.144223], [-126.12945, 50.141951], [-126.117001, 50.157981], [-126.10081, 50.159507], [-126.095147, 50.169318], [-126.093243, 50.178098], [-126.079159, 50.178512], [-126.04458, 50.18056], [-126.044109, 50.194624], [-126.038763, 50.203098], [-126.044581, 50.212752], [-126.042387, 50.221234], [-126.028627, 50.230485], [-126.033627, 50.239029], [-126.033475, 50.241166], [-126.029511, 50.245613], [-126.024529, 50.248111], [-126.023597, 50.250697], [-126.027235, 50.255295], [-126.027708, 50.259223], [-126.020968, 50.265129], [-126.013944, 50.268507], [-126.010297, 50.271931], [-126.009034, 50.27587], [-126.00342, 50.279228], [-125.999579, 50.279357], [-125.995403, 50.28219], [-125.995701, 50.286418], [-125.999936, 50.290262], [-126.010702, 50.294598], [-126.009315, 50.304084], [-126.012592, 50.305477], [-126.021777, 50.303709], [-126.030032, 50.303702], [-126.04017, 50.307858], [-126.042324, 50.312673], [-126.040028, 50.314608], [-126.037065, 50.317549], [-126.037219, 50.322769], [-126.042127, 50.324866], [-126.051692, 50.326375], [-126.055379, 50.331115], [-126.054846, 50.339586], [-126.047148, 50.3434], [-126.038917, 50.344748], [-126.027987, 50.342039], [-126.018966, 50.342373], [-126.008632, 50.343535], [-125.999851, 50.339529], [-125.994861, 50.340388], [-125.992375, 50.348138], [-125.994037, 50.356249], [-126.000633, 50.363508], [-126.009182, 50.363955], [-126.014584, 50.367179], [-126.020804, 50.366841], [-126.025869, 50.37193], [-126.029745, 50.382913], [-126.037758, 50.390643], [-126.046918, 50.394987], [-126.053981, 50.403085], [-126.056011, 50.404622], [-126.063953, 50.401968], [-126.081177, 50.396402], [-126.09045, 50.396068], [-126.111078, 50.397593], [-126.112819, 50.406149], [-126.108961, 50.471222], [-126.133129, 50.472211], [-126.156047, 50.475491], [-126.192383, 50.478551], [-126.240387, 50.48676], [-126.274535, 50.491941], [-126.283615, 50.493488], [-126.297027, 50.498666], [-126.319544, 50.498956], [-126.500015, 50.499939], [-126.566666, 50.502205], [-126.582924, 50.503335], [-126.600567, 50.505576], [-126.609111, 50.507422], [-126.620179, 50.510558], [-126.633167, 50.516043], [-126.649072, 50.523905], [-126.665015, 50.530101], [-126.674482, 50.533237], [-126.689721, 50.535828], [-126.710375, 50.538425], [-126.727519, 50.542008], [-126.741163, 50.546057], [-126.763833, 50.552238], [-126.77754, 50.555371], [-126.790385, 50.557724], [-126.882686, 50.566469], [-126.886727, 50.571762], [-126.89158, 50.578624], [-126.895004, 50.586381], [-126.901344, 50.595695], [-126.907781, 50.599805], [-126.921747, 50.602206], [-126.933017, 50.603639], [-126.944001, 50.604957]], [[-126.952492, 50.59991], [-126.952101, 50.600426], [-126.950779, 50.601544], [-126.950522, 50.601963], [-126.950361, 50.602087], [-126.949527, 50.602396], [-126.948973, 50.602484], [-126.948464, 50.602492], [-126.948016, 50.602413], [-126.947365, 50.602393], [-126.946595, 50.602226], [-126.946068, 50.601993], [-126.943908, 50.601333], [-126.942784, 50.601169], [-126.940766, 50.600765], [-126.940306, 50.600622], [-126.939947, 50.600409], [-126.939431, 50.600301], [-126.937916, 50.599698], [-126.936143, 50.599532], [-126.935023, 50.599315], [-126.933752, 50.599257], [-126.933233, 50.599184], [-126.932153, 50.598958], [-126.930115, 50.598391], [-126.929261, 50.598231], [-126.92876, 50.59806], [-126.927256, 50.597261], [-126.926642, 50.597052], [-126.925489, 50.596276], [-126.92407, 50.595468], [-126.923166, 50.594796], [-126.921848, 50.594259], [-126.920991, 50.59383], [-126.919178, 50.59262], [-126.917713, 50.591246], [-126.917572, 50.590875], [-126.915592, 50.588856], [-126.915593, 50.588178], [-126.915147, 50.583176], [-126.910688, 50.583091], [-126.91083, 50.583828], [-126.903321, 50.583797], [-126.902156, 50.582475], [-126.901463, 50.581084], [-126.901532, 50.578941], [-126.902864, 50.576443], [-126.90357, 50.575635], [-126.904264, 50.57506], [-126.905427, 50.574416], [-126.906733, 50.573983], [-126.908874, 50.57349], [-126.911011, 50.573302], [-126.913129, 50.573466], [-126.915654, 50.574117], [-126.918433, 50.573793], [-126.920138, 50.573775], [-126.92169, 50.573968], [-126.924793, 50.574851], [-126.927221, 50.575959], [-126.930946, 50.578428], [-126.932393, 50.579882], [-126.933643, 50.581566], [-126.935613, 50.586819], [-126.930154, 50.587419], [-126.930258, 50.587762], [-126.931062, 50.587795], [-126.930976, 50.588152], [-126.930398, 50.588125], [-126.930456, 50.589375], [-126.930843, 50.590183], [-126.93129, 50.59064], [-126.931989, 50.591157], [-126.932416, 50.591362], [-126.932494, 50.592471], [-126.932251, 50.592594], [-126.93366, 50.593027], [-126.93352, 50.593389], [-126.932222, 50.592802], [-126.932267, 50.593032], [-126.933433, 50.593613], [-126.935703, 50.594128], [-126.93566, 50.593117], [-126.935892, 50.593003], [-126.936476, 50.593207], [-126.9375, 50.593378], [-126.939372, 50.593554], [-126.940676, 50.593443], [-126.94242, 50.592987], [-126.942969, 50.592737], [-126.94348, 50.592322], [-126.943718, 50.591724], [-126.943784, 50.591213], [-126.944628, 50.589986], [-126.944998, 50.589264], [-126.945724, 50.588495], [-126.946498, 50.587933], [-126.946882, 50.587867], [-126.947926, 50.587894], [-126.949733, 50.587621], [-126.951541, 50.58759], [-126.952241, 50.587728], [-126.952621, 50.588122], [-126.953143, 50.588464], [-126.95355, 50.588849], [-126.953717, 50.589212], [-126.95381, 50.590005], [-126.953997, 50.59026], [-126.955634, 50.591637], [-126.956379, 50.592046], [-126.95684, 50.592163], [-126.958283, 50.592745], [-126.958587, 50.593272], [-126.958629, 50.59357], [-126.958594, 50.594054], [-126.958252, 50.594471], [-126.958181, 50.594776], [-126.957704, 50.595685], [-126.957119, 50.597455], [-126.956827, 50.597703], [-126.956233, 50.597998], [-126.955435, 50.59819], [-126.954786, 50.598468], [-126.953474, 50.598758], [-126.952992, 50.599119], [-126.952492, 50.59991]], [[-126.933941, 50.593616], [-126.934004, 50.593248], [-126.934252, 50.593316], [-126.93419, 50.593589], [-126.933941, 50.593616]]], [[[-126.944063, 50.597717], [-126.944233, 50.59692], [-126.94303, 50.597394], [-126.942806, 50.596435], [-126.943823, 50.596395], [-126.943762, 50.595465], [-126.941261, 50.595534], [-126.940355, 50.595502], [-126.94027, 50.597703], [-126.941653, 50.597704], [-126.942102, 50.597655], [-126.944063, 50.597717]]]]}, "properties": {"name": "Mount Waddington D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Mount Waddington D", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943033", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.814647, 51.975419], [-125.82902, 51.977128], [-125.844287, 51.978326], [-125.855918, 51.977365], [-125.868358, 51.973973], [-125.876358, 51.969879], [-125.880813, 51.963398], [-125.880174, 51.956842], [-125.874434, 51.940709], [-125.871165, 51.922897], [-125.870623, 51.910877], [-125.872915, 51.897236], [-125.876092, 51.893355], [-125.880212, 51.892424], [-125.90924, 51.890681], [-125.914372, 51.890152], [-125.915843, 51.88515], [-125.917263, 51.874539], [-125.919307, 51.842358], [-125.92066, 51.834295], [-125.922699, 51.826949], [-125.927057, 51.817779], [-125.933378, 51.810989], [-125.940334, 51.805516], [-125.951859, 51.79894], [-125.960739, 51.7945], [-125.971647, 51.788816], [-125.970266, 51.786277], [-125.950171, 51.775572], [-125.947057, 51.768648], [-125.948758, 51.762349], [-125.957794, 51.758577], [-125.956945, 51.753654], [-125.962164, 51.747364], [-125.971063, 51.743839], [-125.97973, 51.741832], [-125.978815, 51.736687], [-125.980869, 51.733137], [-125.990574, 51.731042], [-125.997303, 51.728354], [-125.998298, 51.723699], [-125.996481, 51.718788], [-125.9889, 51.713215], [-125.998453, 51.7036], [-125.998558, 51.699523], [-125.993859, 51.694781], [-125.991178, 51.688296], [-125.981992, 51.687404], [-125.967099, 51.691602], [-125.955184, 51.692211], [-125.95219, 51.687736], [-125.944139, 51.685178], [-125.941361, 51.680424], [-125.941525, 51.673888], [-125.946039, 51.669729], [-125.94966, 51.664803], [-125.951273, 51.660122], [-125.949459, 51.654366], [-125.950678, 51.648436], [-125.923058, 51.628704], [-125.910305, 51.627235], [-125.908218, 51.625716], [-125.911689, 51.618956], [-125.910321, 51.614332], [-125.917416, 51.611211], [-125.921686, 51.60764], [-125.919115, 51.604606], [-125.926566, 51.600854], [-125.932424, 51.595599], [-125.941852, 51.593253], [-125.957774, 51.586657], [-125.968726, 51.582895], [-125.981798, 51.580686], [-125.986806, 51.581915], [-125.98765, 51.582441], [-125.993145, 51.586613], [-126.002849, 51.589404], [-126.012327, 51.590784], [-126.020535, 51.596521], [-126.028129, 51.599942], [-126.041361, 51.597045], [-126.050707, 51.592595], [-126.050988, 51.586029], [-126.062557, 51.5819], [-126.060842, 51.577763], [-126.052117, 51.573148], [-126.053018, 51.565558], [-126.060461, 51.558626], [-126.074939, 51.551027], [-126.077608, 51.54596], [-126.085881, 51.540905], [-126.086436, 51.534633], [-126.081838, 51.528985], [-126.085015, 51.525121], [-126.091584, 51.525973], [-126.099711, 51.523108], [-126.110414, 51.520432], [-126.117982, 51.51832], [-126.115879, 51.511445], [-126.11469, 51.505025], [-126.109214, 51.500799], [-126.106077, 51.492171], [-126.105379, 51.486763], [-126.099032, 51.475106], [-126.103779, 51.471055], [-126.106636, 51.462187], [-126.112604, 51.460265], [-126.121515, 51.460932], [-126.128053, 51.462782], [-126.128033, 51.46678], [-126.132654, 51.466951], [-126.143287, 51.464085], [-126.148818, 51.465711], [-126.149665, 51.460616], [-126.144568, 51.456147], [-126.14829, 51.44973], [-126.161589, 51.44766], [-126.167431, 51.444284], [-126.172404, 51.435855], [-126.190299, 51.436598], [-126.19821, 51.443377], [-126.200138, 51.443682], [-126.217117, 51.453972], [-126.227895, 51.456339], [-126.230151, 51.456562], [-126.234012, 51.455971], [-126.247549, 51.453039], [-126.250958, 51.451977], [-126.254518, 51.452137], [-126.257777, 51.453051], [-126.261487, 51.453368], [-126.270863, 51.453376], [-126.292725, 51.454146], [-126.296837, 51.455592], [-126.300499, 51.460839], [-126.304061, 51.463133], [-126.30717, 51.462821], [-126.319445, 51.458217], [-126.324506, 51.456746], [-126.328518, 51.457374], [-126.345628, 51.462054], [-126.349488, 51.461458], [-126.356197, 51.458512], [-126.360345, 51.455033], [-126.363047, 51.453591], [-126.364553, 51.454093], [-126.367065, 51.456354], [-126.368424, 51.459903], [-126.371336, 51.461159], [-126.377812, 51.463637], [-126.37942, 51.464955], [-126.383153, 51.47595], [-126.385822, 51.480504], [-126.388986, 51.481664], [-126.405989, 51.480183], [-126.418875, 51.478326], [-126.423898, 51.479641], [-126.427314, 51.480706], [-126.434512, 51.486761], [-126.438378, 51.487229], [-126.446298, 51.485529], [-126.449203, 51.484648], [-126.450447, 51.483112], [-126.451152, 51.476441], [-126.455323, 51.470171], [-126.461359, 51.46512], [-126.466287, 51.459631], [-126.473797, 51.450509], [-126.481758, 51.442475], [-126.492527, 51.434564], [-126.507152, 51.426038], [-126.528395, 51.418211], [-126.535598, 51.417551], [-126.543292, 51.418245], [-126.551295, 51.420103], [-126.55638, 51.420233], [-126.561509, 51.418278], [-126.564502, 51.414549], [-126.56494, 51.409463], [-126.565111, 51.408362], [-126.567222, 51.407557], [-126.585423, 51.4063], [-126.609929, 51.413224], [-126.616114, 51.41448], [-126.616545, 51.415348], [-126.612436, 51.416645], [-126.607798, 51.419947], [-126.606364, 51.422295], [-126.619926, 51.443445], [-126.622849, 51.445171], [-126.637577, 51.44627], [-126.646371, 51.447436], [-126.657362, 51.450217], [-126.66455, 51.45419], [-126.671214, 51.460169], [-126.676122, 51.466043], [-126.679731, 51.469315], [-126.685218, 51.472387], [-126.691966, 51.474204], [-126.692832, 51.475939], [-126.695289, 51.478876], [-126.698873, 51.479575], [-126.70437, 51.477989], [-126.708209, 51.474706], [-126.709785, 51.469955], [-126.70816, 51.466167], [-126.706735, 51.463859], [-126.707356, 51.46025], [-126.715867, 51.452845], [-126.722515, 51.44693], [-126.725462, 51.440616], [-126.725059, 51.437658], [-126.723567, 51.434857], [-126.71829, 51.429871], [-126.707154, 51.421418], [-126.701061, 51.413893], [-126.699071, 51.409728], [-126.701365, 51.404443], [-126.710551, 51.393926], [-126.712124, 51.389176], [-126.710418, 51.383606], [-126.709683, 51.378184], [-126.713729, 51.373004], [-126.721736, 51.365528], [-126.724158, 51.361228], [-126.723773, 51.359561], [-126.721114, 51.355134], [-126.721531, 51.350049], [-126.725456, 51.345173], [-126.735893, 51.339351], [-126.746178, 51.335916], [-126.750251, 51.333314], [-126.751166, 51.329592], [-126.750359, 51.323678], [-126.75109, 51.319767], [-126.751955, 51.316842], [-126.754358, 51.315918], [-126.75983, 51.31433], [-126.761748, 51.313333], [-126.762864, 51.311089], [-126.76232, 51.302481], [-126.764054, 51.301296], [-126.77713, 51.299886], [-126.797326, 51.298578], [-126.8071, 51.298436], [-126.810186, 51.299058], [-126.820703, 51.308969], [-126.829805, 51.316582], [-126.840645, 51.323011], [-126.844401, 51.323892], [-126.850443, 51.324151], [-126.855429, 51.322486], [-126.860835, 51.317027], [-126.864071, 51.311885], [-126.867007, 51.30686], [-126.869038, 51.305556], [-126.872242, 51.305873], [-126.881921, 51.307314], [-126.888561, 51.307339], [-126.892112, 51.306744], [-126.895919, 51.303456], [-126.906161, 51.291969], [-126.923771, 51.277885], [-126.924254, 51.274582], [-126.922591, 51.26276], [-126.922981, 51.257675], [-126.925168, 51.251896], [-126.923439, 51.249707], [-126.921755, 51.243347], [-126.922515, 51.242014], [-126.931101, 51.240242], [-126.937108, 51.239209], [-126.950364, 51.235882], [-126.954277, 51.23566], [-126.960329, 51.237198], [-126.97377, 51.240793], [-126.986752, 51.242233], [-126.997268, 51.240741], [-127.012894, 51.235205], [-127.026423, 51.23048], [-127.029439, 51.230608], [-127.037202, 51.233044], [-127.040518, 51.233055], [-127.057296, 51.231215], [-127.060497, 51.231529], [-127.073476, 51.229604], [-127.089713, 51.225113], [-127.09832, 51.224623], [-127.099928, 51.223738], [-127.100313, 51.222031], [-127.100029, 51.220065], [-127.103016, 51.218904], [-127.112475, 51.218859], [-127.118207, 51.219225], [-127.120853, 51.218974], [-127.135445, 51.214075], [-127.144659, 51.211266], [-127.155108, 51.207196], [-127.163197, 51.205342], [-127.175452, 51.203941], [-127.189558, 51.204413], [-127.19179, 51.204581], [-127.194548, 51.204024], [-127.206676, 51.197473], [-127.208054, 51.197194], [-127.21219, 51.203889], [-127.215586, 51.209834], [-127.218293, 51.212154], [-127.23498, 51.219406], [-127.240601, 51.220069], [-127.249874, 51.219824], [-127.252665, 51.219643], [-127.255669, 51.21137], [-127.267078, 51.210874], [-127.274678, 51.213427], [-127.277843, 51.21352], [-127.279274, 51.212744], [-127.290779, 51.212661], [-127.303511, 51.213397], [-127.314683, 51.212141], [-127.3234, 51.209246], [-127.328165, 51.209459], [-127.333523, 51.21152], [-127.342858, 51.218002], [-127.34565, 51.218728], [-127.350714, 51.218823], [-127.358536, 51.216275], [-127.360584, 51.216252], [-127.364194, 51.218217], [-127.368995, 51.221796], [-127.371117, 51.222264], [-127.377113, 51.221211], [-127.380018, 51.221633], [-127.382587, 51.222966], [-127.385751, 51.226146], [-127.391002, 51.228508], [-127.397222, 51.228928], [-127.409886, 51.229159], [-127.442811, 51.22767], [-127.449775, 51.226753], [-127.4529, 51.224481], [-127.452506, 51.211613], [-127.453689, 51.20698], [-127.456826, 51.204334], [-127.484474, 51.203876], [-127.492854, 51.201558], [-127.49156, 51.196691], [-127.495198, 51.189048], [-127.496599, 51.188505], [-127.509279, 51.185847], [-127.517983, 51.185015], [-127.524162, 51.186221], [-127.527334, 51.189394], [-127.531521, 51.196072], [-127.535061, 51.197539], [-127.55895, 51.196954], [-127.566543, 51.197078], [-127.570109, 51.195666], [-127.574776, 51.19121], [-127.576746, 51.190691], [-127.597253, 51.191695], [-127.610796, 51.191544], [-127.630905, 51.188004], [-127.644498, 51.184175], [-127.648809, 51.183508], [-127.654443, 51.186226], [-127.659862, 51.190544], [-127.73824, 51.188723], [-127.735305, 51.159513], [-127.792885, 51.15618], [-127.862395, 51.096703], [-127.917859, 51.07633], [-127.992867, 51.081016], [-127.908168, 51.000234], [-127.891685, 50.991772], [-127.867273, 50.984817], [-127.808327, 50.972078], [-127.755841, 50.958177], [-127.681804, 50.92303], [-127.630345, 50.894873], [-127.586792, 50.878351], [-127.52906, 50.857711], [-127.426228, 50.82798], [-127.414035, 50.82468], [-127.370393, 50.812013], [-127.231975, 50.772482], [-127.188877, 50.759901], [-127.184725, 50.758963], [-127.184398, 50.749963], [-127.18491, 50.685653], [-127.182777, 50.664365], [-127.181217, 50.650569], [-127.179205, 50.642484], [-127.177585, 50.638243], [-127.174003, 50.633442], [-127.167953, 50.628284], [-127.159093, 50.62409], [-127.149804, 50.621795], [-127.130888, 50.621634], [-127.107023, 50.621923], [-127.096107, 50.621667], [-127.084619, 50.620221], [-127.075167, 50.617976], [-127.066772, 50.615613], [-127.061371, 50.614708], [-127.05614, 50.613723], [-127.038524, 50.612096], [-127.020472, 50.611295], [-127.009945, 50.610909], [-127.005767, 50.610819], [-126.9993, 50.608102], [-126.995128, 50.606262], [-126.97062, 50.590017], [-126.956049, 50.581245], [-126.957882, 50.584801], [-126.960236, 50.59107], [-126.960729, 50.595597], [-126.959252, 50.598086], [-126.956316, 50.601259], [-126.950563, 50.604074], [-126.944001, 50.604957], [-126.933017, 50.603639], [-126.921747, 50.602206], [-126.907781, 50.599805], [-126.901344, 50.595695], [-126.895004, 50.586381], [-126.89158, 50.578624], [-126.886727, 50.571762], [-126.882686, 50.566469], [-126.790385, 50.557724], [-126.77754, 50.555371], [-126.763833, 50.552238], [-126.741163, 50.546057], [-126.727519, 50.542008], [-126.710375, 50.538425], [-126.689721, 50.535828], [-126.674482, 50.533237], [-126.665015, 50.530101], [-126.649072, 50.523905], [-126.633167, 50.516043], [-126.620179, 50.510558], [-126.609111, 50.507422], [-126.600567, 50.505576], [-126.582924, 50.503335], [-126.566666, 50.502205], [-126.500015, 50.499939], [-126.319544, 50.498956], [-126.313835, 50.515291], [-126.310998, 50.518084], [-126.286995, 50.530188], [-126.280496, 50.532515], [-126.250596, 50.534645], [-126.243657, 50.536838], [-126.228097, 50.543154], [-126.191614, 50.537302], [-126.202249, 50.572776], [-126.191952, 50.575937], [-126.08337, 50.608617], [-126.061878, 50.61444], [-126.038299, 50.617351], [-125.998459, 50.623223], [-125.943337, 50.632445], [-125.937566, 50.63299], [-125.926691, 50.633912], [-125.88171, 50.633887], [-125.874276, 50.633988], [-125.864676, 50.638916], [-125.859688, 50.641126], [-125.856314, 50.640005], [-125.855263, 50.634915], [-125.851391, 50.628225], [-125.851093, 50.627496], [-125.849914, 50.627515], [-125.849103, 50.626972], [-125.84901, 50.625983], [-125.849682, 50.624428], [-125.849794, 50.624318], [-125.848507, 50.621169], [-125.84991, 50.616586], [-125.848465, 50.610135], [-125.847456, 50.60635], [-125.84732, 50.604527], [-125.846721, 50.599944], [-125.846256, 50.598303], [-125.842638, 50.59141], [-125.835857, 50.580271], [-125.832162, 50.576469], [-125.827828, 50.57369], [-125.819761, 50.573216], [-125.814312, 50.574669], [-125.805995, 50.581395], [-125.798915, 50.587913], [-125.787047, 50.593259], [-125.780093, 50.593268], [-125.744137, 50.604464], [-125.740439, 50.605124], [-125.693083, 50.602933], [-125.678224, 50.600957], [-125.662876, 50.596337], [-125.64348, 50.597681], [-125.621643, 50.60252], [-125.605212, 50.609363], [-125.598577, 50.618552], [-125.597232, 50.625839], [-125.597607, 50.634124], [-125.592324, 50.639507], [-125.58882, 50.642011], [-125.590593, 50.644328], [-125.582784, 50.656904], [-125.584679, 50.661323], [-125.585455, 50.667418], [-125.578764, 50.669458], [-125.57532, 50.675396], [-125.569323, 50.677529], [-125.561617, 50.684549], [-125.561887, 50.689509], [-125.567124, 50.696923], [-125.570447, 50.703986], [-125.575707, 50.70952], [-125.576641, 50.714335], [-125.570288, 50.71488], [-125.560959, 50.719111], [-125.552766, 50.725094], [-125.543667, 50.730096], [-125.537363, 50.731732], [-125.537587, 50.73509], [-125.542685, 50.739066], [-125.549014, 50.744205], [-125.547238, 50.748664], [-125.546658, 50.753032], [-125.550741, 50.766912], [-125.54991, 50.77411], [-125.541201, 50.779677], [-125.523132, 50.779881], [-125.520778, 50.781165], [-125.513287, 50.788037], [-125.503231, 50.794225], [-125.503455, 50.795165], [-125.510099, 50.801293], [-125.518882, 50.805199], [-125.528389, 50.808836], [-125.530464, 50.810726], [-125.53512, 50.819229], [-125.538861, 50.825003], [-125.544454, 50.831728], [-125.543959, 50.832934], [-125.530744, 50.836412], [-125.524963, 50.837127], [-125.520861, 50.837219], [-125.514157, 50.836232], [-125.511138, 50.837148], [-125.504893, 50.842942], [-125.503901, 50.845355], [-125.503046, 50.851399], [-125.503298, 50.853761], [-125.504721, 50.857735], [-125.504774, 50.860579], [-125.500665, 50.87008], [-125.501115, 50.871959], [-125.503401, 50.875818], [-125.503114, 50.878993], [-125.498382, 50.89793], [-125.497049, 50.900674], [-125.490651, 50.906315], [-125.486406, 50.908704], [-125.483821, 50.909048], [-125.478529, 50.908554], [-125.474941, 50.90886], [-125.471435, 50.909952], [-125.469353, 50.91154], [-125.466417, 50.915694], [-125.464517, 50.917828], [-125.4554, 50.922629], [-125.443118, 50.930643], [-125.439268, 50.932065], [-125.431787, 50.933397], [-125.427937, 50.934819], [-125.420569, 50.940297], [-125.415736, 50.943102], [-125.411563, 50.943825], [-125.407029, 50.943454], [-125.387333, 50.941322], [-125.374536, 50.940729], [-125.366469, 50.942475], [-125.338303, 50.95182], [-125.325855, 50.954765], [-125.317985, 50.956024], [-125.311507, 50.954936], [-125.308256, 50.954906], [-125.305223, 50.955816], [-125.302651, 50.957578], [-125.297128, 50.958585], [-125.285204, 50.95929], [-125.278384, 50.958529], [-125.274702, 50.956617], [-125.271972, 50.956803], [-125.259797, 50.960045], [-125.25476, 50.959965], [-125.252771, 50.962733], [-125.252324, 50.969235], [-125.254531, 50.974647], [-125.254726, 50.980476], [-125.252738, 50.985031], [-125.254797, 50.988225], [-125.261654, 50.991141], [-125.274032, 50.997301], [-125.275972, 51.000499], [-125.276891, 51.00451], [-125.279637, 51.005978], [-125.27997, 51.010722], [-125.28573, 51.01093], [-125.298899, 51.007637], [-125.308968, 51.007028], [-125.312217, 51.011502], [-125.315284, 51.01756], [-125.315614, 51.023663], [-125.321903, 51.025949], [-125.325139, 51.033142], [-125.327785, 51.042707], [-125.325079, 51.045934], [-125.314175, 51.046425], [-125.309477, 51.048587], [-125.30049, 51.048693], [-125.291908, 51.049925], [-125.283562, 51.047564], [-125.279754, 51.049597], [-125.274313, 51.050952], [-125.266759, 51.054675], [-125.261105, 51.055253], [-125.258869, 51.05645], [-125.245617, 51.053609], [-125.242898, 51.064221], [-125.253052, 51.082831], [-125.278186, 51.092998], [-125.296691, 51.103468], [-125.295969, 51.107688], [-125.290418, 51.1116], [-125.289787, 51.115204], [-125.286808, 51.119168], [-125.288259, 51.123153], [-125.285908, 51.1254], [-125.286498, 51.131535], [-125.293201, 51.140896], [-125.298429, 51.147274], [-125.296201, 51.150171], [-125.285474, 51.153787], [-125.27439, 51.159417], [-125.264878, 51.157331], [-125.26009, 51.160366], [-125.262339, 51.164705], [-125.270919, 51.167532], [-125.282648, 51.168815], [-125.287769, 51.17439], [-125.293986, 51.179269], [-125.297429, 51.181255], [-125.298629, 51.187506], [-125.305445, 51.196943], [-125.331514, 51.199744], [-125.330271, 51.215393], [-125.323713, 51.218937], [-125.322149, 51.221238], [-125.322439, 51.225557], [-125.328644, 51.249649], [-125.307773, 51.261672], [-125.294779, 51.270245], [-125.284763, 51.281387], [-125.283999, 51.282977], [-125.27759, 51.283873], [-125.261757, 51.290232], [-125.256259, 51.291403], [-125.24691, 51.292322], [-125.243231, 51.296534], [-125.233551, 51.300656], [-125.22512, 51.301858], [-125.221617, 51.30662], [-125.221248, 51.310864], [-125.203662, 51.323186], [-125.20493, 51.330336], [-125.216309, 51.335206], [-125.235357, 51.353624], [-125.246459, 51.363095], [-125.260013, 51.372271], [-125.259938, 51.372315], [-125.264428, 51.375239], [-125.266668, 51.376858], [-125.276467, 51.380587], [-125.305014, 51.387164], [-125.314581, 51.38985], [-125.326629, 51.39587], [-125.332971, 51.402037], [-125.338564, 51.409055], [-125.341947, 51.418994], [-125.341371, 51.426328], [-125.336922, 51.433142], [-125.330937, 51.438544], [-125.331328, 51.439144], [-125.336011, 51.444146], [-125.331536, 51.450017], [-125.326936, 51.453645], [-125.317661, 51.45407], [-125.311634, 51.459399], [-125.316274, 51.463268], [-125.322761, 51.467857], [-125.345201, 51.478909], [-125.339927, 51.481394], [-125.33784, 51.485336], [-125.330134, 51.483802], [-125.314742, 51.479624], [-125.304057, 51.478678], [-125.296526, 51.474793], [-125.289563, 51.4756], [-125.286009, 51.480642], [-125.27866, 51.486526], [-125.281969, 51.493329], [-125.287016, 51.499747], [-125.28899, 51.504829], [-125.280404, 51.506711], [-125.271611, 51.507524], [-125.266733, 51.509737], [-125.259733, 51.511778], [-125.248659, 51.510556], [-125.241848, 51.518157], [-125.240987, 51.523855], [-125.24552, 51.526625], [-125.252292, 51.526872], [-125.261769, 51.533978], [-125.26363, 51.536967], [-125.266768, 51.540665], [-125.267842, 51.545474], [-125.267479, 51.549071], [-125.263233, 51.552144], [-125.257319, 51.554087], [-125.250212, 51.556075], [-125.243433, 51.557752], [-125.237882, 51.559755], [-125.235642, 51.561333], [-125.234387, 51.565634], [-125.235324, 51.570301], [-125.237892, 51.572069], [-125.250178, 51.573989], [-125.268945, 51.577226], [-125.284171, 51.58097], [-125.292164, 51.584245], [-125.296032, 51.589395], [-125.292023, 51.609331], [-125.232882, 51.640487], [-125.229068, 51.644366], [-125.22896, 51.646908], [-125.233783, 51.650758], [-125.240086, 51.656194], [-125.245392, 51.664878], [-125.248396, 51.675741], [-125.247107, 51.679673], [-125.238546, 51.687765], [-125.234254, 51.694127], [-125.235077, 51.699995], [-125.239225, 51.705439], [-125.2449, 51.710526], [-125.256548, 51.723231], [-125.255355, 51.727055], [-125.254893, 51.73233], [-125.249415, 51.733598], [-125.247697, 51.735097], [-125.248876, 51.737271], [-125.247175, 51.740614], [-125.240407, 51.743841], [-125.237746, 51.748585], [-125.242024, 51.754535], [-125.252131, 51.761253], [-125.254715, 51.765081], [-125.266252, 51.768159], [-125.274465, 51.772386], [-125.280991, 51.771011], [-125.289826, 51.7718], [-125.299503, 51.774399], [-125.311132, 51.778322], [-125.32803, 51.780129], [-125.341256, 51.784534], [-125.345606, 51.787584], [-125.348871, 51.790663], [-125.354128, 51.790828], [-125.36946, 51.787465], [-125.379456, 51.789328], [-125.382592, 51.793576], [-125.386385, 51.796705], [-125.388867, 51.802072], [-125.400293, 51.807872], [-125.410849, 51.817735], [-125.416603, 51.82007], [-125.418617, 51.823269], [-125.416714, 51.826691], [-125.406512, 51.828701], [-125.404608, 51.833182], [-125.40628, 51.838137], [-125.415058, 51.841411], [-125.427812, 51.841796], [-125.438412, 51.838678], [-125.445642, 51.840303], [-125.453838, 51.841139], [-125.463007, 51.840467], [-125.463373, 51.844256], [-125.459208, 51.850456], [-125.461759, 51.858449], [-125.466308, 51.864177], [-125.472691, 51.865049], [-125.486204, 51.865464], [-125.496486, 51.864573], [-125.501555, 51.867573], [-125.513624, 51.868202], [-125.512763, 51.870181], [-125.505482, 51.876749], [-125.501321, 51.878416], [-125.498609, 51.88341], [-125.498974, 51.884883], [-125.496464, 51.898011], [-125.488956, 51.911792], [-125.487475, 51.91582], [-125.489109, 51.918525], [-125.50041, 51.925713], [-125.515501, 51.933929], [-125.525959, 51.93842], [-125.52858, 51.938846], [-125.533375, 51.93542], [-125.539302, 51.933096], [-125.537654, 51.925649], [-125.529731, 51.920473], [-125.529464, 51.917035], [-125.53558, 51.912654], [-125.544054, 51.910466], [-125.558111, 51.915702], [-125.56825, 51.916176], [-125.575292, 51.913363], [-125.575215, 51.913295], [-125.576837, 51.910325], [-125.584601, 51.902969], [-125.597865, 51.900817], [-125.611626, 51.903255], [-125.624879, 51.911622], [-125.635554, 51.914868], [-125.646362, 51.921559], [-125.656659, 51.924101], [-125.661841, 51.933588], [-125.668967, 51.935955], [-125.678574, 51.943171], [-125.680489, 51.952078], [-125.68966, 51.957331], [-125.695776, 51.964933], [-125.70224, 51.975595], [-125.700922, 51.980658], [-125.704682, 51.986189], [-125.708387, 51.994818], [-125.715273, 52.004323], [-125.720828, 52.0085], [-125.727863, 52.009623], [-125.739682, 52.012312], [-125.74904, 52.010131], [-125.759688, 52.005079], [-125.777079, 52.000901], [-125.795873, 51.987206], [-125.802184, 51.979686], [-125.814647, 51.975419]], [[-126.82057, 50.922727], [-126.82181, 50.923308], [-126.82196, 50.923428], [-126.823082, 50.9238], [-126.823221, 50.923884], [-126.823149, 50.924468], [-126.820023, 50.92446], [-126.819995, 50.922735], [-126.82057, 50.922727]], [[-126.183805, 50.976037], [-126.183625, 50.97677], [-126.18321, 50.977487], [-126.182303, 50.978501], [-126.18115, 50.979303], [-126.180441, 50.979642], [-126.179743, 50.979935], [-126.177746, 50.980455], [-126.175232, 50.980802], [-126.173521, 50.980834], [-126.171543, 50.980745], [-126.168736, 50.980445], [-126.169653, 50.965121], [-126.180614, 50.966232], [-126.180609, 50.96577], [-126.181476, 50.963626], [-126.182596, 50.962258], [-126.184307, 50.961095], [-126.188274, 50.960799], [-126.19125, 50.962628], [-126.190756, 50.9712], [-126.183499, 50.971567], [-126.182523, 50.971537], [-126.1837, 50.973601], [-126.183805, 50.976037]], [[-126.600239, 50.695308], [-126.600903, 50.69561], [-126.601525, 50.696171], [-126.601314, 50.696446], [-126.600527, 50.696879], [-126.600343, 50.697137], [-126.600585, 50.697385], [-126.601213, 50.6977], [-126.594603, 50.697801], [-126.594344, 50.690834], [-126.595198, 50.69059], [-126.595963, 50.69057], [-126.596253, 50.690746], [-126.596501, 50.691157], [-126.596665, 50.691259], [-126.597045, 50.691293], [-126.597146, 50.691251], [-126.597168, 50.691134], [-126.597069, 50.690845], [-126.597103, 50.690711], [-126.597266, 50.690561], [-126.597671, 50.690399], [-126.597915, 50.690368], [-126.59824, 50.690365], [-126.598378, 50.690422], [-126.598457, 50.690523], [-126.598427, 50.690873], [-126.598656, 50.691624], [-126.598826, 50.691906], [-126.599112, 50.692155], [-126.599502, 50.69228], [-126.600271, 50.692746], [-126.600688, 50.693151], [-126.600872, 50.693451], [-126.600814, 50.693764], [-126.600629, 50.694031], [-126.60075, 50.694474], [-126.600548, 50.694541], [-126.600284, 50.694445], [-126.600131, 50.69465], [-126.600239, 50.695308]], [[-126.598339, 50.595492], [-126.598151, 50.595857], [-126.598246, 50.596488], [-126.59844, 50.596573], [-126.598807, 50.596591], [-126.598896, 50.596781], [-126.599169, 50.596958], [-126.599314, 50.597149], [-126.599124, 50.59729], [-126.598436, 50.597482], [-126.598116, 50.597664], [-126.597975, 50.59767], [-126.597783, 50.597576], [-126.597424, 50.597659], [-126.59719, 50.597538], [-126.596624, 50.597535], [-126.59588, 50.597726], [-126.595083, 50.597844], [-126.594829, 50.597821], [-126.593911, 50.597559], [-126.593526, 50.597344], [-126.592287, 50.597256], [-126.590951, 50.596841], [-126.590345, 50.596793], [-126.589733, 50.596636], [-126.589648, 50.596635], [-126.589587, 50.596714], [-126.589608, 50.596823], [-126.5898, 50.596952], [-126.59019, 50.597059], [-126.590201, 50.597123], [-126.589076, 50.597307], [-126.587609, 50.597312], [-126.588149, 50.593117], [-126.588844, 50.592984], [-126.589763, 50.592976], [-126.591495, 50.592851], [-126.592082, 50.592701], [-126.592528, 50.592512], [-126.592662, 50.592398], [-126.592669, 50.592234], [-126.597196, 50.592365], [-126.597162, 50.592544], [-126.59725, 50.592771], [-126.597706, 50.592925], [-126.598059, 50.593265], [-126.598183, 50.593276], [-126.598514, 50.593167], [-126.598905, 50.593282], [-126.599134, 50.593215], [-126.599801, 50.593165], [-126.599889, 50.593383], [-126.600277, 50.593796], [-126.600165, 50.594054], [-126.60022, 50.594362], [-126.600141, 50.594504], [-126.599513, 50.594941], [-126.599097, 50.595077], [-126.598788, 50.595313], [-126.598339, 50.595492]]]]}, "properties": {"name": "Mount Waddington A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Mount Waddington A", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943037", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.406485, 50.695848], [-127.40769, 50.695755], [-127.408064, 50.695582], [-127.408168, 50.695448], [-127.408089, 50.694549], [-127.405757, 50.694505], [-127.405718, 50.695205], [-127.40289, 50.695254], [-127.40303, 50.695911], [-127.402994, 50.696496], [-127.405452, 50.696203], [-127.406485, 50.695848]]]]}, "properties": {"name": "Fort Rupert 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Fort Rupert 1", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943804", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.494973, 50.736811], [-127.494774, 50.737285], [-127.494925, 50.737431], [-127.49536, 50.737572], [-127.495501, 50.738005], [-127.495533, 50.738338], [-127.495372, 50.738993], [-127.495484, 50.739489], [-127.495395, 50.739631], [-127.49486, 50.739922], [-127.494584, 50.740152], [-127.494551, 50.740305], [-127.494735, 50.740738], [-127.494763, 50.741188], [-127.49446, 50.741777], [-127.494444, 50.742281], [-127.494662, 50.742563], [-127.495049, 50.742784], [-127.498137, 50.742845], [-127.505366, 50.737025], [-127.5055, 50.735897], [-127.502505, 50.735587], [-127.502635, 50.733276], [-127.50215, 50.733001], [-127.501162, 50.732934], [-127.50095, 50.732526], [-127.500594, 50.732125], [-127.499286, 50.731372], [-127.499062, 50.731288], [-127.4983, 50.731188], [-127.4964, 50.7312], [-127.495683, 50.731029], [-127.494647, 50.73062], [-127.494364, 50.730634], [-127.49425, 50.730668], [-127.494469, 50.730878], [-127.494477, 50.731094], [-127.494666, 50.731358], [-127.496292, 50.732808], [-127.496539, 50.733108], [-127.496571, 50.733414], [-127.496493, 50.733665], [-127.496088, 50.733876], [-127.495897, 50.734116], [-127.495906, 50.734269], [-127.496219, 50.734633], [-127.496325, 50.734896], [-127.496535, 50.734961], [-127.496645, 50.735079], [-127.496686, 50.735592], [-127.496433, 50.735939], [-127.495761, 50.736102], [-127.494973, 50.736811]]]]}, "properties": {"name": "Tsulquate 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Tsulquate 4", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943806", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.597196, 50.592365], [-126.592669, 50.592234], [-126.592662, 50.592398], [-126.592528, 50.592512], [-126.592082, 50.592701], [-126.591495, 50.592851], [-126.589763, 50.592976], [-126.588844, 50.592984], [-126.588149, 50.593117], [-126.587609, 50.597312], [-126.589076, 50.597307], [-126.590201, 50.597123], [-126.59019, 50.597059], [-126.589691, 50.596897], [-126.589587, 50.596714], [-126.589648, 50.596635], [-126.590345, 50.596793], [-126.590951, 50.596841], [-126.592287, 50.597256], [-126.593526, 50.597344], [-126.593911, 50.597559], [-126.594829, 50.597821], [-126.595083, 50.597844], [-126.596008, 50.597701], [-126.596624, 50.597535], [-126.59719, 50.597538], [-126.597424, 50.597659], [-126.597783, 50.597576], [-126.597975, 50.59767], [-126.598116, 50.597664], [-126.598436, 50.597482], [-126.599124, 50.59729], [-126.599269, 50.597203], [-126.599305, 50.597086], [-126.598964, 50.596854], [-126.598807, 50.596591], [-126.59844, 50.596573], [-126.598246, 50.596488], [-126.598151, 50.596145], [-126.598188, 50.595705], [-126.598339, 50.595492], [-126.598788, 50.595313], [-126.599097, 50.595077], [-126.599513, 50.594941], [-126.600141, 50.594504], [-126.60022, 50.594362], [-126.600165, 50.594054], [-126.600277, 50.593796], [-126.599889, 50.593383], [-126.599801, 50.593165], [-126.599134, 50.593215], [-126.598905, 50.593282], [-126.598514, 50.593167], [-126.598183, 50.593276], [-126.598059, 50.593265], [-126.597706, 50.592925], [-126.59725, 50.592771], [-126.597162, 50.592544], [-126.597196, 50.592365]]]]}, "properties": {"name": "Dead Point 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Dead Point 5", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943807", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.594603, 50.697801], [-126.601213, 50.6977], [-126.600585, 50.697385], [-126.600343, 50.697137], [-126.600527, 50.696879], [-126.601314, 50.696446], [-126.601525, 50.696171], [-126.600903, 50.69561], [-126.600239, 50.695308], [-126.600121, 50.69482], [-126.600131, 50.69465], [-126.600284, 50.694445], [-126.600548, 50.694541], [-126.60075, 50.694474], [-126.600629, 50.694031], [-126.600814, 50.693764], [-126.600872, 50.693451], [-126.600688, 50.693151], [-126.600271, 50.692746], [-126.599502, 50.69228], [-126.599112, 50.692155], [-126.598826, 50.691906], [-126.598656, 50.691624], [-126.598427, 50.690873], [-126.598457, 50.690523], [-126.59824, 50.690365], [-126.597671, 50.690399], [-126.597266, 50.690561], [-126.597103, 50.690711], [-126.597069, 50.690845], [-126.597168, 50.691134], [-126.597146, 50.691251], [-126.597045, 50.691293], [-126.596665, 50.691259], [-126.596501, 50.691157], [-126.596253, 50.690746], [-126.595963, 50.69057], [-126.595198, 50.69059], [-126.594344, 50.690834], [-126.594603, 50.697801]]]]}, "properties": {"name": "Gwayasdums 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Gwayasdums 1", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943808", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.823221, 50.923884], [-126.82196, 50.923428], [-126.82181, 50.923308], [-126.82057, 50.922727], [-126.819995, 50.922735], [-126.820023, 50.92446], [-126.823149, 50.924468], [-126.823221, 50.923884]]]]}, "properties": {"name": "Hopetown 10A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Hopetown 10A", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943809", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.168736, 50.980445], [-126.171543, 50.980745], [-126.173521, 50.980834], [-126.175232, 50.980802], [-126.177746, 50.980455], [-126.179743, 50.979935], [-126.18115, 50.979303], [-126.182303, 50.978501], [-126.18321, 50.977487], [-126.183625, 50.97677], [-126.183805, 50.976037], [-126.1837, 50.973601], [-126.182523, 50.971537], [-126.183499, 50.971567], [-126.190756, 50.9712], [-126.19125, 50.962628], [-126.188274, 50.960799], [-126.184307, 50.961095], [-126.182596, 50.962258], [-126.181476, 50.963626], [-126.180609, 50.96577], [-126.180614, 50.966232], [-126.169653, 50.965121], [-126.168736, 50.980445]]]]}, "properties": {"name": "Quaee 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Quaee 7", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943813", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.412362, 50.694992], [-127.413277, 50.695103], [-127.414043, 50.695268], [-127.413891, 50.694533], [-127.413748, 50.692037], [-127.411463, 50.69205], [-127.412478, 50.691186], [-127.410753, 50.690401], [-127.410074, 50.690154], [-127.40747, 50.689625], [-127.407161, 50.690249], [-127.405687, 50.689958], [-127.405457, 50.689733], [-127.404222, 50.688962], [-127.40303, 50.688852], [-127.402864, 50.689571], [-127.399578, 50.689265], [-127.399372, 50.688587], [-127.396421, 50.688948], [-127.39638, 50.692102], [-127.408105, 50.692069], [-127.408195, 50.692563], [-127.40818, 50.693453], [-127.408051, 50.693988], [-127.408168, 50.695448], [-127.408936, 50.695305], [-127.409447, 50.695294], [-127.409898, 50.695364], [-127.410361, 50.695063], [-127.412362, 50.694992]]]]}, "properties": {"name": "Kippase 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Kippase 2", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943815", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.565422, 50.61919], [-127.56635, 50.618098], [-127.568686, 50.617069], [-127.573846, 50.615477], [-127.575425, 50.61461], [-127.577943, 50.613593], [-127.574243, 50.612005], [-127.57402, 50.612459], [-127.573473, 50.61306], [-127.573041, 50.613258], [-127.570701, 50.613858], [-127.570079, 50.614091], [-127.56583, 50.616123], [-127.563236, 50.61778], [-127.565422, 50.61919]]]]}, "properties": {"name": "Quatsino Subdivision 18", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Quatsino Subdivision 18", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943816", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.380941, 50.697024], [-127.380968, 50.697493], [-127.380847, 50.698138], [-127.380915, 50.698229], [-127.381514, 50.698471], [-127.381689, 50.698716], [-127.382343, 50.698662], [-127.382653, 50.699117], [-127.383466, 50.699353], [-127.383548, 50.699461], [-127.383566, 50.699767], [-127.383732, 50.699896], [-127.384141, 50.699947], [-127.384638, 50.699864], [-127.385543, 50.69993], [-127.385799, 50.694456], [-127.380363, 50.694412], [-127.380149, 50.694424], [-127.380941, 50.697024]]]]}, "properties": {"name": "Thomas Point 5", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Thomas Point 5", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943817", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.393488, 50.697605], [-127.394418, 50.69757], [-127.39635, 50.697741], [-127.39662, 50.696985], [-127.385685, 50.696878], [-127.385543, 50.69993], [-127.386213, 50.699796], [-127.387418, 50.699767], [-127.387617, 50.699708], [-127.388088, 50.699201], [-127.388617, 50.698811], [-127.388979, 50.69843], [-127.389771, 50.698122], [-127.39066, 50.698158], [-127.391334, 50.698265], [-127.392104, 50.698512], [-127.392588, 50.698507], [-127.393063, 50.697812], [-127.393488, 50.697605]]]]}, "properties": {"name": "Thomas Point 5A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Thomas Point 5A", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943826", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.928319, 50.583329], [-126.928254, 50.582484], [-126.928419, 50.582484], [-126.928406, 50.582009], [-126.928356, 50.581819], [-126.928047, 50.581485], [-126.926735, 50.581841], [-126.926818, 50.582485], [-126.925117, 50.58239], [-126.925207, 50.583195], [-126.928319, 50.583329]]]]}, "properties": {"name": "Nimpkish 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Nimpkish 2", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943835", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.92177, 50.935438], [-127.921888, 50.935196], [-127.921699, 50.934152], [-127.922117, 50.933329], [-127.922632, 50.932631], [-127.92473, 50.930529], [-127.927907, 50.927906], [-127.928978, 50.927105], [-127.929613, 50.926742], [-127.930316, 50.926462], [-127.93182, 50.926016], [-127.932833, 50.925918], [-127.933557, 50.926006], [-127.933994, 50.926144], [-127.93445, 50.92614], [-127.934812, 50.925909], [-127.936017, 50.924849], [-127.936925, 50.92431], [-127.938406, 50.923666], [-127.941202, 50.922658], [-127.942219, 50.92237], [-127.943348, 50.922173], [-127.944786, 50.922096], [-127.945894, 50.922169], [-127.946873, 50.922331], [-127.947481, 50.922498], [-127.947972, 50.9228], [-127.948205, 50.923153], [-127.948215, 50.923333], [-127.948005, 50.923834], [-127.948074, 50.923969], [-127.950515, 50.923588], [-127.951682, 50.923543], [-127.952816, 50.923697], [-127.954413, 50.924261], [-127.954611, 50.92428], [-127.955232, 50.923944], [-127.955888, 50.92378], [-127.957614, 50.92232], [-127.958752, 50.921719], [-127.959987, 50.921181], [-127.96056, 50.921087], [-127.961833, 50.920729], [-127.962374, 50.920689], [-127.962885, 50.920748], [-127.963265, 50.92094], [-127.963363, 50.92105], [-127.963425, 50.9214], [-127.963678, 50.921609], [-127.963834, 50.921629], [-127.965901, 50.921369], [-127.966704, 50.921132], [-127.967324, 50.920761], [-127.967781, 50.920738], [-127.968183, 50.920561], [-127.968925, 50.920397], [-127.970202, 50.919284], [-127.970679, 50.919], [-127.970964, 50.918967], [-127.972224, 50.918529], [-127.97284, 50.918381], [-127.973969, 50.918157], [-127.974852, 50.918084], [-127.975464, 50.918089], [-127.975748, 50.918146], [-127.976724, 50.918423], [-127.977159, 50.918617], [-127.977411, 50.918835], [-127.977288, 50.919193], [-127.976925, 50.919273], [-127.977288, 50.919194], [-127.977555, 50.919429], [-127.978234, 50.919597], [-127.978883, 50.919863], [-127.980277, 50.919858], [-127.981114, 50.919973], [-127.981594, 50.920121], [-127.98259, 50.920742], [-127.983042, 50.920934], [-127.983537, 50.921047], [-127.984036, 50.921015], [-127.984395, 50.920812], [-127.984748, 50.920275], [-127.984599, 50.919302], [-127.984779, 50.918854], [-127.985085, 50.918525], [-127.985679, 50.91808], [-127.987049, 50.917237], [-127.987837, 50.916992], [-127.988852, 50.916767], [-127.989335, 50.916798], [-127.990001, 50.916929], [-127.990401, 50.916817], [-127.990643, 50.91681], [-127.992327, 50.917193], [-127.993496, 50.917132], [-127.99394, 50.916999], [-127.994591, 50.916475], [-127.994739, 50.916189], [-127.995357, 50.915878], [-127.995691, 50.915612], [-127.996234, 50.915509], [-127.996494, 50.91525], [-127.996645, 50.914937], [-127.996675, 50.914191], [-127.996891, 50.913356], [-127.996814, 50.913004], [-127.996593, 50.912661], [-127.996382, 50.911859], [-127.996029, 50.911721], [-127.99576, 50.911728], [-127.995315, 50.91193], [-127.994997, 50.912161], [-127.99454, 50.912302], [-127.994169, 50.912254], [-127.99372, 50.911997], [-127.993345, 50.91159], [-127.993147, 50.910896], [-127.992241, 50.910636], [-127.991652, 50.910298], [-127.991039, 50.909727], [-127.990697, 50.909022], [-127.990447, 50.908705], [-127.989874, 50.90834], [-127.989208, 50.908119], [-127.988999, 50.907974], [-127.988818, 50.907819], [-127.988376, 50.907176], [-127.987946, 50.906751], [-127.987648, 50.906621], [-127.987237, 50.906637], [-127.986869, 50.906534], [-127.986786, 50.906443], [-127.98663, 50.905731], [-127.986508, 50.90547], [-127.98624, 50.905296], [-127.986203, 50.905036], [-127.986035, 50.90498], [-127.98575, 50.90504], [-127.985442, 50.904812], [-127.985285, 50.904821], [-127.984723, 50.90513], [-127.984177, 50.905342], [-127.983964, 50.905349], [-127.98381, 50.905221], [-127.983626, 50.905165], [-127.983198, 50.905242], [-127.982959, 50.905097], [-127.98315, 50.904919], [-127.983123, 50.904784], [-127.982652, 50.904879], [-127.982602, 50.904536], [-127.982309, 50.904272], [-127.981885, 50.904143], [-127.981374, 50.904103], [-127.981109, 50.903902], [-127.980882, 50.903857], [-127.98068, 50.904008], [-127.979939, 50.904046], [-127.979023, 50.90429], [-127.978883, 50.904215], [-127.978684, 50.904206], [-127.978294, 50.90449], [-127.97737, 50.904482], [-127.977005, 50.904281], [-127.976801, 50.904459], [-127.976186, 50.90466], [-127.975671, 50.904728], [-127.975245, 50.904688], [-127.974498, 50.904421], [-127.973488, 50.903764], [-127.97331, 50.903421], [-127.9734, 50.903278], [-127.97339, 50.903062], [-127.973293, 50.903025], [-127.972918, 50.903201], [-127.972435, 50.903206], [-127.972307, 50.903133], [-127.972282, 50.903043], [-127.972414, 50.902801], [-127.972347, 50.902639], [-127.972091, 50.902673], [-127.971879, 50.90258], [-127.971452, 50.902613], [-127.969475, 50.903305], [-127.969033, 50.903347], [-127.968623, 50.9032], [-127.9683, 50.902964], [-127.96712, 50.901756], [-127.965932, 50.90136], [-127.965563, 50.901347], [-127.965231, 50.901586], [-127.964904, 50.901629], [-127.964329, 50.901246], [-127.964057, 50.901243], [-127.963899, 50.901377], [-127.963765, 50.901646], [-127.96345, 50.901777], [-127.96291, 50.901692], [-127.962006, 50.901406], [-127.961458, 50.901131], [-127.961377, 50.900923], [-127.961224, 50.900842], [-127.960399, 50.900816], [-127.959439, 50.901095], [-127.959198, 50.901119], [-127.958287, 50.901165], [-127.957519, 50.901132], [-127.957182, 50.900931], [-127.956975, 50.900668], [-127.956385, 50.900366], [-127.955811, 50.899929], [-127.955698, 50.899929], [-127.955439, 50.900088], [-127.954867, 50.900137], [-127.954353, 50.900312], [-127.95391, 50.900344], [-127.952569, 50.899846], [-127.951804, 50.899759], [-127.950723, 50.899785], [-127.950272, 50.899601], [-127.949764, 50.89948], [-127.948839, 50.899444], [-127.948301, 50.899367], [-127.947637, 50.89911], [-127.946659, 50.89902], [-127.94643, 50.899054], [-127.946001, 50.899194], [-127.94551, 50.899494], [-127.944723, 50.899731], [-127.9426, 50.899882], [-127.942369, 50.900016], [-127.94232, 50.900356], [-127.94258, 50.900836], [-127.942254, 50.901371], [-127.942157, 50.90192], [-127.941903, 50.90244], [-127.94161, 50.902741], [-127.941264, 50.902945], [-127.941065, 50.903043], [-127.940407, 50.903199], [-127.940205, 50.903314], [-127.939881, 50.903743], [-127.939809, 50.904425], [-127.940022, 50.905714], [-127.939831, 50.906], [-127.93982, 50.906511], [-127.939622, 50.907023], [-127.939663, 50.907698], [-127.938973, 50.908726], [-127.938855, 50.908833], [-127.938615, 50.90883], [-127.938411, 50.908334], [-127.938314, 50.908297], [-127.938123, 50.908492], [-127.937481, 50.908649], [-127.935902, 50.908643], [-127.935655, 50.908876], [-127.935545, 50.909333], [-127.935742, 50.910693], [-127.936019, 50.910992], [-127.936582, 50.911231], [-127.937174, 50.912117], [-127.937337, 50.912452], [-127.937396, 50.912974], [-127.937603, 50.913263], [-127.937691, 50.913776], [-127.937855, 50.914057], [-127.938467, 50.914656], [-127.939077, 50.914779], [-127.939231, 50.914889], [-127.939023, 50.915237], [-127.93904, 50.91574], [-127.939722, 50.91643], [-127.939864, 50.917681], [-127.940188, 50.918431], [-127.940439, 50.918703], [-127.940776, 50.918922], [-127.942015, 50.919427], [-127.942476, 50.919855], [-127.942539, 50.920179], [-127.94235, 50.920393], [-127.941935, 50.920497], [-127.941573, 50.920674], [-127.941223, 50.921075], [-127.940367, 50.921256], [-127.939948, 50.921477], [-127.939312, 50.921957], [-127.938234, 50.922443], [-127.937562, 50.922562], [-127.937307, 50.922541], [-127.936869, 50.922384], [-127.936388, 50.922299], [-127.93559, 50.92231], [-127.935476, 50.921725], [-127.935681, 50.920809], [-127.935675, 50.919883], [-127.93548, 50.918442], [-127.935201, 50.917505], [-127.935026, 50.916505], [-127.935356, 50.915725], [-127.935362, 50.91541], [-127.935028, 50.915192], [-127.934963, 50.914859], [-127.934572, 50.91454], [-127.934011, 50.914265], [-127.933162, 50.913997], [-127.932439, 50.913846], [-127.932003, 50.913644], [-127.931308, 50.913557], [-127.930644, 50.913326], [-127.929084, 50.91198], [-127.928722, 50.911581], [-127.928176, 50.911261], [-127.927996, 50.911035], [-127.928068, 50.910982], [-127.929103, 50.911082], [-127.929389, 50.91103], [-127.93012, 50.910164], [-127.930537, 50.910006], [-127.931188, 50.909518], [-127.932869, 50.90875], [-127.933321, 50.908269], [-127.933313, 50.908081], [-127.932964, 50.907726], [-127.932884, 50.907483], [-127.932867, 50.906988], [-127.933021, 50.906513], [-127.932796, 50.905711], [-127.932879, 50.905244], [-127.932819, 50.904757], [-127.932357, 50.9038], [-127.931911, 50.903401], [-127.931694, 50.902948], [-127.930865, 50.901888], [-127.930584, 50.901085], [-127.930462, 50.900212], [-127.930409, 50.900077], [-127.9301, 50.89984], [-127.929952, 50.899524], [-127.929957, 50.899272], [-127.930248, 50.89906], [-127.930263, 50.89896], [-127.930168, 50.898789], [-127.929948, 50.897177], [-127.930042, 50.896845], [-127.930541, 50.896211], [-127.930303, 50.896021], [-127.929974, 50.896045], [-127.929835, 50.895979], [-127.929997, 50.89572], [-127.93, 50.895568], [-127.929758, 50.895017], [-127.929473, 50.894997], [-127.929286, 50.895058], [-127.928509, 50.895501], [-127.927847, 50.8958], [-127.927676, 50.895825], [-127.927594, 50.895743], [-127.927698, 50.895502], [-127.927557, 50.89542], [-127.926533, 50.895464], [-127.92539, 50.895706], [-127.925253, 50.895452], [-127.924997, 50.895459], [-127.924591, 50.895806], [-127.923343, 50.896298], [-127.922183, 50.896656], [-127.921713, 50.896687], [-127.920689, 50.896642], [-127.919733, 50.896858], [-127.919105, 50.896942], [-127.918409, 50.896864], [-127.917958, 50.896724], [-127.917089, 50.896744], [-127.916776, 50.896785], [-127.916115, 50.897076], [-127.915359, 50.897177], [-127.914478, 50.897097], [-127.91352, 50.896774], [-127.912939, 50.896696], [-127.911743, 50.896136], [-127.911305, 50.895998], [-127.910866, 50.895939], [-127.910324, 50.895961], [-127.90985, 50.89619], [-127.909785, 50.896595], [-127.909668, 50.896737], [-127.909365, 50.896896], [-127.908662, 50.896495], [-127.907929, 50.896263], [-127.907122, 50.896139], [-127.906567, 50.896142], [-127.906096, 50.896219], [-127.905837, 50.896297], [-127.905505, 50.896501], [-127.905417, 50.897228], [-127.905198, 50.897469], [-127.905147, 50.897801], [-127.904622, 50.898399], [-127.904002, 50.898727], [-127.903432, 50.898819], [-127.9031, 50.899006], [-127.902641, 50.899145], [-127.902386, 50.899151], [-127.9019, 50.899264], [-127.901566, 50.899503], [-127.901618, 50.8998], [-127.901239, 50.900184], [-127.900883, 50.900783], [-127.900838, 50.901484], [-127.900961, 50.902286], [-127.900718, 50.902939], [-127.900748, 50.903516], [-127.900374, 50.903674], [-127.899902, 50.903787], [-127.898835, 50.903831], [-127.89871, 50.903659], [-127.898648, 50.903298], [-127.898062, 50.902232], [-127.896609, 50.901111], [-127.896069, 50.900477], [-127.895715, 50.899843], [-127.895651, 50.899547], [-127.895969, 50.899298], [-127.896042, 50.899191], [-127.896003, 50.899037], [-127.895936, 50.898893], [-127.895449, 50.898466], [-127.89478, 50.89845], [-127.894136, 50.898606], [-127.893771, 50.898476], [-127.893326, 50.89804], [-127.892816, 50.897911], [-127.892659, 50.897909], [-127.892544, 50.897979], [-127.892508, 50.898302], [-127.892194, 50.898345], [-127.891604, 50.898069], [-127.891095, 50.897966], [-127.889671, 50.897979], [-127.889092, 50.897902], [-127.888115, 50.89765], [-127.887429, 50.89723], [-127.887313, 50.896689], [-127.887576, 50.896448], [-127.887947, 50.896425], [-127.888777, 50.896703], [-127.888994, 50.896633], [-127.8896, 50.896216], [-127.890165, 50.89578], [-127.890211, 50.895655], [-127.890188, 50.895465], [-127.889937, 50.895185], [-127.889278, 50.894881], [-127.888288, 50.894575], [-127.88818, 50.894323], [-127.888273, 50.894062], [-127.887978, 50.893826], [-127.887768, 50.893725], [-127.887243, 50.893648], [-127.885502, 50.894558], [-127.885003, 50.894562], [-127.884096, 50.893924], [-127.88401, 50.893923], [-127.883029, 50.894463], [-127.882061, 50.894525], [-127.881838, 50.894397], [-127.881755, 50.894252], [-127.881787, 50.894118], [-127.882143, 50.893483], [-127.882357, 50.893467], [-127.883001, 50.893275], [-127.883671, 50.893245], [-127.88427, 50.893152], [-127.885256, 50.89291], [-127.885716, 50.892735], [-127.88587, 50.892278], [-127.886305, 50.891886], [-127.886046, 50.89146], [-127.88585, 50.891332], [-127.885199, 50.891137], [-127.884673, 50.890611], [-127.884476, 50.890475], [-127.884026, 50.890317], [-127.883975, 50.890065], [-127.883623, 50.889845], [-127.882973, 50.88975], [-127.882501, 50.889862], [-127.882162, 50.889724], [-127.881694, 50.88971], [-127.881115, 50.889489], [-127.880847, 50.889451], [-127.880632, 50.88952], [-127.880526, 50.889771], [-127.880209, 50.889975], [-127.879998, 50.889828], [-127.87995, 50.889478], [-127.879252, 50.888958], [-127.878758, 50.888756], [-127.878024, 50.888551], [-127.877768, 50.888531], [-127.873738, 50.88887], [-127.872993, 50.889088], [-127.871923, 50.889193], [-127.871465, 50.889315], [-127.871048, 50.889536], [-127.870549, 50.889585], [-127.869864, 50.88974], [-127.868541, 50.890357], [-127.86838, 50.890463], [-127.868335, 50.89058], [-127.868356, 50.890903], [-127.868479, 50.891165], [-127.868757, 50.89142], [-127.86945, 50.89158], [-127.869827, 50.891808], [-127.870002, 50.892224], [-127.869672, 50.892373], [-127.869244, 50.892414], [-127.868283, 50.892125], [-127.866495, 50.891964], [-127.864443, 50.892188], [-127.863409, 50.892627], [-127.863139, 50.892561], [-127.862833, 50.892316], [-127.862635, 50.892286], [-127.862489, 50.892456], [-127.862643, 50.892575], [-127.862681, 50.892773], [-127.862146, 50.893128], [-127.861578, 50.893689], [-127.861146, 50.893856], [-127.860866, 50.893745], [-127.860478, 50.893876], [-127.859854, 50.894408], [-127.85921, 50.895105], [-127.858655, 50.895189], [-127.858191, 50.895526], [-127.857619, 50.895655], [-127.856887, 50.895954], [-127.85654, 50.896184], [-127.856266, 50.897476], [-127.856302, 50.897801], [-127.856559, 50.898306], [-127.856509, 50.898603], [-127.856406, 50.898728], [-127.855989, 50.898967], [-127.855607, 50.899467], [-127.85501, 50.9], [-127.854539, 50.900644], [-127.854438, 50.901253], [-127.854757, 50.901608], [-127.854752, 50.901769], [-127.854637, 50.901885], [-127.853906, 50.902058], [-127.853126, 50.902051], [-127.85223, 50.90259], [-127.851957, 50.902686], [-127.851467, 50.902402], [-127.851327, 50.902266], [-127.85133, 50.902167], [-127.85194, 50.901652], [-127.852127, 50.901007], [-127.852062, 50.900718], [-127.851331, 50.900377], [-127.850844, 50.899987], [-127.849946, 50.899464], [-127.848128, 50.898818], [-127.847479, 50.898533], [-127.847296, 50.898513], [-127.846839, 50.898588], [-127.84563, 50.899144], [-127.845133, 50.899111], [-127.84464, 50.898917], [-127.84432, 50.898681], [-127.844686, 50.898252], [-127.844533, 50.898134], [-127.844104, 50.898165], [-127.843557, 50.898422], [-127.842856, 50.898621], [-127.84233, 50.898653], [-127.84188, 50.89844], [-127.84161, 50.898385], [-127.84134, 50.898399], [-127.840653, 50.898581], [-127.840246, 50.898964], [-127.840201, 50.899044], [-127.840454, 50.899164], [-127.840493, 50.899264], [-127.840497, 50.899749], [-127.840299, 50.900233], [-127.84005, 50.900518], [-127.839862, 50.900624], [-127.839418, 50.900728], [-127.838858, 50.90101], [-127.837886, 50.901143], [-127.83754, 50.901374], [-127.837245, 50.901759], [-127.836861, 50.901817], [-127.836393, 50.90175], [-127.836136, 50.901774], [-127.835448, 50.902001], [-127.83483, 50.902291], [-127.83438, 50.902665], [-127.834054, 50.903139], [-127.833708, 50.903341], [-127.832865, 50.904053], [-127.832603, 50.904356], [-127.832462, 50.904814], [-127.832749, 50.905248], [-127.833152, 50.905665], [-127.833741, 50.906013], [-127.834046, 50.906276], [-127.834112, 50.906574], [-127.833849, 50.906788], [-127.833825, 50.907184], [-127.834156, 50.907599], [-127.834352, 50.907728], [-127.834993, 50.907735], [-127.83577, 50.907877], [-127.837276, 50.908575], [-127.837696, 50.908867], [-127.838068, 50.90933], [-127.838263, 50.909467], [-127.838672, 50.909669], [-127.839603, 50.909884], [-127.839827, 50.910085], [-127.83981, 50.91021], [-127.839462, 50.910459], [-127.839402, 50.910575], [-127.839582, 50.910774], [-127.839961, 50.910949], [-127.840316, 50.910979], [-127.840439, 50.911233], [-127.840957, 50.911535], [-127.841381, 50.911674], [-127.842092, 50.911654], [-127.843707, 50.912497], [-127.844548, 50.913027], [-127.845922, 50.913769], [-127.846828, 50.914578], [-127.847158, 50.915077], [-127.847168, 50.916344], [-127.846954, 50.917502], [-127.84682, 50.917807], [-127.845656, 50.918838], [-127.845394, 50.920742], [-127.845123, 50.921369], [-127.84512, 50.921531], [-127.845397, 50.921813], [-127.845478, 50.922011], [-127.845536, 50.922534], [-127.845911, 50.923508], [-127.845895, 50.92412], [-127.845137, 50.925425], [-127.844158, 50.926405], [-127.844285, 50.927054], [-127.844252, 50.927817], [-127.844122, 50.928464], [-127.843897, 50.928957], [-127.843475, 50.929366], [-127.842827, 50.929656], [-127.842651, 50.929799], [-127.842444, 50.93012], [-127.842135, 50.931125], [-127.841608, 50.931748], [-127.840685, 50.932215], [-127.839939, 50.93246], [-127.838995, 50.932613], [-127.838148, 50.932973], [-127.837636, 50.932886], [-127.83758, 50.932922], [-127.837549, 50.933039], [-127.837887, 50.933717], [-127.838166, 50.933953], [-127.838548, 50.934001], [-127.838824, 50.933852], [-127.838922, 50.933853], [-127.839097, 50.934224], [-127.839238, 50.934296], [-127.839423, 50.934308], [-127.839912, 50.934088], [-127.840048, 50.933756], [-127.840151, 50.933712], [-127.840605, 50.933717], [-127.841284, 50.933886], [-127.841508, 50.933996], [-127.84162, 50.934131], [-127.841637, 50.934527], [-127.842034, 50.934631], [-127.842082, 50.934964], [-127.842293, 50.935145], [-127.84276, 50.935151], [-127.843006, 50.935018], [-127.843164, 50.93502], [-127.843372, 50.935228], [-127.843437, 50.935409], [-127.843592, 50.935464], [-127.844575, 50.935438], [-127.844791, 50.935377], [-127.845443, 50.934943], [-127.846141, 50.934869], [-127.846421, 50.935034], [-127.846569, 50.935421], [-127.846948, 50.935651], [-127.847289, 50.935662], [-127.847499, 50.93579], [-127.847827, 50.935703], [-127.848067, 50.935814], [-127.848506, 50.935323], [-127.848521, 50.934731], [-127.848868, 50.934508], [-127.850157, 50.934198], [-127.850498, 50.934192], [-127.850725, 50.934212], [-127.851206, 50.934379], [-127.851493, 50.934265], [-127.851886, 50.934511], [-127.852198, 50.934533], [-127.852601, 50.934339], [-127.852894, 50.934027], [-127.853378, 50.93395], [-127.853471, 50.933727], [-127.853956, 50.933605], [-127.854213, 50.933608], [-127.854622, 50.933756], [-127.855212, 50.934625], [-127.855792, 50.934829], [-127.856175, 50.934815], [-127.856348, 50.934726], [-127.856441, 50.934476], [-127.856627, 50.934379], [-127.857522, 50.935034], [-127.857637, 50.935045], [-127.857924, 50.934921], [-127.858275, 50.935097], [-127.858418, 50.935025], [-127.858513, 50.934675], [-127.858914, 50.934554], [-127.859155, 50.934582], [-127.85931, 50.934638], [-127.859395, 50.934748], [-127.859426, 50.935179], [-127.859648, 50.93537], [-127.859863, 50.935381], [-127.860206, 50.935276], [-127.860336, 50.935171], [-127.860501, 50.934847], [-127.86086, 50.934725], [-127.861508, 50.93502], [-127.861722, 50.934967], [-127.861835, 50.935005], [-127.862156, 50.935233], [-127.862506, 50.934984], [-127.862845, 50.934988], [-127.862959, 50.935051], [-127.86312, 50.935475], [-127.863373, 50.935578], [-127.863943, 50.935565], [-127.864486, 50.935436], [-127.864603, 50.935346], [-127.864664, 50.935149], [-127.864481, 50.935031], [-127.864564, 50.934635], [-127.864465, 50.933979], [-127.86474, 50.933756], [-127.866497, 50.93353], [-127.866936, 50.933597], [-127.867257, 50.933825], [-127.867522, 50.934107], [-127.867835, 50.934695], [-127.868002, 50.93483], [-127.868866, 50.93501], [-127.869642, 50.934731], [-127.869622, 50.934335], [-127.869737, 50.934308], [-127.869935, 50.934328], [-127.870385, 50.93454], [-127.870642, 50.934514], [-127.870785, 50.934561], [-127.870807, 50.934813], [-127.870946, 50.934896], [-127.871176, 50.93487], [-127.871291, 50.93479], [-127.871326, 50.934467], [-127.87147, 50.934406], [-127.871737, 50.93457], [-127.871959, 50.934852], [-127.872111, 50.934961], [-127.872254, 50.934971], [-127.872482, 50.934919], [-127.873462, 50.934461], [-127.873803, 50.934446], [-127.874198, 50.934602], [-127.874377, 50.934856], [-127.874536, 50.935334], [-127.874816, 50.935527], [-127.875, 50.935574], [-127.875471, 50.935559], [-127.876044, 50.935349], [-127.876259, 50.935343], [-127.876429, 50.935407], [-127.876581, 50.935544], [-127.876527, 50.935947], [-127.876581, 50.936109], [-127.87689, 50.936329], [-127.877055, 50.936536], [-127.877798, 50.936985], [-127.878077, 50.93724], [-127.878234, 50.937286], [-127.878461, 50.937251], [-127.878739, 50.937479], [-127.879162, 50.937654], [-127.879434, 50.937595], [-127.879527, 50.937343], [-127.879599, 50.937317], [-127.880215, 50.937719], [-127.880455, 50.937766], [-127.880743, 50.937652], [-127.881352, 50.93718], [-127.88158, 50.937138], [-127.882434, 50.937165], [-127.88259, 50.937193], [-127.882787, 50.93733], [-127.882978, 50.93761], [-127.883285, 50.937882], [-127.883876, 50.938167], [-127.884245, 50.938189], [-127.884833, 50.938005], [-127.884932, 50.93806], [-127.884967, 50.938367], [-127.884777, 50.938553], [-127.884791, 50.938634], [-127.885043, 50.938754], [-127.885229, 50.93872], [-127.885428, 50.938784], [-127.886058, 50.93924], [-127.886326, 50.939261], [-127.886556, 50.939173], [-127.886925, 50.93924], [-127.887415, 50.938975], [-127.887722, 50.939211], [-127.888276, 50.939225], [-127.888377, 50.939271], [-127.888442, 50.939523], [-127.888637, 50.93967], [-127.888867, 50.939527], [-127.88916, 50.939188], [-127.889453, 50.939408], [-127.889945, 50.939143], [-127.890212, 50.939298], [-127.890177, 50.939567], [-127.890442, 50.939768], [-127.890871, 50.939727], [-127.891, 50.939647], [-127.891002, 50.939566], [-127.89065, 50.939411], [-127.890638, 50.939338], [-127.891546, 50.939409], [-127.89218, 50.939677], [-127.892365, 50.939668], [-127.892669, 50.939537], [-127.892781, 50.939556], [-127.892964, 50.939647], [-127.892968, 50.940026], [-127.893208, 50.940171], [-127.89335, 50.940155], [-127.893598, 50.939932], [-127.89384, 50.939899], [-127.893953, 50.939953], [-127.89438, 50.940551], [-127.894626, 50.941021], [-127.894572, 50.941443], [-127.894637, 50.941776], [-127.894733, 50.941859], [-127.895061, 50.941826], [-127.895512, 50.942037], [-127.896761, 50.942238], [-127.897139, 50.942465], [-127.89724, 50.94244], [-127.897505, 50.942038], [-127.897692, 50.94195], [-127.898005, 50.941926], [-127.898414, 50.942101], [-127.898736, 50.942356], [-127.8993, 50.942567], [-127.89955, 50.94283], [-127.899681, 50.943317], [-127.900068, 50.943861], [-127.899978, 50.94395], [-127.89939, 50.94416], [-127.899216, 50.944276], [-127.899082, 50.944562], [-127.899305, 50.944744], [-127.899846, 50.944803], [-127.901627, 50.944657], [-127.902128, 50.944536], [-127.902693, 50.9442], [-127.903244, 50.943683], [-127.903704, 50.943554], [-127.90428, 50.943216], [-127.904654, 50.943112], [-127.904701, 50.94296], [-127.904259, 50.94292], [-127.90422, 50.942776], [-127.904436, 50.942634], [-127.904719, 50.942735], [-127.904907, 50.942692], [-127.905064, 50.942577], [-127.905214, 50.94229], [-127.904989, 50.942144], [-127.904606, 50.942141], [-127.904211, 50.941921], [-127.903547, 50.941114], [-127.903522, 50.940953], [-127.903711, 50.940208], [-127.903829, 50.940047], [-127.90399, 50.939869], [-127.904796, 50.93948], [-127.904868, 50.939374], [-127.904705, 50.938509], [-127.90433, 50.938082], [-127.90435, 50.937848], [-127.904731, 50.937429], [-127.905421, 50.937085], [-127.905909, 50.93691], [-127.907226, 50.936589], [-127.908226, 50.936437], [-127.909479, 50.936377], [-127.910375, 50.93644], [-127.911352, 50.936646], [-127.912116, 50.936895], [-127.912987, 50.9373], [-127.913618, 50.937818], [-127.914268, 50.938508], [-127.914295, 50.93867], [-127.914177, 50.938804], [-127.913514, 50.939176], [-127.913455, 50.939309], [-127.913591, 50.94013], [-127.913758, 50.940319], [-127.91387, 50.940348], [-127.913974, 50.940241], [-127.913982, 50.939836], [-127.914152, 50.939846], [-127.914177, 50.940027], [-127.914262, 50.940063], [-127.914652, 50.939798], [-127.915182, 50.939694], [-127.915449, 50.939778], [-127.915728, 50.940059], [-127.915969, 50.940097], [-127.916284, 50.94001], [-127.916386, 50.939876], [-127.917216, 50.939687], [-127.917514, 50.939715], [-127.917894, 50.939918], [-127.91802, 50.940063], [-127.917968, 50.940422], [-127.918023, 50.940484], [-127.918493, 50.94048], [-127.918926, 50.940835], [-127.91941, 50.940795], [-127.919723, 50.940896], [-127.920179, 50.940865], [-127.921, 50.941007], [-127.921478, 50.941245], [-127.921573, 50.941507], [-127.921907, 50.941835], [-127.922221, 50.941819], [-127.922321, 50.941721], [-127.922201, 50.941423], [-127.921991, 50.941241], [-127.922064, 50.941179], [-127.922565, 50.941103], [-127.922726, 50.940843], [-127.922884, 50.940791], [-127.923012, 50.940792], [-127.92321, 50.940902], [-127.923444, 50.941192], [-127.92374, 50.941365], [-127.923939, 50.941385], [-127.924473, 50.941057], [-127.92463, 50.941023], [-127.924882, 50.941169], [-127.925252, 50.941172], [-127.926115, 50.941414], [-127.926301, 50.941407], [-127.926318, 50.941253], [-127.926752, 50.940916], [-127.926873, 50.940684], [-127.926747, 50.940593], [-127.926093, 50.940524], [-127.925665, 50.93998], [-127.92562, 50.939495], [-127.926001, 50.938976], [-127.925925, 50.938553], [-127.925475, 50.938378], [-127.924759, 50.938461], [-127.92432, 50.938448], [-127.924025, 50.938247], [-127.923933, 50.937941], [-127.923897, 50.937608], [-127.924002, 50.937365], [-127.924161, 50.93725], [-127.924892, 50.937105], [-127.925081, 50.936854], [-127.925107, 50.936387], [-127.925029, 50.936054], [-127.924707, 50.935816], [-127.924508, 50.935806], [-127.923908, 50.935963], [-127.922396, 50.936065], [-127.922126, 50.936018], [-127.922015, 50.935944], [-127.92177, 50.935438]]]]}, "properties": {"name": "Hope Island 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Hope Island 1", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943836", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.949986, 50.602259], [-126.950522, 50.601963], [-126.950779, 50.601544], [-126.952101, 50.600426], [-126.952492, 50.59991], [-126.952843, 50.599269], [-126.953329, 50.598837], [-126.953775, 50.598674], [-126.954786, 50.598468], [-126.955435, 50.59819], [-126.956233, 50.597998], [-126.956827, 50.597703], [-126.957119, 50.597455], [-126.957704, 50.595685], [-126.958181, 50.594776], [-126.958252, 50.594471], [-126.958594, 50.594054], [-126.958587, 50.593272], [-126.958283, 50.592745], [-126.95684, 50.592163], [-126.956379, 50.592046], [-126.955469, 50.591526], [-126.953877, 50.59014], [-126.953717, 50.589212], [-126.95355, 50.588849], [-126.953143, 50.588464], [-126.952621, 50.588122], [-126.952241, 50.587728], [-126.951541, 50.58759], [-126.949733, 50.587621], [-126.947926, 50.587894], [-126.946882, 50.587867], [-126.946498, 50.587933], [-126.945724, 50.588495], [-126.944998, 50.589264], [-126.944628, 50.589986], [-126.943784, 50.591213], [-126.943718, 50.591724], [-126.94348, 50.592322], [-126.942969, 50.592737], [-126.94242, 50.592987], [-126.940676, 50.593443], [-126.939372, 50.593554], [-126.9375, 50.593378], [-126.936476, 50.593207], [-126.935892, 50.593003], [-126.93566, 50.593117], [-126.935703, 50.594128], [-126.933433, 50.593613], [-126.932267, 50.593032], [-126.932222, 50.592802], [-126.93352, 50.593389], [-126.93366, 50.593027], [-126.932251, 50.592594], [-126.932494, 50.592471], [-126.932416, 50.591362], [-126.931989, 50.591157], [-126.93129, 50.59064], [-126.930843, 50.590183], [-126.930456, 50.589375], [-126.930398, 50.588125], [-126.930976, 50.588152], [-126.931062, 50.587795], [-126.930258, 50.587762], [-126.930154, 50.587419], [-126.930043, 50.587842], [-126.928763, 50.588008], [-126.927018, 50.588], [-126.926441, 50.589465], [-126.920603, 50.589371], [-126.920919, 50.593787], [-126.921848, 50.594259], [-126.923166, 50.594796], [-126.92407, 50.595468], [-126.925489, 50.596276], [-126.926642, 50.597052], [-126.92749, 50.597372], [-126.92876, 50.59806], [-126.929261, 50.598231], [-126.930115, 50.598391], [-126.932153, 50.598958], [-126.933233, 50.599184], [-126.933752, 50.599257], [-126.935023, 50.599315], [-126.936143, 50.599532], [-126.937916, 50.599698], [-126.939431, 50.600301], [-126.939947, 50.600409], [-126.940306, 50.600622], [-126.940766, 50.600765], [-126.942784, 50.601169], [-126.943908, 50.601333], [-126.946068, 50.601993], [-126.946595, 50.602226], [-126.947365, 50.602393], [-126.948016, 50.602413], [-126.948732, 50.602507], [-126.949527, 50.602396], [-126.949986, 50.602259]], [[-126.944063, 50.597717], [-126.942102, 50.597655], [-126.941653, 50.597704], [-126.94027, 50.597703], [-126.940355, 50.595502], [-126.941261, 50.595534], [-126.943762, 50.595465], [-126.943823, 50.596395], [-126.942806, 50.596435], [-126.94303, 50.597394], [-126.944233, 50.59692], [-126.944063, 50.597717]]], [[[-126.933941, 50.593616], [-126.93419, 50.593589], [-126.934252, 50.593316], [-126.934004, 50.593248], [-126.933941, 50.593616]]]]}, "properties": {"name": "Alert Bay - Indian reserve", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Alert Bay - Indian reserve", "economic_region_id": "5910", "census_division_code": "5943", "census_subdivision_code": "5943837", "regional_district_aka_census_division": "Mount Waddington"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.224873, 53.250283], [-127.239798, 53.262578], [-127.253637, 53.269617], [-127.253686, 53.275263], [-127.258516, 53.277009], [-127.266862, 53.277526], [-127.270904, 53.268479], [-127.275609, 53.258405], [-127.28132, 53.250554], [-127.292401, 53.233295], [-127.295327, 53.22374], [-127.306789, 53.215481], [-127.319856, 53.214388], [-127.32453, 53.220053], [-127.329368, 53.227161], [-127.334094, 53.228715], [-127.340237, 53.231212], [-127.35084, 53.23243], [-127.361256, 53.228323], [-127.364206, 53.221167], [-127.361675, 53.201799], [-127.356457, 53.193784], [-127.353212, 53.186711], [-127.355188, 53.179995], [-127.360623, 53.17721], [-127.368836, 53.179131], [-127.387763, 53.181548], [-127.39675, 53.185643], [-127.405827, 53.184325], [-127.406485, 53.17683], [-127.404836, 53.164486], [-127.411549, 53.159347], [-127.423838, 53.161001], [-127.433417, 53.160648], [-127.44174, 53.160878], [-127.446516, 53.15639], [-127.450486, 53.151606], [-127.452143, 53.146273], [-127.457002, 53.14306], [-127.466169, 53.142671], [-127.476647, 53.139244], [-127.475325, 53.131294], [-127.472789, 53.124326], [-127.459709, 53.119874], [-127.451111, 53.123187], [-127.439572, 53.1226], [-127.434714, 53.117928], [-127.438266, 53.116328], [-127.440381, 53.111197], [-127.446131, 53.105742], [-127.448756, 53.099073], [-127.443084, 53.093737], [-127.443529, 53.091775], [-127.434133, 53.088523], [-127.415188, 53.087333], [-127.375807, 53.086414], [-127.358694, 53.081147], [-127.341742, 53.074779], [-127.322198, 53.067565], [-127.30538, 53.058807], [-127.29051, 53.049839], [-127.257143, 53.027941], [-127.243546, 53.016421], [-127.242281, 53.006133], [-127.243159, 53.002414], [-127.24515, 52.998333], [-127.248066, 52.994334], [-127.256923, 52.988143], [-127.256401, 52.978861], [-127.249652, 52.972778], [-127.240966, 52.969434], [-127.236885, 52.961776], [-127.249605, 52.952414], [-127.27088, 52.944434], [-127.286064, 52.93701], [-127.297662, 52.90766], [-127.293007, 52.904529], [-127.284029, 52.90274], [-127.2778, 52.897617], [-127.281041, 52.886921], [-127.268666, 52.879518], [-127.255777, 52.873457], [-127.249408, 52.862646], [-127.233789, 52.857615], [-127.222967, 52.850777], [-127.228103, 52.829906], [-127.217009, 52.828342], [-127.222246, 52.822356], [-127.242679, 52.8164], [-127.251978, 52.818074], [-127.278467, 52.811553], [-127.29254, 52.816024], [-127.30117, 52.813348], [-127.308364, 52.803743], [-127.310167, 52.799042], [-127.325109, 52.795131], [-127.339439, 52.798923], [-127.352827, 52.80825], [-127.368541, 52.797716], [-127.379727, 52.783716], [-127.381526, 52.769816], [-127.368833, 52.755658], [-127.373781, 52.750338], [-127.3881, 52.74952], [-127.401012, 52.736295], [-127.420177, 52.727307], [-127.448694, 52.713613], [-127.471158, 52.705082], [-127.47506, 52.697847], [-127.490453, 52.692569], [-127.503135, 52.692926], [-127.522631, 52.695293], [-127.530617, 52.6911], [-127.548929, 52.695066], [-127.5627, 52.690969], [-127.588301, 52.722134], [-127.596333, 52.72714], [-127.616383, 52.732748], [-127.617368, 52.741027], [-127.611273, 52.747975], [-127.612231, 52.751648], [-127.597967, 52.76172], [-127.594788, 52.773321], [-127.597208, 52.77932], [-127.609087, 52.783442], [-127.623917, 52.781246], [-127.641142, 52.780441], [-127.660116, 52.785888], [-127.671825, 52.788916], [-127.67388, 52.788393], [-127.67922, 52.791339], [-127.691697, 52.789081], [-127.699946, 52.783852], [-127.71092, 52.778054], [-127.718793, 52.770949], [-127.717717, 52.765842], [-127.714588, 52.759598], [-127.711889, 52.755699], [-127.715376, 52.751482], [-127.718257, 52.74244], [-127.718533, 52.736021], [-127.715128, 52.73118], [-127.719204, 52.726249], [-127.719961, 52.718754], [-127.730147, 52.716754], [-127.739334, 52.717881], [-127.746539, 52.713275], [-127.751896, 52.711121], [-127.759677, 52.708572], [-127.765468, 52.702876], [-127.782173, 52.696553], [-127.778451, 52.688659], [-127.78591, 52.684481], [-127.784214, 52.683208], [-127.780727, 52.677736], [-127.786985, 52.673595], [-127.798891, 52.672429], [-127.803064, 52.667437], [-127.809766, 52.664498], [-127.820292, 52.664191], [-127.832587, 52.666716], [-127.843001, 52.662096], [-127.851335, 52.662594], [-127.849563, 52.67501], [-127.851775, 52.674251], [-127.868573, 52.678606], [-127.890229, 52.679589], [-127.907404, 52.676738], [-127.912506, 52.675976], [-127.917032, 52.678441], [-127.919003, 52.681293], [-127.918275, 52.688203], [-127.921633, 52.697144], [-127.925016, 52.708487], [-127.928506, 52.717077], [-127.938529, 52.721035], [-127.960217, 52.711196], [-127.967935, 52.708227], [-127.974607, 52.708961], [-127.991714, 52.716314], [-127.996084, 52.714261], [-127.996231, 52.708281], [-127.994325, 52.702717], [-127.996511, 52.696703], [-128.001282, 52.694728], [-128.008537, 52.713125], [-128.011682, 52.719483], [-128.023821, 52.717321], [-128.041272, 52.710866], [-128.065618, 52.698277], [-128.082969, 52.68704], [-128.10934, 52.679206], [-128.118806, 52.679739], [-128.124906, 52.684592], [-128.134796, 52.686464], [-128.145979, 52.67971], [-128.152101, 52.671916], [-128.15136, 52.665593], [-128.146014, 52.658659], [-128.13614, 52.652591], [-128.121207, 52.6497], [-128.108397, 52.649288], [-128.125633, 52.617341], [-128.131755, 52.613305], [-128.146187, 52.625142], [-128.160109, 52.620616], [-128.160355, 52.620501], [-128.164828, 52.616918], [-128.171418, 52.615558], [-128.176007, 52.612538], [-128.189603, 52.607362], [-128.179885, 52.601237], [-128.181523, 52.592093], [-128.192277, 52.585179], [-128.19687, 52.580504], [-128.174818, 52.575479], [-128.175782, 52.574898], [-128.180014, 52.568739], [-128.176532, 52.560718], [-128.174684, 52.557773], [-128.178075, 52.553384], [-128.18561, 52.552558], [-128.185861, 52.551633], [-128.189397, 52.531547], [-128.194439, 52.513767], [-128.180246, 52.502739], [-128.176887, 52.492132], [-128.176943, 52.484159], [-128.211743, 52.483321], [-128.212244, 52.483344], [-128.234883, 52.482452], [-128.256644, 52.482531], [-128.282663, 52.482429], [-128.320879, 52.477969], [-128.348918, 52.476481], [-128.374748, 52.471036], [-128.39848, 52.461282], [-128.436669, 52.447484], [-128.458962, 52.437511], [-128.464698, 52.430838], [-128.492007, 52.405779], [-128.527938, 52.371043], [-128.594858, 52.264226], [-128.619221, 52.241977], [-128.634974, 52.229411], [-128.666938, 52.215683], [-128.693038, 52.20876], [-128.729585, 52.202083], [-128.749282, 52.193255], [-128.76329, 52.18539], [-128.773503, 52.177447], [-128.785687, 52.165517], [-128.806611, 52.146226], [-128.819565, 52.128229], [-128.822207, 52.000064], [-129.0, 51.999998], [-129.068122, 52.000059], [-129.057891, 51.935297], [-129.021589, 51.861254], [-129.0, 51.821096], [-129.0, 51.200522], [-129.016806, 51.114142], [-129.05977, 51.004323], [-129.084384, 50.965575], [-128.844878, 50.991893], [-128.539475, 51.024663], [-127.992867, 51.081016], [-127.917859, 51.07633], [-127.862395, 51.096703], [-127.792885, 51.15618], [-127.735305, 51.159513], [-127.73824, 51.188723], [-127.659862, 51.190544], [-127.654443, 51.186226], [-127.648809, 51.183508], [-127.644498, 51.184175], [-127.630905, 51.188004], [-127.610796, 51.191544], [-127.597253, 51.191695], [-127.576746, 51.190691], [-127.574776, 51.19121], [-127.570109, 51.195666], [-127.566543, 51.197078], [-127.55895, 51.196954], [-127.535061, 51.197539], [-127.531521, 51.196072], [-127.527334, 51.189394], [-127.524162, 51.186221], [-127.517983, 51.185015], [-127.509279, 51.185847], [-127.496599, 51.188505], [-127.495198, 51.189048], [-127.49156, 51.196691], [-127.492854, 51.201558], [-127.484474, 51.203876], [-127.456826, 51.204334], [-127.453689, 51.20698], [-127.452506, 51.211613], [-127.4529, 51.224481], [-127.449775, 51.226753], [-127.442811, 51.22767], [-127.409886, 51.229159], [-127.397222, 51.228928], [-127.391002, 51.228508], [-127.385751, 51.226146], [-127.382587, 51.222966], [-127.380018, 51.221633], [-127.377113, 51.221211], [-127.371117, 51.222264], [-127.368995, 51.221796], [-127.364194, 51.218217], [-127.360584, 51.216252], [-127.358536, 51.216275], [-127.350714, 51.218823], [-127.34565, 51.218728], [-127.342858, 51.218002], [-127.333523, 51.21152], [-127.328165, 51.209459], [-127.3234, 51.209246], [-127.314683, 51.212141], [-127.303511, 51.213397], [-127.290779, 51.212661], [-127.279274, 51.212744], [-127.277843, 51.21352], [-127.274678, 51.213427], [-127.267078, 51.210874], [-127.255669, 51.21137], [-127.252665, 51.219643], [-127.249874, 51.219824], [-127.240601, 51.220069], [-127.23498, 51.219406], [-127.218293, 51.212154], [-127.215586, 51.209834], [-127.21219, 51.203889], [-127.208054, 51.197194], [-127.206676, 51.197473], [-127.194548, 51.204024], [-127.19179, 51.204581], [-127.189558, 51.204413], [-127.175452, 51.203941], [-127.163197, 51.205342], [-127.155108, 51.207196], [-127.144659, 51.211266], [-127.135445, 51.214075], [-127.120853, 51.218974], [-127.118207, 51.219225], [-127.112475, 51.218859], [-127.103016, 51.218904], [-127.100029, 51.220065], [-127.100313, 51.222031], [-127.099928, 51.223738], [-127.09832, 51.224623], [-127.089713, 51.225113], [-127.073476, 51.229604], [-127.060497, 51.231529], [-127.057296, 51.231215], [-127.040518, 51.233055], [-127.037202, 51.233044], [-127.029439, 51.230608], [-127.026423, 51.23048], [-127.012894, 51.235205], [-126.997268, 51.240741], [-126.986752, 51.242233], [-126.97377, 51.240793], [-126.960329, 51.237198], [-126.954277, 51.23566], [-126.950364, 51.235882], [-126.937108, 51.239209], [-126.931101, 51.240242], [-126.922515, 51.242014], [-126.921755, 51.243347], [-126.923439, 51.249707], [-126.925168, 51.251896], [-126.922981, 51.257675], [-126.922591, 51.26276], [-126.924254, 51.274582], [-126.923771, 51.277885], [-126.906161, 51.291969], [-126.895919, 51.303456], [-126.892112, 51.306744], [-126.888561, 51.307339], [-126.881921, 51.307314], [-126.872242, 51.305873], [-126.869038, 51.305556], [-126.867007, 51.30686], [-126.864071, 51.311885], [-126.860835, 51.317027], [-126.855429, 51.322486], [-126.850443, 51.324151], [-126.844401, 51.323892], [-126.840645, 51.323011], [-126.829805, 51.316582], [-126.820703, 51.308969], [-126.810186, 51.299058], [-126.8071, 51.298436], [-126.797326, 51.298578], [-126.77713, 51.299886], [-126.764054, 51.301296], [-126.76232, 51.302481], [-126.762864, 51.311089], [-126.761748, 51.313333], [-126.75983, 51.31433], [-126.754358, 51.315918], [-126.751955, 51.316842], [-126.75109, 51.319767], [-126.750359, 51.323678], [-126.751166, 51.329592], [-126.750251, 51.333314], [-126.746178, 51.335916], [-126.735893, 51.339351], [-126.725456, 51.345173], [-126.721531, 51.350049], [-126.721114, 51.355134], [-126.723773, 51.359561], [-126.724158, 51.361228], [-126.721736, 51.365528], [-126.713729, 51.373004], [-126.709683, 51.378184], [-126.710418, 51.383606], [-126.712124, 51.389176], [-126.710551, 51.393926], [-126.701365, 51.404443], [-126.699071, 51.409728], [-126.701061, 51.413893], [-126.707154, 51.421418], [-126.71829, 51.429871], [-126.723567, 51.434857], [-126.725059, 51.437658], [-126.725462, 51.440616], [-126.722515, 51.44693], [-126.715867, 51.452845], [-126.707356, 51.46025], [-126.706735, 51.463859], [-126.70816, 51.466167], [-126.709785, 51.469955], [-126.708209, 51.474706], [-126.70437, 51.477989], [-126.698873, 51.479575], [-126.695289, 51.478876], [-126.692832, 51.475939], [-126.691966, 51.474204], [-126.685218, 51.472387], [-126.679731, 51.469315], [-126.676122, 51.466043], [-126.671214, 51.460169], [-126.66455, 51.45419], [-126.657362, 51.450217], [-126.646371, 51.447436], [-126.637577, 51.44627], [-126.622849, 51.445171], [-126.619926, 51.443445], [-126.606364, 51.422295], [-126.607798, 51.419947], [-126.612436, 51.416645], [-126.616545, 51.415348], [-126.616114, 51.41448], [-126.609929, 51.413224], [-126.585423, 51.4063], [-126.567222, 51.407557], [-126.565111, 51.408362], [-126.56494, 51.409463], [-126.564502, 51.414549], [-126.561509, 51.418278], [-126.55638, 51.420233], [-126.551295, 51.420103], [-126.543292, 51.418245], [-126.535598, 51.417551], [-126.528395, 51.418211], [-126.507152, 51.426038], [-126.492527, 51.434564], [-126.481758, 51.442475], [-126.473797, 51.450509], [-126.466287, 51.459631], [-126.461359, 51.46512], [-126.455323, 51.470171], [-126.451152, 51.476441], [-126.450447, 51.483112], [-126.449203, 51.484648], [-126.446298, 51.485529], [-126.438378, 51.487229], [-126.434512, 51.486761], [-126.427314, 51.480706], [-126.423898, 51.479641], [-126.418875, 51.478326], [-126.405989, 51.480183], [-126.388986, 51.481664], [-126.385822, 51.480504], [-126.383153, 51.47595], [-126.37942, 51.464955], [-126.377812, 51.463637], [-126.371336, 51.461159], [-126.368424, 51.459903], [-126.367065, 51.456354], [-126.364553, 51.454093], [-126.363047, 51.453591], [-126.360345, 51.455033], [-126.356197, 51.458512], [-126.349488, 51.461458], [-126.345628, 51.462054], [-126.328518, 51.457374], [-126.324506, 51.456746], [-126.319445, 51.458217], [-126.30717, 51.462821], [-126.304061, 51.463133], [-126.300499, 51.460839], [-126.296837, 51.455592], [-126.292725, 51.454146], [-126.270863, 51.453376], [-126.261487, 51.453368], [-126.257777, 51.453051], [-126.254518, 51.452137], [-126.250958, 51.451977], [-126.247549, 51.453039], [-126.234012, 51.455971], [-126.230151, 51.456562], [-126.227895, 51.456339], [-126.217117, 51.453972], [-126.200138, 51.443682], [-126.19821, 51.443377], [-126.190299, 51.436598], [-126.172404, 51.435855], [-126.167431, 51.444284], [-126.161589, 51.44766], [-126.14829, 51.44973], [-126.144568, 51.456147], [-126.149665, 51.460616], [-126.148818, 51.465711], [-126.143287, 51.464085], [-126.132654, 51.466951], [-126.128033, 51.46678], [-126.128053, 51.462782], [-126.121515, 51.460932], [-126.112604, 51.460265], [-126.106636, 51.462187], [-126.103779, 51.471055], [-126.099032, 51.475106], [-126.105379, 51.486763], [-126.106077, 51.492171], [-126.109214, 51.500799], [-126.11469, 51.505025], [-126.115879, 51.511445], [-126.117982, 51.51832], [-126.110414, 51.520432], [-126.099711, 51.523108], [-126.091584, 51.525973], [-126.085015, 51.525121], [-126.081838, 51.528985], [-126.086436, 51.534633], [-126.085881, 51.540905], [-126.077608, 51.54596], [-126.074939, 51.551027], [-126.060461, 51.558626], [-126.053018, 51.565558], [-126.052117, 51.573148], [-126.060842, 51.577763], [-126.062557, 51.5819], [-126.050988, 51.586029], [-126.050707, 51.592595], [-126.041361, 51.597045], [-126.028129, 51.599942], [-126.020535, 51.596521], [-126.012327, 51.590784], [-126.002849, 51.589404], [-125.993145, 51.586613], [-125.98765, 51.582441], [-125.986806, 51.581915], [-125.981798, 51.580686], [-125.968726, 51.582895], [-125.957774, 51.586657], [-125.941852, 51.593253], [-125.932424, 51.595599], [-125.926566, 51.600854], [-125.919115, 51.604606], [-125.921686, 51.60764], [-125.917416, 51.611211], [-125.910321, 51.614332], [-125.911689, 51.618956], [-125.908218, 51.625716], [-125.910305, 51.627235], [-125.923058, 51.628704], [-125.950678, 51.648436], [-125.949459, 51.654366], [-125.951273, 51.660122], [-125.94966, 51.664803], [-125.946039, 51.669729], [-125.941525, 51.673888], [-125.941361, 51.680424], [-125.944139, 51.685178], [-125.95219, 51.687736], [-125.955184, 51.692211], [-125.967099, 51.691602], [-125.981992, 51.687404], [-125.991178, 51.688296], [-125.993859, 51.694781], [-125.998558, 51.699523], [-125.998453, 51.7036], [-125.9889, 51.713215], [-125.996481, 51.718788], [-125.998298, 51.723699], [-125.997303, 51.728354], [-125.990574, 51.731042], [-125.980869, 51.733137], [-125.978815, 51.736687], [-125.97973, 51.741832], [-125.971063, 51.743839], [-125.962164, 51.747364], [-125.956945, 51.753654], [-125.957794, 51.758577], [-125.948758, 51.762349], [-125.947057, 51.768648], [-125.950171, 51.775572], [-125.970266, 51.786277], [-125.971647, 51.788816], [-125.960739, 51.7945], [-125.951859, 51.79894], [-125.940334, 51.805516], [-125.933378, 51.810989], [-125.927057, 51.817779], [-125.922699, 51.826949], [-125.92066, 51.834295], [-125.919307, 51.842358], [-125.917263, 51.874539], [-125.915843, 51.88515], [-125.914372, 51.890152], [-125.90924, 51.890681], [-125.880212, 51.892424], [-125.876092, 51.893355], [-125.872915, 51.897236], [-125.870623, 51.910877], [-125.871165, 51.922897], [-125.874434, 51.940709], [-125.880174, 51.956842], [-125.880813, 51.963398], [-125.876358, 51.969879], [-125.868358, 51.973973], [-125.855918, 51.977365], [-125.844287, 51.978326], [-125.82902, 51.977128], [-125.814647, 51.975419], [-125.802184, 51.979686], [-125.795873, 51.987206], [-125.777586, 52.000533], [-126.00048, 52.002254], [-126.2106, 52.003903], [-126.210212, 52.006951], [-126.214091, 52.013202], [-126.221812, 52.019501], [-126.221904, 52.028586], [-126.224478, 52.038957], [-126.230194, 52.044707], [-126.2367, 52.048609], [-126.246704, 52.048635], [-126.250042, 52.054088], [-126.253605, 52.056608], [-126.262817, 52.061257], [-126.272665, 52.065671], [-126.273652, 52.071236], [-126.262624, 52.078896], [-126.262823, 52.085932], [-126.24905, 52.091413], [-126.232853, 52.096686], [-126.218909, 52.106555], [-126.212114, 52.116932], [-126.202008, 52.120742], [-126.195889, 52.127257], [-126.201631, 52.135816], [-126.196619, 52.141314], [-126.201919, 52.147264], [-126.213764, 52.147763], [-126.22691, 52.145921], [-126.234122, 52.148886], [-126.244842, 52.146074], [-126.253181, 52.147786], [-126.261882, 52.15556], [-126.253767, 52.158638], [-126.251864, 52.163523], [-126.247562, 52.16785], [-126.256187, 52.178962], [-126.260817, 52.18155], [-126.270873, 52.182099], [-126.28682, 52.194236], [-126.297246, 52.195788], [-126.297043, 52.192292], [-126.301276, 52.188527], [-126.310105, 52.188195], [-126.321357, 52.185029], [-126.33205, 52.184956], [-126.339048, 52.183511], [-126.347741, 52.186953], [-126.350139, 52.191546], [-126.358028, 52.195932], [-126.363864, 52.202639], [-126.369618, 52.208883], [-126.377586, 52.21499], [-126.385346, 52.218359], [-126.39751, 52.214731], [-126.402399, 52.209878], [-126.409037, 52.20567], [-126.415469, 52.204657], [-126.422744, 52.20904], [-126.429217, 52.210713], [-126.441732, 52.214752], [-126.453228, 52.214979], [-126.464676, 52.210123], [-126.477155, 52.214376], [-126.479099, 52.221909], [-126.479424, 52.231957], [-126.484407, 52.237787], [-126.487067, 52.245666], [-126.492909, 52.250222], [-126.500369, 52.251506], [-126.508181, 52.25491], [-126.512778, 52.260464], [-126.511365, 52.268489], [-126.519854, 52.271567], [-126.524046, 52.276202], [-126.523895, 52.282227], [-126.520175, 52.286524], [-126.514739, 52.290183], [-126.532111, 52.289277], [-126.541547, 52.287175], [-126.555489, 52.283109], [-126.561955, 52.279898], [-126.566705, 52.274731], [-126.5731, 52.272432], [-126.574276, 52.267964], [-126.581882, 52.264912], [-126.591104, 52.262927], [-126.598527, 52.259127], [-126.611911, 52.2588], [-126.619335, 52.255425], [-126.630784, 52.253289], [-126.636994, 52.247279], [-126.650311, 52.244912], [-126.66151, 52.247581], [-126.676446, 52.251682], [-126.683285, 52.248521], [-126.695099, 52.24697], [-126.709819, 52.254064], [-126.721333, 52.254039], [-126.730763, 52.256424], [-126.743224, 52.2572], [-126.751642, 52.260392], [-126.75969, 52.260977], [-126.765442, 52.263196], [-126.769211, 52.268456], [-126.77584, 52.264621], [-126.776992, 52.256986], [-126.771029, 52.245887], [-126.772563, 52.241282], [-126.771301, 52.232495], [-126.760348, 52.230948], [-126.755374, 52.223897], [-126.744479, 52.220442], [-126.74611, 52.214259], [-126.756487, 52.212517], [-126.76396, 52.211776], [-126.768472, 52.2179], [-126.777702, 52.223154], [-126.790909, 52.22225], [-126.798591, 52.223929], [-126.812061, 52.223699], [-126.814769, 52.230344], [-126.816252, 52.236461], [-126.822996, 52.239437], [-126.831626, 52.23561], [-126.839398, 52.237511], [-126.84694, 52.23778], [-126.854631, 52.24212], [-126.859445, 52.247501], [-126.871532, 52.249933], [-126.875958, 52.255761], [-126.884813, 52.265178], [-126.893177, 52.276093], [-126.894189, 52.276752], [-126.901546, 52.284102], [-126.903441, 52.288187], [-126.902995, 52.292856], [-126.877512, 52.325888], [-126.877226, 52.330721], [-126.879228, 52.380265], [-126.875919, 52.429356], [-126.86828, 52.493654], [-126.827232, 52.484734], [-126.817862, 52.495168], [-126.783761, 52.534206], [-126.783262, 52.534571], [-126.785642, 52.543056], [-126.781915, 52.547176], [-126.773827, 52.549686], [-126.76879, 52.553], [-126.76565, 52.558951], [-126.759551, 52.562202], [-126.753555, 52.564313], [-126.748909, 52.571504], [-126.743253, 52.576943], [-126.739392, 52.584298], [-126.734622, 52.585268], [-126.731602, 52.578392], [-126.72335, 52.573767], [-126.711818, 52.572718], [-126.704778, 52.572665], [-126.708209, 52.584066], [-126.698524, 52.592092], [-126.687616, 52.594912], [-126.675803, 52.59533], [-126.662866, 52.592626], [-126.65772, 52.593845], [-126.647136, 52.587873], [-126.646981, 52.583971], [-126.644311, 52.579176], [-126.636205, 52.578677], [-126.627354, 52.579553], [-126.621169, 52.585099], [-126.615551, 52.586717], [-126.609614, 52.589514], [-126.599161, 52.591661], [-126.591239, 52.59572], [-126.585262, 52.600729], [-126.583002, 52.610091], [-126.584106, 52.613322], [-126.586415, 52.61626], [-126.5903, 52.617401], [-126.593358, 52.620214], [-126.581445, 52.622781], [-126.5734, 52.622972], [-126.564781, 52.621209], [-126.548807, 52.619201], [-126.543167, 52.620303], [-126.536897, 52.617766], [-126.524729, 52.617448], [-126.513321, 52.624405], [-126.507204, 52.625528], [-126.507075, 52.634547], [-126.515737, 52.638236], [-126.509775, 52.643024], [-126.499462, 52.643571], [-126.495191, 52.644921], [-126.493558, 52.649173], [-126.485758, 52.646477], [-126.475795, 52.644615], [-126.469342, 52.650796], [-126.451588, 52.652149], [-126.445674, 52.654168], [-126.41658, 52.661491], [-126.412576, 52.677632], [-126.417645, 52.680024], [-126.418247, 52.683347], [-126.411389, 52.688857], [-126.402321, 52.689427], [-126.387859, 52.692714], [-126.378574, 52.695006], [-126.361122, 52.706934], [-126.351255, 52.703593], [-126.346034, 52.702086], [-126.349238, 52.721023], [-126.349492, 52.731806], [-126.341812, 52.74662], [-126.341369, 52.746476], [-126.340711, 52.746457], [-126.340401, 52.746544], [-126.339354, 52.747917], [-126.338725, 52.749047], [-126.338749, 52.749378], [-126.339075, 52.749974], [-126.33906, 52.750294], [-126.338884, 52.750586], [-126.338394, 52.750971], [-126.337899, 52.751113], [-126.336469, 52.751314], [-126.33517, 52.751868], [-126.334673, 52.751881], [-126.333533, 52.751601], [-126.334615, 52.794389], [-126.335656, 52.829533], [-126.338956, 52.82889], [-126.338951, 52.828948], [-126.370249, 52.822908], [-126.404058, 52.798975], [-126.416158, 52.79423], [-126.434973, 52.793643], [-126.443323, 52.795442], [-126.446294, 52.791201], [-126.45411, 52.784396], [-126.464407, 52.783575], [-126.476178, 52.785956], [-126.481185, 52.783987], [-126.48619, 52.779391], [-126.505649, 52.775529], [-126.517553, 52.774297], [-126.53028, 52.775152], [-126.555854, 52.792354], [-126.555683, 52.79945], [-126.550608, 52.800144], [-126.553514, 52.815253], [-126.573216, 52.81856], [-126.590136, 52.816789], [-126.595984, 52.812525], [-126.601119, 52.812979], [-126.612764, 52.834379], [-126.632731, 52.842261], [-126.639197, 52.846009], [-126.637717, 52.849752], [-126.631933, 52.854014], [-126.623924, 52.856312], [-126.621945, 52.860622], [-126.612164, 52.868751], [-126.600295, 52.875247], [-126.587348, 52.879381], [-126.59776, 52.913484], [-126.604843, 52.916744], [-126.607183, 52.916353], [-126.611438, 52.917288], [-126.613737, 52.918766], [-126.614548, 52.919894], [-126.615541, 52.921858], [-126.615783, 52.923656], [-126.615714, 52.927634], [-126.616356, 52.928534], [-126.617631, 52.929608], [-126.619032, 52.929966], [-126.624301, 52.935138], [-126.637717, 52.937952], [-126.646063, 52.941926], [-126.643908, 52.948587], [-126.623724, 52.971493], [-126.626531, 52.975392], [-126.634031, 52.97968], [-126.635597, 52.98427], [-126.626203, 52.9903], [-126.614182, 52.995649], [-126.60911, 53.00028], [-126.616355, 53.000287], [-126.621907, 53.003314], [-126.629715, 53.00852], [-126.637643, 53.020958], [-126.638004, 53.021084], [-126.647643, 53.029204], [-126.64769, 53.029168], [-126.649738, 53.03234], [-126.65552, 53.031201], [-126.663636, 53.027117], [-126.672469, 53.024924], [-126.683321, 53.017549], [-126.690573, 53.014757], [-126.70034, 53.007699], [-126.70048, 53.007669], [-126.705546, 53.000618], [-126.724655, 52.999652], [-126.723939, 52.992564], [-126.733403, 52.99341], [-126.752624, 52.993263], [-126.763002, 53.000681], [-126.7899, 53.000456], [-126.790878, 53.001092], [-126.790039, 53.003369], [-126.790048, 53.010356], [-126.788733, 53.016816], [-126.794393, 53.026479], [-126.791469, 53.044097], [-126.789489, 53.049684], [-126.796292, 53.065449], [-126.800274, 53.074342], [-126.807025, 53.081298], [-126.813203, 53.088907], [-126.82184, 53.095712], [-126.822766, 53.103152], [-126.831043, 53.105821], [-126.832003, 53.106927], [-126.841162, 53.110395], [-126.86143, 53.107383], [-126.882747, 53.083919], [-126.894649, 53.082903], [-126.930474, 53.0856], [-126.940288, 53.091563], [-126.948108, 53.093539], [-126.976341, 53.077019], [-126.985682, 53.072237], [-126.999165, 53.069512], [-126.999092, 53.072929], [-127.012951, 53.075141], [-127.017278, 53.078714], [-127.001151, 53.088205], [-127.011976, 53.091916], [-127.032809, 53.114183], [-127.021091, 53.121527], [-127.014154, 53.130032], [-127.013744, 53.139238], [-127.007322, 53.149015], [-127.003736, 53.158776], [-127.012203, 53.176162], [-127.013308, 53.189209], [-127.027914, 53.196391], [-127.030387, 53.203728], [-127.043005, 53.201225], [-127.049058, 53.202891], [-127.05072, 53.20662], [-127.037086, 53.226444], [-127.017937, 53.240918], [-127.010524, 53.250196], [-127.007998, 53.25019], [-127.006067, 53.251417], [-127.001661, 53.256086], [-126.992504, 53.258491], [-126.986552, 53.2571], [-126.978893, 53.263086], [-126.978853, 53.26745], [-126.982088, 53.27846], [-126.990102, 53.285629], [-126.999918, 53.295961], [-127.001182, 53.296505], [-127.015532, 53.309033], [-127.050599, 53.298704], [-127.069784, 53.284237], [-127.074487, 53.250805], [-127.093638, 53.236336], [-127.099284, 53.233376], [-127.108171, 53.233561], [-127.121005, 53.239677], [-127.127263, 53.250334], [-127.127349, 53.250334], [-127.127823, 53.250725], [-127.127839, 53.251269], [-127.129631, 53.25432], [-127.131883, 53.260011], [-127.140857, 53.267992], [-127.142043, 53.277562], [-127.150917, 53.28123], [-127.194974, 53.264875], [-127.192795, 53.257858], [-127.201474, 53.249414], [-127.224873, 53.250283]], [[-128.157455, 52.178063], [-128.141687, 52.176744], [-128.141499, 52.176403], [-128.141357, 52.176295], [-128.14181, 52.175489], [-128.142077, 52.175338], [-128.142604, 52.175251], [-128.143537, 52.175375], [-128.143816, 52.175351], [-128.143419, 52.174673], [-128.14362, 52.17418], [-128.143594, 52.173964], [-128.143466, 52.173756], [-128.143161, 52.173629], [-128.143403, 52.17328], [-128.143684, 52.173146], [-128.143715, 52.173048], [-128.143752, 52.172652], [-128.143419, 52.172353], [-128.143394, 52.172255], [-128.143468, 52.1722], [-128.14392, 52.172178], [-128.143951, 52.172097], [-128.143792, 52.172014], [-128.14347, 52.171994], [-128.143136, 52.171901], [-128.142977, 52.171802], [-128.143039, 52.171614], [-128.142435, 52.171114], [-128.142981, 52.170876], [-128.142973, 52.170507], [-128.142849, 52.170174], [-128.142889, 52.169617], [-128.143336, 52.169089], [-128.14333, 52.168703], [-128.14313, 52.168441], [-128.143132, 52.168332], [-128.143913, 52.167331], [-128.144055, 52.16672], [-128.143731, 52.166027], [-128.143386, 52.165817], [-128.142405, 52.16429], [-128.142555, 52.162574], [-128.14232, 52.161906], [-128.142271, 52.161475], [-128.143474, 52.161533], [-128.143803, 52.161072], [-128.142844, 52.160807], [-128.143917, 52.15941], [-128.14448, 52.158255], [-128.144731, 52.158112], [-128.145144, 52.157998], [-128.145146, 52.157909], [-128.144902, 52.157646], [-128.144611, 52.156772], [-128.144093, 52.156382], [-128.143964, 52.156165], [-128.14396, 52.155697], [-128.144391, 52.155332], [-128.144411, 52.154982], [-128.144013, 52.153674], [-128.143885, 52.153512], [-128.143567, 52.153348], [-128.143335, 52.151727], [-128.143402, 52.151198], [-128.142567, 52.149833], [-128.142244, 52.149184], [-128.142179, 52.148752], [-128.141382, 52.147623], [-128.141115, 52.14629], [-128.140661, 52.144784], [-128.140641, 52.144326], [-128.14116, 52.14397], [-128.141329, 52.143577], [-128.141334, 52.143172], [-128.141428, 52.14292], [-128.141681, 52.142715], [-128.141916, 52.14261], [-128.142753, 52.142453], [-128.143033, 52.142339], [-128.143907, 52.142426], [-128.144443, 52.141899], [-128.144685, 52.141514], [-128.144754, 52.140966], [-128.144949, 52.140663], [-128.144918, 52.140015], [-128.144658, 52.139486], [-128.154975, 52.139035], [-128.167585, 52.139844], [-128.167878, 52.142563], [-128.166298, 52.15974], [-128.166603, 52.171249], [-128.154807, 52.172349], [-128.157455, 52.178063]], [[-127.249844, 51.679805], [-127.249967, 51.681047], [-127.249931, 51.685843], [-127.210422, 51.685918], [-127.208669, 51.6915], [-127.175688, 51.691367], [-127.175519, 51.689479], [-127.175514, 51.680163], [-127.173847, 51.678826], [-127.173152, 51.678715], [-127.172425, 51.674203], [-127.201198, 51.674891], [-127.202277, 51.674566], [-127.204908, 51.674055], [-127.206199, 51.673918], [-127.207444, 51.673905], [-127.209061, 51.674274], [-127.209545, 51.675445], [-127.210814, 51.675536], [-127.211431, 51.675654], [-127.212004, 51.675834], [-127.213862, 51.676717], [-127.215036, 51.677057], [-127.216703, 51.677289], [-127.218959, 51.677719], [-127.220475, 51.678111], [-127.221846, 51.678608], [-127.2249, 51.679284], [-127.226368, 51.67946], [-127.229734, 51.679574], [-127.232508, 51.679282], [-127.234302, 51.679282], [-127.235976, 51.67937], [-127.23862, 51.679868], [-127.239634, 51.68018], [-127.240383, 51.680588], [-127.241074, 51.680706], [-127.242392, 51.681049], [-127.244031, 51.681317], [-127.244619, 51.681461], [-127.24498, 51.681465], [-127.245272, 51.681371], [-127.245576, 51.681402], [-127.245745, 51.681503], [-127.245741, 51.68163], [-127.245839, 51.681676], [-127.246131, 51.681609], [-127.247733, 51.680966], [-127.249336, 51.679921], [-127.249585, 51.679807], [-127.249844, 51.679805]]]]}, "properties": {"name": "Central Coast A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Central Coast A", "economic_region_id": "5910", "census_division_code": "5945", "census_subdivision_code": "5945006", "regional_district_aka_census_division": "Central Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.493558, 52.649173], [-126.495191, 52.644921], [-126.499462, 52.643571], [-126.509775, 52.643024], [-126.515737, 52.638236], [-126.507075, 52.634547], [-126.507204, 52.625528], [-126.513321, 52.624405], [-126.524729, 52.617448], [-126.536897, 52.617766], [-126.543167, 52.620303], [-126.548807, 52.619201], [-126.552799, 52.619699], [-126.543728, 52.613135], [-126.539923, 52.609993], [-126.5333, 52.606354], [-126.522266, 52.601686], [-126.523442, 52.594785], [-126.52632, 52.588524], [-126.534408, 52.585943], [-126.538411, 52.579648], [-126.539876, 52.572845], [-126.543204, 52.564998], [-126.538282, 52.562772], [-126.539275, 52.555791], [-126.542123, 52.551846], [-126.548579, 52.55211], [-126.55836, 52.550465], [-126.565835, 52.550586], [-126.572488, 52.549006], [-126.57656, 52.547556], [-126.5826, 52.546527], [-126.604294, 52.533432], [-126.614518, 52.527866], [-126.622695, 52.5284], [-126.632298, 52.527548], [-126.636347, 52.524331], [-126.626847, 52.513447], [-126.631895, 52.50221], [-126.633934, 52.495428], [-126.635578, 52.494167], [-126.63666, 52.488656], [-126.642576, 52.480432], [-126.643606, 52.477391], [-126.640522, 52.471775], [-126.637693, 52.468161], [-126.631478, 52.464317], [-126.640306, 52.424573], [-126.626255, 52.39896], [-126.568132, 52.399023], [-126.562617, 52.39915], [-126.561019, 52.399137], [-126.560618, 52.399207], [-126.560039, 52.397856], [-126.558537, 52.395744], [-126.556731, 52.393422], [-126.556919, 52.391084], [-126.558934, 52.383845], [-126.559096, 52.363043], [-126.558709, 52.362529], [-126.558443, 52.361758], [-126.558046, 52.36096], [-126.55746, 52.360119], [-126.557051, 52.359833], [-126.556738, 52.359367], [-126.55625, 52.358899], [-126.55551, 52.358451], [-126.555377, 52.358242], [-126.555256, 52.357754], [-126.554482, 52.357396], [-126.554125, 52.356976], [-126.554093, 52.356741], [-126.554181, 52.3565], [-126.554104, 52.356274], [-126.554135, 52.356005], [-126.554276, 52.35581], [-126.554246, 52.355575], [-126.553854, 52.355226], [-126.55375, 52.354989], [-126.553806, 52.354757], [-126.553715, 52.354287], [-126.552795, 52.353648], [-126.552645, 52.353428], [-126.552632, 52.353159], [-126.552876, 52.352713], [-126.552785, 52.352487], [-126.552469, 52.3524], [-126.552021, 52.351464], [-126.55125, 52.351332], [-126.550961, 52.351218], [-126.550241, 52.350708], [-126.549593, 52.350497], [-126.549185, 52.350435], [-126.548958, 52.350295], [-126.548642, 52.349883], [-126.548597, 52.349613], [-126.548358, 52.349176], [-126.5483, 52.348375], [-126.547984, 52.347703], [-126.547457, 52.347125], [-126.546826, 52.346626], [-126.546525, 52.346206], [-126.545484, 52.345655], [-126.545229, 52.345487], [-126.54511, 52.345278], [-126.545062, 52.344261], [-126.545272, 52.343383], [-126.54518, 52.343175], [-126.544925, 52.343026], [-126.544733, 52.342807], [-126.544463, 52.34209], [-126.544314, 52.341592], [-126.544515, 52.341417], [-126.544545, 52.341156], [-126.543884, 52.340639], [-126.543136, 52.339284], [-126.542882, 52.33856], [-126.542783, 52.338494], [-126.542673, 52.337845], [-126.542253, 52.337484], [-126.541729, 52.336872], [-126.541502, 52.336714], [-126.541199, 52.336608], [-126.541048, 52.336408], [-126.541007, 52.336128], [-126.541094, 52.335878], [-126.541364, 52.335748], [-126.541407, 52.335525], [-126.541303, 52.33528], [-126.541319, 52.334975], [-126.5417, 52.333948], [-126.541585, 52.333119], [-126.541374, 52.332952], [-126.54095, 52.332907], [-126.540694, 52.332759], [-126.540667, 52.33248], [-126.541158, 52.331518], [-126.54125, 52.330944], [-126.541175, 52.330691], [-126.54065, 52.330087], [-126.540322, 52.329927], [-126.540004, 52.329858], [-126.539883, 52.32963], [-126.539957, 52.329128], [-126.53955, 52.32876], [-126.539521, 52.328489], [-126.540037, 52.327934], [-126.540138, 52.327441], [-126.540064, 52.327179], [-126.539461, 52.326663], [-126.539072, 52.326007], [-126.538892, 52.325833], [-126.538979, 52.325565], [-126.538918, 52.325068], [-126.539163, 52.324903], [-126.539164, 52.324642], [-126.539366, 52.324152], [-126.539167, 52.323491], [-126.538897, 52.32335], [-126.538884, 52.323071], [-126.539, 52.322831], [-126.539215, 52.322647], [-126.539377, 52.322101], [-126.539908, 52.32178], [-126.540112, 52.321569], [-126.539678, 52.321191], [-126.539895, 52.32071], [-126.539881, 52.320439], [-126.539762, 52.320203], [-126.538891, 52.319771], [-126.538107, 52.3199], [-126.537107, 52.319645], [-126.536663, 52.318942], [-126.535809, 52.318188], [-126.535967, 52.317993], [-126.535922, 52.317758], [-126.535502, 52.31738], [-126.535428, 52.317118], [-126.535521, 52.316509], [-126.535432, 52.315986], [-126.535328, 52.315722], [-126.534924, 52.315363], [-126.534552, 52.314385], [-126.534658, 52.31383], [-126.534691, 52.312706], [-126.534588, 52.312442], [-126.533774, 52.312291], [-126.533594, 52.312089], [-126.533565, 52.31181], [-126.533725, 52.311598], [-126.53377, 52.311302], [-126.533759, 52.310726], [-126.53331, 52.310339], [-126.533163, 52.309815], [-126.532561, 52.309558], [-126.532262, 52.309148], [-126.531437, 52.308681], [-126.531259, 52.30847], [-126.531258, 52.308191], [-126.531445, 52.307997], [-126.531476, 52.307701], [-126.531404, 52.307448], [-126.530968, 52.307097], [-126.531455, 52.306775], [-126.531529, 52.306506], [-126.531124, 52.306139], [-126.531019, 52.305902], [-126.531264, 52.305727], [-126.531321, 52.305477], [-126.531037, 52.305048], [-126.531039, 52.30476], [-126.530787, 52.304548], [-126.530314, 52.30435], [-126.529879, 52.304], [-126.529111, 52.303543], [-126.528719, 52.303498], [-126.52835, 52.303535], [-126.527323, 52.302983], [-126.525844, 52.302701], [-126.525436, 52.302386], [-126.524529, 52.302061], [-126.523502, 52.301806], [-126.523275, 52.301675], [-126.522973, 52.301318], [-126.522263, 52.300854], [-126.521436, 52.300451], [-126.520788, 52.299978], [-126.51985, 52.299689], [-126.519428, 52.299374], [-126.518674, 52.298962], [-126.518283, 52.298612], [-126.517968, 52.298479], [-126.517604, 52.298418], [-126.517333, 52.298269], [-126.516957, 52.29791], [-126.516336, 52.297492], [-126.515985, 52.297181], [-126.513523, 52.290999], [-126.520175, 52.286524], [-126.523895, 52.282227], [-126.524046, 52.276202], [-126.519854, 52.271567], [-126.511365, 52.268489], [-126.512778, 52.260464], [-126.508181, 52.25491], [-126.500369, 52.251506], [-126.492909, 52.250222], [-126.487067, 52.245666], [-126.484407, 52.237787], [-126.479424, 52.231957], [-126.479099, 52.221909], [-126.477155, 52.214376], [-126.464676, 52.210123], [-126.453228, 52.214979], [-126.441732, 52.214752], [-126.429217, 52.210713], [-126.422744, 52.20904], [-126.415469, 52.204657], [-126.409037, 52.20567], [-126.402399, 52.209878], [-126.39751, 52.214731], [-126.385346, 52.218359], [-126.377586, 52.21499], [-126.369618, 52.208883], [-126.363864, 52.202639], [-126.358028, 52.195932], [-126.350139, 52.191546], [-126.347741, 52.186953], [-126.339048, 52.183511], [-126.33205, 52.184956], [-126.321357, 52.185029], [-126.310105, 52.188195], [-126.301276, 52.188527], [-126.297043, 52.192292], [-126.297246, 52.195788], [-126.28682, 52.194236], [-126.270873, 52.182099], [-126.260817, 52.18155], [-126.256187, 52.178962], [-126.247562, 52.16785], [-126.251864, 52.163523], [-126.253767, 52.158638], [-126.261882, 52.15556], [-126.253181, 52.147786], [-126.244842, 52.146074], [-126.234122, 52.148886], [-126.22691, 52.145921], [-126.213764, 52.147763], [-126.201919, 52.147264], [-126.196619, 52.141314], [-126.201631, 52.135816], [-126.195889, 52.127257], [-126.202008, 52.120742], [-126.212114, 52.116932], [-126.218909, 52.106555], [-126.232853, 52.096686], [-126.24905, 52.091413], [-126.262823, 52.085932], [-126.262624, 52.078896], [-126.273652, 52.071236], [-126.272665, 52.065671], [-126.262817, 52.061257], [-126.253605, 52.056608], [-126.250042, 52.054088], [-126.246704, 52.048635], [-126.2367, 52.048609], [-126.230194, 52.044707], [-126.224478, 52.038957], [-126.221904, 52.028586], [-126.221812, 52.019501], [-126.214091, 52.013202], [-126.210212, 52.006951], [-126.2106, 52.003903], [-126.00048, 52.002254], [-125.777586, 52.000533], [-125.777079, 52.000901], [-125.759688, 52.005079], [-125.74904, 52.010131], [-125.739682, 52.012312], [-125.727863, 52.009623], [-125.720828, 52.0085], [-125.715273, 52.004323], [-125.708387, 51.994818], [-125.704682, 51.986189], [-125.700922, 51.980658], [-125.70224, 51.975595], [-125.695776, 51.964933], [-125.68966, 51.957331], [-125.680489, 51.952078], [-125.678574, 51.943171], [-125.668967, 51.935955], [-125.661841, 51.933588], [-125.656659, 51.924101], [-125.646362, 51.921559], [-125.635554, 51.914868], [-125.624879, 51.911622], [-125.611626, 51.903255], [-125.597865, 51.900817], [-125.584601, 51.902969], [-125.576837, 51.910325], [-125.575215, 51.913295], [-125.577966, 51.915718], [-125.579514, 51.920095], [-125.580415, 51.923769], [-125.576272, 51.927071], [-125.574804, 51.929103], [-125.574815, 51.931499], [-125.578725, 51.935333], [-125.58339, 51.937613], [-125.589236, 51.942722], [-125.589554, 51.944934], [-125.584877, 51.949814], [-125.585846, 51.951668], [-125.593038, 51.957147], [-125.599279, 51.961625], [-125.604419, 51.967236], [-125.604695, 51.968361], [-125.598683, 51.972255], [-125.598065, 51.974316], [-125.599738, 51.976283], [-125.603401, 51.976794], [-125.611884, 51.977153], [-125.614901, 51.981574], [-125.616321, 51.98786], [-125.611796, 51.993887], [-125.6106, 51.999328], [-125.606894, 52.000678], [-125.602561, 52.006389], [-125.603305, 52.012296], [-125.599794, 52.022997], [-125.590988, 52.026912], [-125.585594, 52.038096], [-125.584051, 52.045291], [-125.579602, 52.055573], [-125.583649, 52.055688], [-125.590509, 52.053837], [-125.598199, 52.055656], [-125.605961, 52.056989], [-125.618377, 52.052473], [-125.623367, 52.048769], [-125.636059, 52.050022], [-125.644266, 52.052042], [-125.659097, 52.060563], [-125.659761, 52.066957], [-125.665143, 52.072824], [-125.664418, 52.083207], [-125.664526, 52.083312], [-125.664786, 52.086713], [-125.661034, 52.093835], [-125.662208, 52.096108], [-125.66191, 52.100385], [-125.668307, 52.103955], [-125.672415, 52.107006], [-125.673886, 52.109171], [-125.671352, 52.1134], [-125.669628, 52.1166], [-125.668843, 52.122034], [-125.666832, 52.12264], [-125.659341, 52.128354], [-125.653707, 52.128921], [-125.649702, 52.128898], [-125.647499, 52.128468], [-125.645748, 52.129347], [-125.646334, 52.137473], [-125.639217, 52.138574], [-125.631082, 52.138817], [-125.629861, 52.139625], [-125.630689, 52.147173], [-125.629597, 52.149161], [-125.615126, 52.149238], [-125.608858, 52.151439], [-125.599224, 52.15847], [-125.591161, 52.159417], [-125.577572, 52.157699], [-125.573676, 52.158], [-125.572947, 52.173051], [-125.566024, 52.174842], [-125.557637, 52.171434], [-125.545592, 52.167423], [-125.511727, 52.172235], [-125.482728, 52.177554], [-125.469999, 52.182604], [-125.462624, 52.186923], [-125.457283, 52.191938], [-125.453631, 52.196395], [-125.451358, 52.204553], [-125.455998, 52.20875], [-125.457805, 52.214258], [-125.466483, 52.218256], [-125.479557, 52.22328], [-125.485682, 52.227841], [-125.490899, 52.228875], [-125.502668, 52.229262], [-125.508609, 52.23414], [-125.508781, 52.240488], [-125.513809, 52.24269], [-125.510943, 52.246875], [-125.499255, 52.249673], [-125.49042, 52.249644], [-125.485387, 52.252753], [-125.488664, 52.256885], [-125.484461, 52.261344], [-125.484416, 52.261804], [-125.47747, 52.280096], [-125.46871, 52.286418], [-125.462107, 52.288292], [-125.455177, 52.287051], [-125.448192, 52.280762], [-125.439403, 52.276159], [-125.428412, 52.276124], [-125.420905, 52.280478], [-125.420225, 52.283385], [-125.419322, 52.288816], [-125.403855, 52.300476], [-125.400592, 52.308281], [-125.39202, 52.312098], [-125.381204, 52.314195], [-125.377914, 52.317475], [-125.384332, 52.32715], [-125.38281, 52.329563], [-125.363323, 52.332331], [-125.349477, 52.337185], [-125.343716, 52.344942], [-125.351532, 52.352032], [-125.353381, 52.357332], [-125.358661, 52.363832], [-125.359396, 52.366359], [-125.359071, 52.366491], [-125.355281, 52.370892], [-125.355744, 52.375982], [-125.358647, 52.380694], [-125.365338, 52.386015], [-125.373758, 52.390844], [-125.384045, 52.395726], [-125.406486, 52.395356], [-125.416304, 52.398128], [-125.429693, 52.404513], [-125.440126, 52.404986], [-125.451134, 52.404805], [-125.456278, 52.400848], [-125.466415, 52.398775], [-125.479785, 52.402189], [-125.48522, 52.408315], [-125.489425, 52.421807], [-125.489931, 52.429325], [-125.489382, 52.431965], [-125.482834, 52.437965], [-125.47682, 52.447603], [-125.47575, 52.452914], [-125.472137, 52.455422], [-125.466641, 52.456237], [-125.457415, 52.45846], [-125.454691, 52.464276], [-125.456018, 52.471541], [-125.460878, 52.473557], [-125.462534, 52.478507], [-125.472124, 52.48128], [-125.483045, 52.479298], [-125.490527, 52.480303], [-125.494772, 52.480568], [-125.499614, 52.485354], [-125.518029, 52.489527], [-125.530137, 52.497013], [-125.541025, 52.499159], [-125.547984, 52.499367], [-125.557167, 52.50287], [-125.568099, 52.504215], [-125.57721, 52.504498], [-125.595705, 52.504716], [-125.609512, 52.508211], [-125.620459, 52.511152], [-125.631059, 52.509716], [-125.636047, 52.507795], [-125.645826, 52.502915], [-125.655955, 52.4984], [-125.678079, 52.492563], [-125.69999, 52.492142], [-125.711669, 52.486319], [-125.723802, 52.485556], [-125.735178, 52.479839], [-125.749511, 52.479689], [-125.755461, 52.482936], [-125.758461, 52.486879], [-125.754499, 52.491115], [-125.747077, 52.495731], [-125.745923, 52.497246], [-125.746589, 52.498354], [-125.747905, 52.499718], [-125.751492, 52.500525], [-125.751163, 52.501712], [-125.754095, 52.50795], [-125.765346, 52.508949], [-125.778298, 52.51125], [-125.787863, 52.519019], [-125.796417, 52.522683], [-125.799359, 52.525234], [-125.796705, 52.527713], [-125.796345, 52.527522], [-125.796449, 52.527939], [-125.791393, 52.5324], [-125.790029, 52.533813], [-125.79154, 52.536432], [-125.796131, 52.53615], [-125.798662, 52.536368], [-125.803967, 52.537061], [-125.809001, 52.54062], [-125.801681, 52.546787], [-125.800394, 52.547981], [-125.801814, 52.550385], [-125.806952, 52.551441], [-125.814762, 52.55067], [-125.81651, 52.553376], [-125.818828, 52.555606], [-125.823862, 52.556231], [-125.826532, 52.558064], [-125.821905, 52.565876], [-125.820618, 52.570762], [-125.82417, 52.576994], [-125.827984, 52.577535], [-125.83242, 52.577805], [-125.837145, 52.577754], [-125.850569, 52.576747], [-125.852723, 52.577636], [-125.854592, 52.579215], [-125.856082, 52.582204], [-125.859759, 52.596556], [-125.861116, 52.604667], [-125.862679, 52.606896], [-125.865787, 52.607779], [-125.866546, 52.610604], [-125.863346, 52.612149], [-125.862016, 52.615457], [-125.855105, 52.616207], [-125.849677, 52.619842], [-125.848395, 52.624406], [-125.855663, 52.631809], [-125.855637, 52.632126], [-125.857819, 52.632197], [-125.871014, 52.63363], [-125.87264, 52.632478], [-125.884929, 52.628169], [-125.916234, 52.624582], [-125.937429, 52.62227], [-125.958173, 52.602978], [-125.987994, 52.619302], [-125.999968, 52.616381], [-126.010705, 52.613838], [-126.006576, 52.602122], [-126.046785, 52.581573], [-126.066874, 52.579792], [-126.084184, 52.591705], [-126.092566, 52.594069], [-126.100494, 52.58895], [-126.118291, 52.588121], [-126.136025, 52.576913], [-126.136635, 52.563513], [-126.133806, 52.557962], [-126.13404, 52.555161], [-126.135353, 52.552674], [-126.137768, 52.549863], [-126.140558, 52.547898], [-126.143762, 52.546685], [-126.145381, 52.546317], [-126.154011, 52.545635], [-126.167198, 52.531613], [-126.170456, 52.532165], [-126.171538, 52.531105], [-126.181067, 52.519014], [-126.181656, 52.519818], [-126.182186, 52.520271], [-126.18301, 52.520514], [-126.183621, 52.520519], [-126.192514, 52.507794], [-126.197782, 52.499968], [-126.212269, 52.494943], [-126.220073, 52.496295], [-126.238285, 52.519315], [-126.244434, 52.524734], [-126.261195, 52.530231], [-126.270406, 52.541211], [-126.284214, 52.541237], [-126.300805, 52.545312], [-126.312912, 52.532511], [-126.313697, 52.521382], [-126.317988, 52.518336], [-126.331767, 52.521206], [-126.339124, 52.527419], [-126.344367, 52.524516], [-126.358842, 52.535049], [-126.376269, 52.559611], [-126.384134, 52.568366], [-126.384677, 52.578328], [-126.410485, 52.593228], [-126.396856, 52.599314], [-126.397428, 52.600158], [-126.39743, 52.600366], [-126.397272, 52.600541], [-126.396967, 52.600715], [-126.396732, 52.601178], [-126.396383, 52.601584], [-126.396441, 52.602098], [-126.396319, 52.602571], [-126.413067, 52.614749], [-126.416376, 52.620959], [-126.422414, 52.626762], [-126.424726, 52.631854], [-126.429226, 52.637183], [-126.444137, 52.652356], [-126.445674, 52.654168], [-126.451588, 52.652149], [-126.469342, 52.650796], [-126.475795, 52.644615], [-126.485758, 52.646477], [-126.493558, 52.649173]]]]}, "properties": {"name": "Central Coast C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Central Coast C", "economic_region_id": "5910", "census_division_code": "5945", "census_subdivision_code": "5945010", "regional_district_aka_census_division": "Central Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.522266, 52.601686], [-126.5333, 52.606354], [-126.539923, 52.609993], [-126.543728, 52.613135], [-126.552799, 52.619699], [-126.556415, 52.616476], [-126.55805, 52.611765], [-126.559108, 52.604213], [-126.555632, 52.590276], [-126.563096, 52.582809], [-126.582135, 52.574705], [-126.594642, 52.571088], [-126.611295, 52.56607], [-126.631752, 52.560845], [-126.644725, 52.554931], [-126.64511, 52.554957], [-126.646033, 52.554864], [-126.64645, 52.554763], [-126.648058, 52.553973], [-126.648773, 52.553766], [-126.64968, 52.553075], [-126.650985, 52.552753], [-126.651536, 52.552724], [-126.652085, 52.552583], [-126.652947, 52.552006], [-126.654878, 52.551056], [-126.655549, 52.550537], [-126.656724, 52.549988], [-126.657333, 52.549488], [-126.658573, 52.549014], [-126.658958, 52.548616], [-126.658901, 52.547659], [-126.660216, 52.54593], [-126.660902, 52.545302], [-126.661916, 52.544948], [-126.662505, 52.544396], [-126.664281, 52.543822], [-126.664612, 52.5436], [-126.665208, 52.54283], [-126.665216, 52.541996], [-126.664803, 52.541213], [-126.66501, 52.540562], [-126.665318, 52.540302], [-126.66659, 52.539609], [-126.666921, 52.539072], [-126.666882, 52.538775], [-126.666431, 52.537996], [-126.66634, 52.535095], [-126.666629, 52.534571], [-126.668473, 52.533198], [-126.668768, 52.532785], [-126.668849, 52.532301], [-126.669188, 52.531992], [-126.67076, 52.531363], [-126.670946, 52.531064], [-126.670811, 52.530759], [-126.669915, 52.529834], [-126.669235, 52.529237], [-126.666601, 52.52724], [-126.665892, 52.526937], [-126.664249, 52.526548], [-126.659775, 52.524698], [-126.659129, 52.524235], [-126.658831, 52.523688], [-126.658686, 52.523221], [-126.65869, 52.521056], [-126.65935, 52.51982], [-126.659225, 52.519267], [-126.659099, 52.519028], [-126.65882, 52.518809], [-126.657283, 52.518403], [-126.657128, 52.518282], [-126.657045, 52.517711], [-126.657494, 52.516576], [-126.657593, 52.515041], [-126.657422, 52.514764], [-126.656859, 52.514209], [-126.656687, 52.513551], [-126.656924, 52.513064], [-126.657639, 52.512567], [-126.657935, 52.51225], [-126.657946, 52.51189], [-126.657508, 52.511202], [-126.656082, 52.511168], [-126.655858, 52.511103], [-126.655697, 52.510904], [-126.655663, 52.510359], [-126.655877, 52.510043], [-126.655988, 52.50953], [-126.656187, 52.509218], [-126.657347, 52.507895], [-126.658088, 52.50727], [-126.658672, 52.506938], [-126.658889, 52.506598], [-126.658908, 52.50619], [-126.658724, 52.505471], [-126.659403, 52.504597], [-126.659547, 52.504154], [-126.659237, 52.50399], [-126.658336, 52.503771], [-126.658017, 52.503587], [-126.65807, 52.503386], [-126.658197, 52.503332], [-126.658817, 52.503339], [-126.659313, 52.503117], [-126.659679, 52.50201], [-126.659328, 52.501115], [-126.659624, 52.500971], [-126.66015, 52.500932], [-126.660294, 52.500865], [-126.660313, 52.500721], [-126.659804, 52.500065], [-126.659722, 52.499497], [-126.659936, 52.498678], [-126.660213, 52.49822], [-126.661006, 52.497582], [-126.663139, 52.496343], [-126.663713, 52.495628], [-126.664057, 52.495372], [-126.664909, 52.495111], [-126.665635, 52.495005], [-126.667099, 52.495029], [-126.667511, 52.494958], [-126.66766, 52.494828], [-126.66782, 52.494351], [-126.6677, 52.493479], [-126.667911, 52.49293], [-126.66804, 52.492806], [-126.668429, 52.492746], [-126.669184, 52.492875], [-126.669636, 52.492868], [-126.670091, 52.492656], [-126.670318, 52.492321], [-126.67047, 52.491789], [-126.670536, 52.490459], [-126.670655, 52.490058], [-126.671274, 52.489339], [-126.673425, 52.488334], [-126.674057, 52.487923], [-126.674254, 52.487406], [-126.673652, 52.486028], [-126.673792, 52.485618], [-126.67409, 52.485233], [-126.675227, 52.484792], [-126.676263, 52.484706], [-126.676816, 52.484409], [-126.677481, 52.483442], [-126.677571, 52.482749], [-126.678092, 52.48214], [-126.678458, 52.481459], [-126.679427, 52.480878], [-126.679972, 52.480445], [-126.680164, 52.480247], [-126.680357, 52.479743], [-126.680891, 52.479392], [-126.68107, 52.478675], [-126.681944, 52.478178], [-126.682129, 52.477611], [-126.681761, 52.476722], [-126.681814, 52.476192], [-126.681638, 52.474872], [-126.681178, 52.473627], [-126.681128, 52.472179], [-126.681269, 52.471183], [-126.682493, 52.46943], [-126.682738, 52.46882], [-126.68278, 52.468186], [-126.682445, 52.467472], [-126.682352, 52.46696], [-126.682911, 52.466112], [-126.682754, 52.465847], [-126.682332, 52.465659], [-126.68192, 52.465343], [-126.68177, 52.464934], [-126.682076, 52.464508], [-126.684099, 52.463229], [-126.684131, 52.462973], [-126.683255, 52.462214], [-126.682968, 52.461584], [-126.682964, 52.461029], [-126.6826, 52.459567], [-126.682608, 52.458965], [-126.682856, 52.458341], [-126.683579, 52.457601], [-126.684216, 52.457101], [-126.684903, 52.456777], [-126.686013, 52.455641], [-126.686266, 52.455157], [-126.686452, 52.454305], [-126.686121, 52.453217], [-126.686188, 52.452792], [-126.686526, 52.452374], [-126.687101, 52.452075], [-126.687566, 52.452045], [-126.688109, 52.452176], [-126.688488, 52.452439], [-126.688878, 52.452469], [-126.689079, 52.452348], [-126.689499, 52.451669], [-126.690086, 52.451068], [-126.691909, 52.449908], [-126.692272, 52.449342], [-126.692532, 52.448239], [-126.692807, 52.447957], [-126.693552, 52.447479], [-126.694853, 52.446772], [-126.695153, 52.446482], [-126.695092, 52.446049], [-126.694682, 52.445308], [-126.694576, 52.444855], [-126.694688, 52.444526], [-126.695884, 52.443028], [-126.696677, 52.442537], [-126.697919, 52.442007], [-126.699021, 52.441675], [-126.700111, 52.441216], [-126.702063, 52.439636], [-126.702742, 52.438818], [-126.703111, 52.437797], [-126.703741, 52.43723], [-126.704744, 52.43672], [-126.706089, 52.436363], [-126.706706, 52.435965], [-126.708394, 52.435121], [-126.70868, 52.434859], [-126.709313, 52.433585], [-126.710976, 52.430806], [-126.711739, 52.429086], [-126.712038, 52.428884], [-126.713624, 52.428232], [-126.714482, 52.427793], [-126.716607, 52.426331], [-126.717492, 52.425574], [-126.720183, 52.422796], [-126.720865, 52.422237], [-126.723411, 52.419852], [-126.724016, 52.419175], [-126.72417, 52.418176], [-126.724114, 52.417109], [-126.724495, 52.416474], [-126.725135, 52.416158], [-126.726417, 52.415849], [-126.729756, 52.415709], [-126.730206, 52.415595], [-126.731141, 52.41501], [-126.731618, 52.414174], [-126.731956, 52.412641], [-126.734583, 52.410182], [-126.735125, 52.4098], [-126.737285, 52.408791], [-126.738638, 52.408017], [-126.739391, 52.407416], [-126.739854, 52.406484], [-126.739782, 52.405994], [-126.739386, 52.405174], [-126.739391, 52.404724], [-126.739939, 52.404196], [-126.740684, 52.403817], [-126.741362, 52.403135], [-126.741518, 52.402525], [-126.74152, 52.400644], [-126.742267, 52.399329], [-126.742594, 52.398983], [-126.744676, 52.39777], [-126.745298, 52.39726], [-126.745643, 52.396766], [-126.745999, 52.395618], [-126.746308, 52.395414], [-126.746852, 52.394634], [-126.746846, 52.394209], [-126.74717, 52.393893], [-126.747715, 52.393693], [-126.748277, 52.393574], [-126.738142, 52.393526], [-126.694047, 52.392617], [-126.693628, 52.366507], [-126.692757, 52.360251], [-126.697517, 52.36027], [-126.701831, 52.359899], [-126.713702, 52.36013], [-126.721675, 52.359798], [-126.733641, 52.360429], [-126.733636, 52.362375], [-126.738353, 52.362583], [-126.741387, 52.361834], [-126.744677, 52.361875], [-126.752766, 52.362673], [-126.752565, 52.369364], [-126.752797, 52.368754], [-126.753084, 52.368283], [-126.753545, 52.367905], [-126.755527, 52.366783], [-126.756086, 52.366146], [-126.756302, 52.36535], [-126.756277, 52.364694], [-126.756111, 52.364231], [-126.756231, 52.363298], [-126.756187, 52.362992], [-126.755889, 52.362807], [-126.754925, 52.362688], [-126.754683, 52.36255], [-126.75464, 52.362207], [-126.754812, 52.359683], [-126.755274, 52.358685], [-126.755483, 52.357745], [-126.755761, 52.357211], [-126.755821, 52.356898], [-126.755762, 52.356302], [-126.756259, 52.354937], [-126.755914, 52.354506], [-126.755767, 52.353605], [-126.755756, 52.353272], [-126.756103, 52.352487], [-126.756091, 52.352172], [-126.755984, 52.351919], [-126.755597, 52.351471], [-126.755668, 52.351211], [-126.756098, 52.350823], [-126.756011, 52.350516], [-126.755817, 52.350324], [-126.755592, 52.34951], [-126.755596, 52.349187], [-126.755696, 52.348946], [-126.755372, 52.347788], [-126.755764, 52.346744], [-126.755721, 52.346122], [-126.755837, 52.345864], [-126.756667, 52.345115], [-126.756769, 52.344857], [-126.756621, 52.344269], [-126.75666, 52.344117], [-126.757449, 52.343009], [-126.757389, 52.342188], [-126.757692, 52.341133], [-126.758171, 52.340082], [-126.758147, 52.338813], [-126.758407, 52.338035], [-126.758937, 52.337695], [-126.759111, 52.337141], [-126.759572, 52.336439], [-126.75966, 52.336171], [-126.759765, 52.335553], [-126.759689, 52.334993], [-126.759137, 52.334597], [-126.759064, 52.334308], [-126.759107, 52.334012], [-126.759297, 52.333448], [-126.759876, 52.332776], [-126.760011, 52.330665], [-126.760127, 52.330407], [-126.760372, 52.330224], [-126.760431, 52.329919], [-126.760691, 52.329429], [-126.761092, 52.329023], [-126.761199, 52.328638], [-126.761154, 52.327801], [-126.76124, 52.326696], [-126.761796, 52.325269], [-126.762024, 52.325119], [-126.762182, 52.324899], [-126.762092, 52.324645], [-126.761097, 52.323403], [-126.761341, 52.323245], [-126.761783, 52.323218], [-126.762125, 52.323098], [-126.76261, 52.322794], [-126.763397, 52.322034], [-126.763968, 52.321767], [-126.764697, 52.321304], [-126.764883, 52.321092], [-126.7651, 52.3206], [-126.765411, 52.320499], [-126.765541, 52.319979], [-126.76557, 52.319108], [-126.76597, 52.318737], [-126.766171, 52.318256], [-126.766356, 52.318071], [-126.766599, 52.317599], [-126.767073, 52.317248], [-126.76716, 52.316971], [-126.767684, 52.316756], [-126.767927, 52.316581], [-126.768014, 52.316322], [-126.767954, 52.316051], [-126.768068, 52.315819], [-126.768653, 52.31556], [-126.769012, 52.315171], [-126.769298, 52.315024], [-126.769684, 52.314636], [-126.769942, 52.314479], [-126.770055, 52.314247], [-126.77037, 52.314119], [-126.770556, 52.313915], [-126.770602, 52.313583], [-126.770829, 52.313164], [-126.770766, 52.312381], [-126.770499, 52.312133], [-126.769926, 52.311269], [-126.769985, 52.311], [-126.770185, 52.310806], [-126.770211, 52.310564], [-126.770119, 52.310337], [-126.770821, 52.309531], [-126.770774, 52.309279], [-126.770903, 52.309049], [-126.771147, 52.30889], [-126.771231, 52.308371], [-126.771501, 52.307935], [-126.771488, 52.307647], [-126.771176, 52.306859], [-126.771086, 52.306273], [-126.770578, 52.305904], [-126.770917, 52.305568], [-126.770987, 52.305327], [-126.771188, 52.305132], [-126.771403, 52.304381], [-126.771329, 52.304101], [-126.772221, 52.303534], [-126.772761, 52.303004], [-126.772845, 52.302528], [-126.773001, 52.302335], [-126.770392, 52.281945], [-126.769211, 52.268456], [-126.765442, 52.263196], [-126.75969, 52.260977], [-126.751642, 52.260392], [-126.743224, 52.2572], [-126.730763, 52.256424], [-126.721333, 52.254039], [-126.709819, 52.254064], [-126.695099, 52.24697], [-126.683285, 52.248521], [-126.676446, 52.251682], [-126.66151, 52.247581], [-126.650311, 52.244912], [-126.636994, 52.247279], [-126.630784, 52.253289], [-126.619335, 52.255425], [-126.611911, 52.2588], [-126.598527, 52.259127], [-126.591104, 52.262927], [-126.581882, 52.264912], [-126.574276, 52.267964], [-126.5731, 52.272432], [-126.566705, 52.274731], [-126.561955, 52.279898], [-126.555489, 52.283109], [-126.541547, 52.287175], [-126.532111, 52.289277], [-126.514739, 52.290183], [-126.513523, 52.290999], [-126.515985, 52.297181], [-126.516336, 52.297492], [-126.516957, 52.29791], [-126.517333, 52.298269], [-126.517604, 52.298418], [-126.517968, 52.298479], [-126.518283, 52.298612], [-126.518674, 52.298962], [-126.519428, 52.299374], [-126.51985, 52.299689], [-126.520788, 52.299978], [-126.521436, 52.300451], [-126.522263, 52.300854], [-126.522973, 52.301318], [-126.523275, 52.301675], [-126.523502, 52.301806], [-126.524529, 52.302061], [-126.525436, 52.302386], [-126.525844, 52.302701], [-126.527323, 52.302983], [-126.52835, 52.303535], [-126.528719, 52.303498], [-126.529111, 52.303543], [-126.529879, 52.304], [-126.530314, 52.30435], [-126.530787, 52.304548], [-126.531039, 52.30476], [-126.531037, 52.305048], [-126.531321, 52.305477], [-126.531264, 52.305727], [-126.531019, 52.305902], [-126.531124, 52.306139], [-126.531529, 52.306506], [-126.531455, 52.306775], [-126.530968, 52.307097], [-126.531404, 52.307448], [-126.531476, 52.307701], [-126.531445, 52.307997], [-126.531258, 52.308191], [-126.531259, 52.30847], [-126.531437, 52.308681], [-126.532262, 52.309148], [-126.532561, 52.309558], [-126.533163, 52.309815], [-126.53331, 52.310339], [-126.533759, 52.310726], [-126.53377, 52.311302], [-126.533725, 52.311598], [-126.533565, 52.31181], [-126.533594, 52.312089], [-126.533774, 52.312291], [-126.534588, 52.312442], [-126.534691, 52.312706], [-126.534658, 52.31383], [-126.534552, 52.314385], [-126.534924, 52.315363], [-126.535328, 52.315722], [-126.535432, 52.315986], [-126.535521, 52.316509], [-126.535428, 52.317118], [-126.535502, 52.31738], [-126.535922, 52.317758], [-126.535967, 52.317993], [-126.535809, 52.318188], [-126.536663, 52.318942], [-126.537107, 52.319645], [-126.538107, 52.3199], [-126.538891, 52.319771], [-126.539762, 52.320203], [-126.539881, 52.320439], [-126.539895, 52.32071], [-126.539678, 52.321191], [-126.540112, 52.321569], [-126.539908, 52.32178], [-126.539377, 52.322101], [-126.539215, 52.322647], [-126.539, 52.322831], [-126.538884, 52.323071], [-126.538897, 52.32335], [-126.539167, 52.323491], [-126.539366, 52.324152], [-126.539164, 52.324642], [-126.539163, 52.324903], [-126.538918, 52.325068], [-126.538979, 52.325565], [-126.538892, 52.325833], [-126.539072, 52.326007], [-126.539461, 52.326663], [-126.540064, 52.327179], [-126.540138, 52.327441], [-126.540037, 52.327934], [-126.539521, 52.328489], [-126.53955, 52.32876], [-126.539957, 52.329128], [-126.539883, 52.32963], [-126.540004, 52.329858], [-126.540322, 52.329927], [-126.54065, 52.330087], [-126.541175, 52.330691], [-126.54125, 52.330944], [-126.541158, 52.331518], [-126.540667, 52.33248], [-126.540694, 52.332759], [-126.54095, 52.332907], [-126.541374, 52.332952], [-126.541585, 52.333119], [-126.5417, 52.333948], [-126.541319, 52.334975], [-126.541303, 52.33528], [-126.541407, 52.335525], [-126.541364, 52.335748], [-126.541094, 52.335878], [-126.541007, 52.336128], [-126.541048, 52.336408], [-126.541199, 52.336608], [-126.541502, 52.336714], [-126.541729, 52.336872], [-126.542253, 52.337484], [-126.542673, 52.337845], [-126.542783, 52.338494], [-126.542882, 52.33856], [-126.543136, 52.339284], [-126.543884, 52.340639], [-126.544545, 52.341156], [-126.544515, 52.341417], [-126.544314, 52.341592], [-126.544463, 52.34209], [-126.544733, 52.342807], [-126.544925, 52.343026], [-126.54518, 52.343175], [-126.545272, 52.343383], [-126.545062, 52.344261], [-126.54511, 52.345278], [-126.545229, 52.345487], [-126.545484, 52.345655], [-126.546525, 52.346206], [-126.546826, 52.346626], [-126.547457, 52.347125], [-126.547984, 52.347703], [-126.5483, 52.348375], [-126.548358, 52.349176], [-126.548597, 52.349613], [-126.548642, 52.349883], [-126.548958, 52.350295], [-126.549185, 52.350435], [-126.549593, 52.350497], [-126.550241, 52.350708], [-126.550961, 52.351218], [-126.55125, 52.351332], [-126.552021, 52.351464], [-126.552469, 52.3524], [-126.552785, 52.352487], [-126.552876, 52.352713], [-126.552632, 52.353159], [-126.552645, 52.353428], [-126.552795, 52.353648], [-126.553715, 52.354287], [-126.553806, 52.354757], [-126.55375, 52.354989], [-126.553854, 52.355226], [-126.554246, 52.355575], [-126.554276, 52.35581], [-126.554135, 52.356005], [-126.554104, 52.356274], [-126.554181, 52.3565], [-126.554093, 52.356741], [-126.554125, 52.356976], [-126.554482, 52.357396], [-126.555256, 52.357754], [-126.555377, 52.358242], [-126.55551, 52.358451], [-126.55625, 52.358899], [-126.556738, 52.359367], [-126.557051, 52.359833], [-126.55746, 52.360119], [-126.558046, 52.36096], [-126.558443, 52.361758], [-126.558709, 52.362529], [-126.559096, 52.363043], [-126.558934, 52.383845], [-126.556919, 52.391084], [-126.556731, 52.393422], [-126.558537, 52.395744], [-126.560039, 52.397856], [-126.560618, 52.399207], [-126.561019, 52.399137], [-126.562617, 52.39915], [-126.568132, 52.399023], [-126.626255, 52.39896], [-126.640306, 52.424573], [-126.631478, 52.464317], [-126.637693, 52.468161], [-126.640522, 52.471775], [-126.643606, 52.477391], [-126.642576, 52.480432], [-126.63666, 52.488656], [-126.635578, 52.494167], [-126.633934, 52.495428], [-126.631895, 52.50221], [-126.626847, 52.513447], [-126.636347, 52.524331], [-126.632298, 52.527548], [-126.622695, 52.5284], [-126.614518, 52.527866], [-126.604294, 52.533432], [-126.5826, 52.546527], [-126.57656, 52.547556], [-126.572488, 52.549006], [-126.565835, 52.550586], [-126.55836, 52.550465], [-126.548579, 52.55211], [-126.542123, 52.551846], [-126.539275, 52.555791], [-126.538282, 52.562772], [-126.543204, 52.564998], [-126.539876, 52.572845], [-126.538411, 52.579648], [-126.534408, 52.585943], [-126.52632, 52.588524], [-126.523442, 52.594785], [-126.522266, 52.601686]]]]}, "properties": {"name": "Central Coast D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Central Coast D", "economic_region_id": "5910", "census_division_code": "5945", "census_subdivision_code": "5945012", "regional_district_aka_census_division": "Central Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.731602, 52.578392], [-126.734622, 52.585268], [-126.739392, 52.584298], [-126.743253, 52.576943], [-126.748909, 52.571504], [-126.753555, 52.564313], [-126.759551, 52.562202], [-126.76565, 52.558951], [-126.76879, 52.553], [-126.773827, 52.549686], [-126.781915, 52.547176], [-126.785642, 52.543056], [-126.783262, 52.534571], [-126.783761, 52.534206], [-126.817862, 52.495168], [-126.827232, 52.484734], [-126.86828, 52.493654], [-126.875919, 52.429356], [-126.879228, 52.380265], [-126.877226, 52.330721], [-126.877512, 52.325888], [-126.902995, 52.292856], [-126.903441, 52.288187], [-126.901546, 52.284102], [-126.894189, 52.276752], [-126.893177, 52.276093], [-126.884813, 52.265178], [-126.875958, 52.255761], [-126.871532, 52.249933], [-126.859445, 52.247501], [-126.854631, 52.24212], [-126.84694, 52.23778], [-126.839398, 52.237511], [-126.831626, 52.23561], [-126.822996, 52.239437], [-126.816252, 52.236461], [-126.814769, 52.230344], [-126.812061, 52.223699], [-126.798591, 52.223929], [-126.790909, 52.22225], [-126.777702, 52.223154], [-126.768472, 52.2179], [-126.76396, 52.211776], [-126.756487, 52.212517], [-126.74611, 52.214259], [-126.744479, 52.220442], [-126.755374, 52.223897], [-126.760348, 52.230948], [-126.771301, 52.232495], [-126.772563, 52.241282], [-126.771029, 52.245887], [-126.776992, 52.256986], [-126.77584, 52.264621], [-126.769211, 52.268456], [-126.770392, 52.281945], [-126.773001, 52.302335], [-126.772845, 52.302528], [-126.772761, 52.303004], [-126.772221, 52.303534], [-126.771329, 52.304101], [-126.771403, 52.304381], [-126.771188, 52.305132], [-126.770987, 52.305327], [-126.770917, 52.305568], [-126.770578, 52.305904], [-126.771086, 52.306273], [-126.771176, 52.306859], [-126.771488, 52.307647], [-126.771501, 52.307935], [-126.771231, 52.308371], [-126.771147, 52.30889], [-126.770903, 52.309049], [-126.770774, 52.309279], [-126.770821, 52.309531], [-126.770119, 52.310337], [-126.770211, 52.310564], [-126.770185, 52.310806], [-126.769985, 52.311], [-126.769926, 52.311269], [-126.770499, 52.312133], [-126.770766, 52.312381], [-126.770829, 52.313164], [-126.770602, 52.313583], [-126.770556, 52.313915], [-126.77037, 52.314119], [-126.770055, 52.314247], [-126.769942, 52.314479], [-126.769684, 52.314636], [-126.769298, 52.315024], [-126.769012, 52.315171], [-126.768653, 52.31556], [-126.768068, 52.315819], [-126.767954, 52.316051], [-126.768014, 52.316322], [-126.767927, 52.316581], [-126.767684, 52.316756], [-126.76716, 52.316971], [-126.767073, 52.317248], [-126.766599, 52.317599], [-126.766356, 52.318071], [-126.766171, 52.318256], [-126.76597, 52.318737], [-126.76557, 52.319108], [-126.765541, 52.319979], [-126.765411, 52.320499], [-126.7651, 52.3206], [-126.764883, 52.321092], [-126.764697, 52.321304], [-126.763968, 52.321767], [-126.763397, 52.322034], [-126.76261, 52.322794], [-126.762125, 52.323098], [-126.761783, 52.323218], [-126.761341, 52.323245], [-126.761097, 52.323403], [-126.762092, 52.324645], [-126.762182, 52.324899], [-126.762024, 52.325119], [-126.761796, 52.325269], [-126.76124, 52.326696], [-126.761154, 52.327801], [-126.761199, 52.328638], [-126.761092, 52.329023], [-126.760691, 52.329429], [-126.760431, 52.329919], [-126.760372, 52.330224], [-126.760127, 52.330407], [-126.760011, 52.330665], [-126.759876, 52.332776], [-126.759297, 52.333448], [-126.759107, 52.334012], [-126.759064, 52.334308], [-126.759137, 52.334597], [-126.759689, 52.334993], [-126.759765, 52.335553], [-126.75966, 52.336171], [-126.759572, 52.336439], [-126.759111, 52.337141], [-126.758937, 52.337695], [-126.758407, 52.338035], [-126.758147, 52.338813], [-126.758171, 52.340082], [-126.757692, 52.341133], [-126.757389, 52.342188], [-126.757449, 52.343009], [-126.75666, 52.344117], [-126.756621, 52.344269], [-126.756769, 52.344857], [-126.756667, 52.345115], [-126.755837, 52.345864], [-126.755721, 52.346122], [-126.755764, 52.346744], [-126.755372, 52.347788], [-126.755696, 52.348946], [-126.755596, 52.349187], [-126.755592, 52.34951], [-126.755817, 52.350324], [-126.756011, 52.350516], [-126.756098, 52.350823], [-126.755668, 52.351211], [-126.755597, 52.351471], [-126.755984, 52.351919], [-126.756091, 52.352172], [-126.756103, 52.352487], [-126.755756, 52.353272], [-126.755767, 52.353605], [-126.755914, 52.354506], [-126.756259, 52.354937], [-126.755762, 52.356302], [-126.755821, 52.356898], [-126.755761, 52.357211], [-126.755483, 52.357745], [-126.755274, 52.358685], [-126.754812, 52.359683], [-126.75464, 52.362207], [-126.754683, 52.36255], [-126.754925, 52.362688], [-126.755889, 52.362807], [-126.756187, 52.362992], [-126.756231, 52.363298], [-126.756111, 52.364231], [-126.756277, 52.364694], [-126.75626, 52.36561], [-126.756086, 52.366146], [-126.755527, 52.366783], [-126.753545, 52.367905], [-126.753084, 52.368283], [-126.752797, 52.368754], [-126.752565, 52.369364], [-126.753294, 52.369605], [-126.753392, 52.37003], [-126.753559, 52.37098], [-126.753563, 52.374409], [-126.754562, 52.374777], [-126.757042, 52.375408], [-126.758226, 52.375808], [-126.760837, 52.377072], [-126.761874, 52.377496], [-126.762065, 52.377473], [-126.76358, 52.378023], [-126.763803, 52.378855], [-126.764041, 52.379065], [-126.764387, 52.379208], [-126.764972, 52.379578], [-126.765433, 52.379731], [-126.766266, 52.380403], [-126.766619, 52.380602], [-126.766607, 52.381638], [-126.767241, 52.383037], [-126.767608, 52.384178], [-126.76673, 52.394351], [-126.76588, 52.39427], [-126.748277, 52.393574], [-126.747715, 52.393693], [-126.74717, 52.393893], [-126.746846, 52.394209], [-126.746852, 52.394634], [-126.746308, 52.395414], [-126.745999, 52.395618], [-126.745643, 52.396766], [-126.745298, 52.39726], [-126.744676, 52.39777], [-126.742594, 52.398983], [-126.742267, 52.399329], [-126.741753, 52.400205], [-126.74152, 52.400644], [-126.741518, 52.402525], [-126.741362, 52.403135], [-126.740684, 52.403817], [-126.739939, 52.404196], [-126.739391, 52.404724], [-126.739386, 52.405174], [-126.739782, 52.405994], [-126.739854, 52.406484], [-126.739391, 52.407416], [-126.738638, 52.408017], [-126.737285, 52.408791], [-126.735125, 52.4098], [-126.734583, 52.410182], [-126.731956, 52.412641], [-126.731618, 52.414174], [-126.731141, 52.41501], [-126.730206, 52.415595], [-126.729756, 52.415709], [-126.726417, 52.415849], [-126.725135, 52.416158], [-126.724495, 52.416474], [-126.724114, 52.417109], [-126.72417, 52.418176], [-126.724016, 52.419175], [-126.723411, 52.419852], [-126.720865, 52.422237], [-126.720183, 52.422796], [-126.717492, 52.425574], [-126.716607, 52.426331], [-126.714482, 52.427793], [-126.713624, 52.428232], [-126.712038, 52.428884], [-126.711739, 52.429086], [-126.710976, 52.430806], [-126.709313, 52.433585], [-126.70868, 52.434859], [-126.708394, 52.435121], [-126.706706, 52.435965], [-126.706089, 52.436363], [-126.704744, 52.43672], [-126.703741, 52.43723], [-126.703111, 52.437797], [-126.702742, 52.438818], [-126.702063, 52.439636], [-126.700111, 52.441216], [-126.699021, 52.441675], [-126.697919, 52.442007], [-126.696677, 52.442537], [-126.695884, 52.443028], [-126.694688, 52.444526], [-126.694576, 52.444855], [-126.694682, 52.445308], [-126.695092, 52.446049], [-126.695153, 52.446482], [-126.694853, 52.446772], [-126.693552, 52.447479], [-126.692807, 52.447957], [-126.692532, 52.448239], [-126.692272, 52.449342], [-126.691909, 52.449908], [-126.690086, 52.451068], [-126.689499, 52.451669], [-126.689079, 52.452348], [-126.688878, 52.452469], [-126.688488, 52.452439], [-126.688109, 52.452176], [-126.687566, 52.452045], [-126.687101, 52.452075], [-126.686526, 52.452374], [-126.686188, 52.452792], [-126.686121, 52.453217], [-126.686452, 52.454305], [-126.686266, 52.455157], [-126.686013, 52.455641], [-126.684903, 52.456777], [-126.684216, 52.457101], [-126.683579, 52.457601], [-126.682856, 52.458341], [-126.682608, 52.458965], [-126.6826, 52.459567], [-126.682964, 52.461029], [-126.682968, 52.461584], [-126.683255, 52.462214], [-126.684131, 52.462973], [-126.684099, 52.463229], [-126.682076, 52.464508], [-126.68177, 52.464934], [-126.68192, 52.465343], [-126.682332, 52.465659], [-126.682754, 52.465847], [-126.682911, 52.466112], [-126.682352, 52.46696], [-126.682445, 52.467472], [-126.68278, 52.468186], [-126.682738, 52.46882], [-126.682493, 52.46943], [-126.681269, 52.471183], [-126.681128, 52.472179], [-126.681178, 52.473627], [-126.681638, 52.474872], [-126.681814, 52.476192], [-126.681761, 52.476722], [-126.682129, 52.477611], [-126.681944, 52.478178], [-126.68107, 52.478675], [-126.680891, 52.479392], [-126.680357, 52.479743], [-126.680164, 52.480247], [-126.679972, 52.480445], [-126.679427, 52.480878], [-126.678458, 52.481459], [-126.678092, 52.48214], [-126.677571, 52.482749], [-126.677481, 52.483442], [-126.676816, 52.484409], [-126.676263, 52.484706], [-126.675227, 52.484792], [-126.67409, 52.485233], [-126.673792, 52.485618], [-126.673652, 52.486028], [-126.674254, 52.487406], [-126.674057, 52.487923], [-126.673425, 52.488334], [-126.671274, 52.489339], [-126.670655, 52.490058], [-126.670536, 52.490459], [-126.67047, 52.491789], [-126.670318, 52.492321], [-126.670091, 52.492656], [-126.669636, 52.492868], [-126.669184, 52.492875], [-126.668429, 52.492746], [-126.66804, 52.492806], [-126.667911, 52.49293], [-126.6677, 52.493479], [-126.66782, 52.494351], [-126.66766, 52.494828], [-126.667511, 52.494958], [-126.667099, 52.495029], [-126.665635, 52.495005], [-126.664909, 52.495111], [-126.664057, 52.495372], [-126.663713, 52.495628], [-126.663139, 52.496343], [-126.661006, 52.497582], [-126.660213, 52.49822], [-126.659936, 52.498678], [-126.659722, 52.499497], [-126.659804, 52.500065], [-126.660313, 52.500721], [-126.660294, 52.500865], [-126.66015, 52.500932], [-126.659624, 52.500971], [-126.659328, 52.501115], [-126.659679, 52.50201], [-126.659313, 52.503117], [-126.658817, 52.503339], [-126.658197, 52.503332], [-126.65807, 52.503386], [-126.658017, 52.503587], [-126.658336, 52.503771], [-126.659237, 52.50399], [-126.659547, 52.504154], [-126.659403, 52.504597], [-126.658724, 52.505471], [-126.658908, 52.50619], [-126.658889, 52.506598], [-126.658672, 52.506938], [-126.658088, 52.50727], [-126.657347, 52.507895], [-126.656187, 52.509218], [-126.655988, 52.50953], [-126.655877, 52.510043], [-126.655663, 52.510359], [-126.655697, 52.510904], [-126.655858, 52.511103], [-126.656082, 52.511168], [-126.657508, 52.511202], [-126.657946, 52.51189], [-126.657935, 52.51225], [-126.657639, 52.512567], [-126.656924, 52.513064], [-126.656687, 52.513551], [-126.656859, 52.514209], [-126.657422, 52.514764], [-126.657593, 52.515041], [-126.657494, 52.516576], [-126.657045, 52.517711], [-126.657128, 52.518282], [-126.657283, 52.518403], [-126.65882, 52.518809], [-126.659099, 52.519028], [-126.659225, 52.519267], [-126.65935, 52.51982], [-126.65869, 52.521056], [-126.658686, 52.523221], [-126.658831, 52.523688], [-126.659129, 52.524235], [-126.659775, 52.524698], [-126.664249, 52.526548], [-126.665892, 52.526937], [-126.666601, 52.52724], [-126.669235, 52.529237], [-126.669915, 52.529834], [-126.670811, 52.530759], [-126.670946, 52.531064], [-126.67076, 52.531363], [-126.669188, 52.531992], [-126.668849, 52.532301], [-126.668768, 52.532785], [-126.668473, 52.533198], [-126.666629, 52.534571], [-126.66634, 52.535095], [-126.666431, 52.537996], [-126.666882, 52.538775], [-126.666921, 52.539072], [-126.66659, 52.539609], [-126.665318, 52.540302], [-126.66501, 52.540562], [-126.664803, 52.541213], [-126.665216, 52.541996], [-126.665208, 52.54283], [-126.664612, 52.5436], [-126.664281, 52.543822], [-126.662505, 52.544396], [-126.661916, 52.544948], [-126.660902, 52.545302], [-126.660216, 52.54593], [-126.658901, 52.547659], [-126.658958, 52.548616], [-126.658573, 52.549014], [-126.657333, 52.549488], [-126.656724, 52.549988], [-126.655549, 52.550537], [-126.654878, 52.551056], [-126.652947, 52.552006], [-126.652085, 52.552583], [-126.651536, 52.552724], [-126.650985, 52.552753], [-126.64968, 52.553075], [-126.648773, 52.553766], [-126.648058, 52.553973], [-126.64645, 52.554763], [-126.646033, 52.554864], [-126.64511, 52.554957], [-126.644725, 52.554931], [-126.631752, 52.560845], [-126.611295, 52.56607], [-126.594642, 52.571088], [-126.582135, 52.574705], [-126.563096, 52.582809], [-126.555632, 52.590276], [-126.559108, 52.604213], [-126.55805, 52.611765], [-126.556415, 52.616476], [-126.552799, 52.619699], [-126.564781, 52.621209], [-126.5734, 52.622972], [-126.581445, 52.622781], [-126.593358, 52.620214], [-126.5903, 52.617401], [-126.586415, 52.61626], [-126.584106, 52.613322], [-126.583002, 52.610091], [-126.585262, 52.600729], [-126.591239, 52.59572], [-126.599161, 52.591661], [-126.609614, 52.589514], [-126.615551, 52.586717], [-126.621169, 52.585099], [-126.627354, 52.579553], [-126.636205, 52.578677], [-126.644311, 52.579176], [-126.646981, 52.583971], [-126.647136, 52.587873], [-126.65772, 52.593845], [-126.662866, 52.592626], [-126.675803, 52.59533], [-126.687616, 52.594912], [-126.698524, 52.592092], [-126.708209, 52.584066], [-126.704778, 52.572665], [-126.711818, 52.572718], [-126.72335, 52.573767], [-126.731602, 52.578392]]]]}, "properties": {"name": "Central Coast E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Central Coast E", "economic_region_id": "5910", "census_division_code": "5945", "census_subdivision_code": "5945014", "regional_district_aka_census_division": "Central Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.157455, 52.178063], [-128.154807, 52.172349], [-128.166603, 52.171249], [-128.166298, 52.15974], [-128.167878, 52.142563], [-128.167585, 52.139844], [-128.154975, 52.139035], [-128.144658, 52.139486], [-128.144918, 52.140015], [-128.144949, 52.140663], [-128.144754, 52.140966], [-128.144685, 52.141514], [-128.144443, 52.141899], [-128.143907, 52.142426], [-128.143033, 52.142339], [-128.142753, 52.142453], [-128.141916, 52.14261], [-128.141681, 52.142715], [-128.141428, 52.14292], [-128.141334, 52.143172], [-128.141329, 52.143577], [-128.14116, 52.14397], [-128.140641, 52.144326], [-128.140661, 52.144784], [-128.141115, 52.14629], [-128.141382, 52.147623], [-128.142179, 52.148752], [-128.142244, 52.149184], [-128.142567, 52.149833], [-128.143402, 52.151198], [-128.143335, 52.151727], [-128.143567, 52.153348], [-128.143885, 52.153512], [-128.144013, 52.153674], [-128.144411, 52.154982], [-128.144391, 52.155332], [-128.14396, 52.155697], [-128.143964, 52.156165], [-128.144093, 52.156382], [-128.144611, 52.156772], [-128.144902, 52.157646], [-128.145146, 52.157909], [-128.145144, 52.157998], [-128.144731, 52.158112], [-128.14448, 52.158255], [-128.143917, 52.15941], [-128.142844, 52.160807], [-128.143803, 52.161072], [-128.143474, 52.161533], [-128.142271, 52.161475], [-128.14232, 52.161906], [-128.142555, 52.162574], [-128.142405, 52.16429], [-128.143386, 52.165817], [-128.143731, 52.166027], [-128.144055, 52.16672], [-128.143913, 52.167331], [-128.143132, 52.168332], [-128.14313, 52.168441], [-128.14333, 52.168703], [-128.143336, 52.169089], [-128.142889, 52.169617], [-128.142849, 52.170174], [-128.142973, 52.170507], [-128.142981, 52.170876], [-128.142435, 52.171114], [-128.143039, 52.171614], [-128.142977, 52.171802], [-128.143136, 52.171901], [-128.14347, 52.171994], [-128.143792, 52.172014], [-128.143951, 52.172097], [-128.14392, 52.172178], [-128.143468, 52.1722], [-128.143394, 52.172255], [-128.143419, 52.172353], [-128.143752, 52.172652], [-128.143715, 52.173048], [-128.143684, 52.173146], [-128.143403, 52.17328], [-128.143161, 52.173629], [-128.143466, 52.173756], [-128.143594, 52.173964], [-128.14362, 52.17418], [-128.143419, 52.174673], [-128.143816, 52.175351], [-128.143537, 52.175375], [-128.142604, 52.175251], [-128.142077, 52.175338], [-128.14181, 52.175489], [-128.141369, 52.176331], [-128.141499, 52.176403], [-128.141687, 52.176744], [-128.157455, 52.178063]]]]}, "properties": {"name": "Bella Bella 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Bella Bella 1", "economic_region_id": "5910", "census_division_code": "5945", "census_subdivision_code": "5945801", "regional_district_aka_census_division": "Central Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.693628, 52.366507], [-126.694047, 52.392617], [-126.738142, 52.393526], [-126.748277, 52.393574], [-126.76588, 52.39427], [-126.76673, 52.394351], [-126.767608, 52.384178], [-126.767241, 52.383037], [-126.766607, 52.381638], [-126.766619, 52.380602], [-126.766266, 52.380403], [-126.765433, 52.379731], [-126.764972, 52.379578], [-126.764387, 52.379208], [-126.764041, 52.379065], [-126.763803, 52.378855], [-126.76358, 52.378023], [-126.762065, 52.377473], [-126.761874, 52.377496], [-126.760837, 52.377072], [-126.758226, 52.375808], [-126.757042, 52.375408], [-126.754562, 52.374777], [-126.753563, 52.374409], [-126.753559, 52.37098], [-126.753392, 52.37003], [-126.753294, 52.369605], [-126.752565, 52.369364], [-126.752766, 52.362673], [-126.744677, 52.361875], [-126.741387, 52.361834], [-126.738353, 52.362583], [-126.733636, 52.362375], [-126.733641, 52.360429], [-126.721675, 52.359798], [-126.713702, 52.36013], [-126.701831, 52.359899], [-126.697517, 52.36027], [-126.692757, 52.360251], [-126.693628, 52.366507]]]]}, "properties": {"name": "Bella Coola 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Bella Coola 1", "economic_region_id": "5910", "census_division_code": "5945", "census_subdivision_code": "5945802", "regional_district_aka_census_division": "Central Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.249931, 51.685843], [-127.249967, 51.681047], [-127.249844, 51.679805], [-127.249585, 51.679807], [-127.249336, 51.679921], [-127.247733, 51.680966], [-127.246131, 51.681609], [-127.245839, 51.681676], [-127.245741, 51.68163], [-127.245745, 51.681503], [-127.245576, 51.681402], [-127.245272, 51.681371], [-127.24498, 51.681465], [-127.244619, 51.681461], [-127.244031, 51.681317], [-127.242392, 51.681049], [-127.241074, 51.680706], [-127.240383, 51.680588], [-127.239634, 51.68018], [-127.23862, 51.679868], [-127.235976, 51.67937], [-127.234302, 51.679282], [-127.232508, 51.679282], [-127.229734, 51.679574], [-127.226368, 51.67946], [-127.2249, 51.679284], [-127.221846, 51.678608], [-127.220475, 51.678111], [-127.218959, 51.677719], [-127.216703, 51.677289], [-127.215036, 51.677057], [-127.213862, 51.676717], [-127.212004, 51.675834], [-127.211431, 51.675654], [-127.210814, 51.675536], [-127.209545, 51.675445], [-127.209061, 51.674274], [-127.207444, 51.673905], [-127.206199, 51.673918], [-127.204908, 51.674055], [-127.202277, 51.674566], [-127.201198, 51.674891], [-127.172425, 51.674203], [-127.173152, 51.678715], [-127.173847, 51.678826], [-127.175514, 51.680163], [-127.175519, 51.689479], [-127.175688, 51.691367], [-127.208669, 51.6915], [-127.210422, 51.685918], [-127.249931, 51.685843]]]]}, "properties": {"name": "Katit 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Vancouver Island/Coast", "census_subdivision": "Katit 1", "economic_region_id": "5910", "census_division_code": "5945", "census_subdivision_code": "5945803", "regional_district_aka_census_division": "Central Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.258799, 54.253822], [-130.285871, 54.249627], [-130.288559, 54.249141], [-130.289439, 54.241501], [-130.288674, 54.241494], [-130.288738, 54.240838], [-130.28839, 54.240257], [-130.287129, 54.239492], [-130.286891, 54.239031], [-130.287101, 54.238277], [-130.285704, 54.234738], [-130.285369, 54.232857], [-130.286014, 54.232126], [-130.289432, 54.232026], [-130.292408, 54.231364], [-130.296147, 54.23174], [-130.29672, 54.232421], [-130.296577, 54.230024], [-130.295438, 54.224945], [-130.290478, 54.21406], [-130.30643, 54.201489], [-130.299577, 54.196332], [-130.296293, 54.193624], [-130.293467, 54.192065], [-130.289661, 54.190666], [-130.287127, 54.190207], [-130.28367, 54.189913], [-130.281123, 54.190259], [-130.278691, 54.191004], [-130.277453, 54.191681], [-130.275774, 54.192981], [-130.275, 54.19436], [-130.274881, 54.196214], [-130.275046, 54.197835], [-130.275396, 54.199441], [-130.274064, 54.199178], [-130.273042, 54.199175], [-130.272487, 54.199547], [-130.272453, 54.200301], [-130.269361, 54.198731], [-130.266077, 54.197684], [-130.260959, 54.196636], [-130.256266, 54.196009], [-130.252752, 54.195796], [-130.250655, 54.195575], [-130.247618, 54.194606], [-130.244309, 54.193835], [-130.241061, 54.193545], [-130.232486, 54.193682], [-130.228681, 54.193438], [-130.225227, 54.192459], [-130.214306, 54.188857], [-130.208315, 54.18724], [-130.204263, 54.185672], [-130.195451, 54.181486], [-130.189491, 54.179294], [-130.180151, 54.175558], [-130.171056, 54.170509], [-130.16182, 54.165872], [-130.157643, 54.163465], [-130.14661, 54.155878], [-130.135821, 54.148193], [-130.133471, 54.147065], [-130.132324, 54.146733], [-130.127818, 54.148547], [-130.126114, 54.148932], [-130.124158, 54.149687], [-130.123472, 54.149829], [-130.122324, 54.149804], [-130.12197, 54.150328], [-130.121745, 54.150501], [-130.120806, 54.150842], [-130.11974, 54.151122], [-130.115546, 54.151701], [-130.114227, 54.152135], [-130.111987, 54.153153], [-130.11146, 54.153464], [-130.111419, 54.153626], [-130.110394, 54.154283], [-130.109737, 54.154918], [-130.108956, 54.15549], [-130.107702, 54.156141], [-130.106943, 54.156363], [-130.106773, 54.156346], [-130.106641, 54.156537], [-130.105301, 54.15743], [-130.104365, 54.159011], [-130.104038, 54.159383], [-130.104025, 54.159537], [-130.103713, 54.159844], [-130.103332, 54.160522], [-130.102668, 54.160878], [-130.102253, 54.161385], [-130.102105, 54.162178], [-130.101676, 54.162757], [-130.101253, 54.163516], [-130.101226, 54.163714], [-130.10074, 54.164383], [-130.10032, 54.164773], [-130.100077, 54.165433], [-130.099423, 54.166122], [-130.09912, 54.166313], [-130.098406, 54.166517], [-130.098231, 54.166694], [-130.093314, 54.16475], [-130.091788, 54.16556], [-130.086011, 54.16729], [-130.07799, 54.169807], [-130.072319, 54.170608], [-130.06748, 54.170955], [-130.062207, 54.170411], [-130.054715, 54.168571], [-130.049073, 54.168056], [-130.044513, 54.168468], [-130.041048, 54.168263], [-130.034637, 54.166223], [-130.029909, 54.165756], [-130.026498, 54.165942], [-130.02197, 54.166813], [-130.017662, 54.168305], [-130.015106, 54.169745], [-130.01229, 54.171998], [-130.009087, 54.173401], [-130.005208, 54.174484], [-130.001117, 54.175947], [-129.994192, 54.179432], [-129.989556, 54.185381], [-129.988428, 54.186945], [-129.984627, 54.189787], [-129.979389, 54.19234], [-129.97291, 54.194047], [-129.965002, 54.195913], [-129.944208, 54.196362], [-129.948597, 54.201864], [-129.949828, 54.202591], [-129.949845, 54.207374], [-129.963935, 54.207718], [-129.968323, 54.211453], [-129.971065, 54.211659], [-129.971391, 54.219192], [-129.976849, 54.219355], [-129.97603, 54.222442], [-129.975825, 54.224477], [-129.976527, 54.23031], [-129.966449, 54.230608], [-129.965959, 54.24437], [-129.958379, 54.244394], [-129.958239, 54.261384], [-129.989513, 54.260335], [-129.999403, 54.259942], [-130.101737, 54.253524], [-130.120858, 54.252405], [-130.166556, 54.249549], [-130.167956, 54.249432], [-130.16781, 54.24898], [-130.168311, 54.248901], [-130.170134, 54.248263], [-130.170701, 54.248177], [-130.171187, 54.248001], [-130.172329, 54.247748], [-130.1728, 54.247563], [-130.173457, 54.247413], [-130.174333, 54.246946], [-130.174667, 54.246843], [-130.175434, 54.246846], [-130.175836, 54.246932], [-130.176086, 54.247073], [-130.176344, 54.247501], [-130.176445, 54.248373], [-130.176805, 54.248575], [-130.177177, 54.248698], [-130.180198, 54.248632], [-130.180892, 54.248779], [-130.181706, 54.248816], [-130.182616, 54.24896], [-130.183171, 54.248981], [-130.184887, 54.248928], [-130.185634, 54.248759], [-130.187718, 54.248658], [-130.188576, 54.248568], [-130.188734, 54.24923], [-130.189546, 54.249193], [-130.19053, 54.248976], [-130.191103, 54.249032], [-130.191766, 54.249429], [-130.192627, 54.250559], [-130.194488, 54.2516], [-130.194843, 54.257023], [-130.201373, 54.25712], [-130.207236, 54.262425], [-130.246596, 54.261934], [-130.246314, 54.25677], [-130.258799, 54.253822]]]]}, "properties": {"name": "Port Edward", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Port Edward", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947007", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.236157, 54.382648], [-130.253239, 54.384361], [-130.2835, 54.338578], [-130.303841, 54.332312], [-130.309232, 54.330721], [-130.33548, 54.323318], [-130.365496, 54.314414], [-130.365383, 54.273709], [-130.359917, 54.266992], [-130.350759, 54.25536], [-130.350806, 54.24514], [-130.350552, 54.237221], [-130.348647, 54.200985], [-130.30643, 54.201489], [-130.290478, 54.21406], [-130.295438, 54.224945], [-130.296577, 54.230024], [-130.29672, 54.232421], [-130.296147, 54.23174], [-130.292408, 54.231364], [-130.289432, 54.232026], [-130.286014, 54.232126], [-130.285369, 54.232857], [-130.285704, 54.234738], [-130.287101, 54.238277], [-130.286891, 54.239031], [-130.287129, 54.239492], [-130.28839, 54.240257], [-130.288738, 54.240838], [-130.288674, 54.241494], [-130.289439, 54.241501], [-130.288559, 54.249141], [-130.285871, 54.249627], [-130.258799, 54.253822], [-130.246314, 54.25677], [-130.246596, 54.261934], [-130.246286, 54.299394], [-130.249239, 54.305564], [-130.255569, 54.310897], [-130.253429, 54.320464], [-130.252052, 54.320352], [-130.252057, 54.319652], [-130.25155, 54.319311], [-130.251173, 54.318947], [-130.251142, 54.318656], [-130.236696, 54.317272], [-130.236452, 54.329752], [-130.237406, 54.328737], [-130.237691, 54.328545], [-130.238953, 54.328011], [-130.240144, 54.327234], [-130.2406, 54.327005], [-130.242042, 54.326424], [-130.245289, 54.325483], [-130.2459, 54.325369], [-130.246532, 54.325362], [-130.247117, 54.32541], [-130.247804, 54.325753], [-130.248026, 54.325967], [-130.248174, 54.326334], [-130.248302, 54.32644], [-130.248992, 54.326405], [-130.249143, 54.326333], [-130.249335, 54.326079], [-130.249637, 54.325906], [-130.251383, 54.325124], [-130.251607, 54.324941], [-130.251873, 54.324543], [-130.25197, 54.324191], [-130.252449, 54.323799], [-130.252874, 54.323615], [-130.253118, 54.323577], [-130.253444, 54.32361], [-130.253585, 54.323698], [-130.253635, 54.323878], [-130.253319, 54.324078], [-130.253128, 54.324359], [-130.253416, 54.324256], [-130.255047, 54.324285], [-130.255306, 54.324211], [-130.25632, 54.323697], [-130.256481, 54.323362], [-130.256544, 54.32293], [-130.256831, 54.322738], [-130.257061, 54.322781], [-130.257363, 54.323093], [-130.257368, 54.324206], [-130.257504, 54.324637], [-130.257771, 54.324867], [-130.258403, 54.324879], [-130.259273, 54.325193], [-130.259876, 54.325332], [-130.26068, 54.325725], [-130.261365, 54.327616], [-130.261024, 54.327629], [-130.260527, 54.327966], [-130.260003, 54.327991], [-130.259684, 54.328083], [-130.259338, 54.328303], [-130.258952, 54.328757], [-130.258705, 54.328768], [-130.258403, 54.328915], [-130.258406, 54.328986], [-130.258129, 54.328989], [-130.258076, 54.328828], [-130.258554, 54.328311], [-130.258568, 54.327763], [-130.258771, 54.327262], [-130.252158, 54.327042], [-130.251943, 54.326313], [-130.2514, 54.326686], [-130.251058, 54.327059], [-130.250882, 54.327411], [-130.250245, 54.328154], [-130.250029, 54.328624], [-130.249047, 54.32974], [-130.24852, 54.3306], [-130.248115, 54.330999], [-130.247435, 54.331896], [-130.247106, 54.332655], [-130.24684, 54.333008], [-130.246257, 54.333581], [-130.245952, 54.333673], [-130.2452, 54.334264], [-130.244992, 54.334492], [-130.24497, 54.334734], [-130.244836, 54.334917], [-130.244563, 54.335045], [-130.243963, 54.335607], [-130.243617, 54.335782], [-130.2432, 54.336227], [-130.243175, 54.33646], [-130.242847, 54.336834], [-130.242757, 54.336888], [-130.242527, 54.336872], [-130.242351, 54.336675], [-130.241852, 54.33696], [-130.24142, 54.336919], [-130.241076, 54.336734], [-130.240385, 54.336795], [-130.239767, 54.33717], [-130.239097, 54.337923], [-130.2379, 54.339023], [-130.237485, 54.339531], [-130.236291, 54.339535], [-130.236157, 54.382648]]]]}, "properties": {"name": "Prince Rupert", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Prince Rupert", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947012", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.98889, 54.702815], [-130.997345, 54.696578], [-131.017671, 54.683895], [-131.034158, 54.676731], [-131.05761, 54.662154], [-131.096042, 54.638925], [-131.108714, 54.617783], [-131.110798, 54.597739], [-131.108902, 54.579732], [-131.103549, 54.574226], [-131.059384, 54.552188], [-131.04938, 54.540893], [-131.039055, 54.511456], [-131.039536, 54.499008], [-131.029269, 54.484965], [-131.014588, 54.44381], [-130.992944, 54.418936], [-130.986611, 54.407266], [-130.976835, 54.397217], [-130.973857, 54.363423], [-130.971499, 54.320413], [-130.969545, 54.291285], [-130.969628, 54.290708], [-130.748657, 54.289102], [-130.661125, 54.287202], [-130.640158, 54.287232], [-130.627253, 54.28462], [-130.620631, 54.281017], [-130.602079, 54.270712], [-130.583254, 54.258429], [-130.573233, 54.248171], [-130.565266, 54.241442], [-130.550726, 54.233653], [-130.532108, 54.226906], [-130.509751, 54.22418], [-130.500303, 54.224135], [-130.47573, 54.20977], [-130.446841, 54.198153], [-130.418842, 54.192915], [-130.391588, 54.18966], [-130.363802, 54.190806], [-130.348647, 54.200985], [-130.350552, 54.237221], [-130.350806, 54.24514], [-130.350759, 54.25536], [-130.359917, 54.266992], [-130.365383, 54.273709], [-130.365496, 54.314414], [-130.33548, 54.323318], [-130.309232, 54.330721], [-130.303841, 54.332312], [-130.2835, 54.338578], [-130.253239, 54.384361], [-130.236157, 54.382648], [-130.236291, 54.339535], [-130.237485, 54.339531], [-130.2379, 54.339023], [-130.239097, 54.337923], [-130.239767, 54.33717], [-130.240385, 54.336795], [-130.241076, 54.336734], [-130.24142, 54.336919], [-130.241852, 54.33696], [-130.242351, 54.336675], [-130.242527, 54.336872], [-130.242757, 54.336888], [-130.242847, 54.336834], [-130.243175, 54.33646], [-130.2432, 54.336227], [-130.243617, 54.335782], [-130.243963, 54.335607], [-130.244563, 54.335045], [-130.244836, 54.334917], [-130.24497, 54.334734], [-130.244992, 54.334492], [-130.2452, 54.334264], [-130.245952, 54.333673], [-130.246257, 54.333581], [-130.24684, 54.333008], [-130.247106, 54.332655], [-130.247435, 54.331896], [-130.248115, 54.330999], [-130.24852, 54.3306], [-130.249047, 54.32974], [-130.250029, 54.328624], [-130.250245, 54.328154], [-130.250882, 54.327411], [-130.251058, 54.327059], [-130.2514, 54.326686], [-130.251943, 54.326313], [-130.252158, 54.327042], [-130.258771, 54.327262], [-130.258568, 54.327763], [-130.258554, 54.328311], [-130.258076, 54.328828], [-130.258129, 54.328989], [-130.258406, 54.328986], [-130.258403, 54.328915], [-130.258705, 54.328768], [-130.258952, 54.328757], [-130.259338, 54.328303], [-130.259684, 54.328083], [-130.260003, 54.327991], [-130.260527, 54.327966], [-130.261024, 54.327629], [-130.261365, 54.327616], [-130.26068, 54.325725], [-130.259876, 54.325332], [-130.259273, 54.325193], [-130.258403, 54.324879], [-130.257771, 54.324867], [-130.257504, 54.324637], [-130.257368, 54.324206], [-130.257363, 54.323093], [-130.257061, 54.322781], [-130.256831, 54.322738], [-130.256544, 54.32293], [-130.256481, 54.323362], [-130.25632, 54.323697], [-130.255306, 54.324211], [-130.255047, 54.324285], [-130.253416, 54.324256], [-130.253128, 54.324359], [-130.253319, 54.324078], [-130.253635, 54.323878], [-130.253585, 54.323698], [-130.253444, 54.32361], [-130.253118, 54.323577], [-130.252874, 54.323615], [-130.252449, 54.323799], [-130.25197, 54.324191], [-130.251873, 54.324543], [-130.251607, 54.324941], [-130.251383, 54.325124], [-130.249637, 54.325906], [-130.249335, 54.326079], [-130.249143, 54.326333], [-130.248992, 54.326405], [-130.248302, 54.32644], [-130.248174, 54.326334], [-130.248026, 54.325967], [-130.247804, 54.325753], [-130.247117, 54.32541], [-130.246532, 54.325362], [-130.2459, 54.325369], [-130.245289, 54.325483], [-130.242042, 54.326424], [-130.2406, 54.327005], [-130.240144, 54.327234], [-130.238953, 54.328011], [-130.237691, 54.328545], [-130.237406, 54.328737], [-130.236452, 54.329752], [-130.236696, 54.317272], [-130.251142, 54.318656], [-130.251173, 54.318947], [-130.25155, 54.319311], [-130.252057, 54.319652], [-130.252052, 54.320352], [-130.253429, 54.320464], [-130.255569, 54.310897], [-130.249239, 54.305564], [-130.246286, 54.299394], [-130.246596, 54.261934], [-130.207236, 54.262425], [-130.201373, 54.25712], [-130.194843, 54.257023], [-130.194488, 54.2516], [-130.192627, 54.250559], [-130.191766, 54.249429], [-130.191103, 54.249032], [-130.19053, 54.248976], [-130.189546, 54.249193], [-130.188734, 54.24923], [-130.188576, 54.248568], [-130.187718, 54.248658], [-130.185634, 54.248759], [-130.184887, 54.248928], [-130.183171, 54.248981], [-130.182616, 54.24896], [-130.181706, 54.248816], [-130.180892, 54.248779], [-130.180198, 54.248632], [-130.177177, 54.248698], [-130.176805, 54.248575], [-130.176445, 54.248373], [-130.176344, 54.247501], [-130.176086, 54.247073], [-130.175836, 54.246932], [-130.175281, 54.246838], [-130.174577, 54.246853], [-130.173457, 54.247413], [-130.1728, 54.247563], [-130.172329, 54.247748], [-130.171187, 54.248001], [-130.170701, 54.248177], [-130.170134, 54.248263], [-130.168311, 54.248901], [-130.16781, 54.24898], [-130.167956, 54.249432], [-130.166556, 54.249549], [-130.120858, 54.252405], [-130.101737, 54.253524], [-129.999403, 54.259942], [-129.989513, 54.260335], [-129.958239, 54.261384], [-129.958379, 54.244394], [-129.965959, 54.24437], [-129.966449, 54.230608], [-129.976527, 54.23031], [-129.975825, 54.224477], [-129.97603, 54.222442], [-129.976849, 54.219355], [-129.971391, 54.219192], [-129.971065, 54.211659], [-129.968323, 54.211453], [-129.963935, 54.207718], [-129.949845, 54.207374], [-129.949828, 54.202591], [-129.948597, 54.201864], [-129.944208, 54.196362], [-129.965002, 54.195913], [-129.97291, 54.194047], [-129.979389, 54.19234], [-129.984627, 54.189787], [-129.988428, 54.186945], [-129.989556, 54.185381], [-129.994192, 54.179432], [-130.001117, 54.175947], [-130.005208, 54.174484], [-130.009087, 54.173401], [-130.01229, 54.171998], [-130.015106, 54.169745], [-130.017662, 54.168305], [-130.02197, 54.166813], [-130.026498, 54.165942], [-130.029909, 54.165756], [-130.034637, 54.166223], [-130.041048, 54.168263], [-130.044513, 54.168468], [-130.049073, 54.168056], [-130.054715, 54.168571], [-130.062207, 54.170411], [-130.06748, 54.170955], [-130.072319, 54.170608], [-130.07799, 54.169807], [-130.086011, 54.16729], [-130.091788, 54.16556], [-130.093314, 54.16475], [-130.064491, 54.153373], [-130.062806, 54.154422], [-130.043335, 54.158362], [-130.025933, 54.155818], [-130.002297, 54.158244], [-129.986289, 54.163605], [-129.964001, 54.179591], [-129.946563, 54.190451], [-129.890981, 54.213674], [-129.855569, 54.223768], [-129.792623, 54.218478], [-129.738928, 54.215472], [-129.677315, 54.195985], [-129.642688, 54.182401], [-129.626415, 54.17861], [-129.591785, 54.193208], [-129.570545, 54.205161], [-129.567567, 54.207459], [-129.566738, 54.212742], [-129.564397, 54.216632], [-129.558103, 54.22001], [-129.544078, 54.219959], [-129.530622, 54.226442], [-129.521733, 54.235784], [-129.515591, 54.241641], [-129.505057, 54.238066], [-129.492863, 54.235144], [-129.487969, 54.239706], [-129.483187, 54.244788], [-129.480601, 54.245758], [-129.467838, 54.247105], [-129.449144, 54.247062], [-129.434367, 54.253806], [-129.431014, 54.256627], [-129.427474, 54.258622], [-129.423623, 54.264238], [-129.422161, 54.266202], [-129.421176, 54.266879], [-129.420073, 54.267324], [-129.418873, 54.267509], [-129.417264, 54.266947], [-129.416112, 54.266392], [-129.414149, 54.265042], [-129.413202, 54.26472], [-129.412363, 54.264681], [-129.410471, 54.265169], [-129.409661, 54.265144], [-129.40812, 54.264944], [-129.407615, 54.266045], [-129.406065, 54.266885], [-129.402908, 54.268342], [-129.402284, 54.270012], [-129.40115, 54.272281], [-129.398046, 54.274734], [-129.393537, 54.277818], [-129.38366, 54.282815], [-129.380009, 54.288083], [-129.372101, 54.291975], [-129.372033, 54.298988], [-129.371759, 54.303622], [-129.371567, 54.304671], [-129.371507, 54.306106], [-129.371136, 54.308256], [-129.371117, 54.356504], [-129.385493, 54.351216], [-129.392527, 54.350771], [-129.399212, 54.351347], [-129.409345, 54.355306], [-129.418165, 54.359773], [-129.430684, 54.364834], [-129.438696, 54.366243], [-129.446435, 54.36575], [-129.454875, 54.364547], [-129.466052, 54.365416], [-129.47566, 54.368227], [-129.486, 54.374357], [-129.496737, 54.384855], [-129.506095, 54.397483], [-129.510148, 54.406768], [-129.513859, 54.424818], [-129.51754, 54.431756], [-129.520813, 54.435261], [-129.52505, 54.438547], [-129.565148, 54.4607], [-129.581198, 54.467797], [-129.598393, 54.473269], [-129.653696, 54.487212], [-129.658194, 54.486834], [-129.675998, 54.481942], [-129.692287, 54.527263], [-129.684259, 54.531275], [-129.673226, 54.53948], [-129.663137, 54.549383], [-129.658619, 54.556878], [-129.65607, 54.568506], [-129.656058, 54.575532], [-129.658224, 54.580941], [-129.662999, 54.586214], [-129.669383, 54.590261], [-129.678368, 54.593299], [-129.687173, 54.594763], [-129.672848, 54.612987], [-129.662464, 54.620919], [-129.646048, 54.629128], [-129.625247, 54.634487], [-129.609784, 54.636949], [-129.59261, 54.6388], [-129.583752, 54.638653], [-129.575838, 54.637627], [-129.568448, 54.635605], [-129.563021, 54.632157], [-129.557348, 54.627712], [-129.553689, 54.622915], [-129.549428, 54.612606], [-129.546014, 54.602568], [-129.543983, 54.59988], [-129.541536, 54.598325], [-129.537492, 54.597391], [-129.533098, 54.597458], [-129.518299, 54.599759], [-129.501218, 54.603284], [-129.493722, 54.605654], [-129.486685, 54.609465], [-129.480648, 54.613007], [-129.474586, 54.618674], [-129.470066, 54.62738], [-129.467023, 54.635979], [-129.463938, 54.660288], [-129.474285, 54.664439], [-129.476238, 54.66496], [-129.47831, 54.664899], [-129.485697, 54.662038], [-129.486787, 54.661131], [-129.488058, 54.659917], [-129.490616, 54.659583], [-129.493297, 54.659584], [-129.499142, 54.658622], [-129.500358, 54.658287], [-129.513005, 54.658441], [-129.522228, 54.661832], [-129.530915, 54.667368], [-129.542252, 54.671862], [-129.552376, 54.677025], [-129.566973, 54.680302], [-129.582991, 54.681596], [-129.631365, 54.686411], [-129.665154, 54.689315], [-129.68434, 54.695412], [-129.689622, 54.705797], [-129.689782, 54.713664], [-129.692249, 54.723249], [-129.69672, 54.731041], [-129.70114, 54.736433], [-129.707474, 54.740508], [-129.714319, 54.743659], [-129.723747, 54.742864], [-129.743329, 54.732267], [-129.753858, 54.723577], [-129.763891, 54.722839], [-129.774359, 54.727445], [-129.779498, 54.733314], [-129.795354, 54.745788], [-129.799499, 54.745191], [-129.809202, 54.740622], [-129.816901, 54.735145], [-129.823684, 54.731643], [-129.853085, 54.727681], [-129.869833, 54.725095], [-129.898741, 54.716383], [-129.919276, 54.711077], [-129.940837, 54.710272], [-129.95522, 54.712491], [-129.965433, 54.715278], [-129.973755, 54.716371], [-129.971106, 54.712706], [-129.959602, 54.706883], [-129.959937, 54.702573], [-129.965599, 54.698925], [-129.983389, 54.699142], [-130.002324, 54.701779], [-130.031603, 54.699856], [-130.049931, 54.700962], [-130.058825, 54.7032], [-130.07441, 54.710208], [-130.080838, 54.714678], [-130.08347, 54.715342], [-130.097097, 54.718359], [-130.112032, 54.719132], [-130.121803, 54.721432], [-130.128177, 54.723401], [-130.130516, 54.726992], [-130.139885, 54.730724], [-130.144887, 54.731605], [-130.156448, 54.732173], [-130.170029, 54.731934], [-130.181808, 54.732133], [-130.200184, 54.731751], [-130.203911, 54.731763], [-130.209876, 54.729919], [-130.218133, 54.725749], [-130.218464, 54.725319], [-130.221454, 54.724991], [-130.254633, 54.716211], [-130.261794, 54.713524], [-130.314777, 54.701696], [-130.359425, 54.6962], [-130.388432, 54.691864], [-130.426593, 54.692548], [-130.442766, 54.691247], [-130.484758, 54.690515], [-130.51149, 54.691839], [-130.543217, 54.690934], [-130.580966, 54.691111], [-130.605106, 54.689033], [-130.616782, 54.708499], [-130.616883, 54.708545], [-130.616855, 54.708498], [-130.98889, 54.702815]], [[-130.439067, 54.563706], [-130.438577, 54.56383], [-130.438097, 54.563844], [-130.437662, 54.563786], [-130.43713, 54.563603], [-130.436115, 54.56287], [-130.435632, 54.56275], [-130.435377, 54.562599], [-130.435008, 54.562209], [-130.435016, 54.561984], [-130.435618, 54.561491], [-130.435705, 54.561302], [-130.435395, 54.5609], [-130.434981, 54.560545], [-130.434522, 54.559806], [-130.434066, 54.559577], [-130.433694, 54.560004], [-130.433307, 54.559991], [-130.433293, 54.560467], [-130.433743, 54.560543], [-130.433886, 54.560631], [-130.433727, 54.561362], [-130.433804, 54.561773], [-130.432051, 54.561651], [-130.430783, 54.561683], [-130.430133, 54.561638], [-130.430223, 54.561547], [-130.430195, 54.559218], [-130.429314, 54.559187], [-130.429492, 54.559713], [-130.427785, 54.559557], [-130.428352, 54.558494], [-130.427845, 54.558132], [-130.427518, 54.55799], [-130.428857, 54.557859], [-130.430902, 54.557886], [-130.430659, 54.552238], [-130.399904, 54.551559], [-130.380739, 54.55068], [-130.333686, 54.550443], [-130.330157, 54.447671], [-130.328642, 54.414367], [-130.478014, 54.414669], [-130.477545, 54.415504], [-130.477532, 54.41599], [-130.477739, 54.416608], [-130.477951, 54.416893], [-130.479186, 54.417848], [-130.479539, 54.418213], [-130.479663, 54.41866], [-130.48003, 54.418979], [-130.480247, 54.419443], [-130.480291, 54.419839], [-130.480422, 54.420017], [-130.48042, 54.420439], [-130.481163, 54.42132], [-130.481234, 54.421607], [-130.481576, 54.422151], [-130.482212, 54.422692], [-130.483464, 54.423189], [-130.484313, 54.423636], [-130.484967, 54.423817], [-130.485891, 54.424264], [-130.485896, 54.424381], [-130.485501, 54.424961], [-130.48539, 54.4257], [-130.485822, 54.426629], [-130.486237, 54.427002], [-130.486736, 54.427729], [-130.477331, 54.427715], [-130.478168, 54.441667], [-130.480464, 54.441613], [-130.480296, 54.441771], [-130.479029, 54.442585], [-130.478497, 54.443185], [-130.478133, 54.443387], [-130.478056, 54.44337], [-130.477648, 54.443636], [-130.477234, 54.443678], [-130.476857, 54.44352], [-130.475774, 54.442536], [-130.475491, 54.442369], [-130.474898, 54.442195], [-130.474677, 54.442064], [-130.474254, 54.441009], [-130.474028, 54.439851], [-130.47362, 54.439219], [-130.472817, 54.439237], [-130.470499, 54.439032], [-130.46936, 54.439099], [-130.46818, 54.439321], [-130.467051, 54.439657], [-130.467071, 54.43982], [-130.466764, 54.439832], [-130.46626, 54.439946], [-130.465651, 54.440214], [-130.464946, 54.440752], [-130.465336, 54.44216], [-130.46539, 54.443686], [-130.465259, 54.444344], [-130.464786, 54.444925], [-130.464712, 54.445448], [-130.464951, 54.446488], [-130.46546, 54.446922], [-130.465548, 54.447271], [-130.464557, 54.448002], [-130.464267, 54.448509], [-130.463892, 54.448828], [-130.463869, 54.449044], [-130.463987, 54.449276], [-130.463955, 54.449699], [-130.46345, 54.450263], [-130.463161, 54.450347], [-130.46238, 54.450105], [-130.461956, 54.449921], [-130.461687, 54.449718], [-130.461316, 54.449209], [-130.460366, 54.448997], [-130.460041, 54.448973], [-130.459642, 54.449023], [-130.458315, 54.449453], [-130.456575, 54.450327], [-130.455404, 54.450827], [-130.454742, 54.451303], [-130.454212, 54.451579], [-130.453339, 54.452227], [-130.45287, 54.452852], [-130.452614, 54.45353], [-130.452191, 54.454174], [-130.4516, 54.454486], [-130.451183, 54.454905], [-130.451153, 54.455803], [-130.451052, 54.456038], [-130.450398, 54.456262], [-130.450304, 54.456236], [-130.449908, 54.456385], [-130.448943, 54.456577], [-130.448469, 54.456726], [-130.448167, 54.456856], [-130.447882, 54.457101], [-130.447698, 54.457122], [-130.447217, 54.457047], [-130.446684, 54.456819], [-130.446294, 54.456725], [-130.444287, 54.456641], [-130.444005, 54.456554], [-130.443343, 54.456122], [-130.442721, 54.455994], [-130.442396, 54.455953], [-130.442057, 54.455957], [-130.44178, 54.456024], [-130.441411, 54.456001], [-130.441111, 54.455843], [-130.44087, 54.455577], [-130.440039, 54.455181], [-130.439096, 54.455103], [-130.438923, 54.455043], [-130.438761, 54.454792], [-130.438618, 54.45421], [-130.437953, 54.453741], [-130.437176, 54.453624], [-130.436065, 54.453602], [-130.435668, 54.453651], [-130.435164, 54.453811], [-130.434931, 54.453795], [-130.43483, 54.45314], [-130.434045, 54.45271], [-130.43387, 54.452532], [-130.434098, 54.451163], [-130.434595, 54.450806], [-130.43474, 54.450525], [-130.435026, 54.450316], [-130.435083, 54.450181], [-130.43488, 54.450111], [-130.434527, 54.450151], [-130.434124, 54.450561], [-130.433837, 54.450735], [-130.433512, 54.45072], [-130.433121, 54.450572], [-130.432736, 54.450577], [-130.431449, 54.45079], [-130.430692, 54.450772], [-130.430225, 54.450625], [-130.429876, 54.449927], [-130.429497, 54.449671], [-130.428875, 54.449535], [-130.428212, 54.449516], [-130.427765, 54.44954], [-130.427243, 54.449644], [-130.426997, 54.44962], [-130.426846, 54.449262], [-130.426859, 54.448813], [-130.426631, 54.448429], [-130.426472, 54.448314], [-130.426227, 54.448362], [-130.425776, 54.448691], [-130.425093, 54.448977], [-130.423009, 54.448974], [-130.421677, 54.449242], [-130.420961, 54.449476], [-130.420338, 54.449779], [-130.419927, 54.449874], [-130.419638, 54.450057], [-130.419059, 54.450262], [-130.418304, 54.450243], [-130.417218, 54.450085], [-130.416802, 54.450072], [-130.415651, 54.450283], [-130.41391, 54.45078], [-130.413649, 54.450775], [-130.412779, 54.450587], [-130.41213, 54.450577], [-130.410309, 54.451029], [-130.408394, 54.451376], [-130.406395, 54.452028], [-130.405373, 54.451922], [-130.404981, 54.451703], [-130.404465, 54.451961], [-130.403806, 54.452066], [-130.402673, 54.45235], [-130.400951, 54.452962], [-130.398555, 54.453233], [-130.397835, 54.453385], [-130.395713, 54.453995], [-130.393319, 54.454381], [-130.392453, 54.454382], [-130.391844, 54.454129], [-130.390272, 54.453716], [-130.389702, 54.453308], [-130.389252, 54.452747], [-130.38864, 54.452412], [-130.387891, 54.451756], [-130.387598, 54.451706], [-130.387344, 54.451961], [-130.387298, 54.452437], [-130.387449, 54.45275], [-130.387494, 54.453244], [-130.387979, 54.453858], [-130.388043, 54.454415], [-130.388296, 54.454583], [-130.388777, 54.454694], [-130.389304, 54.454734], [-130.389534, 54.454667], [-130.389751, 54.454683], [-130.389818, 54.454871], [-130.389653, 54.455017], [-130.388675, 54.455279], [-130.388053, 54.455574], [-130.387456, 54.455725], [-130.386318, 54.456295], [-130.386019, 54.456595], [-130.386008, 54.456704], [-130.386513, 54.457067], [-130.387328, 54.457416], [-130.38824, 54.457935], [-130.389265, 54.458131], [-130.389454, 54.458237], [-130.389488, 54.458353], [-130.389384, 54.458462], [-130.388752, 54.458461], [-130.388263, 54.458592], [-130.387812, 54.458957], [-130.38751, 54.459643], [-130.387212, 54.459881], [-130.387236, 54.460159], [-130.386744, 54.460704], [-130.386784, 54.460973], [-130.387048, 54.461492], [-130.386759, 54.46207], [-130.386396, 54.462245], [-130.386179, 54.462238], [-130.385959, 54.462141], [-130.38575, 54.461856], [-130.385705, 54.461399], [-130.38553, 54.461275], [-130.385271, 54.461359], [-130.385081, 54.461721], [-130.384774, 54.461732], [-130.384781, 54.461966], [-130.384307, 54.462987], [-130.384228, 54.463366], [-130.384937, 54.463835], [-130.385055, 54.464129], [-130.384257, 54.465163], [-130.384107, 54.465292], [-130.383755, 54.465384], [-130.383651, 54.465494], [-130.383404, 54.466404], [-130.383523, 54.466744], [-130.383483, 54.467374], [-130.383645, 54.467614], [-130.384054, 54.467835], [-130.384302, 54.467851], [-130.384469, 54.467794], [-130.384525, 54.467641], [-130.384155, 54.467187], [-130.384131, 54.466908], [-130.384351, 54.466546], [-130.385009, 54.465991], [-130.385242, 54.465548], [-130.385516, 54.465427], [-130.385689, 54.465075], [-130.3859, 54.464911], [-130.386662, 54.464642], [-130.387246, 54.464599], [-130.387861, 54.464034], [-130.38803, 54.464041], [-130.388251, 54.464165], [-130.388343, 54.464622], [-130.388632, 54.465005], [-130.388675, 54.465356], [-130.389003, 54.465908], [-130.389729, 54.466404], [-130.390068, 54.466768], [-130.390296, 54.46717], [-130.390773, 54.467569], [-130.391149, 54.467735], [-130.39141, 54.467741], [-130.392007, 54.467592], [-130.392247, 54.467408], [-130.392331, 54.46712], [-130.39215, 54.466771], [-130.390964, 54.465499], [-130.390514, 54.464911], [-130.390377, 54.464581], [-130.390323, 54.46388], [-130.390177, 54.463666], [-130.389817, 54.463473], [-130.388837, 54.463232], [-130.388271, 54.462924], [-130.388369, 54.462627], [-130.38825, 54.462313], [-130.388734, 54.462012], [-130.389228, 54.461574], [-130.389428, 54.460673], [-130.38996, 54.460451], [-130.390603, 54.460273], [-130.391003, 54.46026], [-130.391792, 54.46034], [-130.392234, 54.460173], [-130.393244, 54.459936], [-130.394605, 54.460011], [-130.395444, 54.460171], [-130.395882, 54.460374], [-130.396235, 54.460757], [-130.396369, 54.461096], [-130.396481, 54.46212], [-130.39666, 54.462369], [-130.397146, 54.462588], [-130.397439, 54.462638], [-130.399125, 54.462736], [-130.39967, 54.462846], [-130.400255, 54.462858], [-130.401025, 54.463262], [-130.401384, 54.463825], [-130.401365, 54.464121], [-130.401174, 54.464465], [-130.401126, 54.46532], [-130.401245, 54.466073], [-130.401575, 54.467147], [-130.401514, 54.467634], [-130.401225, 54.467979], [-130.391238, 54.468821], [-130.392683, 54.475655], [-130.404266, 54.474919], [-130.40391, 54.468996], [-130.404313, 54.467817], [-130.404193, 54.467459], [-130.404732, 54.466509], [-130.405238, 54.465964], [-130.405621, 54.465914], [-130.406429, 54.466039], [-130.40731, 54.466083], [-130.407678, 54.466439], [-130.407867, 54.467506], [-130.408194, 54.46806], [-130.408528, 54.468281], [-130.409165, 54.468453], [-130.410126, 54.468532], [-130.410554, 54.468419], [-130.410897, 54.4681], [-130.411005, 54.467649], [-130.411309, 54.467493], [-130.41266, 54.467297], [-130.413403, 54.467361], [-130.413702, 54.467563], [-130.41369, 54.468113], [-130.413856, 54.468425], [-130.413804, 54.468704], [-130.413524, 54.469103], [-130.413224, 54.469349], [-130.412653, 54.469338], [-130.4125, 54.469402], [-130.412298, 54.469828], [-130.412162, 54.469873], [-130.411591, 54.469836], [-130.411238, 54.469534], [-130.410926, 54.469403], [-130.410572, 54.46938], [-130.410206, 54.469519], [-130.409987, 54.469917], [-130.409613, 54.472007], [-130.40939, 54.472314], [-130.408773, 54.472744], [-130.408741, 54.47314], [-130.408881, 54.47366], [-130.409567, 54.4743], [-130.409732, 54.474576], [-130.409729, 54.474935], [-130.410154, 54.476117], [-130.41026, 54.477437], [-130.410521, 54.477812], [-130.410804, 54.477951], [-130.411752, 54.478165], [-130.41294, 54.478557], [-130.413774, 54.478609], [-130.414676, 54.478814], [-130.414823, 54.479028], [-130.414395, 54.479546], [-130.415104, 54.479969], [-130.415256, 54.479985], [-130.415378, 54.47993], [-130.415626, 54.479505], [-130.415868, 54.479313], [-130.417109, 54.478634], [-130.418102, 54.478343], [-130.418328, 54.478188], [-130.41795, 54.477958], [-130.417063, 54.477716], [-130.416535, 54.477661], [-130.415905, 54.477739], [-130.415639, 54.477608], [-130.415224, 54.476759], [-130.414786, 54.476188], [-130.414471, 54.475536], [-130.415611, 54.474562], [-130.415932, 54.474495], [-130.416289, 54.474535], [-130.417154, 54.475037], [-130.41825, 54.4755], [-130.418734, 54.475648], [-130.418981, 54.475654], [-130.419379, 54.47556], [-130.420306, 54.475163], [-130.420739, 54.475139], [-130.421167, 54.475045], [-130.421759, 54.474758], [-130.422811, 54.474837], [-130.424394, 54.474143], [-130.425401, 54.473852], [-130.426565, 54.474028], [-130.427367, 54.474045], [-130.428058, 54.473948], [-130.428524, 54.473959], [-130.428726, 54.474021], [-130.42901, 54.474214], [-130.429063, 54.474394], [-130.428904, 54.47472], [-130.428647, 54.474894], [-130.428067, 54.475529], [-130.427878, 54.475846], [-130.427844, 54.476205], [-130.428236, 54.476822], [-130.429218, 54.47796], [-130.430126, 54.47874], [-130.430518, 54.478961], [-130.430953, 54.479054], [-130.431809, 54.4797], [-130.432937, 54.480172], [-130.433084, 54.480377], [-130.433328, 54.481193], [-130.433491, 54.481424], [-130.433873, 54.481734], [-130.434858, 54.482144], [-130.434859, 54.482576], [-130.434618, 54.483244], [-130.434632, 54.483577], [-130.435245, 54.48436], [-130.435659, 54.484733], [-130.43573, 54.484966], [-130.436687, 54.485871], [-130.438159, 54.486897], [-130.438788, 54.487257], [-130.43937, 54.487548], [-130.441197, 54.488146], [-130.442891, 54.489302], [-130.443817, 54.489722], [-130.444228, 54.489997], [-130.444518, 54.490316], [-130.444624, 54.490738], [-130.444866, 54.490996], [-130.444813, 54.49132], [-130.444913, 54.491498], [-130.445296, 54.491809], [-130.445364, 54.492014], [-130.445829, 54.492512], [-130.44582, 54.492665], [-130.445417, 54.493056], [-130.444948, 54.493323], [-130.443871, 54.494343], [-130.443775, 54.494721], [-130.443126, 54.495097], [-130.443006, 54.495243], [-130.442983, 54.495432], [-130.443152, 54.495861], [-130.443764, 54.496581], [-130.444001, 54.496749], [-130.444236, 54.497259], [-130.444193, 54.497359], [-130.443254, 54.497873], [-130.442867, 54.497842], [-130.442116, 54.497554], [-130.441776, 54.497531], [-130.441409, 54.497644], [-130.440865, 54.497991], [-130.439801, 54.498067], [-130.439391, 54.498206], [-130.441646, 54.498269], [-130.443124, 54.498117], [-130.443858, 54.497929], [-130.444231, 54.497979], [-130.445602, 54.498753], [-130.446316, 54.498879], [-130.446713, 54.499144], [-130.4471, 54.499679], [-130.446999, 54.500237], [-130.446749, 54.500626], [-130.445782, 54.501249], [-130.44514, 54.501832], [-130.444988, 54.502364], [-130.444824, 54.50251], [-130.444212, 54.502661], [-130.443161, 54.502656], [-130.442607, 54.502761], [-130.442217, 54.503053], [-130.44216, 54.50363], [-130.441605, 54.503673], [-130.441242, 54.503883], [-130.440711, 54.504608], [-130.44083, 54.506198], [-130.440382, 54.506652], [-130.440298, 54.507327], [-130.440126, 54.507689], [-130.439521, 54.508065], [-130.43868, 54.508335], [-130.438563, 54.508535], [-130.43888, 54.509214], [-130.439251, 54.509641], [-130.440041, 54.510117], [-130.441336, 54.510524], [-130.442067, 54.510623], [-130.442872, 54.510254], [-130.443486, 54.510121], [-130.445112, 54.510272], [-130.446379, 54.510294], [-130.446965, 54.51025], [-130.447341, 54.510372], [-130.447592, 54.510486], [-130.447991, 54.510868], [-130.448978, 54.512104], [-130.448957, 54.512383], [-130.448776, 54.512547], [-130.448591, 54.512577], [-130.447862, 54.512433], [-130.447646, 54.512444], [-130.447022, 54.512748], [-130.446355, 54.513547], [-130.446183, 54.5139], [-130.446175, 54.514115], [-130.446557, 54.515288], [-130.44692, 54.515949], [-130.447348, 54.516268], [-130.447913, 54.516557], [-130.448407, 54.516956], [-130.449078, 54.517164], [-130.449709, 54.517524], [-130.449591, 54.517651], [-130.448844, 54.51793], [-130.448698, 54.518157], [-130.448673, 54.518805], [-130.449257, 54.519984], [-130.449304, 54.520478], [-130.44918, 54.520866], [-130.448915, 54.521246], [-130.448526, 54.52161], [-130.44801, 54.522327], [-130.447935, 54.522822], [-130.448006, 54.523046], [-130.44893, 54.524311], [-130.448833, 54.524627], [-130.449424, 54.524737], [-130.450599, 54.524768], [-130.45086, 54.524674], [-130.45105, 54.524816], [-130.450822, 54.524953], [-130.45057, 54.525254], [-130.450609, 54.525882], [-130.450024, 54.526419], [-130.449839, 54.526843], [-130.450047, 54.527461], [-130.449991, 54.528046], [-130.450733, 54.528549], [-130.450818, 54.528702], [-130.450627, 54.529001], [-130.450648, 54.529593], [-130.450406, 54.529767], [-130.449522, 54.530119], [-130.449288, 54.530922], [-130.448939, 54.531502], [-130.448222, 54.531806], [-130.448303, 54.532363], [-130.448782, 54.532752], [-130.448823, 54.533488], [-130.448693, 54.533733], [-130.448576, 54.534364], [-130.448305, 54.534547], [-130.448134, 54.534549], [-130.447757, 54.53441], [-130.447537, 54.534269], [-130.447048, 54.533547], [-130.446793, 54.53337], [-130.446324, 54.533205], [-130.446014, 54.533199], [-130.445708, 54.533266], [-130.445361, 54.533531], [-130.445081, 54.533903], [-130.444974, 54.534388], [-130.445139, 54.534629], [-130.445425, 54.534833], [-130.44516, 54.535213], [-130.445248, 54.535536], [-130.445505, 54.535811], [-130.445814, 54.535844], [-130.446106, 54.535804], [-130.446309, 54.535855], [-130.446375, 54.536385], [-130.446537, 54.53659], [-130.446707, 54.53657], [-130.447005, 54.536261], [-130.447345, 54.536248], [-130.447501, 54.536731], [-130.447331, 54.537183], [-130.446387, 54.537617], [-130.446292, 54.537959], [-130.446143, 54.538131], [-130.445185, 54.538153], [-130.444056, 54.538516], [-130.443766, 54.5387], [-130.443548, 54.53908], [-130.443233, 54.539326], [-130.442712, 54.539467], [-130.441677, 54.539461], [-130.441524, 54.539517], [-130.441361, 54.539753], [-130.441381, 54.540292], [-130.441543, 54.540505], [-130.441941, 54.540806], [-130.44204, 54.54103], [-130.441955, 54.54122], [-130.441514, 54.541423], [-130.441039, 54.541555], [-130.440708, 54.541837], [-130.440711, 54.542304], [-130.441031, 54.543056], [-130.441038, 54.54328], [-130.440598, 54.543969], [-130.440547, 54.54423], [-130.440766, 54.544767], [-130.440777, 54.545486], [-130.441076, 54.546093], [-130.440689, 54.547806], [-130.440332, 54.548277], [-130.439341, 54.549106], [-130.439529, 54.549572], [-130.439503, 54.549751], [-130.437921, 54.550508], [-130.437218, 54.551119], [-130.437152, 54.55146], [-130.437212, 54.551838], [-130.437648, 54.552399], [-130.437674, 54.552641], [-130.43744, 54.553084], [-130.437065, 54.553412], [-130.436604, 54.554352], [-130.436642, 54.554973], [-130.436449, 54.555666], [-130.436504, 54.555954], [-130.436367, 54.556404], [-130.436382, 54.556854], [-130.436067, 54.557073], [-130.435591, 54.557196], [-130.43545, 54.557593], [-130.434874, 54.557932], [-130.434235, 54.5582], [-130.434039, 54.558355], [-130.433834, 54.55869], [-130.433862, 54.559077], [-130.434373, 54.559502], [-130.434654, 54.559615], [-130.435105, 54.559655], [-130.435747, 54.559494], [-130.436138, 54.559561], [-130.436425, 54.559838], [-130.436877, 54.56082], [-130.437101, 54.561024], [-130.437494, 54.561208], [-130.438538, 54.561394], [-130.439016, 54.561389], [-130.439321, 54.561222], [-130.439553, 54.561246], [-130.439711, 54.56138], [-130.440035, 54.561332], [-130.440221, 54.561364], [-130.440456, 54.561829], [-130.440431, 54.562468], [-130.440583, 54.56287], [-130.440302, 54.563152], [-130.439067, 54.563706]], [[-130.44913, 54.404634], [-130.448087, 54.378399], [-130.400972, 54.3779], [-130.400911, 54.330166], [-130.401402, 54.330143], [-130.401843, 54.329985], [-130.403219, 54.329331], [-130.404773, 54.328459], [-130.404808, 54.328063], [-130.404708, 54.3274], [-130.404928, 54.327118], [-130.404912, 54.326623], [-130.404778, 54.32632], [-130.404733, 54.325421], [-130.404383, 54.325111], [-130.404321, 54.324608], [-130.404003, 54.324333], [-130.404009, 54.32356], [-130.403793, 54.323563], [-130.40365, 54.323852], [-130.403265, 54.323839], [-130.40278, 54.323664], [-130.402351, 54.323257], [-130.402296, 54.322977], [-130.402382, 54.322769], [-130.403147, 54.322663], [-130.403295, 54.322534], [-130.402769, 54.322415], [-130.402279, 54.321989], [-130.401808, 54.321761], [-130.40164, 54.32082], [-130.402107, 54.320608], [-130.402538, 54.320585], [-130.40282, 54.320751], [-130.403187, 54.321107], [-130.403607, 54.321256], [-130.404039, 54.321312], [-130.40456, 54.321261], [-130.404574, 54.320803], [-130.405067, 54.320815], [-130.405757, 54.321194], [-130.40661, 54.321399], [-130.406896, 54.321701], [-130.407413, 54.321939], [-130.407492, 54.322009], [-130.407519, 54.322782], [-130.407754, 54.322932], [-130.407987, 54.32301], [-130.408178, 54.322775], [-130.408562, 54.322761], [-130.409138, 54.322935], [-130.409717, 54.323232], [-130.408963, 54.323259], [-130.408905, 54.323323], [-130.409327, 54.323534], [-130.409446, 54.323838], [-130.409946, 54.324084], [-130.410253, 54.324521], [-130.410275, 54.324718], [-130.410142, 54.324873], [-130.409589, 54.324916], [-130.409751, 54.325119], [-130.409748, 54.326441], [-130.410271, 54.326867], [-130.410372, 54.327099], [-130.410135, 54.327354], [-130.409316, 54.327714], [-130.408795, 54.327774], [-130.408145, 54.328096], [-130.408117, 54.328204], [-130.407729, 54.328532], [-130.40833, 54.328552], [-130.408756, 54.328395], [-130.409016, 54.328382], [-130.409668, 54.32859], [-130.41042, 54.328951], [-130.411615, 54.329295], [-130.412072, 54.329579], [-130.412936, 54.329694], [-130.414058, 54.32969], [-130.414406, 54.329506], [-130.414459, 54.329244], [-130.41354, 54.328473], [-130.413584, 54.328409], [-130.413924, 54.328406], [-130.414208, 54.328214], [-130.414347, 54.327754], [-130.414793, 54.327767], [-130.41557, 54.327974], [-130.415844, 54.327969], [-130.416224, 54.327794], [-130.416623, 54.327808], [-130.416904, 54.327904], [-130.417147, 54.328683], [-130.417113, 54.329483], [-130.416806, 54.329945], [-130.416326, 54.330319], [-130.417121, 54.330651], [-130.41769, 54.331058], [-130.417693, 54.331607], [-130.417449, 54.332112], [-130.417209, 54.332295], [-130.41698, 54.33237], [-130.415311, 54.332515], [-130.414406, 54.332652], [-130.413679, 54.33293], [-130.413619, 54.333029], [-130.413687, 54.333155], [-130.414159, 54.333464], [-130.414343, 54.333488], [-130.416389, 54.333491], [-130.417422, 54.333596], [-130.4182, 54.333847], [-130.418982, 54.334207], [-130.420072, 54.334589], [-130.42118, 54.334622], [-130.42139, 54.334915], [-130.421643, 54.335092], [-130.421845, 54.33518], [-130.422294, 54.33521], [-130.422899, 54.335428], [-130.423011, 54.335562], [-130.42297, 54.336101], [-130.41948, 54.336143], [-130.418435, 54.336218], [-130.417949, 54.336358], [-130.41762, 54.336641], [-130.417613, 54.336902], [-130.418313, 54.337577], [-130.418322, 54.337855], [-130.41825, 54.337946], [-130.417689, 54.338187], [-130.417047, 54.338319], [-130.41654, 54.33837], [-130.414741, 54.338365], [-130.412772, 54.337875], [-130.411988, 54.337875], [-130.411927, 54.337939], [-130.41179, 54.337932], [-130.41167, 54.33761], [-130.411163, 54.337624], [-130.410894, 54.337852], [-130.410841, 54.338141], [-130.410475, 54.338235], [-130.410295, 54.338363], [-130.410272, 54.338578], [-130.409876, 54.338674], [-130.409635, 54.338856], [-130.409651, 54.339287], [-130.40989, 54.339572], [-130.410075, 54.340019], [-130.410494, 54.340554], [-130.410646, 54.340911], [-130.410571, 54.341002], [-130.410068, 54.341179], [-130.409634, 54.341516], [-130.409624, 54.341687], [-130.410149, 54.341744], [-130.41105, 54.341985], [-130.411327, 54.341999], [-130.411416, 54.341845], [-130.411445, 54.340928], [-130.412248, 54.339266], [-130.412442, 54.339092], [-130.416596, 54.339098], [-130.417169, 54.339208], [-130.417623, 54.339436], [-130.41777, 54.339641], [-130.417758, 54.339776], [-130.417563, 54.339904], [-130.416647, 54.340095], [-130.416655, 54.340329], [-130.417267, 54.34068], [-130.41741, 54.341281], [-130.417124, 54.341464], [-130.416591, 54.341615], [-130.41638, 54.341734], [-130.417398, 54.34183], [-130.418007, 54.342056], [-130.418588, 54.342426], [-130.419035, 54.342844], [-130.419218, 54.342842], [-130.419501, 54.34255], [-130.419957, 54.342402], [-130.420673, 54.34225], [-130.421335, 54.342233], [-130.421861, 54.342325], [-130.422423, 54.342579], [-130.422834, 54.342889], [-130.423068, 54.342985], [-130.423255, 54.342983], [-130.423746, 54.342573], [-130.423883, 54.341654], [-130.4225, 54.341222], [-130.422219, 54.341072], [-130.421557, 54.341062], [-130.421121, 54.340905], [-130.421041, 54.340799], [-130.421062, 54.339675], [-130.421349, 54.339537], [-130.421828, 54.339594], [-130.421955, 54.339699], [-130.422036, 54.340256], [-130.422638, 54.340716], [-130.424006, 54.340736], [-130.424617, 54.340593], [-130.424799, 54.340475], [-130.424791, 54.34025], [-130.425276, 54.340047], [-130.425248, 54.339292], [-130.425492, 54.339199], [-130.425923, 54.339212], [-130.426593, 54.339456], [-130.426735, 54.339571], [-130.426743, 54.339804], [-130.426642, 54.339977], [-130.426648, 54.341486], [-130.426873, 54.341781], [-130.427281, 54.342028], [-130.427329, 54.342503], [-130.427017, 54.342795], [-130.425851, 54.343366], [-130.423944, 54.343406], [-130.423169, 54.343667], [-130.423148, 54.343937], [-130.423315, 54.344312], [-130.423125, 54.344576], [-130.423118, 54.344836], [-130.42418, 54.34486], [-130.425265, 54.344623], [-130.426754, 54.344551], [-130.427143, 54.344662], [-130.427444, 54.344974], [-130.427743, 54.345132], [-130.428679, 54.345481], [-130.429201, 54.345474], [-130.429596, 54.34529], [-130.430143, 54.345148], [-130.431113, 54.345128], [-130.432897, 54.345574], [-130.433483, 54.345585], [-130.433828, 54.345356], [-130.433815, 54.345016], [-130.433508, 54.344597], [-130.433514, 54.344299], [-130.433764, 54.344], [-130.43377, 54.343712], [-130.433593, 54.343499], [-130.432875, 54.343148], [-130.432694, 54.342808], [-130.432471, 54.342631], [-130.432454, 54.342129], [-130.432341, 54.341959], [-130.432781, 54.341343], [-130.433259, 54.340968], [-130.433532, 54.340838], [-130.434178, 54.340787], [-130.434494, 54.340621], [-130.435721, 54.340525], [-130.436482, 54.340283], [-130.43743, 54.340119], [-130.438142, 54.339777], [-130.438208, 54.33948], [-130.438017, 54.339293], [-130.438362, 54.339074], [-130.438944, 54.338977], [-130.439375, 54.338981], [-130.439596, 54.339131], [-130.439596, 54.339203], [-130.439799, 54.339272], [-130.440247, 54.339276], [-130.440973, 54.338953], [-130.441858, 54.338278], [-130.442288, 54.337805], [-130.442573, 54.337208], [-130.442624, 54.336443], [-130.442419, 54.336346], [-130.441451, 54.336314], [-130.441152, 54.336137], [-130.44118, 54.336029], [-130.442042, 54.335659], [-130.442934, 54.335657], [-130.443583, 54.336163], [-130.444516, 54.336456], [-130.446225, 54.336472], [-130.447027, 54.336534], [-130.447549, 54.336519], [-130.448051, 54.336369], [-130.449358, 54.336389], [-130.450856, 54.336093], [-130.451998, 54.335774], [-130.452502, 54.335704], [-130.453149, 54.335706], [-130.453784, 54.335842], [-130.455876, 54.335835], [-130.456257, 54.335731], [-130.456642, 54.335727], [-130.457308, 54.335835], [-130.459399, 54.335874], [-130.459698, 54.336022], [-130.459975, 54.336037], [-130.460205, 54.336007], [-130.460502, 54.335716], [-130.46139, 54.335589], [-130.46147, 54.335731], [-130.461895, 54.335932], [-130.463104, 54.336691], [-130.463284, 54.33694], [-130.463519, 54.337081], [-130.463499, 54.338224], [-130.463587, 54.338572], [-130.463139, 54.338937], [-130.46313, 54.340834], [-130.462891, 54.341044], [-130.462876, 54.341529], [-130.462756, 54.341576], [-130.461663, 54.341589], [-130.461469, 54.341709], [-130.461473, 54.341852], [-130.461691, 54.341948], [-130.462385, 54.342003], [-130.462683, 54.342099], [-130.462763, 54.342187], [-130.462668, 54.342398], [-130.465056, 54.343296], [-130.46529, 54.343198], [-130.465567, 54.343195], [-130.465942, 54.343344], [-130.465855, 54.343912], [-130.465585, 54.34458], [-130.465263, 54.345016], [-130.465261, 54.345842], [-130.465687, 54.346161], [-130.465728, 54.346411], [-130.465577, 54.346504], [-130.465362, 54.346505], [-130.464723, 54.346262], [-130.462844, 54.346222], [-130.461833, 54.345947], [-130.461594, 54.345716], [-130.461288, 54.345711], [-130.460846, 54.345823], [-130.460516, 54.346061], [-130.460393, 54.346557], [-130.460668, 54.346887], [-130.461371, 54.347219], [-130.461516, 54.34737], [-130.461365, 54.347462], [-130.461164, 54.347465], [-130.460328, 54.347267], [-130.459788, 54.347266], [-130.459257, 54.347478], [-130.459158, 54.34775], [-130.459321, 54.347999], [-130.459681, 54.348166], [-130.460262, 54.348922], [-130.460612, 54.349224], [-130.460715, 54.349565], [-130.460556, 54.350277], [-130.460569, 54.350627], [-130.460722, 54.351039], [-130.460915, 54.351305], [-130.46126, 54.351446], [-130.461547, 54.351729], [-130.461556, 54.353302], [-130.461723, 54.353642], [-130.461741, 54.355016], [-130.462108, 54.355417], [-130.462483, 54.355592], [-130.463838, 54.356483], [-130.463909, 54.35713], [-130.464386, 54.358004], [-130.464691, 54.35836], [-130.466285, 54.359033], [-130.466887, 54.359107], [-130.467611, 54.359117], [-130.467873, 54.359095], [-130.468053, 54.358984], [-130.468376, 54.358963], [-130.468626, 54.359122], [-130.46908, 54.359772], [-130.469819, 54.360159], [-130.470294, 54.360539], [-130.470669, 54.360742], [-130.471928, 54.361086], [-130.472608, 54.361105], [-130.47298, 54.361235], [-130.473099, 54.361944], [-130.474318, 54.362864], [-130.475766, 54.363385], [-130.478957, 54.364344], [-130.479516, 54.364463], [-130.480654, 54.364458], [-130.481354, 54.364224], [-130.481896, 54.363931], [-130.482493, 54.363851], [-130.482812, 54.363703], [-130.484085, 54.363553], [-130.484405, 54.363468], [-130.487281, 54.363378], [-130.487479, 54.363385], [-130.487527, 54.363438], [-130.487541, 54.365093], [-130.487709, 54.365459], [-130.487422, 54.365588], [-130.486111, 54.365963], [-130.485391, 54.366476], [-130.48516, 54.366956], [-130.484736, 54.367104], [-130.484229, 54.367138], [-130.483077, 54.367663], [-130.481957, 54.36863], [-130.481805, 54.369063], [-130.481791, 54.37123], [-130.482448, 54.372399], [-130.483034, 54.37285], [-130.483771, 54.373641], [-130.48434, 54.374075], [-130.484428, 54.374334], [-130.484037, 54.374609], [-130.483111, 54.37498], [-130.482913, 54.375009], [-130.481261, 54.374921], [-130.479836, 54.375146], [-130.477528, 54.375165], [-130.476592, 54.375249], [-130.475966, 54.375373], [-130.475366, 54.374948], [-130.47507, 54.374863], [-130.474746, 54.374849], [-130.47428, 54.37515], [-130.47418, 54.375358], [-130.474932, 54.375719], [-130.476239, 54.376143], [-130.476237, 54.376898], [-130.475894, 54.377674], [-130.475887, 54.378735], [-130.475896, 54.379006], [-130.476294, 54.379765], [-130.476374, 54.380293], [-130.477361, 54.381198], [-130.477572, 54.38152], [-130.478018, 54.381964], [-130.478299, 54.382445], [-130.478891, 54.383095], [-130.478885, 54.383328], [-130.478684, 54.383348], [-130.477983, 54.383941], [-130.476775, 54.384621], [-130.476431, 54.384903], [-130.475584, 54.385768], [-130.475085, 54.386439], [-130.47461, 54.38738], [-130.474351, 54.388354], [-130.474262, 54.38885], [-130.474279, 54.390143], [-130.474617, 54.39058], [-130.474801, 54.390982], [-130.476042, 54.392063], [-130.476573, 54.392264], [-130.477006, 54.392339], [-130.478115, 54.392362], [-130.478514, 54.392285], [-130.47876, 54.392299], [-130.47923, 54.39295], [-130.479243, 54.39411], [-130.480086, 54.394936], [-130.480324, 54.395077], [-130.48128, 54.395981], [-130.483718, 54.39738], [-130.484986, 54.397931], [-130.485119, 54.398217], [-130.484828, 54.398678], [-130.484709, 54.39877], [-130.484249, 54.398856], [-130.484174, 54.398939], [-130.484866, 54.399729], [-130.485327, 54.400551], [-130.486488, 54.401517], [-130.486522, 54.401634], [-130.486772, 54.401765], [-130.487411, 54.401946], [-130.488244, 54.40198], [-130.48856, 54.40221], [-130.489087, 54.402293], [-130.489217, 54.402454], [-130.489256, 54.402696], [-130.490178, 54.403081], [-130.490146, 54.40344], [-130.489836, 54.403803], [-130.489525, 54.403771], [-130.489227, 54.403559], [-130.488611, 54.403566], [-130.488508, 54.403722], [-130.488091, 54.403726], [-130.487757, 54.403838], [-130.487261, 54.40415], [-130.486792, 54.404688], [-130.44913, 54.404634]], [[-130.41461, 54.315302], [-130.414273, 54.314389], [-130.413873, 54.313908], [-130.41365, 54.313749], [-130.413168, 54.313558], [-130.412235, 54.312821], [-130.411955, 54.312699], [-130.411602, 54.312695], [-130.411383, 54.312616], [-130.41036, 54.311522], [-130.410232, 54.3104], [-130.410407, 54.310147], [-130.410296, 54.310077], [-130.410321, 54.309915], [-130.410504, 54.30984], [-130.410547, 54.309714], [-130.409699, 54.309678], [-130.40968, 54.309553], [-130.409105, 54.309389], [-130.408738, 54.309016], [-130.408748, 54.308826], [-130.409083, 54.308787], [-130.409094, 54.308643], [-130.409344, 54.308308], [-130.41039, 54.308268], [-130.410365, 54.308035], [-130.409451, 54.307389], [-130.409209, 54.307069], [-130.40927, 54.307005], [-130.409791, 54.306954], [-130.409925, 54.306862], [-130.409815, 54.306307], [-130.409675, 54.30629], [-130.409118, 54.306576], [-130.407829, 54.306699], [-130.407829, 54.307085], [-130.407661, 54.307636], [-130.407656, 54.308804], [-130.407856, 54.309745], [-130.407856, 54.3106], [-130.407583, 54.310738], [-130.407559, 54.310953], [-130.406977, 54.31141], [-130.406446, 54.311676], [-130.406263, 54.311678], [-130.406069, 54.311879], [-130.405066, 54.312196], [-130.404721, 54.312443], [-130.403993, 54.312766], [-130.403519, 54.312851], [-130.403436, 54.312655], [-130.403525, 54.312546], [-130.403446, 54.312494], [-130.402425, 54.312326], [-130.402126, 54.312122], [-130.401935, 54.311854], [-130.40144, 54.311833], [-130.401238, 54.311763], [-130.40067, 54.311339], [-130.400629, 54.311007], [-130.400532, 54.310882], [-130.399752, 54.310341], [-130.40025, 54.306009], [-130.406882, 54.305946], [-130.422512, 54.305366], [-130.428785, 54.304904], [-130.450715, 54.305417], [-130.451206, 54.305878], [-130.451209, 54.306355], [-130.451641, 54.306431], [-130.452498, 54.306771], [-130.453285, 54.306815], [-130.45363, 54.307009], [-130.453617, 54.307099], [-130.453361, 54.307246], [-130.452856, 54.307332], [-130.451702, 54.307697], [-130.451218, 54.307973], [-130.451193, 54.308099], [-130.451772, 54.308371], [-130.452002, 54.308395], [-130.451994, 54.308153], [-130.45185, 54.30801], [-130.451829, 54.307839], [-130.452964, 54.307773], [-130.453197, 54.307824], [-130.453763, 54.308186], [-130.454471, 54.308204], [-130.454651, 54.308139], [-130.455021, 54.308134], [-130.455902, 54.30824], [-130.456125, 54.30848], [-130.45686, 54.308831], [-130.456886, 54.309108], [-130.457213, 54.309239], [-130.45748, 54.309435], [-130.457985, 54.310211], [-130.457661, 54.31105], [-130.456667, 54.311655], [-130.456538, 54.311881], [-130.456327, 54.31202], [-130.456349, 54.312226], [-130.456645, 54.312789], [-130.457013, 54.313143], [-130.457321, 54.313643], [-130.457325, 54.314164], [-130.457671, 54.314358], [-130.457665, 54.314663], [-130.457778, 54.314824], [-130.457781, 54.315777], [-130.45799, 54.315999], [-130.458027, 54.316637], [-130.457878, 54.316782], [-130.456728, 54.317291], [-130.456571, 54.317652], [-130.456082, 54.317685], [-130.455533, 54.317862], [-130.455171, 54.318047], [-130.45492, 54.3183], [-130.454582, 54.318323], [-130.454409, 54.318262], [-130.454072, 54.318293], [-130.453942, 54.318484], [-130.45394, 54.31887], [-130.454145, 54.319048], [-130.454135, 54.319173], [-130.453766, 54.319582], [-130.453213, 54.319643], [-130.452943, 54.319817], [-130.452885, 54.320365], [-130.452724, 54.320602], [-130.452239, 54.320823], [-130.451857, 54.320837], [-130.451689, 54.320911], [-130.451524, 54.321021], [-130.451468, 54.321191], [-130.451107, 54.321377], [-130.450939, 54.321424], [-130.450508, 54.321419], [-130.449378, 54.322089], [-130.449314, 54.322422], [-130.448304, 54.322569], [-130.447374, 54.323218], [-130.447384, 54.323541], [-130.448152, 54.324396], [-130.448643, 54.324795], [-130.448894, 54.32578], [-130.447665, 54.325822], [-130.447076, 54.326125], [-130.44675, 54.326488], [-130.446739, 54.326615], [-130.446895, 54.326712], [-130.447081, 54.326719], [-130.447275, 54.326545], [-130.447538, 54.326551], [-130.447894, 54.326628], [-130.447926, 54.326682], [-130.447917, 54.326861], [-130.447594, 54.327287], [-130.447544, 54.328097], [-130.447332, 54.32819], [-130.446368, 54.328318], [-130.445969, 54.328314], [-130.445807, 54.32809], [-130.445245, 54.327845], [-130.444964, 54.327768], [-130.444381, 54.327757], [-130.444151, 54.327805], [-130.443455, 54.328137], [-130.442891, 54.328261], [-130.442608, 54.328543], [-130.442274, 54.32869], [-130.441594, 54.328563], [-130.440706, 54.328646], [-130.438546, 54.329328], [-130.436856, 54.330274], [-130.436437, 54.330648], [-130.435626, 54.331197], [-130.435457, 54.331189], [-130.43556, 54.330623], [-130.435752, 54.330342], [-130.436291, 54.329993], [-130.436362, 54.329777], [-130.436376, 54.328851], [-130.436181, 54.328556], [-130.436238, 54.328439], [-130.437284, 54.328445], [-130.437292, 54.328264], [-130.438384, 54.328234], [-130.438549, 54.328106], [-130.438774, 54.327546], [-130.438809, 54.327232], [-130.438654, 54.32716], [-130.438561, 54.32717], [-130.438515, 54.327585], [-130.438196, 54.327741], [-130.437872, 54.3277], [-130.43762, 54.327496], [-130.437328, 54.327455], [-130.437108, 54.327341], [-130.437107, 54.326928], [-130.437322, 54.326863], [-130.43738, 54.32678], [-130.437368, 54.326484], [-130.437162, 54.32627], [-130.436915, 54.326264], [-130.436897, 54.326589], [-130.436808, 54.326706], [-130.436348, 54.326757], [-130.435971, 54.32695], [-130.435836, 54.327482], [-130.435183, 54.327741], [-130.435233, 54.327858], [-130.435561, 54.328016], [-130.435673, 54.32814], [-130.435674, 54.328572], [-130.434977, 54.328895], [-130.433813, 54.329062], [-130.433497, 54.329191], [-130.432915, 54.329288], [-130.429484, 54.329265], [-130.428983, 54.329002], [-130.428871, 54.328859], [-130.428863, 54.328626], [-130.427991, 54.328294], [-130.427581, 54.327993], [-130.42714, 54.32728], [-130.426985, 54.327273], [-130.426896, 54.327364], [-130.426788, 54.327364], [-130.426571, 54.32725], [-130.426564, 54.327071], [-130.426359, 54.32692], [-130.426049, 54.326843], [-130.425402, 54.326841], [-130.424684, 54.326518], [-130.42449, 54.326269], [-130.424496, 54.32599], [-130.424323, 54.32583], [-130.424037, 54.325141], [-130.423974, 54.324621], [-130.423787, 54.324587], [-130.422852, 54.324688], [-130.421551, 54.324424], [-130.420796, 54.324379], [-130.419561, 54.324178], [-130.418399, 54.323949], [-130.418039, 54.323801], [-130.417528, 54.323708], [-130.416535, 54.323386], [-130.415636, 54.323208], [-130.414963, 54.322856], [-130.414655, 54.322393], [-130.414647, 54.32216], [-130.414766, 54.322042], [-130.416009, 54.321523], [-130.417276, 54.321248], [-130.417927, 54.320979], [-130.41907, 54.320723], [-130.419665, 54.320519], [-130.420681, 54.31968], [-130.420767, 54.319481], [-130.420713, 54.319302], [-130.420302, 54.318974], [-130.419338, 54.318671], [-130.418647, 54.318644], [-130.418396, 54.31853], [-130.418328, 54.317874], [-130.417458, 54.317201], [-130.417135, 54.316261], [-130.417124, 54.315956], [-130.417536, 54.315412], [-130.417618, 54.315131], [-130.417405, 54.31518], [-130.41677, 54.315502], [-130.416767, 54.315852], [-130.416648, 54.315962], [-130.416394, 54.316144], [-130.41592, 54.316275], [-130.415535, 54.316244], [-130.415061, 54.315881], [-130.41461, 54.315302]]]]}, "properties": {"name": "North Coast A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "North Coast A", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947016", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.391588, 54.18966], [-130.418842, 54.192915], [-130.446841, 54.198153], [-130.47573, 54.20977], [-130.500303, 54.224135], [-130.509751, 54.22418], [-130.532108, 54.226906], [-130.550726, 54.233653], [-130.565266, 54.241442], [-130.573233, 54.248171], [-130.583254, 54.258429], [-130.602079, 54.270712], [-130.620631, 54.281017], [-130.627253, 54.28462], [-130.640158, 54.287232], [-130.661125, 54.287202], [-130.748657, 54.289102], [-130.969628, 54.290708], [-130.971309, 54.280245], [-130.985384, 54.267334], [-131.000919, 54.245638], [-130.994475, 54.232106], [-130.99062, 54.19746], [-130.987803, 54.164921], [-130.973725, 54.131477], [-130.958136, 54.095511], [-130.943687, 54.06136], [-130.928951, 54.027846], [-130.915298, 53.995032], [-130.894465, 53.966972], [-130.869928, 53.934904], [-130.845609, 53.906924], [-130.818094, 53.879651], [-130.816614, 53.878056], [-130.798685, 53.863789], [-130.756024, 53.834366], [-130.727547, 53.8166], [-130.696543, 53.800644], [-130.708579, 53.788439], [-130.71362, 53.780577], [-130.718566, 53.762092], [-130.722315, 53.756727], [-130.721865, 53.728338], [-130.724607, 53.684465], [-130.724157, 53.580927], [-130.722851, 53.469453], [-130.714011, 53.408773], [-130.709049, 53.388769], [-130.699792, 53.36644], [-130.680715, 53.342463], [-130.649533, 53.312942], [-130.605728, 53.276279], [-130.553434, 53.23926], [-130.515017, 53.214114], [-130.376299, 53.136104], [-130.289591, 53.095534], [-130.192705, 53.055287], [-130.102462, 53.028596], [-130.022652, 53.048865], [-129.949411, 53.072997], [-129.865559, 53.105374], [-129.817178, 53.126148], [-129.78104, 53.136241], [-129.718288, 53.147205], [-129.673235, 53.154253], [-129.627381, 53.171886], [-129.560824, 53.193223], [-129.517191, 53.199103], [-129.475555, 53.202328], [-129.460447, 53.204112], [-129.447, 53.207875], [-129.438375, 53.211018], [-129.433822, 53.215832], [-129.43169, 53.22232], [-129.433887, 53.230709], [-129.437621, 53.24146], [-129.432244, 53.262336], [-129.416647, 53.27556], [-129.402929, 53.283057], [-129.38869, 53.288111], [-129.338045, 53.294185], [-129.323025, 53.295568], [-129.303425, 53.302254], [-129.307163, 53.336822], [-129.301562, 53.343693], [-129.289836, 53.348047], [-129.280529, 53.348125], [-129.250191, 53.339733], [-129.219607, 53.334079], [-129.202187, 53.327301], [-129.187862, 53.342305], [-129.182715, 53.360087], [-129.19865, 53.399283], [-129.201838, 53.412088], [-129.197932, 53.478213], [-129.207802, 53.572843], [-129.21389, 53.606878], [-129.205183, 53.632686], [-129.232649, 53.631027], [-129.257898, 53.65977], [-129.294745, 53.698053], [-129.295163, 53.699251], [-129.295053, 53.700868], [-129.295391, 53.703564], [-129.294285, 53.70924], [-129.308085, 53.724217], [-129.362504, 53.78453], [-129.373484, 53.796541], [-129.37485, 53.940722], [-129.374682, 53.997563], [-129.37276, 54.178067], [-129.372101, 54.291975], [-129.380009, 54.288083], [-129.38366, 54.282815], [-129.393537, 54.277818], [-129.398046, 54.274734], [-129.40115, 54.272281], [-129.402284, 54.270012], [-129.402908, 54.268342], [-129.406065, 54.266885], [-129.407615, 54.266045], [-129.40812, 54.264944], [-129.409661, 54.265144], [-129.410471, 54.265169], [-129.412363, 54.264681], [-129.413202, 54.26472], [-129.414149, 54.265042], [-129.416112, 54.266392], [-129.417264, 54.266947], [-129.418873, 54.267509], [-129.420073, 54.267324], [-129.421176, 54.266879], [-129.422161, 54.266202], [-129.423623, 54.264238], [-129.427474, 54.258622], [-129.431014, 54.256627], [-129.434367, 54.253806], [-129.449144, 54.247062], [-129.467838, 54.247105], [-129.480601, 54.245758], [-129.483187, 54.244788], [-129.487969, 54.239706], [-129.492863, 54.235144], [-129.505057, 54.238066], [-129.515591, 54.241641], [-129.521733, 54.235784], [-129.530622, 54.226442], [-129.544078, 54.219959], [-129.558103, 54.22001], [-129.564397, 54.216632], [-129.566738, 54.212742], [-129.567567, 54.207459], [-129.570545, 54.205161], [-129.591785, 54.193208], [-129.626415, 54.17861], [-129.642688, 54.182401], [-129.677315, 54.195985], [-129.738928, 54.215472], [-129.792623, 54.218478], [-129.855569, 54.223768], [-129.890981, 54.213674], [-129.946563, 54.190451], [-129.964001, 54.179591], [-129.986289, 54.163605], [-130.002297, 54.158244], [-130.025933, 54.155818], [-130.043335, 54.158362], [-130.062806, 54.154422], [-130.064491, 54.153373], [-130.098231, 54.166694], [-130.098406, 54.166517], [-130.09912, 54.166313], [-130.099423, 54.166122], [-130.100077, 54.165433], [-130.10032, 54.164773], [-130.10074, 54.164383], [-130.101226, 54.163714], [-130.101253, 54.163516], [-130.101676, 54.162757], [-130.102105, 54.162178], [-130.102253, 54.161385], [-130.102668, 54.160878], [-130.103332, 54.160522], [-130.103713, 54.159844], [-130.104025, 54.159537], [-130.104038, 54.159383], [-130.104365, 54.159011], [-130.105301, 54.15743], [-130.106641, 54.156537], [-130.106773, 54.156346], [-130.106943, 54.156363], [-130.107702, 54.156141], [-130.108956, 54.15549], [-130.109737, 54.154918], [-130.110394, 54.154283], [-130.111419, 54.153626], [-130.11146, 54.153464], [-130.111987, 54.153153], [-130.114227, 54.152135], [-130.115546, 54.151701], [-130.11974, 54.151122], [-130.120806, 54.150842], [-130.121745, 54.150501], [-130.12197, 54.150328], [-130.122324, 54.149804], [-130.123472, 54.149829], [-130.124158, 54.149687], [-130.126114, 54.148932], [-130.127818, 54.148547], [-130.132324, 54.146733], [-130.133471, 54.147065], [-130.135821, 54.148193], [-130.14661, 54.155878], [-130.157643, 54.163465], [-130.16182, 54.165872], [-130.171056, 54.170509], [-130.180151, 54.175558], [-130.189491, 54.179294], [-130.195451, 54.181486], [-130.204263, 54.185672], [-130.208315, 54.18724], [-130.214306, 54.188857], [-130.225227, 54.192459], [-130.228681, 54.193438], [-130.232486, 54.193682], [-130.241061, 54.193545], [-130.244309, 54.193835], [-130.247618, 54.194606], [-130.250655, 54.195575], [-130.252752, 54.195796], [-130.256266, 54.196009], [-130.260959, 54.196636], [-130.266077, 54.197684], [-130.269361, 54.198731], [-130.272453, 54.200301], [-130.272487, 54.199547], [-130.273042, 54.199175], [-130.274064, 54.199178], [-130.275396, 54.199441], [-130.275046, 54.197835], [-130.274881, 54.196214], [-130.275, 54.19436], [-130.275774, 54.192981], [-130.277453, 54.191681], [-130.278691, 54.191004], [-130.281123, 54.190259], [-130.28367, 54.189913], [-130.287127, 54.190207], [-130.289661, 54.190666], [-130.293467, 54.192065], [-130.296293, 54.193624], [-130.299577, 54.196332], [-130.30643, 54.201489], [-130.348647, 54.200985], [-130.363802, 54.190806], [-130.391588, 54.18966]], [[-130.460093, 53.791921], [-130.459688, 53.792034], [-130.459245, 53.792004], [-130.458899, 53.792044], [-130.458302, 53.792338], [-130.457653, 53.792435], [-130.457052, 53.792659], [-130.455774, 53.792989], [-130.455044, 53.792962], [-130.454595, 53.793174], [-130.453637, 53.793132], [-130.453168, 53.793164], [-130.45249, 53.793307], [-130.450721, 53.793976], [-130.449839, 53.793879], [-130.448808, 53.793972], [-130.448125, 53.793972], [-130.447832, 53.793822], [-130.447496, 53.793745], [-130.44678, 53.793718], [-130.446025, 53.793808], [-130.445453, 53.793976], [-130.444921, 53.793948], [-130.444604, 53.793978], [-130.444484, 53.794052], [-130.444136, 53.794064], [-130.443886, 53.793852], [-130.443578, 53.793711], [-130.442619, 53.794102], [-130.442406, 53.794103], [-130.442267, 53.794006], [-130.442244, 53.793808], [-130.442537, 53.793463], [-130.442514, 53.793275], [-130.442246, 53.792982], [-130.441906, 53.792824], [-130.44158, 53.793026], [-130.441488, 53.793018], [-130.44099, 53.792664], [-130.440544, 53.792489], [-130.440085, 53.792405], [-130.439935, 53.792444], [-130.439951, 53.792892], [-130.439835, 53.793496], [-130.439904, 53.793693], [-130.440231, 53.793941], [-130.440374, 53.794181], [-130.440332, 53.794245], [-130.439079, 53.794889], [-130.438565, 53.794995], [-130.438125, 53.795], [-130.437478, 53.79517], [-130.437129, 53.795201], [-130.436716, 53.795107], [-130.435759, 53.795064], [-130.434996, 53.79492], [-130.434381, 53.794694], [-130.434047, 53.794698], [-130.433728, 53.795205], [-130.433953, 53.795517], [-130.433732, 53.796212], [-130.433331, 53.796873], [-130.432415, 53.796722], [-130.431737, 53.796451], [-130.429868, 53.796385], [-130.42962, 53.796261], [-130.429009, 53.796142], [-130.428636, 53.795895], [-130.428472, 53.795556], [-130.428132, 53.79537], [-130.427152, 53.795113], [-130.426487, 53.795165], [-130.426388, 53.7954], [-130.426269, 53.795447], [-130.425584, 53.795437], [-130.425155, 53.795316], [-130.425164, 53.795101], [-130.425337, 53.794883], [-130.425329, 53.794658], [-130.425221, 53.794587], [-130.424036, 53.794557], [-130.423741, 53.794335], [-130.423682, 53.794013], [-130.42321, 53.793515], [-130.422836, 53.793204], [-130.422294, 53.792888], [-130.421294, 53.792477], [-130.420927, 53.792383], [-130.418595, 53.792113], [-130.418247, 53.79173], [-130.417845, 53.791511], [-130.417555, 53.791497], [-130.417662, 53.791954], [-130.418098, 53.792254], [-130.418091, 53.792488], [-130.417748, 53.792717], [-130.417501, 53.793008], [-130.417215, 53.7931], [-130.416687, 53.793179], [-130.416056, 53.792925], [-130.415175, 53.792918], [-130.414768, 53.792526], [-130.414321, 53.792353], [-130.414094, 53.792382], [-130.413751, 53.792558], [-130.413539, 53.792551], [-130.413074, 53.792296], [-130.413263, 53.791997], [-130.414518, 53.79146], [-130.415799, 53.791176], [-130.415917, 53.791057], [-130.415667, 53.790826], [-130.414791, 53.79055], [-130.414322, 53.790564], [-130.413614, 53.79077], [-130.411834, 53.791078], [-130.411556, 53.79136], [-130.41124, 53.791472], [-130.410567, 53.791327], [-130.410176, 53.791475], [-130.409905, 53.791488], [-130.409286, 53.791153], [-130.408719, 53.790504], [-130.408586, 53.790199], [-130.408384, 53.79005], [-130.408136, 53.789936], [-130.407052, 53.789705], [-130.406969, 53.789536], [-130.407041, 53.789382], [-130.406961, 53.789302], [-130.406598, 53.789325], [-130.406398, 53.789263], [-130.406301, 53.789067], [-130.407162, 53.788482], [-130.407202, 53.788328], [-130.406934, 53.788026], [-130.406548, 53.787851], [-130.406405, 53.787646], [-130.406821, 53.787354], [-130.407212, 53.787231], [-130.407152, 53.786845], [-130.406938, 53.78675], [-130.406465, 53.786691], [-130.406398, 53.78653], [-130.406669, 53.785998], [-130.406643, 53.785656], [-130.406954, 53.785437], [-130.406745, 53.785079], [-130.407052, 53.78477], [-130.406693, 53.784415], [-130.406777, 53.784216], [-130.407109, 53.784132], [-130.408024, 53.784283], [-130.408797, 53.784678], [-130.409405, 53.78476], [-130.410007, 53.785068], [-130.411766, 53.785479], [-130.412843, 53.785431], [-130.414172, 53.786116], [-130.41522, 53.786562], [-130.416368, 53.786881], [-130.416704, 53.786941], [-130.416779, 53.786912], [-130.416729, 53.786795], [-130.416404, 53.78662], [-130.415514, 53.786342], [-130.41514, 53.786032], [-130.414807, 53.785623], [-130.414451, 53.785367], [-130.413699, 53.785115], [-130.413319, 53.785138], [-130.412751, 53.784937], [-130.412807, 53.78481], [-130.413377, 53.784598], [-130.413388, 53.784453], [-130.412747, 53.783913], [-130.412066, 53.783067], [-130.411456, 53.782075], [-130.411076, 53.782044], [-130.410184, 53.782585], [-130.409942, 53.782624], [-130.409819, 53.78259], [-130.409903, 53.782382], [-130.410317, 53.78208], [-130.410359, 53.781936], [-130.410042, 53.781967], [-130.409448, 53.782377], [-130.409296, 53.782397], [-130.408986, 53.78216], [-130.40893, 53.781899], [-130.408789, 53.781729], [-130.40857, 53.781553], [-130.408093, 53.781396], [-130.407244, 53.781425], [-130.40605, 53.781977], [-130.405717, 53.782063], [-130.405237, 53.781771], [-130.40381, 53.781267], [-130.401082, 53.780013], [-130.400366, 53.779501], [-130.400223, 53.779304], [-130.400259, 53.779025], [-130.400955, 53.778505], [-130.401879, 53.778008], [-130.401902, 53.777351], [-130.402032, 53.777108], [-130.402237, 53.776934], [-130.402555, 53.77684], [-130.402888, 53.776837], [-130.403791, 53.777059], [-130.404944, 53.777074], [-130.405412, 53.776574], [-130.405394, 53.776466], [-130.404785, 53.775924], [-130.404767, 53.775826], [-130.40532, 53.775622], [-130.405294, 53.775262], [-130.404745, 53.774739], [-130.40326, 53.773866], [-130.40307, 53.773697], [-130.403063, 53.773446], [-130.402949, 53.773241], [-130.402672, 53.7731], [-130.402639, 53.77301], [-130.402503, 53.772599], [-130.402548, 53.771196], [-130.403091, 53.769733], [-130.403296, 53.769542], [-130.403835, 53.76932], [-130.404297, 53.769018], [-130.404346, 53.768675], [-130.404564, 53.76843], [-130.405011, 53.768138], [-130.405271, 53.767794], [-130.405555, 53.767637], [-130.405853, 53.767526], [-130.406339, 53.767529], [-130.40715, 53.767708], [-130.407669, 53.767756], [-130.407951, 53.767573], [-130.408114, 53.767005], [-130.408324, 53.766958], [-130.408843, 53.767059], [-130.409025, 53.76702], [-130.409547, 53.766772], [-130.409779, 53.766463], [-130.410092, 53.766325], [-130.410116, 53.765677], [-130.409927, 53.765455], [-130.409967, 53.765274], [-130.41022, 53.76511], [-130.410265, 53.76422], [-130.410437, 53.763921], [-130.410688, 53.763729], [-130.410945, 53.763655], [-130.411144, 53.763283], [-130.411831, 53.762943], [-130.412403, 53.762846], [-130.412852, 53.762652], [-130.412661, 53.762376], [-130.41282, 53.762166], [-130.412754, 53.762006], [-130.412475, 53.761847], [-130.412362, 53.761588], [-130.412023, 53.761422], [-130.41183, 53.761118], [-130.411762, 53.760895], [-130.411935, 53.75975], [-130.41277, 53.758859], [-130.413278, 53.758585], [-130.41415, 53.758358], [-130.414161, 53.758286], [-130.413902, 53.758244], [-130.413855, 53.758173], [-130.414157, 53.75771], [-130.414452, 53.757447], [-130.415278, 53.757195], [-130.415377, 53.75696], [-130.415661, 53.756821], [-130.416746, 53.756619], [-130.417354, 53.756685], [-130.417593, 53.757022], [-130.418235, 53.757599], [-130.41893, 53.757942], [-130.419318, 53.758261], [-130.419794, 53.758848], [-130.419617, 53.759049], [-130.41813, 53.758958], [-130.417827, 53.759006], [-130.417829, 53.759096], [-130.419321, 53.759204], [-130.419431, 53.759347], [-130.419284, 53.759493], [-130.419409, 53.759617], [-130.420165, 53.75994], [-130.420781, 53.760671], [-130.420843, 53.760759], [-130.420834, 53.76094], [-130.42072, 53.761084], [-130.420754, 53.761228], [-130.420883, 53.761443], [-130.421145, 53.761593], [-130.421231, 53.761906], [-130.422346, 53.762575], [-130.422251, 53.762918], [-130.421687, 53.763266], [-130.421235, 53.763361], [-130.42076, 53.763206], [-130.420371, 53.763398], [-130.420225, 53.763535], [-130.420132, 53.763932], [-130.420751, 53.763871], [-130.421245, 53.764072], [-130.422333, 53.763978], [-130.422925, 53.763979], [-130.424225, 53.76427], [-130.42468, 53.764283], [-130.425215, 53.764411], [-130.425655, 53.764397], [-130.42584, 53.764512], [-130.426192, 53.764606], [-130.425993, 53.764986], [-130.425634, 53.765143], [-130.425401, 53.765425], [-130.425086, 53.765546], [-130.425007, 53.766284], [-130.425106, 53.766543], [-130.42513, 53.767298], [-130.425582, 53.767634], [-130.425688, 53.767624], [-130.425804, 53.767425], [-130.425823, 53.766687], [-130.426079, 53.76663], [-130.426994, 53.766772], [-130.427062, 53.766979], [-130.426782, 53.767224], [-130.426807, 53.767466], [-130.42744, 53.768268], [-130.427516, 53.768689], [-130.427461, 53.768897], [-130.426741, 53.769607], [-130.426498, 53.769555], [-130.4262, 53.76928], [-130.426004, 53.769319], [-130.425825, 53.76987], [-130.425544, 53.770125], [-130.425394, 53.770171], [-130.425109, 53.770688], [-130.42486, 53.77096], [-130.423745, 53.771593], [-130.42379, 53.771646], [-130.425437, 53.771851], [-130.426059, 53.771808], [-130.426108, 53.771475], [-130.426658, 53.770282], [-130.426802, 53.770074], [-130.427277, 53.769718], [-130.428187, 53.769285], [-130.428459, 53.769226], [-130.43011, 53.769135], [-130.430453, 53.768951], [-130.430647, 53.768014], [-130.4309, 53.767363], [-130.430932, 53.766977], [-130.431208, 53.766641], [-130.431215, 53.766425], [-130.43079, 53.766385], [-130.430665, 53.766315], [-130.429744, 53.765508], [-130.429484, 53.765431], [-130.429046, 53.764636], [-130.429077, 53.764195], [-130.429414, 53.763831], [-130.429026, 53.763135], [-130.429, 53.762397], [-130.42913, 53.762154], [-130.429533, 53.761977], [-130.429747, 53.761103], [-130.429442, 53.761107], [-130.42877, 53.761385], [-130.428495, 53.761325], [-130.428102, 53.761402], [-130.427798, 53.761396], [-130.427536, 53.761265], [-130.427405, 53.761006], [-130.426914, 53.760795], [-130.426811, 53.76094], [-130.426868, 53.761291], [-130.42624, 53.76155], [-130.425377, 53.76156], [-130.424585, 53.761489], [-130.423897, 53.761353], [-130.422684, 53.760882], [-130.422189, 53.7606], [-130.421638, 53.760022], [-130.421656, 53.75968], [-130.42141, 53.758659], [-130.421281, 53.758444], [-130.421127, 53.758384], [-130.420977, 53.758412], [-130.420838, 53.7588], [-130.420336, 53.758761], [-130.419951, 53.758559], [-130.4194, 53.757541], [-130.419457, 53.757432], [-130.419985, 53.757327], [-130.420133, 53.757226], [-130.419757, 53.756871], [-130.419341, 53.756652], [-130.41933, 53.756346], [-130.41891, 53.75601], [-130.418752, 53.755409], [-130.418884, 53.755228], [-130.419448, 53.75487], [-130.419719, 53.754822], [-130.420209, 53.755419], [-130.420674, 53.755755], [-130.420818, 53.756383], [-130.421133, 53.756756], [-130.42139, 53.756735], [-130.421688, 53.756561], [-130.422322, 53.756464], [-130.422646, 53.75619], [-130.42327, 53.756228], [-130.423338, 53.755957], [-130.423157, 53.755122], [-130.423412, 53.75504], [-130.424544, 53.75489], [-130.424959, 53.755003], [-130.425067, 53.755082], [-130.425236, 53.755584], [-130.425467, 53.755689], [-130.42583, 53.755658], [-130.425949, 53.755575], [-130.426344, 53.755625], [-130.426867, 53.755376], [-130.427317, 53.755272], [-130.42779, 53.75531], [-130.428159, 53.755777], [-130.428309, 53.755897], [-130.428524, 53.75594], [-130.4291, 53.756364], [-130.429175, 53.75684], [-130.429599, 53.757249], [-130.430011, 53.757307], [-130.430297, 53.757249], [-130.43085, 53.757009], [-130.431291, 53.757012], [-130.432095, 53.757031], [-130.432556, 53.757159], [-130.432786, 53.757283], [-130.432913, 53.757425], [-130.432885, 53.757551], [-130.432305, 53.757854], [-130.432362, 53.758169], [-130.432181, 53.758647], [-130.432241, 53.758691], [-130.432755, 53.758586], [-130.433151, 53.758626], [-130.433427, 53.758758], [-130.43354, 53.758892], [-130.433437, 53.759009], [-130.43233, 53.759517], [-130.432305, 53.759643], [-130.432745, 53.759656], [-130.433137, 53.75957], [-130.433608, 53.759592], [-130.434449, 53.759357], [-130.434858, 53.759325], [-130.435563, 53.759102], [-130.435942, 53.759114], [-130.436876, 53.75931], [-130.437454, 53.759842], [-130.437698, 53.760306], [-130.437705, 53.76055], [-130.437452, 53.761074], [-130.437534, 53.761316], [-130.437724, 53.761484], [-130.43794, 53.761608], [-130.438275, 53.761658], [-130.439001, 53.761585], [-130.439473, 53.761607], [-130.43967, 53.761668], [-130.440244, 53.76203], [-130.440505, 53.76209], [-130.440722, 53.761835], [-130.441451, 53.761386], [-130.441696, 53.760547], [-130.441425, 53.760577], [-130.44113, 53.760851], [-130.440861, 53.760943], [-130.439733, 53.760849], [-130.439581, 53.760796], [-130.43924, 53.760603], [-130.438968, 53.760211], [-130.43923, 53.759839], [-130.439136, 53.75976], [-130.438696, 53.759765], [-130.438096, 53.75907], [-130.438195, 53.758889], [-130.439087, 53.75879], [-130.439611, 53.758595], [-130.43981, 53.758223], [-130.439704, 53.758189], [-130.439045, 53.758456], [-130.43873, 53.758515], [-130.437848, 53.758481], [-130.437661, 53.75833], [-130.437712, 53.758023], [-130.43757, 53.757908], [-130.437213, 53.757643], [-130.436644, 53.757461], [-130.436303, 53.757196], [-130.435428, 53.756945], [-130.435304, 53.756811], [-130.435278, 53.756498], [-130.434656, 53.756082], [-130.434694, 53.755884], [-130.434999, 53.755871], [-130.435083, 53.755691], [-130.434798, 53.755362], [-130.434937, 53.754947], [-130.434519, 53.754726], [-130.434438, 53.754565], [-130.434022, 53.754382], [-130.433849, 53.754214], [-130.433671, 53.753425], [-130.433492, 53.753113], [-130.433593, 53.752473], [-130.433987, 53.752009], [-130.434437, 53.751878], [-130.43443, 53.751654], [-130.434877, 53.751424], [-130.434889, 53.751351], [-130.434781, 53.75129], [-130.434172, 53.751253], [-130.433309, 53.750804], [-130.432774, 53.750209], [-130.433182, 53.749754], [-130.433721, 53.749514], [-130.434596, 53.749396], [-130.435159, 53.749478], [-130.435793, 53.74939], [-130.437189, 53.74941], [-130.437418, 53.74947], [-130.438077, 53.750099], [-130.438053, 53.75028], [-130.437698, 53.750526], [-130.437716, 53.750599], [-130.438215, 53.750548], [-130.438854, 53.750666], [-130.43892, 53.750808], [-130.438682, 53.750955], [-130.438893, 53.751331], [-130.439016, 53.751374], [-130.43921, 53.751291], [-130.439433, 53.750749], [-130.439772, 53.750421], [-130.44067, 53.750059], [-130.441009, 53.750226], [-130.441827, 53.749784], [-130.442285, 53.74987], [-130.442445, 53.750101], [-130.442872, 53.750159], [-130.443339, 53.750082], [-130.443482, 53.749819], [-130.443704, 53.749636], [-130.444185, 53.749559], [-130.4449, 53.749604], [-130.445316, 53.749779], [-130.446073, 53.749735], [-130.446808, 53.749977], [-130.447151, 53.750224], [-130.447366, 53.750734], [-130.448332, 53.751073], [-130.448465, 53.75136], [-130.448802, 53.751481], [-130.448989, 53.751632], [-130.449402, 53.752184], [-130.44965, 53.752774], [-130.449658, 53.753466], [-130.449428, 53.753819], [-130.448989, 53.754265], [-130.448858, 53.754852], [-130.448048, 53.755984], [-130.447841, 53.756625], [-130.447995, 53.756678], [-130.448323, 53.756529], [-130.448731, 53.756048], [-130.449456, 53.755518], [-130.450057, 53.754863], [-130.450767, 53.754369], [-130.451711, 53.754439], [-130.451954, 53.754835], [-130.452391, 53.754845], [-130.452705, 53.754669], [-130.452915, 53.754658], [-130.454241, 53.754795], [-130.454638, 53.754916], [-130.455143, 53.755486], [-130.455699, 53.755758], [-130.45595, 53.756005], [-130.45572, 53.756341], [-130.455301, 53.756525], [-130.454729, 53.756632], [-130.454702, 53.756713], [-130.455794, 53.756763], [-130.4573, 53.757284], [-130.457675, 53.757199], [-130.45798, 53.757195], [-130.458177, 53.757264], [-130.458283, 53.757632], [-130.458219, 53.758019], [-130.457764, 53.758914], [-130.458664, 53.759029], [-130.459046, 53.759123], [-130.459281, 53.759282], [-130.459299, 53.759426], [-130.459199, 53.759562], [-130.458829, 53.759818], [-130.459427, 53.760026], [-130.459944, 53.760074], [-130.460098, 53.760144], [-130.460307, 53.76051], [-130.460408, 53.761184], [-130.460586, 53.761523], [-130.46109, 53.761184], [-130.461436, 53.76109], [-130.461605, 53.761141], [-130.461581, 53.761349], [-130.461406, 53.761513], [-130.461366, 53.761675], [-130.461443, 53.761719], [-130.462223, 53.761493], [-130.462784, 53.76145], [-130.46321, 53.761463], [-130.463347, 53.761516], [-130.463505, 53.761702], [-130.463702, 53.762141], [-130.46325, 53.762659], [-130.462584, 53.763152], [-130.462441, 53.763378], [-130.462326, 53.763578], [-130.462337, 53.764324], [-130.462506, 53.764348], [-130.462791, 53.764283], [-130.463556, 53.763626], [-130.463826, 53.763478], [-130.463917, 53.763487], [-130.464104, 53.763682], [-130.464256, 53.764102], [-130.464393, 53.764101], [-130.464886, 53.76388], [-130.465334, 53.764108], [-130.465429, 53.764223], [-130.465376, 53.764458], [-130.465837, 53.76464], [-130.466121, 53.764484], [-130.466377, 53.764464], [-130.466664, 53.76482], [-130.467469, 53.764864], [-130.468014, 53.765253], [-130.468222, 53.765592], [-130.468576, 53.765721], [-130.468718, 53.765864], [-130.469368, 53.766207], [-130.469657, 53.766248], [-130.469403, 53.765486], [-130.469612, 53.764989], [-130.469548, 53.764882], [-130.469067, 53.764565], [-130.468984, 53.764395], [-130.469002, 53.763999], [-130.468561, 53.763528], [-130.468471, 53.762702], [-130.468555, 53.762504], [-130.46884, 53.762456], [-130.469393, 53.762592], [-130.469433, 53.762907], [-130.46964, 53.763129], [-130.469842, 53.763279], [-130.470364, 53.763471], [-130.470489, 53.763612], [-130.470503, 53.763964], [-130.470732, 53.764005], [-130.470972, 53.76394], [-130.471174, 53.764116], [-130.471683, 53.764784], [-130.471609, 53.765244], [-130.471782, 53.765395], [-130.471583, 53.765793], [-130.471604, 53.765928], [-130.471884, 53.766211], [-130.472005, 53.766183], [-130.472507, 53.765746], [-130.472581, 53.765268], [-130.472817, 53.765095], [-130.473132, 53.765001], [-130.474078, 53.765142], [-130.474544, 53.765469], [-130.474709, 53.76579], [-130.475123, 53.765973], [-130.475503, 53.765934], [-130.475764, 53.765633], [-130.476148, 53.765754], [-130.476521, 53.765579], [-130.476702, 53.765577], [-130.477057, 53.765717], [-130.477207, 53.765687], [-130.477426, 53.765461], [-130.477547, 53.765441], [-130.478183, 53.765774], [-130.478232, 53.765945], [-130.478163, 53.766107], [-130.477765, 53.766391], [-130.476552, 53.766901], [-130.475137, 53.767618], [-130.473847, 53.768057], [-130.472909, 53.768617], [-130.472152, 53.768627], [-130.472344, 53.768912], [-130.472687, 53.769168], [-130.472631, 53.769303], [-130.472395, 53.769468], [-130.472051, 53.769598], [-130.47164, 53.769568], [-130.47124, 53.769914], [-130.470261, 53.770555], [-130.470282, 53.770707], [-130.470659, 53.770649], [-130.471074, 53.770752], [-130.471543, 53.770729], [-130.471765, 53.770572], [-130.472215, 53.77046], [-130.472372, 53.770565], [-130.472478, 53.770564], [-130.473004, 53.770423], [-130.473407, 53.769833], [-130.473737, 53.769676], [-130.473904, 53.769692], [-130.474741, 53.770186], [-130.475351, 53.770736], [-130.47551, 53.770904], [-130.475459, 53.771183], [-130.475569, 53.771308], [-130.476118, 53.771355], [-130.476324, 53.771605], [-130.476282, 53.771713], [-130.475737, 53.771783], [-130.475326, 53.77176], [-130.474914, 53.771666], [-130.474738, 53.771821], [-130.474296, 53.771764], [-130.474079, 53.771677], [-130.473731, 53.771682], [-130.47377, 53.771951], [-130.473319, 53.772073], [-130.473279, 53.772236], [-130.473131, 53.772354], [-130.472413, 53.772623], [-130.471748, 53.772703], [-130.471449, 53.772851], [-130.471514, 53.772966], [-130.471864, 53.772989], [-130.47235, 53.772983], [-130.47268, 53.772881], [-130.473366, 53.772943], [-130.473597, 53.773032], [-130.473632, 53.77322], [-130.474663, 53.773161], [-130.474654, 53.773351], [-130.474491, 53.77346], [-130.47471, 53.773611], [-130.474824, 53.773871], [-130.474932, 53.773896], [-130.475519, 53.773754], [-130.475777, 53.773795], [-130.475934, 53.773892], [-130.475969, 53.774063], [-130.475363, 53.774537], [-130.475111, 53.774648], [-130.474311, 53.774802], [-130.474148, 53.774949], [-130.474169, 53.775083], [-130.474515, 53.775007], [-130.474638, 53.775041], [-130.474368, 53.775592], [-130.474124, 53.77556], [-130.474005, 53.775615], [-130.473568, 53.776142], [-130.473362, 53.776279], [-130.472984, 53.776356], [-130.472639, 53.776926], [-130.472109, 53.77696], [-130.47184, 53.777062], [-130.471538, 53.777065], [-130.470667, 53.777373], [-130.470365, 53.777377], [-130.470027, 53.777292], [-130.469695, 53.777331], [-130.469324, 53.777129], [-130.469187, 53.776699], [-130.469271, 53.776518], [-130.469806, 53.776188], [-130.469412, 53.776192], [-130.469232, 53.776258], [-130.468884, 53.776245], [-130.468725, 53.776498], [-130.468121, 53.776641], [-130.467926, 53.776634], [-130.467811, 53.776401], [-130.467411, 53.776289], [-130.467303, 53.776201], [-130.467304, 53.775778], [-130.467503, 53.77538], [-130.467739, 53.775198], [-130.467779, 53.775053], [-130.467539, 53.775101], [-130.467242, 53.77532], [-130.466524, 53.775608], [-130.46639, 53.775718], [-130.464224, 53.776265], [-130.463937, 53.77625], [-130.463351, 53.775997], [-130.462581, 53.776132], [-130.462262, 53.776137], [-130.462106, 53.775994], [-130.462305, 53.775597], [-130.461986, 53.77561], [-130.46152, 53.775759], [-130.461168, 53.775637], [-130.461133, 53.775538], [-130.461444, 53.775302], [-130.461396, 53.775212], [-130.461, 53.775199], [-130.460729, 53.775248], [-130.460479, 53.775053], [-130.460143, 53.77502], [-130.459972, 53.774897], [-130.45958, 53.77492], [-130.459435, 53.774661], [-130.458929, 53.774531], [-130.458732, 53.774561], [-130.458503, 53.774502], [-130.458069, 53.774695], [-130.45688, 53.774566], [-130.456758, 53.774486], [-130.456814, 53.774405], [-130.457853, 53.774123], [-130.458271, 53.773938], [-130.458188, 53.77375], [-130.45736, 53.773509], [-130.457405, 53.77304], [-130.457659, 53.772506], [-130.457747, 53.772002], [-130.457438, 53.772276], [-130.457182, 53.77227], [-130.457148, 53.77219], [-130.457203, 53.772028], [-130.457672, 53.771526], [-130.457681, 53.771328], [-130.457568, 53.771196], [-130.457372, 53.771197], [-130.457209, 53.771317], [-130.45686, 53.771761], [-130.456708, 53.772204], [-130.456355, 53.772532], [-130.45599, 53.772501], [-130.455713, 53.772395], [-130.455234, 53.772132], [-130.45456, 53.771529], [-130.453716, 53.77126], [-130.453338, 53.771318], [-130.453387, 53.771831], [-130.453261, 53.772129], [-130.452988, 53.772159], [-130.452577, 53.772119], [-130.452307, 53.771727], [-130.451966, 53.771542], [-130.451932, 53.771462], [-130.452205, 53.770999], [-130.45214, 53.770893], [-130.451517, 53.770847], [-130.451841, 53.770537], [-130.451792, 53.770411], [-130.451697, 53.770377], [-130.451366, 53.770435], [-130.451153, 53.770393], [-130.451089, 53.770294], [-130.450874, 53.770235], [-130.450791, 53.770037], [-130.450365, 53.769548], [-130.449984, 53.769498], [-130.449014, 53.768665], [-130.448829, 53.768568], [-130.448739, 53.768597], [-130.448754, 53.769055], [-130.448946, 53.769313], [-130.44988, 53.769985], [-130.450415, 53.771022], [-130.451283, 53.771964], [-130.451572, 53.772392], [-130.452223, 53.772842], [-130.453007, 53.77312], [-130.453319, 53.773351], [-130.454067, 53.773512], [-130.454221, 53.773591], [-130.454246, 53.773852], [-130.454133, 53.77406], [-130.453794, 53.774379], [-130.452838, 53.774822], [-130.453059, 53.775026], [-130.453029, 53.77508], [-130.452509, 53.775383], [-130.451604, 53.775528], [-130.450508, 53.775874], [-130.449498, 53.776102], [-130.448991, 53.776333], [-130.448252, 53.776468], [-130.447318, 53.776263], [-130.446209, 53.776188], [-130.4458, 53.776228], [-130.445213, 53.776397], [-130.445326, 53.776548], [-130.445727, 53.776804], [-130.446001, 53.776783], [-130.446133, 53.776619], [-130.446268, 53.776591], [-130.446725, 53.776666], [-130.446825, 53.777393], [-130.446756, 53.777574], [-130.446606, 53.777594], [-130.446374, 53.777515], [-130.446111, 53.777762], [-130.446129, 53.77787], [-130.446425, 53.778108], [-130.447042, 53.778361], [-130.44757, 53.778293], [-130.447968, 53.778387], [-130.448191, 53.778662], [-130.448806, 53.778511], [-130.448967, 53.778697], [-130.448582, 53.778991], [-130.448629, 53.779097], [-130.448965, 53.779112], [-130.449277, 53.778892], [-130.449412, 53.778908], [-130.449585, 53.779068], [-130.44977, 53.779129], [-130.449849, 53.779227], [-130.44983, 53.779542], [-130.449696, 53.77966], [-130.449427, 53.779744], [-130.449299, 53.779989], [-130.448729, 53.780203], [-130.449084, 53.780368], [-130.449325, 53.780312], [-130.449905, 53.780395], [-130.450051, 53.780258], [-130.450292, 53.780174], [-130.450085, 53.779952], [-130.45061, 53.779711], [-130.450912, 53.779673], [-130.451008, 53.779851], [-130.45095, 53.780382], [-130.451303, 53.780476], [-130.45118, 53.780901], [-130.450942, 53.781416], [-130.450793, 53.781534], [-130.450537, 53.781573], [-130.450418, 53.781647], [-130.450114, 53.782056], [-130.450223, 53.782152], [-130.45058, 53.781942], [-130.450748, 53.782011], [-130.450772, 53.782685], [-130.451226, 53.783102], [-130.45117, 53.783192], [-130.450456, 53.783211], [-130.450383, 53.783283], [-130.450439, 53.783569], [-130.45037, 53.783742], [-130.449858, 53.78391], [-130.449673, 53.783786], [-130.449693, 53.783085], [-130.449585, 53.783023], [-130.449359, 53.783053], [-130.448445, 53.784277], [-130.447833, 53.784591], [-130.446931, 53.784863], [-130.446349, 53.785148], [-130.445927, 53.785243], [-130.445698, 53.785183], [-130.44547, 53.785203], [-130.444839, 53.785813], [-130.444216, 53.786253], [-130.444235, 53.786368], [-130.44445, 53.786402], [-130.445832, 53.785999], [-130.446061, 53.78604], [-130.446128, 53.786193], [-130.44582, 53.786512], [-130.445947, 53.786671], [-130.446411, 53.786486], [-130.44679, 53.786482], [-130.447151, 53.786405], [-130.447404, 53.78625], [-130.447571, 53.786221], [-130.447742, 53.786344], [-130.447808, 53.786532], [-130.448004, 53.786512], [-130.44915, 53.785365], [-130.450008, 53.784753], [-130.450107, 53.784545], [-130.450567, 53.784198], [-130.452234, 53.783728], [-130.452691, 53.783732], [-130.453335, 53.783957], [-130.453625, 53.783954], [-130.45363, 53.783675], [-130.454253, 53.783245], [-130.455668, 53.782886], [-130.456769, 53.782729], [-130.456814, 53.782279], [-130.456459, 53.78214], [-130.456427, 53.782014], [-130.457245, 53.781556], [-130.46018, 53.780449], [-130.460942, 53.780063], [-130.461939, 53.779916], [-130.462223, 53.779814], [-130.462543, 53.77981], [-130.46288, 53.779941], [-130.463329, 53.779773], [-130.4635, 53.779448], [-130.463858, 53.779219], [-130.464461, 53.779112], [-130.464899, 53.779097], [-130.465327, 53.779119], [-130.465693, 53.779223], [-130.466916, 53.779011], [-130.467174, 53.779052], [-130.467714, 53.779261], [-130.46791, 53.77925], [-130.468051, 53.778915], [-130.468525, 53.778603], [-130.468752, 53.778573], [-130.469182, 53.77873], [-130.46976, 53.778328], [-130.470421, 53.778167], [-130.471062, 53.77824], [-130.471176, 53.778445], [-130.471707, 53.778915], [-130.471877, 53.779452], [-130.471756, 53.779831], [-130.47147, 53.779933], [-130.471046, 53.779975], [-130.470268, 53.780264], [-130.46998, 53.780302], [-130.469717, 53.780557], [-130.46982, 53.780943], [-130.46973, 53.781358], [-130.469122, 53.781769], [-130.469113, 53.782003], [-130.468612, 53.782377], [-130.467581, 53.782454], [-130.467402, 53.782545], [-130.467439, 53.782716], [-130.467643, 53.78293], [-130.466931, 53.783406], [-130.466778, 53.783767], [-130.467168, 53.784059], [-130.467201, 53.784166], [-130.467054, 53.78433], [-130.467235, 53.784723], [-130.467193, 53.784831], [-130.466868, 53.785034], [-130.46664, 53.785449], [-130.466224, 53.785716], [-130.466215, 53.785922], [-130.466497, 53.786126], [-130.466469, 53.78627], [-130.466217, 53.786398], [-130.465808, 53.786431], [-130.465442, 53.786821], [-130.465173, 53.786932], [-130.465211, 53.78758], [-130.464839, 53.788249], [-130.464798, 53.788843], [-130.464305, 53.78946], [-130.464282, 53.789668], [-130.463901, 53.790112], [-130.463711, 53.790295], [-130.462575, 53.790803], [-130.462231, 53.790916], [-130.461759, 53.790921], [-130.461191, 53.791206], [-130.460787, 53.79131], [-130.460093, 53.791921]], [[-129.268474, 53.417978], [-129.268577, 53.426947], [-129.268687, 53.427759], [-129.268252, 53.427836], [-129.267997, 53.427819], [-129.267212, 53.427631], [-129.266626, 53.427597], [-129.265419, 53.42742], [-129.264637, 53.427232], [-129.263613, 53.427154], [-129.262513, 53.427184], [-129.261628, 53.427339], [-129.260497, 53.427242], [-129.258902, 53.427228], [-129.257565, 53.427662], [-129.256736, 53.427501], [-129.255428, 53.427541], [-129.255938, 53.431248], [-129.243619, 53.430725], [-129.242883, 53.423764], [-129.243876, 53.423628], [-129.244478, 53.423626], [-129.24475, 53.423743], [-129.245023, 53.423958], [-129.246421, 53.423937], [-129.24671, 53.424098], [-129.247073, 53.424673], [-129.2473, 53.424817], [-129.248038, 53.425022], [-129.248445, 53.425066], [-129.248821, 53.425011], [-129.249046, 53.425038], [-129.249051, 53.425622], [-129.249233, 53.425847], [-129.24955, 53.426016], [-129.249894, 53.426015], [-129.25033, 53.425898], [-129.250571, 53.425735], [-129.250885, 53.425707], [-129.251927, 53.425975], [-129.25271, 53.425955], [-129.252738, 53.425821], [-129.252633, 53.425767], [-129.250961, 53.425528], [-129.250043, 53.42552], [-129.24992, 53.425153], [-129.24933, 53.424488], [-129.249345, 53.424344], [-129.249462, 53.424236], [-129.250319, 53.423893], [-129.250665, 53.423676], [-129.250964, 53.423622], [-129.251071, 53.42373], [-129.25095, 53.423856], [-129.249946, 53.42428], [-129.249782, 53.424488], [-129.249902, 53.424711], [-129.250249, 53.425035], [-129.250416, 53.425152], [-129.250658, 53.425142], [-129.251767, 53.424538], [-129.252531, 53.42379], [-129.252649, 53.423538], [-129.252649, 53.423259], [-129.252511, 53.4229], [-129.252253, 53.422658], [-129.251423, 53.42229], [-129.25112, 53.422031], [-129.25097, 53.421833], [-129.250908, 53.421464], [-129.251533, 53.420493], [-129.251453, 53.419792], [-129.251874, 53.419799], [-129.252504, 53.419393], [-129.252713, 53.419178], [-129.252936, 53.418737], [-129.253038, 53.41825], [-129.268474, 53.417978]]]]}, "properties": {"name": "North Coast C", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "North Coast C", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947021", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-132.138636, 54.034918], [-132.142235, 54.035418], [-132.143406, 54.035526], [-132.144751, 54.035747], [-132.147618, 54.036022], [-132.14884, 54.036248], [-132.152946, 54.037164], [-132.156002, 54.038054], [-132.156791, 54.038371], [-132.159303, 54.038972], [-132.163046, 54.024944], [-132.163039, 54.024344], [-132.163333, 54.024249], [-132.160239, 54.021643], [-132.167343, 54.019948], [-132.165383, 54.018946], [-132.163344, 54.017707], [-132.161422, 54.015179], [-132.160562, 54.012376], [-132.148356, 54.003781], [-132.149049, 53.999931], [-132.141289, 53.999983], [-132.104438, 54.00003], [-132.104413, 54.008447], [-132.103145, 54.008343], [-132.102828, 54.014145], [-132.094957, 54.013821], [-132.094324, 54.015005], [-132.027832, 54.016057], [-132.026928, 54.026439], [-132.026884, 54.029201], [-132.028718, 54.029382], [-132.031306, 54.029482], [-132.033037, 54.029633], [-132.036909, 54.029728], [-132.038013, 54.029683], [-132.042992, 54.029878], [-132.044452, 54.029995], [-132.049075, 54.030063], [-132.051716, 54.030281], [-132.053168, 54.030496], [-132.055165, 54.030977], [-132.055957, 54.031446], [-132.056414, 54.03232], [-132.056722, 54.03249], [-132.057025, 54.032543], [-132.057692, 54.03237], [-132.060033, 54.032113], [-132.062175, 54.032066], [-132.067624, 54.032343], [-132.068608, 54.032439], [-132.071125, 54.032483], [-132.075477, 54.032058], [-132.079577, 54.031977], [-132.081378, 54.031769], [-132.083233, 54.031662], [-132.083996, 54.031698], [-132.088052, 54.031563], [-132.089823, 54.03157], [-132.091625, 54.031802], [-132.094089, 54.03196], [-132.095993, 54.032222], [-132.096815, 54.032279], [-132.099758, 54.032332], [-132.100724, 54.032311], [-132.102598, 54.03214], [-132.104007, 54.032074], [-132.10637, 54.031709], [-132.11, 54.031346], [-132.112726, 54.031241], [-132.11518, 54.031291], [-132.118543, 54.031497], [-132.123662, 54.032124], [-132.125685, 54.032452], [-132.131102, 54.033849], [-132.134415, 54.034306], [-132.136118, 54.034444], [-132.138636, 54.034918]]]]}, "properties": {"name": "Masset", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Masset", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947023", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-132.122663, 53.277023], [-132.134597, 53.278353], [-132.142231, 53.278881], [-132.146367, 53.278999], [-132.151719, 53.278987], [-132.153364, 53.278919], [-132.161797, 53.278326], [-132.160175, 53.272773], [-132.158383, 53.267208], [-132.157149, 53.260397], [-132.157491, 53.256371], [-132.159662, 53.250906], [-132.162383, 53.247209], [-132.164209, 53.243717], [-132.165181, 53.240101], [-132.165417, 53.239999], [-132.166321, 53.239292], [-132.163906, 53.2312], [-132.162829, 53.228448], [-132.126382, 53.207317], [-132.116583, 53.208119], [-132.075687, 53.217605], [-132.063507, 53.222155], [-132.038477, 53.226813], [-132.009837, 53.230183], [-132.003222, 53.231064], [-132.003101, 53.245098], [-132.002878, 53.245757], [-132.002797, 53.247634], [-132.001943, 53.248841], [-132.001811, 53.249964], [-132.002091, 53.251161], [-132.002665, 53.255654], [-132.01617, 53.254494], [-132.015827, 53.260497], [-132.018025, 53.260466], [-132.01707, 53.277056], [-132.122663, 53.277023]]]]}, "properties": {"name": "Daajing Giids", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Daajing Giids", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947026", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-132.683123, 54.661384], [-132.924634, 54.65592], [-133.243958, 54.645918], [-133.245475, 54.394781], [-133.247261, 54.165457], [-133.245578, 53.982975], [-133.245418, 53.952641], [-133.245033, 53.922505], [-133.244798, 53.892116], [-133.244816, 53.877214], [-133.244375, 53.847531], [-133.24396, 53.797226], [-133.240396, 53.777751], [-133.2395, 53.754004], [-133.236061, 53.734501], [-133.233771, 53.720094], [-133.220146, 53.67544], [-133.173765, 53.553545], [-133.149007, 53.484659], [-133.125271, 53.417808], [-133.098875, 53.358823], [-133.070783, 53.288403], [-133.04275, 53.221191], [-133.02155, 53.16766], [-132.814226, 53.166897], [-132.621908, 53.16367], [-132.589689, 53.166001], [-132.575114, 53.16267], [-132.551999, 53.157199], [-132.514814, 53.141526], [-132.478473, 53.130737], [-132.42489, 53.132709], [-132.378271, 53.13178], [-132.370087, 53.133368], [-132.369237, 53.133997], [-132.361829, 53.144232], [-132.353334, 53.150312], [-132.345521, 53.148224], [-132.345435, 53.148256], [-132.33438, 53.147406], [-132.319435, 53.148539], [-132.303388, 53.154234], [-132.286964, 53.152319], [-132.273648, 53.150351], [-132.263356, 53.148313], [-132.246145, 53.146092], [-132.22133, 53.142772], [-132.205348, 53.145576], [-132.177777, 53.154674], [-132.159098, 53.158473], [-132.147262, 53.162963], [-132.129763, 53.164963], [-132.109222, 53.15935], [-132.079385, 53.161565], [-132.073092, 53.168489], [-132.066342, 53.173362], [-132.059164, 53.18119], [-132.031838, 53.200263], [-132.001215, 53.223762], [-131.985788, 53.224937], [-131.965659, 53.237268], [-131.949473, 53.249381], [-131.942408, 53.252818], [-131.930759, 53.262889], [-131.923752, 53.270997], [-131.898406, 53.297081], [-131.885201, 53.317709], [-131.857968, 53.309284], [-131.798649, 53.291046], [-131.72822, 53.250458], [-131.494181, 53.294693], [-131.211722, 53.336609], [-130.93251, 53.376758], [-130.714011, 53.408773], [-130.722851, 53.469453], [-130.724157, 53.580927], [-130.724607, 53.684465], [-130.721865, 53.728338], [-130.722315, 53.756727], [-130.718566, 53.762092], [-130.71362, 53.780577], [-130.708579, 53.788439], [-130.696543, 53.800644], [-130.727547, 53.8166], [-130.756024, 53.834366], [-130.798685, 53.863789], [-130.816614, 53.878056], [-130.818094, 53.879651], [-130.845609, 53.906924], [-130.869928, 53.934904], [-130.894465, 53.966972], [-130.915298, 53.995032], [-130.928951, 54.027846], [-130.943687, 54.06136], [-130.958136, 54.095511], [-130.973725, 54.131477], [-130.987803, 54.164921], [-130.99062, 54.19746], [-130.994475, 54.232106], [-131.000919, 54.245638], [-130.985384, 54.267334], [-130.971309, 54.280245], [-130.969628, 54.290708], [-130.969545, 54.291285], [-130.971499, 54.320413], [-130.973857, 54.363423], [-130.976835, 54.397217], [-130.986611, 54.407266], [-130.992944, 54.418936], [-131.014588, 54.44381], [-131.029269, 54.484965], [-131.039536, 54.499008], [-131.039055, 54.511456], [-131.04938, 54.540893], [-131.059384, 54.552188], [-131.103549, 54.574226], [-131.108902, 54.579732], [-131.110798, 54.597739], [-131.108714, 54.617783], [-131.096042, 54.638925], [-131.05761, 54.662154], [-131.034158, 54.676731], [-131.017671, 54.683895], [-130.997345, 54.696578], [-130.98889, 54.702815], [-132.0, 54.68099], [-132.683123, 54.661384]], [[-132.195438, 54.051057], [-132.194817, 54.051636], [-132.194309, 54.05192], [-132.193433, 54.051999], [-132.19168, 54.051724], [-132.191069, 54.051485], [-132.189032, 54.050881], [-132.188306, 54.050549], [-132.187615, 54.050361], [-132.185171, 54.049441], [-132.182351, 54.048018], [-132.181559, 54.04772], [-132.179292, 54.046686], [-132.177324, 54.045526], [-132.176654, 54.045249], [-132.17481, 54.044298], [-132.173877, 54.043629], [-132.173289, 54.0433], [-132.172692, 54.043088], [-132.171749, 54.042589], [-132.171249, 54.042506], [-132.169221, 54.041586], [-132.168164, 54.041175], [-132.166536, 54.040597], [-132.164871, 54.040162], [-132.163484, 54.039904], [-132.161168, 54.039346], [-132.15966, 54.039077], [-132.158041, 54.038634], [-132.156791, 54.038371], [-132.156002, 54.038054], [-132.152946, 54.037164], [-132.147618, 54.036022], [-132.144751, 54.035747], [-132.143406, 54.035526], [-132.142235, 54.035418], [-132.139044, 54.034991], [-132.136118, 54.034444], [-132.135023, 54.034374], [-132.132099, 54.034017], [-132.130456, 54.033716], [-132.125685, 54.032452], [-132.123662, 54.032124], [-132.119922, 54.031648], [-132.118543, 54.031497], [-132.11518, 54.031291], [-132.112083, 54.031262], [-132.10934, 54.031403], [-132.108291, 54.031549], [-132.10637, 54.031709], [-132.104007, 54.032074], [-132.102598, 54.03214], [-132.100724, 54.032311], [-132.099301, 54.032339], [-132.095993, 54.032222], [-132.094906, 54.032044], [-132.091625, 54.031802], [-132.089823, 54.03157], [-132.088052, 54.031563], [-132.083996, 54.031698], [-132.083233, 54.031662], [-132.081378, 54.031769], [-132.079577, 54.031977], [-132.075477, 54.032058], [-132.071125, 54.032483], [-132.068608, 54.032439], [-132.067624, 54.032343], [-132.062175, 54.032066], [-132.060033, 54.032113], [-132.057692, 54.03237], [-132.057025, 54.032543], [-132.056722, 54.03249], [-132.056414, 54.03232], [-132.055957, 54.031446], [-132.055165, 54.030977], [-132.053168, 54.030496], [-132.051716, 54.030281], [-132.049075, 54.030063], [-132.044452, 54.029995], [-132.042992, 54.029878], [-132.038013, 54.029683], [-132.036909, 54.029728], [-132.033037, 54.029633], [-132.031306, 54.029482], [-132.028718, 54.029382], [-132.026884, 54.029201], [-132.026928, 54.026439], [-132.027832, 54.016057], [-132.094324, 54.015005], [-132.094957, 54.013821], [-132.102828, 54.014145], [-132.103145, 54.008343], [-132.104413, 54.008447], [-132.104438, 54.00003], [-132.132325, 53.999996], [-132.129887, 53.986148], [-132.134428, 53.985923], [-132.135211, 53.989961], [-132.135371, 53.990332], [-132.136044, 53.991281], [-132.136165, 53.991695], [-132.13606, 53.992111], [-132.135469, 53.993067], [-132.135535, 53.993854], [-132.135893, 53.994236], [-132.136378, 53.994008], [-132.136918, 53.99456], [-132.138441, 53.995532], [-132.139091, 53.996059], [-132.139793, 53.996507], [-132.140309, 53.996772], [-132.140446, 53.996757], [-132.141232, 53.9971], [-132.142453, 53.997749], [-132.143031, 53.998464], [-132.143054, 53.998779], [-132.142934, 53.998974], [-132.140946, 53.999117], [-132.141289, 53.999983], [-132.149049, 53.999931], [-132.148356, 54.003781], [-132.160562, 54.012376], [-132.161422, 54.015179], [-132.163344, 54.017707], [-132.165383, 54.018946], [-132.167343, 54.019948], [-132.160239, 54.021643], [-132.16054, 54.021915], [-132.161096, 54.022251], [-132.162099, 54.023013], [-132.163301, 54.023742], [-132.164068, 54.024381], [-132.164667, 54.024764], [-132.165584, 54.025648], [-132.165821, 54.025771], [-132.166802, 54.027035], [-132.167974, 54.02824], [-132.169526, 54.029428], [-132.170473, 54.030331], [-132.172324, 54.031634], [-132.173205, 54.031952], [-132.174218, 54.032541], [-132.175409, 54.032991], [-132.176133, 54.033135], [-132.176863, 54.033188], [-132.177494, 54.033347], [-132.178049, 54.033692], [-132.179706, 54.034289], [-132.180603, 54.034796], [-132.181721, 54.035182], [-132.182442, 54.035593], [-132.183398, 54.035904], [-132.184467, 54.036153], [-132.185355, 54.03657], [-132.186046, 54.03674], [-132.187893, 54.037456], [-132.188766, 54.03808], [-132.190065, 54.039198], [-132.191845, 54.039986], [-132.193098, 54.040869], [-132.193719, 54.041406], [-132.193823, 54.041461], [-132.195115, 54.041564], [-132.19579, 54.041957], [-132.19662, 54.042804], [-132.196713, 54.042995], [-132.196955, 54.043945], [-132.19694, 54.044196], [-132.196562, 54.045248], [-132.196702, 54.045467], [-132.197177, 54.045865], [-132.197169, 54.046215], [-132.197512, 54.046565], [-132.197616, 54.046855], [-132.197617, 54.047044], [-132.197069, 54.047948], [-132.196868, 54.048186], [-132.194954, 54.049608], [-132.194286, 54.049986], [-132.193086, 54.050147], [-132.189949, 54.050191], [-132.189636, 54.05031], [-132.189548, 54.050496], [-132.189852, 54.050737], [-132.1903, 54.050884], [-132.19065, 54.050909], [-132.191268, 54.050807], [-132.19175, 54.051124], [-132.194553, 54.051055], [-132.194957, 54.050938], [-132.195952, 54.050466], [-132.196833, 54.049848], [-132.198222, 54.049207], [-132.19844, 54.048905], [-132.198585, 54.048326], [-132.198471, 54.047316], [-132.197834, 54.04632], [-132.197702, 54.04558], [-132.197511, 54.04545], [-132.196943, 54.045257], [-132.196937, 54.045121], [-132.197032, 54.045089], [-132.197656, 54.045345], [-132.198425, 54.045947], [-132.19901, 54.047238], [-132.19915, 54.048329], [-132.199075, 54.048769], [-132.19889, 54.049042], [-132.1975, 54.049937], [-132.195438, 54.051057]], [[-132.308707, 53.666662], [-132.308794, 53.679623], [-132.260396, 53.680001], [-132.272177, 53.670497], [-132.271887, 53.667182], [-132.308707, 53.666662]], [[-132.180292, 53.695611], [-132.18028, 53.699858], [-132.177329, 53.702376], [-132.173733, 53.705681], [-132.172218, 53.707507], [-132.171319, 53.709071], [-132.168172, 53.710014], [-132.163005, 53.711969], [-132.150767, 53.705999], [-132.149383, 53.70406], [-132.147239, 53.69919], [-132.145552, 53.696506], [-132.143865, 53.695888], [-132.14374, 53.69525], [-132.145333, 53.694027], [-132.145378, 53.693878], [-132.140403, 53.693917], [-132.139886, 53.688541], [-132.158553, 53.688733], [-132.159048, 53.684138], [-132.164868, 53.683948], [-132.164916, 53.683069], [-132.170757, 53.682855], [-132.174924, 53.68337], [-132.178204, 53.683123], [-132.178353, 53.682016], [-132.183, 53.681726], [-132.183623, 53.670711], [-132.177785, 53.670368], [-132.178227, 53.667288], [-132.191176, 53.666892], [-132.191508, 53.665704], [-132.200652, 53.665407], [-132.204835, 53.665499], [-132.20987, 53.665459], [-132.204844, 53.671307], [-132.203561, 53.672012], [-132.196773, 53.681995], [-132.195867, 53.686824], [-132.194681, 53.688589], [-132.192545, 53.690131], [-132.189584, 53.69155], [-132.185712, 53.691692], [-132.18221, 53.690073], [-132.180292, 53.695611]], [[-132.299605, 53.616824], [-132.301042, 53.616182], [-132.301115, 53.615818], [-132.300909, 53.615645], [-132.288308, 53.615879], [-132.286914, 53.601941], [-132.290418, 53.601925], [-132.290068, 53.601011], [-132.301951, 53.600609], [-132.336434, 53.600314], [-132.336323, 53.615001], [-132.325172, 53.615031], [-132.324448, 53.615223], [-132.311895, 53.619056], [-132.312008, 53.619555], [-132.311987, 53.619878], [-132.311502, 53.620829], [-132.310793, 53.621066], [-132.310504, 53.621329], [-132.308649, 53.620556], [-132.307147, 53.620613], [-132.306367, 53.620825], [-132.305517, 53.621266], [-132.30506, 53.621715], [-132.303484, 53.62238], [-132.303142, 53.622644], [-132.302935, 53.623109], [-132.303031, 53.623993], [-132.302642, 53.624519], [-132.302182, 53.624768], [-132.301722, 53.624891], [-132.301109, 53.624913], [-132.300572, 53.62481], [-132.300085, 53.624643], [-132.299678, 53.624357], [-132.297399, 53.622043], [-132.294869, 53.620201], [-132.294438, 53.619622], [-132.294515, 53.61929], [-132.295453, 53.619071], [-132.296369, 53.618975], [-132.298632, 53.618049], [-132.299022, 53.617745], [-132.299605, 53.616824]], [[-132.164244, 53.243587], [-132.162383, 53.247209], [-132.159662, 53.250906], [-132.157491, 53.256371], [-132.157149, 53.260397], [-132.158383, 53.267208], [-132.160175, 53.272773], [-132.161797, 53.278326], [-132.153364, 53.278919], [-132.151719, 53.278987], [-132.146367, 53.278999], [-132.142231, 53.278881], [-132.134597, 53.278353], [-132.122663, 53.277023], [-132.01707, 53.277056], [-132.018025, 53.260466], [-132.015827, 53.260497], [-132.01617, 53.254494], [-132.002665, 53.255654], [-132.003332, 53.275909], [-131.98526, 53.277501], [-131.985338, 53.2786], [-131.985845, 53.281806], [-131.975289, 53.294695], [-131.975277, 53.298469], [-131.966548, 53.298473], [-131.966338, 53.296786], [-131.96648, 53.295924], [-131.968202, 53.293703], [-131.969774, 53.290775], [-131.970104, 53.289713], [-131.970181, 53.289032], [-131.969888, 53.285478], [-131.969543, 53.284691], [-131.969252, 53.283545], [-131.969226, 53.283076], [-131.969454, 53.282398], [-131.970738, 53.280609], [-131.971142, 53.279788], [-131.971577, 53.278295], [-131.972235, 53.277567], [-131.970837, 53.27904], [-131.970838, 53.27818], [-131.971202, 53.277784], [-131.971449, 53.277257], [-131.972032, 53.276568], [-131.973085, 53.275751], [-131.976019, 53.274167], [-131.976906, 53.273533], [-131.977341, 53.273315], [-131.978788, 53.273198], [-131.979686, 53.272744], [-131.979878, 53.272469], [-131.979962, 53.272162], [-131.980031, 53.271441], [-131.979902, 53.270877], [-131.979938, 53.270517], [-131.980246, 53.26978], [-131.980429, 53.269614], [-131.981327, 53.269151], [-131.981904, 53.269047], [-131.983987, 53.268356], [-131.985249, 53.268171], [-131.987105, 53.267702], [-131.987942, 53.267654], [-131.988374, 53.2674], [-131.989058, 53.266683], [-131.989839, 53.266258], [-131.990603, 53.265159], [-131.990979, 53.2639], [-131.991155, 53.262753], [-131.99093, 53.259307], [-131.990586, 53.259117], [-131.990467, 53.258904], [-131.990683, 53.25835], [-131.990754, 53.257881], [-131.990583, 53.257129], [-131.990584, 53.256293], [-131.990544, 53.256142], [-131.990195, 53.25588], [-131.990179, 53.255656], [-131.989863, 53.255421], [-131.989858, 53.25534], [-131.990001, 53.255238], [-131.990241, 53.255232], [-131.990415, 53.255147], [-131.990428, 53.254903], [-131.990289, 53.254655], [-131.990637, 53.254061], [-131.991555, 53.253032], [-131.994531, 53.250754], [-131.995538, 53.250162], [-131.996933, 53.249534], [-131.997077, 53.249215], [-131.996772, 53.248071], [-131.99649, 53.247899], [-131.995731, 53.247981], [-131.995489, 53.247941], [-131.995404, 53.247809], [-131.995513, 53.247662], [-131.995907, 53.247491], [-131.996664, 53.2474], [-131.997058, 53.247236], [-131.997564, 53.247188], [-131.997815, 53.24711], [-131.998769, 53.246637], [-131.99892, 53.246218], [-131.999137, 53.246114], [-131.999602, 53.246103], [-131.999984, 53.24621], [-132.00015, 53.246204], [-132.001482, 53.245798], [-132.001642, 53.245667], [-132.001633, 53.245361], [-132.002189, 53.244718], [-132.002432, 53.24467], [-132.003105, 53.244714], [-132.003222, 53.231064], [-132.009837, 53.230183], [-132.038477, 53.226813], [-132.063507, 53.222155], [-132.075687, 53.217605], [-132.116583, 53.208119], [-132.126382, 53.207317], [-132.162829, 53.228448], [-132.163906, 53.2312], [-132.166321, 53.239292], [-132.165417, 53.239999], [-132.165181, 53.240101], [-132.164244, 53.243587]]]]}, "properties": {"name": "North Coast D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "North Coast D", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947027", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-132.150767, 53.705999], [-132.163005, 53.711969], [-132.168172, 53.710014], [-132.171319, 53.709071], [-132.172218, 53.707507], [-132.173733, 53.705681], [-132.177329, 53.702376], [-132.18028, 53.699858], [-132.180292, 53.695611], [-132.18221, 53.690073], [-132.185712, 53.691692], [-132.189584, 53.69155], [-132.192545, 53.690131], [-132.194681, 53.688589], [-132.195867, 53.686824], [-132.196773, 53.681995], [-132.203561, 53.672012], [-132.204844, 53.671307], [-132.20987, 53.665459], [-132.204835, 53.665499], [-132.200652, 53.665407], [-132.191508, 53.665704], [-132.191176, 53.666892], [-132.178227, 53.667288], [-132.177785, 53.670368], [-132.183623, 53.670711], [-132.183, 53.681726], [-132.178353, 53.682016], [-132.178204, 53.683123], [-132.174924, 53.68337], [-132.170757, 53.682855], [-132.164916, 53.683069], [-132.164868, 53.683948], [-132.159048, 53.684138], [-132.158553, 53.688733], [-132.139886, 53.688541], [-132.140403, 53.693917], [-132.145378, 53.693878], [-132.145333, 53.694027], [-132.14374, 53.69525], [-132.143865, 53.695888], [-132.145552, 53.696506], [-132.147239, 53.69919], [-132.149383, 53.70406], [-132.150767, 53.705999]]], [[[-132.325172, 53.615031], [-132.336323, 53.615001], [-132.336434, 53.600314], [-132.301951, 53.600609], [-132.290068, 53.601011], [-132.290418, 53.601925], [-132.286914, 53.601941], [-132.288308, 53.615879], [-132.300909, 53.615645], [-132.301115, 53.615818], [-132.301042, 53.616182], [-132.299605, 53.616824], [-132.299022, 53.617745], [-132.298632, 53.618049], [-132.296369, 53.618975], [-132.295453, 53.619071], [-132.294515, 53.61929], [-132.294438, 53.619622], [-132.294869, 53.620201], [-132.297399, 53.622043], [-132.299678, 53.624357], [-132.300085, 53.624643], [-132.300572, 53.62481], [-132.301109, 53.624913], [-132.301722, 53.624891], [-132.302182, 53.624768], [-132.302642, 53.624519], [-132.303031, 53.623993], [-132.302935, 53.623109], [-132.303142, 53.622644], [-132.303484, 53.62238], [-132.30506, 53.621715], [-132.305517, 53.621266], [-132.306367, 53.620825], [-132.307147, 53.620613], [-132.308649, 53.620556], [-132.310504, 53.621329], [-132.310793, 53.621066], [-132.311502, 53.620829], [-132.311968, 53.619949], [-132.312018, 53.619646], [-132.311895, 53.619056], [-132.325172, 53.615031]]], [[[-132.272177, 53.670497], [-132.260396, 53.680001], [-132.308794, 53.679623], [-132.308707, 53.666662], [-132.271887, 53.667182], [-132.272177, 53.670497]]]]}, "properties": {"name": "Port Clements", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Port Clements", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947030", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-132.378271, 53.13178], [-132.42489, 53.132709], [-132.478473, 53.130737], [-132.514814, 53.141526], [-132.551999, 53.157199], [-132.575114, 53.16267], [-132.589689, 53.166001], [-132.621908, 53.16367], [-132.814226, 53.166897], [-133.02155, 53.16766], [-132.957944, 53.000041], [-132.956891, 52.994264], [-132.758273, 52.75001], [-132.5, 52.75], [-132.5, 52.560144], [-132.477601, 52.540753], [-132.313311, 52.393574], [-132.197065, 52.307774], [-132.067163, 52.223346], [-131.938671, 52.151216], [-131.668998, 52.044148], [-131.613698, 52.021335], [-131.498677, 51.991938], [-131.478898, 51.990997], [-131.346026, 51.963665], [-131.217546, 51.940668], [-131.190316, 51.931469], [-131.150719, 51.913189], [-131.071176, 51.890682], [-131.025001, 51.886149], [-130.975165, 51.88863], [-130.874907, 51.906726], [-130.81238, 51.913428], [-130.752778, 51.927845], [-130.648924, 51.943583], [-130.573487, 51.950859], [-130.456962, 51.969093], [-130.516521, 52.122213], [-130.57115, 52.200702], [-130.676961, 52.336823], [-130.71201, 52.389882], [-130.790132, 52.470054], [-130.887349, 52.606762], [-130.970582, 52.743673], [-130.988962, 52.786012], [-131.03999, 52.897342], [-131.047649, 52.950092], [-131.038013, 53.031749], [-131.007166, 53.084269], [-130.976544, 53.118185], [-130.896686, 53.165973], [-130.836511, 53.202295], [-130.756351, 53.26296], [-130.735744, 53.286723], [-130.710641, 53.337731], [-130.699792, 53.36644], [-130.709049, 53.388769], [-130.714011, 53.408773], [-130.93251, 53.376758], [-131.211722, 53.336609], [-131.494181, 53.294693], [-131.72822, 53.250458], [-131.798649, 53.291046], [-131.857968, 53.309284], [-131.885201, 53.317709], [-131.898406, 53.297081], [-131.923752, 53.270997], [-131.930759, 53.262889], [-131.942408, 53.252818], [-131.949473, 53.249381], [-131.965659, 53.237268], [-131.985788, 53.224937], [-132.001215, 53.223762], [-132.031838, 53.200263], [-132.059164, 53.18119], [-132.066342, 53.173362], [-132.073092, 53.168489], [-132.079385, 53.161565], [-132.109222, 53.15935], [-132.129763, 53.164963], [-132.147262, 53.162963], [-132.159098, 53.158473], [-132.177777, 53.154674], [-132.205348, 53.145576], [-132.22133, 53.142772], [-132.246145, 53.146092], [-132.263356, 53.148313], [-132.273648, 53.150351], [-132.286964, 53.152319], [-132.303388, 53.154234], [-132.319435, 53.148539], [-132.33438, 53.147406], [-132.345435, 53.148256], [-132.345521, 53.148224], [-132.353334, 53.150312], [-132.361829, 53.144232], [-132.369237, 53.133997], [-132.370087, 53.133368], [-132.378271, 53.13178]]]]}, "properties": {"name": "North Coast E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "North Coast E", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947032", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.243619, 53.430725], [-129.255938, 53.431248], [-129.255428, 53.427541], [-129.254556, 53.427668], [-129.254253, 53.427651], [-129.254104, 53.42757], [-129.253968, 53.427382], [-129.253407, 53.426979], [-129.253375, 53.426664], [-129.253239, 53.426449], [-129.25271, 53.425955], [-129.251927, 53.425975], [-129.250885, 53.425707], [-129.250571, 53.425735], [-129.25033, 53.425898], [-129.249894, 53.426015], [-129.24955, 53.426016], [-129.249233, 53.425847], [-129.249051, 53.425622], [-129.249046, 53.425038], [-129.248821, 53.425011], [-129.248445, 53.425066], [-129.248038, 53.425022], [-129.2473, 53.424817], [-129.247073, 53.424673], [-129.24671, 53.424098], [-129.246421, 53.423937], [-129.245023, 53.423958], [-129.24475, 53.423743], [-129.244478, 53.423626], [-129.243876, 53.423628], [-129.242883, 53.423764], [-129.243619, 53.430725]]]]}, "properties": {"name": "Kulkayu (Hartley Bay) 4A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kulkayu (Hartley Bay) 4A", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947802", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-132.193176, 54.051975], [-132.193861, 54.051992], [-132.194309, 54.05192], [-132.1945, 54.051826], [-132.195805, 54.050814], [-132.1975, 54.049937], [-132.198808, 54.049103], [-132.199075, 54.048769], [-132.199161, 54.048195], [-132.19901, 54.047238], [-132.198425, 54.045947], [-132.197656, 54.045345], [-132.197032, 54.045089], [-132.196937, 54.045121], [-132.196943, 54.045257], [-132.197511, 54.04545], [-132.197702, 54.04558], [-132.197834, 54.04632], [-132.198471, 54.047316], [-132.198585, 54.048326], [-132.19844, 54.048905], [-132.198222, 54.049207], [-132.196833, 54.049848], [-132.195952, 54.050466], [-132.194957, 54.050938], [-132.194553, 54.051055], [-132.19175, 54.051124], [-132.191268, 54.050807], [-132.19065, 54.050909], [-132.1903, 54.050884], [-132.189852, 54.050737], [-132.189548, 54.050496], [-132.189636, 54.05031], [-132.189949, 54.050191], [-132.193086, 54.050147], [-132.194286, 54.049986], [-132.194954, 54.049608], [-132.196868, 54.048186], [-132.197069, 54.047948], [-132.197617, 54.047044], [-132.197616, 54.046855], [-132.197512, 54.046565], [-132.197169, 54.046215], [-132.197177, 54.045865], [-132.196702, 54.045467], [-132.196562, 54.045248], [-132.196612, 54.044962], [-132.196896, 54.044402], [-132.196955, 54.043945], [-132.19662, 54.042804], [-132.195936, 54.042086], [-132.195499, 54.041743], [-132.195115, 54.041564], [-132.193823, 54.041461], [-132.193719, 54.041406], [-132.193098, 54.040869], [-132.191845, 54.039986], [-132.190065, 54.039198], [-132.188766, 54.03808], [-132.187893, 54.037456], [-132.186046, 54.03674], [-132.185355, 54.03657], [-132.184467, 54.036153], [-132.183398, 54.035904], [-132.182442, 54.035593], [-132.181721, 54.035182], [-132.180603, 54.034796], [-132.179706, 54.034289], [-132.178049, 54.033692], [-132.177494, 54.033347], [-132.176863, 54.033188], [-132.176133, 54.033135], [-132.175409, 54.032991], [-132.174218, 54.032541], [-132.173205, 54.031952], [-132.172324, 54.031634], [-132.170473, 54.030331], [-132.169526, 54.029428], [-132.167974, 54.02824], [-132.166802, 54.027035], [-132.165821, 54.025771], [-132.165584, 54.025648], [-132.164667, 54.024764], [-132.164068, 54.024381], [-132.163301, 54.023742], [-132.162099, 54.023013], [-132.160568, 54.021927], [-132.163333, 54.024249], [-132.163039, 54.024344], [-132.163046, 54.024944], [-132.159303, 54.038972], [-132.160307, 54.039218], [-132.161168, 54.039346], [-132.163484, 54.039904], [-132.164871, 54.040162], [-132.166536, 54.040597], [-132.168164, 54.041175], [-132.169221, 54.041586], [-132.171249, 54.042506], [-132.171749, 54.042589], [-132.172692, 54.043088], [-132.173289, 54.0433], [-132.173877, 54.043629], [-132.17481, 54.044298], [-132.176654, 54.045249], [-132.177324, 54.045526], [-132.179292, 54.046686], [-132.181559, 54.04772], [-132.182351, 54.048018], [-132.185366, 54.049526], [-132.187615, 54.050361], [-132.188306, 54.050549], [-132.189032, 54.050881], [-132.189883, 54.051161], [-132.191069, 54.051485], [-132.19168, 54.051724], [-132.193176, 54.051975]]]]}, "properties": {"name": "Masset 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Masset 1", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947803", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-131.969543, 53.284691], [-131.969888, 53.285478], [-131.969983, 53.286306], [-131.970181, 53.289032], [-131.970104, 53.289713], [-131.969774, 53.290775], [-131.968202, 53.293703], [-131.96648, 53.295924], [-131.966338, 53.296786], [-131.966548, 53.298473], [-131.975277, 53.298469], [-131.975289, 53.294695], [-131.985845, 53.281806], [-131.985338, 53.2786], [-131.98526, 53.277501], [-132.003332, 53.275909], [-132.002665, 53.255654], [-132.002091, 53.251161], [-132.001811, 53.249964], [-132.001943, 53.248841], [-132.002797, 53.247634], [-132.002878, 53.245757], [-132.003101, 53.245098], [-132.003104, 53.244714], [-132.002432, 53.24467], [-132.002189, 53.244718], [-132.001633, 53.245361], [-132.001642, 53.245667], [-132.001482, 53.245798], [-132.00015, 53.246204], [-131.999984, 53.24621], [-131.999602, 53.246103], [-131.999137, 53.246114], [-131.99892, 53.246218], [-131.998841, 53.24658], [-131.99812, 53.246976], [-131.997564, 53.247188], [-131.997058, 53.247236], [-131.996664, 53.2474], [-131.995788, 53.247521], [-131.99543, 53.247736], [-131.995489, 53.247941], [-131.995731, 53.247981], [-131.99649, 53.247899], [-131.996738, 53.248027], [-131.997036, 53.248856], [-131.997077, 53.249215], [-131.996933, 53.249534], [-131.995538, 53.250162], [-131.994531, 53.250754], [-131.991698, 53.252911], [-131.990886, 53.253741], [-131.990289, 53.254655], [-131.990428, 53.254903], [-131.990415, 53.255147], [-131.990241, 53.255232], [-131.990001, 53.255238], [-131.989858, 53.25534], [-131.989863, 53.255421], [-131.990179, 53.255656], [-131.990195, 53.25588], [-131.990544, 53.256142], [-131.990584, 53.256293], [-131.990583, 53.257129], [-131.990754, 53.257881], [-131.990683, 53.25835], [-131.990467, 53.258904], [-131.990586, 53.259117], [-131.99093, 53.259307], [-131.991102, 53.261137], [-131.991042, 53.261768], [-131.991167, 53.262493], [-131.990979, 53.2639], [-131.990813, 53.264525], [-131.990603, 53.265159], [-131.990278, 53.265671], [-131.989839, 53.266258], [-131.989058, 53.266683], [-131.988374, 53.2674], [-131.987942, 53.267654], [-131.987105, 53.267702], [-131.985249, 53.268171], [-131.983987, 53.268356], [-131.981904, 53.269047], [-131.981327, 53.269151], [-131.980429, 53.269614], [-131.980246, 53.26978], [-131.979938, 53.270517], [-131.979902, 53.270877], [-131.980031, 53.271441], [-131.979962, 53.272162], [-131.979878, 53.272469], [-131.979686, 53.272744], [-131.978788, 53.273198], [-131.977238, 53.273354], [-131.976019, 53.274167], [-131.973085, 53.275751], [-131.972032, 53.276568], [-131.971449, 53.277257], [-131.971202, 53.277784], [-131.970838, 53.27818], [-131.970837, 53.27904], [-131.972235, 53.277567], [-131.971577, 53.278295], [-131.971142, 53.279788], [-131.970738, 53.280609], [-131.969454, 53.282398], [-131.969226, 53.283076], [-131.969252, 53.283545], [-131.969543, 53.284691]]]]}, "properties": {"name": "Skidegate 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Skidegate 1", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947804", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.258617, 53.427291], [-129.259142, 53.427218], [-129.260497, 53.427242], [-129.261628, 53.427339], [-129.262725, 53.427165], [-129.263823, 53.427163], [-129.264637, 53.427232], [-129.265225, 53.427385], [-129.266626, 53.427597], [-129.267212, 53.427631], [-129.267997, 53.427819], [-129.268252, 53.427836], [-129.268687, 53.427759], [-129.268577, 53.426947], [-129.268474, 53.417978], [-129.253038, 53.41825], [-129.252936, 53.418737], [-129.252713, 53.419178], [-129.252504, 53.419393], [-129.251874, 53.419799], [-129.251453, 53.419792], [-129.251533, 53.420493], [-129.250908, 53.421464], [-129.25097, 53.421833], [-129.25112, 53.422031], [-129.251423, 53.42229], [-129.252253, 53.422658], [-129.252511, 53.4229], [-129.252649, 53.423259], [-129.252605, 53.423663], [-129.252366, 53.423988], [-129.251767, 53.424538], [-129.250658, 53.425142], [-129.250416, 53.425152], [-129.250249, 53.425035], [-129.249902, 53.424711], [-129.249782, 53.424488], [-129.249946, 53.42428], [-129.25095, 53.423856], [-129.251071, 53.42373], [-129.250964, 53.423622], [-129.250665, 53.423676], [-129.250319, 53.423893], [-129.249462, 53.424236], [-129.249345, 53.424344], [-129.24933, 53.424488], [-129.249452, 53.424686], [-129.24992, 53.425153], [-129.250043, 53.42552], [-129.251292, 53.425563], [-129.252633, 53.425767], [-129.252738, 53.425821], [-129.25271, 53.425955], [-129.253239, 53.426449], [-129.253375, 53.426664], [-129.253407, 53.426979], [-129.254253, 53.427651], [-129.254556, 53.427668], [-129.255428, 53.427541], [-129.256736, 53.427501], [-129.257565, 53.427662], [-129.258617, 53.427291]]]]}, "properties": {"name": "Kulkayu (Hartley Bay) 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kulkayu (Hartley Bay) 4", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947806", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.459567, 53.792026], [-130.460093, 53.791921], [-130.460787, 53.79131], [-130.461191, 53.791206], [-130.461759, 53.790921], [-130.462231, 53.790916], [-130.462575, 53.790803], [-130.463711, 53.790295], [-130.463901, 53.790112], [-130.464282, 53.789668], [-130.464305, 53.78946], [-130.464798, 53.788843], [-130.464839, 53.788249], [-130.465211, 53.78758], [-130.465173, 53.786932], [-130.465442, 53.786821], [-130.465808, 53.786431], [-130.466217, 53.786398], [-130.466469, 53.78627], [-130.466497, 53.786126], [-130.466215, 53.785922], [-130.466224, 53.785716], [-130.46664, 53.785449], [-130.466868, 53.785034], [-130.467193, 53.784831], [-130.467235, 53.784723], [-130.467054, 53.78433], [-130.467201, 53.784166], [-130.467168, 53.784059], [-130.466778, 53.783767], [-130.466931, 53.783406], [-130.467643, 53.78293], [-130.467439, 53.782716], [-130.467402, 53.782545], [-130.467581, 53.782454], [-130.468612, 53.782377], [-130.469113, 53.782003], [-130.469122, 53.781769], [-130.46973, 53.781358], [-130.46982, 53.780943], [-130.469717, 53.780557], [-130.46998, 53.780302], [-130.470268, 53.780264], [-130.471046, 53.779975], [-130.47147, 53.779933], [-130.471756, 53.779831], [-130.471877, 53.779452], [-130.471707, 53.778915], [-130.471176, 53.778445], [-130.471062, 53.77824], [-130.470421, 53.778167], [-130.46976, 53.778328], [-130.469182, 53.77873], [-130.468752, 53.778573], [-130.468525, 53.778603], [-130.468051, 53.778915], [-130.46791, 53.77925], [-130.467714, 53.779261], [-130.467174, 53.779052], [-130.466916, 53.779011], [-130.465693, 53.779223], [-130.465327, 53.779119], [-130.464899, 53.779097], [-130.464461, 53.779112], [-130.463858, 53.779219], [-130.4635, 53.779448], [-130.463329, 53.779773], [-130.46288, 53.779941], [-130.462543, 53.77981], [-130.462223, 53.779814], [-130.461939, 53.779916], [-130.460942, 53.780063], [-130.46018, 53.780449], [-130.457245, 53.781556], [-130.456427, 53.782014], [-130.456459, 53.78214], [-130.456814, 53.782279], [-130.456769, 53.782729], [-130.455668, 53.782886], [-130.454253, 53.783245], [-130.45363, 53.783675], [-130.453625, 53.783954], [-130.453335, 53.783957], [-130.452691, 53.783732], [-130.452234, 53.783728], [-130.450567, 53.784198], [-130.450107, 53.784545], [-130.450008, 53.784753], [-130.44915, 53.785365], [-130.448004, 53.786512], [-130.447808, 53.786532], [-130.447742, 53.786344], [-130.447571, 53.786221], [-130.447404, 53.78625], [-130.447151, 53.786405], [-130.44679, 53.786482], [-130.446411, 53.786486], [-130.445947, 53.786671], [-130.44582, 53.786512], [-130.446128, 53.786193], [-130.446061, 53.78604], [-130.445832, 53.785999], [-130.44445, 53.786402], [-130.444235, 53.786368], [-130.444216, 53.786253], [-130.444839, 53.785813], [-130.44547, 53.785203], [-130.445698, 53.785183], [-130.445927, 53.785243], [-130.446349, 53.785148], [-130.446931, 53.784863], [-130.447833, 53.784591], [-130.448445, 53.784277], [-130.449359, 53.783053], [-130.449585, 53.783023], [-130.449693, 53.783085], [-130.449673, 53.783786], [-130.449858, 53.78391], [-130.45037, 53.783742], [-130.450439, 53.783569], [-130.450383, 53.783283], [-130.450456, 53.783211], [-130.45117, 53.783192], [-130.451226, 53.783102], [-130.450772, 53.782685], [-130.450748, 53.782011], [-130.45058, 53.781942], [-130.450223, 53.782152], [-130.450114, 53.782056], [-130.450418, 53.781647], [-130.450537, 53.781573], [-130.450793, 53.781534], [-130.450942, 53.781416], [-130.45118, 53.780901], [-130.451303, 53.780476], [-130.45095, 53.780382], [-130.451008, 53.779851], [-130.450912, 53.779673], [-130.45061, 53.779711], [-130.450085, 53.779952], [-130.450292, 53.780174], [-130.450051, 53.780258], [-130.449905, 53.780395], [-130.449325, 53.780312], [-130.449084, 53.780368], [-130.448729, 53.780203], [-130.449299, 53.779989], [-130.449427, 53.779744], [-130.449696, 53.77966], [-130.44983, 53.779542], [-130.449849, 53.779227], [-130.44977, 53.779129], [-130.449585, 53.779068], [-130.449412, 53.778908], [-130.449277, 53.778892], [-130.448965, 53.779112], [-130.448629, 53.779097], [-130.448582, 53.778991], [-130.448967, 53.778697], [-130.448806, 53.778511], [-130.448191, 53.778662], [-130.447968, 53.778387], [-130.44757, 53.778293], [-130.447042, 53.778361], [-130.446425, 53.778108], [-130.446129, 53.77787], [-130.446111, 53.777762], [-130.446374, 53.777515], [-130.446606, 53.777594], [-130.446756, 53.777574], [-130.446825, 53.777393], [-130.446725, 53.776666], [-130.446268, 53.776591], [-130.446133, 53.776619], [-130.446001, 53.776783], [-130.445727, 53.776804], [-130.445326, 53.776548], [-130.445213, 53.776397], [-130.4458, 53.776228], [-130.446209, 53.776188], [-130.447318, 53.776263], [-130.448252, 53.776468], [-130.448991, 53.776333], [-130.449498, 53.776102], [-130.450508, 53.775874], [-130.451604, 53.775528], [-130.452509, 53.775383], [-130.453029, 53.77508], [-130.453059, 53.775026], [-130.452838, 53.774822], [-130.453794, 53.774379], [-130.454133, 53.77406], [-130.454246, 53.773852], [-130.454221, 53.773591], [-130.454067, 53.773512], [-130.453319, 53.773351], [-130.453007, 53.77312], [-130.452223, 53.772842], [-130.451572, 53.772392], [-130.451283, 53.771964], [-130.450415, 53.771022], [-130.44988, 53.769985], [-130.448946, 53.769313], [-130.448754, 53.769055], [-130.448739, 53.768597], [-130.448829, 53.768568], [-130.449014, 53.768665], [-130.449984, 53.769498], [-130.450365, 53.769548], [-130.450791, 53.770037], [-130.450874, 53.770235], [-130.451089, 53.770294], [-130.451153, 53.770393], [-130.451366, 53.770435], [-130.451697, 53.770377], [-130.451792, 53.770411], [-130.451841, 53.770537], [-130.451517, 53.770847], [-130.45214, 53.770893], [-130.452205, 53.770999], [-130.451932, 53.771462], [-130.451966, 53.771542], [-130.452307, 53.771727], [-130.452577, 53.772119], [-130.452988, 53.772159], [-130.453261, 53.772129], [-130.453387, 53.771831], [-130.453338, 53.771318], [-130.453716, 53.77126], [-130.45456, 53.771529], [-130.455234, 53.772132], [-130.455713, 53.772395], [-130.45599, 53.772501], [-130.456355, 53.772532], [-130.456708, 53.772204], [-130.45686, 53.771761], [-130.457209, 53.771317], [-130.457372, 53.771197], [-130.457568, 53.771196], [-130.457681, 53.771328], [-130.457672, 53.771526], [-130.457203, 53.772028], [-130.457148, 53.77219], [-130.457182, 53.77227], [-130.457438, 53.772276], [-130.457747, 53.772002], [-130.457659, 53.772506], [-130.457405, 53.77304], [-130.45736, 53.773509], [-130.458188, 53.77375], [-130.458271, 53.773938], [-130.457853, 53.774123], [-130.456814, 53.774405], [-130.456758, 53.774486], [-130.45688, 53.774566], [-130.458069, 53.774695], [-130.458503, 53.774502], [-130.458732, 53.774561], [-130.458929, 53.774531], [-130.459435, 53.774661], [-130.45958, 53.77492], [-130.459972, 53.774897], [-130.460143, 53.77502], [-130.460479, 53.775053], [-130.460729, 53.775248], [-130.461, 53.775199], [-130.461396, 53.775212], [-130.461444, 53.775302], [-130.461133, 53.775538], [-130.461168, 53.775637], [-130.46152, 53.775759], [-130.461986, 53.77561], [-130.462305, 53.775597], [-130.462106, 53.775994], [-130.462262, 53.776137], [-130.462581, 53.776132], [-130.463351, 53.775997], [-130.463937, 53.77625], [-130.464224, 53.776265], [-130.46639, 53.775718], [-130.466524, 53.775608], [-130.467242, 53.77532], [-130.467539, 53.775101], [-130.467779, 53.775053], [-130.467739, 53.775198], [-130.467503, 53.77538], [-130.467304, 53.775778], [-130.467303, 53.776201], [-130.467411, 53.776289], [-130.467811, 53.776401], [-130.467926, 53.776634], [-130.468121, 53.776641], [-130.468725, 53.776498], [-130.468884, 53.776245], [-130.469232, 53.776258], [-130.469412, 53.776192], [-130.469806, 53.776188], [-130.469271, 53.776518], [-130.469187, 53.776699], [-130.469324, 53.777129], [-130.469695, 53.777331], [-130.470027, 53.777292], [-130.470365, 53.777377], [-130.470667, 53.777373], [-130.471538, 53.777065], [-130.47184, 53.777062], [-130.472109, 53.77696], [-130.472639, 53.776926], [-130.472984, 53.776356], [-130.473362, 53.776279], [-130.473568, 53.776142], [-130.474005, 53.775615], [-130.474124, 53.77556], [-130.474368, 53.775592], [-130.474638, 53.775041], [-130.474515, 53.775007], [-130.474169, 53.775083], [-130.474148, 53.774949], [-130.474311, 53.774802], [-130.475111, 53.774648], [-130.475363, 53.774537], [-130.475969, 53.774063], [-130.475934, 53.773892], [-130.475777, 53.773795], [-130.475519, 53.773754], [-130.474932, 53.773896], [-130.474824, 53.773871], [-130.47471, 53.773611], [-130.474491, 53.77346], [-130.474654, 53.773351], [-130.474663, 53.773161], [-130.473632, 53.77322], [-130.473597, 53.773032], [-130.473366, 53.772943], [-130.47268, 53.772881], [-130.47235, 53.772983], [-130.471864, 53.772989], [-130.471514, 53.772966], [-130.471449, 53.772851], [-130.471748, 53.772703], [-130.472413, 53.772623], [-130.473131, 53.772354], [-130.473279, 53.772236], [-130.473319, 53.772073], [-130.47377, 53.771951], [-130.473731, 53.771682], [-130.474079, 53.771677], [-130.474296, 53.771764], [-130.474738, 53.771821], [-130.474914, 53.771666], [-130.475326, 53.77176], [-130.475737, 53.771783], [-130.476282, 53.771713], [-130.476324, 53.771605], [-130.476118, 53.771355], [-130.475569, 53.771308], [-130.475459, 53.771183], [-130.47551, 53.770904], [-130.475351, 53.770736], [-130.474741, 53.770186], [-130.473904, 53.769692], [-130.473737, 53.769676], [-130.473407, 53.769833], [-130.473004, 53.770423], [-130.472478, 53.770564], [-130.472372, 53.770565], [-130.472215, 53.77046], [-130.471765, 53.770572], [-130.471543, 53.770729], [-130.471074, 53.770752], [-130.470659, 53.770649], [-130.470282, 53.770707], [-130.470261, 53.770555], [-130.47124, 53.769914], [-130.47164, 53.769568], [-130.472051, 53.769598], [-130.472395, 53.769468], [-130.472631, 53.769303], [-130.472687, 53.769168], [-130.472344, 53.768912], [-130.472152, 53.768627], [-130.472909, 53.768617], [-130.473847, 53.768057], [-130.475137, 53.767618], [-130.476552, 53.766901], [-130.477765, 53.766391], [-130.478163, 53.766107], [-130.478232, 53.765945], [-130.478183, 53.765774], [-130.477547, 53.765441], [-130.477426, 53.765461], [-130.477207, 53.765687], [-130.477057, 53.765717], [-130.476702, 53.765577], [-130.476521, 53.765579], [-130.476148, 53.765754], [-130.475764, 53.765633], [-130.475503, 53.765934], [-130.475123, 53.765973], [-130.474709, 53.76579], [-130.474544, 53.765469], [-130.474078, 53.765142], [-130.473132, 53.765001], [-130.472817, 53.765095], [-130.472581, 53.765268], [-130.472507, 53.765746], [-130.472005, 53.766183], [-130.471884, 53.766211], [-130.471604, 53.765928], [-130.471583, 53.765793], [-130.471782, 53.765395], [-130.471609, 53.765244], [-130.471683, 53.764784], [-130.471174, 53.764116], [-130.470972, 53.76394], [-130.470732, 53.764005], [-130.470503, 53.763964], [-130.470489, 53.763612], [-130.470364, 53.763471], [-130.469842, 53.763279], [-130.46964, 53.763129], [-130.469433, 53.762907], [-130.469393, 53.762592], [-130.46884, 53.762456], [-130.468555, 53.762504], [-130.468471, 53.762702], [-130.468561, 53.763528], [-130.469002, 53.763999], [-130.468984, 53.764395], [-130.469067, 53.764565], [-130.469548, 53.764882], [-130.469612, 53.764989], [-130.469403, 53.765486], [-130.469657, 53.766248], [-130.469368, 53.766207], [-130.468718, 53.765864], [-130.468576, 53.765721], [-130.468222, 53.765592], [-130.468014, 53.765253], [-130.467469, 53.764864], [-130.466664, 53.76482], [-130.466377, 53.764464], [-130.466121, 53.764484], [-130.465837, 53.76464], [-130.465376, 53.764458], [-130.465429, 53.764223], [-130.465334, 53.764108], [-130.464886, 53.76388], [-130.464393, 53.764101], [-130.464256, 53.764102], [-130.464104, 53.763682], [-130.463917, 53.763487], [-130.463826, 53.763478], [-130.463556, 53.763626], [-130.462791, 53.764283], [-130.462506, 53.764348], [-130.462337, 53.764324], [-130.462326, 53.763578], [-130.462441, 53.763378], [-130.462584, 53.763152], [-130.46325, 53.762659], [-130.463702, 53.762141], [-130.463505, 53.761702], [-130.463347, 53.761516], [-130.46321, 53.761463], [-130.462784, 53.76145], [-130.462223, 53.761493], [-130.461443, 53.761719], [-130.461366, 53.761675], [-130.461406, 53.761513], [-130.461581, 53.761349], [-130.461605, 53.761141], [-130.461436, 53.76109], [-130.46109, 53.761184], [-130.460586, 53.761523], [-130.460408, 53.761184], [-130.460307, 53.76051], [-130.460098, 53.760144], [-130.459944, 53.760074], [-130.459427, 53.760026], [-130.458829, 53.759818], [-130.459199, 53.759562], [-130.459299, 53.759426], [-130.459281, 53.759282], [-130.459046, 53.759123], [-130.458664, 53.759029], [-130.457764, 53.758914], [-130.458219, 53.758019], [-130.458283, 53.757632], [-130.458177, 53.757264], [-130.45798, 53.757195], [-130.457675, 53.757199], [-130.4573, 53.757284], [-130.455794, 53.756763], [-130.454702, 53.756713], [-130.454729, 53.756632], [-130.455301, 53.756525], [-130.45572, 53.756341], [-130.45595, 53.756005], [-130.455699, 53.755758], [-130.455143, 53.755486], [-130.454638, 53.754916], [-130.454241, 53.754795], [-130.452915, 53.754658], [-130.452705, 53.754669], [-130.452391, 53.754845], [-130.451954, 53.754835], [-130.451711, 53.754439], [-130.450767, 53.754369], [-130.450057, 53.754863], [-130.449456, 53.755518], [-130.448731, 53.756048], [-130.448323, 53.756529], [-130.447995, 53.756678], [-130.447841, 53.756625], [-130.448048, 53.755984], [-130.448858, 53.754852], [-130.448989, 53.754265], [-130.449428, 53.753819], [-130.449658, 53.753466], [-130.44965, 53.752774], [-130.449402, 53.752184], [-130.448989, 53.751632], [-130.448802, 53.751481], [-130.448465, 53.75136], [-130.448332, 53.751073], [-130.447366, 53.750734], [-130.447151, 53.750224], [-130.446808, 53.749977], [-130.446073, 53.749735], [-130.445316, 53.749779], [-130.4449, 53.749604], [-130.444185, 53.749559], [-130.443704, 53.749636], [-130.443482, 53.749819], [-130.443339, 53.750082], [-130.442872, 53.750159], [-130.442445, 53.750101], [-130.442285, 53.74987], [-130.441827, 53.749784], [-130.441009, 53.750226], [-130.44067, 53.750059], [-130.439772, 53.750421], [-130.439433, 53.750749], [-130.43921, 53.751291], [-130.439016, 53.751374], [-130.438893, 53.751331], [-130.438682, 53.750955], [-130.43892, 53.750808], [-130.438854, 53.750666], [-130.438215, 53.750548], [-130.437716, 53.750599], [-130.437698, 53.750526], [-130.438053, 53.75028], [-130.438077, 53.750099], [-130.437418, 53.74947], [-130.437189, 53.74941], [-130.435793, 53.74939], [-130.435159, 53.749478], [-130.434596, 53.749396], [-130.433721, 53.749514], [-130.433182, 53.749754], [-130.432774, 53.750209], [-130.433309, 53.750804], [-130.434172, 53.751253], [-130.434781, 53.75129], [-130.434889, 53.751351], [-130.434877, 53.751424], [-130.43443, 53.751654], [-130.434437, 53.751878], [-130.433987, 53.752009], [-130.433593, 53.752473], [-130.433492, 53.753113], [-130.433671, 53.753425], [-130.433849, 53.754214], [-130.434022, 53.754382], [-130.434438, 53.754565], [-130.434519, 53.754726], [-130.434937, 53.754947], [-130.434798, 53.755362], [-130.435083, 53.755691], [-130.434999, 53.755871], [-130.434694, 53.755884], [-130.434656, 53.756082], [-130.435278, 53.756498], [-130.435304, 53.756811], [-130.435428, 53.756945], [-130.436303, 53.757196], [-130.436644, 53.757461], [-130.437213, 53.757643], [-130.43757, 53.757908], [-130.437712, 53.758023], [-130.437661, 53.75833], [-130.437848, 53.758481], [-130.43873, 53.758515], [-130.439045, 53.758456], [-130.439704, 53.758189], [-130.43981, 53.758223], [-130.439611, 53.758595], [-130.439087, 53.75879], [-130.438195, 53.758889], [-130.438096, 53.75907], [-130.438696, 53.759765], [-130.439136, 53.75976], [-130.43923, 53.759839], [-130.438968, 53.760211], [-130.43924, 53.760603], [-130.439581, 53.760796], [-130.439733, 53.760849], [-130.440861, 53.760943], [-130.44113, 53.760851], [-130.441425, 53.760577], [-130.441696, 53.760547], [-130.441451, 53.761386], [-130.440722, 53.761835], [-130.440505, 53.76209], [-130.440244, 53.76203], [-130.43967, 53.761668], [-130.439473, 53.761607], [-130.439001, 53.761585], [-130.438275, 53.761658], [-130.437832, 53.761564], [-130.437534, 53.761316], [-130.437454, 53.761128], [-130.437705, 53.76055], [-130.437698, 53.760306], [-130.437454, 53.759842], [-130.436876, 53.75931], [-130.435942, 53.759114], [-130.435563, 53.759102], [-130.434858, 53.759325], [-130.434449, 53.759357], [-130.433608, 53.759592], [-130.433137, 53.75957], [-130.432745, 53.759656], [-130.432305, 53.759643], [-130.43233, 53.759517], [-130.433437, 53.759009], [-130.43354, 53.758892], [-130.433427, 53.758758], [-130.433151, 53.758626], [-130.432755, 53.758586], [-130.432241, 53.758691], [-130.432181, 53.758647], [-130.432362, 53.758169], [-130.432305, 53.757854], [-130.432885, 53.757551], [-130.432913, 53.757425], [-130.432786, 53.757283], [-130.432556, 53.757159], [-130.432095, 53.757031], [-130.431291, 53.757012], [-130.43085, 53.757009], [-130.430297, 53.757249], [-130.430011, 53.757307], [-130.429599, 53.757249], [-130.429175, 53.75684], [-130.4291, 53.756364], [-130.428524, 53.75594], [-130.428309, 53.755897], [-130.428159, 53.755777], [-130.42779, 53.75531], [-130.427317, 53.755272], [-130.426867, 53.755376], [-130.426344, 53.755625], [-130.425949, 53.755575], [-130.42583, 53.755658], [-130.425467, 53.755689], [-130.425236, 53.755584], [-130.425067, 53.755082], [-130.424959, 53.755003], [-130.424544, 53.75489], [-130.423412, 53.75504], [-130.423157, 53.755122], [-130.423338, 53.755957], [-130.42327, 53.756228], [-130.422646, 53.75619], [-130.422322, 53.756464], [-130.421688, 53.756561], [-130.42139, 53.756735], [-130.421133, 53.756756], [-130.420818, 53.756383], [-130.420674, 53.755755], [-130.420209, 53.755419], [-130.419878, 53.75509], [-130.419765, 53.754849], [-130.419448, 53.75487], [-130.418884, 53.755228], [-130.418752, 53.755409], [-130.41891, 53.75601], [-130.41933, 53.756346], [-130.419341, 53.756652], [-130.419757, 53.756871], [-130.420133, 53.757226], [-130.419985, 53.757327], [-130.419457, 53.757432], [-130.419402, 53.757595], [-130.419786, 53.758156], [-130.419951, 53.758559], [-130.420184, 53.758718], [-130.420838, 53.7588], [-130.420977, 53.758412], [-130.421127, 53.758384], [-130.421281, 53.758444], [-130.42141, 53.758659], [-130.421656, 53.75968], [-130.421638, 53.760022], [-130.422189, 53.7606], [-130.422684, 53.760882], [-130.423562, 53.761258], [-130.424373, 53.761454], [-130.425377, 53.76156], [-130.42624, 53.76155], [-130.426868, 53.761291], [-130.426811, 53.76094], [-130.426914, 53.760795], [-130.427405, 53.761006], [-130.427536, 53.761265], [-130.427798, 53.761396], [-130.428102, 53.761402], [-130.428495, 53.761325], [-130.42877, 53.761385], [-130.429442, 53.761107], [-130.429747, 53.761103], [-130.429533, 53.761977], [-130.42913, 53.762154], [-130.429, 53.762397], [-130.429026, 53.763135], [-130.429414, 53.763831], [-130.429077, 53.764195], [-130.429046, 53.764636], [-130.429484, 53.765431], [-130.429744, 53.765508], [-130.430665, 53.766315], [-130.43079, 53.766385], [-130.431215, 53.766425], [-130.431208, 53.766641], [-130.430932, 53.766977], [-130.4309, 53.767363], [-130.430647, 53.768014], [-130.430453, 53.768951], [-130.43011, 53.769135], [-130.428459, 53.769226], [-130.428187, 53.769285], [-130.427277, 53.769718], [-130.426802, 53.770074], [-130.426658, 53.770282], [-130.426108, 53.771475], [-130.426059, 53.771808], [-130.425437, 53.771851], [-130.42379, 53.771646], [-130.423745, 53.771593], [-130.42486, 53.77096], [-130.425109, 53.770688], [-130.425394, 53.770171], [-130.425544, 53.770125], [-130.425825, 53.76987], [-130.426004, 53.769319], [-130.4262, 53.76928], [-130.426498, 53.769555], [-130.426741, 53.769607], [-130.427461, 53.768897], [-130.427516, 53.768689], [-130.42744, 53.768268], [-130.426807, 53.767466], [-130.426782, 53.767224], [-130.427062, 53.766979], [-130.426994, 53.766772], [-130.426079, 53.76663], [-130.425823, 53.766687], [-130.425804, 53.767425], [-130.425688, 53.767624], [-130.425582, 53.767634], [-130.42513, 53.767298], [-130.425106, 53.766543], [-130.425007, 53.766284], [-130.425086, 53.765546], [-130.425401, 53.765425], [-130.425634, 53.765143], [-130.425993, 53.764986], [-130.426192, 53.764606], [-130.42584, 53.764512], [-130.425655, 53.764397], [-130.425215, 53.764411], [-130.42468, 53.764283], [-130.424225, 53.76427], [-130.422925, 53.763979], [-130.422333, 53.763978], [-130.421245, 53.764072], [-130.420751, 53.763871], [-130.420132, 53.763932], [-130.420225, 53.763535], [-130.420371, 53.763398], [-130.42076, 53.763206], [-130.421235, 53.763361], [-130.421687, 53.763266], [-130.422251, 53.762918], [-130.422346, 53.762575], [-130.421231, 53.761906], [-130.421145, 53.761593], [-130.420883, 53.761443], [-130.420754, 53.761228], [-130.42072, 53.761084], [-130.420834, 53.76094], [-130.420843, 53.760759], [-130.420781, 53.760671], [-130.420165, 53.75994], [-130.419409, 53.759617], [-130.419284, 53.759493], [-130.419431, 53.759347], [-130.419321, 53.759204], [-130.419167, 53.759161], [-130.418012, 53.75913], [-130.417798, 53.75906], [-130.417827, 53.759006], [-130.41813, 53.758958], [-130.419497, 53.759059], [-130.419722, 53.759002], [-130.419794, 53.758848], [-130.419083, 53.758056], [-130.418711, 53.75781], [-130.418235, 53.757599], [-130.417593, 53.757022], [-130.417354, 53.756685], [-130.416746, 53.756619], [-130.415661, 53.756821], [-130.415377, 53.75696], [-130.415278, 53.757195], [-130.414452, 53.757447], [-130.414157, 53.75771], [-130.413855, 53.758173], [-130.413902, 53.758244], [-130.414161, 53.758286], [-130.41415, 53.758358], [-130.413278, 53.758585], [-130.41277, 53.758859], [-130.411935, 53.75975], [-130.411762, 53.760895], [-130.41183, 53.761118], [-130.412023, 53.761422], [-130.412362, 53.761588], [-130.412475, 53.761847], [-130.412754, 53.762006], [-130.41282, 53.762166], [-130.412661, 53.762376], [-130.412852, 53.762652], [-130.412403, 53.762846], [-130.411831, 53.762943], [-130.411144, 53.763283], [-130.410945, 53.763655], [-130.410688, 53.763729], [-130.410437, 53.763921], [-130.410265, 53.76422], [-130.41022, 53.76511], [-130.409967, 53.765274], [-130.409927, 53.765455], [-130.410116, 53.765677], [-130.410092, 53.766325], [-130.409779, 53.766463], [-130.409547, 53.766772], [-130.409025, 53.76702], [-130.408843, 53.767059], [-130.408324, 53.766958], [-130.408114, 53.767005], [-130.407951, 53.767573], [-130.407669, 53.767756], [-130.40715, 53.767708], [-130.406339, 53.767529], [-130.405853, 53.767526], [-130.405555, 53.767637], [-130.405271, 53.767794], [-130.405011, 53.768138], [-130.404564, 53.76843], [-130.404346, 53.768675], [-130.404297, 53.769018], [-130.403835, 53.76932], [-130.403296, 53.769542], [-130.403091, 53.769733], [-130.402548, 53.771196], [-130.402503, 53.772599], [-130.402639, 53.77301], [-130.402672, 53.7731], [-130.402949, 53.773241], [-130.403063, 53.773446], [-130.40307, 53.773697], [-130.40326, 53.773866], [-130.404745, 53.774739], [-130.405294, 53.775262], [-130.40532, 53.775622], [-130.404767, 53.775826], [-130.404785, 53.775924], [-130.405394, 53.776466], [-130.405412, 53.776574], [-130.404944, 53.777074], [-130.403791, 53.777059], [-130.402888, 53.776837], [-130.402555, 53.77684], [-130.402237, 53.776934], [-130.402032, 53.777108], [-130.401902, 53.777351], [-130.401879, 53.778008], [-130.400955, 53.778505], [-130.400332, 53.778961], [-130.400203, 53.779125], [-130.400223, 53.779304], [-130.400601, 53.779696], [-130.401082, 53.780013], [-130.40381, 53.781267], [-130.405237, 53.781771], [-130.405717, 53.782063], [-130.40605, 53.781977], [-130.407244, 53.781425], [-130.408093, 53.781396], [-130.40857, 53.781553], [-130.408789, 53.781729], [-130.40893, 53.781899], [-130.408986, 53.78216], [-130.409296, 53.782397], [-130.409448, 53.782377], [-130.410042, 53.781967], [-130.410359, 53.781936], [-130.410317, 53.78208], [-130.409903, 53.782382], [-130.409819, 53.78259], [-130.409942, 53.782624], [-130.410184, 53.782585], [-130.411076, 53.782044], [-130.411456, 53.782075], [-130.412066, 53.783067], [-130.412747, 53.783913], [-130.413388, 53.784453], [-130.413377, 53.784598], [-130.412807, 53.78481], [-130.412751, 53.784937], [-130.413319, 53.785138], [-130.413699, 53.785115], [-130.414451, 53.785367], [-130.414807, 53.785623], [-130.41514, 53.786032], [-130.415514, 53.786342], [-130.416404, 53.78662], [-130.416729, 53.786795], [-130.416779, 53.786912], [-130.416704, 53.786941], [-130.41522, 53.786562], [-130.414172, 53.786116], [-130.412843, 53.785431], [-130.411766, 53.785479], [-130.410007, 53.785068], [-130.409405, 53.78476], [-130.408797, 53.784678], [-130.408024, 53.784283], [-130.407109, 53.784132], [-130.406777, 53.784216], [-130.406693, 53.784415], [-130.407052, 53.78477], [-130.406745, 53.785079], [-130.406954, 53.785437], [-130.406643, 53.785656], [-130.406669, 53.785998], [-130.4064, 53.786576], [-130.406465, 53.786691], [-130.406938, 53.78675], [-130.407152, 53.786845], [-130.407212, 53.787231], [-130.406821, 53.787354], [-130.406405, 53.787646], [-130.406548, 53.787851], [-130.406934, 53.788026], [-130.407202, 53.788328], [-130.407162, 53.788482], [-130.406301, 53.789067], [-130.406492, 53.789308], [-130.406961, 53.789302], [-130.407041, 53.789382], [-130.406969, 53.789536], [-130.407052, 53.789705], [-130.408136, 53.789936], [-130.408384, 53.79005], [-130.408586, 53.790199], [-130.408719, 53.790504], [-130.409286, 53.791153], [-130.409813, 53.791471], [-130.410176, 53.791475], [-130.410567, 53.791327], [-130.41124, 53.791472], [-130.411556, 53.79136], [-130.411834, 53.791078], [-130.413614, 53.79077], [-130.414322, 53.790564], [-130.414791, 53.79055], [-130.415667, 53.790826], [-130.415869, 53.790958], [-130.415919, 53.791111], [-130.414518, 53.79146], [-130.41335, 53.791941], [-130.413072, 53.792214], [-130.413074, 53.792296], [-130.413539, 53.792551], [-130.413751, 53.792558], [-130.414094, 53.792382], [-130.414321, 53.792353], [-130.414768, 53.792526], [-130.415175, 53.792918], [-130.416056, 53.792925], [-130.416687, 53.793179], [-130.417215, 53.7931], [-130.417501, 53.793008], [-130.417748, 53.792717], [-130.418091, 53.792488], [-130.418098, 53.792254], [-130.417662, 53.791954], [-130.417555, 53.791497], [-130.417845, 53.791511], [-130.418247, 53.79173], [-130.418595, 53.792113], [-130.420927, 53.792383], [-130.421294, 53.792477], [-130.422294, 53.792888], [-130.422836, 53.793204], [-130.42321, 53.793515], [-130.423682, 53.794013], [-130.423741, 53.794335], [-130.424036, 53.794557], [-130.425221, 53.794587], [-130.425329, 53.794658], [-130.425337, 53.794883], [-130.425164, 53.795101], [-130.425155, 53.795316], [-130.425584, 53.795437], [-130.426269, 53.795447], [-130.426388, 53.7954], [-130.426487, 53.795165], [-130.427152, 53.795113], [-130.428132, 53.79537], [-130.428472, 53.795556], [-130.428636, 53.795895], [-130.428948, 53.796117], [-130.42962, 53.796261], [-130.429868, 53.796385], [-130.431737, 53.796451], [-130.432415, 53.796722], [-130.433331, 53.796873], [-130.433732, 53.796212], [-130.433953, 53.795517], [-130.433728, 53.795205], [-130.434047, 53.794698], [-130.434381, 53.794694], [-130.434996, 53.79492], [-130.435759, 53.795064], [-130.436716, 53.795107], [-130.437129, 53.795201], [-130.437478, 53.79517], [-130.438125, 53.795], [-130.438565, 53.794995], [-130.439079, 53.794889], [-130.440374, 53.794181], [-130.440231, 53.793941], [-130.439904, 53.793693], [-130.439835, 53.793496], [-130.439951, 53.792892], [-130.439935, 53.792444], [-130.440085, 53.792405], [-130.440544, 53.792489], [-130.44099, 53.792664], [-130.441488, 53.793018], [-130.44158, 53.793026], [-130.441906, 53.792824], [-130.442246, 53.792982], [-130.442514, 53.793275], [-130.442537, 53.793463], [-130.442244, 53.793808], [-130.442267, 53.794006], [-130.442406, 53.794103], [-130.442619, 53.794102], [-130.443578, 53.793711], [-130.443886, 53.793852], [-130.444136, 53.794064], [-130.444484, 53.794052], [-130.444604, 53.793978], [-130.444921, 53.793948], [-130.445453, 53.793976], [-130.446025, 53.793808], [-130.44678, 53.793718], [-130.447496, 53.793745], [-130.447832, 53.793822], [-130.448125, 53.793972], [-130.448808, 53.793972], [-130.449839, 53.793879], [-130.450721, 53.793976], [-130.45249, 53.793307], [-130.453168, 53.793164], [-130.453637, 53.793132], [-130.454595, 53.793174], [-130.455044, 53.792962], [-130.455774, 53.792989], [-130.457052, 53.792659], [-130.457653, 53.792435], [-130.458302, 53.792338], [-130.458899, 53.792044], [-130.459567, 53.792026]]]]}, "properties": {"name": "Dolphin Island 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Dolphin Island 1", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947807", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.438808, 54.563781], [-130.440302, 54.563152], [-130.440555, 54.562925], [-130.440581, 54.56279], [-130.440431, 54.562468], [-130.440456, 54.561829], [-130.440221, 54.561364], [-130.440035, 54.561332], [-130.439711, 54.56138], [-130.439553, 54.561246], [-130.439321, 54.561222], [-130.439016, 54.561389], [-130.438538, 54.561394], [-130.437494, 54.561208], [-130.437101, 54.561024], [-130.436877, 54.56082], [-130.436425, 54.559838], [-130.436138, 54.559561], [-130.435747, 54.559494], [-130.435105, 54.559655], [-130.434654, 54.559615], [-130.434373, 54.559502], [-130.433862, 54.559077], [-130.433834, 54.55869], [-130.434039, 54.558355], [-130.434235, 54.5582], [-130.434874, 54.557932], [-130.43545, 54.557593], [-130.435591, 54.557196], [-130.436067, 54.557073], [-130.436382, 54.556854], [-130.436367, 54.556404], [-130.436504, 54.555954], [-130.436449, 54.555666], [-130.436642, 54.554973], [-130.436604, 54.554352], [-130.437065, 54.553412], [-130.43744, 54.553084], [-130.437674, 54.552641], [-130.437648, 54.552399], [-130.437212, 54.551838], [-130.437152, 54.55146], [-130.437218, 54.551119], [-130.437921, 54.550508], [-130.439503, 54.549751], [-130.439529, 54.549572], [-130.439341, 54.549106], [-130.440332, 54.548277], [-130.440689, 54.547806], [-130.441076, 54.546093], [-130.440777, 54.545486], [-130.440766, 54.544767], [-130.440547, 54.54423], [-130.440598, 54.543969], [-130.441038, 54.54328], [-130.441031, 54.543056], [-130.440711, 54.542304], [-130.440708, 54.541837], [-130.441039, 54.541555], [-130.441514, 54.541423], [-130.441955, 54.54122], [-130.44204, 54.54103], [-130.441941, 54.540806], [-130.441543, 54.540505], [-130.441381, 54.540292], [-130.441361, 54.539753], [-130.441524, 54.539517], [-130.441677, 54.539461], [-130.442712, 54.539467], [-130.443233, 54.539326], [-130.443548, 54.53908], [-130.443766, 54.5387], [-130.444056, 54.538516], [-130.445185, 54.538153], [-130.446143, 54.538131], [-130.446292, 54.537959], [-130.446387, 54.537617], [-130.447331, 54.537183], [-130.447501, 54.536731], [-130.447345, 54.536248], [-130.447005, 54.536261], [-130.446707, 54.53657], [-130.446537, 54.53659], [-130.446375, 54.536385], [-130.446309, 54.535855], [-130.446106, 54.535804], [-130.445814, 54.535844], [-130.445505, 54.535811], [-130.445248, 54.535536], [-130.44516, 54.535213], [-130.445425, 54.534833], [-130.445139, 54.534629], [-130.444974, 54.534388], [-130.445081, 54.533903], [-130.445361, 54.533531], [-130.445708, 54.533266], [-130.446014, 54.533199], [-130.446324, 54.533205], [-130.446793, 54.53337], [-130.447048, 54.533547], [-130.447537, 54.534269], [-130.447757, 54.53441], [-130.448134, 54.534549], [-130.448305, 54.534547], [-130.448576, 54.534364], [-130.448693, 54.533733], [-130.448823, 54.533488], [-130.448782, 54.532752], [-130.448303, 54.532363], [-130.448222, 54.531806], [-130.448939, 54.531502], [-130.449288, 54.530922], [-130.449522, 54.530119], [-130.450406, 54.529767], [-130.450648, 54.529593], [-130.450627, 54.529001], [-130.450818, 54.528702], [-130.450733, 54.528549], [-130.449991, 54.528046], [-130.450047, 54.527461], [-130.449839, 54.526843], [-130.450024, 54.526419], [-130.450609, 54.525882], [-130.45057, 54.525254], [-130.450822, 54.524953], [-130.45105, 54.524816], [-130.45086, 54.524674], [-130.450599, 54.524768], [-130.449424, 54.524737], [-130.448833, 54.524627], [-130.44893, 54.524311], [-130.448006, 54.523046], [-130.447935, 54.522822], [-130.44801, 54.522327], [-130.448526, 54.52161], [-130.448915, 54.521246], [-130.44918, 54.520866], [-130.449304, 54.520478], [-130.449257, 54.519984], [-130.448673, 54.518805], [-130.448698, 54.518157], [-130.448844, 54.51793], [-130.449591, 54.517651], [-130.449709, 54.517524], [-130.449078, 54.517164], [-130.448407, 54.516956], [-130.447913, 54.516557], [-130.447348, 54.516268], [-130.44692, 54.515949], [-130.446557, 54.515288], [-130.446175, 54.514115], [-130.446183, 54.5139], [-130.446355, 54.513547], [-130.447022, 54.512748], [-130.447646, 54.512444], [-130.447862, 54.512433], [-130.448591, 54.512577], [-130.448776, 54.512547], [-130.448957, 54.512383], [-130.448978, 54.512104], [-130.447991, 54.510868], [-130.447592, 54.510486], [-130.447341, 54.510372], [-130.446965, 54.51025], [-130.446379, 54.510294], [-130.445112, 54.510272], [-130.443486, 54.510121], [-130.442872, 54.510254], [-130.442067, 54.510623], [-130.441336, 54.510524], [-130.440041, 54.510117], [-130.439251, 54.509641], [-130.43888, 54.509214], [-130.438563, 54.508535], [-130.43868, 54.508335], [-130.439521, 54.508065], [-130.440126, 54.507689], [-130.440298, 54.507327], [-130.440382, 54.506652], [-130.44083, 54.506198], [-130.440711, 54.504608], [-130.441242, 54.503883], [-130.441605, 54.503673], [-130.44216, 54.50363], [-130.442217, 54.503053], [-130.442607, 54.502761], [-130.443161, 54.502656], [-130.444212, 54.502661], [-130.444824, 54.50251], [-130.444988, 54.502364], [-130.44514, 54.501832], [-130.445782, 54.501249], [-130.446749, 54.500626], [-130.446999, 54.500237], [-130.4471, 54.499679], [-130.446713, 54.499144], [-130.446316, 54.498879], [-130.445602, 54.498753], [-130.444231, 54.497979], [-130.443858, 54.497929], [-130.443124, 54.498117], [-130.441646, 54.498269], [-130.439391, 54.498206], [-130.439801, 54.498067], [-130.440865, 54.497991], [-130.441409, 54.497644], [-130.441776, 54.497531], [-130.442116, 54.497554], [-130.442867, 54.497842], [-130.443254, 54.497873], [-130.444193, 54.497359], [-130.444236, 54.497259], [-130.444001, 54.496749], [-130.443764, 54.496581], [-130.443152, 54.495861], [-130.442983, 54.495432], [-130.443006, 54.495243], [-130.443126, 54.495097], [-130.443775, 54.494721], [-130.443871, 54.494343], [-130.444948, 54.493323], [-130.445417, 54.493056], [-130.44582, 54.492665], [-130.445829, 54.492512], [-130.445364, 54.492014], [-130.445296, 54.491809], [-130.444913, 54.491498], [-130.444813, 54.49132], [-130.444866, 54.490996], [-130.444624, 54.490738], [-130.444518, 54.490316], [-130.444228, 54.489997], [-130.443817, 54.489722], [-130.442891, 54.489302], [-130.441197, 54.488146], [-130.43937, 54.487548], [-130.438788, 54.487257], [-130.438159, 54.486897], [-130.436687, 54.485871], [-130.43573, 54.484966], [-130.435659, 54.484733], [-130.435245, 54.48436], [-130.434632, 54.483577], [-130.434618, 54.483244], [-130.434859, 54.482576], [-130.434858, 54.482144], [-130.433873, 54.481734], [-130.433491, 54.481424], [-130.433328, 54.481193], [-130.433084, 54.480377], [-130.432937, 54.480172], [-130.431809, 54.4797], [-130.430953, 54.479054], [-130.430518, 54.478961], [-130.430126, 54.47874], [-130.429218, 54.47796], [-130.428236, 54.476822], [-130.427844, 54.476205], [-130.427878, 54.475846], [-130.428067, 54.475529], [-130.428647, 54.474894], [-130.428904, 54.47472], [-130.429063, 54.474394], [-130.42901, 54.474214], [-130.428726, 54.474021], [-130.428524, 54.473959], [-130.428058, 54.473948], [-130.427367, 54.474045], [-130.426565, 54.474028], [-130.425401, 54.473852], [-130.424394, 54.474143], [-130.422811, 54.474837], [-130.421759, 54.474758], [-130.421167, 54.475045], [-130.420739, 54.475139], [-130.420306, 54.475163], [-130.419379, 54.47556], [-130.418981, 54.475654], [-130.418734, 54.475648], [-130.41825, 54.4755], [-130.417154, 54.475037], [-130.416289, 54.474535], [-130.415932, 54.474495], [-130.415611, 54.474562], [-130.414471, 54.475536], [-130.414786, 54.476188], [-130.415224, 54.476759], [-130.415639, 54.477608], [-130.415905, 54.477739], [-130.416535, 54.477661], [-130.417063, 54.477716], [-130.41795, 54.477958], [-130.418328, 54.478188], [-130.418102, 54.478343], [-130.417109, 54.478634], [-130.415868, 54.479313], [-130.415626, 54.479505], [-130.415378, 54.47993], [-130.415256, 54.479985], [-130.415104, 54.479969], [-130.414395, 54.479546], [-130.414823, 54.479028], [-130.414676, 54.478814], [-130.413774, 54.478609], [-130.41294, 54.478557], [-130.411752, 54.478165], [-130.410804, 54.477951], [-130.410521, 54.477812], [-130.41026, 54.477437], [-130.410154, 54.476117], [-130.409729, 54.474935], [-130.409732, 54.474576], [-130.409567, 54.4743], [-130.408881, 54.47366], [-130.408741, 54.47314], [-130.408773, 54.472744], [-130.40939, 54.472314], [-130.409613, 54.472007], [-130.409987, 54.469917], [-130.410206, 54.469519], [-130.410572, 54.46938], [-130.410926, 54.469403], [-130.411238, 54.469534], [-130.411591, 54.469836], [-130.412162, 54.469873], [-130.412298, 54.469828], [-130.4125, 54.469402], [-130.412653, 54.469338], [-130.413224, 54.469349], [-130.413524, 54.469103], [-130.413804, 54.468704], [-130.413856, 54.468425], [-130.41369, 54.468113], [-130.413702, 54.467563], [-130.413403, 54.467361], [-130.41266, 54.467297], [-130.411309, 54.467493], [-130.411005, 54.467649], [-130.410897, 54.4681], [-130.410554, 54.468419], [-130.410126, 54.468532], [-130.409165, 54.468453], [-130.408528, 54.468281], [-130.408194, 54.46806], [-130.407867, 54.467506], [-130.407678, 54.466439], [-130.40731, 54.466083], [-130.406429, 54.466039], [-130.405621, 54.465914], [-130.405238, 54.465964], [-130.404732, 54.466509], [-130.404193, 54.467459], [-130.404313, 54.467817], [-130.40391, 54.468996], [-130.404266, 54.474919], [-130.392683, 54.475655], [-130.391238, 54.468821], [-130.401225, 54.467979], [-130.401514, 54.467634], [-130.401575, 54.467147], [-130.401245, 54.466073], [-130.401126, 54.46532], [-130.401174, 54.464465], [-130.401365, 54.464121], [-130.401384, 54.463825], [-130.401025, 54.463262], [-130.400255, 54.462858], [-130.39967, 54.462846], [-130.399125, 54.462736], [-130.397439, 54.462638], [-130.397146, 54.462588], [-130.39666, 54.462369], [-130.396481, 54.46212], [-130.396369, 54.461096], [-130.396235, 54.460757], [-130.395882, 54.460374], [-130.395444, 54.460171], [-130.394605, 54.460011], [-130.393244, 54.459936], [-130.392234, 54.460173], [-130.391792, 54.46034], [-130.391003, 54.46026], [-130.390603, 54.460273], [-130.38996, 54.460451], [-130.389428, 54.460673], [-130.389228, 54.461574], [-130.388734, 54.462012], [-130.38825, 54.462313], [-130.388369, 54.462627], [-130.388271, 54.462924], [-130.388837, 54.463232], [-130.389817, 54.463473], [-130.390177, 54.463666], [-130.390323, 54.46388], [-130.390377, 54.464581], [-130.390514, 54.464911], [-130.390964, 54.465499], [-130.39215, 54.466771], [-130.392331, 54.46712], [-130.392247, 54.467408], [-130.392007, 54.467592], [-130.39141, 54.467741], [-130.391149, 54.467735], [-130.390773, 54.467569], [-130.390296, 54.46717], [-130.390068, 54.466768], [-130.389729, 54.466404], [-130.389003, 54.465908], [-130.388675, 54.465356], [-130.388632, 54.465005], [-130.388343, 54.464622], [-130.388251, 54.464165], [-130.38803, 54.464041], [-130.387861, 54.464034], [-130.387246, 54.464599], [-130.386662, 54.464642], [-130.3859, 54.464911], [-130.385689, 54.465075], [-130.385516, 54.465427], [-130.385242, 54.465548], [-130.385009, 54.465991], [-130.384351, 54.466546], [-130.384131, 54.466908], [-130.384155, 54.467187], [-130.384525, 54.467641], [-130.384469, 54.467794], [-130.384302, 54.467851], [-130.384054, 54.467835], [-130.383645, 54.467614], [-130.383483, 54.467374], [-130.383523, 54.466744], [-130.383404, 54.466404], [-130.383651, 54.465494], [-130.383755, 54.465384], [-130.384107, 54.465292], [-130.384257, 54.465163], [-130.385055, 54.464129], [-130.384937, 54.463835], [-130.384228, 54.463366], [-130.384307, 54.462987], [-130.384781, 54.461966], [-130.384774, 54.461732], [-130.385081, 54.461721], [-130.385271, 54.461359], [-130.38553, 54.461275], [-130.385705, 54.461399], [-130.38575, 54.461856], [-130.385959, 54.462141], [-130.386179, 54.462238], [-130.386396, 54.462245], [-130.386759, 54.46207], [-130.387048, 54.461492], [-130.386784, 54.460973], [-130.386744, 54.460704], [-130.387236, 54.460159], [-130.387212, 54.459881], [-130.38751, 54.459643], [-130.387812, 54.458957], [-130.388263, 54.458592], [-130.388752, 54.458461], [-130.389384, 54.458462], [-130.389488, 54.458353], [-130.389454, 54.458237], [-130.389265, 54.458131], [-130.38824, 54.457935], [-130.387328, 54.457416], [-130.386513, 54.457067], [-130.386008, 54.456704], [-130.386019, 54.456595], [-130.386318, 54.456295], [-130.387456, 54.455725], [-130.388053, 54.455574], [-130.388675, 54.455279], [-130.389653, 54.455017], [-130.389818, 54.454871], [-130.389751, 54.454683], [-130.389534, 54.454667], [-130.389304, 54.454734], [-130.388777, 54.454694], [-130.388296, 54.454583], [-130.388043, 54.454415], [-130.387979, 54.453858], [-130.387494, 54.453244], [-130.387449, 54.45275], [-130.387298, 54.452437], [-130.387344, 54.451961], [-130.387598, 54.451706], [-130.387891, 54.451756], [-130.38864, 54.452412], [-130.389252, 54.452747], [-130.389702, 54.453308], [-130.390272, 54.453716], [-130.391844, 54.454129], [-130.392453, 54.454382], [-130.393319, 54.454381], [-130.395713, 54.453995], [-130.397835, 54.453385], [-130.398555, 54.453233], [-130.400951, 54.452962], [-130.402673, 54.45235], [-130.403806, 54.452066], [-130.404465, 54.451961], [-130.404981, 54.451703], [-130.405373, 54.451922], [-130.406395, 54.452028], [-130.408394, 54.451376], [-130.410309, 54.451029], [-130.41213, 54.450577], [-130.412779, 54.450587], [-130.413649, 54.450775], [-130.41391, 54.45078], [-130.415651, 54.450283], [-130.416802, 54.450072], [-130.417218, 54.450085], [-130.418304, 54.450243], [-130.419059, 54.450262], [-130.419638, 54.450057], [-130.419927, 54.449874], [-130.420338, 54.449779], [-130.420961, 54.449476], [-130.421677, 54.449242], [-130.423009, 54.448974], [-130.425093, 54.448977], [-130.425776, 54.448691], [-130.426227, 54.448362], [-130.426472, 54.448314], [-130.426631, 54.448429], [-130.426859, 54.448813], [-130.426846, 54.449262], [-130.426997, 54.44962], [-130.427243, 54.449644], [-130.427765, 54.44954], [-130.428212, 54.449516], [-130.428875, 54.449535], [-130.429497, 54.449671], [-130.429876, 54.449927], [-130.430225, 54.450625], [-130.430692, 54.450772], [-130.431449, 54.45079], [-130.432736, 54.450577], [-130.433121, 54.450572], [-130.433512, 54.45072], [-130.433837, 54.450735], [-130.434124, 54.450561], [-130.434527, 54.450151], [-130.43488, 54.450111], [-130.435083, 54.450181], [-130.435026, 54.450316], [-130.43474, 54.450525], [-130.434595, 54.450806], [-130.434098, 54.451163], [-130.43387, 54.452532], [-130.434045, 54.45271], [-130.43483, 54.45314], [-130.434931, 54.453795], [-130.435164, 54.453811], [-130.435668, 54.453651], [-130.436065, 54.453602], [-130.437176, 54.453624], [-130.437953, 54.453741], [-130.438618, 54.45421], [-130.438761, 54.454792], [-130.438923, 54.455043], [-130.439096, 54.455103], [-130.440039, 54.455181], [-130.44087, 54.455577], [-130.441111, 54.455843], [-130.441411, 54.456001], [-130.44178, 54.456024], [-130.442057, 54.455957], [-130.442396, 54.455953], [-130.442721, 54.455994], [-130.443343, 54.456122], [-130.444005, 54.456554], [-130.444287, 54.456641], [-130.446294, 54.456725], [-130.446684, 54.456819], [-130.447217, 54.457047], [-130.447698, 54.457122], [-130.447882, 54.457101], [-130.448167, 54.456856], [-130.448469, 54.456726], [-130.448943, 54.456577], [-130.449908, 54.456385], [-130.450304, 54.456236], [-130.450398, 54.456262], [-130.451052, 54.456038], [-130.451153, 54.455803], [-130.451183, 54.454905], [-130.4516, 54.454486], [-130.452191, 54.454174], [-130.452614, 54.45353], [-130.45287, 54.452852], [-130.453339, 54.452227], [-130.454212, 54.451579], [-130.454742, 54.451303], [-130.455404, 54.450827], [-130.456575, 54.450327], [-130.458315, 54.449453], [-130.459642, 54.449023], [-130.460041, 54.448973], [-130.460366, 54.448997], [-130.461316, 54.449209], [-130.461687, 54.449718], [-130.461956, 54.449921], [-130.46238, 54.450105], [-130.463161, 54.450347], [-130.46345, 54.450263], [-130.463955, 54.449699], [-130.463987, 54.449276], [-130.463869, 54.449044], [-130.463892, 54.448828], [-130.464267, 54.448509], [-130.464557, 54.448002], [-130.465548, 54.447271], [-130.46546, 54.446922], [-130.464951, 54.446488], [-130.464712, 54.445448], [-130.464786, 54.444925], [-130.465259, 54.444344], [-130.46539, 54.443686], [-130.465336, 54.44216], [-130.464946, 54.440752], [-130.465651, 54.440214], [-130.46626, 54.439946], [-130.466764, 54.439832], [-130.467071, 54.43982], [-130.467051, 54.439657], [-130.46818, 54.439321], [-130.46936, 54.439099], [-130.470499, 54.439032], [-130.472817, 54.439237], [-130.47362, 54.439219], [-130.474028, 54.439851], [-130.474254, 54.441009], [-130.474677, 54.442064], [-130.474898, 54.442195], [-130.475491, 54.442369], [-130.475774, 54.442536], [-130.476857, 54.44352], [-130.477234, 54.443678], [-130.477648, 54.443636], [-130.478056, 54.44337], [-130.478133, 54.443387], [-130.478497, 54.443185], [-130.479029, 54.442585], [-130.480296, 54.441771], [-130.480464, 54.441613], [-130.478168, 54.441667], [-130.477331, 54.427715], [-130.486736, 54.427729], [-130.486237, 54.427002], [-130.485822, 54.426629], [-130.48539, 54.4257], [-130.485501, 54.424961], [-130.485896, 54.424381], [-130.485891, 54.424264], [-130.484967, 54.423817], [-130.484313, 54.423636], [-130.483464, 54.423189], [-130.482212, 54.422692], [-130.481576, 54.422151], [-130.481234, 54.421607], [-130.481163, 54.42132], [-130.48042, 54.420439], [-130.480422, 54.420017], [-130.480291, 54.419839], [-130.480247, 54.419443], [-130.48003, 54.418979], [-130.479663, 54.41866], [-130.479539, 54.418213], [-130.479186, 54.417848], [-130.477951, 54.416893], [-130.477739, 54.416608], [-130.477532, 54.41599], [-130.477545, 54.415504], [-130.478014, 54.414669], [-130.328642, 54.414367], [-130.330157, 54.447671], [-130.333686, 54.550443], [-130.380739, 54.55068], [-130.399904, 54.551559], [-130.430659, 54.552238], [-130.430902, 54.557886], [-130.428857, 54.557859], [-130.427518, 54.55799], [-130.427845, 54.558132], [-130.428352, 54.558494], [-130.427785, 54.559557], [-130.429492, 54.559713], [-130.429314, 54.559187], [-130.430195, 54.559218], [-130.430223, 54.561547], [-130.430133, 54.561638], [-130.430783, 54.561683], [-130.432051, 54.561651], [-130.433804, 54.561773], [-130.433727, 54.561362], [-130.433886, 54.560631], [-130.433743, 54.560543], [-130.433293, 54.560467], [-130.433307, 54.559991], [-130.433694, 54.560004], [-130.434066, 54.559577], [-130.434522, 54.559806], [-130.434981, 54.560545], [-130.435395, 54.5609], [-130.435705, 54.561302], [-130.435618, 54.561491], [-130.435016, 54.561984], [-130.435008, 54.562209], [-130.435219, 54.562467], [-130.435632, 54.56275], [-130.436163, 54.562895], [-130.437349, 54.5637], [-130.438097, 54.563844], [-130.438808, 54.563781]]]]}, "properties": {"name": "Lax Kw'alaams 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Lax Kw'alaams 1", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947809", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.488641, 54.403566], [-130.489227, 54.403559], [-130.489525, 54.403771], [-130.489836, 54.403803], [-130.490146, 54.40344], [-130.490178, 54.403081], [-130.489256, 54.402696], [-130.489217, 54.402454], [-130.489087, 54.402293], [-130.48856, 54.40221], [-130.488244, 54.40198], [-130.487411, 54.401946], [-130.486631, 54.401695], [-130.485375, 54.400604], [-130.484866, 54.399729], [-130.484174, 54.398939], [-130.484249, 54.398856], [-130.484709, 54.39877], [-130.484828, 54.398678], [-130.485119, 54.398217], [-130.484986, 54.397931], [-130.483718, 54.39738], [-130.48128, 54.395981], [-130.480324, 54.395077], [-130.480086, 54.394936], [-130.479243, 54.39411], [-130.47923, 54.39295], [-130.47876, 54.392299], [-130.478514, 54.392285], [-130.478115, 54.392362], [-130.477006, 54.392339], [-130.476573, 54.392264], [-130.476042, 54.392063], [-130.474801, 54.390982], [-130.47426, 54.390053], [-130.474262, 54.38885], [-130.474351, 54.388354], [-130.47461, 54.38738], [-130.475085, 54.386439], [-130.475584, 54.385768], [-130.476431, 54.384903], [-130.476775, 54.384621], [-130.477983, 54.383941], [-130.478684, 54.383348], [-130.478885, 54.383328], [-130.478891, 54.383095], [-130.478299, 54.382445], [-130.478018, 54.381964], [-130.477572, 54.38152], [-130.477361, 54.381198], [-130.476374, 54.380293], [-130.476294, 54.379765], [-130.475896, 54.379006], [-130.475887, 54.378735], [-130.475894, 54.377674], [-130.476237, 54.376898], [-130.476239, 54.376143], [-130.474369, 54.375482], [-130.47418, 54.375368], [-130.474191, 54.37525], [-130.474746, 54.374849], [-130.47507, 54.374863], [-130.475366, 54.374948], [-130.475966, 54.375373], [-130.476592, 54.375249], [-130.477528, 54.375165], [-130.479836, 54.375146], [-130.481261, 54.374921], [-130.482913, 54.375009], [-130.483111, 54.37498], [-130.484037, 54.374609], [-130.484428, 54.374334], [-130.48434, 54.374075], [-130.483771, 54.373641], [-130.483034, 54.37285], [-130.482448, 54.372399], [-130.481791, 54.37123], [-130.481805, 54.369063], [-130.481957, 54.36863], [-130.483077, 54.367663], [-130.484229, 54.367138], [-130.484736, 54.367104], [-130.48516, 54.366956], [-130.485391, 54.366476], [-130.486111, 54.365963], [-130.487422, 54.365588], [-130.487709, 54.365459], [-130.487541, 54.365093], [-130.487527, 54.363438], [-130.487479, 54.363385], [-130.487281, 54.363378], [-130.484405, 54.363468], [-130.484085, 54.363553], [-130.482812, 54.363703], [-130.482493, 54.363851], [-130.481896, 54.363931], [-130.481354, 54.364224], [-130.480654, 54.364458], [-130.479516, 54.364463], [-130.478957, 54.364344], [-130.475766, 54.363385], [-130.474318, 54.362864], [-130.473099, 54.361944], [-130.47298, 54.361235], [-130.472608, 54.361105], [-130.471928, 54.361086], [-130.470669, 54.360742], [-130.470294, 54.360539], [-130.469819, 54.360159], [-130.46908, 54.359772], [-130.468626, 54.359122], [-130.468376, 54.358963], [-130.468053, 54.358984], [-130.467873, 54.359095], [-130.467611, 54.359117], [-130.466887, 54.359107], [-130.466285, 54.359033], [-130.464691, 54.35836], [-130.464386, 54.358004], [-130.463909, 54.35713], [-130.463838, 54.356483], [-130.462483, 54.355592], [-130.462108, 54.355417], [-130.461741, 54.355016], [-130.461723, 54.353642], [-130.461556, 54.353302], [-130.461547, 54.351729], [-130.46126, 54.351446], [-130.460915, 54.351305], [-130.460722, 54.351039], [-130.460569, 54.350627], [-130.460556, 54.350277], [-130.460715, 54.349565], [-130.460612, 54.349224], [-130.460262, 54.348922], [-130.459681, 54.348166], [-130.459321, 54.347999], [-130.459158, 54.34775], [-130.459257, 54.347478], [-130.459788, 54.347266], [-130.460328, 54.347267], [-130.461164, 54.347465], [-130.461365, 54.347462], [-130.461516, 54.34737], [-130.461371, 54.347219], [-130.460668, 54.346887], [-130.460393, 54.346557], [-130.460516, 54.346061], [-130.460846, 54.345823], [-130.461288, 54.345711], [-130.461594, 54.345716], [-130.461833, 54.345947], [-130.462844, 54.346222], [-130.464723, 54.346262], [-130.465362, 54.346505], [-130.465577, 54.346504], [-130.465728, 54.346411], [-130.465687, 54.346161], [-130.465261, 54.345842], [-130.465263, 54.345016], [-130.465585, 54.34458], [-130.465855, 54.343912], [-130.465942, 54.343344], [-130.465567, 54.343195], [-130.46529, 54.343198], [-130.465056, 54.343296], [-130.462668, 54.342398], [-130.462763, 54.342187], [-130.462683, 54.342099], [-130.462385, 54.342003], [-130.461691, 54.341948], [-130.461473, 54.341852], [-130.461469, 54.341709], [-130.461663, 54.341589], [-130.462756, 54.341576], [-130.462876, 54.341529], [-130.462891, 54.341044], [-130.46313, 54.340834], [-130.463139, 54.338937], [-130.463587, 54.338572], [-130.463499, 54.338224], [-130.463519, 54.337081], [-130.463284, 54.33694], [-130.463104, 54.336691], [-130.461895, 54.335932], [-130.46147, 54.335731], [-130.46139, 54.335589], [-130.460502, 54.335716], [-130.460205, 54.336007], [-130.459975, 54.336037], [-130.459698, 54.336022], [-130.459399, 54.335874], [-130.457308, 54.335835], [-130.456642, 54.335727], [-130.456257, 54.335731], [-130.455876, 54.335835], [-130.453784, 54.335842], [-130.453149, 54.335706], [-130.452502, 54.335704], [-130.451998, 54.335774], [-130.450856, 54.336093], [-130.449358, 54.336389], [-130.448051, 54.336369], [-130.447549, 54.336519], [-130.447027, 54.336534], [-130.446225, 54.336472], [-130.444516, 54.336456], [-130.443583, 54.336163], [-130.442934, 54.335657], [-130.442042, 54.335659], [-130.44118, 54.336029], [-130.441152, 54.336137], [-130.441451, 54.336314], [-130.442419, 54.336346], [-130.442624, 54.336443], [-130.442573, 54.337208], [-130.442288, 54.337805], [-130.441858, 54.338278], [-130.440973, 54.338953], [-130.440247, 54.339276], [-130.439799, 54.339272], [-130.439596, 54.339203], [-130.439596, 54.339131], [-130.439375, 54.338981], [-130.438944, 54.338977], [-130.438362, 54.339074], [-130.438017, 54.339293], [-130.438208, 54.33948], [-130.438142, 54.339777], [-130.43743, 54.340119], [-130.436482, 54.340283], [-130.435721, 54.340525], [-130.434494, 54.340621], [-130.434178, 54.340787], [-130.433532, 54.340838], [-130.433259, 54.340968], [-130.432781, 54.341343], [-130.432341, 54.341959], [-130.432454, 54.342129], [-130.432471, 54.342631], [-130.432694, 54.342808], [-130.432875, 54.343148], [-130.433593, 54.343499], [-130.43377, 54.343712], [-130.433764, 54.344], [-130.433514, 54.344299], [-130.433508, 54.344597], [-130.433815, 54.345016], [-130.433828, 54.345356], [-130.433483, 54.345585], [-130.432897, 54.345574], [-130.431113, 54.345128], [-130.430143, 54.345148], [-130.429596, 54.34529], [-130.429201, 54.345474], [-130.428679, 54.345481], [-130.427743, 54.345132], [-130.427444, 54.344974], [-130.427143, 54.344662], [-130.426754, 54.344551], [-130.425265, 54.344623], [-130.42418, 54.34486], [-130.423118, 54.344836], [-130.423125, 54.344576], [-130.423315, 54.344312], [-130.423148, 54.343937], [-130.423169, 54.343667], [-130.423944, 54.343406], [-130.425851, 54.343366], [-130.427017, 54.342795], [-130.427329, 54.342503], [-130.427281, 54.342028], [-130.426873, 54.341781], [-130.426648, 54.341486], [-130.426642, 54.339977], [-130.426743, 54.339804], [-130.426735, 54.339571], [-130.426593, 54.339456], [-130.425923, 54.339212], [-130.425492, 54.339199], [-130.425248, 54.339292], [-130.425276, 54.340047], [-130.424791, 54.34025], [-130.424799, 54.340475], [-130.424617, 54.340593], [-130.424006, 54.340736], [-130.422638, 54.340716], [-130.422036, 54.340256], [-130.421955, 54.339699], [-130.421828, 54.339594], [-130.421349, 54.339537], [-130.421062, 54.339675], [-130.421041, 54.340799], [-130.421121, 54.340905], [-130.421557, 54.341062], [-130.422219, 54.341072], [-130.4225, 54.341222], [-130.423883, 54.341654], [-130.423746, 54.342573], [-130.423255, 54.342983], [-130.423068, 54.342985], [-130.422834, 54.342889], [-130.422423, 54.342579], [-130.421861, 54.342325], [-130.421335, 54.342233], [-130.420673, 54.34225], [-130.419957, 54.342402], [-130.419501, 54.34255], [-130.419218, 54.342842], [-130.419035, 54.342844], [-130.418588, 54.342426], [-130.418007, 54.342056], [-130.417398, 54.34183], [-130.41638, 54.341734], [-130.416591, 54.341615], [-130.417124, 54.341464], [-130.41741, 54.341281], [-130.417267, 54.34068], [-130.416655, 54.340329], [-130.416647, 54.340095], [-130.417563, 54.339904], [-130.417758, 54.339776], [-130.41777, 54.339641], [-130.417623, 54.339436], [-130.417169, 54.339208], [-130.416596, 54.339098], [-130.412442, 54.339092], [-130.412248, 54.339266], [-130.411445, 54.340928], [-130.411416, 54.341845], [-130.411327, 54.341999], [-130.41105, 54.341985], [-130.410149, 54.341744], [-130.409624, 54.341687], [-130.409634, 54.341516], [-130.410068, 54.341179], [-130.410571, 54.341002], [-130.410646, 54.340911], [-130.410494, 54.340554], [-130.410075, 54.340019], [-130.40989, 54.339572], [-130.409651, 54.339287], [-130.409635, 54.338856], [-130.409876, 54.338674], [-130.410272, 54.338578], [-130.410295, 54.338363], [-130.410475, 54.338235], [-130.410841, 54.338141], [-130.410894, 54.337852], [-130.411163, 54.337624], [-130.41167, 54.33761], [-130.41179, 54.337932], [-130.411927, 54.337939], [-130.411988, 54.337875], [-130.412772, 54.337875], [-130.414741, 54.338365], [-130.41654, 54.33837], [-130.417047, 54.338319], [-130.417689, 54.338187], [-130.41825, 54.337946], [-130.418322, 54.337855], [-130.418313, 54.337577], [-130.417613, 54.336902], [-130.41762, 54.336641], [-130.417949, 54.336358], [-130.418435, 54.336218], [-130.41948, 54.336143], [-130.42297, 54.336101], [-130.423011, 54.335562], [-130.422899, 54.335428], [-130.422294, 54.33521], [-130.421845, 54.33518], [-130.421643, 54.335092], [-130.42139, 54.334915], [-130.42118, 54.334622], [-130.420072, 54.334589], [-130.418982, 54.334207], [-130.4182, 54.333847], [-130.417422, 54.333596], [-130.416389, 54.333491], [-130.414343, 54.333488], [-130.414159, 54.333464], [-130.413687, 54.333155], [-130.413619, 54.333029], [-130.413679, 54.33293], [-130.414406, 54.332652], [-130.415311, 54.332515], [-130.41698, 54.33237], [-130.417209, 54.332295], [-130.417449, 54.332112], [-130.417693, 54.331607], [-130.41769, 54.331058], [-130.417121, 54.330651], [-130.416326, 54.330319], [-130.416806, 54.329945], [-130.417113, 54.329483], [-130.417147, 54.328683], [-130.416904, 54.327904], [-130.416623, 54.327808], [-130.416224, 54.327794], [-130.415844, 54.327969], [-130.41557, 54.327974], [-130.414793, 54.327767], [-130.414347, 54.327754], [-130.414208, 54.328214], [-130.413924, 54.328406], [-130.413584, 54.328409], [-130.41354, 54.328473], [-130.414459, 54.329244], [-130.414406, 54.329506], [-130.414058, 54.32969], [-130.412936, 54.329694], [-130.412072, 54.329579], [-130.411615, 54.329295], [-130.41042, 54.328951], [-130.409668, 54.32859], [-130.409016, 54.328382], [-130.408756, 54.328395], [-130.40833, 54.328552], [-130.407729, 54.328532], [-130.408117, 54.328204], [-130.408145, 54.328096], [-130.408795, 54.327774], [-130.409316, 54.327714], [-130.410135, 54.327354], [-130.410372, 54.327099], [-130.410271, 54.326867], [-130.409748, 54.326441], [-130.409751, 54.325119], [-130.409589, 54.324916], [-130.410142, 54.324873], [-130.410275, 54.324718], [-130.410253, 54.324521], [-130.409946, 54.324084], [-130.409446, 54.323838], [-130.409327, 54.323534], [-130.408905, 54.323323], [-130.408963, 54.323259], [-130.409717, 54.323232], [-130.409138, 54.322935], [-130.408562, 54.322761], [-130.408178, 54.322775], [-130.407987, 54.32301], [-130.407754, 54.322932], [-130.407519, 54.322782], [-130.407492, 54.322009], [-130.407413, 54.321939], [-130.406896, 54.321701], [-130.40661, 54.321399], [-130.405757, 54.321194], [-130.405067, 54.320815], [-130.404574, 54.320803], [-130.40456, 54.321261], [-130.404039, 54.321312], [-130.403607, 54.321256], [-130.403187, 54.321107], [-130.40282, 54.320751], [-130.402538, 54.320585], [-130.402107, 54.320608], [-130.40164, 54.32082], [-130.401808, 54.321761], [-130.402279, 54.321989], [-130.402769, 54.322415], [-130.403295, 54.322534], [-130.403147, 54.322663], [-130.402382, 54.322769], [-130.402296, 54.322977], [-130.402351, 54.323257], [-130.40278, 54.323664], [-130.403265, 54.323839], [-130.40365, 54.323852], [-130.403793, 54.323563], [-130.404009, 54.32356], [-130.404003, 54.324333], [-130.404321, 54.324608], [-130.404383, 54.325111], [-130.404733, 54.325421], [-130.404778, 54.32632], [-130.404912, 54.326623], [-130.404928, 54.327118], [-130.404708, 54.3274], [-130.404808, 54.328063], [-130.404773, 54.328459], [-130.403219, 54.329331], [-130.401843, 54.329985], [-130.401402, 54.330143], [-130.400911, 54.330166], [-130.400972, 54.3779], [-130.448087, 54.378399], [-130.44913, 54.404634], [-130.486792, 54.404688], [-130.487261, 54.40415], [-130.487757, 54.403838], [-130.488091, 54.403726], [-130.488508, 54.403722], [-130.488641, 54.403566]]], [[[-130.447332, 54.32819], [-130.44759, 54.328052], [-130.447594, 54.327287], [-130.447917, 54.326861], [-130.447926, 54.326682], [-130.447894, 54.326628], [-130.447538, 54.326551], [-130.447275, 54.326545], [-130.447081, 54.326719], [-130.446895, 54.326712], [-130.446739, 54.326615], [-130.446808, 54.326398], [-130.447076, 54.326125], [-130.447665, 54.325822], [-130.448894, 54.32578], [-130.448643, 54.324795], [-130.448152, 54.324396], [-130.447384, 54.323541], [-130.447374, 54.323218], [-130.448304, 54.322569], [-130.449314, 54.322422], [-130.449378, 54.322089], [-130.450508, 54.321419], [-130.450939, 54.321424], [-130.451107, 54.321377], [-130.451468, 54.321191], [-130.451524, 54.321021], [-130.451689, 54.320911], [-130.451857, 54.320837], [-130.452239, 54.320823], [-130.452724, 54.320602], [-130.452885, 54.320365], [-130.452943, 54.319817], [-130.453213, 54.319643], [-130.453766, 54.319582], [-130.454135, 54.319173], [-130.454145, 54.319048], [-130.45394, 54.31887], [-130.453942, 54.318484], [-130.454072, 54.318293], [-130.454409, 54.318262], [-130.454582, 54.318323], [-130.45492, 54.3183], [-130.455171, 54.318047], [-130.455533, 54.317862], [-130.456082, 54.317685], [-130.456571, 54.317652], [-130.456728, 54.317291], [-130.457878, 54.316782], [-130.458027, 54.316637], [-130.45799, 54.315999], [-130.457781, 54.315777], [-130.457778, 54.314824], [-130.457665, 54.314663], [-130.457671, 54.314358], [-130.457325, 54.314164], [-130.457321, 54.313643], [-130.457013, 54.313143], [-130.456645, 54.312789], [-130.456349, 54.312226], [-130.456327, 54.31202], [-130.456538, 54.311881], [-130.456667, 54.311655], [-130.457661, 54.31105], [-130.457799, 54.3106], [-130.457989, 54.310336], [-130.457902, 54.310014], [-130.45748, 54.309435], [-130.457213, 54.309239], [-130.456886, 54.309108], [-130.45686, 54.308831], [-130.456125, 54.30848], [-130.455902, 54.30824], [-130.455021, 54.308134], [-130.454651, 54.308139], [-130.454471, 54.308204], [-130.453763, 54.308186], [-130.453197, 54.307824], [-130.452964, 54.307773], [-130.451829, 54.307839], [-130.45185, 54.30801], [-130.451994, 54.308153], [-130.452002, 54.308395], [-130.451772, 54.308371], [-130.451193, 54.308099], [-130.451218, 54.307973], [-130.451702, 54.307697], [-130.452856, 54.307332], [-130.453361, 54.307246], [-130.453617, 54.307099], [-130.45363, 54.307009], [-130.453285, 54.306815], [-130.452498, 54.306771], [-130.451641, 54.306431], [-130.451209, 54.306355], [-130.451206, 54.305878], [-130.450715, 54.305417], [-130.428785, 54.304904], [-130.422512, 54.305366], [-130.406882, 54.305946], [-130.40025, 54.306009], [-130.399752, 54.310341], [-130.400532, 54.310882], [-130.400629, 54.311007], [-130.40067, 54.311339], [-130.401238, 54.311763], [-130.40144, 54.311833], [-130.401935, 54.311854], [-130.402126, 54.312122], [-130.402425, 54.312326], [-130.403446, 54.312494], [-130.403525, 54.312546], [-130.403436, 54.312655], [-130.403519, 54.312851], [-130.403993, 54.312766], [-130.404721, 54.312443], [-130.405066, 54.312196], [-130.406069, 54.311879], [-130.406263, 54.311678], [-130.406446, 54.311676], [-130.406977, 54.31141], [-130.407559, 54.310953], [-130.407583, 54.310738], [-130.407856, 54.3106], [-130.407856, 54.309745], [-130.407656, 54.308804], [-130.407661, 54.307636], [-130.407829, 54.307085], [-130.407829, 54.306699], [-130.409118, 54.306576], [-130.409675, 54.30629], [-130.409815, 54.306307], [-130.409925, 54.306862], [-130.409791, 54.306954], [-130.40927, 54.307005], [-130.409209, 54.307069], [-130.409451, 54.307389], [-130.410365, 54.308035], [-130.41039, 54.308268], [-130.409344, 54.308308], [-130.409094, 54.308643], [-130.409083, 54.308787], [-130.408763, 54.308818], [-130.408723, 54.308972], [-130.409105, 54.309389], [-130.40968, 54.309553], [-130.409699, 54.309678], [-130.410561, 54.309732], [-130.410307, 54.30995], [-130.410314, 54.310113], [-130.410407, 54.310147], [-130.410232, 54.3104], [-130.410237, 54.31058], [-130.410345, 54.311487], [-130.410619, 54.311851], [-130.411383, 54.312616], [-130.411602, 54.312695], [-130.411955, 54.312699], [-130.412235, 54.312821], [-130.413168, 54.313558], [-130.41365, 54.313749], [-130.413873, 54.313908], [-130.414273, 54.314389], [-130.41461, 54.315302], [-130.414887, 54.315703], [-130.415582, 54.316271], [-130.41592, 54.316275], [-130.416394, 54.316144], [-130.416767, 54.315852], [-130.41677, 54.315502], [-130.417405, 54.31518], [-130.417618, 54.315131], [-130.417536, 54.315412], [-130.417124, 54.315956], [-130.417135, 54.316261], [-130.417458, 54.317201], [-130.418328, 54.317874], [-130.418396, 54.31853], [-130.418647, 54.318644], [-130.419338, 54.318671], [-130.419805, 54.318792], [-130.420349, 54.319001], [-130.420763, 54.319383], [-130.420681, 54.31968], [-130.419665, 54.320519], [-130.41907, 54.320723], [-130.417927, 54.320979], [-130.417276, 54.321248], [-130.416009, 54.321523], [-130.414766, 54.322042], [-130.414647, 54.32216], [-130.414655, 54.322393], [-130.414836, 54.322714], [-130.414963, 54.322856], [-130.415574, 54.323182], [-130.416535, 54.323386], [-130.417528, 54.323708], [-130.418039, 54.323801], [-130.418399, 54.323949], [-130.419561, 54.324178], [-130.420796, 54.324379], [-130.421551, 54.324424], [-130.422852, 54.324688], [-130.423787, 54.324587], [-130.423974, 54.324621], [-130.424037, 54.325141], [-130.424323, 54.32583], [-130.424496, 54.32599], [-130.42449, 54.326269], [-130.424684, 54.326518], [-130.425402, 54.326841], [-130.426049, 54.326843], [-130.426359, 54.32692], [-130.426564, 54.327071], [-130.426571, 54.32725], [-130.426788, 54.327364], [-130.426896, 54.327364], [-130.426985, 54.327273], [-130.42714, 54.32728], [-130.427581, 54.327993], [-130.427991, 54.328294], [-130.428863, 54.328626], [-130.428871, 54.328859], [-130.428983, 54.329002], [-130.429484, 54.329265], [-130.432915, 54.329288], [-130.433497, 54.329191], [-130.433813, 54.329062], [-130.434977, 54.328895], [-130.435674, 54.328572], [-130.435673, 54.32814], [-130.435561, 54.328016], [-130.435233, 54.327858], [-130.435183, 54.327741], [-130.435836, 54.327482], [-130.435971, 54.32695], [-130.436348, 54.326757], [-130.436808, 54.326706], [-130.436897, 54.326589], [-130.436915, 54.326264], [-130.437162, 54.32627], [-130.437368, 54.326484], [-130.43738, 54.32678], [-130.437322, 54.326863], [-130.437107, 54.326928], [-130.437108, 54.327341], [-130.437328, 54.327455], [-130.43762, 54.327496], [-130.437872, 54.3277], [-130.438196, 54.327741], [-130.438515, 54.327585], [-130.438561, 54.32717], [-130.438654, 54.32716], [-130.438809, 54.327232], [-130.438774, 54.327546], [-130.438549, 54.328106], [-130.438384, 54.328234], [-130.437292, 54.328264], [-130.437284, 54.328445], [-130.436238, 54.328439], [-130.436181, 54.328556], [-130.436376, 54.328851], [-130.436308, 54.329975], [-130.435706, 54.330386], [-130.43552, 54.330748], [-130.435472, 54.331198], [-130.435748, 54.331159], [-130.436856, 54.330274], [-130.438546, 54.329328], [-130.440706, 54.328646], [-130.441594, 54.328563], [-130.442274, 54.32869], [-130.442608, 54.328543], [-130.442891, 54.328261], [-130.443455, 54.328137], [-130.444151, 54.327805], [-130.444381, 54.327757], [-130.444964, 54.327768], [-130.445245, 54.327845], [-130.445807, 54.32809], [-130.445969, 54.328314], [-130.446368, 54.328318], [-130.447332, 54.32819]]]]}, "properties": {"name": "S1/2 Tsimpsean 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "S1/2 Tsimpsean 2", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947810", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-132.141289, 53.999983], [-132.140946, 53.999117], [-132.142934, 53.998974], [-132.143054, 53.998779], [-132.143031, 53.998464], [-132.142453, 53.997749], [-132.141232, 53.9971], [-132.140446, 53.996757], [-132.140309, 53.996772], [-132.139793, 53.996507], [-132.139091, 53.996059], [-132.138441, 53.995532], [-132.136918, 53.99456], [-132.136378, 53.994008], [-132.135893, 53.994236], [-132.135535, 53.993854], [-132.135469, 53.993067], [-132.13606, 53.992111], [-132.136165, 53.991695], [-132.136044, 53.991281], [-132.135371, 53.990332], [-132.135211, 53.989961], [-132.134428, 53.985923], [-132.129887, 53.986148], [-132.132325, 53.999996], [-132.141289, 53.999983]]]]}, "properties": {"name": "Tlaa Gaa Aawtlaas 28", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Tlaa Gaa Aawtlaas 28", "economic_region_id": "5960", "census_division_code": "5947", "census_subdivision_code": "5947823", "regional_district_aka_census_division": "North Coast"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.537687, 54.106734], [-128.537937, 54.107489], [-128.601863, 54.107416], [-128.611702, 54.105943], [-128.614764, 54.105273], [-128.61426, 54.105699], [-128.613235, 54.10621], [-128.612615, 54.106627], [-128.611218, 54.107741], [-128.610671, 54.108416], [-128.610791, 54.109436], [-128.61206, 54.109991], [-128.675793, 54.107995], [-128.718201, 54.107915], [-128.723469, 54.107991], [-128.725285, 54.107967], [-128.725467, 54.100876], [-128.726266, 53.963017], [-128.784924, 53.962925], [-128.78526, 53.933357], [-128.907968, 53.933423], [-128.908078, 53.798727], [-128.836886, 53.79864], [-128.793444, 53.845423], [-128.696157, 53.949459], [-128.654715, 53.994694], [-128.61965, 53.994837], [-128.538761, 53.994395], [-128.537687, 54.106734]]]]}, "properties": {"name": "Kitimat", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949005", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.585287, 54.488193], [-128.588979, 54.488306], [-128.592083, 54.488604], [-128.595806, 54.488577], [-128.595456, 54.483692], [-128.59818, 54.483381], [-128.597515, 54.479449], [-128.596935, 54.476933], [-128.597813, 54.473974], [-128.598878, 54.458789], [-128.650097, 54.457684], [-128.650009, 54.458214], [-128.652897, 54.458207], [-128.655017, 54.446306], [-128.662273, 54.446204], [-128.664198, 54.43485], [-128.637203, 54.435226], [-128.637208, 54.434214], [-128.588009, 54.434009], [-128.588253, 54.425656], [-128.550629, 54.425631], [-128.548623, 54.439508], [-128.533009, 54.439661], [-128.532893, 54.441008], [-128.53259, 54.44172], [-128.532012, 54.442548], [-128.524899, 54.448971], [-128.523894, 54.45009], [-128.521889, 54.452833], [-128.521496, 54.453503], [-128.521228, 54.454278], [-128.521151, 54.455043], [-128.52131, 54.45595], [-128.514163, 54.456062], [-128.514075, 54.466339], [-128.540719, 54.467494], [-128.540268, 54.475708], [-128.559818, 54.47668], [-128.558009, 54.492439], [-128.569475, 54.492398], [-128.570093, 54.492106], [-128.570907, 54.491504], [-128.57139, 54.490933], [-128.571701, 54.490308], [-128.571663, 54.489354], [-128.58139, 54.489275], [-128.581663, 54.489004], [-128.585287, 54.488193]]], [[[-128.636319, 54.541249], [-128.636059, 54.541065], [-128.63653, 54.532113], [-128.642411, 54.533172], [-128.651448, 54.53223], [-128.651307, 54.531666], [-128.651526, 54.531017], [-128.65142, 54.530783], [-128.650399, 54.530482], [-128.648685, 54.530079], [-128.647265, 54.530007], [-128.646044, 54.529691], [-128.645391, 54.528946], [-128.645587, 54.527832], [-128.646567, 54.527231], [-128.648451, 54.526592], [-128.649791, 54.526007], [-128.650409, 54.524779], [-128.652119, 54.52361], [-128.656324, 54.523144], [-128.657427, 54.522817], [-128.658006, 54.522816], [-128.658185, 54.522637], [-128.658593, 54.522452], [-128.660529, 54.521712], [-128.661252, 54.521192], [-128.661398, 54.520075], [-128.66246, 54.519561], [-128.663959, 54.519125], [-128.664437, 54.51874], [-128.664429, 54.516748], [-128.66386, 54.516863], [-128.663327, 54.516883], [-128.658595, 54.51795], [-128.645947, 54.51716], [-128.642024, 54.515382], [-128.641653, 54.513972], [-128.642048, 54.512505], [-128.640838, 54.508014], [-128.639883, 54.507162], [-128.639587, 54.506619], [-128.636725, 54.506075], [-128.636288, 54.505869], [-128.635974, 54.505874], [-128.635169, 54.506132], [-128.634594, 54.506566], [-128.633844, 54.507709], [-128.631922, 54.508433], [-128.630524, 54.508795], [-128.627707, 54.509024], [-128.626884, 54.508989], [-128.626082, 54.508927], [-128.625265, 54.508787], [-128.624575, 54.508521], [-128.62259, 54.507348], [-128.622148, 54.506898], [-128.622058, 54.506611], [-128.622141, 54.506372], [-128.622065, 54.506245], [-128.622288, 54.505836], [-128.622679, 54.504613], [-128.623426, 54.504202], [-128.623674, 54.503888], [-128.624313, 54.503513], [-128.62523, 54.502644], [-128.625419, 54.502348], [-128.626398, 54.501659], [-128.626476, 54.501471], [-128.626394, 54.500293], [-128.626584, 54.499826], [-128.626709, 54.499727], [-128.626293, 54.499591], [-128.626278, 54.499484], [-128.626003, 54.499303], [-128.625897, 54.499032], [-128.626084, 54.498701], [-128.62641, 54.498486], [-128.624998, 54.498421], [-128.624187, 54.497407], [-128.621931, 54.496994], [-128.618681, 54.497459], [-128.615348, 54.497701], [-128.612718, 54.497142], [-128.602264, 54.497939], [-128.595038, 54.497329], [-128.594022, 54.497968], [-128.592772, 54.498559], [-128.592102, 54.499033], [-128.591462, 54.499978], [-128.591147, 54.500284], [-128.589556, 54.501285], [-128.588342, 54.502407], [-128.587129, 54.503121], [-128.583793, 54.50441], [-128.582217, 54.505114], [-128.582388, 54.504607], [-128.582638, 54.504311], [-128.582649, 54.504127], [-128.580405, 54.50464], [-128.580782, 54.503054], [-128.580924, 54.502866], [-128.581009, 54.502103], [-128.58115, 54.501959], [-128.581354, 54.501414], [-128.582256, 54.500464], [-128.584698, 54.498412], [-128.587264, 54.496487], [-128.584635, 54.495539], [-128.580957, 54.495808], [-128.579115, 54.496445], [-128.577323, 54.49695], [-128.573692, 54.49759], [-128.569758, 54.501103], [-128.569106, 54.503601], [-128.566863, 54.50666], [-128.564335, 54.514173], [-128.562508, 54.514915], [-128.562096, 54.516058], [-128.562276, 54.516394], [-128.562165, 54.517126], [-128.561789, 54.517475], [-128.561458, 54.517663], [-128.561823, 54.520147], [-128.572287, 54.520088], [-128.573979, 54.521154], [-128.574431, 54.523044], [-128.574635, 54.527718], [-128.579797, 54.527842], [-128.579767, 54.538393], [-128.581369, 54.538423], [-128.582029, 54.538561], [-128.582258, 54.538556], [-128.582677, 54.538442], [-128.586024, 54.538385], [-128.58576, 54.542337], [-128.586642, 54.542301], [-128.591832, 54.541826], [-128.594221, 54.542154], [-128.598097, 54.542273], [-128.612063, 54.542906], [-128.615399, 54.542689], [-128.620071, 54.542802], [-128.624137, 54.543061], [-128.62436, 54.541144], [-128.636319, 54.541249]]]]}, "properties": {"name": "Terrace", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Terrace", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949011", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.410262, 54.889414], [-129.42167, 54.886257], [-129.433408, 54.885694], [-129.441362, 54.883777], [-129.444963, 54.88031], [-129.451772, 54.876173], [-129.449912, 54.872586], [-129.429992, 54.853959], [-129.430762, 54.850033], [-129.442475, 54.849761], [-129.455565, 54.847614], [-129.464148, 54.845], [-129.468111, 54.838533], [-129.475111, 54.829272], [-129.479468, 54.820796], [-129.472305, 54.817221], [-129.455787, 54.817233], [-129.445546, 54.814179], [-129.434919, 54.811493], [-129.42018, 54.812522], [-129.407523, 54.810052], [-129.396128, 54.798047], [-129.38472, 54.79134], [-129.381344, 54.784391], [-129.384295, 54.779142], [-129.396334, 54.772777], [-129.404009, 54.766539], [-129.41624, 54.75444], [-129.418688, 54.750771], [-129.423289, 54.747075], [-129.436155, 54.731876], [-129.44949, 54.714494], [-129.450871, 54.712148], [-129.452755, 54.710003], [-129.455639, 54.702703], [-129.456302, 54.697965], [-129.453816, 54.692858], [-129.450485, 54.690675], [-129.450403, 54.686236], [-129.451688, 54.681329], [-129.45866, 54.674151], [-129.460826, 54.669537], [-129.46252, 54.66357], [-129.463938, 54.660288], [-129.467023, 54.635979], [-129.470066, 54.62738], [-129.474586, 54.618674], [-129.480648, 54.613007], [-129.486685, 54.609465], [-129.493722, 54.605654], [-129.501218, 54.603284], [-129.518299, 54.599759], [-129.533098, 54.597458], [-129.537492, 54.597391], [-129.541536, 54.598325], [-129.543983, 54.59988], [-129.546014, 54.602568], [-129.549428, 54.612606], [-129.553689, 54.622915], [-129.557348, 54.627712], [-129.563021, 54.632157], [-129.568448, 54.635605], [-129.575838, 54.637627], [-129.583752, 54.638653], [-129.59261, 54.6388], [-129.609784, 54.636949], [-129.625247, 54.634487], [-129.646048, 54.629128], [-129.662464, 54.620919], [-129.672848, 54.612987], [-129.687173, 54.594763], [-129.678368, 54.593299], [-129.669383, 54.590261], [-129.662999, 54.586214], [-129.658224, 54.580941], [-129.656058, 54.575532], [-129.65607, 54.568506], [-129.658619, 54.556878], [-129.663137, 54.549383], [-129.673226, 54.53948], [-129.684259, 54.531275], [-129.692287, 54.527263], [-129.675998, 54.481942], [-129.658194, 54.486834], [-129.653696, 54.487212], [-129.598393, 54.473269], [-129.581198, 54.467797], [-129.565148, 54.4607], [-129.52505, 54.438547], [-129.520813, 54.435261], [-129.51754, 54.431756], [-129.513859, 54.424818], [-129.510148, 54.406768], [-129.506095, 54.397483], [-129.496737, 54.384855], [-129.486, 54.374357], [-129.47566, 54.368227], [-129.466052, 54.365416], [-129.454875, 54.364547], [-129.446435, 54.36575], [-129.438696, 54.366243], [-129.430684, 54.364834], [-129.418165, 54.359773], [-129.409345, 54.355306], [-129.399212, 54.351347], [-129.392527, 54.350771], [-129.385493, 54.351216], [-129.371117, 54.356504], [-129.371136, 54.308256], [-129.371507, 54.306106], [-129.371567, 54.304671], [-129.371759, 54.303622], [-129.372033, 54.298988], [-129.372143, 54.28986], [-129.37276, 54.178067], [-129.374682, 53.997563], [-129.37485, 53.940722], [-129.373484, 53.796541], [-129.362504, 53.78453], [-129.349903, 53.792343], [-129.331608, 53.800744], [-129.312468, 53.807344], [-129.303005, 53.818635], [-129.30641, 53.84505], [-129.301729, 53.865794], [-129.282989, 53.882616], [-129.274002, 53.898905], [-129.254222, 53.916238], [-129.245187, 53.928994], [-129.24017, 53.936865], [-129.241433, 53.943926], [-129.251186, 53.957339], [-129.269441, 53.962683], [-129.279332, 53.968482], [-129.283194, 53.97358], [-129.281696, 53.981158], [-129.283722, 53.986521], [-129.292231, 53.991941], [-129.299816, 53.99725], [-129.308052, 53.997804], [-129.310917, 54.003549], [-129.307467, 54.01652], [-129.303375, 54.023581], [-129.287201, 54.030981], [-129.270861, 54.031169], [-129.255161, 54.029059], [-129.244013, 54.029891], [-129.235746, 54.028643], [-129.215387, 54.035928], [-129.208328, 54.034678], [-129.120621, 54.035114], [-129.0741, 54.046682], [-129.038695, 54.059554], [-129.016626, 54.075715], [-128.990084, 54.09077], [-128.975137, 54.097527], [-128.955702, 54.106024], [-128.950235, 54.108194], [-129.047128, 54.209578], [-129.021104, 54.215243], [-129.014517, 54.219281], [-129.009417, 54.226891], [-129.005354, 54.235876], [-129.000723, 54.243006], [-128.995952, 54.252264], [-128.991677, 54.258365], [-128.984942, 54.264529], [-128.975884, 54.268185], [-128.969075, 54.26934], [-128.955817, 54.270621], [-128.94222, 54.270256], [-128.933309, 54.270446], [-128.916834, 54.276516], [-128.90646, 54.281706], [-128.894458, 54.285451], [-128.87999, 54.289258], [-128.867772, 54.291011], [-128.850766, 54.290763], [-128.826935, 54.296208], [-128.812863, 54.301305], [-128.795109, 54.300423], [-128.781644, 54.29435], [-128.768054, 54.289506], [-128.751514, 54.286088], [-128.740623, 54.282279], [-128.733224, 54.281564], [-128.725372, 54.279546], [-128.719121, 54.280755], [-128.714912, 54.285607], [-128.703007, 54.299], [-128.695989, 54.308607], [-128.689056, 54.3142], [-128.682177, 54.317118], [-128.673256, 54.315502], [-128.666363, 54.311636], [-128.658466, 54.302836], [-128.655928, 54.300357], [-128.656303, 54.299801], [-128.655917, 54.299827], [-128.655872, 54.299781], [-128.655876, 54.299422], [-128.655632, 54.299189], [-128.655648, 54.299081], [-128.655801, 54.298999], [-128.655773, 54.298893], [-128.65539, 54.298747], [-128.655283, 54.298631], [-128.655179, 54.298225], [-128.654678, 54.297558], [-128.654711, 54.297037], [-128.654668, 54.296759], [-128.654486, 54.296426], [-128.654519, 54.296318], [-128.65435, 54.296182], [-128.654259, 54.295957], [-128.654091, 54.295876], [-128.653862, 54.295858], [-128.653819, 54.295543], [-128.653635, 54.295326], [-128.653223, 54.295002], [-128.652792, 54.295064], [-128.652735, 54.29447], [-128.652183, 54.294415], [-128.651924, 54.294127], [-128.651572, 54.29417], [-128.651401, 54.294332], [-128.651215, 54.294366], [-128.650986, 54.294331], [-128.650756, 54.294213], [-128.650651, 54.293988], [-128.650224, 54.293681], [-128.649765, 54.293213], [-128.649661, 54.292961], [-128.649336, 54.293059], [-128.649168, 54.292986], [-128.649093, 54.292824], [-128.647681, 54.292676], [-128.647636, 54.292469], [-128.647346, 54.29237], [-128.647099, 54.292558], [-128.646776, 54.292593], [-128.646719, 54.292071], [-128.646149, 54.292132], [-128.646121, 54.291854], [-128.645629, 54.291763], [-128.645462, 54.291591], [-128.645389, 54.291259], [-128.644714, 54.291112], [-128.644702, 54.290772], [-128.644289, 54.290572], [-128.644091, 54.290374], [-128.644062, 54.290203], [-128.643663, 54.290085], [-128.643604, 54.289735], [-128.643805, 54.289528], [-128.643916, 54.289178], [-128.644147, 54.289044], [-128.643811, 54.288899], [-128.643842, 54.288738], [-128.643768, 54.28871], [-128.64349, 54.288772], [-128.64341, 54.288486], [-128.632441, 54.288156], [-128.62118, 54.292813], [-128.610497, 54.29695], [-128.609829, 54.297429], [-128.609461, 54.298075], [-128.605428, 54.298166], [-128.558648, 54.302279], [-128.553155, 54.302298], [-128.53755, 54.303401], [-128.494319, 54.299537], [-128.493417, 54.299499], [-128.478859, 54.308327], [-128.459104, 54.318576], [-128.452728, 54.322429], [-128.440449, 54.32613], [-128.422723, 54.33046], [-128.403806, 54.332609], [-128.36933, 54.339564], [-128.349735, 54.345538], [-128.334428, 54.351319], [-128.323368, 54.355016], [-128.3124, 54.355098], [-128.297687, 54.352535], [-128.239831, 54.330576], [-128.226434, 54.329183], [-128.203791, 54.331265], [-128.183747, 54.332365], [-128.167793, 54.330496], [-128.154729, 54.32754], [-128.139895, 54.323343], [-128.120319, 54.318543], [-128.118486, 54.313884], [-128.118085, 54.309046], [-128.129124, 54.300884], [-128.131224, 54.297961], [-128.124676, 54.292337], [-128.114199, 54.287951], [-128.101278, 54.280203], [-128.084879, 54.274474], [-128.071836, 54.265111], [-128.076549, 54.250412], [-128.075078, 54.241229], [-128.068155, 54.233375], [-128.059507, 54.228781], [-128.045977, 54.228636], [-128.029869, 54.232074], [-128.021131, 54.232978], [-128.00639, 54.229479], [-127.987908, 54.222156], [-127.976546, 54.212051], [-127.980058, 54.202204], [-127.990394, 54.190051], [-127.998908, 54.180708], [-127.999866, 54.172998], [-127.993831, 54.167429], [-127.989448, 54.160767], [-127.988545, 54.154702], [-127.999974, 54.145812], [-128.011042, 54.141444], [-128.019459, 54.136877], [-128.022896, 54.131085], [-128.022063, 54.128076], [-128.014385, 54.123601], [-128.006979, 54.121097], [-127.999302, 54.117614], [-127.989398, 54.109382], [-127.982966, 54.100146], [-127.985167, 54.087663], [-127.992, 54.078323], [-128.011934, 54.068256], [-128.022549, 54.067616], [-128.040523, 54.070405], [-128.055848, 54.070377], [-128.069202, 54.064077], [-128.075243, 54.056574], [-128.070801, 54.048736], [-128.049221, 54.041258], [-128.044776, 54.036055], [-128.045183, 54.029741], [-128.049581, 54.022641], [-128.053761, 53.989653], [-128.042908, 53.979982], [-128.041693, 53.96953], [-128.049365, 53.958346], [-128.041071, 53.948426], [-128.046679, 53.939441], [-128.056741, 53.932338], [-128.057525, 53.926351], [-128.066954, 53.915688], [-128.07367, 53.901773], [-128.070655, 53.896744], [-128.056665, 53.900149], [-128.042231, 53.894215], [-128.03123, 53.892205], [-128.013548, 53.893674], [-128.001663, 53.891285], [-128.00092, 53.919727], [-128.000235, 53.995003], [-127.991809, 53.993359], [-127.983878, 53.995332], [-127.978235, 53.994179], [-127.968949, 53.997808], [-127.960984, 54.000295], [-127.944714, 54.005156], [-127.943814, 54.009585], [-127.93492, 54.020359], [-127.925104, 54.021805], [-127.917292, 54.021011], [-127.90768, 54.02089], [-127.907675, 54.024982], [-127.901335, 54.02438], [-127.898471, 54.021731], [-127.89254, 54.022091], [-127.888599, 54.032489], [-127.883518, 54.037736], [-127.87672, 54.041393], [-127.865174, 54.045336], [-127.861154, 54.049811], [-127.863188, 54.054627], [-127.859548, 54.062678], [-127.853679, 54.068958], [-127.853668, 54.073051], [-127.845344, 54.077644], [-127.840944, 54.084118], [-127.829501, 54.088756], [-127.826018, 54.101947], [-127.804755, 54.11098], [-127.787428, 54.112225], [-127.748418, 54.115951], [-127.736788, 54.121013], [-127.721679, 54.124021], [-127.718372, 54.12859], [-127.719321, 54.134177], [-127.726361, 54.13602], [-127.728763, 54.138841], [-127.724836, 54.144011], [-127.739875, 54.153283], [-127.738734, 54.159277], [-127.745425, 54.166078], [-127.757904, 54.17296], [-127.759932, 54.177779], [-127.757615, 54.185325], [-127.750424, 54.193936], [-127.75, 54.204122], [-127.738988, 54.211546], [-127.731639, 54.209439], [-127.726481, 54.204661], [-127.717561, 54.204621], [-127.70559, 54.206453], [-127.698167, 54.216625], [-127.683027, 54.22111], [-127.677802, 54.221556], [-127.665981, 54.230007], [-127.660003, 54.237411], [-127.658778, 54.241575], [-127.655166, 54.245878], [-127.672852, 54.25642], [-127.674873, 54.261241], [-127.669918, 54.26901], [-127.665534, 54.27731], [-127.65953, 54.281753], [-127.653199, 54.280003], [-127.652225, 54.288528], [-127.644836, 54.290509], [-127.641218, 54.294812], [-127.643969, 54.298251], [-127.641158, 54.304483], [-127.60941, 54.310974], [-127.603749, 54.307489], [-127.593808, 54.313001], [-127.593197, 54.316564], [-127.589583, 54.323829], [-127.575953, 54.334772], [-127.568516, 54.342326], [-127.565127, 54.350988], [-127.568009, 54.359574], [-127.562044, 54.365843], [-127.554857, 54.366253], [-127.548708, 54.369991], [-127.548781, 54.374786], [-127.545885, 54.379185], [-127.536585, 54.379996], [-127.532315, 54.383415], [-127.535577, 54.38704], [-127.545113, 54.39059], [-127.55339, 54.392377], [-127.553803, 54.396306], [-127.561795, 54.397825], [-127.561423, 54.405752], [-127.548105, 54.418791], [-127.5524, 54.422782], [-127.547165, 54.42915], [-127.539519, 54.43269], [-127.537755, 54.43519], [-127.54411, 54.43991], [-127.554643, 54.44644], [-127.575447, 54.449205], [-127.580427, 54.451461], [-127.584076, 54.450123], [-127.605695, 54.444787], [-127.621401, 54.444589], [-127.632684, 54.449727], [-127.641825, 54.459365], [-127.651975, 54.456377], [-127.693911, 54.463614], [-127.713485, 54.460494], [-127.737616, 54.444534], [-127.757707, 54.44307], [-127.779569, 54.467359], [-127.775273, 54.480476], [-127.768954, 54.484666], [-127.7678, 54.490671], [-127.774105, 54.49766], [-127.766004, 54.50698], [-127.773191, 54.510662], [-127.776515, 54.517256], [-127.771211, 54.525916], [-127.760946, 54.531193], [-127.757223, 54.537778], [-127.729386, 54.546923], [-127.723752, 54.545279], [-127.710875, 54.548161], [-127.70026, 54.547234], [-127.694645, 54.555625], [-127.698536, 54.562755], [-127.687348, 54.578403], [-127.695767, 54.584989], [-127.715552, 54.592617], [-127.738662, 54.592701], [-127.755036, 54.595996], [-127.777658, 54.604439], [-127.791826, 54.599239], [-127.803985, 54.599239], [-127.810142, 54.606658], [-127.800715, 54.61684], [-127.799535, 54.623979], [-127.796702, 54.627258], [-127.797178, 54.631122], [-127.799646, 54.632468], [-127.79955, 54.673926], [-127.799982, 54.786822], [-127.800355, 54.814822], [-127.801046, 54.999467], [-127.817159, 54.999495], [-127.845216, 54.999822], [-127.877833, 54.999913], [-127.999056, 54.999653], [-128.24825, 54.999948], [-128.338281, 55.000121], [-128.34699, 55.000089], [-128.357244, 55.000146], [-128.499592, 55.000251], [-128.639652, 55.000493], [-128.74982, 55.000323], [-128.927284, 55.00022], [-128.916488, 54.991304], [-128.908173, 54.984712], [-128.908859, 54.976823], [-128.911449, 54.975225], [-128.911465, 54.974686], [-128.911919, 54.974416], [-128.912248, 54.973939], [-128.912623, 54.973706], [-128.912734, 54.973347], [-128.913501, 54.972548], [-128.913721, 54.972108], [-128.91419, 54.97156], [-128.914799, 54.971174], [-128.915597, 54.970941], [-128.916425, 54.970555], [-128.916926, 54.970232], [-128.9171, 54.97007], [-128.917302, 54.969586], [-128.917584, 54.969244], [-128.919353, 54.967717], [-128.919853, 54.96707], [-128.920418, 54.966747], [-128.921167, 54.966586], [-128.92145, 54.966461], [-128.92367, 54.964853], [-128.924671, 54.964369], [-128.925124, 54.96383], [-128.925813, 54.963291], [-128.926033, 54.962796], [-128.926407, 54.962519], [-128.92686, 54.962231], [-128.927485, 54.962024], [-128.929065, 54.961901], [-128.929719, 54.961648], [-128.930406, 54.961559], [-128.930939, 54.961398], [-128.931328, 54.961416], [-128.93169, 54.961506], [-128.94469, 54.94976], [-128.966435, 54.942493], [-128.966317, 54.942767], [-128.973203, 54.940683], [-128.987113, 54.936793], [-129.039485, 54.93037], [-129.054661, 54.929363], [-129.098107, 54.919189], [-129.101817, 54.918154], [-129.122313, 54.915494], [-129.136638, 54.912086], [-129.148037, 54.905903], [-129.155345, 54.9009], [-129.165365, 54.892345], [-129.174314, 54.88688], [-129.193903, 54.883794], [-129.252733, 54.883445], [-129.270667, 54.882459], [-129.297488, 54.882796], [-129.323217, 54.888792], [-129.342121, 54.894298], [-129.354267, 54.900443], [-129.359976, 54.902289], [-129.373922, 54.90744], [-129.38489, 54.897718], [-129.394035, 54.892626], [-129.410262, 54.889414]], [[-128.690799, 54.508776], [-128.688819, 54.538845], [-128.660652, 54.537662], [-128.649885, 54.537065], [-128.649225, 54.536527], [-128.648718, 54.535774], [-128.648734, 54.535591], [-128.649682, 54.534991], [-128.650543, 54.534741], [-128.65147, 54.534634], [-128.653386, 54.53464], [-128.654441, 54.534339], [-128.655782, 54.534179], [-128.656793, 54.533458], [-128.65723, 54.532607], [-128.657521, 54.531301], [-128.657172, 54.52954], [-128.656576, 54.528856], [-128.65547, 54.528151], [-128.65556, 54.528061], [-128.655497, 54.527877], [-128.65468, 54.526879], [-128.655453, 54.526306], [-128.656203, 54.525009], [-128.657234, 54.524221], [-128.658006, 54.522816], [-128.657427, 54.522817], [-128.656324, 54.523144], [-128.652119, 54.52361], [-128.650409, 54.524779], [-128.649791, 54.526007], [-128.648451, 54.526592], [-128.646567, 54.527231], [-128.645587, 54.527832], [-128.645391, 54.528946], [-128.646044, 54.529691], [-128.647265, 54.530007], [-128.648685, 54.530079], [-128.650399, 54.530482], [-128.65142, 54.530783], [-128.651526, 54.531017], [-128.651307, 54.531666], [-128.651448, 54.53223], [-128.642411, 54.533172], [-128.63653, 54.532113], [-128.636059, 54.541065], [-128.636319, 54.541249], [-128.62436, 54.541144], [-128.624137, 54.543061], [-128.620071, 54.542802], [-128.615399, 54.542689], [-128.612063, 54.542906], [-128.598097, 54.542273], [-128.594221, 54.542154], [-128.591832, 54.541826], [-128.586642, 54.542301], [-128.58576, 54.542337], [-128.586024, 54.538385], [-128.582677, 54.538442], [-128.582258, 54.538556], [-128.582029, 54.538561], [-128.581369, 54.538423], [-128.579767, 54.538393], [-128.579797, 54.527842], [-128.574635, 54.527718], [-128.574431, 54.523044], [-128.573979, 54.521154], [-128.572287, 54.520088], [-128.561823, 54.520147], [-128.561458, 54.517663], [-128.562131, 54.517188], [-128.562276, 54.516394], [-128.560528, 54.516632], [-128.559368, 54.515249], [-128.557003, 54.514794], [-128.554937, 54.515194], [-128.552741, 54.518139], [-128.550525, 54.51927], [-128.547546, 54.522242], [-128.54294, 54.525109], [-128.535789, 54.529816], [-128.532044, 54.529995], [-128.52947, 54.531013], [-128.522397, 54.533057], [-128.50348, 54.538], [-128.497453, 54.540798], [-128.496828, 54.538774], [-128.49727, 54.537019], [-128.497247, 54.536756], [-128.495859, 54.531231], [-128.502836, 54.531706], [-128.503039, 54.528017], [-128.511018, 54.527796], [-128.511336, 54.527703], [-128.512111, 54.527695], [-128.513418, 54.526292], [-128.514583, 54.525491], [-128.508238, 54.525488], [-128.508496, 54.518766], [-128.502017, 54.518278], [-128.501433, 54.510181], [-128.501618, 54.510177], [-128.501346, 54.504849], [-128.500011, 54.502086], [-128.496019, 54.501944], [-128.49575, 54.50145], [-128.495532, 54.49976], [-128.496344, 54.498625], [-128.498263, 54.49866], [-128.509962, 54.498248], [-128.51, 54.492234], [-128.52988, 54.492411], [-128.558009, 54.492439], [-128.559818, 54.47668], [-128.540268, 54.475708], [-128.540719, 54.467494], [-128.514075, 54.466339], [-128.514163, 54.456062], [-128.52131, 54.45595], [-128.521151, 54.455043], [-128.521228, 54.454278], [-128.521496, 54.453503], [-128.521889, 54.452833], [-128.523894, 54.45009], [-128.524899, 54.448971], [-128.532012, 54.442548], [-128.53259, 54.44172], [-128.532893, 54.441008], [-128.533009, 54.439661], [-128.548623, 54.439508], [-128.550629, 54.425631], [-128.588253, 54.425656], [-128.588009, 54.434009], [-128.637208, 54.434214], [-128.637203, 54.435226], [-128.664198, 54.43485], [-128.662273, 54.446204], [-128.655017, 54.446306], [-128.652897, 54.458207], [-128.650009, 54.458214], [-128.650097, 54.457684], [-128.598878, 54.458789], [-128.597813, 54.473974], [-128.596935, 54.476933], [-128.597515, 54.479449], [-128.59818, 54.483381], [-128.595456, 54.483692], [-128.595806, 54.488577], [-128.603372, 54.488025], [-128.603379, 54.488461], [-128.603018, 54.488943], [-128.602123, 54.489288], [-128.599595, 54.489691], [-128.596779, 54.490573], [-128.594265, 54.490706], [-128.593843, 54.490775], [-128.593457, 54.490902], [-128.592403, 54.491549], [-128.586123, 54.493805], [-128.58611, 54.494071], [-128.584466, 54.494764], [-128.583574, 54.494921], [-128.583536, 54.495619], [-128.584635, 54.495539], [-128.587264, 54.496487], [-128.584698, 54.498412], [-128.582256, 54.500464], [-128.581354, 54.501414], [-128.58115, 54.501959], [-128.581009, 54.502103], [-128.580924, 54.502866], [-128.580782, 54.503054], [-128.580405, 54.50464], [-128.582649, 54.504127], [-128.582638, 54.504311], [-128.582388, 54.504607], [-128.582217, 54.505114], [-128.583793, 54.50441], [-128.587129, 54.503121], [-128.588342, 54.502407], [-128.589556, 54.501285], [-128.591147, 54.500284], [-128.591462, 54.499978], [-128.592102, 54.499033], [-128.592772, 54.498559], [-128.594022, 54.497968], [-128.595038, 54.497329], [-128.602264, 54.497939], [-128.612718, 54.497142], [-128.615348, 54.497701], [-128.618681, 54.497459], [-128.621931, 54.496994], [-128.624187, 54.497407], [-128.624998, 54.498421], [-128.62641, 54.498486], [-128.626039, 54.498755], [-128.625914, 54.498926], [-128.625912, 54.499141], [-128.626003, 54.499303], [-128.626278, 54.499484], [-128.626293, 54.499591], [-128.626709, 54.499727], [-128.626584, 54.499826], [-128.626394, 54.500293], [-128.626495, 54.501192], [-128.626444, 54.501605], [-128.625449, 54.502321], [-128.62523, 54.502644], [-128.624313, 54.503513], [-128.623674, 54.503888], [-128.623426, 54.504202], [-128.622727, 54.50456], [-128.622288, 54.505836], [-128.622065, 54.506245], [-128.622141, 54.506372], [-128.622058, 54.506611], [-128.622148, 54.506898], [-128.62259, 54.507348], [-128.623908, 54.508138], [-128.624575, 54.508521], [-128.625265, 54.508787], [-128.626082, 54.508927], [-128.627707, 54.509024], [-128.630524, 54.508795], [-128.631922, 54.508433], [-128.633844, 54.507709], [-128.634594, 54.506566], [-128.635169, 54.506132], [-128.635974, 54.505874], [-128.636288, 54.505869], [-128.636725, 54.506075], [-128.639587, 54.506619], [-128.639883, 54.507162], [-128.640838, 54.508014], [-128.642048, 54.512505], [-128.641653, 54.513972], [-128.642024, 54.515382], [-128.645947, 54.51716], [-128.658595, 54.51795], [-128.663327, 54.516883], [-128.66386, 54.516863], [-128.664429, 54.516748], [-128.664437, 54.51874], [-128.663959, 54.519125], [-128.66246, 54.519561], [-128.661398, 54.520075], [-128.661258, 54.521163], [-128.661786, 54.521379], [-128.662109, 54.521149], [-128.662127, 54.520763], [-128.661819, 54.520601], [-128.661774, 54.520447], [-128.661899, 54.520313], [-128.662301, 54.520332], [-128.6627, 54.520594], [-128.663764, 54.520938], [-128.665245, 54.521024], [-128.666156, 54.521196], [-128.66685, 54.521398], [-128.667192, 54.522244], [-128.670922, 54.521842], [-128.672564, 54.521504], [-128.678657, 54.51953], [-128.67928, 54.519219], [-128.679946, 54.518743], [-128.680499, 54.518075], [-128.683222, 54.512368], [-128.681669, 54.510846], [-128.681891, 54.510428], [-128.681972, 54.509987], [-128.682424, 54.509395], [-128.683113, 54.508222], [-128.690799, 54.508776]], [[-128.439632, 54.622407], [-128.42863, 54.622287], [-128.427747, 54.621462], [-128.426564, 54.622245], [-128.407726, 54.621992], [-128.407788, 54.608157], [-128.407465, 54.59752], [-128.408504, 54.597562], [-128.409246, 54.598004], [-128.410894, 54.597676], [-128.411171, 54.597874], [-128.411865, 54.59918], [-128.412537, 54.599875], [-128.412735, 54.599993], [-128.414783, 54.600866], [-128.416725, 54.601388], [-128.417805, 54.601573], [-128.41865, 54.601849], [-128.418827, 54.603701], [-128.421951, 54.603607], [-128.421911, 54.601874], [-128.419862, 54.598491], [-128.419426, 54.598632], [-128.418994, 54.59863], [-128.41799, 54.598428], [-128.417606, 54.598183], [-128.41721, 54.597696], [-128.417019, 54.597012], [-128.417068, 54.596814], [-128.417396, 54.596672], [-128.439301, 54.596169], [-128.439632, 54.622407]], [[-128.487303, 54.552852], [-128.487792, 54.554554], [-128.489656, 54.564211], [-128.460633, 54.566962], [-128.460887, 54.569176], [-128.435083, 54.570001], [-128.434875, 54.569443], [-128.434871, 54.568661], [-128.434989, 54.568087], [-128.435303, 54.567719], [-128.437733, 54.566553], [-128.441262, 54.565168], [-128.444289, 54.564345], [-128.445204, 54.564153], [-128.446442, 54.564005], [-128.447093, 54.563838], [-128.449916, 54.563311], [-128.450553, 54.563081], [-128.452167, 54.562683], [-128.453174, 54.562544], [-128.453998, 54.562296], [-128.455857, 54.562], [-128.456741, 54.561787], [-128.459062, 54.561689], [-128.460225, 54.561488], [-128.462514, 54.56139], [-128.463578, 54.561407], [-128.462587, 54.560139], [-128.467128, 54.559684], [-128.470278, 54.558785], [-128.474056, 54.557122], [-128.474402, 54.556844], [-128.478912, 54.554136], [-128.483582, 54.551744], [-128.487303, 54.552852]]]]}, "properties": {"name": "Kitimat-Stikine C (Part 1)", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat-Stikine C (Part 1)", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949013", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.535789, 54.529816], [-128.54294, 54.525109], [-128.547546, 54.522242], [-128.550525, 54.51927], [-128.552741, 54.518139], [-128.554937, 54.515194], [-128.557003, 54.514794], [-128.559368, 54.515249], [-128.560528, 54.516632], [-128.562276, 54.516394], [-128.562096, 54.516058], [-128.562508, 54.514915], [-128.564335, 54.514173], [-128.566863, 54.50666], [-128.569106, 54.503601], [-128.569758, 54.501103], [-128.573692, 54.49759], [-128.577323, 54.49695], [-128.579115, 54.496445], [-128.580957, 54.495808], [-128.583536, 54.495619], [-128.583574, 54.494921], [-128.582944, 54.495031], [-128.583104, 54.491508], [-128.586228, 54.491559], [-128.586123, 54.493805], [-128.592403, 54.491549], [-128.593457, 54.490902], [-128.593843, 54.490775], [-128.594265, 54.490706], [-128.596779, 54.490573], [-128.599595, 54.489691], [-128.602123, 54.489288], [-128.603018, 54.488943], [-128.603379, 54.488461], [-128.603372, 54.488025], [-128.595806, 54.488577], [-128.592083, 54.488604], [-128.588979, 54.488306], [-128.585287, 54.488193], [-128.581663, 54.489004], [-128.58139, 54.489275], [-128.571663, 54.489354], [-128.571701, 54.490308], [-128.57139, 54.490933], [-128.570907, 54.491504], [-128.570093, 54.492106], [-128.569475, 54.492398], [-128.558009, 54.492439], [-128.52988, 54.492411], [-128.51, 54.492234], [-128.509962, 54.498248], [-128.498263, 54.49866], [-128.496344, 54.498625], [-128.495532, 54.49976], [-128.49575, 54.50145], [-128.496019, 54.501944], [-128.500011, 54.502086], [-128.501346, 54.504849], [-128.501618, 54.510177], [-128.501433, 54.510181], [-128.502017, 54.518278], [-128.508496, 54.518766], [-128.508238, 54.525488], [-128.514583, 54.525491], [-128.513418, 54.526292], [-128.512111, 54.527695], [-128.511336, 54.527703], [-128.511018, 54.527796], [-128.503039, 54.528017], [-128.502836, 54.531706], [-128.495859, 54.531231], [-128.497247, 54.536756], [-128.49727, 54.537019], [-128.496828, 54.538774], [-128.497453, 54.540798], [-128.50348, 54.538], [-128.522397, 54.533057], [-128.52947, 54.531013], [-128.532044, 54.529995], [-128.535789, 54.529816]]]]}, "properties": {"name": "Kitimat-Stikine E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat-Stikine E", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949018", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.933309, 54.270446], [-128.94222, 54.270256], [-128.955817, 54.270621], [-128.969075, 54.26934], [-128.975884, 54.268185], [-128.984942, 54.264529], [-128.991677, 54.258365], [-128.995952, 54.252264], [-129.000723, 54.243006], [-129.005354, 54.235876], [-129.009417, 54.226891], [-129.014517, 54.219281], [-129.021104, 54.215243], [-129.047128, 54.209578], [-128.950235, 54.108194], [-128.955702, 54.106024], [-128.975137, 54.097527], [-128.990084, 54.09077], [-129.016626, 54.075715], [-129.038695, 54.059554], [-129.0741, 54.046682], [-129.120621, 54.035114], [-129.208328, 54.034678], [-129.215387, 54.035928], [-129.235746, 54.028643], [-129.244013, 54.029891], [-129.255161, 54.029059], [-129.270861, 54.031169], [-129.287201, 54.030981], [-129.303375, 54.023581], [-129.307467, 54.01652], [-129.310917, 54.003549], [-129.308052, 53.997804], [-129.299816, 53.99725], [-129.292231, 53.991941], [-129.283722, 53.986521], [-129.281696, 53.981158], [-129.283194, 53.97358], [-129.279332, 53.968482], [-129.269441, 53.962683], [-129.251186, 53.957339], [-129.241433, 53.943926], [-129.24017, 53.936865], [-129.245187, 53.928994], [-129.254222, 53.916238], [-129.274002, 53.898905], [-129.282989, 53.882616], [-129.301729, 53.865794], [-129.30641, 53.84505], [-129.303005, 53.818635], [-129.312468, 53.807344], [-129.331608, 53.800744], [-129.349903, 53.792343], [-129.362504, 53.78453], [-129.308085, 53.724217], [-129.294285, 53.70924], [-129.295391, 53.703564], [-129.295053, 53.700868], [-129.295163, 53.699251], [-129.294745, 53.698053], [-129.257898, 53.65977], [-129.232649, 53.631027], [-129.205183, 53.632686], [-129.21389, 53.606878], [-129.207802, 53.572843], [-129.197932, 53.478213], [-129.201838, 53.412088], [-129.19865, 53.399283], [-129.182715, 53.360087], [-129.187862, 53.342305], [-129.202187, 53.327301], [-129.219607, 53.334079], [-129.250191, 53.339733], [-129.280529, 53.348125], [-129.289836, 53.348047], [-129.301562, 53.343693], [-129.307163, 53.336822], [-129.303425, 53.302254], [-129.323025, 53.295568], [-129.338045, 53.294185], [-129.38869, 53.288111], [-129.402929, 53.283057], [-129.416647, 53.27556], [-129.432244, 53.262336], [-129.437621, 53.24146], [-129.433887, 53.230709], [-129.43169, 53.22232], [-129.433822, 53.215832], [-129.438375, 53.211018], [-129.447, 53.207875], [-129.460447, 53.204112], [-129.475555, 53.202328], [-129.517191, 53.199103], [-129.560824, 53.193223], [-129.627381, 53.171886], [-129.673235, 53.154253], [-129.718288, 53.147205], [-129.78104, 53.136241], [-129.817178, 53.126148], [-129.865559, 53.105374], [-129.949411, 53.072997], [-130.022652, 53.048865], [-130.102462, 53.028596], [-130.010415, 53.003267], [-130.002904, 53.000549], [-129.945361, 52.983525], [-129.909529, 52.955698], [-129.846136, 52.903323], [-129.721819, 52.79337], [-129.691818, 52.762565], [-129.659566, 52.727726], [-129.617768, 52.656738], [-129.540031, 52.53735], [-129.487589, 52.492712], [-129.447323, 52.468889], [-129.395392, 52.443241], [-129.325377, 52.430593], [-129.261132, 52.429087], [-129.161814, 52.416097], [-129.075959, 52.411408], [-128.945877, 52.40051], [-128.87036, 52.388225], [-128.849245, 52.385555], [-128.815595, 52.370195], [-128.804369, 52.363514], [-128.790222, 52.318804], [-128.749282, 52.193255], [-128.729585, 52.202083], [-128.693038, 52.20876], [-128.666938, 52.215683], [-128.634974, 52.229411], [-128.619221, 52.241977], [-128.594858, 52.264226], [-128.527938, 52.371043], [-128.492007, 52.405779], [-128.464698, 52.430838], [-128.458962, 52.437511], [-128.436669, 52.447484], [-128.39848, 52.461282], [-128.374748, 52.471036], [-128.348918, 52.476481], [-128.320879, 52.477969], [-128.282663, 52.482429], [-128.256644, 52.482531], [-128.234883, 52.482452], [-128.212244, 52.483344], [-128.211743, 52.483321], [-128.176943, 52.484159], [-128.176887, 52.492132], [-128.180246, 52.502739], [-128.194439, 52.513767], [-128.189397, 52.531547], [-128.185861, 52.551633], [-128.18561, 52.552558], [-128.178075, 52.553384], [-128.174684, 52.557773], [-128.176532, 52.560718], [-128.180014, 52.568739], [-128.175782, 52.574898], [-128.174818, 52.575479], [-128.19687, 52.580504], [-128.192277, 52.585179], [-128.181523, 52.592093], [-128.179885, 52.601237], [-128.189603, 52.607362], [-128.176007, 52.612538], [-128.171418, 52.615558], [-128.164828, 52.616918], [-128.160355, 52.620501], [-128.160109, 52.620616], [-128.146187, 52.625142], [-128.131755, 52.613305], [-128.125633, 52.617341], [-128.108397, 52.649288], [-128.121207, 52.6497], [-128.13614, 52.652591], [-128.146014, 52.658659], [-128.15136, 52.665593], [-128.152101, 52.671916], [-128.145979, 52.67971], [-128.134796, 52.686464], [-128.124906, 52.684592], [-128.118806, 52.679739], [-128.10934, 52.679206], [-128.082969, 52.68704], [-128.065618, 52.698277], [-128.041272, 52.710866], [-128.023821, 52.717321], [-128.011682, 52.719483], [-128.008537, 52.713125], [-128.001282, 52.694728], [-127.996511, 52.696703], [-127.994325, 52.702717], [-127.996231, 52.708281], [-127.996084, 52.714261], [-127.991714, 52.716314], [-127.974607, 52.708961], [-127.967935, 52.708227], [-127.960217, 52.711196], [-127.938529, 52.721035], [-127.928506, 52.717077], [-127.925016, 52.708487], [-127.921633, 52.697144], [-127.918275, 52.688203], [-127.919003, 52.681293], [-127.917032, 52.678441], [-127.912506, 52.675976], [-127.907404, 52.676738], [-127.890229, 52.679589], [-127.868573, 52.678606], [-127.851775, 52.674251], [-127.849563, 52.67501], [-127.851335, 52.662594], [-127.843001, 52.662096], [-127.832587, 52.666716], [-127.820292, 52.664191], [-127.809766, 52.664498], [-127.803064, 52.667437], [-127.798891, 52.672429], [-127.786985, 52.673595], [-127.780727, 52.677736], [-127.784214, 52.683208], [-127.78591, 52.684481], [-127.778451, 52.688659], [-127.782173, 52.696553], [-127.765468, 52.702876], [-127.759677, 52.708572], [-127.751896, 52.711121], [-127.746539, 52.713275], [-127.739334, 52.717881], [-127.730147, 52.716754], [-127.719961, 52.718754], [-127.719204, 52.726249], [-127.715128, 52.73118], [-127.718533, 52.736021], [-127.718257, 52.74244], [-127.715376, 52.751482], [-127.711889, 52.755699], [-127.714588, 52.759598], [-127.717717, 52.765842], [-127.718793, 52.770949], [-127.71092, 52.778054], [-127.699946, 52.783852], [-127.691697, 52.789081], [-127.67922, 52.791339], [-127.67388, 52.788393], [-127.671825, 52.788916], [-127.660116, 52.785888], [-127.641142, 52.780441], [-127.623917, 52.781246], [-127.609087, 52.783442], [-127.597208, 52.77932], [-127.594788, 52.773321], [-127.597967, 52.76172], [-127.612231, 52.751648], [-127.611273, 52.747975], [-127.617368, 52.741027], [-127.616383, 52.732748], [-127.596333, 52.72714], [-127.588301, 52.722134], [-127.5627, 52.690969], [-127.548929, 52.695066], [-127.530617, 52.6911], [-127.522631, 52.695293], [-127.503135, 52.692926], [-127.490453, 52.692569], [-127.47506, 52.697847], [-127.471158, 52.705082], [-127.448694, 52.713613], [-127.420177, 52.727307], [-127.401012, 52.736295], [-127.3881, 52.74952], [-127.373781, 52.750338], [-127.368833, 52.755658], [-127.381526, 52.769816], [-127.379727, 52.783716], [-127.368541, 52.797716], [-127.352827, 52.80825], [-127.339439, 52.798923], [-127.325109, 52.795131], [-127.310167, 52.799042], [-127.308364, 52.803743], [-127.30117, 52.813348], [-127.29254, 52.816024], [-127.278467, 52.811553], [-127.251978, 52.818074], [-127.242679, 52.8164], [-127.222246, 52.822356], [-127.217009, 52.828342], [-127.228103, 52.829906], [-127.222967, 52.850777], [-127.233789, 52.857615], [-127.249408, 52.862646], [-127.255777, 52.873457], [-127.268666, 52.879518], [-127.281041, 52.886921], [-127.2778, 52.897617], [-127.284029, 52.90274], [-127.293007, 52.904529], [-127.297662, 52.90766], [-127.286064, 52.93701], [-127.27088, 52.944434], [-127.249605, 52.952414], [-127.236885, 52.961776], [-127.240966, 52.969434], [-127.249652, 52.972778], [-127.256401, 52.978861], [-127.256923, 52.988143], [-127.248066, 52.994334], [-127.24515, 52.998333], [-127.243159, 53.002414], [-127.242281, 53.006133], [-127.243546, 53.016421], [-127.257143, 53.027941], [-127.29051, 53.049839], [-127.30538, 53.058807], [-127.322198, 53.067565], [-127.341742, 53.074779], [-127.358694, 53.081147], [-127.375807, 53.086414], [-127.415188, 53.087333], [-127.434133, 53.088523], [-127.443529, 53.091775], [-127.443084, 53.093737], [-127.448756, 53.099073], [-127.446131, 53.105742], [-127.440381, 53.111197], [-127.438266, 53.116328], [-127.434714, 53.117928], [-127.439572, 53.1226], [-127.451111, 53.123187], [-127.459709, 53.119874], [-127.472789, 53.124326], [-127.475325, 53.131294], [-127.476647, 53.139244], [-127.466169, 53.142671], [-127.457002, 53.14306], [-127.452143, 53.146273], [-127.450486, 53.151606], [-127.446516, 53.15639], [-127.44174, 53.160878], [-127.433417, 53.160648], [-127.423838, 53.161001], [-127.411549, 53.159347], [-127.404836, 53.164486], [-127.406485, 53.17683], [-127.405827, 53.184325], [-127.39675, 53.185643], [-127.387763, 53.181548], [-127.368836, 53.179131], [-127.360623, 53.17721], [-127.355188, 53.179995], [-127.353212, 53.186711], [-127.356457, 53.193784], [-127.361675, 53.201799], [-127.364206, 53.221167], [-127.361256, 53.228323], [-127.35084, 53.23243], [-127.340237, 53.231212], [-127.334094, 53.228715], [-127.329368, 53.227161], [-127.32453, 53.220053], [-127.319856, 53.214388], [-127.306789, 53.215481], [-127.295327, 53.22374], [-127.292401, 53.233295], [-127.28132, 53.250554], [-127.275609, 53.258405], [-127.270904, 53.268479], [-127.266862, 53.277526], [-127.266623, 53.284373], [-127.262756, 53.290235], [-127.255182, 53.2967], [-127.258691, 53.302152], [-127.268223, 53.305879], [-127.281042, 53.309422], [-127.287761, 53.314198], [-127.300898, 53.317621], [-127.314796, 53.328433], [-127.319178, 53.337203], [-127.32102, 53.34354], [-127.31855, 53.351981], [-127.318533, 53.354523], [-127.319777, 53.357382], [-127.326675, 53.358135], [-127.333578, 53.361477], [-127.341676, 53.367066], [-127.349462, 53.369523], [-127.355014, 53.372921], [-127.355888, 53.374876], [-127.360829, 53.380831], [-127.364478, 53.38597], [-127.364415, 53.393794], [-127.362018, 53.398977], [-127.364062, 53.403415], [-127.367597, 53.408858], [-127.37031, 53.414347], [-127.372115, 53.421478], [-127.370491, 53.42783], [-127.377362, 53.428144], [-127.392755, 53.426597], [-127.392959, 53.428871], [-127.3931, 53.434825], [-127.394573, 53.440802], [-127.39878, 53.443149], [-127.406126, 53.444327], [-127.410414, 53.447165], [-127.40935, 53.454878], [-127.415405, 53.457319], [-127.419031, 53.461187], [-127.417405, 53.465455], [-127.415733, 53.473004], [-127.424003, 53.478796], [-127.428001, 53.485923], [-127.434975, 53.490894], [-127.443866, 53.492282], [-127.462074, 53.490469], [-127.479177, 53.488021], [-127.487983, 53.482671], [-127.498436, 53.475147], [-127.499241, 53.459268], [-127.506705, 53.458053], [-127.518702, 53.461144], [-127.533282, 53.468753], [-127.544881, 53.476432], [-127.565372, 53.492938], [-127.568573, 53.500108], [-127.566914, 53.508059], [-127.55778, 53.513072], [-127.557189, 53.517481], [-127.554307, 53.525106], [-127.559588, 53.531758], [-127.571228, 53.541522], [-127.577936, 53.54372], [-127.589837, 53.545024], [-127.603475, 53.548361], [-127.610746, 53.555635], [-127.613424, 53.561471], [-127.614423, 53.568205], [-127.62551, 53.559196], [-127.632767, 53.552375], [-127.638212, 53.54467], [-127.641094, 53.538689], [-127.649287, 53.533587], [-127.653406, 53.533341], [-127.659764, 53.533557], [-127.666845, 53.536109], [-127.669917, 53.541081], [-127.671207, 53.546854], [-127.677467, 53.549455], [-127.68963, 53.548527], [-127.710198, 53.548084], [-127.720318, 53.551839], [-127.7326, 53.555562], [-127.742584, 53.552576], [-127.759117, 53.552864], [-127.769409, 53.557597], [-127.767827, 53.56602], [-127.755742, 53.574478], [-127.741471, 53.580882], [-127.753022, 53.585144], [-127.761407, 53.588902], [-127.76395, 53.59212], [-127.761671, 53.597413], [-127.758863, 53.600556], [-127.749278, 53.60807], [-127.752895, 53.612712], [-127.756381, 53.615576], [-127.760776, 53.618882], [-127.764709, 53.623405], [-127.761602, 53.628748], [-127.762975, 53.632929], [-127.772758, 53.635512], [-127.780838, 53.636907], [-127.785385, 53.639111], [-127.788068, 53.644107], [-127.7842, 53.647909], [-127.785898, 53.66189], [-127.794532, 53.662551], [-127.80789, 53.661035], [-127.814129, 53.662338], [-127.814298, 53.671148], [-127.812351, 53.681274], [-127.820031, 53.688042], [-127.827537, 53.696703], [-127.836372, 53.700425], [-127.831847, 53.705257], [-127.825564, 53.704737], [-127.823961, 53.706121], [-127.821015, 53.707487], [-127.816854, 53.713486], [-127.815975, 53.72008], [-127.820119, 53.727658], [-127.827451, 53.730383], [-127.842503, 53.728362], [-127.851667, 53.729086], [-127.871745, 53.736279], [-127.901071, 53.745079], [-127.90112, 53.752114], [-127.911249, 53.771815], [-127.907413, 53.774824], [-127.899227, 53.777897], [-127.912943, 53.793116], [-127.923867, 53.802854], [-127.944414, 53.812887], [-127.936677, 53.826207], [-127.951933, 53.829932], [-127.958476, 53.835997], [-127.974911, 53.843783], [-127.998138, 53.856357], [-128.006149, 53.863767], [-128.012716, 53.875042], [-127.999363, 53.880534], [-128.00125, 53.891202], [-128.013548, 53.893674], [-128.03123, 53.892205], [-128.042231, 53.894215], [-128.056665, 53.900149], [-128.070655, 53.896744], [-128.07367, 53.901773], [-128.066954, 53.915688], [-128.057525, 53.926351], [-128.056741, 53.932338], [-128.046679, 53.939441], [-128.041071, 53.948426], [-128.049365, 53.958346], [-128.041693, 53.96953], [-128.042908, 53.979982], [-128.053761, 53.989653], [-128.049581, 54.022641], [-128.045183, 54.029741], [-128.044776, 54.036055], [-128.049221, 54.041258], [-128.070801, 54.048736], [-128.075243, 54.056574], [-128.069202, 54.064077], [-128.055848, 54.070377], [-128.040523, 54.070405], [-128.022549, 54.067616], [-128.011934, 54.068256], [-127.992, 54.078323], [-127.985167, 54.087663], [-127.982966, 54.100146], [-127.989398, 54.109382], [-127.999302, 54.117614], [-128.006979, 54.121097], [-128.014385, 54.123601], [-128.022063, 54.128076], [-128.022896, 54.131085], [-128.019459, 54.136877], [-128.011042, 54.141444], [-127.999974, 54.145812], [-127.988545, 54.154702], [-127.989448, 54.160767], [-127.993831, 54.167429], [-127.999866, 54.172998], [-127.998908, 54.180708], [-127.990394, 54.190051], [-127.980058, 54.202204], [-127.976546, 54.212051], [-127.987908, 54.222156], [-128.00639, 54.229479], [-128.021131, 54.232978], [-128.029869, 54.232074], [-128.045977, 54.228636], [-128.059507, 54.228781], [-128.068155, 54.233375], [-128.075078, 54.241229], [-128.076549, 54.250412], [-128.071836, 54.265111], [-128.084879, 54.274474], [-128.101278, 54.280203], [-128.114199, 54.287951], [-128.124676, 54.292337], [-128.131224, 54.297961], [-128.129124, 54.300884], [-128.118085, 54.309046], [-128.118486, 54.313884], [-128.120319, 54.318543], [-128.139895, 54.323343], [-128.154729, 54.32754], [-128.167793, 54.330496], [-128.183747, 54.332365], [-128.203791, 54.331265], [-128.226434, 54.329183], [-128.239831, 54.330576], [-128.297687, 54.352535], [-128.3124, 54.355098], [-128.323368, 54.355016], [-128.334428, 54.351319], [-128.349735, 54.345538], [-128.36933, 54.339564], [-128.403806, 54.332609], [-128.422723, 54.33046], [-128.440449, 54.32613], [-128.452728, 54.322429], [-128.459104, 54.318576], [-128.478859, 54.308327], [-128.493417, 54.299499], [-128.494319, 54.299537], [-128.53755, 54.303401], [-128.553155, 54.302298], [-128.558648, 54.302279], [-128.605428, 54.298166], [-128.609461, 54.298075], [-128.609829, 54.297429], [-128.610497, 54.29695], [-128.62118, 54.292813], [-128.632441, 54.288156], [-128.64341, 54.288486], [-128.64349, 54.288772], [-128.643768, 54.28871], [-128.643842, 54.288738], [-128.643811, 54.288899], [-128.644147, 54.289044], [-128.643916, 54.289178], [-128.643805, 54.289528], [-128.643604, 54.289735], [-128.643663, 54.290085], [-128.644062, 54.290203], [-128.644091, 54.290374], [-128.644289, 54.290572], [-128.644702, 54.290772], [-128.644714, 54.291112], [-128.645389, 54.291259], [-128.645462, 54.291591], [-128.645629, 54.291763], [-128.646121, 54.291854], [-128.646149, 54.292132], [-128.646719, 54.292071], [-128.646776, 54.292593], [-128.647099, 54.292558], [-128.647346, 54.29237], [-128.647636, 54.292469], [-128.647681, 54.292676], [-128.649093, 54.292824], [-128.649168, 54.292986], [-128.649336, 54.293059], [-128.649661, 54.292961], [-128.649765, 54.293213], [-128.650224, 54.293681], [-128.650651, 54.293988], [-128.650756, 54.294213], [-128.650986, 54.294331], [-128.651215, 54.294366], [-128.651401, 54.294332], [-128.651572, 54.29417], [-128.651924, 54.294127], [-128.652183, 54.294415], [-128.652735, 54.29447], [-128.652792, 54.295064], [-128.653223, 54.295002], [-128.653635, 54.295326], [-128.653819, 54.295543], [-128.653862, 54.295858], [-128.654091, 54.295876], [-128.654259, 54.295957], [-128.65435, 54.296182], [-128.654519, 54.296318], [-128.654486, 54.296426], [-128.654668, 54.296759], [-128.654711, 54.297037], [-128.654678, 54.297558], [-128.655179, 54.298225], [-128.655283, 54.298631], [-128.65539, 54.298747], [-128.655773, 54.298893], [-128.655801, 54.298999], [-128.655648, 54.299081], [-128.655632, 54.299189], [-128.655876, 54.299422], [-128.655872, 54.299781], [-128.655917, 54.299827], [-128.656303, 54.299801], [-128.655928, 54.300357], [-128.658466, 54.302836], [-128.666363, 54.311636], [-128.673256, 54.315502], [-128.682177, 54.317118], [-128.689056, 54.3142], [-128.695989, 54.308607], [-128.703007, 54.299], [-128.714912, 54.285607], [-128.719121, 54.280755], [-128.725372, 54.279546], [-128.733224, 54.281564], [-128.740623, 54.282279], [-128.751514, 54.286088], [-128.768054, 54.289506], [-128.781644, 54.29435], [-128.795109, 54.300423], [-128.812863, 54.301305], [-128.826935, 54.296208], [-128.850766, 54.290763], [-128.867772, 54.291011], [-128.87999, 54.289258], [-128.894458, 54.285451], [-128.90646, 54.281706], [-128.916834, 54.276516], [-128.933309, 54.270446]], [[-128.725467, 54.100876], [-128.725285, 54.107967], [-128.723469, 54.107991], [-128.718201, 54.107915], [-128.675793, 54.107995], [-128.61206, 54.109991], [-128.610791, 54.109436], [-128.610671, 54.108416], [-128.611218, 54.107741], [-128.612615, 54.106627], [-128.613235, 54.10621], [-128.61426, 54.105699], [-128.614764, 54.105273], [-128.611702, 54.105943], [-128.601863, 54.107416], [-128.537937, 54.107489], [-128.537687, 54.106734], [-128.537989, 54.08245], [-128.538761, 53.994395], [-128.61965, 53.994837], [-128.654715, 53.994694], [-128.696157, 53.949459], [-128.793444, 53.845423], [-128.836886, 53.79864], [-128.908078, 53.798727], [-128.907968, 53.933423], [-128.78526, 53.933357], [-128.784924, 53.962925], [-128.726266, 53.963017], [-128.725467, 54.100876]], [[-128.646504, 53.959876], [-128.648561, 53.959278], [-128.649071, 53.959985], [-128.650066, 53.960265], [-128.650344, 53.960649], [-128.651436, 53.960575], [-128.652755, 53.960844], [-128.652631, 53.96124], [-128.652812, 53.961527], [-128.652979, 53.961644], [-128.653434, 53.961843], [-128.653707, 53.961853], [-128.653908, 53.961638], [-128.654106, 53.96163], [-128.654151, 53.961702], [-128.653936, 53.96198], [-128.653918, 53.962178], [-128.6541, 53.96243], [-128.654154, 53.963014], [-128.654488, 53.963249], [-128.654473, 53.963366], [-128.65429, 53.963402], [-128.654134, 53.963698], [-128.654097, 53.964426], [-128.652227, 53.964339], [-128.6519, 53.965643], [-128.653828, 53.965827], [-128.653701, 53.966257], [-128.653457, 53.966338], [-128.653258, 53.966543], [-128.653028, 53.966543], [-128.65271, 53.966335], [-128.652302, 53.965921], [-128.652119, 53.965902], [-128.651446, 53.966197], [-128.650974, 53.966267], [-128.650819, 53.966384], [-128.650478, 53.967093], [-128.649725, 53.968053], [-128.649611, 53.968664], [-128.649211, 53.969067], [-128.648979, 53.969443], [-128.64896, 53.969939], [-128.650789, 53.97193], [-128.650982, 53.972559], [-128.65159, 53.972885], [-128.652088, 53.973398], [-128.652115, 53.973704], [-128.65252, 53.974586], [-128.652618, 53.975557], [-128.65237, 53.976033], [-128.651881, 53.976256], [-128.651817, 53.97639], [-128.65169, 53.977208], [-128.651581, 53.977379], [-128.651593, 53.977775], [-128.651729, 53.977927], [-128.651754, 53.978521], [-128.651432, 53.978987], [-128.651428, 53.979284], [-128.651716, 53.979501], [-128.652096, 53.979628], [-128.65203, 53.979667], [-128.652517, 53.980003], [-128.652672, 53.980213], [-128.635439, 53.980523], [-128.634617, 53.965229], [-128.645254, 53.965378], [-128.646346, 53.963226], [-128.646504, 53.959876]], [[-128.531734, 52.578522], [-128.539981, 52.578556], [-128.538795, 52.600438], [-128.521742, 52.60123], [-128.519433, 52.60077], [-128.519135, 52.600531], [-128.519061, 52.600549], [-128.518941, 52.600791], [-128.518689, 52.600781], [-128.518439, 52.6007], [-128.51825, 52.60041], [-128.517866, 52.599168], [-128.517574, 52.598727], [-128.517263, 52.597531], [-128.517146, 52.597385], [-128.517344, 52.596945], [-128.517246, 52.596316], [-128.517311, 52.595876], [-128.517182, 52.595426], [-128.51682, 52.594884], [-128.516852, 52.594588], [-128.516587, 52.593885], [-128.518864, 52.590399], [-128.518713, 52.589265], [-128.518745, 52.588941], [-128.518289, 52.588859], [-128.518112, 52.58875], [-128.518056, 52.588463], [-128.518296, 52.588175], [-128.518488, 52.588176], [-128.518794, 52.588493], [-128.519, 52.588582], [-128.519282, 52.588557], [-128.519403, 52.588252], [-128.519141, 52.587819], [-128.51847, 52.587161], [-128.518412, 52.586899], [-128.517739, 52.586465], [-128.51758, 52.586024], [-128.517171, 52.58569], [-128.517058, 52.585248], [-128.516753, 52.584869], [-128.516684, 52.584411], [-128.516553, 52.584284], [-128.515685, 52.583948], [-128.515277, 52.583407], [-128.515357, 52.582913], [-128.51511, 52.582535], [-128.515295, 52.581951], [-128.515106, 52.581537], [-128.515094, 52.581231], [-128.515425, 52.5808], [-128.515692, 52.580775], [-128.516279, 52.580849], [-128.516517, 52.580788], [-128.516725, 52.580654], [-128.5168, 52.580501], [-128.516787, 52.58033], [-128.516032, 52.57923], [-128.515996, 52.578627], [-128.531734, 52.578522]]]]}, "properties": {"name": "Kitimat-Stikine C (Part 2)", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat-Stikine C (Part 2)", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949020", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.635345, 55.249552], [-127.634688, 55.250062], [-127.632955, 55.250884], [-127.628264, 55.252614], [-127.628536, 55.25535], [-127.628631, 55.257494], [-127.635113, 55.257537], [-127.641422, 55.257672], [-127.641325, 55.264708], [-127.641453, 55.271654], [-127.641564, 55.272767], [-127.653364, 55.272362], [-127.653987, 55.259532], [-127.65422, 55.256617], [-127.654392, 55.255806], [-127.654405, 55.254976], [-127.654261, 55.253306], [-127.653702, 55.24946], [-127.653692, 55.248242], [-127.652703, 55.247399], [-127.652233, 55.247342], [-127.65082, 55.247632], [-127.647853, 55.248551], [-127.644847, 55.249048], [-127.643173, 55.249417], [-127.64163, 55.24933], [-127.638674, 55.24881], [-127.637276, 55.248749], [-127.636625, 55.248954], [-127.635345, 55.249552]]], [[[-127.669371, 55.25399], [-127.670526, 55.254285], [-127.670843, 55.253525], [-127.670517, 55.253499], [-127.670513, 55.252814], [-127.668624, 55.252997], [-127.669371, 55.25399]]], [[[-127.675718, 55.258682], [-127.680856, 55.256284], [-127.683163, 55.254256], [-127.683619, 55.253698], [-127.682478, 55.253535], [-127.682014, 55.254011], [-127.681157, 55.253978], [-127.681107, 55.253714], [-127.680202, 55.253466], [-127.680075, 55.253298], [-127.680252, 55.252855], [-127.680568, 55.251396], [-127.680464, 55.251263], [-127.680276, 55.251185], [-127.678108, 55.250757], [-127.677607, 55.250728], [-127.677658, 55.25044], [-127.677587, 55.250253], [-127.677137, 55.250033], [-127.676844, 55.250012], [-127.676367, 55.250113], [-127.676775, 55.250985], [-127.676419, 55.252341], [-127.674564, 55.253438], [-127.67425, 55.254822], [-127.673749, 55.254819], [-127.673695, 55.255145], [-127.674084, 55.255698], [-127.673677, 55.256154], [-127.67317, 55.25616], [-127.67315, 55.256009], [-127.672486, 55.25604], [-127.672414, 55.255737], [-127.6714, 55.255923], [-127.671887, 55.256656], [-127.673374, 55.256548], [-127.673294, 55.257137], [-127.675718, 55.258682]]]]}, "properties": {"name": "Hazelton", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Hazelton", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949022", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.637276, 55.248749], [-127.638674, 55.24881], [-127.64163, 55.24933], [-127.643173, 55.249417], [-127.644847, 55.249048], [-127.646084, 55.248844], [-127.64575, 55.239695], [-127.646062, 55.232651], [-127.639739, 55.23227], [-127.63936, 55.230252], [-127.61379, 55.23013], [-127.613822, 55.222955], [-127.586127, 55.222991], [-127.543308, 55.223143], [-127.543331, 55.233329], [-127.542196, 55.233402], [-127.542419, 55.243349], [-127.543656, 55.244108], [-127.543857, 55.24435], [-127.543846, 55.244472], [-127.543679, 55.244648], [-127.543052, 55.244858], [-127.542874, 55.24502], [-127.537014, 55.263656], [-127.536717, 55.268985], [-127.536558, 55.269213], [-127.537864, 55.268786], [-127.538804, 55.268225], [-127.541757, 55.266795], [-127.543889, 55.266362], [-127.547003, 55.265036], [-127.549048, 55.264018], [-127.551121, 55.262644], [-127.552435, 55.26233], [-127.553977, 55.262157], [-127.554298, 55.262061], [-127.555613, 55.261456], [-127.556816, 55.260435], [-127.55695, 55.260398], [-127.557367, 55.259891], [-127.557924, 55.259522], [-127.558409, 55.25928], [-127.559466, 55.259013], [-127.562921, 55.258943], [-127.563866, 55.259169], [-127.566985, 55.258549], [-127.570494, 55.258355], [-127.572159, 55.258428], [-127.575531, 55.258945], [-127.577225, 55.259374], [-127.578155, 55.259875], [-127.578713, 55.26056], [-127.578686, 55.260725], [-127.577291, 55.261856], [-127.578258, 55.262879], [-127.578501, 55.262968], [-127.579939, 55.262873], [-127.580519, 55.262906], [-127.580827, 55.263138], [-127.582588, 55.263895], [-127.583616, 55.263992], [-127.584846, 55.264284], [-127.58588, 55.26484], [-127.586511, 55.265288], [-127.588168, 55.265626], [-127.590313, 55.265716], [-127.592931, 55.265603], [-127.593988, 55.265462], [-127.595619, 55.265083], [-127.597104, 55.264854], [-127.601319, 55.264693], [-127.603236, 55.264072], [-127.603927, 55.263634], [-127.603867, 55.263434], [-127.590913, 55.263275], [-127.590052, 55.254971], [-127.590567, 55.253177], [-127.590604, 55.252165], [-127.5972, 55.252106], [-127.598953, 55.252162], [-127.598944, 55.252271], [-127.615934, 55.25192], [-127.615957, 55.25666], [-127.617065, 55.256269], [-127.619257, 55.255286], [-127.620068, 55.255004], [-127.621825, 55.254652], [-127.624537, 55.253853], [-127.626236, 55.253214], [-127.628116, 55.252668], [-127.632955, 55.250884], [-127.634688, 55.250062], [-127.635345, 55.249552], [-127.636625, 55.248954], [-127.637276, 55.248749]]], [[[-127.77941, 55.127565], [-127.781025, 55.12767], [-127.781903, 55.126462], [-127.780442, 55.12624], [-127.77941, 55.127565]]], [[[-127.759844, 55.137354], [-127.764235, 55.137188], [-127.76408, 55.138734], [-127.765796, 55.138757], [-127.76602, 55.136764], [-127.771187, 55.125975], [-127.76246, 55.125688], [-127.759844, 55.137354]]], [[[-127.770817, 55.129273], [-127.768093, 55.136794], [-127.767806, 55.138531], [-127.773748, 55.139412], [-127.774799, 55.135471], [-127.776956, 55.131637], [-127.777637, 55.129839], [-127.77934, 55.127654], [-127.773011, 55.127265], [-127.770817, 55.129273]]]]}, "properties": {"name": "New Hazelton", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "New Hazelton", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949024", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.522565, 56.083725], [-128.536241, 56.081484], [-128.546914, 56.081582], [-128.554467, 56.079449], [-128.556602, 56.074545], [-128.55436, 56.068481], [-128.5543, 56.060095], [-128.555139, 56.059729], [-128.555293, 56.054528], [-128.561443, 56.052714], [-128.58217, 56.037212], [-128.604117, 56.021255], [-128.618168, 56.012896], [-128.627765, 55.993971], [-128.665161, 55.964874], [-128.658648, 55.947356], [-128.688165, 55.944012], [-128.707841, 55.952735], [-128.71667, 55.950494], [-128.700199, 55.93812], [-128.701049, 55.931337], [-128.706659, 55.926133], [-128.715349, 55.923775], [-128.723642, 55.926763], [-128.72377, 55.926737], [-128.723794, 55.91926], [-128.730411, 55.906872], [-128.724065, 55.894768], [-128.711113, 55.884595], [-128.711544, 55.878961], [-128.719295, 55.879599], [-128.73293, 55.891525], [-128.737434, 55.890865], [-128.736219, 55.883844], [-128.751131, 55.883839], [-128.75382, 55.876376], [-128.745603, 55.867949], [-128.750532, 55.864641], [-128.76091, 55.8668], [-128.779757, 55.874808], [-128.789219, 55.861858], [-128.788952, 55.861607], [-128.79378, 55.855439], [-128.77974, 55.843866], [-128.759716, 55.825197], [-128.755271, 55.815334], [-128.743119, 55.80916], [-128.718846, 55.794011], [-128.698629, 55.782019], [-128.663796, 55.762484], [-128.654141, 55.753798], [-128.652839, 55.75334], [-128.650398, 55.750903], [-128.645287, 55.746328], [-128.624149, 55.734457], [-128.616795, 55.726937], [-128.583918, 55.72707], [-128.557441, 55.725182], [-128.530167, 55.720216], [-128.509996, 55.714558], [-128.496868, 55.712985], [-128.481593, 55.71998], [-128.463257, 55.711328], [-128.444561, 55.697754], [-128.425493, 55.690872], [-128.403018, 55.686164], [-128.398964, 55.6835], [-128.392447, 55.676025], [-128.387338, 55.665997], [-128.388026, 55.661971], [-128.390754, 55.658425], [-128.39167, 55.651175], [-128.390361, 55.647849], [-128.388513, 55.645186], [-128.38341, 55.640899], [-128.374547, 55.637977], [-128.360622, 55.641711], [-128.353115, 55.642865], [-128.346411, 55.638547], [-128.349042, 55.632019], [-128.349113, 55.628602], [-128.28656, 55.59148], [-128.277859, 55.591543], [-128.266285, 55.581632], [-128.261249, 55.582209], [-128.250098, 55.576133], [-128.217428, 55.562522], [-128.203352, 55.56237], [-128.201675, 55.559295], [-128.197763, 55.554614], [-128.190999, 55.55179], [-128.180237, 55.549968], [-128.174208, 55.544994], [-128.186725, 55.531436], [-128.186, 55.521056], [-128.1805, 55.510965], [-128.177732, 55.4949], [-128.171692, 55.488234], [-128.151837, 55.474249], [-128.144124, 55.470556], [-128.136301, 55.462114], [-128.13731, 55.459806], [-128.138762, 55.453089], [-128.133332, 55.4418], [-128.121318, 55.43128], [-128.120326, 55.427441], [-128.123457, 55.421106], [-128.134012, 55.417523], [-128.16743, 55.427545], [-128.162681, 55.41506], [-128.163556, 55.378874], [-128.230262, 55.381623], [-128.320408, 55.384302], [-128.346248, 55.385246], [-128.356123, 55.383475], [-128.368556, 55.378871], [-128.376197, 55.371159], [-128.376748, 55.361388], [-128.368617, 55.354927], [-128.341213, 55.343886], [-128.354458, 55.335474], [-128.362471, 55.324401], [-128.368418, 55.306638], [-128.377621, 55.3026], [-128.386314, 55.284742], [-128.387568, 55.276464], [-128.377994, 55.270108], [-128.366499, 55.269369], [-128.354924, 55.266867], [-128.354388, 55.260967], [-128.363014, 55.252734], [-128.362304, 55.244112], [-128.365513, 55.237586], [-128.381912, 55.23116], [-128.388429, 55.221907], [-128.384295, 55.209636], [-128.370195, 55.201732], [-128.357312, 55.198317], [-128.364936, 55.195168], [-128.385774, 55.190141], [-128.394746, 55.185642], [-128.396626, 55.176793], [-128.400326, 55.17271], [-128.396099, 55.167187], [-128.388101, 55.164215], [-128.383108, 55.160675], [-128.383061, 55.158887], [-128.383223, 55.158878], [-128.380535, 55.148192], [-128.37707, 55.141466], [-128.381143, 55.137808], [-128.400757, 55.139124], [-128.408278, 55.140629], [-128.423304, 55.14091], [-128.430413, 55.139637], [-128.442623, 55.141353], [-128.452565, 55.14137], [-128.465591, 55.138676], [-128.471582, 55.136448], [-128.472197, 55.135759], [-128.480408, 55.134079], [-128.501663, 55.120109], [-128.501805, 55.114273], [-128.508117, 55.112196], [-128.523424, 55.113371], [-128.529431, 55.12159], [-128.535292, 55.12546], [-128.540444, 55.120233], [-128.569471, 55.112703], [-128.575832, 55.108123], [-128.588686, 55.108829], [-128.599067, 55.117068], [-128.604197, 55.125341], [-128.63226, 55.141437], [-128.648088, 55.145989], [-128.663103, 55.145608], [-128.673296, 55.139308], [-128.676264, 55.130473], [-128.68241, 55.124859], [-128.69491, 55.127343], [-128.697312, 55.131956], [-128.708188, 55.138908], [-128.715157, 55.145396], [-128.712276, 55.162189], [-128.724978, 55.167357], [-128.740171, 55.170902], [-128.780155, 55.191773], [-128.806635, 55.20005], [-128.825939, 55.199147], [-128.833612, 55.195709], [-128.839782, 55.187585], [-128.838974, 55.181809], [-128.828241, 55.174514], [-128.796265, 55.161664], [-128.790356, 55.15394], [-128.793076, 55.144908], [-128.790734, 55.124244], [-128.79624, 55.115544], [-128.819609, 55.108539], [-128.839549, 55.075329], [-128.856753, 55.059164], [-128.868181, 55.067827], [-128.882135, 55.069461], [-128.892448, 55.066668], [-128.912167, 55.035019], [-128.942214, 55.012849], [-128.947637, 55.007605], [-128.950328, 55.000212], [-128.74982, 55.000323], [-128.639652, 55.000493], [-128.499592, 55.000251], [-128.357244, 55.000146], [-128.34699, 55.000089], [-128.338281, 55.000121], [-128.24825, 54.999948], [-127.999056, 54.999653], [-127.877833, 54.999913], [-127.845216, 54.999822], [-127.817159, 54.999495], [-127.736253, 54.999444], [-127.499273, 55.000315], [-127.439815, 55.000596], [-127.367069, 55.000261], [-127.367095, 54.993844], [-127.343479, 54.993822], [-127.343996, 55.000036], [-127.342141, 55.000026], [-127.342931, 55.020519], [-127.342267, 55.021498], [-127.342027, 55.022402], [-127.342331, 55.023745], [-127.342121, 55.024633], [-127.342192, 55.025208], [-127.342078, 55.026051], [-127.342105, 55.026564], [-127.342303, 55.027061], [-127.34226, 55.02769], [-127.342327, 55.02797], [-127.342556, 55.028135], [-127.34282, 55.028183], [-127.343634, 55.028176], [-127.344233, 55.028049], [-127.345346, 55.027661], [-127.34573, 55.027423], [-127.346015, 55.027346], [-127.346546, 55.027389], [-127.347329, 55.027713], [-127.348247, 55.02787], [-127.349266, 55.027821], [-127.34961, 55.027712], [-127.349723, 55.028817], [-127.349851, 55.03313], [-127.347773, 55.033241], [-127.349728, 55.044306], [-127.337725, 55.045403], [-127.331518, 55.04579], [-127.33095, 55.039932], [-127.330494, 55.036613], [-127.330626, 55.035114], [-127.320299, 55.035435], [-127.320663, 55.038725], [-127.311049, 55.038943], [-127.310866, 55.037561], [-127.310245, 55.036566], [-127.308639, 55.036089], [-127.306662, 55.035744], [-127.305607, 55.035036], [-127.304364, 55.033837], [-127.304424, 55.032467], [-127.304653, 55.031464], [-127.305582, 55.030737], [-127.305646, 55.029793], [-127.306376, 55.028512], [-127.307384, 55.027066], [-127.307865, 55.026138], [-127.309061, 55.02571], [-127.310483, 55.025332], [-127.311634, 55.024493], [-127.312167, 55.023676], [-127.312251, 55.023389], [-127.31319, 55.02326], [-127.313706, 55.02272], [-127.305959, 55.022461], [-127.302726, 55.000327], [-127.272521, 55.000278], [-127.271626, 55.007948], [-127.24152, 55.006876], [-127.240114, 55.000219], [-127.175897, 55.000209], [-127.099898, 55.000471], [-127.078485, 55.000429], [-127.074587, 55.000474], [-127.000365, 55.000148], [-126.937201, 55.000035], [-126.942963, 55.00707], [-126.930068, 55.015895], [-126.912847, 55.025312], [-126.902238, 55.025153], [-126.901695, 55.025501], [-126.89611, 55.031864], [-126.873474, 55.034968], [-126.883078, 55.049863], [-126.880001, 55.05985], [-126.855244, 55.064792], [-126.843454, 55.075022], [-126.833956, 55.076008], [-126.82429, 55.073768], [-126.814164, 55.072627], [-126.802625, 55.07245], [-126.789089, 55.071013], [-126.786085, 55.070993], [-126.785136, 55.070724], [-126.775976, 55.070973], [-126.762983, 55.069398], [-126.742926, 55.064178], [-126.734936, 55.062735], [-126.724707, 55.063008], [-126.716155, 55.064103], [-126.71005, 55.069021], [-126.70481, 55.075504], [-126.698431, 55.078648], [-126.691822, 55.082338], [-126.684027, 55.086438], [-126.679059, 55.088624], [-126.647625, 55.10078], [-126.647428, 55.111501], [-126.6447, 55.124485], [-126.660833, 55.122083], [-126.676724, 55.12173], [-126.685603, 55.124746], [-126.726257, 55.154226], [-126.734944, 55.160305], [-126.740618, 55.172974], [-126.741474, 55.178893], [-126.73598, 55.194151], [-126.738574, 55.203904], [-126.742003, 55.207146], [-126.756181, 55.21108], [-126.76579, 55.220157], [-126.785465, 55.227035], [-126.808051, 55.229325], [-126.821484, 55.225959], [-126.838076, 55.221928], [-126.848785, 55.231911], [-126.845335, 55.240279], [-126.856174, 55.249883], [-126.87997, 55.268979], [-126.881101, 55.268778], [-126.907999, 55.265903], [-126.92834, 55.26826], [-126.940773, 55.27406], [-126.953985, 55.282017], [-126.953646, 55.288545], [-126.92564, 55.293498], [-126.920304, 55.295373], [-126.905182, 55.297146], [-126.895783, 55.299562], [-126.882904, 55.30342], [-126.881422, 55.304096], [-126.88103, 55.303995], [-126.867769, 55.302786], [-126.868058, 55.304641], [-126.868205, 55.310218], [-126.875029, 55.314055], [-126.874278, 55.321625], [-126.872557, 55.334812], [-126.875561, 55.341244], [-126.874833, 55.342377], [-126.874306, 55.34696], [-126.87117, 55.352008], [-126.853386, 55.360804], [-126.867453, 55.364907], [-126.879336, 55.366246], [-126.882644, 55.368612], [-126.884909, 55.368919], [-126.889202, 55.368953], [-126.891358, 55.369519], [-126.892166, 55.370998], [-126.889364, 55.375271], [-126.891651, 55.380124], [-126.892935, 55.380968], [-126.893784, 55.381318], [-126.89605, 55.381517], [-126.897724, 55.380576], [-126.9058, 55.377403], [-126.909341, 55.378208], [-126.921773, 55.381437], [-126.924216, 55.385049], [-126.931186, 55.386128], [-126.937403, 55.386145], [-126.946376, 55.38297], [-126.961086, 55.378373], [-126.973419, 55.378388], [-126.991177, 55.383218], [-127.008486, 55.382457], [-127.031842, 55.385867], [-127.033398, 55.384392], [-127.037972, 55.377708], [-127.046633, 55.375503], [-127.063378, 55.383064], [-127.060703, 55.39026], [-127.062909, 55.395314], [-127.063007, 55.396054], [-127.064405, 55.396349], [-127.072031, 55.397591], [-127.089755, 55.405329], [-127.108085, 55.416911], [-127.128427, 55.430914], [-127.142978, 55.442735], [-127.154037, 55.450176], [-127.162193, 55.455291], [-127.172604, 55.462593], [-127.181354, 55.465548], [-127.21505, 55.473508], [-127.216802, 55.473601], [-127.21843, 55.475066], [-127.230278, 55.475706], [-127.240523, 55.475523], [-127.246992, 55.472535], [-127.257233, 55.473923], [-127.266664, 55.483328], [-127.273207, 55.488579], [-127.278487, 55.494875], [-127.293015, 55.500108], [-127.295379, 55.505648], [-127.300169, 55.51212], [-127.309214, 55.513565], [-127.318729, 55.514422], [-127.328133, 55.514628], [-127.333561, 55.516208], [-127.333857, 55.516099], [-127.334445, 55.515159], [-127.335353, 55.514433], [-127.336957, 55.514489], [-127.337846, 55.51464], [-127.346622, 55.511404], [-127.356147, 55.509507], [-127.369535, 55.511092], [-127.378938, 55.511294], [-127.395035, 55.510908], [-127.401796, 55.503151], [-127.40344, 55.498518], [-127.415582, 55.494005], [-127.429018, 55.494531], [-127.448903, 55.499734], [-127.451521, 55.5037], [-127.458405, 55.509294], [-127.459417, 55.514538], [-127.456571, 55.520129], [-127.458757, 55.52425], [-127.458525, 55.52784], [-127.45896, 55.529121], [-127.454095, 55.532843], [-127.457701, 55.537564], [-127.469087, 55.539902], [-127.494883, 55.540951], [-127.494917, 55.53964], [-127.506533, 55.542355], [-127.53337, 55.550025], [-127.544661, 55.557985], [-127.553244, 55.564852], [-127.568844, 55.577935], [-127.580622, 55.592869], [-127.590869, 55.601568], [-127.62734, 55.623699], [-127.647478, 55.6353], [-127.652794, 55.638494], [-127.655574, 55.643564], [-127.657543, 55.649412], [-127.65661, 55.661659], [-127.656965, 55.673925], [-127.664097, 55.685445], [-127.686697, 55.694893], [-127.688733, 55.695016], [-127.689947, 55.695356], [-127.690608, 55.695643], [-127.692835, 55.69711], [-127.693405, 55.697581], [-127.694583, 55.698129], [-127.693179, 55.698962], [-127.693418, 55.699178], [-127.713321, 55.710818], [-127.741346, 55.708899], [-127.757377, 55.708151], [-127.767852, 55.704924], [-127.785388, 55.704999], [-127.798022, 55.709915], [-127.800183, 55.709864], [-127.811348, 55.707966], [-127.826622, 55.708199], [-127.843691, 55.711104], [-127.853666, 55.708394], [-127.861682, 55.710322], [-127.869955, 55.712464], [-127.882018, 55.717083], [-127.902443, 55.720043], [-127.915072, 55.717031], [-127.925356, 55.699581], [-127.931612, 55.692809], [-127.93679, 55.687621], [-127.949156, 55.686117], [-127.962948, 55.68845], [-127.976301, 55.699812], [-127.983186, 55.716967], [-127.996156, 55.726692], [-127.994758, 55.736947], [-127.996381, 55.740834], [-127.998758, 55.747308], [-128.004445, 55.752083], [-128.031592, 55.746555], [-128.042677, 55.748953], [-128.049324, 55.754154], [-128.055606, 55.756634], [-128.071749, 55.759571], [-128.087757, 55.770182], [-128.09531, 55.769336], [-128.099514, 55.764475], [-128.094579, 55.74969], [-128.104747, 55.731861], [-128.115121, 55.721409], [-128.146862, 55.72773], [-128.180168, 55.727739], [-128.184811, 55.72967], [-128.213853, 55.740851], [-128.229994, 55.758726], [-128.24061, 55.767969], [-128.223877, 55.783825], [-128.207565, 55.796248], [-128.193232, 55.810409], [-128.18949, 55.822388], [-128.168877, 55.829794], [-128.142873, 55.846493], [-128.156002, 55.86302], [-128.188481, 55.870916], [-128.191663, 55.878766], [-128.189044, 55.910787], [-128.224256, 55.932451], [-128.275373, 55.936053], [-128.330936, 55.914164], [-128.386899, 55.914299], [-128.455166, 55.928821], [-128.48555, 55.944838], [-128.475188, 55.967464], [-128.439281, 56.002952], [-128.364627, 56.003179], [-128.368761, 56.009032], [-128.391527, 56.027754], [-128.405743, 56.035269], [-128.416055, 56.039744], [-128.45279, 56.052847], [-128.511429, 56.076758], [-128.515621, 56.079782], [-128.522565, 56.083725]], [[-127.781903, 55.126462], [-127.781025, 55.12767], [-127.77941, 55.127565], [-127.780442, 55.12624], [-127.781903, 55.126462]], [[-127.776956, 55.131637], [-127.774799, 55.135471], [-127.773748, 55.139412], [-127.767806, 55.138531], [-127.768093, 55.136794], [-127.770817, 55.129273], [-127.773011, 55.127265], [-127.77934, 55.127654], [-127.777637, 55.129839], [-127.776956, 55.131637]], [[-127.76602, 55.136764], [-127.765796, 55.138757], [-127.76408, 55.138734], [-127.764235, 55.137188], [-127.759844, 55.137354], [-127.76246, 55.125688], [-127.771187, 55.125975], [-127.76602, 55.136764]], [[-128.090102, 55.277342], [-128.062043, 55.277988], [-128.052112, 55.278154], [-128.052091, 55.257965], [-128.077291, 55.258052], [-128.077325, 55.262921], [-128.089983, 55.262899], [-128.090102, 55.277342]], [[-127.685528, 55.324348], [-127.680327, 55.324434], [-127.679518, 55.323858], [-127.678326, 55.323153], [-127.677808, 55.322661], [-127.677389, 55.321983], [-127.677413, 55.32077], [-127.67715, 55.320193], [-127.676409, 55.319267], [-127.675416, 55.3178], [-127.674246, 55.316522], [-127.673801, 55.315663], [-127.672854, 55.314341], [-127.672018, 55.313415], [-127.66778, 55.30821], [-127.667447, 55.307335], [-127.667379, 55.306516], [-127.667507, 55.305538], [-127.668112, 55.30443], [-127.669593, 55.302955], [-127.671675, 55.301512], [-127.673359, 55.300578], [-127.674271, 55.30021], [-127.675161, 55.299905], [-127.676767, 55.299482], [-127.678335, 55.299249], [-127.679172, 55.299168], [-127.681614, 55.299122], [-127.685362, 55.299189], [-127.686408, 55.299002], [-127.687108, 55.298759], [-127.687512, 55.298457], [-127.688301, 55.29745], [-127.688907, 55.296252], [-127.690326, 55.294045], [-127.693431, 55.293553], [-127.69639, 55.293604], [-127.700239, 55.293552], [-127.700158, 55.307998], [-127.725439, 55.308042], [-127.725335, 55.315221], [-127.700122, 55.315227], [-127.700088, 55.322471], [-127.687274, 55.322474], [-127.687275, 55.324281], [-127.685528, 55.324348]], [[-127.775791, 55.110156], [-127.77117, 55.110268], [-127.773413, 55.106611], [-127.792701, 55.096196], [-127.793663, 55.095199], [-127.795865, 55.095251], [-127.794942, 55.094475], [-127.798938, 55.09461], [-127.798026, 55.095535], [-127.798029, 55.096153], [-127.804913, 55.096004], [-127.804709, 55.095447], [-127.805712, 55.093481], [-127.811383, 55.092514], [-127.811448, 55.085552], [-127.81133, 55.082485], [-127.837763, 55.084188], [-127.83775, 55.084645], [-127.837422, 55.085991], [-127.838147, 55.085918], [-127.838621, 55.085995], [-127.838487, 55.0861], [-127.83938, 55.086457], [-127.84026, 55.085614], [-127.840673, 55.085429], [-127.841776, 55.085251], [-127.842372, 55.085248], [-127.843468, 55.085268], [-127.846089, 55.085651], [-127.848375, 55.086267], [-127.850101, 55.086661], [-127.851304, 55.086816], [-127.853059, 55.086824], [-127.853712, 55.086919], [-127.855201, 55.086942], [-127.856214, 55.087158], [-127.857462, 55.087314], [-127.858795, 55.087318], [-127.859976, 55.087077], [-127.868842, 55.086576], [-127.871206, 55.086651], [-127.873643, 55.086899], [-127.875147, 55.086912], [-127.876686, 55.086782], [-127.878219, 55.086807], [-127.879451, 55.08706], [-127.88074, 55.087503], [-127.88231, 55.088443], [-127.883747, 55.089742], [-127.885002, 55.090665], [-127.861368, 55.091301], [-127.860865, 55.098602], [-127.856396, 55.098694], [-127.822706, 55.096383], [-127.822969, 55.0992], [-127.821993, 55.106561], [-127.809178, 55.107622], [-127.808003, 55.117087], [-127.794965, 55.117792], [-127.794225, 55.125227], [-127.785728, 55.125696], [-127.781629, 55.124452], [-127.77382, 55.12116], [-127.77305, 55.121495], [-127.772359, 55.122384], [-127.775791, 55.110156]], [[-127.70919, 55.33354], [-127.709979, 55.345784], [-127.709312, 55.358173], [-127.710315, 55.369555], [-127.709721, 55.369556], [-127.708034, 55.369392], [-127.702912, 55.36906], [-127.684823, 55.370088], [-127.672487, 55.370061], [-127.67043, 55.370238], [-127.668814, 55.370895], [-127.667031, 55.371388], [-127.666274, 55.371371], [-127.664969, 55.371221], [-127.664055, 55.371203], [-127.662631, 55.371322], [-127.661264, 55.371582], [-127.657178, 55.371501], [-127.656866, 55.347607], [-127.657636, 55.344075], [-127.657241, 55.334181], [-127.686476, 55.333551], [-127.690899, 55.332958], [-127.707305, 55.333552], [-127.707313, 55.333408], [-127.70919, 55.33354]], [[-128.032909, 55.107966], [-128.029347, 55.10834], [-128.029468, 55.108093], [-128.027263, 55.108255], [-128.024461, 55.108108], [-128.012137, 55.109394], [-128.019799, 55.090944], [-128.019665, 55.087943], [-128.019836, 55.087003], [-128.019803, 55.086265], [-128.115707, 55.075937], [-128.11456, 55.086991], [-128.113662, 55.100452], [-128.113524, 55.105772], [-128.11041, 55.106556], [-128.086239, 55.111263], [-128.058259, 55.113837], [-128.056495, 55.112492], [-128.057379, 55.109913], [-128.056054, 55.108473], [-128.032909, 55.107966]], [[-127.680138, 55.297587], [-127.67801, 55.297654], [-127.676537, 55.297907], [-127.674103, 55.298591], [-127.669559, 55.298593], [-127.669443, 55.297591], [-127.668716, 55.296012], [-127.669281, 55.29134], [-127.669431, 55.290988], [-127.66975, 55.289171], [-127.669938, 55.288741], [-127.670026, 55.288011], [-127.652629, 55.288308], [-127.652323, 55.293772], [-127.641423, 55.293758], [-127.641442, 55.279591], [-127.653119, 55.279592], [-127.653364, 55.272362], [-127.641564, 55.272767], [-127.641453, 55.271654], [-127.641325, 55.264708], [-127.641422, 55.257672], [-127.635113, 55.257537], [-127.628631, 55.257494], [-127.628536, 55.25535], [-127.628264, 55.252614], [-127.626236, 55.253214], [-127.624537, 55.253853], [-127.621825, 55.254652], [-127.620068, 55.255004], [-127.619257, 55.255286], [-127.617065, 55.256269], [-127.6152, 55.256927], [-127.613567, 55.257333], [-127.61285, 55.257247], [-127.611782, 55.256621], [-127.611183, 55.256461], [-127.610709, 55.256094], [-127.610699, 55.255882], [-127.609277, 55.255174], [-127.609264, 55.255101], [-127.609602, 55.254916], [-127.609589, 55.254799], [-127.609348, 55.254519], [-127.609023, 55.254335], [-127.608742, 55.254295], [-127.607922, 55.254322], [-127.606983, 55.254221], [-127.605754, 55.254244], [-127.604595, 55.254527], [-127.603909, 55.254798], [-127.603301, 55.255095], [-127.603057, 55.255318], [-127.602871, 55.255648], [-127.602925, 55.255919], [-127.603033, 55.256027], [-127.603185, 55.256119], [-127.603639, 55.256223], [-127.603885, 55.256397], [-127.604133, 55.256957], [-127.604127, 55.258008], [-127.603643, 55.258757], [-127.603848, 55.25921], [-127.603856, 55.259452], [-127.603642, 55.25971], [-127.602866, 55.259872], [-127.602482, 55.260012], [-127.602283, 55.260351], [-127.602411, 55.260711], [-127.602797, 55.260932], [-127.602992, 55.261158], [-127.603055, 55.261654], [-127.603377, 55.26234], [-127.603416, 55.262633], [-127.603677, 55.2628], [-127.603927, 55.263634], [-127.603236, 55.264072], [-127.601319, 55.264693], [-127.597104, 55.264854], [-127.595619, 55.265083], [-127.593988, 55.265462], [-127.592931, 55.265603], [-127.590313, 55.265716], [-127.588168, 55.265626], [-127.586511, 55.265288], [-127.58588, 55.26484], [-127.584846, 55.264284], [-127.583616, 55.263992], [-127.582588, 55.263895], [-127.580827, 55.263138], [-127.580519, 55.262906], [-127.579939, 55.262873], [-127.578501, 55.262968], [-127.578258, 55.262879], [-127.577291, 55.261856], [-127.578686, 55.260725], [-127.578713, 55.26056], [-127.578155, 55.259875], [-127.577225, 55.259374], [-127.575531, 55.258945], [-127.572159, 55.258428], [-127.570494, 55.258355], [-127.566985, 55.258549], [-127.563866, 55.259169], [-127.562921, 55.258943], [-127.559466, 55.259013], [-127.558409, 55.25928], [-127.557924, 55.259522], [-127.557367, 55.259891], [-127.55695, 55.260398], [-127.556816, 55.260435], [-127.555613, 55.261456], [-127.554298, 55.262061], [-127.553977, 55.262157], [-127.552435, 55.26233], [-127.551121, 55.262644], [-127.549048, 55.264018], [-127.547003, 55.265036], [-127.543889, 55.266362], [-127.541757, 55.266795], [-127.538804, 55.268225], [-127.537864, 55.268786], [-127.536558, 55.269213], [-127.536717, 55.268985], [-127.537014, 55.263656], [-127.542874, 55.24502], [-127.543052, 55.244858], [-127.543679, 55.244648], [-127.543846, 55.244472], [-127.543857, 55.24435], [-127.543656, 55.244108], [-127.542419, 55.243349], [-127.542196, 55.233402], [-127.543331, 55.233329], [-127.543308, 55.223143], [-127.586127, 55.222991], [-127.613822, 55.222955], [-127.61379, 55.23013], [-127.63936, 55.230252], [-127.639739, 55.23227], [-127.646062, 55.232651], [-127.64575, 55.239695], [-127.646084, 55.248844], [-127.647853, 55.248551], [-127.65082, 55.247632], [-127.652233, 55.247342], [-127.652703, 55.247399], [-127.654254, 55.248662], [-127.654644, 55.249266], [-127.655754, 55.250435], [-127.656554, 55.250861], [-127.660756, 55.252522], [-127.661837, 55.252802], [-127.663093, 55.25295], [-127.664264, 55.252953], [-127.665396, 55.25275], [-127.666905, 55.252345], [-127.668144, 55.251877], [-127.669877, 55.250979], [-127.671036, 55.250122], [-127.671757, 55.249324], [-127.672087, 55.248441], [-127.673042, 55.247547], [-127.674545, 55.246741], [-127.675347, 55.24557], [-127.679532, 55.246515], [-127.681728, 55.247409], [-127.682581, 55.247993], [-127.684729, 55.250092], [-127.685097, 55.251348], [-127.684728, 55.252342], [-127.683163, 55.254256], [-127.680856, 55.256284], [-127.675718, 55.258682], [-127.677058, 55.259491], [-127.680801, 55.259752], [-127.697988, 55.25961], [-127.703917, 55.259871], [-127.703078, 55.277605], [-127.704157, 55.287569], [-127.704115, 55.288427], [-127.69792, 55.288419], [-127.693164, 55.288822], [-127.687406, 55.29009], [-127.685509, 55.289911], [-127.685047, 55.291107], [-127.684894, 55.291887], [-127.684907, 55.292498], [-127.685006, 55.292804], [-127.68547, 55.293538], [-127.686685, 55.294872], [-127.686956, 55.295269], [-127.687072, 55.296053], [-127.686929, 55.296608], [-127.686439, 55.297088], [-127.686117, 55.297283], [-127.684974, 55.297604], [-127.683093, 55.297816], [-127.682289, 55.297817], [-127.680138, 55.297587]]], [[[-127.658649, 55.258346], [-127.659286, 55.258033], [-127.660619, 55.257079], [-127.657906, 55.25641], [-127.657915, 55.258257], [-127.658174, 55.258493], [-127.658649, 55.258346]]], [[[-127.658174, 55.258493], [-127.656351, 55.258939], [-127.656714, 55.259698], [-127.658688, 55.259208], [-127.658174, 55.258493]]]]}, "properties": {"name": "Kitimat-Stikine B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat-Stikine B", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949028", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.950779, 55.914638], [-129.914962, 55.964541], [-129.878221, 56.009551], [-129.854669, 56.019106], [-129.855429, 56.019053], [-129.85636, 56.019085], [-129.857202, 56.019365], [-129.857856, 56.019484], [-129.858331, 56.019476], [-129.860724, 56.018915], [-129.86132, 56.018875], [-129.861912, 56.018893], [-129.862933, 56.019104], [-129.86643, 56.019488], [-129.867186, 56.019488], [-129.870104, 56.019073], [-129.870858, 56.01916], [-129.87234, 56.019787], [-129.874421, 56.02001], [-129.8764, 56.020153], [-129.8776, 56.020361], [-129.880079, 56.020554], [-129.881643, 56.021215], [-129.882814, 56.022004], [-129.88365, 56.022309], [-129.885821, 56.022777], [-129.886843, 56.023132], [-129.88831, 56.023417], [-129.891336, 56.02353], [-129.90007, 56.030019], [-129.900183, 56.03017], [-129.900264, 56.030837], [-129.901109, 56.033526], [-129.90263, 56.035345], [-129.903044, 56.035702], [-129.905434, 56.036964], [-129.912608, 56.038591], [-129.918599, 56.040177], [-129.926752, 56.040112], [-129.948515, 56.039604], [-130.062282, 56.271621], [-130.444854, 56.241601], [-130.465112, 56.241474], [-130.449961, 56.207578], [-130.419724, 56.138877], [-130.392407, 56.134533], [-130.331545, 56.122591], [-130.31508, 56.116087], [-130.241241, 56.095807], [-130.103701, 56.122024], [-130.059649, 56.071488], [-130.002139, 56.006611], [-130.020406, 55.910078], [-130.002731, 55.911554], [-130.012633, 55.897753], [-130.031661, 55.868772], [-130.015935, 55.867685], [-129.980151, 55.869364], [-129.950779, 55.914638]]]]}, "properties": {"name": "Stewart", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Stewart", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949032", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.947956, 55.523332], [-128.950802, 55.531673], [-128.956792, 55.539532], [-128.952576, 55.545686], [-128.959962, 55.547577], [-128.969957, 55.542597], [-128.958045, 55.526789], [-128.955599, 55.518647], [-128.96311, 55.513947], [-128.967616, 55.511441], [-129.009315, 55.510553], [-129.010154, 55.497658], [-129.005608, 55.490535], [-128.999879, 55.488255], [-128.995863, 55.485347], [-129.000482, 55.483495], [-128.998632, 55.471646], [-128.996059, 55.462168], [-128.995104, 55.456762], [-128.992958, 55.454796], [-128.996118, 55.447442], [-128.997994, 55.428988], [-128.998402, 55.429905], [-128.999499, 55.430365], [-129.000953, 55.430429], [-129.00282, 55.429088], [-129.004813, 55.426466], [-129.006436, 55.423841], [-129.007615, 55.4232], [-129.008254, 55.423077], [-129.009262, 55.421616], [-129.009412, 55.421035], [-129.045249, 55.402956], [-129.063065, 55.391724], [-129.073624, 55.383083], [-129.158367, 55.344398], [-129.190739, 55.331394], [-129.206968, 55.327678], [-129.215682, 55.323295], [-129.216866, 55.314996], [-129.22079, 55.30704], [-129.228643, 55.304585], [-129.238989, 55.300735], [-129.249346, 55.295483], [-129.246812, 55.287632], [-129.344222, 55.251303], [-129.437221, 55.216267], [-129.527839, 55.2196], [-129.570676, 55.224664], [-129.58326, 55.222447], [-129.60039, 55.219129], [-129.6207, 55.212563], [-129.631133, 55.210506], [-129.636798, 55.214301], [-129.642591, 55.20534], [-129.653776, 55.198971], [-129.662579, 55.195537], [-129.674888, 55.19408], [-129.681876, 55.196029], [-129.69237, 55.199947], [-129.705244, 55.200938], [-129.708702, 55.198917], [-129.713989, 55.193498], [-129.725129, 55.185121], [-129.740859, 55.179638], [-129.75624, 55.168923], [-129.788763, 55.142088], [-129.818659, 55.120958], [-129.838163, 55.103893], [-129.849247, 55.095505], [-129.895086, 55.059314], [-129.906143, 55.050921], [-129.917157, 55.040526], [-129.930083, 55.032732], [-129.936547, 55.036199], [-129.951424, 55.047702], [-129.961377, 55.057716], [-129.987897, 55.057411], [-129.988061, 55.05713], [-129.988117, 55.056771], [-129.989423, 55.055115], [-129.989522, 55.05409], [-129.989463, 55.053013], [-129.988658, 55.052687], [-129.988395, 55.052815], [-129.988051, 55.05288], [-129.987701, 55.053234], [-129.986981, 55.053248], [-129.986374, 55.05337], [-129.985898, 55.053751], [-129.985718, 55.054129], [-129.984887, 55.054101], [-129.983434, 55.053537], [-129.982546, 55.053033], [-129.981889, 55.052436], [-129.981322, 55.051658], [-129.981003, 55.051436], [-129.980727, 55.050962], [-129.979348, 55.050938], [-129.978985, 55.050824], [-129.978932, 55.050545], [-129.978687, 55.050224], [-129.977877, 55.049646], [-129.977555, 55.049299], [-129.977487, 55.049101], [-129.97835, 55.048572], [-129.979196, 55.047918], [-129.980619, 55.047215], [-129.981741, 55.046353], [-129.983363, 55.045567], [-129.983924, 55.045409], [-129.984402, 55.045163], [-129.98501, 55.044996], [-129.98566, 55.044686], [-129.986533, 55.043942], [-129.986623, 55.043761], [-129.987189, 55.043288], [-129.987509, 55.042882], [-129.987898, 55.04215], [-129.987729, 55.041065], [-129.988008, 55.040343], [-129.988048, 55.039382], [-129.988473, 55.038785], [-129.988951, 55.038557], [-129.989424, 55.03805], [-129.990383, 55.037656], [-129.99084, 55.037122], [-129.990945, 55.036887], [-129.99211, 55.035925], [-129.992249, 55.035259], [-129.992173, 55.034737], [-129.992523, 55.034304], [-129.992747, 55.033799], [-129.993129, 55.033508], [-129.994292, 55.033094], [-129.994723, 55.032803], [-129.995136, 55.031173], [-129.994962, 55.03103], [-129.994987, 55.030797], [-129.995292, 55.030498], [-129.995531, 55.029992], [-129.995778, 55.029855], [-129.99596, 55.02962], [-129.996151, 55.029106], [-129.996131, 55.028972], [-129.995989, 55.028947], [-129.995505, 55.028951], [-129.995304, 55.029033], [-129.995331, 55.028871], [-129.995558, 55.028635], [-129.99555, 55.028284], [-129.995765, 55.028076], [-129.995592, 55.027475], [-129.995615, 55.027089], [-129.995993, 55.026592], [-129.99616, 55.025692], [-129.996352, 55.025322], [-129.997067, 55.024516], [-129.99698, 55.024094], [-129.997772, 55.023297], [-129.998088, 55.022728], [-129.998216, 55.022179], [-130.01081, 55.01134], [-130.009619, 55.006823], [-130.005728, 55.002691], [-130.001693, 55.000002], [-129.988651, 55.000012], [-129.980599, 55.000401], [-129.980116, 55.000371], [-129.97892, 54.999977], [-129.978134, 54.999849], [-129.977872, 54.999374], [-129.977493, 54.999179], [-129.977468, 54.998829], [-129.97729, 54.998534], [-129.976248, 54.99812], [-129.975649, 54.997999], [-129.975348, 54.997812], [-129.973829, 54.997689], [-129.973215, 54.997452], [-129.97318, 54.997291], [-129.973006, 54.997192], [-129.972532, 54.997071], [-129.971183, 54.996883], [-129.970808, 54.996851], [-129.970201, 54.996946], [-129.969603, 54.996825], [-129.968997, 54.996937], [-129.968603, 54.996832], [-129.968458, 54.996646], [-129.968348, 54.996618], [-129.967536, 54.996661], [-129.96676, 54.996838], [-129.96637, 54.996869], [-129.966117, 54.996816], [-129.966114, 54.996628], [-129.96586, 54.99654], [-129.965393, 54.996553], [-129.964864, 54.996664], [-129.964158, 54.996634], [-129.963565, 54.996702], [-129.962803, 54.996834], [-129.962166, 54.99701], [-129.960856, 54.997128], [-129.960373, 54.997231], [-129.959086, 54.997645], [-129.957997, 54.997852], [-129.957442, 54.998161], [-129.957064, 54.998712], [-129.956606, 54.999129], [-129.954958, 54.999774], [-129.954593, 54.999475], [-129.954451, 54.999164], [-129.95518, 54.99835], [-129.956271, 54.997594], [-129.960009, 54.996629], [-129.960123, 54.996551], [-129.960321, 54.996214], [-129.960116, 54.996044], [-129.958764, 54.996153], [-129.959064, 54.995792], [-129.95954, 54.995673], [-129.960537, 54.995576], [-129.961492, 54.995631], [-129.961981, 54.995771], [-129.962103, 54.99568], [-129.961496, 54.995261], [-129.966396, 54.993117], [-129.940965, 54.978756], [-129.928389, 54.978078], [-129.926183, 54.978103], [-129.889148, 54.95715], [-129.881782, 54.949123], [-129.878402, 54.947209], [-129.877441, 54.947611], [-129.874999, 54.947279], [-129.873819, 54.946892], [-129.859674, 54.936443], [-129.840234, 54.924479], [-129.836954, 54.9172], [-129.821463, 54.891462], [-129.815383, 54.875499], [-129.819106, 54.864257], [-129.827754, 54.857199], [-129.826779, 54.841071], [-129.806149, 54.810032], [-129.785757, 54.810691], [-129.759703, 54.805621], [-129.751964, 54.808039], [-129.749837, 54.812537], [-129.74212, 54.816779], [-129.709841, 54.819018], [-129.671241, 54.82127], [-129.600014, 54.824997], [-129.561213, 54.823863], [-129.481725, 54.816332], [-129.477829, 54.819978], [-129.479468, 54.820796], [-129.475111, 54.829272], [-129.468111, 54.838533], [-129.464148, 54.845], [-129.455565, 54.847614], [-129.442475, 54.849761], [-129.430762, 54.850033], [-129.429992, 54.853959], [-129.449912, 54.872586], [-129.451772, 54.876173], [-129.444963, 54.88031], [-129.441362, 54.883777], [-129.433408, 54.885694], [-129.42167, 54.886257], [-129.410262, 54.889414], [-129.394035, 54.892626], [-129.38489, 54.897718], [-129.373922, 54.90744], [-129.359976, 54.902289], [-129.357473, 54.903528], [-129.353024, 54.908473], [-129.345176, 54.913416], [-129.33706, 54.921057], [-129.338085, 54.927797], [-129.34798, 54.932425], [-129.369075, 54.934019], [-129.381048, 54.93263], [-129.388604, 54.93621], [-129.408678, 54.950554], [-129.410759, 54.962088], [-129.414932, 54.97152], [-129.424839, 54.972238], [-129.430323, 54.977921], [-129.428753, 54.982417], [-129.423256, 54.986467], [-129.422469, 54.990663], [-129.42299, 54.995008], [-129.396137, 55.011428], [-129.335022, 55.032091], [-129.290253, 55.04877], [-129.290487, 55.055813], [-129.302747, 55.067341], [-129.263306, 55.084242], [-129.232523, 55.095894], [-129.202501, 55.109189], [-129.18132, 55.111012], [-129.118743, 55.102095], [-129.097236, 55.095674], [-129.08396, 55.091865], [-129.061207, 55.109059], [-129.026418, 55.132797], [-129.020935, 55.139295], [-129.01857, 55.144767], [-129.019363, 55.150017], [-129.030211, 55.155701], [-129.057085, 55.165929], [-129.078252, 55.170325], [-129.098423, 55.181292], [-129.119757, 55.193779], [-129.141339, 55.18723], [-129.138094, 55.18227], [-129.144381, 55.17564], [-129.167787, 55.172258], [-129.175673, 55.171531], [-129.183442, 55.163678], [-129.198022, 55.16072], [-129.218062, 55.162841], [-129.226754, 55.164733], [-129.226018, 55.163057], [-129.244185, 55.163609], [-129.251687, 55.161066], [-129.26238, 55.165633], [-129.25884, 55.165571], [-129.258149, 55.165507], [-129.256751, 55.16524], [-129.255182, 55.164667], [-129.256799, 55.169189], [-129.248237, 55.171855], [-129.233454, 55.178972], [-129.231181, 55.182526], [-129.227678, 55.182934], [-129.203897, 55.190664], [-129.199024, 55.19109], [-129.190309, 55.197323], [-129.189824, 55.197475], [-129.188725, 55.197603], [-129.188302, 55.197836], [-129.187628, 55.198403], [-129.185652, 55.199207], [-129.183958, 55.2], [-129.182956, 55.200658], [-129.182471, 55.200864], [-129.181735, 55.201666], [-129.181409, 55.202142], [-129.181283, 55.202196], [-129.181126, 55.202187], [-129.180951, 55.202071], [-129.180529, 55.202054], [-129.179571, 55.202226], [-129.178455, 55.202227], [-129.177953, 55.202363], [-129.177685, 55.202318], [-129.177263, 55.202472], [-129.176542, 55.202949], [-129.175475, 55.203347], [-129.174423, 55.203869], [-129.173654, 55.20414], [-129.173183, 55.204194], [-129.172682, 55.204348], [-129.171927, 55.204322], [-129.170889, 55.204072], [-129.17056, 55.204072], [-129.169744, 55.204271], [-129.168723, 55.204245], [-129.168424, 55.204318], [-129.168204, 55.204462], [-129.16761, 55.205002], [-129.167232, 55.205118], [-129.164735, 55.205221], [-129.163099, 55.204792], [-129.162345, 55.204775], [-129.16137, 55.205029], [-129.161404, 55.205531], [-129.16095, 55.205675], [-129.159991, 55.205695], [-129.159191, 55.205903], [-129.158611, 55.206289], [-129.158297, 55.206345], [-129.157779, 55.206543], [-129.157341, 55.207082], [-129.156368, 55.207424], [-129.155427, 55.20757], [-129.154893, 55.207454], [-129.154545, 55.207283], [-129.154136, 55.207293], [-129.152272, 55.208725], [-129.150441, 55.210542], [-129.149124, 55.211676], [-129.147763, 55.213124], [-129.147655, 55.213537], [-129.14621, 55.214051], [-129.145253, 55.214313], [-129.144151, 55.214269], [-129.143413, 55.214028], [-129.141808, 55.213742], [-129.141006, 55.213456], [-129.140566, 55.213437], [-129.139547, 55.213853], [-129.139231, 55.214095], [-129.138385, 55.214393], [-129.137349, 55.215005], [-129.135874, 55.215636], [-129.134306, 55.216401], [-129.133709, 55.216546], [-129.133363, 55.216734], [-129.132828, 55.216915], [-129.13184, 55.217105], [-129.131179, 55.21715], [-129.130285, 55.217708], [-129.129814, 55.217827], [-129.129359, 55.218052], [-129.129092, 55.218096], [-129.128103, 55.218089], [-129.127662, 55.21798], [-129.126672, 55.217965], [-129.126073, 55.217821], [-129.125445, 55.217867], [-129.124926, 55.217723], [-129.124626, 55.217562], [-129.124124, 55.217553], [-129.12351, 55.217607], [-129.122208, 55.217879], [-129.121485, 55.217933], [-129.120933, 55.217906], [-129.120652, 55.217835], [-129.118875, 55.217747], [-129.118515, 55.217865], [-129.11834, 55.218018], [-129.117853, 55.218036], [-129.117082, 55.217614], [-129.116705, 55.217327], [-129.116091, 55.217328], [-129.11441, 55.21758], [-129.113344, 55.218201], [-129.112464, 55.218328], [-129.111725, 55.218671], [-129.110782, 55.218842], [-129.11036, 55.218977], [-129.108769, 55.218642], [-129.102741, 55.213217], [-129.104477, 55.201209], [-129.101285, 55.200099], [-129.097234, 55.203393], [-129.084327, 55.194073], [-129.084324, 55.193792], [-129.08459, 55.193235], [-129.084588, 55.192947], [-129.084462, 55.192812], [-129.084258, 55.192732], [-129.083692, 55.192714], [-129.083093, 55.19186], [-129.082244, 55.191331], [-129.079826, 55.191296], [-129.0797, 55.191063], [-129.080059, 55.190713], [-129.080123, 55.190425], [-129.079996, 55.190318], [-129.079164, 55.190066], [-129.078633, 55.18975], [-129.078617, 55.188511], [-129.071155, 55.184562], [-129.059169, 55.184462], [-129.056476, 55.180245], [-129.04726, 55.178654], [-129.042492, 55.183273], [-129.037579, 55.180677], [-129.031391, 55.175204], [-129.01566, 55.170451], [-129.013532, 55.167662], [-129.011166, 55.160862], [-129.009898, 55.163587], [-129.003347, 55.15961], [-128.958954, 55.177228], [-128.979816, 55.180012], [-128.963958, 55.189649], [-128.962746, 55.198804], [-128.976614, 55.197217], [-128.986587, 55.199906], [-128.98609, 55.205427], [-128.98086, 55.205998], [-128.978345, 55.20807], [-128.976314, 55.206311], [-128.948031, 55.212632], [-128.903156, 55.223927], [-128.886951, 55.230304], [-128.894404, 55.235072], [-128.89801, 55.238202], [-128.902276, 55.243608], [-128.899369, 55.250031], [-128.897847, 55.254248], [-128.898507, 55.256524], [-128.86985, 55.266171], [-128.86935, 55.280658], [-128.868448, 55.295435], [-128.873223, 55.296167], [-128.879442, 55.300282], [-128.885618, 55.30862], [-128.880905, 55.312633], [-128.874023, 55.316897], [-128.862738, 55.327578], [-128.86063, 55.332573], [-128.856118, 55.33847], [-128.861114, 55.340243], [-128.866421, 55.334609], [-128.888649, 55.334686], [-128.922934, 55.337527], [-128.935118, 55.35286], [-128.930181, 55.357462], [-128.929451, 55.358307], [-128.929124, 55.358549], [-128.928787, 55.35872], [-128.928113, 55.358936], [-128.927118, 55.359185], [-128.925272, 55.360204], [-128.924112, 55.360576], [-128.923437, 55.361096], [-128.922785, 55.361819], [-128.922476, 55.362024], [-128.921541, 55.362418], [-128.92114, 55.362694], [-128.9198, 55.364171], [-128.918973, 55.365373], [-128.918592, 55.36611], [-128.918102, 55.366631], [-128.917485, 55.367538], [-128.916837, 55.368077], [-128.916568, 55.368687], [-128.915827, 55.369618], [-128.915191, 55.369955], [-128.913145, 55.371525], [-128.910664, 55.37398], [-128.910078, 55.374302], [-128.909139, 55.374608], [-128.910961, 55.379628], [-128.895487, 55.394437], [-128.897143, 55.398197], [-128.921612, 55.445778], [-128.924594, 55.455241], [-128.91638, 55.473762], [-128.910212, 55.488288], [-128.909654, 55.495179], [-128.909889, 55.497607], [-128.905907, 55.498474], [-128.898748, 55.499543], [-128.897679, 55.504836], [-128.898074, 55.504583], [-128.898516, 55.504471], [-128.902154, 55.50524], [-128.903212, 55.505312], [-128.909846, 55.504847], [-128.910906, 55.504894], [-128.913199, 55.505231], [-128.916829, 55.505885], [-128.932313, 55.513208], [-128.93592, 55.515895], [-128.944669, 55.515822], [-128.947956, 55.523332]]]]}, "properties": {"name": "Nisga'a", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Nisga'a", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949035", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.943191, 59.002255], [-128.999081, 59.002094], [-129.24429, 59.001595], [-129.489491, 59.001115], [-129.734686, 59.000655], [-129.797761, 59.000588], [-129.986208, 59.000816], [-130.239929, 59.001174], [-130.493655, 59.001518], [-130.623407, 59.001751], [-130.647073, 59.001518], [-130.746512, 59.001632], [-131.009787, 59.002097], [-131.009961, 58.939988], [-131.005977, 58.748415], [-131.006474, 58.707121], [-131.004491, 58.615617], [-131.004584, 58.609838], [-131.004216, 58.067517], [-131.00076, 58.012371], [-130.988274, 58.012319], [-130.987512, 58.012362], [-130.987456, 58.01533], [-130.965545, 58.015712], [-130.965723, 58.015519], [-130.966087, 58.015397], [-130.966655, 58.014967], [-130.966919, 58.014522], [-130.96771, 58.014124], [-130.967998, 58.014101], [-130.968262, 58.013998], [-130.968764, 58.013568], [-130.969549, 58.013053], [-130.970309, 58.01243], [-130.970388, 58.012007], [-130.970654, 58.011939], [-130.970914, 58.011711], [-130.971417, 58.011658], [-130.971827, 58.011418], [-130.972377, 58.011267], [-130.972386, 58.011113], [-130.972961, 58.010798], [-130.97406, 58.010449], [-130.974704, 58.010179], [-130.975537, 58.009932], [-130.976541, 58.009729], [-130.977302, 58.009707], [-130.978441, 58.009807], [-130.979153, 58.009813], [-130.980312, 58.009948], [-130.981093, 58.009657], [-130.981565, 58.00964], [-130.982085, 58.009543], [-130.982578, 58.009293], [-130.983537, 58.008576], [-130.984407, 58.0078], [-130.984947, 58.00745], [-130.986262, 58.007052], [-130.986723, 58.006829], [-130.987907, 58.006514], [-130.988901, 58.006121], [-130.989257, 58.005811], [-130.989717, 58.005551], [-131.001373, 58.005256], [-131.001675, 58.000551], [-130.749304, 58.000521], [-130.496833, 58.00048], [-130.244362, 58.000428], [-130.045532, 58.000424], [-129.992911, 58.000295], [-129.745236, 57.999896], [-129.497567, 57.999508], [-129.249904, 57.999129], [-129.002246, 57.998759], [-128.958736, 58.747813], [-128.943191, 59.002255]], [[-130.034584, 58.473844], [-130.034797, 58.474058], [-130.034788, 58.474363], [-130.034688, 58.474489], [-130.033107, 58.475545], [-130.032329, 58.476493], [-130.03224, 58.476989], [-130.032504, 58.477795], [-130.032515, 58.478162], [-130.031997, 58.479739], [-130.031776, 58.480113], [-130.024456, 58.480394], [-130.019671, 58.471898], [-130.017499, 58.466013], [-130.022314, 58.465698], [-130.023001, 58.46588], [-130.023522, 58.466109], [-130.025574, 58.466488], [-130.026563, 58.466893], [-130.02776, 58.466857], [-130.027899, 58.4669], [-130.02832, 58.467256], [-130.028719, 58.467962], [-130.02979, 58.468807], [-130.030329, 58.469046], [-130.031208, 58.469227], [-130.032073, 58.469516], [-130.033538, 58.470366], [-130.033862, 58.472628], [-130.03362, 58.473753], [-130.033743, 58.47386], [-130.034036, 58.473893], [-130.034219, 58.474296], [-130.034624, 58.474086], [-130.0345, 58.473863], [-130.034584, 58.473844]]]]}, "properties": {"name": "Kitimat-Stikine F", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat-Stikine F", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949038", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.621719, 57.150332], [-129.662642, 57.159872], [-129.681692, 57.159693], [-129.696229, 57.147674], [-129.703438, 57.117787], [-129.718149, 57.109107], [-129.735519, 57.107356], [-129.775998, 57.108942], [-129.795839, 57.103473], [-129.811567, 57.089268], [-129.81407, 57.074282], [-129.819453, 57.059551], [-129.843889, 57.026954], [-129.855303, 57.014327], [-129.874131, 57.007177], [-129.888865, 57.003331], [-129.900998, 56.998975], [-129.903681, 56.99565], [-129.90434, 56.981123], [-129.904355, 56.970871], [-129.900566, 56.963043], [-129.905744, 56.942335], [-129.901705, 56.934989], [-129.899514, 56.921369], [-129.893729, 56.914442], [-129.894381, 56.899455], [-129.881543, 56.886854], [-129.88131, 56.880734], [-129.890039, 56.873838], [-129.89513, 56.863561], [-129.889025, 56.852491], [-129.882173, 56.846976], [-129.872766, 56.836208], [-129.873569, 56.825901], [-129.869885, 56.815174], [-129.864561, 56.807231], [-129.86944, 56.803861], [-129.912659, 56.816324], [-129.932986, 56.819458], [-129.949307, 56.816859], [-129.958614, 56.811359], [-129.965467, 56.803662], [-129.977589, 56.796788], [-129.991419, 56.794245], [-130.003534, 56.793511], [-130.007802, 56.789887], [-130.019048, 56.785044], [-130.02893, 56.783199], [-130.038456, 56.782887], [-130.049727, 56.77943], [-130.06495, 56.775961], [-130.083495, 56.778788], [-130.096913, 56.781364], [-130.112773, 56.780218], [-130.124757, 56.777103], [-130.141163, 56.774578], [-130.155889, 56.767309], [-130.167853, 56.76622], [-130.191421, 56.772588], [-130.206601, 56.772929], [-130.222058, 56.769189], [-130.225201, 56.763323], [-130.213617, 56.747752], [-130.212635, 56.735655], [-130.220775, 56.727897], [-130.22931, 56.727471], [-130.243815, 56.72751], [-130.258878, 56.722113], [-130.271741, 56.714739], [-130.284187, 56.713135], [-130.308069, 56.71093], [-130.318484, 56.708611], [-130.332834, 56.701751], [-130.352075, 56.698332], [-130.375131, 56.697046], [-130.380028, 56.698459], [-130.391564, 56.70109], [-130.402194, 56.705704], [-130.408791, 56.709592], [-130.41762, 56.716377], [-130.429524, 56.724022], [-130.446699, 56.728406], [-130.462108, 56.726433], [-130.480487, 56.726136], [-130.480773, 56.723213], [-130.479043, 56.718246], [-130.47593, 56.714433], [-130.478067, 56.708928], [-130.481319, 56.703856], [-130.474355, 56.695419], [-130.477157, 56.690441], [-130.469999, 56.680048], [-130.47146, 56.675583], [-130.466697, 56.670683], [-130.460445, 56.660103], [-130.467631, 56.65298], [-130.475985, 56.653534], [-130.48762, 56.657364], [-130.499776, 56.657556], [-130.511584, 56.653424], [-130.520198, 56.652156], [-130.535068, 56.647081], [-130.56693, 56.647369], [-130.58157, 56.643234], [-130.594221, 56.636183], [-130.629092, 56.634354], [-130.638633, 56.632247], [-130.644404, 56.624702], [-130.652088, 56.61822], [-130.655356, 56.611167], [-130.65275, 56.605752], [-130.645875, 56.600103], [-130.638924, 56.595736], [-130.634359, 56.589667], [-130.631839, 56.581402], [-130.63129, 56.574022], [-130.637622, 56.567825], [-130.638966, 56.561045], [-130.643902, 56.557106], [-130.647545, 56.551474], [-130.652933, 56.549238], [-130.65764, 56.542881], [-130.668898, 56.536106], [-130.67286, 56.527372], [-130.692259, 56.518307], [-130.742679, 56.515626], [-130.767308, 56.512034], [-130.775774, 56.506868], [-130.789063, 56.497243], [-130.805695, 56.493605], [-130.827441, 56.492209], [-130.851658, 56.491416], [-130.861072, 56.49191], [-130.875918, 56.490208], [-130.887506, 56.490402], [-130.904358, 56.487601], [-130.919991, 56.486292], [-130.928955, 56.47463], [-130.927578, 56.464648], [-130.939217, 56.453979], [-130.959909, 56.447305], [-130.982286, 56.443735], [-131.00386, 56.442202], [-131.015953, 56.435925], [-131.024203, 56.422394], [-131.04332, 56.400931], [-130.976597, 56.392653], [-130.838, 56.375154], [-130.781208, 56.368101], [-130.78139, 56.368061], [-130.756877, 56.349118], [-130.72658, 56.332195], [-130.709376, 56.320119], [-130.675534, 56.297961], [-130.656236, 56.283395], [-130.633454, 56.271565], [-130.585513, 56.255446], [-130.56384, 56.251785], [-130.563562, 56.250052], [-130.553552, 56.250046], [-130.534053, 56.246747], [-130.498088, 56.242499], [-130.465169, 56.24147], [-130.444854, 56.241601], [-130.062282, 56.271621], [-129.948515, 56.039604], [-129.926752, 56.040112], [-129.918599, 56.040177], [-129.912608, 56.038591], [-129.905434, 56.036964], [-129.903044, 56.035702], [-129.90263, 56.035345], [-129.901109, 56.033526], [-129.900264, 56.030837], [-129.900183, 56.03017], [-129.90007, 56.030019], [-129.891336, 56.02353], [-129.88831, 56.023417], [-129.886843, 56.023132], [-129.885821, 56.022777], [-129.88365, 56.022309], [-129.882814, 56.022004], [-129.881643, 56.021215], [-129.880079, 56.020554], [-129.8776, 56.020361], [-129.8764, 56.020153], [-129.874421, 56.02001], [-129.87234, 56.019787], [-129.870858, 56.01916], [-129.870104, 56.019073], [-129.867186, 56.019488], [-129.86643, 56.019488], [-129.862933, 56.019104], [-129.861912, 56.018893], [-129.86132, 56.018875], [-129.860724, 56.018915], [-129.858331, 56.019476], [-129.857856, 56.019484], [-129.857202, 56.019365], [-129.85636, 56.019085], [-129.855429, 56.019053], [-129.854669, 56.019106], [-129.878221, 56.009551], [-129.914962, 55.964541], [-129.950779, 55.914638], [-129.980151, 55.869364], [-130.015935, 55.867685], [-130.031661, 55.868772], [-130.032579, 55.868736], [-130.06457, 55.834244], [-130.08476, 55.811671], [-130.122124, 55.801622], [-130.151308, 55.767318], [-130.154293, 55.750065], [-130.17327, 55.750059], [-130.173572, 55.747041], [-130.170673, 55.74217], [-130.162143, 55.737615], [-130.159838, 55.733854], [-130.159807, 55.717824], [-130.163729, 55.710275], [-130.171679, 55.704785], [-130.157335, 55.699418], [-130.132737, 55.684323], [-130.124817, 55.67859], [-130.122161, 55.670495], [-130.124449, 55.628689], [-130.136946, 55.619278], [-130.135206, 55.607239], [-130.138807, 55.600162], [-130.147642, 55.590729], [-130.147275, 55.584106], [-130.137082, 55.565448], [-130.139874, 55.551547], [-130.128398, 55.530212], [-130.120036, 55.526336], [-130.111628, 55.51078], [-130.111748, 55.500069], [-130.089155, 55.500064], [-130.086006, 55.4964], [-130.065057, 55.476643], [-130.038471, 55.449786], [-130.026254, 55.39247], [-130.028393, 55.368672], [-130.025783, 55.338524], [-129.986548, 55.308996], [-129.974011, 55.284921], [-129.991027, 55.269544], [-130.074765, 55.210842], [-130.105157, 55.190721], [-130.134032, 55.154215], [-130.147635, 55.138469], [-130.147236, 55.130965], [-130.171403, 55.101746], [-130.181164, 55.082026], [-130.191353, 55.060411], [-130.200442, 55.0464], [-130.244679, 55.007608], [-130.249772, 55.0], [-130.249993, 55.0], [-130.27159, 54.976015], [-130.283734, 54.966334], [-130.346717, 54.918667], [-130.382277, 54.897309], [-130.42317, 54.873568], [-130.455401, 54.851948], [-130.483255, 54.835856], [-130.567938, 54.792279], [-130.606943, 54.785459], [-130.60859, 54.784646], [-130.610628, 54.78426], [-130.611112, 54.784316], [-130.611267, 54.784701], [-130.62742, 54.78187], [-130.659063, 54.76395], [-130.626239, 54.738069], [-130.630221, 54.726987], [-130.616782, 54.708499], [-130.605106, 54.689033], [-130.580966, 54.691111], [-130.543217, 54.690934], [-130.51149, 54.691839], [-130.484758, 54.690515], [-130.442766, 54.691247], [-130.426593, 54.692548], [-130.388432, 54.691864], [-130.359425, 54.6962], [-130.314777, 54.701696], [-130.261794, 54.713524], [-130.254633, 54.716211], [-130.221454, 54.724991], [-130.218464, 54.725319], [-130.218133, 54.725749], [-130.209876, 54.729919], [-130.203911, 54.731763], [-130.200184, 54.731751], [-130.181808, 54.732133], [-130.170029, 54.731934], [-130.156448, 54.732173], [-130.144887, 54.731605], [-130.139885, 54.730724], [-130.130516, 54.726992], [-130.128177, 54.723401], [-130.121803, 54.721432], [-130.112032, 54.719132], [-130.097097, 54.718359], [-130.08347, 54.715342], [-130.080838, 54.714678], [-130.07441, 54.710208], [-130.058825, 54.7032], [-130.049931, 54.700962], [-130.031603, 54.699856], [-130.002324, 54.701779], [-129.983389, 54.699142], [-129.965599, 54.698925], [-129.959937, 54.702573], [-129.959602, 54.706883], [-129.971106, 54.712706], [-129.973755, 54.716371], [-129.965433, 54.715278], [-129.95522, 54.712491], [-129.940837, 54.710272], [-129.919276, 54.711077], [-129.898741, 54.716383], [-129.869833, 54.725095], [-129.853085, 54.727681], [-129.823684, 54.731643], [-129.816901, 54.735145], [-129.809202, 54.740622], [-129.799499, 54.745191], [-129.795354, 54.745788], [-129.779498, 54.733314], [-129.774359, 54.727445], [-129.763891, 54.722839], [-129.753858, 54.723577], [-129.743329, 54.732267], [-129.723747, 54.742864], [-129.714319, 54.743659], [-129.707474, 54.740508], [-129.70114, 54.736433], [-129.69672, 54.731041], [-129.692249, 54.723249], [-129.689782, 54.713664], [-129.689622, 54.705797], [-129.68434, 54.695412], [-129.665154, 54.689315], [-129.631365, 54.686411], [-129.582991, 54.681596], [-129.566973, 54.680302], [-129.552376, 54.677025], [-129.542252, 54.671862], [-129.530915, 54.667368], [-129.522228, 54.661832], [-129.513005, 54.658441], [-129.500358, 54.658287], [-129.499142, 54.658622], [-129.493297, 54.659584], [-129.490616, 54.659583], [-129.488058, 54.659917], [-129.486787, 54.661131], [-129.485697, 54.662038], [-129.47831, 54.664899], [-129.476238, 54.66496], [-129.474285, 54.664439], [-129.463938, 54.660288], [-129.46252, 54.66357], [-129.460826, 54.669537], [-129.45866, 54.674151], [-129.451688, 54.681329], [-129.450403, 54.686236], [-129.450485, 54.690675], [-129.453816, 54.692858], [-129.456302, 54.697965], [-129.455639, 54.702703], [-129.452755, 54.710003], [-129.450871, 54.712148], [-129.44949, 54.714494], [-129.436155, 54.731876], [-129.423289, 54.747075], [-129.418688, 54.750771], [-129.41624, 54.75444], [-129.404009, 54.766539], [-129.396334, 54.772777], [-129.384295, 54.779142], [-129.381344, 54.784391], [-129.38472, 54.79134], [-129.396128, 54.798047], [-129.407523, 54.810052], [-129.42018, 54.812522], [-129.434919, 54.811493], [-129.445546, 54.814179], [-129.455787, 54.817233], [-129.472305, 54.817221], [-129.477829, 54.819978], [-129.481725, 54.816332], [-129.561213, 54.823863], [-129.600014, 54.824997], [-129.671241, 54.82127], [-129.709841, 54.819018], [-129.74212, 54.816779], [-129.749837, 54.812537], [-129.751964, 54.808039], [-129.759703, 54.805621], [-129.785757, 54.810691], [-129.806149, 54.810032], [-129.826779, 54.841071], [-129.827754, 54.857199], [-129.819106, 54.864257], [-129.815383, 54.875499], [-129.821463, 54.891462], [-129.836954, 54.9172], [-129.840234, 54.924479], [-129.859674, 54.936443], [-129.873819, 54.946892], [-129.874999, 54.947279], [-129.877441, 54.947611], [-129.878402, 54.947209], [-129.881782, 54.949123], [-129.889148, 54.95715], [-129.926183, 54.978103], [-129.928389, 54.978078], [-129.940965, 54.978756], [-129.966396, 54.993117], [-129.961496, 54.995261], [-129.962103, 54.99568], [-129.961981, 54.995771], [-129.961492, 54.995631], [-129.960537, 54.995576], [-129.95954, 54.995673], [-129.959064, 54.995792], [-129.958764, 54.996153], [-129.960116, 54.996044], [-129.960321, 54.996214], [-129.960123, 54.996551], [-129.960009, 54.996629], [-129.956271, 54.997594], [-129.95518, 54.99835], [-129.954451, 54.999164], [-129.954593, 54.999475], [-129.954958, 54.999774], [-129.956606, 54.999129], [-129.957064, 54.998712], [-129.957442, 54.998161], [-129.957997, 54.997852], [-129.959086, 54.997645], [-129.960373, 54.997231], [-129.960856, 54.997128], [-129.962166, 54.99701], [-129.962803, 54.996834], [-129.963565, 54.996702], [-129.964158, 54.996634], [-129.964864, 54.996664], [-129.965393, 54.996553], [-129.96586, 54.99654], [-129.966114, 54.996628], [-129.966117, 54.996816], [-129.96637, 54.996869], [-129.96676, 54.996838], [-129.967536, 54.996661], [-129.968348, 54.996618], [-129.968458, 54.996646], [-129.968603, 54.996832], [-129.968997, 54.996937], [-129.969603, 54.996825], [-129.970201, 54.996946], [-129.970808, 54.996851], [-129.971183, 54.996883], [-129.972532, 54.997071], [-129.973006, 54.997192], [-129.97318, 54.997291], [-129.973215, 54.997452], [-129.973829, 54.997689], [-129.975348, 54.997812], [-129.975649, 54.997999], [-129.976248, 54.99812], [-129.97729, 54.998534], [-129.977468, 54.998829], [-129.977493, 54.999179], [-129.977872, 54.999374], [-129.978134, 54.999849], [-129.97892, 54.999977], [-129.980116, 55.000371], [-129.980599, 55.000401], [-129.988651, 55.000012], [-130.001693, 55.000002], [-130.005728, 55.002691], [-130.009619, 55.006823], [-130.01081, 55.01134], [-129.998216, 55.022179], [-129.998088, 55.022728], [-129.997772, 55.023297], [-129.99698, 55.024094], [-129.997067, 55.024516], [-129.996352, 55.025322], [-129.99616, 55.025692], [-129.995993, 55.026592], [-129.995615, 55.027089], [-129.995592, 55.027475], [-129.995765, 55.028076], [-129.99555, 55.028284], [-129.995558, 55.028635], [-129.995331, 55.028871], [-129.995304, 55.029033], [-129.995505, 55.028951], [-129.995989, 55.028947], [-129.996131, 55.028972], [-129.996151, 55.029106], [-129.99596, 55.02962], [-129.995778, 55.029855], [-129.995531, 55.029992], [-129.995292, 55.030498], [-129.994987, 55.030797], [-129.994962, 55.03103], [-129.995136, 55.031173], [-129.994723, 55.032803], [-129.994292, 55.033094], [-129.993129, 55.033508], [-129.992747, 55.033799], [-129.992523, 55.034304], [-129.992173, 55.034737], [-129.992249, 55.035259], [-129.99211, 55.035925], [-129.990945, 55.036887], [-129.99084, 55.037122], [-129.990383, 55.037656], [-129.989424, 55.03805], [-129.988951, 55.038557], [-129.988473, 55.038785], [-129.988048, 55.039382], [-129.988008, 55.040343], [-129.987729, 55.041065], [-129.987898, 55.04215], [-129.987509, 55.042882], [-129.987189, 55.043288], [-129.986623, 55.043761], [-129.986533, 55.043942], [-129.98566, 55.044686], [-129.98501, 55.044996], [-129.984402, 55.045163], [-129.983924, 55.045409], [-129.983363, 55.045567], [-129.981741, 55.046353], [-129.980619, 55.047215], [-129.979196, 55.047918], [-129.97835, 55.048572], [-129.977487, 55.049101], [-129.977555, 55.049299], [-129.977877, 55.049646], [-129.978687, 55.050224], [-129.978932, 55.050545], [-129.978985, 55.050824], [-129.979348, 55.050938], [-129.980727, 55.050962], [-129.981003, 55.051436], [-129.981322, 55.051658], [-129.981889, 55.052436], [-129.982546, 55.053033], [-129.983434, 55.053537], [-129.984887, 55.054101], [-129.985718, 55.054129], [-129.985898, 55.053751], [-129.986374, 55.05337], [-129.986981, 55.053248], [-129.987701, 55.053234], [-129.988051, 55.05288], [-129.988395, 55.052815], [-129.988658, 55.052687], [-129.989463, 55.053013], [-129.989522, 55.05409], [-129.989423, 55.055115], [-129.988117, 55.056771], [-129.988061, 55.05713], [-129.987897, 55.057411], [-129.961377, 55.057716], [-129.951424, 55.047702], [-129.936547, 55.036199], [-129.930083, 55.032732], [-129.917157, 55.040526], [-129.906143, 55.050921], [-129.895086, 55.059314], [-129.849247, 55.095505], [-129.838163, 55.103893], [-129.818659, 55.120958], [-129.788763, 55.142088], [-129.75624, 55.168923], [-129.740859, 55.179638], [-129.725129, 55.185121], [-129.713989, 55.193498], [-129.708702, 55.198917], [-129.705244, 55.200938], [-129.69237, 55.199947], [-129.681876, 55.196029], [-129.674888, 55.19408], [-129.662579, 55.195537], [-129.653776, 55.198971], [-129.642591, 55.20534], [-129.636798, 55.214301], [-129.631133, 55.210506], [-129.6207, 55.212563], [-129.60039, 55.219129], [-129.58326, 55.222447], [-129.570676, 55.224664], [-129.527839, 55.2196], [-129.437221, 55.216267], [-129.344222, 55.251303], [-129.246812, 55.287632], [-129.249346, 55.295483], [-129.238989, 55.300735], [-129.228643, 55.304585], [-129.22079, 55.30704], [-129.216866, 55.314996], [-129.215682, 55.323295], [-129.206968, 55.327678], [-129.190739, 55.331394], [-129.158367, 55.344398], [-129.073624, 55.383083], [-129.063065, 55.391724], [-129.045249, 55.402956], [-129.009412, 55.421035], [-129.009262, 55.421616], [-129.008254, 55.423077], [-129.007615, 55.4232], [-129.006436, 55.423841], [-129.004813, 55.426466], [-129.00282, 55.429088], [-129.000953, 55.430429], [-128.999499, 55.430365], [-128.998402, 55.429905], [-128.997994, 55.428988], [-128.996118, 55.447442], [-128.992958, 55.454796], [-128.995104, 55.456762], [-128.996059, 55.462168], [-128.998632, 55.471646], [-129.000482, 55.483495], [-128.995863, 55.485347], [-128.999879, 55.488255], [-129.005608, 55.490535], [-129.010154, 55.497658], [-129.009315, 55.510553], [-128.967616, 55.511441], [-128.96311, 55.513947], [-128.955599, 55.518647], [-128.958045, 55.526789], [-128.969957, 55.542597], [-128.959962, 55.547577], [-128.952576, 55.545686], [-128.956792, 55.539532], [-128.950802, 55.531673], [-128.947956, 55.523332], [-128.944669, 55.515822], [-128.93592, 55.515895], [-128.932313, 55.513208], [-128.916829, 55.505885], [-128.913199, 55.505231], [-128.910906, 55.504894], [-128.909846, 55.504847], [-128.903212, 55.505312], [-128.902154, 55.50524], [-128.898516, 55.504471], [-128.898074, 55.504583], [-128.897679, 55.504836], [-128.898748, 55.499543], [-128.905907, 55.498474], [-128.909889, 55.497607], [-128.909654, 55.495179], [-128.910212, 55.488288], [-128.91638, 55.473762], [-128.924594, 55.455241], [-128.921612, 55.445778], [-128.897143, 55.398197], [-128.895487, 55.394437], [-128.910961, 55.379628], [-128.909139, 55.374608], [-128.910078, 55.374302], [-128.910664, 55.37398], [-128.913145, 55.371525], [-128.915191, 55.369955], [-128.915827, 55.369618], [-128.916568, 55.368687], [-128.916837, 55.368077], [-128.917485, 55.367538], [-128.918102, 55.366631], [-128.918592, 55.36611], [-128.918973, 55.365373], [-128.9198, 55.364171], [-128.92114, 55.362694], [-128.921541, 55.362418], [-128.922476, 55.362024], [-128.922785, 55.361819], [-128.923437, 55.361096], [-128.924112, 55.360576], [-128.925272, 55.360204], [-128.927118, 55.359185], [-128.928113, 55.358936], [-128.928787, 55.35872], [-128.929124, 55.358549], [-128.929451, 55.358307], [-128.930181, 55.357462], [-128.935118, 55.35286], [-128.922934, 55.337527], [-128.888649, 55.334686], [-128.866421, 55.334609], [-128.861114, 55.340243], [-128.856118, 55.33847], [-128.86063, 55.332573], [-128.862738, 55.327578], [-128.874023, 55.316897], [-128.880905, 55.312633], [-128.885618, 55.30862], [-128.879442, 55.300282], [-128.873223, 55.296167], [-128.868448, 55.295435], [-128.86935, 55.280658], [-128.86985, 55.266171], [-128.898507, 55.256524], [-128.897847, 55.254248], [-128.899369, 55.250031], [-128.902276, 55.243608], [-128.89801, 55.238202], [-128.894404, 55.235072], [-128.886951, 55.230304], [-128.903156, 55.223927], [-128.948031, 55.212632], [-128.976314, 55.206311], [-128.978345, 55.20807], [-128.98086, 55.205998], [-128.98609, 55.205427], [-128.986587, 55.199906], [-128.976614, 55.197217], [-128.962746, 55.198804], [-128.963958, 55.189649], [-128.979816, 55.180012], [-128.958954, 55.177228], [-129.003347, 55.15961], [-129.009898, 55.163587], [-129.011166, 55.160862], [-129.013532, 55.167662], [-129.01566, 55.170451], [-129.031391, 55.175204], [-129.037579, 55.180677], [-129.042492, 55.183273], [-129.04726, 55.178654], [-129.056476, 55.180245], [-129.059169, 55.184462], [-129.071155, 55.184562], [-129.078617, 55.188511], [-129.078633, 55.18975], [-129.079164, 55.190066], [-129.079996, 55.190318], [-129.080123, 55.190425], [-129.080059, 55.190713], [-129.0797, 55.191063], [-129.079826, 55.191296], [-129.082244, 55.191331], [-129.083093, 55.19186], [-129.083692, 55.192714], [-129.084258, 55.192732], [-129.084462, 55.192812], [-129.084588, 55.192947], [-129.08459, 55.193235], [-129.084324, 55.193792], [-129.084327, 55.194073], [-129.097234, 55.203393], [-129.101285, 55.200099], [-129.104477, 55.201209], [-129.102741, 55.213217], [-129.108769, 55.218642], [-129.11036, 55.218977], [-129.110782, 55.218842], [-129.111725, 55.218671], [-129.112464, 55.218328], [-129.113344, 55.218201], [-129.11441, 55.21758], [-129.116091, 55.217328], [-129.116705, 55.217327], [-129.117082, 55.217614], [-129.117853, 55.218036], [-129.11834, 55.218018], [-129.118515, 55.217865], [-129.118875, 55.217747], [-129.120652, 55.217835], [-129.120933, 55.217906], [-129.121485, 55.217933], [-129.122208, 55.217879], [-129.12351, 55.217607], [-129.124124, 55.217553], [-129.124626, 55.217562], [-129.124926, 55.217723], [-129.125445, 55.217867], [-129.126073, 55.217821], [-129.126672, 55.217965], [-129.127662, 55.21798], [-129.128103, 55.218089], [-129.129092, 55.218096], [-129.129359, 55.218052], [-129.129814, 55.217827], [-129.130285, 55.217708], [-129.131179, 55.21715], [-129.13184, 55.217105], [-129.132828, 55.216915], [-129.133363, 55.216734], [-129.133709, 55.216546], [-129.134306, 55.216401], [-129.135874, 55.215636], [-129.137349, 55.215005], [-129.138385, 55.214393], [-129.139231, 55.214095], [-129.139547, 55.213853], [-129.140566, 55.213437], [-129.141006, 55.213456], [-129.141808, 55.213742], [-129.143413, 55.214028], [-129.144151, 55.214269], [-129.145253, 55.214313], [-129.14621, 55.214051], [-129.147655, 55.213537], [-129.147763, 55.213124], [-129.149124, 55.211676], [-129.150441, 55.210542], [-129.152272, 55.208725], [-129.154136, 55.207293], [-129.154545, 55.207283], [-129.154893, 55.207454], [-129.155427, 55.20757], [-129.156368, 55.207424], [-129.157341, 55.207082], [-129.157779, 55.206543], [-129.158297, 55.206345], [-129.158611, 55.206289], [-129.159191, 55.205903], [-129.159991, 55.205695], [-129.16095, 55.205675], [-129.161404, 55.205531], [-129.16137, 55.205029], [-129.162345, 55.204775], [-129.163099, 55.204792], [-129.164735, 55.205221], [-129.167232, 55.205118], [-129.16761, 55.205002], [-129.168204, 55.204462], [-129.168424, 55.204318], [-129.168723, 55.204245], [-129.169744, 55.204271], [-129.17056, 55.204072], [-129.170889, 55.204072], [-129.171927, 55.204322], [-129.172682, 55.204348], [-129.173183, 55.204194], [-129.173654, 55.20414], [-129.174423, 55.203869], [-129.175475, 55.203347], [-129.176542, 55.202949], [-129.177263, 55.202472], [-129.177685, 55.202318], [-129.177953, 55.202363], [-129.178455, 55.202227], [-129.179571, 55.202226], [-129.180529, 55.202054], [-129.180951, 55.202071], [-129.181126, 55.202187], [-129.181283, 55.202196], [-129.181409, 55.202142], [-129.181735, 55.201666], [-129.182471, 55.200864], [-129.182956, 55.200658], [-129.183958, 55.2], [-129.185652, 55.199207], [-129.187628, 55.198403], [-129.188302, 55.197836], [-129.188725, 55.197603], [-129.189824, 55.197475], [-129.190309, 55.197323], [-129.199024, 55.19109], [-129.203897, 55.190664], [-129.227678, 55.182934], [-129.231181, 55.182526], [-129.233454, 55.178972], [-129.248237, 55.171855], [-129.256799, 55.169189], [-129.255182, 55.164667], [-129.256751, 55.16524], [-129.258149, 55.165507], [-129.25884, 55.165571], [-129.26238, 55.165633], [-129.251687, 55.161066], [-129.244185, 55.163609], [-129.226018, 55.163057], [-129.226754, 55.164733], [-129.218062, 55.162841], [-129.198022, 55.16072], [-129.183442, 55.163678], [-129.175673, 55.171531], [-129.167787, 55.172258], [-129.144381, 55.17564], [-129.138094, 55.18227], [-129.141339, 55.18723], [-129.119757, 55.193779], [-129.098423, 55.181292], [-129.078252, 55.170325], [-129.057085, 55.165929], [-129.030211, 55.155701], [-129.019363, 55.150017], [-129.01857, 55.144767], [-129.020935, 55.139295], [-129.026418, 55.132797], [-129.061207, 55.109059], [-129.08396, 55.091865], [-129.097236, 55.095674], [-129.118743, 55.102095], [-129.18132, 55.111012], [-129.202501, 55.109189], [-129.232523, 55.095894], [-129.263306, 55.084242], [-129.302747, 55.067341], [-129.290487, 55.055813], [-129.290253, 55.04877], [-129.335022, 55.032091], [-129.396137, 55.011428], [-129.42299, 54.995008], [-129.422469, 54.990663], [-129.423256, 54.986467], [-129.428753, 54.982417], [-129.430323, 54.977921], [-129.424839, 54.972238], [-129.414932, 54.97152], [-129.410759, 54.962088], [-129.408678, 54.950554], [-129.388604, 54.93621], [-129.381048, 54.93263], [-129.369075, 54.934019], [-129.34798, 54.932425], [-129.338085, 54.927797], [-129.33706, 54.921057], [-129.345176, 54.913416], [-129.353024, 54.908473], [-129.357473, 54.903528], [-129.359976, 54.902289], [-129.354267, 54.900443], [-129.342121, 54.894298], [-129.323217, 54.888792], [-129.297488, 54.882796], [-129.270667, 54.882459], [-129.252733, 54.883445], [-129.193903, 54.883794], [-129.174314, 54.88688], [-129.165365, 54.892345], [-129.155345, 54.9009], [-129.148037, 54.905903], [-129.136638, 54.912086], [-129.122313, 54.915494], [-129.101817, 54.918154], [-129.098107, 54.919189], [-129.054661, 54.929363], [-129.039485, 54.93037], [-128.987113, 54.936793], [-128.973203, 54.940683], [-128.966317, 54.942767], [-128.966435, 54.942493], [-128.94469, 54.94976], [-128.93169, 54.961506], [-128.931328, 54.961416], [-128.930939, 54.961398], [-128.930406, 54.961559], [-128.929719, 54.961648], [-128.929065, 54.961901], [-128.927485, 54.962024], [-128.926766, 54.962285], [-128.926033, 54.962796], [-128.925813, 54.963291], [-128.925124, 54.96383], [-128.924671, 54.964369], [-128.92367, 54.964853], [-128.92145, 54.966461], [-128.921167, 54.966586], [-128.920418, 54.966747], [-128.919853, 54.96707], [-128.919353, 54.967717], [-128.917584, 54.969244], [-128.917302, 54.969586], [-128.9171, 54.97007], [-128.916926, 54.970232], [-128.916425, 54.970555], [-128.915597, 54.970941], [-128.914799, 54.971174], [-128.91419, 54.97156], [-128.913721, 54.972108], [-128.913501, 54.972548], [-128.912734, 54.973347], [-128.912623, 54.973706], [-128.912248, 54.973939], [-128.911919, 54.974416], [-128.911465, 54.974686], [-128.911449, 54.975225], [-128.908859, 54.976823], [-128.908173, 54.984712], [-128.916488, 54.991304], [-128.927284, 55.00022], [-128.950328, 55.000212], [-128.947637, 55.007605], [-128.942214, 55.012849], [-128.912167, 55.035019], [-128.892448, 55.066668], [-128.882135, 55.069461], [-128.868181, 55.067827], [-128.856753, 55.059164], [-128.839549, 55.075329], [-128.819609, 55.108539], [-128.79624, 55.115544], [-128.790734, 55.124244], [-128.793076, 55.144908], [-128.790356, 55.15394], [-128.796265, 55.161664], [-128.828241, 55.174514], [-128.838974, 55.181809], [-128.839782, 55.187585], [-128.833612, 55.195709], [-128.825939, 55.199147], [-128.806635, 55.20005], [-128.780155, 55.191773], [-128.740171, 55.170902], [-128.724978, 55.167357], [-128.712276, 55.162189], [-128.715157, 55.145396], [-128.708188, 55.138908], [-128.697312, 55.131956], [-128.69491, 55.127343], [-128.68241, 55.124859], [-128.676264, 55.130473], [-128.673296, 55.139308], [-128.663103, 55.145608], [-128.648088, 55.145989], [-128.63226, 55.141437], [-128.604197, 55.125341], [-128.599067, 55.117068], [-128.588686, 55.108829], [-128.575832, 55.108123], [-128.569471, 55.112703], [-128.540444, 55.120233], [-128.535292, 55.12546], [-128.529431, 55.12159], [-128.523424, 55.113371], [-128.508117, 55.112196], [-128.501805, 55.114273], [-128.501663, 55.120109], [-128.480408, 55.134079], [-128.472197, 55.135759], [-128.471582, 55.136448], [-128.465591, 55.138676], [-128.452565, 55.14137], [-128.442623, 55.141353], [-128.430413, 55.139637], [-128.423304, 55.14091], [-128.408278, 55.140629], [-128.400757, 55.139124], [-128.381143, 55.137808], [-128.37707, 55.141466], [-128.380535, 55.148192], [-128.383223, 55.158878], [-128.383061, 55.158887], [-128.383108, 55.160675], [-128.388101, 55.164215], [-128.396099, 55.167187], [-128.400326, 55.17271], [-128.396626, 55.176793], [-128.394746, 55.185642], [-128.385774, 55.190141], [-128.364936, 55.195168], [-128.357312, 55.198317], [-128.370195, 55.201732], [-128.384295, 55.209636], [-128.388429, 55.221907], [-128.381912, 55.23116], [-128.365513, 55.237586], [-128.362304, 55.244112], [-128.363014, 55.252734], [-128.354388, 55.260967], [-128.354924, 55.266867], [-128.366499, 55.269369], [-128.377994, 55.270108], [-128.387568, 55.276464], [-128.386314, 55.284742], [-128.377621, 55.3026], [-128.368418, 55.306638], [-128.362471, 55.324401], [-128.354458, 55.335474], [-128.341213, 55.343886], [-128.368617, 55.354927], [-128.376748, 55.361388], [-128.376197, 55.371159], [-128.368556, 55.378871], [-128.356123, 55.383475], [-128.346248, 55.385246], [-128.320408, 55.384302], [-128.230262, 55.381623], [-128.163556, 55.378874], [-128.162681, 55.41506], [-128.16743, 55.427545], [-128.134012, 55.417523], [-128.123457, 55.421106], [-128.120326, 55.427441], [-128.121318, 55.43128], [-128.133332, 55.4418], [-128.138762, 55.453089], [-128.13731, 55.459806], [-128.136301, 55.462114], [-128.144124, 55.470556], [-128.151837, 55.474249], [-128.171692, 55.488234], [-128.177732, 55.4949], [-128.1805, 55.510965], [-128.186, 55.521056], [-128.186725, 55.531436], [-128.174208, 55.544994], [-128.180237, 55.549968], [-128.190999, 55.55179], [-128.197763, 55.554614], [-128.201675, 55.559295], [-128.203352, 55.56237], [-128.217428, 55.562522], [-128.250098, 55.576133], [-128.261249, 55.582209], [-128.266285, 55.581632], [-128.277859, 55.591543], [-128.28656, 55.59148], [-128.349113, 55.628602], [-128.349042, 55.632019], [-128.346411, 55.638547], [-128.353115, 55.642865], [-128.360622, 55.641711], [-128.374547, 55.637977], [-128.38341, 55.640899], [-128.388513, 55.645186], [-128.390361, 55.647849], [-128.39167, 55.651175], [-128.390754, 55.658425], [-128.388026, 55.661971], [-128.387338, 55.665997], [-128.392447, 55.676025], [-128.398964, 55.6835], [-128.403018, 55.686164], [-128.425493, 55.690872], [-128.444561, 55.697754], [-128.463257, 55.711328], [-128.481593, 55.71998], [-128.496868, 55.712985], [-128.509996, 55.714558], [-128.530167, 55.720216], [-128.557441, 55.725182], [-128.583918, 55.72707], [-128.616795, 55.726937], [-128.624149, 55.734457], [-128.645287, 55.746328], [-128.650398, 55.750903], [-128.652839, 55.75334], [-128.654141, 55.753798], [-128.663796, 55.762484], [-128.698629, 55.782019], [-128.718846, 55.794011], [-128.743119, 55.80916], [-128.755271, 55.815334], [-128.759716, 55.825197], [-128.77974, 55.843866], [-128.79378, 55.855439], [-128.788952, 55.861607], [-128.789219, 55.861858], [-128.779757, 55.874808], [-128.76091, 55.8668], [-128.750532, 55.864641], [-128.745603, 55.867949], [-128.75382, 55.876376], [-128.751131, 55.883839], [-128.736219, 55.883844], [-128.737434, 55.890865], [-128.73293, 55.891525], [-128.719295, 55.879599], [-128.711544, 55.878961], [-128.711113, 55.884595], [-128.724065, 55.894768], [-128.730411, 55.906872], [-128.723794, 55.91926], [-128.72377, 55.926737], [-128.723642, 55.926763], [-128.715349, 55.923775], [-128.706659, 55.926133], [-128.701049, 55.931337], [-128.700199, 55.93812], [-128.71667, 55.950494], [-128.707841, 55.952735], [-128.688165, 55.944012], [-128.658648, 55.947356], [-128.665161, 55.964874], [-128.627765, 55.993971], [-128.618168, 56.012896], [-128.604117, 56.021255], [-128.58217, 56.037212], [-128.561443, 56.052714], [-128.555293, 56.054528], [-128.555139, 56.059729], [-128.5543, 56.060095], [-128.55436, 56.068481], [-128.556602, 56.074545], [-128.554467, 56.079449], [-128.546914, 56.081582], [-128.536241, 56.081484], [-128.522565, 56.083725], [-128.522617, 56.083757], [-128.51984, 56.08615], [-128.507237, 56.092742], [-128.492091, 56.102173], [-128.473792, 56.105783], [-128.433361, 56.106895], [-128.409303, 56.109147], [-128.387861, 56.107009], [-128.345546, 56.093596], [-128.330045, 56.0932], [-128.330237, 56.093142], [-128.32162, 56.092087], [-128.306528, 56.096609], [-128.278712, 56.110285], [-128.27598, 56.118789], [-128.285481, 56.126592], [-128.285516, 56.126536], [-128.287954, 56.130479], [-128.290269, 56.13695], [-128.294041, 56.170819], [-128.298433, 56.180959], [-128.295571, 56.190506], [-128.277023, 56.209395], [-128.275492, 56.214203], [-128.284759, 56.233249], [-128.285759, 56.241413], [-128.28409, 56.246575], [-128.274606, 56.25255], [-128.241164, 56.265467], [-128.230906, 56.271253], [-128.222228, 56.279822], [-128.214561, 56.295406], [-128.20206, 56.300918], [-128.181867, 56.304745], [-128.154965, 56.308207], [-128.135828, 56.308679], [-128.11857, 56.308404], [-128.105809, 56.309426], [-128.094078, 56.31419], [-128.087965, 56.321217], [-128.095149, 56.334996], [-128.109344, 56.348184], [-128.1301, 56.354931], [-128.175036, 56.362097], [-128.227252, 56.368854], [-128.2558, 56.375849], [-128.273176, 56.383416], [-128.280736, 56.391067], [-128.285439, 56.400044], [-128.280186, 56.40945], [-128.265233, 56.419029], [-128.247247, 56.424349], [-128.227876, 56.426346], [-128.215377, 56.430245], [-128.190571, 56.446493], [-128.163518, 56.453478], [-128.156656, 56.449193], [-128.143706, 56.434851], [-128.136506, 56.427608], [-128.118539, 56.421565], [-128.103195, 56.417999], [-128.080103, 56.414124], [-128.06781, 56.41344], [-128.053499, 56.415522], [-128.027548, 56.423909], [-128.015328, 56.424715], [-127.998964, 56.428347], [-127.978622, 56.435426], [-127.969409, 56.443388], [-127.963795, 56.451151], [-127.964668, 56.460732], [-127.969845, 56.470468], [-127.987114, 56.494732], [-127.990021, 56.503446], [-127.988742, 56.510442], [-127.977494, 56.520724], [-127.966777, 56.528609], [-127.945991, 56.533494], [-127.90806, 56.538545], [-127.87241, 56.541031], [-127.854493, 56.54291], [-127.843691, 56.548826], [-127.847599, 56.559159], [-127.861553, 56.565058], [-127.886067, 56.5782], [-127.897367, 56.584651], [-127.905237, 56.591471], [-127.912529, 56.610206], [-127.916218, 56.615071], [-127.926972, 56.61936], [-127.944978, 56.621558], [-127.951478, 56.620492], [-127.964691, 56.616153], [-127.982121, 56.611165], [-127.989479, 56.611317], [-127.994648, 56.614826], [-128.00286, 56.620005], [-128.01243, 56.627067], [-128.018221, 56.633251], [-128.028365, 56.63699], [-128.044992, 56.647736], [-128.053407, 56.656883], [-128.071119, 56.666641], [-128.088278, 56.66806], [-128.097792, 56.666001], [-128.10069, 56.66254], [-128.098241, 56.654715], [-128.103376, 56.644368], [-128.110588, 56.639382], [-128.126483, 56.63758], [-128.17652, 56.643448], [-128.181209, 56.648652], [-128.183911, 56.657611], [-128.167071, 56.681867], [-128.161004, 56.694], [-128.161978, 56.706467], [-128.170246, 56.719716], [-128.188676, 56.737847], [-128.198856, 56.737761], [-128.20642, 56.730204], [-128.219876, 56.733384], [-128.230327, 56.735183], [-128.248739, 56.742103], [-128.259267, 56.748226], [-128.272013, 56.749364], [-128.290622, 56.745064], [-128.303343, 56.747124], [-128.314146, 56.750627], [-128.358518, 56.752981], [-128.375799, 56.758112], [-128.418303, 56.771845], [-128.449025, 56.794744], [-128.486, 56.803727], [-128.495132, 56.811425], [-128.537375, 56.833218], [-128.562691, 56.843425], [-128.576079, 56.852301], [-128.618882, 56.877864], [-128.63447, 56.883641], [-128.65545, 56.882891], [-128.693341, 56.878426], [-128.694728, 56.884924], [-128.683987, 56.895749], [-128.657279, 56.912275], [-128.648902, 56.919754], [-128.664074, 56.926321], [-128.667693, 56.935943], [-128.667665, 56.950216], [-128.663547, 56.963419], [-128.660023, 56.967743], [-128.661516, 56.972271], [-128.675646, 56.978428], [-128.686568, 56.985423], [-128.694307, 56.991636], [-128.699126, 56.996821], [-128.709107, 57.01029], [-128.718009, 57.030822], [-128.726272, 57.042146], [-128.740646, 57.047301], [-128.763375, 57.049318], [-128.780656, 57.052894], [-128.786898, 57.060646], [-128.786116, 57.075668], [-128.797645, 57.079844], [-128.81797, 57.087558], [-128.834459, 57.099333], [-128.850045, 57.116658], [-128.860216, 57.12109], [-128.876133, 57.121852], [-128.892261, 57.127457], [-128.901632, 57.134252], [-128.914792, 57.142765], [-128.930615, 57.147634], [-128.94747, 57.147748], [-128.956413, 57.146534], [-128.977693, 57.14394], [-129.00369, 57.165718], [-129.049053, 57.176549], [-129.054459, 57.175832], [-129.086978, 57.177806], [-129.105001, 57.179505], [-129.121875, 57.175142], [-129.135484, 57.157398], [-129.155275, 57.134574], [-129.169271, 57.120988], [-129.186856, 57.116785], [-129.224961, 57.111738], [-129.242315, 57.104106], [-129.248339, 57.094177], [-129.249453, 57.084642], [-129.255472, 57.071927], [-129.263776, 57.066888], [-129.277507, 57.067208], [-129.294645, 57.078853], [-129.306157, 57.07944], [-129.327697, 57.07587], [-129.37877, 57.071459], [-129.427099, 57.067748], [-129.450464, 57.072348], [-129.472315, 57.081076], [-129.492025, 57.091749], [-129.498065, 57.100679], [-129.49902, 57.111468], [-129.47594, 57.13103], [-129.473403, 57.145488], [-129.480825, 57.160412], [-129.490038, 57.165403], [-129.512503, 57.168262], [-129.541731, 57.167174], [-129.561716, 57.162491], [-129.578214, 57.156138], [-129.597777, 57.149973], [-129.621719, 57.150332]]]]}, "properties": {"name": "Kitimat-Stikine A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat-Stikine A", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949039", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-131.001675, 58.000551], [-131.118046, 58.000182], [-131.126789, 57.999791], [-131.202289, 58.000073], [-131.250871, 57.999968], [-131.31899, 57.999928], [-131.50097, 57.999881], [-131.750875, 57.999889], [-132.000781, 57.999897], [-132.250686, 57.999905], [-132.500592, 57.999914], [-132.750498, 57.999923], [-133.000404, 57.999933], [-133.069543, 58.000052], [-132.988993, 57.942973], [-132.961812, 57.920697], [-132.917966, 57.87949], [-132.868068, 57.844587], [-132.822918, 57.787567], [-132.821113, 57.784984], [-132.821238, 57.784766], [-132.820736, 57.784446], [-132.802477, 57.758304], [-132.759443, 57.707526], [-132.719453, 57.669097], [-132.686743, 57.642966], [-132.625038, 57.574909], [-132.576026, 57.525676], [-132.563579, 57.506826], [-132.546596, 57.492299], [-132.514447, 57.464525], [-132.478325, 57.437856], [-132.424282, 57.392246], [-132.369582, 57.351424], [-132.330678, 57.306313], [-132.244621, 57.212013], [-132.369308, 57.091422], [-132.045927, 57.044044], [-132.069172, 56.989899], [-132.121147, 56.866901], [-131.870758, 56.80625], [-131.901838, 56.754361], [-131.857457, 56.701773], [-131.841563, 56.634113], [-131.833632, 56.598775], [-131.683702, 56.607328], [-131.581755, 56.612372], [-131.542672, 56.589589], [-131.467385, 56.551073], [-131.419153, 56.534507], [-131.33148, 56.505826], [-131.250288, 56.476365], [-131.202093, 56.458326], [-131.164157, 56.447285], [-131.087203, 56.406353], [-131.04332, 56.400931], [-131.024203, 56.422394], [-131.015953, 56.435925], [-131.00386, 56.442202], [-130.982286, 56.443735], [-130.959909, 56.447305], [-130.939217, 56.453979], [-130.927578, 56.464648], [-130.928955, 56.47463], [-130.919991, 56.486292], [-130.904358, 56.487601], [-130.887506, 56.490402], [-130.875918, 56.490208], [-130.861072, 56.49191], [-130.851658, 56.491416], [-130.827441, 56.492209], [-130.805695, 56.493605], [-130.789063, 56.497243], [-130.775774, 56.506868], [-130.767308, 56.512034], [-130.742679, 56.515626], [-130.692259, 56.518307], [-130.67286, 56.527372], [-130.668898, 56.536106], [-130.65764, 56.542881], [-130.652933, 56.549238], [-130.647545, 56.551474], [-130.643902, 56.557106], [-130.638966, 56.561045], [-130.637622, 56.567825], [-130.63129, 56.574022], [-130.631839, 56.581402], [-130.634359, 56.589667], [-130.638924, 56.595736], [-130.645875, 56.600103], [-130.65275, 56.605752], [-130.655356, 56.611167], [-130.652088, 56.61822], [-130.644404, 56.624702], [-130.638633, 56.632247], [-130.629092, 56.634354], [-130.594221, 56.636183], [-130.58157, 56.643234], [-130.56693, 56.647369], [-130.535068, 56.647081], [-130.520198, 56.652156], [-130.511584, 56.653424], [-130.499776, 56.657556], [-130.48762, 56.657364], [-130.475985, 56.653534], [-130.467631, 56.65298], [-130.460445, 56.660103], [-130.466697, 56.670683], [-130.47146, 56.675583], [-130.469999, 56.680048], [-130.477157, 56.690441], [-130.474355, 56.695419], [-130.481319, 56.703856], [-130.478067, 56.708928], [-130.47593, 56.714433], [-130.479043, 56.718246], [-130.480773, 56.723213], [-130.480487, 56.726136], [-130.462108, 56.726433], [-130.446699, 56.728406], [-130.429524, 56.724022], [-130.41762, 56.716377], [-130.408791, 56.709592], [-130.402194, 56.705704], [-130.391564, 56.70109], [-130.380028, 56.698459], [-130.375131, 56.697046], [-130.352075, 56.698332], [-130.332834, 56.701751], [-130.318484, 56.708611], [-130.308069, 56.71093], [-130.284187, 56.713135], [-130.271741, 56.714739], [-130.258878, 56.722113], [-130.243815, 56.72751], [-130.22931, 56.727471], [-130.220775, 56.727897], [-130.212635, 56.735655], [-130.213617, 56.747752], [-130.225201, 56.763323], [-130.222058, 56.769189], [-130.206601, 56.772929], [-130.191421, 56.772588], [-130.167853, 56.76622], [-130.155889, 56.767309], [-130.141163, 56.774578], [-130.124757, 56.777103], [-130.112773, 56.780218], [-130.096913, 56.781364], [-130.083495, 56.778788], [-130.06495, 56.775961], [-130.049727, 56.77943], [-130.038456, 56.782887], [-130.02893, 56.783199], [-130.019048, 56.785044], [-130.007802, 56.789887], [-130.003534, 56.793511], [-129.991419, 56.794245], [-129.977589, 56.796788], [-129.965467, 56.803662], [-129.958614, 56.811359], [-129.949307, 56.816859], [-129.932986, 56.819458], [-129.912659, 56.816324], [-129.86944, 56.803861], [-129.864561, 56.807231], [-129.869885, 56.815174], [-129.873569, 56.825901], [-129.872766, 56.836208], [-129.882173, 56.846976], [-129.889025, 56.852491], [-129.89513, 56.863561], [-129.890039, 56.873838], [-129.88131, 56.880734], [-129.881543, 56.886854], [-129.894381, 56.899455], [-129.893729, 56.914442], [-129.899514, 56.921369], [-129.901705, 56.934989], [-129.905744, 56.942335], [-129.900566, 56.963043], [-129.904355, 56.970871], [-129.90434, 56.981123], [-129.903681, 56.99565], [-129.900998, 56.998975], [-129.888865, 57.003331], [-129.874131, 57.007177], [-129.855303, 57.014327], [-129.843889, 57.026954], [-129.819453, 57.059551], [-129.81407, 57.074282], [-129.811567, 57.089268], [-129.795839, 57.103473], [-129.775998, 57.108942], [-129.735519, 57.107356], [-129.718149, 57.109107], [-129.703438, 57.117787], [-129.696229, 57.147674], [-129.681692, 57.159693], [-129.662642, 57.159872], [-129.621719, 57.150332], [-129.597777, 57.149973], [-129.578214, 57.156138], [-129.561716, 57.162491], [-129.541731, 57.167174], [-129.512503, 57.168262], [-129.490038, 57.165403], [-129.480825, 57.160412], [-129.473403, 57.145488], [-129.47594, 57.13103], [-129.49902, 57.111468], [-129.498065, 57.100679], [-129.492025, 57.091749], [-129.472315, 57.081076], [-129.450464, 57.072348], [-129.427099, 57.067748], [-129.37877, 57.071459], [-129.327697, 57.07587], [-129.306157, 57.07944], [-129.294645, 57.078853], [-129.277507, 57.067208], [-129.263776, 57.066888], [-129.255472, 57.071927], [-129.249453, 57.084642], [-129.248339, 57.094177], [-129.242315, 57.104106], [-129.224961, 57.111738], [-129.186856, 57.116785], [-129.169271, 57.120988], [-129.155275, 57.134574], [-129.135484, 57.157398], [-129.121875, 57.175142], [-129.105001, 57.179505], [-129.086978, 57.177806], [-129.054459, 57.175832], [-129.049053, 57.176549], [-129.00369, 57.165718], [-129.002054, 57.164389], [-129.002736, 57.86943], [-129.002246, 57.998759], [-129.249904, 57.999129], [-129.497567, 57.999508], [-129.745236, 57.999896], [-129.992911, 58.000295], [-130.045532, 58.000424], [-130.244362, 58.000428], [-130.496833, 58.00048], [-130.749304, 58.000521], [-131.001675, 58.000551]], [[-131.163906, 57.916168], [-131.157133, 57.916301], [-131.15632, 57.905438], [-131.163432, 57.905592], [-131.163906, 57.916168]], [[-131.178122, 57.904687], [-131.176177, 57.905333], [-131.174134, 57.905568], [-131.169824, 57.90684], [-131.16859, 57.905455], [-131.166508, 57.906082], [-131.16557, 57.905252], [-131.177981, 57.901512], [-131.179831, 57.900333], [-131.180972, 57.899842], [-131.184339, 57.902363], [-131.178122, 57.904687]], [[-129.977447, 57.831788], [-129.978353, 57.831977], [-129.97918, 57.832277], [-129.984136, 57.834472], [-129.982907, 57.835309], [-129.983959, 57.836186], [-129.986596, 57.835481], [-129.989365, 57.836842], [-129.990601, 57.837688], [-129.997126, 57.843187], [-129.993599, 57.844815], [-129.993037, 57.844628], [-129.984841, 57.840455], [-129.985289, 57.840272], [-129.980451, 57.836437], [-129.979463, 57.835761], [-129.975417, 57.833303], [-129.975063, 57.832691], [-129.975019, 57.832369], [-129.975166, 57.831644], [-129.977447, 57.831788]]]]}, "properties": {"name": "Kitimat-Stikine D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitimat-Stikine D", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949041", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.519135, 52.600531], [-128.519433, 52.60077], [-128.521742, 52.60123], [-128.538795, 52.600438], [-128.539981, 52.578556], [-128.531734, 52.578522], [-128.515996, 52.578627], [-128.516032, 52.57923], [-128.516787, 52.58033], [-128.5168, 52.580501], [-128.516725, 52.580654], [-128.516517, 52.580788], [-128.516279, 52.580849], [-128.515692, 52.580775], [-128.515425, 52.5808], [-128.515094, 52.581231], [-128.515106, 52.581537], [-128.515295, 52.581951], [-128.51511, 52.582535], [-128.515357, 52.582913], [-128.515277, 52.583407], [-128.515685, 52.583948], [-128.516553, 52.584284], [-128.516684, 52.584411], [-128.516753, 52.584869], [-128.517058, 52.585248], [-128.517171, 52.58569], [-128.51758, 52.586024], [-128.517739, 52.586465], [-128.518412, 52.586899], [-128.51847, 52.587161], [-128.519141, 52.587819], [-128.519403, 52.588252], [-128.519282, 52.588557], [-128.519, 52.588582], [-128.518794, 52.588493], [-128.518488, 52.588176], [-128.518296, 52.588175], [-128.518056, 52.588463], [-128.518112, 52.58875], [-128.518289, 52.588859], [-128.518745, 52.588941], [-128.518713, 52.589265], [-128.518864, 52.590399], [-128.516587, 52.593885], [-128.516852, 52.594588], [-128.51682, 52.594884], [-128.517182, 52.595426], [-128.517311, 52.595876], [-128.517246, 52.596316], [-128.517344, 52.596945], [-128.517146, 52.597385], [-128.517263, 52.597531], [-128.517574, 52.598727], [-128.517866, 52.599168], [-128.51825, 52.60041], [-128.518439, 52.6007], [-128.518689, 52.600781], [-128.518941, 52.600791], [-128.519061, 52.600549], [-128.519135, 52.600531]]]]}, "properties": {"name": "Kitasoo 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitasoo 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949802", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.652672, 53.980213], [-128.652517, 53.980003], [-128.65203, 53.979667], [-128.652096, 53.979628], [-128.651716, 53.979501], [-128.651428, 53.979284], [-128.651432, 53.978987], [-128.651754, 53.978521], [-128.651729, 53.977927], [-128.651593, 53.977775], [-128.651581, 53.977379], [-128.65169, 53.977208], [-128.651817, 53.97639], [-128.651881, 53.976256], [-128.65237, 53.976033], [-128.652618, 53.975557], [-128.65252, 53.974586], [-128.652115, 53.973704], [-128.652088, 53.973398], [-128.65159, 53.972885], [-128.650982, 53.972559], [-128.650789, 53.97193], [-128.64896, 53.969939], [-128.648979, 53.969443], [-128.649211, 53.969067], [-128.649611, 53.968664], [-128.649725, 53.968053], [-128.650478, 53.967093], [-128.650819, 53.966384], [-128.650974, 53.966267], [-128.651446, 53.966197], [-128.652119, 53.965902], [-128.652302, 53.965921], [-128.65271, 53.966335], [-128.653028, 53.966543], [-128.653258, 53.966543], [-128.653457, 53.966338], [-128.653701, 53.966257], [-128.653828, 53.965827], [-128.6519, 53.965643], [-128.652227, 53.964339], [-128.654097, 53.964426], [-128.654134, 53.963698], [-128.65429, 53.963402], [-128.654473, 53.963366], [-128.654488, 53.963249], [-128.654154, 53.963014], [-128.6541, 53.96243], [-128.653918, 53.962178], [-128.653936, 53.96198], [-128.654151, 53.961702], [-128.654106, 53.96163], [-128.653908, 53.961638], [-128.653707, 53.961853], [-128.653434, 53.961843], [-128.652979, 53.961644], [-128.652812, 53.961527], [-128.652631, 53.96124], [-128.652755, 53.960844], [-128.651436, 53.960575], [-128.650344, 53.960649], [-128.650066, 53.960265], [-128.649071, 53.959985], [-128.648561, 53.959278], [-128.646504, 53.959876], [-128.646346, 53.963226], [-128.645254, 53.965378], [-128.634617, 53.965229], [-128.635439, 53.980523], [-128.652672, 53.980213]]]]}, "properties": {"name": "Kitamaat 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitamaat 2", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949803", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.649885, 54.537065], [-128.660652, 54.537662], [-128.688819, 54.538845], [-128.690799, 54.508776], [-128.683113, 54.508222], [-128.682424, 54.509395], [-128.681972, 54.509987], [-128.681891, 54.510428], [-128.681669, 54.510846], [-128.683222, 54.512368], [-128.680499, 54.518075], [-128.680203, 54.518479], [-128.679689, 54.518952], [-128.678657, 54.51953], [-128.672564, 54.521504], [-128.671664, 54.521721], [-128.667192, 54.522244], [-128.66685, 54.521398], [-128.666156, 54.521196], [-128.665245, 54.521024], [-128.663764, 54.520938], [-128.6627, 54.520594], [-128.662301, 54.520332], [-128.661899, 54.520313], [-128.661774, 54.520547], [-128.662096, 54.520717], [-128.662141, 54.521032], [-128.662109, 54.521149], [-128.661786, 54.521379], [-128.661258, 54.521163], [-128.660529, 54.521712], [-128.658185, 54.522637], [-128.657975, 54.522846], [-128.657234, 54.524221], [-128.656203, 54.525009], [-128.655453, 54.526306], [-128.65468, 54.526879], [-128.655497, 54.527877], [-128.65556, 54.528061], [-128.65547, 54.528151], [-128.656576, 54.528856], [-128.657172, 54.52954], [-128.657521, 54.531301], [-128.65723, 54.532607], [-128.656793, 54.533458], [-128.655782, 54.534179], [-128.654441, 54.534339], [-128.653386, 54.53464], [-128.65147, 54.534634], [-128.650543, 54.534741], [-128.649682, 54.534991], [-128.648734, 54.535591], [-128.648718, 54.535774], [-128.648963, 54.536206], [-128.649225, 54.536527], [-128.649885, 54.537065]]]]}, "properties": {"name": "Kitsumkaylum 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitsumkaylum 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949804", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.489656, 54.564211], [-128.487792, 54.554554], [-128.487303, 54.552852], [-128.483582, 54.551744], [-128.478912, 54.554136], [-128.474402, 54.556844], [-128.474056, 54.557122], [-128.470278, 54.558785], [-128.467128, 54.559684], [-128.462587, 54.560139], [-128.463578, 54.561407], [-128.462514, 54.56139], [-128.460225, 54.561488], [-128.459062, 54.561689], [-128.456741, 54.561787], [-128.455857, 54.562], [-128.453998, 54.562296], [-128.453174, 54.562544], [-128.452167, 54.562683], [-128.450553, 54.563081], [-128.449916, 54.563311], [-128.447093, 54.563838], [-128.446442, 54.564005], [-128.445204, 54.564153], [-128.444289, 54.564345], [-128.441262, 54.565168], [-128.437733, 54.566553], [-128.435303, 54.567719], [-128.434972, 54.568149], [-128.434871, 54.568661], [-128.434875, 54.569443], [-128.435083, 54.570001], [-128.460887, 54.569176], [-128.460633, 54.566962], [-128.489656, 54.564211]]]]}, "properties": {"name": "Kshish 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kshish 4", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949805", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.582944, 54.495031], [-128.584466, 54.494764], [-128.58611, 54.494071], [-128.586228, 54.491559], [-128.583104, 54.491508], [-128.582944, 54.495031]]]]}, "properties": {"name": "Kulspai 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kulspai 6", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949807", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.669938, 55.288741], [-127.66975, 55.289171], [-127.669431, 55.290988], [-127.669281, 55.29134], [-127.668716, 55.296012], [-127.669443, 55.297591], [-127.669559, 55.298593], [-127.674103, 55.298591], [-127.676537, 55.297907], [-127.67801, 55.297654], [-127.680138, 55.297587], [-127.682289, 55.297817], [-127.683093, 55.297816], [-127.684974, 55.297604], [-127.686117, 55.297283], [-127.686439, 55.297088], [-127.686929, 55.296608], [-127.687068, 55.296161], [-127.687012, 55.295459], [-127.686685, 55.294872], [-127.685637, 55.293737], [-127.685183, 55.293112], [-127.684932, 55.292615], [-127.684884, 55.292192], [-127.685154, 55.290685], [-127.685631, 55.28963], [-127.68565, 55.289064], [-127.685884, 55.288636], [-127.686237, 55.288432], [-127.67293, 55.28838], [-127.67294, 55.286574], [-127.6702, 55.28657], [-127.669938, 55.288741]]]]}, "properties": {"name": "Anlaw 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Anlaw 4", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949809", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.330494, 55.036613], [-127.33095, 55.039932], [-127.331518, 55.04579], [-127.337725, 55.045403], [-127.349728, 55.044306], [-127.347773, 55.033241], [-127.335453, 55.033869], [-127.33455, 55.033642], [-127.330733, 55.033901], [-127.330494, 55.036613]]]]}, "properties": {"name": "Coryatsaqua (Moricetown) 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Coryatsaqua (Moricetown) 2", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949810", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.603867, 55.263434], [-127.603677, 55.2628], [-127.603416, 55.262633], [-127.603377, 55.26234], [-127.603055, 55.261654], [-127.602992, 55.261158], [-127.602797, 55.260932], [-127.602411, 55.260711], [-127.602283, 55.260351], [-127.602482, 55.260012], [-127.602866, 55.259872], [-127.603642, 55.25971], [-127.603837, 55.259515], [-127.603848, 55.25921], [-127.603643, 55.258757], [-127.604006, 55.258277], [-127.604181, 55.257801], [-127.604133, 55.256957], [-127.603885, 55.256397], [-127.603639, 55.256223], [-127.603185, 55.256119], [-127.602925, 55.255919], [-127.602871, 55.255648], [-127.603057, 55.255318], [-127.603301, 55.255095], [-127.603909, 55.254798], [-127.604595, 55.254527], [-127.605469, 55.254285], [-127.606871, 55.254219], [-127.607922, 55.254322], [-127.608742, 55.254295], [-127.609023, 55.254335], [-127.609529, 55.254672], [-127.609602, 55.254916], [-127.609264, 55.255101], [-127.609277, 55.255174], [-127.610699, 55.255882], [-127.610709, 55.256094], [-127.611183, 55.256461], [-127.611782, 55.256621], [-127.61285, 55.257247], [-127.613567, 55.257333], [-127.6152, 55.256927], [-127.615957, 55.25666], [-127.615934, 55.25192], [-127.598944, 55.252271], [-127.598953, 55.252162], [-127.5972, 55.252106], [-127.590604, 55.252165], [-127.590567, 55.253177], [-127.590052, 55.254971], [-127.590913, 55.263275], [-127.603867, 55.263434]]]]}, "properties": {"name": "Hagwilget 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Hagwilget 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949811", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.703078, 55.277605], [-127.703917, 55.259871], [-127.697988, 55.25961], [-127.680801, 55.259752], [-127.677058, 55.259491], [-127.674308, 55.257822], [-127.673294, 55.257137], [-127.673374, 55.256548], [-127.671887, 55.256656], [-127.6714, 55.255923], [-127.672414, 55.255737], [-127.672486, 55.25604], [-127.67315, 55.256009], [-127.67317, 55.25616], [-127.673677, 55.256154], [-127.674084, 55.255698], [-127.673695, 55.255145], [-127.673749, 55.254819], [-127.67425, 55.254822], [-127.674564, 55.253438], [-127.676419, 55.252341], [-127.676775, 55.250985], [-127.676367, 55.250113], [-127.676844, 55.250012], [-127.677137, 55.250033], [-127.677587, 55.250253], [-127.677658, 55.25044], [-127.677607, 55.250728], [-127.678108, 55.250757], [-127.680276, 55.251185], [-127.680464, 55.251263], [-127.680568, 55.251396], [-127.680252, 55.252855], [-127.680075, 55.253298], [-127.680202, 55.253466], [-127.681107, 55.253714], [-127.681157, 55.253978], [-127.682014, 55.254011], [-127.682478, 55.253535], [-127.683619, 55.253698], [-127.684728, 55.252342], [-127.685097, 55.251348], [-127.684729, 55.250092], [-127.682581, 55.247993], [-127.681728, 55.247409], [-127.679532, 55.246515], [-127.675347, 55.24557], [-127.674545, 55.246741], [-127.673042, 55.247547], [-127.672087, 55.248441], [-127.671757, 55.249324], [-127.671036, 55.250122], [-127.669877, 55.250979], [-127.668144, 55.251877], [-127.666905, 55.252345], [-127.665396, 55.25275], [-127.664264, 55.252953], [-127.663093, 55.25295], [-127.661837, 55.252802], [-127.660756, 55.252522], [-127.656554, 55.250861], [-127.655754, 55.250435], [-127.654644, 55.249266], [-127.654254, 55.248662], [-127.653692, 55.248242], [-127.653702, 55.24946], [-127.65435, 55.254149], [-127.654392, 55.255806], [-127.65422, 55.256617], [-127.653987, 55.259532], [-127.653402, 55.271258], [-127.653119, 55.279592], [-127.641442, 55.279591], [-127.641423, 55.293758], [-127.652323, 55.293772], [-127.652629, 55.288308], [-127.670026, 55.288011], [-127.6702, 55.28657], [-127.67294, 55.286574], [-127.67293, 55.28838], [-127.686237, 55.288432], [-127.685884, 55.288636], [-127.685751, 55.288822], [-127.685509, 55.289911], [-127.687406, 55.29009], [-127.693164, 55.288822], [-127.69792, 55.288419], [-127.704115, 55.288427], [-127.704157, 55.287569], [-127.703078, 55.277605]], [[-127.670491, 55.254263], [-127.669371, 55.25399], [-127.668624, 55.252997], [-127.670513, 55.252814], [-127.670517, 55.253499], [-127.670843, 55.253525], [-127.670491, 55.254263]], [[-127.658174, 55.258493], [-127.657915, 55.258257], [-127.657906, 55.25641], [-127.660619, 55.257079], [-127.659015, 55.258191], [-127.658174, 55.258493], [-127.658688, 55.259208], [-127.656714, 55.259698], [-127.656351, 55.258939], [-127.658174, 55.258493]]]]}, "properties": {"name": "Gitanmaax 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Gitanmaax 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949812", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.709721, 55.369556], [-127.710315, 55.369555], [-127.709312, 55.358173], [-127.709979, 55.345784], [-127.70919, 55.33354], [-127.707313, 55.333408], [-127.707305, 55.333552], [-127.690899, 55.332958], [-127.686476, 55.333551], [-127.657241, 55.334181], [-127.657636, 55.344075], [-127.656866, 55.347607], [-127.657178, 55.371501], [-127.661264, 55.371582], [-127.662631, 55.371322], [-127.664055, 55.371203], [-127.664969, 55.371221], [-127.666274, 55.371371], [-127.667031, 55.371388], [-127.668814, 55.370895], [-127.67043, 55.370238], [-127.672487, 55.370061], [-127.684823, 55.370088], [-127.702912, 55.36906], [-127.708034, 55.369392], [-127.709721, 55.369556]]]]}, "properties": {"name": "Kispiox 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kispiox 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949813", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.781629, 55.124452], [-127.785728, 55.125696], [-127.794225, 55.125227], [-127.794965, 55.117792], [-127.808003, 55.117087], [-127.809178, 55.107622], [-127.821993, 55.106561], [-127.822969, 55.0992], [-127.822706, 55.096383], [-127.856396, 55.098694], [-127.860865, 55.098602], [-127.861368, 55.091301], [-127.885002, 55.090665], [-127.883747, 55.089742], [-127.88231, 55.088443], [-127.88074, 55.087503], [-127.879451, 55.08706], [-127.878219, 55.086807], [-127.876686, 55.086782], [-127.875147, 55.086912], [-127.873643, 55.086899], [-127.871206, 55.086651], [-127.868842, 55.086576], [-127.859976, 55.087077], [-127.858795, 55.087318], [-127.857462, 55.087314], [-127.856214, 55.087158], [-127.855201, 55.086942], [-127.853712, 55.086919], [-127.853059, 55.086824], [-127.851304, 55.086816], [-127.850101, 55.086661], [-127.848375, 55.086267], [-127.846089, 55.085651], [-127.843468, 55.085268], [-127.842372, 55.085248], [-127.841776, 55.085251], [-127.840673, 55.085429], [-127.84026, 55.085614], [-127.83938, 55.086457], [-127.838487, 55.0861], [-127.838621, 55.085995], [-127.838147, 55.085918], [-127.837422, 55.085991], [-127.83775, 55.084645], [-127.837763, 55.084188], [-127.81133, 55.082485], [-127.811448, 55.085552], [-127.811383, 55.092514], [-127.805712, 55.093481], [-127.804709, 55.095447], [-127.804913, 55.096004], [-127.798029, 55.096153], [-127.798026, 55.095535], [-127.798938, 55.09461], [-127.794942, 55.094475], [-127.795865, 55.095251], [-127.793663, 55.095199], [-127.792701, 55.096196], [-127.773413, 55.106611], [-127.77117, 55.110268], [-127.775791, 55.110156], [-127.772359, 55.122384], [-127.77305, 55.121495], [-127.77382, 55.12116], [-127.781629, 55.124452]]]]}, "properties": {"name": "Gitsegukla 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Gitsegukla 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949814", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.052112, 55.278154], [-128.062043, 55.277988], [-128.090102, 55.277342], [-128.089983, 55.262899], [-128.077325, 55.262921], [-128.077291, 55.258052], [-128.052091, 55.257965], [-128.052112, 55.278154]]]]}, "properties": {"name": "Gitanyow 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Gitanyow 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949815", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.019836, 55.087003], [-128.019665, 55.087943], [-128.019799, 55.090944], [-128.012137, 55.109394], [-128.024461, 55.108108], [-128.027263, 55.108255], [-128.029468, 55.108093], [-128.029347, 55.10834], [-128.032909, 55.107966], [-128.056054, 55.108473], [-128.057379, 55.109913], [-128.056495, 55.112492], [-128.058259, 55.113837], [-128.086239, 55.111263], [-128.11041, 55.106556], [-128.113524, 55.105772], [-128.113662, 55.100452], [-128.11456, 55.086991], [-128.115707, 55.075937], [-128.019803, 55.086265], [-128.019836, 55.087003]]]]}, "properties": {"name": "Gitwangak 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Gitwangak 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949816", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.305959, 55.022461], [-127.342314, 55.023669], [-127.342073, 55.02278], [-127.342046, 55.022294], [-127.342267, 55.021498], [-127.342931, 55.020519], [-127.342141, 55.000026], [-127.337925, 55.000041], [-127.336772, 55.000122], [-127.334863, 55.000101], [-127.320073, 55.001109], [-127.302726, 55.000327], [-127.305959, 55.022461]]]]}, "properties": {"name": "Moricetown 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Moricetown 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949817", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.725335, 55.315221], [-127.725439, 55.308042], [-127.700158, 55.307998], [-127.700239, 55.293552], [-127.69639, 55.293604], [-127.693431, 55.293553], [-127.690326, 55.294045], [-127.688907, 55.296252], [-127.688301, 55.29745], [-127.687512, 55.298457], [-127.687108, 55.298759], [-127.686408, 55.299002], [-127.685362, 55.299189], [-127.681614, 55.299122], [-127.678777, 55.299199], [-127.676767, 55.299482], [-127.675161, 55.299905], [-127.673631, 55.300446], [-127.671176, 55.301821], [-127.669593, 55.302955], [-127.668112, 55.30443], [-127.667507, 55.305538], [-127.667415, 55.30596], [-127.667377, 55.306642], [-127.667472, 55.307506], [-127.66778, 55.30821], [-127.672018, 55.313415], [-127.672854, 55.314341], [-127.673801, 55.315663], [-127.674246, 55.316522], [-127.675416, 55.3178], [-127.676409, 55.319267], [-127.67715, 55.320193], [-127.677413, 55.32077], [-127.677389, 55.321983], [-127.677746, 55.32259], [-127.678326, 55.323153], [-127.679518, 55.323858], [-127.680327, 55.324434], [-127.687275, 55.324281], [-127.687274, 55.322474], [-127.700088, 55.322471], [-127.700122, 55.315227], [-127.725335, 55.315221]]]]}, "properties": {"name": "Sik-e-dakh 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Sik-e-dakh 2", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949818", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.330733, 55.033901], [-127.33455, 55.033642], [-127.335453, 55.033869], [-127.349851, 55.03313], [-127.349723, 55.028817], [-127.34961, 55.027712], [-127.349266, 55.027821], [-127.348247, 55.02787], [-127.347329, 55.027713], [-127.346546, 55.027389], [-127.346015, 55.027346], [-127.34573, 55.027423], [-127.345346, 55.027661], [-127.344233, 55.028049], [-127.343381, 55.028199], [-127.342556, 55.028135], [-127.342372, 55.028032], [-127.342271, 55.027824], [-127.342303, 55.027061], [-127.342105, 55.026564], [-127.342078, 55.026051], [-127.342192, 55.025208], [-127.342121, 55.024633], [-127.342314, 55.023669], [-127.330666, 55.023284], [-127.330733, 55.033901]]]]}, "properties": {"name": "Babine 17", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Babine 17", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949819", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.311049, 55.038943], [-127.320663, 55.038725], [-127.320299, 55.035435], [-127.330626, 55.035114], [-127.330733, 55.033901], [-127.330666, 55.023284], [-127.313706, 55.02272], [-127.31319, 55.02326], [-127.312251, 55.023389], [-127.312167, 55.023676], [-127.311634, 55.024493], [-127.310483, 55.025332], [-127.309061, 55.02571], [-127.307865, 55.026138], [-127.307384, 55.027066], [-127.306376, 55.028512], [-127.305646, 55.029793], [-127.305582, 55.030737], [-127.304653, 55.031464], [-127.304424, 55.032467], [-127.304364, 55.033837], [-127.305607, 55.035036], [-127.306662, 55.035744], [-127.308639, 55.036089], [-127.310245, 55.036566], [-127.310866, 55.037561], [-127.311049, 55.038943]]]]}, "properties": {"name": "Bulkley River 19", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Bulkley River 19", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949820", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.975063, 57.832691], [-129.975417, 57.833303], [-129.979463, 57.835761], [-129.980451, 57.836437], [-129.985289, 57.840272], [-129.984841, 57.840455], [-129.993037, 57.844628], [-129.993599, 57.844815], [-129.997126, 57.843187], [-129.990601, 57.837688], [-129.989365, 57.836842], [-129.986596, 57.835481], [-129.983959, 57.836186], [-129.982907, 57.835309], [-129.984136, 57.834472], [-129.97918, 57.832277], [-129.978353, 57.831977], [-129.977447, 57.831788], [-129.975166, 57.831644], [-129.975063, 57.832691]]]]}, "properties": {"name": "Iskut 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Iskut 6", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949832", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-131.166508, 57.906082], [-131.16859, 57.905455], [-131.169824, 57.90684], [-131.174134, 57.905568], [-131.176177, 57.905333], [-131.178122, 57.904687], [-131.184339, 57.902363], [-131.180972, 57.899842], [-131.179831, 57.900333], [-131.177981, 57.901512], [-131.16557, 57.905252], [-131.166508, 57.906082]]]]}, "properties": {"name": "Guhthe Tah 12", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Guhthe Tah 12", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949843", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.42863, 54.622287], [-128.439632, 54.622407], [-128.439301, 54.596169], [-128.417396, 54.596672], [-128.417068, 54.596814], [-128.417019, 54.597012], [-128.41721, 54.597696], [-128.417606, 54.598183], [-128.41799, 54.598428], [-128.418994, 54.59863], [-128.419426, 54.598632], [-128.419862, 54.598491], [-128.421911, 54.601874], [-128.421951, 54.603607], [-128.418827, 54.603701], [-128.41865, 54.601849], [-128.417805, 54.601573], [-128.416725, 54.601388], [-128.414783, 54.600866], [-128.412735, 54.599993], [-128.412537, 54.599875], [-128.411865, 54.59918], [-128.411171, 54.597874], [-128.410894, 54.597676], [-128.409246, 54.598004], [-128.408504, 54.597562], [-128.407465, 54.59752], [-128.407788, 54.608157], [-128.407726, 54.621992], [-128.426564, 54.622245], [-128.427747, 54.621462], [-128.42863, 54.622287]]]]}, "properties": {"name": "Kitselas 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Kitselas 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949844", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.019671, 58.471898], [-130.024456, 58.480394], [-130.031776, 58.480113], [-130.031997, 58.479739], [-130.032515, 58.478162], [-130.032504, 58.477795], [-130.03224, 58.476989], [-130.032329, 58.476493], [-130.033107, 58.475545], [-130.034688, 58.474489], [-130.034818, 58.474237], [-130.034688, 58.473878], [-130.0345, 58.473863], [-130.034624, 58.474086], [-130.034219, 58.474296], [-130.034036, 58.473893], [-130.033743, 58.47386], [-130.03362, 58.473753], [-130.033836, 58.472897], [-130.033848, 58.472125], [-130.033578, 58.470502], [-130.033434, 58.470259], [-130.032073, 58.469516], [-130.031208, 58.469227], [-130.030329, 58.469046], [-130.02979, 58.468807], [-130.028719, 58.467962], [-130.02832, 58.467256], [-130.028076, 58.467015], [-130.02776, 58.466857], [-130.026563, 58.466893], [-130.025574, 58.466488], [-130.023522, 58.466109], [-130.023001, 58.46588], [-130.022314, 58.465698], [-130.017499, 58.466013], [-130.019671, 58.471898]]]]}, "properties": {"name": "Dease Lake 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Dease Lake 9", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949845", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-130.988274, 58.012319], [-131.007514, 58.012398], [-131.008073, 58.005325], [-131.001373, 58.005256], [-130.989717, 58.005551], [-130.989257, 58.005811], [-130.988901, 58.006121], [-130.987907, 58.006514], [-130.986723, 58.006829], [-130.986262, 58.007052], [-130.984947, 58.00745], [-130.984407, 58.0078], [-130.983537, 58.008576], [-130.982578, 58.009293], [-130.982085, 58.009543], [-130.981565, 58.00964], [-130.981093, 58.009657], [-130.980312, 58.009948], [-130.979153, 58.009813], [-130.978441, 58.009807], [-130.977302, 58.009707], [-130.976541, 58.009729], [-130.975537, 58.009932], [-130.974704, 58.010179], [-130.97406, 58.010449], [-130.972961, 58.010798], [-130.972386, 58.011113], [-130.972377, 58.011267], [-130.971827, 58.011418], [-130.971417, 58.011658], [-130.970914, 58.011711], [-130.970654, 58.011939], [-130.970388, 58.012007], [-130.970309, 58.01243], [-130.969549, 58.013053], [-130.968764, 58.013568], [-130.968262, 58.013998], [-130.967998, 58.014101], [-130.96771, 58.014124], [-130.966919, 58.014522], [-130.966655, 58.014967], [-130.966087, 58.015397], [-130.965723, 58.015519], [-130.965545, 58.015712], [-130.987456, 58.01533], [-130.987512, 58.012362], [-130.988274, 58.012319]]]]}, "properties": {"name": "Tahltan 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Tahltan 1", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949846", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-131.157133, 57.916301], [-131.163906, 57.916168], [-131.163432, 57.905592], [-131.15632, 57.905438], [-131.157133, 57.916301]]]]}, "properties": {"name": "Telegraph Creek", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "North Coast", "census_subdivision": "Telegraph Creek", "economic_region_id": "5960", "census_division_code": "5949", "census_subdivision_code": "5949847", "regional_district_aka_census_division": "Kitimat-Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.997149, 54.0563], [-124.032723, 54.056337], [-124.032289, 54.035993], [-124.032324, 54.034055], [-124.070714, 54.033644], [-124.085122, 54.034016], [-124.0851, 54.032819], [-124.087806, 54.033438], [-124.094561, 54.035491], [-124.09454, 54.034728], [-124.09149, 54.027342], [-124.094143, 54.019836], [-124.094582, 54.019629], [-124.094849, 54.019415], [-124.095092, 54.018884], [-124.095178, 54.017847], [-124.095023, 54.012856], [-124.093552, 54.005462], [-124.069887, 54.005516], [-124.04634, 54.00605], [-124.04614, 53.998634], [-124.04578, 53.991305], [-124.029207, 53.991354], [-124.012381, 53.991703], [-123.998385, 53.992704], [-123.998531, 53.986806], [-123.998654, 53.98515], [-123.990532, 53.985694], [-123.97229, 53.983274], [-123.972287, 53.983828], [-123.944635, 53.983516], [-123.935999, 53.98351], [-123.933456, 53.983428], [-123.934299, 53.998605], [-123.9239, 53.998494], [-123.92357, 54.007431], [-123.923323, 54.011813], [-123.923356, 54.012836], [-123.925398, 54.012654], [-123.935011, 54.010045], [-123.934544, 54.019502], [-123.935128, 54.032859], [-123.947842, 54.033022], [-123.959246, 54.033081], [-123.971851, 54.033444], [-123.996947, 54.033326], [-123.997149, 54.0563]], [[-124.077899, 54.027169], [-124.077668, 54.026775], [-124.076701, 54.025847], [-124.07594, 54.025487], [-124.075129, 54.025413], [-124.073943, 54.024463], [-124.073268, 54.024271], [-124.071615, 54.023476], [-124.070247, 54.02258], [-124.068977, 54.0219], [-124.06783, 54.021138], [-124.067444, 54.016516], [-124.080315, 54.016679], [-124.080595, 54.02709], [-124.077899, 54.027169]]], [[[-124.330663, 54.027166], [-124.332592, 54.02707], [-124.353002, 54.027092], [-124.353229, 54.019604], [-124.367459, 54.019871], [-124.366709, 54.013121], [-124.352163, 54.012907], [-124.343115, 54.012662], [-124.339153, 54.012667], [-124.339034, 54.016192], [-124.333026, 54.015985], [-124.333309, 54.012674], [-124.326626, 54.012681], [-124.326818, 54.01668], [-124.326715, 54.020248], [-124.320739, 54.020235], [-124.32069, 54.023742], [-124.317434, 54.023707], [-124.316934, 54.023774], [-124.316223, 54.024051], [-124.316349, 54.027314], [-124.317781, 54.027225], [-124.318546, 54.027105], [-124.330663, 54.027166]]]]}, "properties": {"name": "Vanderhoof", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Vanderhoof", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951007", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.840907, 54.066436], [-124.846471, 54.065865], [-124.855517, 54.063197], [-124.859711, 54.062241], [-124.862241, 54.061093], [-124.865351, 54.059225], [-124.867443, 54.057748], [-124.865702, 54.055754], [-124.865541, 54.055255], [-124.866834, 54.052727], [-124.865818, 54.052209], [-124.866868, 54.051756], [-124.866864, 54.051267], [-124.85186, 54.051317], [-124.851838, 54.050777], [-124.850874, 54.05078], [-124.849971, 54.050823], [-124.849662, 54.051333], [-124.847784, 54.051503], [-124.840319, 54.051728], [-124.840312, 54.054341], [-124.838769, 54.054355], [-124.83871, 54.054933], [-124.837158, 54.054853], [-124.837281, 54.055336], [-124.827068, 54.055339], [-124.827856, 54.059142], [-124.818282, 54.059134], [-124.81857, 54.060657], [-124.818398, 54.060654], [-124.815361, 54.063718], [-124.81855, 54.065439], [-124.824942, 54.067888], [-124.829665, 54.069298], [-124.830551, 54.069462], [-124.832046, 54.069124], [-124.833341, 54.068373], [-124.840907, 54.066436]]], [[[-124.743578, 54.068573], [-124.743865, 54.068587], [-124.748028, 54.068427], [-124.751787, 54.068399], [-124.754385, 54.068011], [-124.755041, 54.067974], [-124.756543, 54.067763], [-124.757801, 54.067467], [-124.758332, 54.067396], [-124.758347, 54.059296], [-124.74962, 54.059466], [-124.743978, 54.059762], [-124.743578, 54.068573]]], [[[-125.088577, 54.040182], [-125.098307, 54.040487], [-125.104539, 54.039185], [-125.101579, 54.033757], [-125.099812, 54.034676], [-125.096552, 54.036582], [-125.08873, 54.036032], [-125.088753, 54.038899], [-125.088577, 54.040182]]]]}, "properties": {"name": "Fraser Lake", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Fraser Lake", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951009", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.19459, 54.476085], [-124.194773, 54.477591], [-124.194065, 54.482136], [-124.18382, 54.482425], [-124.18398, 54.486272], [-124.181156, 54.4864], [-124.181015, 54.489856], [-124.181774, 54.497359], [-124.202436, 54.49765], [-124.224155, 54.500036], [-124.232864, 54.500588], [-124.234833, 54.500377], [-124.23235, 54.483636], [-124.23717, 54.48304], [-124.256568, 54.482408], [-124.256109, 54.467742], [-124.268087, 54.467604], [-124.268, 54.460799], [-124.274331, 54.461105], [-124.274363, 54.466841], [-124.280287, 54.46696], [-124.280322, 54.464839], [-124.302468, 54.464907], [-124.301901, 54.460217], [-124.30157, 54.458321], [-124.302281, 54.455896], [-124.292276, 54.453226], [-124.286476, 54.452874], [-124.284012, 54.452352], [-124.281852, 54.450442], [-124.280421, 54.45025], [-124.278035, 54.450164], [-124.271614, 54.448508], [-124.269513, 54.444566], [-124.265285, 54.443776], [-124.264171, 54.443183], [-124.264188, 54.443104], [-124.257144, 54.439423], [-124.25711, 54.439508], [-124.256731, 54.438912], [-124.244427, 54.438919], [-124.238987, 54.439025], [-124.231594, 54.438866], [-124.231044, 54.438816], [-124.230968, 54.453434], [-124.249368, 54.453328], [-124.251129, 54.453273], [-124.251022, 54.460902], [-124.255617, 54.460867], [-124.255818, 54.463684], [-124.24275, 54.464049], [-124.242809, 54.462953], [-124.211192, 54.466471], [-124.210607, 54.466582], [-124.207033, 54.467607], [-124.203404, 54.467677], [-124.203394, 54.475074], [-124.193398, 54.475194], [-124.19459, 54.476085]], [[-124.267946, 54.451013], [-124.27111, 54.452196], [-124.27376, 54.452484], [-124.274143, 54.452567], [-124.274289, 54.457536], [-124.265936, 54.457517], [-124.264899, 54.457439], [-124.264082, 54.457298], [-124.262942, 54.456995], [-124.263209, 54.456625], [-124.263332, 54.45619], [-124.264194, 54.449789], [-124.265433, 54.449777], [-124.267946, 54.451013]]], [[[-124.193398, 54.475194], [-124.190539, 54.473151], [-124.189218, 54.472031], [-124.190983, 54.471295], [-124.190992, 54.467757], [-124.192923, 54.467751], [-124.192502, 54.464388], [-124.18146, 54.464061], [-124.181053, 54.460927], [-124.157574, 54.461105], [-124.157508, 54.463193], [-124.154162, 54.463134], [-124.154211, 54.464151], [-124.154013, 54.470357], [-124.158067, 54.470361], [-124.157494, 54.475809], [-124.180629, 54.475943], [-124.18469, 54.476067], [-124.189392, 54.475609], [-124.191694, 54.475146], [-124.193398, 54.475194]]]]}, "properties": {"name": "Fort St. James", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Fort St. James", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951013", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.750048, 56.000046], [-127.000069, 56.000076], [-127.024314, 56.000102], [-127.022063, 55.998609], [-127.017194, 55.994937], [-127.015409, 55.993692], [-127.013987, 55.993028], [-127.012536, 55.992589], [-127.009866, 55.992345], [-127.00639, 55.992399], [-127.003611, 55.992584], [-127.001968, 55.992749], [-127.000072, 55.993018], [-126.995025, 55.993481], [-126.990582, 55.993812], [-126.988466, 55.993683], [-126.984864, 55.992899], [-126.980224, 55.991598], [-126.976686, 55.991137], [-126.969031, 55.993555], [-126.961684, 55.991199], [-126.951727, 55.985742], [-126.94832, 55.98336], [-126.942193, 55.981026], [-126.931688, 55.979757], [-126.927135, 55.97488], [-126.916856, 55.970199], [-126.909805, 55.967739], [-126.901055, 55.964087], [-126.889007, 55.963569], [-126.880999, 55.965659], [-126.867345, 55.959703], [-126.866891, 55.953867], [-126.874847, 55.949567], [-126.880611, 55.940009], [-126.881012, 55.932761], [-126.891163, 55.930815], [-126.901222, 55.930232], [-126.919497, 55.920146], [-126.916532, 55.910124], [-126.908058, 55.906058], [-126.901913, 55.900969], [-126.901215, 55.900642], [-126.900113, 55.896842], [-126.884945, 55.89652], [-126.880628, 55.890224], [-126.876483, 55.881412], [-126.873176, 55.871697], [-126.869419, 55.863571], [-126.862387, 55.856781], [-126.861363, 55.852834], [-126.856868, 55.848036], [-126.854599, 55.845952], [-126.846872, 55.84186], [-126.842882, 55.838527], [-126.841667, 55.832394], [-126.836562, 55.829037], [-126.824687, 55.827809], [-126.820108, 55.825601], [-126.789374, 55.80534], [-126.781642, 55.80658], [-126.774055, 55.80695], [-126.767995, 55.806386], [-126.758916, 55.802368], [-126.754735, 55.797174], [-126.745828, 55.789627], [-126.743892, 55.783152], [-126.75083, 55.781183], [-126.753806, 55.776897], [-126.745164, 55.764568], [-126.748461, 55.761598], [-126.749401, 55.758819], [-126.748639, 55.755809], [-126.7479, 55.753814], [-126.745781, 55.751885], [-126.745043, 55.749889], [-126.745395, 55.746904], [-126.747611, 55.7443], [-126.749263, 55.742503], [-126.747001, 55.740112], [-126.741749, 55.73865], [-126.735847, 55.736593], [-126.732426, 55.733477], [-126.71978, 55.730892], [-126.71656, 55.727924], [-126.712812, 55.725137], [-126.705178, 55.725123], [-126.700537, 55.722849], [-126.695059, 55.721475], [-126.687297, 55.719665], [-126.682957, 55.718001], [-126.676728, 55.711577], [-126.675738, 55.708654], [-126.674117, 55.706152], [-126.668398, 55.702204], [-126.662603, 55.705227], [-126.658816, 55.707761], [-126.656819, 55.709268], [-126.652548, 55.706657], [-126.644466, 55.699849], [-126.63403, 55.695074], [-126.632084, 55.693494], [-126.624791, 55.682638], [-126.609201, 55.67495], [-126.584858, 55.668291], [-126.564873, 55.660269], [-126.554439, 55.666554], [-126.553647, 55.666836], [-126.550152, 55.670346], [-126.542009, 55.672566], [-126.535383, 55.671997], [-126.530358, 55.669179], [-126.527461, 55.665065], [-126.530126, 55.655358], [-126.521699, 55.648883], [-126.513979, 55.64869], [-126.504406, 55.646294], [-126.493795, 55.641983], [-126.487901, 55.639745], [-126.480908, 55.637883], [-126.476108, 55.633853], [-126.477263, 55.629772], [-126.474738, 55.625532], [-126.478317, 55.620904], [-126.481247, 55.618484], [-126.487633, 55.616014], [-126.485193, 55.613731], [-126.480255, 55.611452], [-126.475377, 55.606884], [-126.467031, 55.599535], [-126.449674, 55.596406], [-126.441799, 55.593715], [-126.437225, 55.589895], [-126.432584, 55.586948], [-126.427735, 55.586623], [-126.421931, 55.586342], [-126.417, 55.584061], [-126.402303, 55.582002], [-126.400243, 55.581007], [-126.399565, 55.576138], [-126.396908, 55.57223], [-126.396306, 55.567903], [-126.400548, 55.562487], [-126.40098, 55.560072], [-126.394999, 55.553546], [-126.387565, 55.545851], [-126.387229, 55.541369], [-126.387276, 55.538637], [-126.383532, 55.534068], [-126.385801, 55.532039], [-126.394685, 55.532761], [-126.411116, 55.527756], [-126.411139, 55.520843], [-126.413284, 55.516968], [-126.410053, 55.508032], [-126.407559, 55.503995], [-126.407238, 55.498378], [-126.403502, 55.492938], [-126.39304, 55.481924], [-126.374353, 55.478128], [-126.365723, 55.476909], [-126.3611, 55.474089], [-126.359172, 55.471505], [-126.358202, 55.469056], [-126.359336, 55.453602], [-126.352622, 55.449182], [-126.347471, 55.448162], [-126.344412, 55.446427], [-126.340386, 55.442243], [-126.337375, 55.437479], [-126.334843, 55.432783], [-126.335125, 55.428276], [-126.343747, 55.419919], [-126.344183, 55.41622], [-126.342145, 55.41195], [-126.33066, 55.403466], [-126.326143, 55.396854], [-126.320004, 55.395761], [-126.317533, 55.396958], [-126.314054, 55.399558], [-126.313227, 55.404079], [-126.311213, 55.405119], [-126.308831, 55.405223], [-126.306908, 55.405171], [-126.305529, 55.403869], [-126.302008, 55.394078], [-126.295309, 55.392475], [-126.288431, 55.396595], [-126.286505, 55.398311], [-126.280273, 55.398311], [-126.271833, 55.39446], [-126.270617, 55.389201], [-126.26979, 55.388421], [-126.263182, 55.383944], [-126.260702, 55.381601], [-126.258403, 55.378842], [-126.255836, 55.377592], [-126.250245, 55.375249], [-126.246169, 55.374337], [-126.236736, 55.373657], [-126.235888, 55.367566], [-126.257653, 55.359386], [-126.263581, 55.355579], [-126.269308, 55.350438], [-126.260151, 55.346499], [-126.25163, 55.34022], [-126.238351, 55.330619], [-126.227369, 55.323769], [-126.222518, 55.319772], [-126.211632, 55.311829], [-126.199566, 55.305704], [-126.183257, 55.299086], [-126.167912, 55.289841], [-126.154853, 55.276285], [-126.147826, 55.270207], [-126.139614, 55.260649], [-126.136509, 55.250056], [-126.132768, 55.240033], [-126.129759, 55.233645], [-126.122654, 55.226891], [-126.113365, 55.219824], [-126.107902, 55.216394], [-126.092425, 55.209322], [-126.082784, 55.201318], [-126.057251, 55.177564], [-126.04089, 55.170797], [-126.036346, 55.168819], [-126.023474, 55.168294], [-125.999225, 55.167037], [-125.999408, 55.161387], [-126.003654, 55.095606], [-126.00191, 55.094989], [-126.001051, 55.09451], [-126.000701, 55.094168], [-126.000478, 55.093794], [-126.000469, 55.093489], [-126.000274, 55.092953], [-125.999717, 55.09262], [-125.999217, 55.092031], [-125.998737, 55.090864], [-125.99858, 55.089367], [-125.998086, 55.088849], [-125.997414, 55.088695], [-125.996666, 55.088093], [-125.995899, 55.086862], [-125.99521, 55.086338], [-125.997375, 55.065734], [-125.996784, 55.031577], [-125.996499, 55.029457], [-125.995763, 55.008368], [-125.995966, 54.999914], [-125.994083, 54.970674], [-126.000059, 54.933729], [-125.999184, 54.869509], [-125.999063, 54.854326], [-126.002959, 54.817122], [-126.003161, 54.81665], [-126.000976, 54.813378], [-125.999536, 54.812017], [-125.996932, 54.811829], [-125.993038, 54.810537], [-125.992481, 54.809513], [-125.990981, 54.808613], [-125.989514, 54.808786], [-125.97544, 54.805444], [-125.972631, 54.80104], [-125.968473, 54.795994], [-125.956479, 54.793551], [-125.933266, 54.795065], [-125.926969, 54.793138], [-125.925156, 54.790293], [-125.922016, 54.781874], [-125.923, 54.779483], [-125.925445, 54.778181], [-125.929304, 54.779596], [-125.939276, 54.783949], [-125.958261, 54.791305], [-125.962121, 54.791415], [-125.966129, 54.790592], [-125.968868, 54.789165], [-125.970823, 54.786196], [-125.967182, 54.782432], [-125.964507, 54.77838], [-125.958378, 54.773903], [-125.943681, 54.772278], [-125.942686, 54.770676], [-125.951409, 54.768124], [-125.954878, 54.766778], [-125.956683, 54.762138], [-125.95699, 54.754479], [-125.948309, 54.718636], [-125.933752, 54.702334], [-125.904534, 54.672244], [-125.891155, 54.661909], [-125.880568, 54.655345], [-125.874135, 54.653163], [-125.876905, 54.650744], [-125.856509, 54.644492], [-125.84743, 54.640418], [-125.842981, 54.63834], [-125.846309, 54.636599], [-125.806486, 54.611545], [-125.803041, 54.613385], [-125.801745, 54.612572], [-125.779532, 54.597161], [-125.754978, 54.579446], [-125.729176, 54.552216], [-125.707343, 54.539168], [-125.677668, 54.525682], [-125.645199, 54.509426], [-125.6035, 54.491339], [-125.521102, 54.462236], [-125.484466, 54.451082], [-125.462188, 54.452979], [-125.463911, 54.458375], [-125.449059, 54.459214], [-125.351127, 54.468539], [-125.343122, 54.469816], [-125.315574, 54.474988], [-125.314683, 54.47235], [-125.259451, 54.482575], [-125.232963, 54.488746], [-125.189267, 54.496948], [-125.181915, 54.489567], [-125.178474, 54.488503], [-125.177627, 54.488348], [-125.17704, 54.487164], [-125.135363, 54.485849], [-125.136387, 54.479902], [-125.110297, 54.479311], [-125.111123, 54.463843], [-125.06249, 54.46513], [-125.0622, 54.44272], [-125.050452, 54.442794], [-125.051487, 54.435019], [-125.014485, 54.435396], [-125.013451, 54.427776], [-125.00219, 54.427682], [-125.002598, 54.420981], [-124.998713, 54.420218], [-125.000282, 54.286985], [-124.999898, 54.249946], [-124.795431, 54.249773], [-124.619506, 54.250065], [-124.55728, 54.250004], [-124.53466, 54.249926], [-124.533478, 54.250019], [-124.530738, 54.250023], [-124.466237, 54.249973], [-124.465979, 54.232613], [-124.45958, 54.229976], [-124.454008, 54.227562], [-124.444451, 54.224791], [-124.431308, 54.229855], [-124.427418, 54.230567], [-124.4259, 54.231462], [-124.423593, 54.232671], [-124.420307, 54.239245], [-124.418488, 54.241955], [-124.418683, 54.242413], [-124.417199, 54.244455], [-124.415942, 54.248757], [-124.412825, 54.258693], [-124.4003, 54.269445], [-124.386215, 54.270609], [-124.368364, 54.269057], [-124.363371, 54.266048], [-124.361944, 54.265803], [-124.350978, 54.264701], [-124.348703, 54.264903], [-124.347492, 54.265775], [-124.346201, 54.266595], [-124.344826, 54.267367], [-124.343333, 54.268105], [-124.3381, 54.271817], [-124.328047, 54.271725], [-124.319613, 54.269914], [-124.308613, 54.269073], [-124.308994, 54.274391], [-124.31047, 54.280097], [-124.301887, 54.28152], [-124.294875, 54.285021], [-124.285426, 54.28855], [-124.274005, 54.288284], [-124.272615, 54.292721], [-124.25579, 54.292917], [-124.230276, 54.292985], [-124.219998, 54.293584], [-124.216628, 54.293057], [-124.206181, 54.293084], [-124.19873, 54.293635], [-124.191313, 54.293204], [-124.182661, 54.292781], [-124.181554, 54.292698], [-124.179971, 54.292341], [-124.178835, 54.291812], [-124.176606, 54.291205], [-124.175065, 54.290806], [-124.1711, 54.290041], [-124.167322, 54.288383], [-124.165073, 54.285378], [-124.164136, 54.284485], [-124.162742, 54.28351], [-124.161485, 54.282481], [-124.160779, 54.281591], [-124.159367, 54.280838], [-124.156572, 54.279818], [-124.155278, 54.27926], [-124.153624, 54.278208], [-124.150758, 54.277422], [-124.149014, 54.276877], [-124.147825, 54.275509], [-124.146678, 54.273618], [-124.144499, 54.273007], [-124.142242, 54.272471], [-124.138903, 54.271066], [-124.134051, 54.270307], [-124.129752, 54.269421], [-124.125452, 54.268382], [-124.120221, 54.266455], [-124.119197, 54.265794], [-124.118363, 54.26515], [-124.118065, 54.264146], [-124.118015, 54.263293], [-124.117173, 54.262298], [-124.116296, 54.262065], [-124.106071, 54.260566], [-124.105164, 54.26013], [-124.101903, 54.258005], [-124.098668, 54.256843], [-124.089131, 54.254147], [-124.088137, 54.253639], [-124.086318, 54.252573], [-124.083715, 54.251678], [-124.080745, 54.251511], [-124.07831, 54.251074], [-124.076225, 54.25017], [-124.073285, 54.248134], [-124.069182, 54.24667], [-124.064455, 54.246143], [-124.059856, 54.24531], [-124.055607, 54.244853], [-124.052668, 54.244053], [-124.050408, 54.243291], [-124.037803, 54.240763], [-124.036503, 54.240589], [-124.029156, 54.236777], [-124.022432, 54.234404], [-124.021151, 54.234128], [-124.015408, 54.23206], [-124.010983, 54.229113], [-124.01037, 54.22859], [-124.002583, 54.225548], [-124.000069, 54.225035], [-123.995072, 54.22423], [-123.990668, 54.222789], [-123.984825, 54.220233], [-123.980059, 54.217406], [-123.9753, 54.215467], [-123.968931, 54.211685], [-123.964462, 54.209569], [-123.95626, 54.206518], [-123.953587, 54.205635], [-123.948997, 54.204342], [-123.944917, 54.203955], [-123.943547, 54.203929], [-123.942113, 54.204082], [-123.940894, 54.204698], [-123.939368, 54.20595], [-123.937158, 54.208627], [-123.935833, 54.210015], [-123.933984, 54.21101], [-123.932056, 54.211815], [-123.930827, 54.212026], [-123.927033, 54.212113], [-123.924841, 54.211621], [-123.917295, 54.20884], [-123.91111, 54.206239], [-123.905559, 54.203187], [-123.901825, 54.202614], [-123.897951, 54.202897], [-123.894874, 54.202824], [-123.88985, 54.202379], [-123.885374, 54.201464], [-123.884028, 54.201122], [-123.87895, 54.200202], [-123.876157, 54.200265], [-123.87377, 54.202688], [-123.870849, 54.203507], [-123.869507, 54.203685], [-123.864575, 54.203212], [-123.861417, 54.203015], [-123.859832, 54.202864], [-123.856279, 54.20225], [-123.851915, 54.201143], [-123.850292, 54.200411], [-123.84937, 54.199676], [-123.846895, 54.198114], [-123.842955, 54.19801], [-123.83416, 54.20056], [-123.833458, 54.200653], [-123.828678, 54.202459], [-123.823325, 54.204017], [-123.82196, 54.20438], [-123.81884, 54.204548], [-123.817238, 54.204275], [-123.812396, 54.202666], [-123.804475, 54.199766], [-123.797455, 54.195435], [-123.79262, 54.193571], [-123.790202, 54.193064], [-123.784674, 54.191462], [-123.77882, 54.190293], [-123.771694, 54.18767], [-123.766042, 54.185474], [-123.759758, 54.18403], [-123.755749, 54.183756], [-123.751628, 54.182512], [-123.74312, 54.180267], [-123.740774, 54.180016], [-123.73749, 54.179986], [-123.732899, 54.180806], [-123.726916, 54.181993], [-123.722434, 54.182346], [-123.71856, 54.181578], [-123.714869, 54.180193], [-123.711346, 54.179525], [-123.707636, 54.179498], [-123.700424, 54.181179], [-123.699138, 54.181429], [-123.697266, 54.181486], [-123.695112, 54.181275], [-123.690569, 54.179589], [-123.689564, 54.178641], [-123.688989, 54.176765], [-123.688685, 54.176418], [-123.687074, 54.1758], [-123.678875, 54.174168], [-123.67546, 54.173917], [-123.668694, 54.174222], [-123.668248, 54.174388], [-123.665455, 54.174701], [-123.659801, 54.175623], [-123.656025, 54.177524], [-123.655323, 54.177819], [-123.653339, 54.17785], [-123.652349, 54.17765], [-123.651494, 54.176718], [-123.651416, 54.176366], [-123.651394, 54.17593], [-123.651986, 54.174385], [-123.654819, 54.173181], [-123.65822, 54.172591], [-123.66285, 54.17114], [-123.664925, 54.170165], [-123.665907, 54.168783], [-123.665586, 54.166292], [-123.665045, 54.165807], [-123.663797, 54.164891], [-123.662307, 54.164416], [-123.662035, 54.164437], [-123.659869, 54.165363], [-123.657914, 54.165369], [-123.653174, 54.164076], [-123.649873, 54.164169], [-123.646856, 54.164965], [-123.644089, 54.166002], [-123.641118, 54.166632], [-123.637663, 54.167044], [-123.631147, 54.166087], [-123.625331, 54.165011], [-123.624702, 54.164998], [-123.614676, 54.163247], [-123.604882, 54.161295], [-123.597535, 54.161248], [-123.587537, 54.159857], [-123.581229, 54.158636], [-123.574949, 54.15806], [-123.568586, 54.158105], [-123.562302, 54.158356], [-123.559585, 54.158595], [-123.556815, 54.158418], [-123.554396, 54.158551], [-123.550764, 54.159185], [-123.547089, 54.159728], [-123.544499, 54.159411], [-123.543469, 54.159124], [-123.542117, 54.158316], [-123.541483, 54.157243], [-123.540563, 54.156265], [-123.538815, 54.155187], [-123.536201, 54.155103], [-123.53361, 54.155336], [-123.523486, 54.154998], [-123.521271, 54.154766], [-123.520358, 54.154401], [-123.520331, 54.172002], [-123.520204, 54.173363], [-123.520395, 54.194733], [-123.520098, 54.224992], [-123.520494, 54.252469], [-123.518847, 54.254732], [-123.552689, 54.270199], [-123.537912, 54.27902], [-123.532431, 54.289599], [-123.541612, 54.297761], [-123.554392, 54.306245], [-123.586623, 54.317562], [-123.620212, 54.320558], [-123.643355, 54.325643], [-123.644256, 54.330123], [-123.668246, 54.326359], [-123.676544, 54.326826], [-123.684191, 54.325758], [-123.716096, 54.322386], [-123.733691, 54.322533], [-123.741171, 54.321789], [-123.759277, 54.328331], [-123.782701, 54.336333], [-123.819412, 54.336532], [-123.828845, 54.346359], [-123.847382, 54.37131], [-123.853054, 54.375642], [-123.863814, 54.378019], [-123.878024, 54.378871], [-123.905611, 54.374682], [-123.91542, 54.364856], [-123.928283, 54.361446], [-123.933403, 54.373492], [-123.933424, 54.379827], [-123.938183, 54.386337], [-123.945659, 54.392386], [-123.95287, 54.395139], [-123.956008, 54.399772], [-123.962847, 54.407482], [-123.969402, 54.41134], [-123.969783, 54.419486], [-123.969351, 54.424189], [-123.977189, 54.427366], [-123.986479, 54.429511], [-123.984599, 54.435255], [-123.977074, 54.436575], [-123.970153, 54.438536], [-123.967238, 54.44061], [-123.965079, 54.444307], [-123.954751, 54.446601], [-123.951285, 54.449467], [-123.952445, 54.458758], [-123.910953, 54.477862], [-123.8806, 54.492351], [-123.87731, 54.49911], [-123.848044, 54.512487], [-123.849597, 54.513029], [-123.865055, 54.517415], [-123.863147, 54.520123], [-123.861678, 54.520421], [-123.85999, 54.521044], [-123.859265, 54.521041], [-123.858813, 54.520935], [-123.858552, 54.520937], [-123.858093, 54.521129], [-123.857728, 54.521501], [-123.857621, 54.522283], [-123.857892, 54.522667], [-123.858032, 54.522738], [-123.858373, 54.522763], [-123.859018, 54.522579], [-123.859281, 54.522577], [-123.859826, 54.52278], [-123.86033, 54.523181], [-123.86068, 54.523735], [-123.86077, 54.524257], [-123.861386, 54.524935], [-123.861359, 54.525124], [-123.861177, 54.525286], [-123.858481, 54.526411], [-123.855979, 54.527283], [-123.854858, 54.527515], [-123.852809, 54.527817], [-123.851902, 54.528022], [-123.848615, 54.529081], [-123.842901, 54.530757], [-123.833302, 54.535494], [-123.821715, 54.544199], [-123.829352, 54.549794], [-123.833335, 54.554283], [-123.81973, 54.561963], [-123.822176, 54.575585], [-123.81966, 54.580637], [-123.819678, 54.58081], [-123.79629, 54.577152], [-123.780056, 54.592616], [-123.807906, 54.602991], [-123.808238, 54.605182], [-123.77865, 54.61323], [-123.777753, 54.618477], [-123.786343, 54.627227], [-123.78018, 54.650184], [-123.778499, 54.659126], [-123.793276, 54.674734], [-123.78972, 54.681654], [-123.793095, 54.68954], [-123.794408, 54.691172], [-123.795951, 54.692659], [-123.800154, 54.693724], [-123.804517, 54.694313], [-123.807015, 54.694539], [-123.812116, 54.693656], [-123.842237, 54.696153], [-123.860128, 54.685759], [-123.863263, 54.687058], [-123.858035, 54.700123], [-123.859366, 54.704204], [-123.880391, 54.719662], [-123.878702, 54.735281], [-123.880519, 54.738196], [-123.903706, 54.743865], [-123.913616, 54.750272], [-123.92637, 54.758991], [-123.948156, 54.767498], [-123.943971, 54.779138], [-123.92578, 54.806834], [-123.914928, 54.816178], [-123.919557, 54.831743], [-123.895808, 54.85372], [-123.904444, 54.86481], [-123.926726, 54.86212], [-123.972526, 54.863698], [-123.990328, 54.86632], [-123.996231, 54.865822], [-124.001279, 54.864511], [-124.005181, 54.862553], [-124.007373, 54.86448], [-124.011001, 54.865343], [-124.019201, 54.864944], [-124.023116, 54.867939], [-124.014855, 54.876732], [-124.015907, 54.880034], [-124.014193, 54.882095], [-124.009859, 54.882158], [-124.003418, 54.881677], [-123.998608, 54.880879], [-123.994507, 54.882283], [-123.993566, 54.885613], [-123.993419, 54.887478], [-123.995036, 54.893024], [-123.998615, 54.895117], [-124.006811, 54.897454], [-124.012974, 54.898215], [-124.023007, 54.897435], [-124.029107, 54.899227], [-124.03411, 54.902987], [-124.034065, 54.908256], [-124.034522, 54.916802], [-124.040546, 54.92428], [-124.045017, 54.928212], [-124.051912, 54.930459], [-124.053262, 54.944786], [-124.051272, 54.950777], [-124.040359, 54.954448], [-124.031968, 54.952964], [-124.021485, 54.953055], [-124.013276, 54.959907], [-124.013229, 54.966187], [-124.011096, 54.972221], [-124.012022, 54.981627], [-124.003635, 54.982163], [-123.999123, 54.986602], [-123.999078, 55.025169], [-123.994483, 55.023925], [-123.985989, 55.020642], [-123.980082, 55.01221], [-123.968239, 55.011017], [-123.945878, 55.011501], [-123.904458, 55.019633], [-123.888392, 55.037826], [-123.87238, 55.041221], [-123.862982, 55.04705], [-123.849047, 55.048144], [-123.83004, 55.044664], [-123.830474, 55.038348], [-123.828263, 55.034516], [-123.813811, 55.040285], [-123.810555, 55.037606], [-123.811999, 55.033855], [-123.815073, 55.020527], [-123.814049, 55.008908], [-123.816426, 54.997861], [-123.80599, 54.996622], [-123.794212, 54.995416], [-123.787414, 54.990969], [-123.787477, 54.990954], [-123.761197, 54.974576], [-123.758347, 54.964163], [-123.72728, 54.955228], [-123.726595, 54.947751], [-123.720716, 54.94293], [-123.710458, 54.942638], [-123.708216, 54.933521], [-123.690611, 54.923128], [-123.658341, 54.920308], [-123.633008, 54.935657], [-123.635457, 54.939603], [-123.63238, 54.94926], [-123.626669, 54.955119], [-123.619836, 54.955039], [-123.590095, 54.946403], [-123.561223, 54.95192], [-123.556522, 54.955793], [-123.550471, 54.958238], [-123.545057, 54.971572], [-123.538122, 54.986027], [-123.525107, 55.001546], [-123.524406, 55.006938], [-123.515376, 55.017144], [-123.505838, 55.018637], [-123.494898, 55.020009], [-123.472612, 55.01687], [-123.468443, 55.019275], [-123.467503, 55.021234], [-123.460156, 55.016612], [-123.454189, 55.014412], [-123.446567, 55.015407], [-123.433046, 55.020878], [-123.421147, 55.028074], [-123.415566, 55.032891], [-123.410766, 55.041017], [-123.408513, 55.051023], [-123.406686, 55.057349], [-123.407685, 55.065022], [-123.415208, 55.070913], [-123.415814, 55.080571], [-123.413453, 55.085942], [-123.39956, 55.098246], [-123.396273, 55.102977], [-123.3987, 55.10556], [-123.41073, 55.114247], [-123.417, 55.121941], [-123.420061, 55.136843], [-123.418661, 55.148033], [-123.409732, 55.156377], [-123.396127, 55.165249], [-123.392259, 55.171086], [-123.397334, 55.182306], [-123.413883, 55.20193], [-123.418042, 55.212509], [-123.418527, 55.218849], [-123.413326, 55.234931], [-123.43059, 55.241925], [-123.438575, 55.247984], [-123.446709, 55.256594], [-123.457301, 55.270194], [-123.461566, 55.286684], [-123.468429, 55.292908], [-123.494209, 55.313965], [-123.507433, 55.319709], [-123.534565, 55.327462], [-123.549177, 55.317976], [-123.568507, 55.31276], [-123.593834, 55.310775], [-123.609397, 55.310782], [-123.626258, 55.309089], [-123.645893, 55.306529], [-123.666446, 55.30016], [-123.678679, 55.297662], [-123.712134, 55.290517], [-123.742078, 55.287507], [-123.773021, 55.299392], [-123.797172, 55.324456], [-123.828675, 55.334494], [-123.851789, 55.339533], [-123.856325, 55.342204], [-123.860354, 55.346707], [-123.862146, 55.365403], [-123.869578, 55.379817], [-123.869926, 55.389944], [-123.874972, 55.400241], [-123.887707, 55.412609], [-123.895552, 55.416919], [-123.901208, 55.423322], [-123.906758, 55.429075], [-123.908069, 55.434369], [-123.904374, 55.439074], [-123.89498, 55.464783], [-123.897992, 55.477746], [-123.901024, 55.483265], [-123.885201, 55.493316], [-123.883092, 55.496195], [-123.884512, 55.503715], [-123.910824, 55.527727], [-123.928378, 55.55438], [-123.957716, 55.552132], [-123.993608, 55.54989], [-124.001185, 55.548563], [-124.006664, 55.546223], [-124.011834, 55.539389], [-124.018542, 55.536037], [-124.037478, 55.537623], [-124.050353, 55.541317], [-124.062545, 55.547315], [-124.077011, 55.556362], [-124.092629, 55.568814], [-124.099954, 55.577912], [-124.104357, 55.585733], [-124.105483, 55.595842], [-124.108536, 55.603043], [-124.112854, 55.61152], [-124.115956, 55.621008], [-124.123011, 55.63972], [-124.153083, 55.649107], [-124.157783, 55.655898], [-124.16353, 55.663931], [-124.167435, 55.668984], [-124.174248, 55.670611], [-124.181689, 55.670994], [-124.187603, 55.679185], [-124.192291, 55.683154], [-124.215783, 55.682469], [-124.232061, 55.684257], [-124.239867, 55.687245], [-124.247888, 55.689327], [-124.25602, 55.687396], [-124.267151, 55.686613], [-124.276727, 55.68988], [-124.284052, 55.694252], [-124.296927, 55.69564], [-124.301989, 55.700111], [-124.308333, 55.705864], [-124.312721, 55.713246], [-124.316202, 55.720916], [-124.31951, 55.726617], [-124.322275, 55.733746], [-124.323402, 55.734162], [-124.334855, 55.740401], [-124.333209, 55.744697], [-124.327783, 55.753754], [-124.334556, 55.761263], [-124.346854, 55.768706], [-124.354185, 55.77992], [-124.357267, 55.786709], [-124.357353, 55.790878], [-124.355362, 55.802628], [-124.352181, 55.80762], [-124.353114, 55.811521], [-124.349846, 55.81717], [-124.344997, 55.819751], [-124.338105, 55.825495], [-124.333616, 55.832157], [-124.334644, 55.838755], [-124.337546, 55.843505], [-124.359809, 55.869701], [-124.360495, 55.870063], [-124.374025, 55.878979], [-124.376606, 55.882193], [-124.379252, 55.886118], [-124.380759, 55.891502], [-124.381428, 55.896052], [-124.379153, 55.898967], [-124.377007, 55.903307], [-124.382024, 55.91088], [-124.383421, 55.918347], [-124.391695, 55.926857], [-124.401233, 55.938546], [-124.398785, 55.942048], [-124.399127, 55.950549], [-124.410641, 55.954901], [-124.415526, 55.953784], [-124.431582, 55.954817], [-124.432585, 55.962482], [-124.43129, 55.968982], [-124.433561, 55.974566], [-124.440506, 55.978468], [-124.444257, 55.987367], [-124.442215, 55.990532], [-124.440646, 55.995649], [-124.440047, 55.998927], [-124.502001, 55.999], [-124.750949, 55.99951], [-125.249932, 56.000055], [-125.342621, 56.000103], [-125.500307, 55.99988], [-125.750844, 55.999627], [-125.939789, 55.999485], [-126.001051, 55.999538], [-126.250287, 55.999946], [-126.500202, 55.999968], [-126.750048, 56.000046]], [[-125.957788, 55.476882], [-125.960904, 55.477282], [-125.961374, 55.477622], [-125.962043, 55.478738], [-125.962359, 55.478937], [-125.963006, 55.479128], [-125.965441, 55.479643], [-125.966253, 55.480012], [-125.968571, 55.480729], [-125.969678, 55.480927], [-125.970733, 55.481036], [-125.971869, 55.480991], [-125.973342, 55.480801], [-125.974039, 55.480811], [-125.97605, 55.481146], [-125.977626, 55.48156], [-125.978099, 55.481945], [-125.97783, 55.483277], [-125.979899, 55.483165], [-125.982758, 55.483765], [-125.983106, 55.483907], [-125.98369, 55.484299], [-125.983905, 55.484644], [-125.983874, 55.486515], [-125.983559, 55.487592], [-125.983631, 55.488163], [-125.976211, 55.488337], [-125.975666, 55.485158], [-125.974415, 55.484697], [-125.972684, 55.48489], [-125.97275, 55.487381], [-125.967766, 55.488008], [-125.965326, 55.489057], [-125.965196, 55.490681], [-125.953855, 55.49006], [-125.950766, 55.488664], [-125.950527, 55.48703], [-125.949348, 55.484991], [-125.946204, 55.482367], [-125.947185, 55.481976], [-125.9478, 55.48085], [-125.947972, 55.480669], [-125.948443, 55.480406], [-125.948708, 55.479923], [-125.94978, 55.478875], [-125.95102, 55.477383], [-125.954278, 55.47739], [-125.955013, 55.477123], [-125.957788, 55.476882]], [[-126.034084, 55.316374], [-126.035837, 55.323579], [-126.022015, 55.324586], [-126.021117, 55.317235], [-126.034084, 55.316374]], [[-126.021498, 55.313145], [-126.018561, 55.313256], [-126.01838, 55.313391], [-126.018105, 55.312192], [-126.020112, 55.311995], [-126.020898, 55.311817], [-126.021241, 55.311682], [-126.021498, 55.313145]], [[-125.161833, 54.882808], [-125.163873, 54.882772], [-125.163687, 54.886399], [-125.104653, 54.888304], [-125.100022, 54.878688], [-125.100938, 54.878673], [-125.102923, 54.878467], [-125.106859, 54.877707], [-125.112549, 54.876233], [-125.113667, 54.875817], [-125.114116, 54.875487], [-125.115239, 54.874324], [-125.115781, 54.873328], [-125.115502, 54.87308], [-125.115566, 54.872801], [-125.115814, 54.872454], [-125.115793, 54.872104], [-125.115356, 54.869684], [-125.115111, 54.869194], [-125.115045, 54.868539], [-125.114835, 54.868373], [-125.114517, 54.86827], [-125.114283, 54.868266], [-125.114244, 54.868391], [-125.11481, 54.869065], [-125.11472, 54.869147], [-125.114464, 54.869018], [-125.11394, 54.868524], [-125.113749, 54.868158], [-125.113655, 54.866389], [-125.114148, 54.866281], [-125.114788, 54.866298], [-125.115484, 54.866501], [-125.116256, 54.866954], [-125.116391, 54.867428], [-125.116712, 54.867585], [-125.117304, 54.867584], [-125.117667, 54.867406], [-125.117964, 54.867393], [-125.120203, 54.86792], [-125.121631, 54.868119], [-125.123965, 54.868618], [-125.124964, 54.868959], [-125.125295, 54.869008], [-125.127575, 54.869679], [-125.128536, 54.869904], [-125.129175, 54.870163], [-125.129709, 54.870251], [-125.130979, 54.870688], [-125.132033, 54.871164], [-125.133536, 54.871569], [-125.135617, 54.872323], [-125.136577, 54.872783], [-125.137124, 54.873142], [-125.137957, 54.873846], [-125.138485, 54.874403], [-125.139758, 54.876062], [-125.140156, 54.87681], [-125.140156, 54.877116], [-125.139913, 54.877525], [-125.139909, 54.877748], [-125.140027, 54.877918], [-125.141499, 54.878908], [-125.141896, 54.879071], [-125.142333, 54.87936], [-125.142795, 54.87955], [-125.14409, 54.879832], [-125.144875, 54.879944], [-125.147038, 54.879897], [-125.14773, 54.880001], [-125.14865, 54.879717], [-125.148782, 54.879543], [-125.148757, 54.879382], [-125.149517, 54.879009], [-125.15003, 54.878379], [-125.150186, 54.87808], [-125.15033, 54.876989], [-125.150531, 54.876402], [-125.150849, 54.875911], [-125.151167, 54.875761], [-125.153715, 54.875311], [-125.15736, 54.87495], [-125.159228, 54.874917], [-125.160919, 54.875031], [-125.161519, 54.875173], [-125.162577, 54.875712], [-125.163503, 54.876414], [-125.163569, 54.876781], [-125.163495, 54.877142], [-125.163215, 54.877471], [-125.16245, 54.87771], [-125.161823, 54.877667], [-125.160847, 54.877468], [-125.159814, 54.877415], [-125.158521, 54.877438], [-125.15792, 54.877565], [-125.155743, 54.878835], [-125.154477, 54.879064], [-125.153773, 54.879302], [-125.153261, 54.879652], [-125.153133, 54.880185], [-125.15321, 54.880444], [-125.153752, 54.880947], [-125.154586, 54.881381], [-125.156642, 54.882226], [-125.158445, 54.882706], [-125.160893, 54.883014], [-125.161205, 54.883008], [-125.161833, 54.882808]], [[-125.079379, 54.608065], [-125.059828, 54.608708], [-125.059506, 54.607526], [-125.059602, 54.607299], [-125.060085, 54.607022], [-125.061368, 54.606667], [-125.062021, 54.606405], [-125.062352, 54.605626], [-125.062528, 54.605435], [-125.062783, 54.605277], [-125.063473, 54.605149], [-125.063875, 54.605115], [-125.064421, 54.605204], [-125.065475, 54.605231], [-125.066121, 54.60513], [-125.066509, 54.605133], [-125.067212, 54.605274], [-125.067642, 54.605528], [-125.067792, 54.605696], [-125.067939, 54.606483], [-125.068139, 54.606785], [-125.069491, 54.607446], [-125.069722, 54.607415], [-125.070266, 54.607173], [-125.070865, 54.607054], [-125.071209, 54.606859], [-125.072172, 54.606592], [-125.072264, 54.606545], [-125.072135, 54.606475], [-125.07167, 54.606438], [-125.071355, 54.606354], [-125.07098, 54.606009], [-125.070974, 54.605838], [-125.071362, 54.605301], [-125.071373, 54.604905], [-125.071495, 54.604554], [-125.071934, 54.60433], [-125.072241, 54.60428], [-125.073171, 54.604317], [-125.073782, 54.604442], [-125.074215, 54.604417], [-125.074534, 54.604313], [-125.074856, 54.603984], [-125.075079, 54.603458], [-125.075469, 54.603209], [-125.075473, 54.603003], [-125.075356, 54.602833], [-125.074837, 54.602654], [-125.073934, 54.602553], [-125.073301, 54.602302], [-125.072546, 54.602387], [-125.072232, 54.602617], [-125.072004, 54.602666], [-125.07177, 54.602661], [-125.071482, 54.602431], [-125.07145, 54.602127], [-125.071684, 54.601862], [-125.071907, 54.600752], [-125.072168, 54.600398], [-125.072837, 54.599892], [-125.072432, 54.599522], [-125.071648, 54.599948], [-125.070766, 54.600584], [-125.070083, 54.600829], [-125.069953, 54.601002], [-125.069283, 54.601517], [-125.068889, 54.601704], [-125.068686, 54.601662], [-125.068621, 54.601304], [-125.068435, 54.600975], [-125.068586, 54.600603], [-125.068317, 54.600213], [-125.068329, 54.599844], [-125.068692, 54.599325], [-125.068501, 54.598941], [-125.068173, 54.598867], [-125.067716, 54.599026], [-125.067495, 54.599247], [-125.067452, 54.599921], [-125.067769, 54.600374], [-125.0678, 54.600697], [-125.067413, 54.601882], [-125.067108, 54.6023], [-125.066581, 54.602588], [-125.065984, 54.602742], [-125.065537, 54.602759], [-125.064655, 54.602504], [-125.064204, 54.602457], [-125.063702, 54.602322], [-125.063143, 54.602305], [-125.062913, 54.602353], [-125.062542, 54.602629], [-125.062545, 54.603017], [-125.062367, 54.603154], [-125.061606, 54.602816], [-125.060686, 54.602688], [-125.0602, 54.602265], [-125.060046, 54.602276], [-125.059851, 54.602414], [-125.059714, 54.602426], [-125.058684, 54.602263], [-125.058333, 54.602081], [-125.057956, 54.60198], [-125.057775, 54.602081], [-125.057775, 54.602379], [-125.057594, 54.602453], [-125.057115, 54.602497], [-125.057173, 54.602731], [-125.057068, 54.602795], [-125.056914, 54.602779], [-125.055702, 54.602386], [-125.053838, 54.601645], [-125.05301, 54.601462], [-125.053168, 54.596581], [-125.072259, 54.596488], [-125.072356, 54.59381], [-125.092323, 54.593966], [-125.092023, 54.595824], [-125.082905, 54.598709], [-125.079397, 54.598644], [-125.079379, 54.608065]], [[-124.753726, 54.649345], [-124.7598, 54.649989], [-124.762514, 54.653471], [-124.766129, 54.656708], [-124.771078, 54.660319], [-124.781349, 54.663804], [-124.78116, 54.665343], [-124.781782, 54.676638], [-124.76845, 54.676349], [-124.73405, 54.676501], [-124.734158, 54.660951], [-124.709914, 54.660068], [-124.710026, 54.655325], [-124.708872, 54.653661], [-124.704616, 54.653227], [-124.688473, 54.652967], [-124.688079, 54.648113], [-124.694745, 54.648281], [-124.702085, 54.646078], [-124.703553, 54.645875], [-124.709481, 54.649062], [-124.718526, 54.649697], [-124.728993, 54.649811], [-124.736952, 54.650141], [-124.742335, 54.650708], [-124.746266, 54.654807], [-124.746402, 54.651454], [-124.753726, 54.649345]], [[-124.54048, 54.566493], [-124.541049, 54.566801], [-124.541783, 54.567376], [-124.542508, 54.567716], [-124.542942, 54.567792], [-124.54378, 54.567818], [-124.545866, 54.567736], [-124.547108, 54.567856], [-124.548065, 54.567853], [-124.548956, 54.568065], [-124.549391, 54.568097], [-124.554298, 54.568213], [-124.555214, 54.5683], [-124.556518, 54.575233], [-124.548431, 54.570826], [-124.547007, 54.570318], [-124.54565, 54.570091], [-124.544976, 54.570062], [-124.543472, 54.570163], [-124.533012, 54.571907], [-124.52543, 54.57335], [-124.525408, 54.574932], [-124.496048, 54.57483], [-124.49476, 54.575208], [-124.493265, 54.575454], [-124.492826, 54.575493], [-124.492162, 54.57541], [-124.490487, 54.575423], [-124.489749, 54.575529], [-124.475525, 54.575241], [-124.475593, 54.574755], [-124.475606, 54.570802], [-124.475548, 54.560116], [-124.47585, 54.560325], [-124.476526, 54.560639], [-124.477556, 54.560923], [-124.480789, 54.56136], [-124.482617, 54.561391], [-124.483919, 54.561501], [-124.485676, 54.562163], [-124.485934, 54.562484], [-124.486646, 54.562511], [-124.486959, 54.562588], [-124.488271, 54.563363], [-124.488599, 54.563439], [-124.489545, 54.563526], [-124.489957, 54.5638], [-124.490107, 54.564105], [-124.49059, 54.564602], [-124.491034, 54.564902], [-124.491837, 54.565287], [-124.493102, 54.565658], [-124.496462, 54.566192], [-124.499897, 54.566625], [-124.500773, 54.566858], [-124.501565, 54.566973], [-124.502909, 54.567352], [-124.504032, 54.567581], [-124.506817, 54.568427], [-124.508418, 54.568676], [-124.508821, 54.568663], [-124.511415, 54.568981], [-124.515082, 54.56978], [-124.516198, 54.569901], [-124.516726, 54.56994], [-124.519154, 54.5699], [-124.520002, 54.569826], [-124.522495, 54.569471], [-124.523117, 54.569545], [-124.524131, 54.569783], [-124.524517, 54.569796], [-124.526143, 54.569417], [-124.527413, 54.569032], [-124.533296, 54.567547], [-124.535461, 54.56706], [-124.538918, 54.566432], [-124.539105, 54.566474], [-124.538939, 54.566638], [-124.538976, 54.566782], [-124.5391, 54.566798], [-124.539746, 54.566709], [-124.54048, 54.566493]], [[-124.234833, 54.500377], [-124.232864, 54.500588], [-124.224155, 54.500036], [-124.202436, 54.49765], [-124.181774, 54.497359], [-124.181015, 54.489856], [-124.181156, 54.4864], [-124.18398, 54.486272], [-124.18382, 54.482425], [-124.194065, 54.482136], [-124.194773, 54.477591], [-124.19459, 54.476085], [-124.193398, 54.475194], [-124.191694, 54.475146], [-124.189392, 54.475609], [-124.18469, 54.476067], [-124.180629, 54.475943], [-124.157494, 54.475809], [-124.158067, 54.470361], [-124.154013, 54.470357], [-124.154211, 54.464151], [-124.154162, 54.463134], [-124.157508, 54.463193], [-124.157574, 54.461105], [-124.181053, 54.460927], [-124.18146, 54.464061], [-124.192502, 54.464388], [-124.192923, 54.467751], [-124.201811, 54.467707], [-124.207033, 54.467607], [-124.210607, 54.466582], [-124.211192, 54.466471], [-124.242809, 54.462953], [-124.24275, 54.464049], [-124.255818, 54.463684], [-124.255617, 54.460867], [-124.251022, 54.460902], [-124.251129, 54.453273], [-124.249368, 54.453328], [-124.230968, 54.453434], [-124.231044, 54.438816], [-124.230951, 54.43439], [-124.23103, 54.424517], [-124.240289, 54.424704], [-124.251849, 54.423977], [-124.252541, 54.424741], [-124.252823, 54.425357], [-124.257772, 54.42448], [-124.26106, 54.42442], [-124.265942, 54.424487], [-124.265953, 54.42453], [-124.267431, 54.424892], [-124.267394, 54.425667], [-124.267642, 54.426275], [-124.267668, 54.426609], [-124.267473, 54.426781], [-124.266169, 54.426938], [-124.265781, 54.427356], [-124.265018, 54.428658], [-124.264981, 54.428937], [-124.265162, 54.42934], [-124.265273, 54.429896], [-124.265023, 54.43033], [-124.264767, 54.430521], [-124.263459, 54.431119], [-124.26309, 54.431123], [-124.262949, 54.431062], [-124.262492, 54.430697], [-124.262007, 54.430451], [-124.261439, 54.430565], [-124.260222, 54.431126], [-124.258883, 54.432129], [-124.258629, 54.432428], [-124.258575, 54.432689], [-124.258838, 54.433234], [-124.258852, 54.433701], [-124.259585, 54.434413], [-124.259666, 54.434574], [-124.259642, 54.434826], [-124.259181, 54.435325], [-124.258424, 54.436357], [-124.257756, 54.437668], [-124.257144, 54.439423], [-124.264188, 54.443104], [-124.264171, 54.443183], [-124.265285, 54.443776], [-124.269513, 54.444566], [-124.271614, 54.448508], [-124.278035, 54.450164], [-124.280421, 54.45025], [-124.281852, 54.450442], [-124.284012, 54.452352], [-124.286476, 54.452874], [-124.292276, 54.453226], [-124.302281, 54.455896], [-124.30157, 54.458321], [-124.301901, 54.460217], [-124.302468, 54.464907], [-124.280322, 54.464839], [-124.280287, 54.46696], [-124.274363, 54.466841], [-124.274331, 54.461105], [-124.268, 54.460799], [-124.268087, 54.467604], [-124.256109, 54.467742], [-124.256568, 54.482408], [-124.23717, 54.48304], [-124.23235, 54.483636], [-124.234833, 54.500377]], [[-124.405084, 54.42765], [-124.402804, 54.427712], [-124.402385, 54.427627], [-124.401012, 54.42714], [-124.399994, 54.426693], [-124.399506, 54.426392], [-124.398706, 54.426025], [-124.398699, 54.425818], [-124.398836, 54.425708], [-124.398913, 54.425321], [-124.3976, 54.42522], [-124.396792, 54.425013], [-124.396236, 54.424984], [-124.395755, 54.424872], [-124.394847, 54.424524], [-124.39384, 54.423905], [-124.393453, 54.423803], [-124.391173, 54.422067], [-124.389394, 54.420964], [-124.388744, 54.420396], [-124.388086, 54.420099], [-124.387818, 54.419426], [-124.387596, 54.419295], [-124.38713, 54.419183], [-124.385978, 54.419147], [-124.386042, 54.4189], [-124.385992, 54.416232], [-124.40585, 54.416268], [-124.405382, 54.420389], [-124.405035, 54.426521], [-124.405084, 54.42765]]], [[[-125.970891, 55.486967], [-125.971855, 55.486737], [-125.971431, 55.48618], [-125.970473, 55.48641], [-125.970891, 55.486967]]]]}, "properties": {"name": "Bulkley-Nechako C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Bulkley-Nechako C", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951015", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.619506, 54.250065], [-124.795431, 54.249773], [-124.999898, 54.249946], [-125.102611, 54.249481], [-125.159616, 54.248876], [-125.197755, 54.248705], [-125.2412, 54.248859], [-125.241282, 54.242331], [-125.241213, 54.213585], [-125.240703, 54.174411], [-125.240711, 54.147312], [-125.24048, 54.115256], [-125.240542, 54.107776], [-125.240363, 54.097474], [-125.241768, 54.086133], [-125.240459, 54.051367], [-125.239987, 54.032218], [-125.239616, 54.021588], [-125.299038, 54.023947], [-125.299463, 54.021411], [-125.307431, 54.02175], [-125.308681, 54.015105], [-125.295918, 54.005721], [-125.292021, 54.003409], [-125.235333, 53.998991], [-125.237367, 53.985929], [-125.242224, 53.948879], [-125.243085, 53.93168], [-125.246776, 53.905052], [-125.247214, 53.893978], [-125.241673, 53.858659], [-125.236995, 53.827265], [-125.237367, 53.731226], [-125.237508, 53.731198], [-125.237522, 53.717967], [-125.237646, 53.708624], [-125.238716, 53.656828], [-125.238475, 53.616249], [-125.238169, 53.593295], [-125.237803, 53.575771], [-125.237195, 53.535331], [-125.236059, 53.495009], [-125.236272, 53.477569], [-125.236685, 53.459578], [-125.237762, 53.448852], [-125.217861, 53.443203], [-125.192963, 53.438816], [-125.154067, 53.433227], [-125.120925, 53.430747], [-125.102131, 53.43143], [-125.063265, 53.436707], [-125.045955, 53.440083], [-125.023737, 53.443947], [-125.019869, 53.452158], [-125.018301, 53.455798], [-125.015281, 53.461584], [-125.012018, 53.46468], [-125.0105, 53.46499], [-124.999564, 53.459857], [-125.001827, 53.452284], [-125.001684, 53.452275], [-125.001827, 53.452183], [-125.002554, 53.449014], [-125.001721, 53.446838], [-124.996351, 53.444526], [-124.992679, 53.44122], [-124.992324, 53.436971], [-124.984723, 53.434815], [-124.983832, 53.431528], [-124.970942, 53.434182], [-124.964751, 53.436197], [-124.953022, 53.4338], [-124.94298, 53.434511], [-124.934162, 53.438871], [-124.914475, 53.438165], [-124.900824, 53.435449], [-124.898816, 53.435306], [-124.87524, 53.415328], [-124.868753, 53.409326], [-124.861698, 53.401832], [-124.855085, 53.396461], [-124.840068, 53.386916], [-124.820146, 53.376844], [-124.805885, 53.369095], [-124.779706, 53.36181], [-124.749557, 53.356382], [-124.736622, 53.354623], [-124.7283, 53.355396], [-124.719163, 53.359952], [-124.713314, 53.366169], [-124.697244, 53.378091], [-124.688448, 53.380024], [-124.68117, 53.384125], [-124.684134, 53.388623], [-124.685315, 53.393629], [-124.687519, 53.399543], [-124.679814, 53.401663], [-124.669711, 53.406717], [-124.661235, 53.408708], [-124.647342, 53.40755], [-124.637626, 53.399708], [-124.634344, 53.39114], [-124.628848, 53.386032], [-124.615285, 53.386405], [-124.606411, 53.385919], [-124.597739, 53.388551], [-124.584289, 53.389895], [-124.573521, 53.390141], [-124.554282, 53.393573], [-124.538471, 53.394642], [-124.523208, 53.393207], [-124.515764, 53.394648], [-124.517646, 53.399463], [-124.523288, 53.402369], [-124.526138, 53.407298], [-124.527401, 53.41158], [-124.527822, 53.415279], [-124.53231, 53.421384], [-124.535429, 53.428613], [-124.537446, 53.436214], [-124.53256, 53.441319], [-124.522154, 53.445373], [-124.520918, 53.450402], [-124.527397, 53.454522], [-124.536377, 53.458036], [-124.5521, 53.462348], [-124.561152, 53.467473], [-124.551936, 53.47074], [-124.542854, 53.471067], [-124.534058, 53.472553], [-124.518485, 53.476972], [-124.517364, 53.483311], [-124.512788, 53.488737], [-124.513864, 53.494149], [-124.509196, 53.501437], [-124.528264, 53.517072], [-124.536837, 53.52481], [-124.536495, 53.528448], [-124.528041, 53.531109], [-124.514888, 53.530149], [-124.504772, 53.528645], [-124.500604, 53.527467], [-124.500631, 53.528591], [-124.504372, 53.553509], [-124.502312, 53.554221], [-124.495404, 53.555687], [-124.498982, 53.574555], [-124.499492, 53.588572], [-124.500167, 53.66031], [-124.499632, 53.679573], [-124.496743, 53.701931], [-124.495609, 53.704508], [-124.495385, 53.705634], [-124.502304, 53.706954], [-124.502873, 53.706893], [-124.502291, 53.713864], [-124.50413, 53.719019], [-124.501757, 53.72236], [-124.502384, 53.724787], [-124.502454, 53.725459], [-124.50252, 53.73024], [-124.50023, 53.822209], [-124.500201, 53.89473], [-124.494265, 53.897026], [-124.46806, 53.896597], [-124.436269, 53.896512], [-124.436385, 53.906175], [-124.436502, 53.945832], [-124.436525, 53.986098], [-124.436666, 53.996821], [-124.436459, 53.998433], [-124.409306, 53.998288], [-124.383442, 53.99806], [-124.366185, 53.99814], [-124.366709, 54.013121], [-124.367503, 54.019871], [-124.367853, 54.030045], [-124.367744, 54.034569], [-124.361399, 54.056995], [-124.353285, 54.070574], [-124.361647, 54.103473], [-124.366622, 54.12249], [-124.3674, 54.125157], [-124.367254, 54.128119], [-124.418794, 54.127918], [-124.45468, 54.128182], [-124.466681, 54.128142], [-124.466756, 54.131773], [-124.466415, 54.147322], [-124.465811, 54.166313], [-124.465529, 54.191968], [-124.465481, 54.21392], [-124.4656, 54.221611], [-124.46586, 54.226532], [-124.466031, 54.232635], [-124.465979, 54.232613], [-124.465961, 54.234469], [-124.466237, 54.249973], [-124.530738, 54.250023], [-124.533478, 54.250019], [-124.53466, 54.249926], [-124.55728, 54.250004], [-124.619506, 54.250065]], [[-125.104539, 54.039185], [-125.098307, 54.040487], [-125.088577, 54.040182], [-125.088753, 54.038899], [-125.08873, 54.036032], [-125.096552, 54.036582], [-125.099812, 54.034676], [-125.101579, 54.033757], [-125.104539, 54.039185]], [[-124.92656, 54.034301], [-124.926658, 54.036339], [-124.928424, 54.040704], [-124.926175, 54.063514], [-124.926053, 54.069948], [-124.889224, 54.070232], [-124.889234, 54.064905], [-124.88916, 54.064754], [-124.891517, 54.064593], [-124.894018, 54.064849], [-124.894982, 54.064889], [-124.897238, 54.064754], [-124.897815, 54.064629], [-124.898761, 54.06464], [-124.899372, 54.06428], [-124.900312, 54.063132], [-124.900462, 54.062743], [-124.900605, 54.060836], [-124.900396, 54.059607], [-124.900087, 54.058839], [-124.899275, 54.057486], [-124.89852, 54.056635], [-124.897537, 54.055895], [-124.896771, 54.055494], [-124.894959, 54.054632], [-124.893889, 54.054253], [-124.892922, 54.054206], [-124.892332, 54.054323], [-124.891479, 54.054363], [-124.889246, 54.054982], [-124.888361, 54.055356], [-124.887279, 54.056065], [-124.88711, 54.056401], [-124.886925, 54.057365], [-124.886037, 54.058666], [-124.885462, 54.058835], [-124.884132, 54.058794], [-124.883969, 54.058553], [-124.883899, 54.058365], [-124.883952, 54.057844], [-124.884262, 54.057604], [-124.88504, 54.057243], [-124.885228, 54.057005], [-124.88555, 54.056021], [-124.885809, 54.055683], [-124.885958, 54.055232], [-124.885998, 54.054782], [-124.885907, 54.054487], [-124.886027, 54.053379], [-124.886584, 54.052553], [-124.887085, 54.052131], [-124.888145, 54.051593], [-124.888625, 54.051423], [-124.89097, 54.050884], [-124.894326, 54.049761], [-124.896483, 54.04916], [-124.899618, 54.048399], [-124.899196, 54.047952], [-124.896609, 54.047908], [-124.896061, 54.047944], [-124.894771, 54.048172], [-124.893102, 54.048729], [-124.892451, 54.048883], [-124.889809, 54.049371], [-124.889448, 54.046818], [-124.890371, 54.034374], [-124.92656, 54.034301]], [[-124.862241, 54.061093], [-124.859711, 54.062241], [-124.855517, 54.063197], [-124.846471, 54.065865], [-124.840907, 54.066436], [-124.833341, 54.068373], [-124.832046, 54.069124], [-124.830551, 54.069462], [-124.829665, 54.069298], [-124.824942, 54.067888], [-124.81855, 54.065439], [-124.815361, 54.063718], [-124.818398, 54.060654], [-124.81857, 54.060657], [-124.818282, 54.059134], [-124.827856, 54.059142], [-124.827068, 54.055339], [-124.837281, 54.055336], [-124.837158, 54.054853], [-124.83871, 54.054933], [-124.838769, 54.054355], [-124.840312, 54.054341], [-124.840319, 54.051728], [-124.847784, 54.051503], [-124.849662, 54.051333], [-124.849971, 54.050823], [-124.851838, 54.050777], [-124.85186, 54.051317], [-124.866864, 54.051267], [-124.866868, 54.051756], [-124.865818, 54.052209], [-124.866834, 54.052727], [-124.865541, 54.055255], [-124.865702, 54.055754], [-124.867443, 54.057748], [-124.865351, 54.059225], [-124.862241, 54.061093]], [[-124.782506, 54.056651], [-124.783303, 54.059909], [-124.781315, 54.060927], [-124.779348, 54.061738], [-124.777447, 54.062665], [-124.776806, 54.062666], [-124.775741, 54.062438], [-124.775174, 54.062411], [-124.770036, 54.062299], [-124.76854, 54.062356], [-124.766634, 54.06278], [-124.765489, 54.06321], [-124.765088, 54.063441], [-124.76451, 54.063862], [-124.764365, 54.064089], [-124.764349, 54.064395], [-124.764399, 54.064529], [-124.764588, 54.064626], [-124.7653, 54.064875], [-124.765308, 54.065019], [-124.764621, 54.065066], [-124.764153, 54.06518], [-124.762985, 54.066133], [-124.76218, 54.066593], [-124.761856, 54.066886], [-124.760642, 54.06712], [-124.757801, 54.067467], [-124.756543, 54.067763], [-124.755041, 54.067974], [-124.754385, 54.068011], [-124.751787, 54.068399], [-124.748028, 54.068427], [-124.745269, 54.068565], [-124.743578, 54.068573], [-124.743978, 54.059762], [-124.74962, 54.059466], [-124.758347, 54.059296], [-124.758366, 54.049413], [-124.774034, 54.04971], [-124.773229, 54.050097], [-124.771364, 54.050781], [-124.77131, 54.05098], [-124.771513, 54.051445], [-124.772478, 54.052913], [-124.772765, 54.053584], [-124.773227, 54.054008], [-124.773618, 54.054218], [-124.77411, 54.054292], [-124.775275, 54.054356], [-124.776144, 54.054325], [-124.778415, 54.053869], [-124.779712, 54.053444], [-124.781151, 54.052776], [-124.781949, 54.052198], [-124.782253, 54.051771], [-124.782506, 54.056651]], [[-124.603931, 54.084754], [-124.604248, 54.086703], [-124.604267, 54.093594], [-124.577358, 54.093793], [-124.577449, 54.092105], [-124.563536, 54.091863], [-124.563999, 54.09132], [-124.565563, 54.090176], [-124.566078, 54.089693], [-124.566778, 54.088803], [-124.566946, 54.087974], [-124.56736, 54.087556], [-124.568218, 54.087202], [-124.568604, 54.087332], [-124.56885, 54.087356], [-124.569138, 54.087298], [-124.572195, 54.086082], [-124.572767, 54.085822], [-124.574592, 54.084324], [-124.575042, 54.08412], [-124.577824, 54.083329], [-124.578631, 54.083183], [-124.579517, 54.083189], [-124.580285, 54.083296], [-124.583337, 54.083957], [-124.584272, 54.084043], [-124.585276, 54.084273], [-124.585536, 54.084278], [-124.586215, 54.084072], [-124.587315, 54.084049], [-124.589004, 54.083811], [-124.590478, 54.082416], [-124.59069, 54.081937], [-124.590648, 54.080813], [-124.590314, 54.079731], [-124.590297, 54.079272], [-124.59034, 54.078787], [-124.590628, 54.078305], [-124.591208, 54.077902], [-124.591995, 54.077667], [-124.592561, 54.077679], [-124.594203, 54.077872], [-124.594815, 54.077855], [-124.595375, 54.077731], [-124.596262, 54.077341], [-124.597041, 54.076908], [-124.598064, 54.076141], [-124.59851, 54.075416], [-124.5988, 54.074179], [-124.599069, 54.073591], [-124.598846, 54.07337], [-124.598588, 54.073419], [-124.598234, 54.073388], [-124.598102, 54.07311], [-124.598198, 54.072435], [-124.598571, 54.071387], [-124.598611, 54.070038], [-124.598528, 54.068682], [-124.597529, 54.067779], [-124.596557, 54.067081], [-124.596141, 54.066601], [-124.594985, 54.065556], [-124.593821, 54.064304], [-124.593005, 54.063757], [-124.591147, 54.063118], [-124.597492, 54.063033], [-124.597438, 54.06238], [-124.599786, 54.062434], [-124.599655, 54.063196], [-124.600028, 54.063423], [-124.601357, 54.063661], [-124.602162, 54.064244], [-124.602635, 54.064192], [-124.603149, 54.063917], [-124.604241, 54.064046], [-124.605002, 54.064392], [-124.605538, 54.064232], [-124.607028, 54.064191], [-124.608002, 54.063756], [-124.608393, 54.063314], [-124.608471, 54.062988], [-124.608086, 54.062775], [-124.606411, 54.062798], [-124.605605, 54.062734], [-124.612735, 54.062562], [-124.614599, 54.062438], [-124.620288, 54.06326], [-124.620153, 54.063566], [-124.619392, 54.064052], [-124.619381, 54.064187], [-124.619728, 54.064425], [-124.619746, 54.064523], [-124.619426, 54.064565], [-124.619219, 54.064728], [-124.619426, 54.065311], [-124.618162, 54.067026], [-124.618177, 54.067359], [-124.618485, 54.067813], [-124.618472, 54.067921], [-124.618339, 54.06804], [-124.617765, 54.068209], [-124.617679, 54.068319], [-124.61689, 54.070055], [-124.616477, 54.07042], [-124.615698, 54.072012], [-124.615077, 54.072983], [-124.615124, 54.074187], [-124.614929, 54.074288], [-124.614809, 54.074704], [-124.614396, 54.075122], [-124.613969, 54.075937], [-124.613614, 54.07622], [-124.613369, 54.076583], [-124.61337, 54.077392], [-124.613174, 54.077862], [-124.613375, 54.078345], [-124.61323, 54.079299], [-124.61328, 54.079452], [-124.613735, 54.079769], [-124.613961, 54.08008], [-124.614053, 54.080474], [-124.61368, 54.081083], [-124.613428, 54.081302], [-124.612645, 54.081608], [-124.611897, 54.08205], [-124.611399, 54.082218], [-124.610155, 54.082441], [-124.60915, 54.082537], [-124.607557, 54.082441], [-124.607099, 54.082464], [-124.606209, 54.082755], [-124.605384, 54.083153], [-124.605041, 54.08341], [-124.603931, 54.084754]]]]}, "properties": {"name": "Bulkley-Nechako D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Bulkley-Nechako D", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951017", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.350978, 54.264701], [-124.361944, 54.265803], [-124.363371, 54.266048], [-124.368364, 54.269057], [-124.386215, 54.270609], [-124.4003, 54.269445], [-124.412825, 54.258693], [-124.415942, 54.248757], [-124.417199, 54.244455], [-124.418683, 54.242413], [-124.418488, 54.241955], [-124.420307, 54.239245], [-124.423593, 54.232671], [-124.4259, 54.231462], [-124.427418, 54.230567], [-124.431308, 54.229855], [-124.444451, 54.224791], [-124.454008, 54.227562], [-124.45958, 54.229976], [-124.466031, 54.232635], [-124.46586, 54.226532], [-124.4656, 54.221611], [-124.465481, 54.21392], [-124.465529, 54.191968], [-124.465811, 54.166313], [-124.466415, 54.147322], [-124.466756, 54.131773], [-124.466681, 54.128142], [-124.45468, 54.128182], [-124.418794, 54.127918], [-124.367254, 54.128119], [-124.3674, 54.125157], [-124.366622, 54.12249], [-124.361647, 54.103473], [-124.353285, 54.070574], [-124.361399, 54.056995], [-124.367744, 54.034569], [-124.367853, 54.030045], [-124.367503, 54.019871], [-124.353229, 54.019604], [-124.353002, 54.027092], [-124.332592, 54.02707], [-124.330663, 54.027166], [-124.318546, 54.027105], [-124.317781, 54.027225], [-124.316349, 54.027314], [-124.316223, 54.024051], [-124.316934, 54.023774], [-124.317434, 54.023707], [-124.32069, 54.023742], [-124.320739, 54.020235], [-124.326715, 54.020248], [-124.326818, 54.01668], [-124.326626, 54.012681], [-124.333309, 54.012674], [-124.333026, 54.015985], [-124.339034, 54.016192], [-124.339153, 54.012667], [-124.343115, 54.012662], [-124.352163, 54.012907], [-124.366753, 54.013122], [-124.366185, 53.99814], [-124.383442, 53.99806], [-124.409306, 53.998288], [-124.436459, 53.998433], [-124.436666, 53.996821], [-124.436525, 53.986098], [-124.436502, 53.945832], [-124.436385, 53.906175], [-124.436269, 53.896512], [-124.46806, 53.896597], [-124.494265, 53.897026], [-124.500201, 53.89473], [-124.50023, 53.822209], [-124.50252, 53.73024], [-124.502454, 53.725459], [-124.502384, 53.724787], [-124.501757, 53.72236], [-124.50413, 53.719019], [-124.502291, 53.713864], [-124.502873, 53.706893], [-124.502304, 53.706954], [-124.495385, 53.705634], [-124.495609, 53.704508], [-124.496743, 53.701931], [-124.499632, 53.679573], [-124.500167, 53.66031], [-124.499492, 53.588572], [-124.498982, 53.574555], [-124.495404, 53.555687], [-124.502312, 53.554221], [-124.504372, 53.553509], [-124.500631, 53.528591], [-124.500604, 53.527467], [-124.49638, 53.526288], [-124.48523, 53.520216], [-124.466642, 53.515582], [-124.439176, 53.509365], [-124.423386, 53.506418], [-124.40596, 53.504546], [-124.399848, 53.503264], [-124.390851, 53.504063], [-124.381305, 53.501863], [-124.381268, 53.496868], [-124.393279, 53.497297], [-124.404326, 53.495154], [-124.398793, 53.489794], [-124.386156, 53.485261], [-124.386392, 53.470532], [-124.38474, 53.460678], [-124.380977, 53.45482], [-124.353637, 53.456738], [-124.337667, 53.461036], [-124.321089, 53.459045], [-124.30565, 53.455445], [-124.294689, 53.455516], [-124.279709, 53.460974], [-124.27971, 53.465089], [-124.286554, 53.476213], [-124.280815, 53.480445], [-124.270086, 53.474009], [-124.266319, 53.467757], [-124.253849, 53.466525], [-124.248789, 53.461474], [-124.246236, 53.452894], [-124.238615, 53.452692], [-124.225371, 53.447], [-124.215656, 53.443693], [-124.218284, 53.440125], [-124.219357, 53.433516], [-124.219199, 53.429384], [-124.215382, 53.42065], [-124.208564, 53.418881], [-124.198742, 53.419076], [-124.180501, 53.4125], [-124.168329, 53.413284], [-124.160938, 53.409684], [-124.144757, 53.408239], [-124.136619, 53.408157], [-124.122963, 53.413231], [-124.108628, 53.412033], [-124.104917, 53.41654], [-124.11273, 53.424444], [-124.104604, 53.43114], [-124.093873, 53.43278], [-124.085892, 53.434949], [-124.069718, 53.432815], [-124.0562, 53.434751], [-124.046556, 53.432179], [-124.031981, 53.435231], [-124.017091, 53.439683], [-124.007209, 53.443628], [-123.997561, 53.443996], [-123.997629, 53.484308], [-123.997404, 53.484234], [-123.982627, 53.48424], [-123.907713, 53.484405], [-123.884967, 53.484474], [-123.813793, 53.484843], [-123.6299, 53.484093], [-123.549941, 53.484018], [-123.523036, 53.483599], [-123.484322, 53.483686], [-123.445872, 53.483631], [-123.419881, 53.483511], [-123.41896, 53.470183], [-123.36636, 53.46988], [-123.328485, 53.470174], [-123.301709, 53.470231], [-123.301706, 53.47048], [-123.300446, 53.470531], [-123.277745, 53.47059], [-123.280561, 53.499273], [-123.303179, 53.499123], [-123.30307, 53.523968], [-123.302366, 53.554576], [-123.304275, 53.616859], [-123.304718, 53.627589], [-123.351134, 53.647058], [-123.361624, 53.64887], [-123.370094, 53.64778], [-123.375485, 53.648598], [-123.370771, 53.651332], [-123.369078, 53.654933], [-123.36955, 53.659034], [-123.376431, 53.665457], [-123.38259, 53.666143], [-123.39966, 53.674275], [-123.40541, 53.676609], [-123.413115, 53.675049], [-123.420324, 53.678036], [-123.424355, 53.681687], [-123.435475, 53.692701], [-123.442755, 53.705154], [-123.447336, 53.708834], [-123.465075, 53.708431], [-123.468111, 53.711741], [-123.473243, 53.713763], [-123.473721, 53.716161], [-123.478323, 53.717793], [-123.482963, 53.724159], [-123.489904, 53.724583], [-123.493896, 53.728006], [-123.499368, 53.728504], [-123.513252, 53.748989], [-123.518127, 53.758978], [-123.512626, 53.76715], [-123.513671, 53.770759], [-123.510313, 53.781504], [-123.50071, 53.787462], [-123.473504, 53.79265], [-123.462535, 53.793881], [-123.448367, 53.795174], [-123.440546, 53.794953], [-123.42525, 53.792634], [-123.424697, 53.816665], [-123.425204, 53.840919], [-123.425362, 53.858186], [-123.425079, 53.87146], [-123.427318, 53.876632], [-123.428969, 53.886721], [-123.426119, 53.890207], [-123.425308, 53.895176], [-123.425704, 53.916593], [-123.425711, 53.954339], [-123.425561, 53.974747], [-123.422398, 53.974593], [-123.423614, 53.97523], [-123.425037, 53.976447], [-123.427222, 53.979054], [-123.428693, 53.980471], [-123.429613, 53.981102], [-123.431068, 53.981657], [-123.434382, 53.982373], [-123.437585, 53.982858], [-123.441571, 53.983131], [-123.448087, 53.983983], [-123.450891, 53.985168], [-123.453372, 53.98644], [-123.456218, 53.988412], [-123.459194, 53.990872], [-123.460924, 53.992904], [-123.463073, 53.994763], [-123.465419, 53.996363], [-123.466248, 53.996805], [-123.467764, 53.997473], [-123.469052, 53.997919], [-123.471572, 53.998268], [-123.47341, 53.998354], [-123.477832, 53.999247], [-123.481064, 54.000459], [-123.482789, 54.001371], [-123.483909, 54.001797], [-123.487802, 54.002693], [-123.489314, 54.002827], [-123.491364, 54.002861], [-123.494886, 54.002302], [-123.497521, 54.001576], [-123.501992, 53.999495], [-123.505759, 53.998648], [-123.506808, 53.998481], [-123.508953, 53.998634], [-123.509995, 53.999024], [-123.510997, 53.999609], [-123.514236, 54.003], [-123.51579, 54.004011], [-123.516939, 54.004534], [-123.518595, 54.005033], [-123.519921, 54.005121], [-123.521246, 54.004856], [-123.522476, 54.004311], [-123.523286, 54.003839], [-123.523743, 54.003199], [-123.524077, 54.000898], [-123.522582, 53.997366], [-123.522651, 53.994925], [-123.523393, 53.993605], [-123.526519, 53.991863], [-123.530338, 53.990084], [-123.532847, 53.988271], [-123.534809, 53.987266], [-123.535983, 53.987024], [-123.537311, 53.986948], [-123.53996, 53.987224], [-123.541819, 53.98766], [-123.540749, 53.98933], [-123.540659, 53.989943], [-123.540656, 53.991926], [-123.542154, 53.993721], [-123.544492, 53.995385], [-123.546366, 53.997736], [-123.548118, 53.999191], [-123.550094, 53.999909], [-123.551621, 54.00105], [-123.552506, 54.002378], [-123.554465, 54.003483], [-123.556835, 54.006672], [-123.5588, 54.008048], [-123.560597, 54.009066], [-123.562116, 54.010261], [-123.563335, 54.011063], [-123.564641, 54.011615], [-123.569637, 54.014422], [-123.571449, 54.017517], [-123.572226, 54.018031], [-123.574382, 54.019238], [-123.577068, 54.020213], [-123.580527, 54.021113], [-123.584522, 54.023794], [-123.58553, 54.026189], [-123.585614, 54.027111], [-123.584955, 54.029172], [-123.584915, 54.029663], [-123.584396, 54.030176], [-123.579867, 54.031822], [-123.575509, 54.031672], [-123.573003, 54.032545], [-123.572775, 54.033403], [-123.572946, 54.034491], [-123.574045, 54.035454], [-123.575532, 54.037556], [-123.576972, 54.03843], [-123.57849, 54.038944], [-123.580008, 54.039111], [-123.581717, 54.039042], [-123.583474, 54.038698], [-123.588348, 54.03802], [-123.590962, 54.038092], [-123.594361, 54.037907], [-123.596636, 54.037975], [-123.600266, 54.038394], [-123.602334, 54.038807], [-123.603847, 54.038769], [-123.606129, 54.038947], [-123.613992, 54.040789], [-123.616018, 54.041421], [-123.617101, 54.042108], [-123.617966, 54.042902], [-123.618105, 54.043631], [-123.617777, 54.04458], [-123.616827, 54.045471], [-123.615192, 54.046682], [-123.613956, 54.048272], [-123.613178, 54.049616], [-123.612983, 54.051056], [-123.61044, 54.053872], [-123.609491, 54.055728], [-123.60763, 54.057307], [-123.605981, 54.058437], [-123.604338, 54.05914], [-123.603085, 54.059586], [-123.601226, 54.059791], [-123.598104, 54.059972], [-123.59714, 54.060234], [-123.595478, 54.060117], [-123.590314, 54.058714], [-123.587393, 54.058186], [-123.58678, 54.058139], [-123.585511, 54.05853], [-123.582247, 54.060198], [-123.579722, 54.062136], [-123.578403, 54.06432], [-123.576963, 54.068743], [-123.57575, 54.069876], [-123.575333, 54.070651], [-123.574971, 54.073052], [-123.574094, 54.074515], [-123.571753, 54.075995], [-123.570106, 54.076277], [-123.569526, 54.07686], [-123.568711, 54.078402], [-123.56709, 54.079207], [-123.564871, 54.079428], [-123.56205, 54.07917], [-123.559246, 54.079258], [-123.557489, 54.078898], [-123.553323, 54.076597], [-123.553139, 54.076286], [-123.553093, 54.076021], [-123.554125, 54.074677], [-123.553701, 54.073646], [-123.552952, 54.072466], [-123.55195, 54.071123], [-123.552442, 54.070419], [-123.553789, 54.069807], [-123.554071, 54.068789], [-123.55412, 54.067571], [-123.553921, 54.065881], [-123.553404, 54.065094], [-123.552308, 54.0643], [-123.551543, 54.063876], [-123.550488, 54.062944], [-123.548257, 54.06171], [-123.545521, 54.061115], [-123.543199, 54.0608], [-123.541737, 54.06088], [-123.53668, 54.06202], [-123.535818, 54.062425], [-123.532919, 54.064831], [-123.531057, 54.065681], [-123.5299, 54.066796], [-123.52609, 54.068187], [-123.522665, 54.068869], [-123.521675, 54.068811], [-123.518898, 54.068915], [-123.517625, 54.069022], [-123.515735, 54.069068], [-123.514345, 54.068807], [-123.508777, 54.067487], [-123.505391, 54.066414], [-123.501711, 54.065727], [-123.497549, 54.065245], [-123.496366, 54.065483], [-123.495022, 54.066051], [-123.492177, 54.066997], [-123.48928, 54.068134], [-123.488521, 54.068311], [-123.486504, 54.069743], [-123.484533, 54.071376], [-123.483273, 54.073304], [-123.483167, 54.075164], [-123.481835, 54.076849], [-123.481503, 54.078483], [-123.481575, 54.078695], [-123.482974, 54.080556], [-123.483936, 54.082094], [-123.483944, 54.083943], [-123.484893, 54.084585], [-123.486723, 54.085153], [-123.490085, 54.085575], [-123.493199, 54.086925], [-123.497714, 54.088642], [-123.499564, 54.089861], [-123.503371, 54.090998], [-123.505243, 54.092138], [-123.506743, 54.092448], [-123.508304, 54.092675], [-123.511739, 54.093498], [-123.513608, 54.093764], [-123.515219, 54.09436], [-123.517235, 54.095436], [-123.519573, 54.096324], [-123.523003, 54.096578], [-123.526511, 54.097505], [-123.528726, 54.097954], [-123.53063, 54.098547], [-123.53512, 54.09909], [-123.542014, 54.100144], [-123.548994, 54.101057], [-123.551547, 54.101166], [-123.553542, 54.100339], [-123.556119, 54.10037], [-123.559226, 54.101481], [-123.562732, 54.102826], [-123.56421, 54.103768], [-123.56602, 54.10557], [-123.566314, 54.106759], [-123.56526, 54.108031], [-123.564573, 54.10846], [-123.564164, 54.108952], [-123.564266, 54.109448], [-123.565992, 54.110315], [-123.565892, 54.111156], [-123.564672, 54.112523], [-123.563263, 54.115051], [-123.561065, 54.115995], [-123.55938, 54.117555], [-123.555508, 54.120597], [-123.554267, 54.121098], [-123.552482, 54.121237], [-123.549284, 54.121758], [-123.547739, 54.121926], [-123.544723, 54.122381], [-123.542096, 54.123372], [-123.539335, 54.124219], [-123.53286, 54.126931], [-123.531714, 54.128032], [-123.531275, 54.12863], [-123.531369, 54.12901], [-123.531824, 54.129633], [-123.532659, 54.130372], [-123.533292, 54.131571], [-123.534495, 54.133447], [-123.535056, 54.135178], [-123.535952, 54.136887], [-123.535803, 54.137822], [-123.534899, 54.138411], [-123.533197, 54.139085], [-123.532574, 54.13988], [-123.532661, 54.140649], [-123.533547, 54.1415], [-123.533721, 54.14255], [-123.533011, 54.143882], [-123.532073, 54.1445], [-123.529123, 54.145988], [-123.526883, 54.147556], [-123.525494, 54.148685], [-123.524211, 54.149062], [-123.52077, 54.148656], [-123.5187, 54.149194], [-123.517779, 54.150781], [-123.518303, 54.152512], [-123.520358, 54.154401], [-123.521271, 54.154766], [-123.523486, 54.154998], [-123.53361, 54.155336], [-123.536201, 54.155103], [-123.538815, 54.155187], [-123.540563, 54.156265], [-123.541483, 54.157243], [-123.542117, 54.158316], [-123.543469, 54.159124], [-123.544499, 54.159411], [-123.547089, 54.159728], [-123.550764, 54.159185], [-123.554396, 54.158551], [-123.556815, 54.158418], [-123.559585, 54.158595], [-123.562302, 54.158356], [-123.568586, 54.158105], [-123.574949, 54.15806], [-123.581229, 54.158636], [-123.587537, 54.159857], [-123.597535, 54.161248], [-123.604882, 54.161295], [-123.614676, 54.163247], [-123.624702, 54.164998], [-123.625331, 54.165011], [-123.631147, 54.166087], [-123.637663, 54.167044], [-123.641118, 54.166632], [-123.644089, 54.166002], [-123.646856, 54.164965], [-123.649873, 54.164169], [-123.653174, 54.164076], [-123.657914, 54.165369], [-123.659869, 54.165363], [-123.662035, 54.164437], [-123.662307, 54.164416], [-123.663797, 54.164891], [-123.665045, 54.165807], [-123.665586, 54.166292], [-123.665907, 54.168783], [-123.664925, 54.170165], [-123.66285, 54.17114], [-123.65822, 54.172591], [-123.654819, 54.173181], [-123.651986, 54.174385], [-123.651394, 54.17593], [-123.651416, 54.176366], [-123.651494, 54.176718], [-123.652349, 54.17765], [-123.653339, 54.17785], [-123.655323, 54.177819], [-123.656025, 54.177524], [-123.659801, 54.175623], [-123.665455, 54.174701], [-123.668248, 54.174388], [-123.668694, 54.174222], [-123.67546, 54.173917], [-123.678875, 54.174168], [-123.687074, 54.1758], [-123.688685, 54.176418], [-123.688989, 54.176765], [-123.689564, 54.178641], [-123.690569, 54.179589], [-123.695112, 54.181275], [-123.697266, 54.181486], [-123.699138, 54.181429], [-123.700424, 54.181179], [-123.707636, 54.179498], [-123.711346, 54.179525], [-123.714869, 54.180193], [-123.71856, 54.181578], [-123.722434, 54.182346], [-123.726916, 54.181993], [-123.732899, 54.180806], [-123.73749, 54.179986], [-123.740774, 54.180016], [-123.74312, 54.180267], [-123.751628, 54.182512], [-123.755749, 54.183756], [-123.759758, 54.18403], [-123.766042, 54.185474], [-123.771694, 54.18767], [-123.77882, 54.190293], [-123.784674, 54.191462], [-123.790202, 54.193064], [-123.79262, 54.193571], [-123.797455, 54.195435], [-123.804475, 54.199766], [-123.812396, 54.202666], [-123.817238, 54.204275], [-123.81884, 54.204548], [-123.82196, 54.20438], [-123.823325, 54.204017], [-123.828678, 54.202459], [-123.833458, 54.200653], [-123.83416, 54.20056], [-123.842955, 54.19801], [-123.846895, 54.198114], [-123.84937, 54.199676], [-123.850292, 54.200411], [-123.851915, 54.201143], [-123.856279, 54.20225], [-123.859832, 54.202864], [-123.861417, 54.203015], [-123.864575, 54.203212], [-123.869507, 54.203685], [-123.870849, 54.203507], [-123.87377, 54.202688], [-123.876157, 54.200265], [-123.87895, 54.200202], [-123.884028, 54.201122], [-123.885374, 54.201464], [-123.88985, 54.202379], [-123.894874, 54.202824], [-123.897951, 54.202897], [-123.901825, 54.202614], [-123.905559, 54.203187], [-123.91111, 54.206239], [-123.917295, 54.20884], [-123.924841, 54.211621], [-123.927033, 54.212113], [-123.930827, 54.212026], [-123.932056, 54.211815], [-123.933984, 54.21101], [-123.935833, 54.210015], [-123.937158, 54.208627], [-123.939368, 54.20595], [-123.940894, 54.204698], [-123.942113, 54.204082], [-123.943547, 54.203929], [-123.944917, 54.203955], [-123.948997, 54.204342], [-123.953587, 54.205635], [-123.95626, 54.206518], [-123.964462, 54.209569], [-123.968931, 54.211685], [-123.9753, 54.215467], [-123.980059, 54.217406], [-123.984825, 54.220233], [-123.990668, 54.222789], [-123.995072, 54.22423], [-124.000069, 54.225035], [-124.002583, 54.225548], [-124.01037, 54.22859], [-124.010983, 54.229113], [-124.015408, 54.23206], [-124.021151, 54.234128], [-124.022432, 54.234404], [-124.029156, 54.236777], [-124.036503, 54.240589], [-124.037803, 54.240763], [-124.050408, 54.243291], [-124.052668, 54.244053], [-124.055607, 54.244853], [-124.059856, 54.24531], [-124.064455, 54.246143], [-124.069182, 54.24667], [-124.073285, 54.248134], [-124.076225, 54.25017], [-124.07831, 54.251074], [-124.080745, 54.251511], [-124.083715, 54.251678], [-124.086318, 54.252573], [-124.088137, 54.253639], [-124.089131, 54.254147], [-124.098668, 54.256843], [-124.101903, 54.258005], [-124.105164, 54.26013], [-124.106071, 54.260566], [-124.116296, 54.262065], [-124.117173, 54.262298], [-124.118015, 54.263293], [-124.118065, 54.264146], [-124.118363, 54.26515], [-124.119197, 54.265794], [-124.120221, 54.266455], [-124.125452, 54.268382], [-124.129752, 54.269421], [-124.134051, 54.270307], [-124.138903, 54.271066], [-124.142242, 54.272471], [-124.144499, 54.273007], [-124.146678, 54.273618], [-124.147825, 54.275509], [-124.149014, 54.276877], [-124.150758, 54.277422], [-124.153624, 54.278208], [-124.155278, 54.27926], [-124.156572, 54.279818], [-124.159367, 54.280838], [-124.160779, 54.281591], [-124.161485, 54.282481], [-124.162742, 54.28351], [-124.164136, 54.284485], [-124.165073, 54.285378], [-124.167322, 54.288383], [-124.1711, 54.290041], [-124.175065, 54.290806], [-124.178835, 54.291812], [-124.179971, 54.292341], [-124.181554, 54.292698], [-124.19873, 54.293635], [-124.206181, 54.293084], [-124.216628, 54.293057], [-124.219998, 54.293584], [-124.230276, 54.292985], [-124.25579, 54.292917], [-124.272615, 54.292721], [-124.274005, 54.288284], [-124.285426, 54.28855], [-124.294875, 54.285021], [-124.301887, 54.28152], [-124.31047, 54.280097], [-124.308994, 54.274391], [-124.308613, 54.269073], [-124.319613, 54.269914], [-124.328047, 54.271725], [-124.3381, 54.271817], [-124.343333, 54.268105], [-124.344826, 54.267367], [-124.346201, 54.266595], [-124.347492, 54.265775], [-124.348703, 54.264903], [-124.350978, 54.264701]], [[-124.032723, 54.056337], [-123.997149, 54.0563], [-123.996947, 54.033326], [-123.971851, 54.033444], [-123.959246, 54.033081], [-123.947842, 54.033022], [-123.935128, 54.032859], [-123.934544, 54.019502], [-123.935011, 54.010045], [-123.925398, 54.012654], [-123.923356, 54.012836], [-123.923323, 54.011813], [-123.92357, 54.007431], [-123.9239, 53.998494], [-123.934299, 53.998605], [-123.933456, 53.983428], [-123.935999, 53.98351], [-123.944635, 53.983516], [-123.972287, 53.983828], [-123.97229, 53.983274], [-123.990532, 53.985694], [-123.998654, 53.98515], [-123.998531, 53.986806], [-123.998385, 53.992704], [-124.012381, 53.991703], [-124.029207, 53.991354], [-124.04578, 53.991305], [-124.04614, 53.998634], [-124.04634, 54.00605], [-124.069887, 54.005516], [-124.093552, 54.005462], [-124.095023, 54.012856], [-124.095178, 54.017847], [-124.095092, 54.018884], [-124.094849, 54.019415], [-124.094582, 54.019629], [-124.094143, 54.019836], [-124.09149, 54.027342], [-124.09454, 54.034728], [-124.094561, 54.035491], [-124.087806, 54.033438], [-124.0851, 54.032819], [-124.085122, 54.034016], [-124.070714, 54.033644], [-124.032324, 54.034055], [-124.032289, 54.035993], [-124.032723, 54.056337]], [[-124.069993, 53.928163], [-124.069855, 53.926738], [-124.069218, 53.925802], [-124.069151, 53.924899], [-124.069864, 53.924193], [-124.069923, 53.923913], [-124.069868, 53.918192], [-124.092751, 53.918543], [-124.093351, 53.918637], [-124.092499, 53.918654], [-124.092242, 53.918737], [-124.091747, 53.919066], [-124.089449, 53.91905], [-124.088948, 53.919154], [-124.088784, 53.919254], [-124.088577, 53.919543], [-124.088549, 53.920191], [-124.088986, 53.921796], [-124.089445, 53.922403], [-124.090153, 53.922702], [-124.0909, 53.922776], [-124.091652, 53.923021], [-124.092612, 53.923615], [-124.093088, 53.923781], [-124.093446, 53.923994], [-124.093782, 53.924062], [-124.094103, 53.924059], [-124.094968, 53.923962], [-124.096551, 53.923938], [-124.097675, 53.923847], [-124.10025, 53.92385], [-124.101655, 53.923497], [-124.10268, 53.923074], [-124.103194, 53.922951], [-124.104349, 53.922816], [-124.105839, 53.922793], [-124.108082, 53.92234], [-124.109696, 53.922326], [-124.111404, 53.922427], [-124.112648, 53.92282], [-124.113525, 53.92317], [-124.115087, 53.92348], [-124.116295, 53.923649], [-124.117279, 53.924026], [-124.119687, 53.924048], [-124.120036, 53.924091], [-124.121559, 53.924606], [-124.122781, 53.92472], [-124.123349, 53.924966], [-124.123619, 53.925369], [-124.123806, 53.925493], [-124.124667, 53.925791], [-124.125495, 53.925989], [-124.125562, 53.926214], [-124.125458, 53.926305], [-124.123322, 53.927314], [-124.122603, 53.927788], [-124.122457, 53.928553], [-124.122753, 53.928846], [-124.123278, 53.929075], [-124.123522, 53.929099], [-124.126159, 53.929156], [-124.127038, 53.92905], [-124.128504, 53.928585], [-124.13005, 53.927789], [-124.132359, 53.926923], [-124.133495, 53.926741], [-124.135616, 53.92629], [-124.137021, 53.925889], [-124.138994, 53.925045], [-124.140779, 53.924065], [-124.141539, 53.923537], [-124.142748, 53.922363], [-124.14291, 53.932262], [-124.182178, 53.932746], [-124.181879, 53.949205], [-124.180931, 53.949259], [-124.180646, 53.949333], [-124.180209, 53.949554], [-124.18001, 53.950023], [-124.179606, 53.950315], [-124.178925, 53.950483], [-124.178504, 53.950668], [-124.17761, 53.950837], [-124.177111, 53.951022], [-124.176395, 53.951532], [-124.176033, 53.951707], [-124.173247, 53.951779], [-124.171947, 53.952152], [-124.170704, 53.952415], [-124.168876, 53.952451], [-124.167448, 53.952555], [-124.165779, 53.952823], [-124.164466, 53.953302], [-124.163922, 53.953416], [-124.163086, 53.953505], [-124.161498, 53.953458], [-124.160907, 53.953535], [-124.15979, 53.953905], [-124.157594, 53.954412], [-124.156705, 53.954798], [-124.155903, 53.955003], [-124.155427, 53.954909], [-124.155177, 53.954687], [-124.154231, 53.954633], [-124.153261, 53.954787], [-124.152066, 53.95513], [-124.151261, 53.955219], [-124.149614, 53.955181], [-124.147627, 53.95556], [-124.147048, 53.955574], [-124.146757, 53.95554], [-124.145698, 53.9552], [-124.144745, 53.954984], [-124.143263, 53.954747], [-124.141328, 53.954225], [-124.140273, 53.954173], [-124.138983, 53.954329], [-124.138484, 53.954513], [-124.13826, 53.954677], [-124.137822, 53.955338], [-124.137815, 53.956219], [-124.137851, 53.956416], [-124.138155, 53.956917], [-124.138109, 53.957474], [-124.137812, 53.9578], [-124.137452, 53.958038], [-124.136807, 53.958942], [-124.136388, 53.959243], [-124.135226, 53.95965], [-124.134076, 53.959948], [-124.132129, 53.960696], [-124.130541, 53.961087], [-124.127552, 53.961618], [-124.125794, 53.962022], [-124.124025, 53.962577], [-124.12279, 53.963084], [-124.122293, 53.963349], [-124.121163, 53.963741], [-124.111337, 53.963321], [-124.111199, 53.963198], [-124.110817, 53.96309], [-124.11051, 53.96307], [-124.109047, 53.963373], [-124.108758, 53.963342], [-124.108503, 53.963236], [-124.108176, 53.962853], [-124.107428, 53.962442], [-124.106744, 53.962195], [-124.10076, 53.962278], [-124.093004, 53.962607], [-124.070305, 53.961906], [-124.069993, 53.928163]], [[-124.192932, 53.930459], [-124.172805, 53.930159], [-124.172884, 53.918594], [-124.172999, 53.916179], [-124.174206, 53.916481], [-124.174863, 53.916582], [-124.175565, 53.916621], [-124.177879, 53.916579], [-124.179853, 53.91639], [-124.182197, 53.915854], [-124.182714, 53.915849], [-124.183297, 53.915968], [-124.184949, 53.916789], [-124.185257, 53.916884], [-124.187429, 53.917204], [-124.188405, 53.917843], [-124.189822, 53.918404], [-124.191004, 53.918716], [-124.191719, 53.918763], [-124.192601, 53.918736], [-124.19307, 53.918604], [-124.19471, 53.917887], [-124.19583, 53.917616], [-124.197036, 53.917182], [-124.197587, 53.916799], [-124.198319, 53.916513], [-124.197832, 53.93041], [-124.192932, 53.930459]]]]}, "properties": {"name": "Bulkley-Nechako F", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Bulkley-Nechako F", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951019", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.776537, 54.240501], [-125.77626, 54.240185], [-125.777429, 54.239832], [-125.777532, 54.239725], [-125.777242, 54.23921], [-125.777397, 54.23914], [-125.776908, 54.238654], [-125.776053, 54.238007], [-125.772729, 54.235706], [-125.772771, 54.234633], [-125.772318, 54.234784], [-125.771583, 54.23422], [-125.772323, 54.233884], [-125.769181, 54.231639], [-125.762678, 54.226608], [-125.762983, 54.226473], [-125.762991, 54.224298], [-125.762945, 54.224168], [-125.762815, 54.224123], [-125.763175, 54.223739], [-125.764691, 54.224519], [-125.764498, 54.224765], [-125.764479, 54.225376], [-125.764916, 54.225933], [-125.765707, 54.226527], [-125.766184, 54.226768], [-125.767397, 54.227711], [-125.76824, 54.228141], [-125.76747, 54.228771], [-125.768466, 54.229207], [-125.769099, 54.228721], [-125.769418, 54.229021], [-125.770287, 54.229388], [-125.771397, 54.229696], [-125.77257, 54.230253], [-125.772933, 54.23053], [-125.772934, 54.229312], [-125.772328, 54.22909], [-125.771556, 54.228631], [-125.769853, 54.227407], [-125.76826, 54.226121], [-125.767374, 54.225075], [-125.76859, 54.223521], [-125.771234, 54.221061], [-125.762428, 54.22132], [-125.753755, 54.218173], [-125.750543, 54.216059], [-125.746873, 54.212688], [-125.742175, 54.210824], [-125.739687, 54.210325], [-125.737696, 54.210328], [-125.735746, 54.210014], [-125.734658, 54.210663], [-125.733327, 54.211743], [-125.727546, 54.211317], [-125.729758, 54.225678], [-125.732666, 54.226917], [-125.732939, 54.22762], [-125.733732, 54.228077], [-125.734515, 54.228342], [-125.734438, 54.228832], [-125.735727, 54.228727], [-125.736623, 54.232636], [-125.739683, 54.232774], [-125.739035, 54.228922], [-125.74502, 54.229175], [-125.744712, 54.232216], [-125.744982, 54.235982], [-125.744831, 54.237433], [-125.753996, 54.237193], [-125.753972, 54.236652], [-125.757092, 54.236641], [-125.757095, 54.23745], [-125.760015, 54.237447], [-125.760008, 54.236274], [-125.762435, 54.236164], [-125.764945, 54.2362], [-125.765621, 54.2363], [-125.76644, 54.236691], [-125.767092, 54.236058], [-125.769312, 54.237046], [-125.77139, 54.235937], [-125.77237, 54.236651], [-125.772047, 54.241229], [-125.776537, 54.240501]], [[-125.766836, 54.234329], [-125.765853, 54.235494], [-125.765542, 54.235372], [-125.765841, 54.234858], [-125.765579, 54.234244], [-125.765734, 54.233997], [-125.766836, 54.234329]]], [[[-125.486239, 54.183957], [-125.48653, 54.185862], [-125.490537, 54.185833], [-125.492327, 54.185545], [-125.498988, 54.183625], [-125.501556, 54.18359], [-125.498974, 54.180441], [-125.498713, 54.179646], [-125.492438, 54.177149], [-125.489914, 54.176855], [-125.487875, 54.177358], [-125.487581, 54.177311], [-125.486639, 54.176943], [-125.485512, 54.17605], [-125.484867, 54.175757], [-125.484605, 54.175718], [-125.484393, 54.175775], [-125.484309, 54.175912], [-125.484314, 54.176272], [-125.484435, 54.176503], [-125.484801, 54.17673], [-125.484856, 54.176872], [-125.484726, 54.176983], [-125.484467, 54.177024], [-125.482938, 54.176822], [-125.482689, 54.176774], [-125.482327, 54.176601], [-125.481789, 54.176594], [-125.48169, 54.176695], [-125.481639, 54.176885], [-125.481541, 54.176905], [-125.486239, 54.183957]]], [[[-125.759135, 54.240586], [-125.759799, 54.240863], [-125.760063, 54.240863], [-125.760035, 54.239211], [-125.757315, 54.239215], [-125.759135, 54.240586]]], [[[-125.745883, 54.241696], [-125.745496, 54.241994], [-125.746042, 54.244825], [-125.759892, 54.244651], [-125.760008, 54.242309], [-125.753994, 54.242317], [-125.754003, 54.241093], [-125.745367, 54.241102], [-125.745883, 54.241696]]], [[[-125.807917, 54.293298], [-125.806635, 54.293918], [-125.805896, 54.294523], [-125.808189, 54.295795], [-125.817067, 54.294734], [-125.816285, 54.28926], [-125.827474, 54.288234], [-125.829576, 54.288098], [-125.829048, 54.287524], [-125.828384, 54.287727], [-125.827529, 54.287799], [-125.819017, 54.287836], [-125.818244, 54.288067], [-125.817107, 54.288675], [-125.815581, 54.289258], [-125.807917, 54.293298]]]]}, "properties": {"name": "Burns Lake", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Burns Lake", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951022", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.242618, 54.748848], [-126.249892, 54.749015], [-126.249954, 54.73858], [-126.24969, 54.708789], [-126.249665, 54.694608], [-126.247224, 54.638145], [-126.243971, 54.535256], [-126.24555, 54.48684], [-126.245244, 54.475868], [-126.25004, 54.475998], [-126.252055, 54.413671], [-126.25214, 54.41367], [-126.251905, 54.409874], [-126.263315, 54.409736], [-126.279438, 54.40976], [-126.279903, 54.405786], [-126.295881, 54.405816], [-126.456188, 54.404917], [-126.472806, 54.404926], [-126.462475, 54.401551], [-126.454233, 54.394911], [-126.454852, 54.391108], [-126.462286, 54.389136], [-126.474109, 54.387807], [-126.477934, 54.383203], [-126.477869, 54.377935], [-126.485139, 54.374147], [-126.494916, 54.3623], [-126.494397, 54.359071], [-126.499248, 54.354256], [-126.502127, 54.35228], [-126.51289, 54.348722], [-126.50984, 54.346184], [-126.499244, 54.345122], [-126.488607, 54.341634], [-126.485065, 54.336003], [-126.477359, 54.33218], [-126.459652, 54.335092], [-126.443559, 54.336505], [-126.438175, 54.339924], [-126.434655, 54.344869], [-126.426007, 54.346247], [-126.419451, 54.343527], [-126.413157, 54.342728], [-126.407898, 54.337369], [-126.402528, 54.335237], [-126.392611, 54.335382], [-126.371539, 54.326121], [-126.360744, 54.322318], [-126.351465, 54.321147], [-126.342999, 54.318843], [-126.340663, 54.31412], [-126.32437, 54.301201], [-126.31424, 54.295033], [-126.290063, 54.275878], [-126.284599, 54.272449], [-126.284024, 54.265737], [-126.259835, 54.248719], [-126.259449, 54.245266], [-126.262017, 54.239178], [-126.294594, 54.239109], [-126.30039, 54.236087], [-126.319129, 54.236537], [-126.337367, 54.238168], [-126.348781, 54.234813], [-126.350976, 54.233336], [-126.351296, 54.232853], [-126.3516, 54.232975], [-126.358028, 54.228615], [-126.360424, 54.226106], [-126.360726, 54.221656], [-126.363724, 54.217599], [-126.346019, 54.21115], [-126.341705, 54.211007], [-126.332856, 54.207781], [-126.322661, 54.206038], [-126.315559, 54.203866], [-126.305794, 54.201969], [-126.301798, 54.195692], [-126.29857, 54.193823], [-126.295183, 54.192345], [-126.287395, 54.195119], [-126.279209, 54.194668], [-126.276034, 54.198004], [-126.266107, 54.194563], [-126.257829, 54.192264], [-126.245318, 54.190711], [-126.239056, 54.187039], [-126.233743, 54.183195], [-126.231345, 54.185266], [-126.218645, 54.197276], [-126.207209, 54.194916], [-126.200647, 54.200189], [-126.197736, 54.200785], [-126.186841, 54.204604], [-126.179759, 54.213451], [-126.160558, 54.207435], [-126.15775, 54.20077], [-126.153797, 54.193658], [-126.154516, 54.189156], [-126.153309, 54.184905], [-126.149351, 54.18077], [-126.14433, 54.177008], [-126.138396, 54.172291], [-126.132847, 54.168714], [-126.128818, 54.163755], [-126.127345, 54.153227], [-126.13047, 54.147456], [-126.129484, 54.145678], [-126.124936, 54.143875], [-126.110021, 54.139336], [-126.097295, 54.134109], [-126.096043, 54.133656], [-126.0793, 54.126876], [-126.0605, 54.127977], [-126.052317, 54.129349], [-126.040635, 54.129479], [-126.034376, 54.128435], [-126.026018, 54.124005], [-126.019329, 54.123962], [-126.008296, 54.122583], [-126.002606, 54.121686], [-126.002051, 54.128333], [-126.001739, 54.128659], [-126.001756, 54.129484], [-125.997288, 54.129735], [-125.97806, 54.140004], [-125.974895, 54.151233], [-125.971813, 54.156889], [-125.9681, 54.160626], [-125.96206, 54.16383], [-125.95688, 54.16563], [-125.940525, 54.162521], [-125.926808, 54.161107], [-125.920301, 54.163377], [-125.916613, 54.164777], [-125.908472, 54.168815], [-125.899438, 54.171971], [-125.8834, 54.175064], [-125.867586, 54.178524], [-125.855573, 54.181232], [-125.847625, 54.181923], [-125.836462, 54.181947], [-125.826734, 54.180874], [-125.81552, 54.17883], [-125.806479, 54.176922], [-125.795353, 54.173955], [-125.786903, 54.172131], [-125.749244, 54.171697], [-125.748157, 54.163117], [-125.739273, 54.162899], [-125.738925, 54.157049], [-125.71559, 54.157405], [-125.706725, 54.157313], [-125.706754, 54.153461], [-125.704475, 54.153492], [-125.704405, 54.153406], [-125.683335, 54.152927], [-125.682564, 54.141792], [-125.682476, 54.133123], [-125.674313, 54.13488], [-125.666763, 54.135519], [-125.642554, 54.13008], [-125.631641, 54.131017], [-125.622402, 54.125774], [-125.618836, 54.121465], [-125.613004, 54.12587], [-125.604388, 54.138133], [-125.597086, 54.142799], [-125.589873, 54.144209], [-125.584884, 54.143297], [-125.578614, 54.146302], [-125.574529, 54.146089], [-125.570944, 54.141535], [-125.560154, 54.140632], [-125.548434, 54.137135], [-125.529908, 54.1382], [-125.525184, 54.135642], [-125.513835, 54.134915], [-125.499809, 54.131671], [-125.495497, 54.130331], [-125.48937, 54.124554], [-125.477874, 54.122021], [-125.470767, 54.124095], [-125.462686, 54.124206], [-125.457487, 54.122941], [-125.453156, 54.123416], [-125.447618, 54.121376], [-125.439578, 54.121854], [-125.427782, 54.120101], [-125.413824, 54.11946], [-125.406583, 54.120628], [-125.406768, 54.117995], [-125.414287, 54.115126], [-125.416118, 54.111538], [-125.413788, 54.108998], [-125.4085, 54.106798], [-125.402121, 54.107364], [-125.395792, 54.113443], [-125.390234, 54.1145], [-125.384363, 54.116794], [-125.378638, 54.117904], [-125.370795, 54.118439], [-125.364949, 54.120093], [-125.364033, 54.113206], [-125.363776, 54.111897], [-125.349441, 54.111976], [-125.343069, 54.111631], [-125.31566, 54.112325], [-125.290624, 54.112119], [-125.290588, 54.108453], [-125.240542, 54.107776], [-125.24048, 54.115256], [-125.240711, 54.147312], [-125.240703, 54.174411], [-125.241213, 54.213585], [-125.241282, 54.242331], [-125.2412, 54.248859], [-125.197755, 54.248705], [-125.159616, 54.248876], [-125.102611, 54.249481], [-124.999898, 54.249946], [-125.000282, 54.286985], [-124.998713, 54.420218], [-125.002598, 54.420981], [-125.00219, 54.427682], [-125.013451, 54.427776], [-125.014485, 54.435396], [-125.051487, 54.435019], [-125.050452, 54.442794], [-125.0622, 54.44272], [-125.06249, 54.46513], [-125.111123, 54.463843], [-125.110297, 54.479311], [-125.136387, 54.479902], [-125.135363, 54.485849], [-125.17704, 54.487164], [-125.177627, 54.488348], [-125.178474, 54.488503], [-125.181915, 54.489567], [-125.189267, 54.496948], [-125.232963, 54.488746], [-125.259451, 54.482575], [-125.314683, 54.47235], [-125.315574, 54.474988], [-125.343122, 54.469816], [-125.351127, 54.468539], [-125.449059, 54.459214], [-125.463911, 54.458375], [-125.462188, 54.452979], [-125.484466, 54.451082], [-125.521102, 54.462236], [-125.6035, 54.491339], [-125.645199, 54.509426], [-125.677668, 54.525682], [-125.707343, 54.539168], [-125.729176, 54.552216], [-125.754978, 54.579446], [-125.779532, 54.597161], [-125.801745, 54.612572], [-125.803041, 54.613385], [-125.806486, 54.611545], [-125.846309, 54.636599], [-125.842981, 54.63834], [-125.84743, 54.640418], [-125.856509, 54.644492], [-125.876905, 54.650744], [-125.874135, 54.653163], [-125.880568, 54.655345], [-125.891155, 54.661909], [-125.904534, 54.672244], [-125.933752, 54.702334], [-125.948309, 54.718636], [-125.956229, 54.751299], [-126.001639, 54.754346], [-126.043175, 54.757209], [-126.052196, 54.754501], [-126.081704, 54.750112], [-126.105429, 54.750096], [-126.10716, 54.750156], [-126.107699, 54.749387], [-126.107238, 54.748719], [-126.190864, 54.749307], [-126.230601, 54.748742], [-126.242618, 54.748848]], [[-126.141143, 54.416482], [-126.141533, 54.419936], [-126.141299, 54.423161], [-126.141385, 54.424908], [-126.139826, 54.424415], [-126.139218, 54.424283], [-126.138305, 54.423893], [-126.137381, 54.423646], [-126.135741, 54.423095], [-126.135175, 54.422578], [-126.134863, 54.422202], [-126.134812, 54.42203], [-126.134592, 54.421872], [-126.134199, 54.421755], [-126.133372, 54.421672], [-126.132703, 54.42153], [-126.132347, 54.42154], [-126.132032, 54.421668], [-126.131834, 54.421843], [-126.13183, 54.422121], [-126.131472, 54.422617], [-126.131081, 54.422921], [-126.130712, 54.423102], [-126.129832, 54.42335], [-126.127984, 54.423737], [-126.127494, 54.416348], [-126.141143, 54.416482]], [[-125.649103, 54.490301], [-125.648981, 54.492235], [-125.648287, 54.491723], [-125.647757, 54.491482], [-125.646745, 54.491263], [-125.645866, 54.49095], [-125.646007, 54.490427], [-125.649103, 54.490301]], [[-125.903106, 54.33429], [-125.888701, 54.333619], [-125.888646, 54.332316], [-125.886649, 54.332297], [-125.886782, 54.332656], [-125.885452, 54.332711], [-125.885542, 54.334052], [-125.878532, 54.334275], [-125.877393, 54.327113], [-125.883514, 54.32674], [-125.886267, 54.330512], [-125.890075, 54.330342], [-125.890144, 54.33029], [-125.889722, 54.328523], [-125.890074, 54.328703], [-125.891197, 54.329584], [-125.891692, 54.329852], [-125.892309, 54.33008], [-125.892684, 54.330143], [-125.893207, 54.330399], [-125.894371, 54.332052], [-125.894634, 54.33228], [-125.895508, 54.332691], [-125.896195, 54.332836], [-125.896781, 54.332876], [-125.89704, 54.332834], [-125.897641, 54.332622], [-125.898385, 54.332487], [-125.89884, 54.332179], [-125.898992, 54.331914], [-125.8989, 54.330856], [-125.899831, 54.331148], [-125.899947, 54.33084], [-125.901097, 54.330795], [-125.901614, 54.330709], [-125.902714, 54.330396], [-125.90346, 54.330054], [-125.903106, 54.33429]], [[-125.817067, 54.294734], [-125.808189, 54.295795], [-125.805896, 54.294523], [-125.806635, 54.293918], [-125.807917, 54.293298], [-125.815581, 54.289258], [-125.817107, 54.288675], [-125.818573, 54.287934], [-125.819414, 54.287804], [-125.827529, 54.287799], [-125.828384, 54.287727], [-125.829048, 54.287524], [-125.829576, 54.288098], [-125.827474, 54.288234], [-125.816285, 54.28926], [-125.817067, 54.294734]], [[-125.776537, 54.240501], [-125.772047, 54.241229], [-125.770613, 54.241346], [-125.763895, 54.241703], [-125.763191, 54.241685], [-125.76177, 54.241757], [-125.760038, 54.241702], [-125.759892, 54.244651], [-125.746042, 54.244825], [-125.745496, 54.241994], [-125.745883, 54.241696], [-125.745367, 54.241102], [-125.74501, 54.239396], [-125.744668, 54.239002], [-125.744982, 54.235982], [-125.744712, 54.232216], [-125.74502, 54.229175], [-125.739035, 54.228922], [-125.739683, 54.232774], [-125.736623, 54.232636], [-125.735727, 54.228727], [-125.734438, 54.228832], [-125.734515, 54.228342], [-125.733732, 54.228077], [-125.732939, 54.22762], [-125.732666, 54.226917], [-125.729758, 54.225678], [-125.727546, 54.211317], [-125.733327, 54.211743], [-125.734658, 54.210663], [-125.735746, 54.210014], [-125.737696, 54.210328], [-125.739687, 54.210325], [-125.742175, 54.210824], [-125.746873, 54.212688], [-125.750543, 54.216059], [-125.753755, 54.218173], [-125.762428, 54.22132], [-125.771234, 54.221061], [-125.76859, 54.223521], [-125.767374, 54.225075], [-125.76826, 54.226121], [-125.769853, 54.227407], [-125.771556, 54.228631], [-125.772328, 54.22909], [-125.772934, 54.229312], [-125.772729, 54.235706], [-125.776053, 54.238007], [-125.776908, 54.238654], [-125.777397, 54.23914], [-125.777242, 54.23921], [-125.777532, 54.239725], [-125.777429, 54.239832], [-125.77626, 54.240185], [-125.776537, 54.240501]], [[-125.786033, 54.227587], [-125.786566, 54.227295], [-125.786908, 54.226927], [-125.787115, 54.226546], [-125.787048, 54.226268], [-125.786388, 54.225798], [-125.786335, 54.2257], [-125.786503, 54.225453], [-125.785283, 54.224879], [-125.784263, 54.224543], [-125.782941, 54.224295], [-125.782261, 54.223996], [-125.781971, 54.22377], [-125.781524, 54.223022], [-125.788477, 54.222655], [-125.788476, 54.229881], [-125.783825, 54.22988], [-125.783822, 54.229166], [-125.78398, 54.228991], [-125.78452, 54.228799], [-125.784576, 54.228726], [-125.784465, 54.228216], [-125.786033, 54.227587]], [[-125.498713, 54.179646], [-125.498974, 54.180441], [-125.501556, 54.18359], [-125.498988, 54.183625], [-125.492327, 54.185545], [-125.490537, 54.185833], [-125.48653, 54.185862], [-125.486239, 54.183957], [-125.481541, 54.176905], [-125.481639, 54.176885], [-125.481789, 54.176594], [-125.482327, 54.176601], [-125.482689, 54.176774], [-125.483491, 54.176865], [-125.483927, 54.176972], [-125.484467, 54.177024], [-125.484726, 54.176983], [-125.484856, 54.176872], [-125.484801, 54.17673], [-125.484435, 54.176503], [-125.484305, 54.176093], [-125.484393, 54.175775], [-125.484681, 54.175716], [-125.485512, 54.17605], [-125.486639, 54.176943], [-125.487581, 54.177311], [-125.487875, 54.177358], [-125.489914, 54.176855], [-125.492438, 54.177149], [-125.498713, 54.179646]]]]}, "properties": {"name": "Bulkley-Nechako B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Bulkley-Nechako B", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951028", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.062688, 54.073007], [-127.072402, 54.076752], [-127.079534, 54.078039], [-127.083091, 54.070425], [-127.082355, 54.059512], [-127.098351, 54.059024], [-127.105653, 54.057333], [-127.10946, 54.055458], [-127.110822, 54.052044], [-127.109909, 54.044111], [-127.10715, 54.034421], [-127.09712, 54.023236], [-127.100524, 54.012838], [-127.104483, 54.009054], [-127.106025, 54.003561], [-127.110275, 54.000129], [-127.113479, 53.99474], [-127.12084, 53.990422], [-127.131133, 53.98675], [-127.137823, 53.993189], [-127.148253, 53.997783], [-127.151202, 54.000735], [-127.154768, 54.002867], [-127.153146, 54.005541], [-127.153925, 54.010201], [-127.158118, 54.011005], [-127.15657, 54.016559], [-127.159444, 54.018624], [-127.17641, 54.011819], [-127.185267, 54.011333], [-127.192979, 54.012817], [-127.19398, 54.010951], [-127.193375, 54.005546], [-127.201935, 54.003409], [-127.208188, 54.000492], [-127.210722, 53.997064], [-127.214556, 53.997282], [-127.223408, 53.995222], [-127.230142, 53.990752], [-127.238692, 53.989613], [-127.240889, 53.983054], [-127.245253, 53.978952], [-127.251739, 53.978069], [-127.254688, 53.979859], [-127.26561, 53.975345], [-127.264515, 53.967679], [-127.258853, 53.966128], [-127.261412, 53.958309], [-127.273, 53.958047], [-127.273518, 53.9491], [-127.277381, 53.943927], [-127.282479, 53.931294], [-127.280219, 53.923931], [-127.268487, 53.921236], [-127.26593, 53.915797], [-127.272259, 53.912967], [-127.280446, 53.905075], [-127.281962, 53.891258], [-127.272014, 53.884223], [-127.265663, 53.881806], [-127.270204, 53.876882], [-127.270182, 53.870637], [-127.267351, 53.861924], [-127.273599, 53.853807], [-127.27876, 53.850279], [-127.28638, 53.842466], [-127.293595, 53.833623], [-127.298929, 53.820561], [-127.289722, 53.805909], [-127.282895, 53.807019], [-127.276343, 53.804777], [-127.276723, 53.796575], [-127.281075, 53.790526], [-127.285276, 53.784462], [-127.289949, 53.773007], [-127.288501, 53.764603], [-127.295635, 53.755541], [-127.315149, 53.759659], [-127.329749, 53.754892], [-127.332646, 53.747622], [-127.328873, 53.739823], [-127.335905, 53.735886], [-127.358266, 53.740703], [-127.375351, 53.747709], [-127.377938, 53.753163], [-127.388507, 53.75198], [-127.412715, 53.764518], [-127.417729, 53.771463], [-127.427854, 53.770252], [-127.438091, 53.75835], [-127.451088, 53.759459], [-127.475075, 53.768778], [-127.481772, 53.767218], [-127.490953, 53.7633], [-127.500162, 53.758822], [-127.511244, 53.759335], [-127.537239, 53.735157], [-127.550403, 53.734712], [-127.571953, 53.737789], [-127.578163, 53.7302], [-127.586322, 53.725912], [-127.631252, 53.716118], [-127.631293, 53.716054], [-127.643705, 53.71455], [-127.649655, 53.710605], [-127.649483, 53.695726], [-127.641723, 53.690405], [-127.638217, 53.685112], [-127.650771, 53.680034], [-127.661573, 53.679666], [-127.671833, 53.677994], [-127.688182, 53.680457], [-127.694148, 53.682887], [-127.705341, 53.681493], [-127.716918, 53.67252], [-127.725645, 53.671787], [-127.734849, 53.66575], [-127.746347, 53.665238], [-127.785893, 53.661855], [-127.7842, 53.647909], [-127.788068, 53.644107], [-127.785385, 53.639111], [-127.780838, 53.636907], [-127.772758, 53.635512], [-127.762975, 53.632929], [-127.761602, 53.628748], [-127.764709, 53.623405], [-127.760776, 53.618882], [-127.756381, 53.615576], [-127.752895, 53.612712], [-127.749278, 53.60807], [-127.758863, 53.600556], [-127.761671, 53.597413], [-127.76395, 53.59212], [-127.761407, 53.588902], [-127.753022, 53.585144], [-127.741471, 53.580882], [-127.755742, 53.574478], [-127.767827, 53.56602], [-127.769409, 53.557597], [-127.759117, 53.552864], [-127.742584, 53.552576], [-127.7326, 53.555562], [-127.720318, 53.551839], [-127.710198, 53.548084], [-127.68963, 53.548527], [-127.677467, 53.549455], [-127.671207, 53.546854], [-127.669917, 53.541081], [-127.666845, 53.536109], [-127.659764, 53.533557], [-127.653406, 53.533341], [-127.649287, 53.533587], [-127.641094, 53.538689], [-127.638212, 53.54467], [-127.632767, 53.552375], [-127.62551, 53.559196], [-127.614423, 53.568205], [-127.613424, 53.561471], [-127.610746, 53.555635], [-127.603475, 53.548361], [-127.589837, 53.545024], [-127.577936, 53.54372], [-127.571228, 53.541522], [-127.559588, 53.531758], [-127.554307, 53.525106], [-127.557189, 53.517481], [-127.55778, 53.513072], [-127.566914, 53.508059], [-127.568573, 53.500108], [-127.565372, 53.492938], [-127.544881, 53.476432], [-127.533282, 53.468753], [-127.518702, 53.461144], [-127.506705, 53.458053], [-127.499241, 53.459268], [-127.498436, 53.475147], [-127.487983, 53.482671], [-127.479177, 53.488021], [-127.462074, 53.490469], [-127.443866, 53.492282], [-127.434975, 53.490894], [-127.428001, 53.485923], [-127.424003, 53.478796], [-127.415733, 53.473004], [-127.417405, 53.465455], [-127.419031, 53.461187], [-127.415405, 53.457319], [-127.40935, 53.454878], [-127.410414, 53.447165], [-127.406126, 53.444327], [-127.39878, 53.443149], [-127.394573, 53.440802], [-127.3931, 53.434825], [-127.392959, 53.428871], [-127.392755, 53.426597], [-127.377362, 53.428144], [-127.370491, 53.42783], [-127.372115, 53.421478], [-127.37031, 53.414347], [-127.367597, 53.408858], [-127.364062, 53.403415], [-127.362018, 53.398977], [-127.364415, 53.393794], [-127.364478, 53.38597], [-127.360829, 53.380831], [-127.355888, 53.374876], [-127.355014, 53.372921], [-127.349462, 53.369523], [-127.341676, 53.367066], [-127.333578, 53.361477], [-127.326675, 53.358135], [-127.319777, 53.357382], [-127.318533, 53.354523], [-127.31855, 53.351981], [-127.32102, 53.34354], [-127.319178, 53.337203], [-127.314796, 53.328433], [-127.300898, 53.317621], [-127.287761, 53.314198], [-127.281042, 53.309422], [-127.268223, 53.305879], [-127.258691, 53.302152], [-127.255182, 53.2967], [-127.262756, 53.290235], [-127.266623, 53.284373], [-127.266862, 53.277526], [-127.258516, 53.277009], [-127.253686, 53.275263], [-127.253637, 53.269617], [-127.239798, 53.262578], [-127.224873, 53.250283], [-127.201474, 53.249414], [-127.192795, 53.257858], [-127.194974, 53.264875], [-127.150917, 53.28123], [-127.142043, 53.277562], [-127.140857, 53.267992], [-127.131883, 53.260011], [-127.129631, 53.25432], [-127.127839, 53.251269], [-127.127823, 53.250725], [-127.127349, 53.250334], [-127.127263, 53.250334], [-127.121005, 53.239677], [-127.108171, 53.233561], [-127.099284, 53.233376], [-127.093638, 53.236336], [-127.074487, 53.250805], [-127.069784, 53.284237], [-127.050599, 53.298704], [-127.015532, 53.309033], [-127.001182, 53.296505], [-126.999918, 53.295961], [-126.990102, 53.285629], [-126.982088, 53.27846], [-126.978853, 53.26745], [-126.978893, 53.263086], [-126.986552, 53.2571], [-126.992504, 53.258491], [-127.001661, 53.256086], [-127.006067, 53.251417], [-127.007998, 53.25019], [-127.010524, 53.250196], [-127.017937, 53.240918], [-127.037086, 53.226444], [-127.05072, 53.20662], [-127.049058, 53.202891], [-127.043005, 53.201225], [-127.030387, 53.203728], [-127.027914, 53.196391], [-127.013308, 53.189209], [-127.012203, 53.176162], [-127.003736, 53.158776], [-127.007322, 53.149015], [-127.013744, 53.139238], [-127.014154, 53.130032], [-127.021091, 53.121527], [-127.032809, 53.114183], [-127.011976, 53.091916], [-127.001151, 53.088205], [-127.017278, 53.078714], [-127.012951, 53.075141], [-126.999092, 53.072929], [-126.999165, 53.069512], [-126.985682, 53.072237], [-126.976341, 53.077019], [-126.948108, 53.093539], [-126.940288, 53.091563], [-126.930474, 53.0856], [-126.894649, 53.082903], [-126.882747, 53.083919], [-126.86143, 53.107383], [-126.841162, 53.110395], [-126.832003, 53.106927], [-126.831043, 53.105821], [-126.822766, 53.103152], [-126.82184, 53.095712], [-126.813203, 53.088907], [-126.807025, 53.081298], [-126.800274, 53.074342], [-126.796292, 53.065449], [-126.789489, 53.049684], [-126.791469, 53.044097], [-126.794393, 53.026479], [-126.788733, 53.016816], [-126.790048, 53.010356], [-126.790039, 53.003369], [-126.790878, 53.001092], [-126.7899, 53.000456], [-126.763002, 53.000681], [-126.752624, 52.993263], [-126.733403, 52.99341], [-126.723939, 52.992564], [-126.724655, 52.999652], [-126.705546, 53.000618], [-126.70048, 53.007669], [-126.70034, 53.007699], [-126.690573, 53.014757], [-126.683321, 53.017549], [-126.672469, 53.024924], [-126.663636, 53.027117], [-126.65552, 53.031201], [-126.649738, 53.03234], [-126.64769, 53.029168], [-126.647643, 53.029204], [-126.638004, 53.021084], [-126.637643, 53.020958], [-126.629715, 53.00852], [-126.621907, 53.003314], [-126.616355, 53.000287], [-126.499693, 53.000157], [-126.300554, 53.000115], [-126.249703, 53.000087], [-126.087737, 53.000131], [-126.000386, 53.000164], [-125.750806, 53.000395], [-125.501787, 53.000706], [-125.251087, 53.000661], [-125.189076, 53.000709], [-125.137167, 53.00056], [-125.000335, 53.000282], [-125.00062, 53.19037], [-125.004558, 53.23496], [-124.995451, 53.238034], [-124.996313, 53.241811], [-125.001188, 53.377108], [-125.001588, 53.441285], [-125.001721, 53.446838], [-125.002554, 53.449014], [-125.001827, 53.452183], [-125.001684, 53.452275], [-125.001827, 53.452284], [-124.999564, 53.459857], [-125.0105, 53.46499], [-125.012018, 53.46468], [-125.015281, 53.461584], [-125.018301, 53.455798], [-125.019869, 53.452158], [-125.023737, 53.443947], [-125.045955, 53.440083], [-125.063265, 53.436707], [-125.102131, 53.43143], [-125.120925, 53.430747], [-125.154067, 53.433227], [-125.192963, 53.438816], [-125.217861, 53.443203], [-125.237762, 53.448852], [-125.236685, 53.459578], [-125.236272, 53.477569], [-125.236059, 53.495009], [-125.237195, 53.535331], [-125.237803, 53.575771], [-125.238169, 53.593295], [-125.238475, 53.616249], [-125.238716, 53.656828], [-125.237646, 53.708624], [-125.237522, 53.717967], [-125.237508, 53.731198], [-125.237367, 53.731226], [-125.236995, 53.827265], [-125.241673, 53.858659], [-125.247214, 53.893978], [-125.246776, 53.905052], [-125.243085, 53.93168], [-125.242224, 53.948879], [-125.237367, 53.985929], [-125.235333, 53.998991], [-125.292021, 54.003409], [-125.295918, 54.005721], [-125.308681, 54.015105], [-125.307431, 54.02175], [-125.299463, 54.021411], [-125.299038, 54.023947], [-125.239616, 54.021588], [-125.239987, 54.032218], [-125.240459, 54.051367], [-125.241768, 54.086133], [-125.240363, 54.097474], [-125.240542, 54.107776], [-125.290588, 54.108453], [-125.290624, 54.112119], [-125.31566, 54.112325], [-125.343069, 54.111631], [-125.349441, 54.111976], [-125.363776, 54.111897], [-125.364033, 54.113206], [-125.364949, 54.120093], [-125.370795, 54.118439], [-125.378638, 54.117904], [-125.384363, 54.116794], [-125.390234, 54.1145], [-125.395792, 54.113443], [-125.402121, 54.107364], [-125.4085, 54.106798], [-125.413788, 54.108998], [-125.416118, 54.111538], [-125.414287, 54.115126], [-125.406768, 54.117995], [-125.406583, 54.120628], [-125.413824, 54.11946], [-125.427782, 54.120101], [-125.439578, 54.121854], [-125.447618, 54.121376], [-125.453156, 54.123416], [-125.457487, 54.122941], [-125.462686, 54.124206], [-125.470767, 54.124095], [-125.477874, 54.122021], [-125.48937, 54.124554], [-125.495497, 54.130331], [-125.499809, 54.131671], [-125.513835, 54.134915], [-125.525184, 54.135642], [-125.529908, 54.1382], [-125.548434, 54.137135], [-125.560154, 54.140632], [-125.570944, 54.141535], [-125.574529, 54.146089], [-125.578614, 54.146302], [-125.584884, 54.143297], [-125.589873, 54.144209], [-125.597086, 54.142799], [-125.604388, 54.138133], [-125.613004, 54.12587], [-125.618836, 54.121465], [-125.622402, 54.125774], [-125.631641, 54.131017], [-125.642554, 54.13008], [-125.666763, 54.135519], [-125.674313, 54.13488], [-125.682476, 54.133123], [-125.682564, 54.141792], [-125.683335, 54.152927], [-125.704405, 54.153406], [-125.704475, 54.153492], [-125.706754, 54.153461], [-125.706725, 54.157313], [-125.71559, 54.157405], [-125.738925, 54.157049], [-125.739273, 54.162899], [-125.748157, 54.163117], [-125.749244, 54.171697], [-125.786903, 54.172131], [-125.795353, 54.173955], [-125.806479, 54.176922], [-125.81552, 54.17883], [-125.826734, 54.180874], [-125.836462, 54.181947], [-125.847625, 54.181923], [-125.855573, 54.181232], [-125.867586, 54.178524], [-125.8834, 54.175064], [-125.899438, 54.171971], [-125.908472, 54.168815], [-125.916613, 54.164777], [-125.920301, 54.163377], [-125.926808, 54.161107], [-125.940525, 54.162521], [-125.95688, 54.16563], [-125.96206, 54.16383], [-125.9681, 54.160626], [-125.971813, 54.156889], [-125.974895, 54.151233], [-125.97806, 54.140004], [-125.997288, 54.129735], [-126.001756, 54.129484], [-126.001739, 54.128659], [-126.002051, 54.128333], [-126.002606, 54.121686], [-126.008296, 54.122583], [-126.019329, 54.123962], [-126.026018, 54.124005], [-126.034376, 54.128435], [-126.040635, 54.129479], [-126.052317, 54.129349], [-126.0605, 54.127977], [-126.0793, 54.126876], [-126.096043, 54.133656], [-126.097295, 54.134109], [-126.110021, 54.139336], [-126.124936, 54.143875], [-126.129484, 54.145678], [-126.13047, 54.147456], [-126.127345, 54.153227], [-126.128818, 54.163755], [-126.132847, 54.168714], [-126.138396, 54.172291], [-126.14433, 54.177008], [-126.149351, 54.18077], [-126.153309, 54.184905], [-126.154516, 54.189156], [-126.153797, 54.193658], [-126.15775, 54.20077], [-126.160558, 54.207435], [-126.179759, 54.213451], [-126.186841, 54.204604], [-126.197736, 54.200785], [-126.200647, 54.200189], [-126.207209, 54.194916], [-126.218645, 54.197276], [-126.231345, 54.185266], [-126.233743, 54.183195], [-126.233653, 54.18309], [-126.218628, 54.176828], [-126.216391, 54.17505], [-126.214617, 54.1714], [-126.215869, 54.167107], [-126.209826, 54.15855], [-126.211944, 54.153105], [-126.207453, 54.145593], [-126.207178, 54.14545], [-126.192117, 54.142139], [-126.180552, 54.139383], [-126.173792, 54.132814], [-126.169969, 54.128017], [-126.169489, 54.127114], [-126.169865, 54.122424], [-126.172251, 54.120593], [-126.175558, 54.117501], [-126.172088, 54.114899], [-126.189038, 54.106387], [-126.192706, 54.105096], [-126.202149, 54.106017], [-126.209915, 54.10668], [-126.213369, 54.108011], [-126.219587, 54.114315], [-126.22347, 54.114646], [-126.22609, 54.113723], [-126.230599, 54.112558], [-126.231483, 54.109272], [-126.235926, 54.106005], [-126.239707, 54.102121], [-126.248135, 54.104245], [-126.255324, 54.105106], [-126.261036, 54.107338], [-126.269891, 54.106335], [-126.272589, 54.100068], [-126.286019, 54.102971], [-126.296336, 54.102725], [-126.306758, 54.10329], [-126.316016, 54.101289], [-126.321549, 54.106983], [-126.325179, 54.112924], [-126.326282, 54.118484], [-126.326069, 54.12196], [-126.328469, 54.126637], [-126.32894, 54.128595], [-126.32688, 54.133148], [-126.334097, 54.139099], [-126.339601, 54.141829], [-126.355251, 54.14267], [-126.36484, 54.14523], [-126.380349, 54.146144], [-126.391347, 54.150375], [-126.399742, 54.152111], [-126.409307, 54.152158], [-126.418774, 54.153515], [-126.420222, 54.156695], [-126.417892, 54.156314], [-126.41898, 54.159101], [-126.417497, 54.163179], [-126.425114, 54.16588], [-126.434519, 54.16645], [-126.445088, 54.164284], [-126.449633, 54.1644], [-126.451367, 54.165118], [-126.452996, 54.165462], [-126.458518, 54.165418], [-126.469335, 54.165568], [-126.477395, 54.165804], [-126.490215, 54.164422], [-126.5091, 54.166389], [-126.520309, 54.167309], [-126.528729, 54.16849], [-126.53409, 54.171621], [-126.549883, 54.176478], [-126.55778, 54.177848], [-126.562308, 54.178746], [-126.570191, 54.177991], [-126.580617, 54.179712], [-126.588727, 54.182696], [-126.596101, 54.184254], [-126.609943, 54.199916], [-126.620008, 54.197071], [-126.638772, 54.203402], [-126.637216, 54.198454], [-126.637886, 54.198568], [-126.638799, 54.153148], [-126.638526, 54.140756], [-126.635641, 54.057611], [-126.709555, 54.057219], [-126.77045, 54.05677], [-126.780207, 54.051085], [-126.800047, 54.055176], [-126.824025, 54.07238], [-126.830227, 54.073979], [-126.833586, 54.076149], [-126.842221, 54.082204], [-126.865967, 54.095839], [-126.884503, 54.098791], [-126.892666, 54.103569], [-126.922098, 54.108371], [-126.93009, 54.103513], [-126.929612, 54.096866], [-126.937079, 54.094629], [-126.945149, 54.084383], [-126.949576, 54.078381], [-126.944619, 54.072866], [-126.944026, 54.071621], [-126.944924, 54.06531], [-126.949726, 54.057003], [-126.950364, 54.057132], [-126.975825, 54.057045], [-126.980199, 54.063183], [-126.994989, 54.064549], [-127.000694, 54.061106], [-127.009662, 54.064154], [-127.014986, 54.05979], [-127.035098, 54.068236], [-127.047816, 54.069404], [-127.05881, 54.066171], [-127.062688, 54.073007]], [[-125.719579, 53.965015], [-125.718576, 53.963887], [-125.718291, 53.963488], [-125.718241, 53.963184], [-125.718337, 53.963047], [-125.718842, 53.962829], [-125.719074, 53.962652], [-125.719247, 53.962037], [-125.720123, 53.961217], [-125.720298, 53.960377], [-125.720497, 53.960147], [-125.721143, 53.959783], [-125.721077, 53.959002], [-125.720608, 53.958338], [-125.719721, 53.957602], [-125.718963, 53.956739], [-125.718263, 53.956288], [-125.71726, 53.955393], [-125.716546, 53.954907], [-125.723197, 53.954239], [-125.720283, 53.965474], [-125.719579, 53.965015]], [[-125.663641, 53.937111], [-125.663813, 53.931212], [-125.665253, 53.931609], [-125.66729, 53.93177], [-125.668436, 53.932563], [-125.669273, 53.932751], [-125.672524, 53.93311], [-125.672991, 53.933271], [-125.67403, 53.933778], [-125.674825, 53.934049], [-125.675319, 53.934154], [-125.675962, 53.934436], [-125.675882, 53.937234], [-125.663641, 53.937111]], [[-125.779836, 53.975167], [-125.779391, 53.970319], [-125.779448, 53.967799], [-125.792918, 53.967633], [-125.792407, 53.971572], [-125.790728, 53.97143], [-125.789966, 53.970719], [-125.789464, 53.970541], [-125.78884, 53.970547], [-125.78861, 53.97075], [-125.788595, 53.971461], [-125.788804, 53.971833], [-125.790417, 53.972911], [-125.790894, 53.973431], [-125.791256, 53.974527], [-125.791284, 53.974773], [-125.779836, 53.975167]], [[-125.886806, 53.994074], [-125.886864, 54.000375], [-125.871595, 54.000432], [-125.87164, 53.994764], [-125.877603, 53.994342], [-125.886806, 53.994074]], [[-125.692282, 53.984082], [-125.679556, 53.984151], [-125.679592, 53.976675], [-125.692179, 53.976728], [-125.692282, 53.984082]], [[-125.730653, 53.976796], [-125.730591, 53.97281], [-125.730638, 53.972241], [-125.730903, 53.971243], [-125.730703, 53.970861], [-125.730447, 53.970677], [-125.730427, 53.969025], [-125.74316, 53.969359], [-125.743553, 53.976898], [-125.730585, 53.977273], [-125.730653, 53.976796]], [[-126.499308, 53.982224], [-126.499511, 53.982391], [-126.499663, 53.982673], [-126.500103, 53.98296], [-126.500185, 53.984269], [-126.500092, 53.990467], [-126.497264, 53.990526], [-126.491322, 53.99052], [-126.482075, 53.990805], [-126.481659, 53.982224], [-126.482333, 53.982203], [-126.483319, 53.982034], [-126.484567, 53.982087], [-126.486264, 53.982015], [-126.486822, 53.981847], [-126.487402, 53.981851], [-126.488089, 53.982099], [-126.488974, 53.982081], [-126.489921, 53.982308], [-126.491555, 53.982297], [-126.492676, 53.98241], [-126.494769, 53.982391], [-126.495171, 53.982516], [-126.496134, 53.9825], [-126.497239, 53.982631], [-126.497717, 53.982542], [-126.49843, 53.982107], [-126.498919, 53.9821], [-126.499308, 53.982224]], [[-125.848763, 53.993282], [-125.84882, 53.993077], [-125.84869, 53.991047], [-125.848788, 53.987536], [-125.86078, 53.987551], [-125.860859, 53.994744], [-125.859577, 53.994705], [-125.859742, 53.994388], [-125.859745, 53.993992], [-125.859558, 53.993259], [-125.858627, 53.992131], [-125.858299, 53.992031], [-125.857946, 53.992021], [-125.8575, 53.992175], [-125.856858, 53.992622], [-125.856253, 53.993572], [-125.855738, 53.994079], [-125.855386, 53.994294], [-125.85433, 53.994679], [-125.848943, 53.994767], [-125.849085, 53.996565], [-125.848936, 54.001051], [-125.836319, 54.001047], [-125.836096, 53.994367], [-125.847232, 53.994862], [-125.848943, 53.994767], [-125.848763, 53.993282]], [[-125.891861, 53.958631], [-125.891897, 53.963151], [-125.891807, 53.963752], [-125.891619, 53.964151], [-125.892102, 53.972404], [-125.882628, 53.972744], [-125.882581, 53.97215], [-125.881987, 53.971477], [-125.88074, 53.971182], [-125.87902, 53.971208], [-125.878666, 53.958288], [-125.891861, 53.958631]], [[-125.764626, 53.663385], [-125.765172, 53.678009], [-125.752712, 53.678164], [-125.752426, 53.663501], [-125.764626, 53.663385]], [[-125.962717, 54.015683], [-125.960505, 54.016349], [-125.958919, 54.016577], [-125.957124, 54.016676], [-125.956494, 54.016187], [-125.955879, 54.015501], [-125.955658, 54.015156], [-125.955554, 54.014781], [-125.955374, 54.014615], [-125.95208, 54.013185], [-125.950156, 54.012729], [-125.948329, 54.012135], [-125.946929, 54.011792], [-125.945016, 54.011479], [-125.943369, 54.011501], [-125.942287, 54.011348], [-125.940894, 54.011283], [-125.938367, 54.011503], [-125.938306, 54.008984], [-125.948237, 54.008888], [-125.950567, 54.008803], [-125.950441, 54.002383], [-125.962899, 54.002245], [-125.962975, 54.013899], [-125.964869, 54.013814], [-125.964836, 54.014786], [-125.964234, 54.014908], [-125.962717, 54.015683]], [[-125.987643, 53.958753], [-125.987618, 53.966084], [-125.962944, 53.965906], [-125.963183, 53.95429], [-125.963672, 53.954373], [-125.966043, 53.954522], [-125.969167, 53.955145], [-125.970199, 53.955291], [-125.972156, 53.955351], [-125.972366, 53.955326], [-125.972625, 53.955114], [-125.972666, 53.954608], [-125.972823, 53.954443], [-125.973181, 53.954354], [-125.973429, 53.954383], [-125.974415, 53.95497], [-125.974851, 53.955509], [-125.974922, 53.955883], [-125.975494, 53.956221], [-125.974946, 53.956423], [-125.973993, 53.956537], [-125.973883, 53.956701], [-125.973912, 53.957122], [-125.97322, 53.957886], [-125.973211, 53.958183], [-125.973789, 53.958807], [-125.974621, 53.958931], [-125.975534, 53.95934], [-125.976656, 53.959447], [-125.978495, 53.959787], [-125.980448, 53.959803], [-125.98185, 53.959596], [-125.981994, 53.959476], [-125.981982, 53.959116], [-125.981078, 53.958682], [-125.987643, 53.958753]], [[-125.661662, 53.944951], [-125.661136, 53.946109], [-125.659899, 53.951857], [-125.669094, 53.951954], [-125.670081, 53.958789], [-125.647493, 53.959019], [-125.647427, 53.952115], [-125.649071, 53.94494], [-125.658099, 53.945205], [-125.661662, 53.944951]], [[-125.718515, 54.014643], [-125.699881, 54.014813], [-125.698995, 54.000778], [-125.693522, 54.000536], [-125.693139, 53.99331], [-125.706272, 53.993098], [-125.706537, 53.99999], [-125.718063, 53.999795], [-125.718515, 54.014643]]]]}, "properties": {"name": "Bulkley-Nechako E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Bulkley-Nechako E", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951031", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.140297, 54.928877], [-126.142821, 54.945233], [-126.14798, 54.950518], [-126.155222, 54.954068], [-126.159487, 54.956943], [-126.175349, 54.968857], [-126.193885, 54.995719], [-126.215834, 55.022627], [-126.277226, 55.015466], [-126.274916, 55.003069], [-126.265212, 54.983636], [-126.264142, 54.968767], [-126.263803, 54.950825], [-126.248715, 54.939479], [-126.228439, 54.929742], [-126.201679, 54.90682], [-126.220119, 54.901439], [-126.245915, 54.901056], [-126.244927, 54.886541], [-126.227142, 54.886188], [-126.227068, 54.874943], [-126.217712, 54.874776], [-126.20206, 54.875453], [-126.198445, 54.875971], [-126.186181, 54.875093], [-126.184333, 54.875031], [-126.185913, 54.881466], [-126.184741, 54.892071], [-126.137306, 54.914907], [-126.140297, 54.928877]]]]}, "properties": {"name": "Granisle", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Granisle", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951032", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.727017, 54.423828], [-126.727318, 54.429755], [-126.739858, 54.430061], [-126.751745, 54.42886], [-126.750816, 54.420071], [-126.750258, 54.420005], [-126.74966, 54.419829], [-126.748764, 54.419332], [-126.748199, 54.418794], [-126.74776, 54.418058], [-126.747493, 54.417066], [-126.747731, 54.416582], [-126.74788, 54.415485], [-126.747777, 54.41501], [-126.747575, 54.414772], [-126.747623, 54.413933], [-126.747469, 54.413146], [-126.74666, 54.411737], [-126.746019, 54.411266], [-126.74646, 54.410679], [-126.747118, 54.406888], [-126.746895, 54.405136], [-126.74739, 54.402928], [-126.747418, 54.401636], [-126.747265, 54.400749], [-126.74642, 54.399932], [-126.744978, 54.399275], [-126.742771, 54.398504], [-126.742595, 54.398265], [-126.743027, 54.397461], [-126.744337, 54.396706], [-126.745039, 54.396052], [-126.747291, 54.394674], [-126.74782, 54.392378], [-126.747781, 54.391103], [-126.747624, 54.39061], [-126.745012, 54.388299], [-126.739527, 54.384497], [-126.738442, 54.382509], [-126.739192, 54.380557], [-126.741202, 54.379391], [-126.744443, 54.37826], [-126.749623, 54.375871], [-126.750564, 54.376385], [-126.753792, 54.37507], [-126.751354, 54.375382], [-126.753997, 54.374166], [-126.755352, 54.373759], [-126.760038, 54.373526], [-126.760647, 54.37343], [-126.760442, 54.369074], [-126.760787, 54.366657], [-126.737535, 54.366816], [-126.738117, 54.355757], [-126.705157, 54.356231], [-126.704429, 54.356151], [-126.703927, 54.356248], [-126.703143, 54.356259], [-126.704139, 54.366635], [-126.704027, 54.366636], [-126.7041, 54.367181], [-126.67831, 54.367248], [-126.678082, 54.367298], [-126.654546, 54.36703], [-126.634362, 54.36803], [-126.627233, 54.367198], [-126.621046, 54.367039], [-126.608532, 54.367281], [-126.593904, 54.367828], [-126.593813, 54.389583], [-126.579296, 54.389324], [-126.579636, 54.402896], [-126.579484, 54.441278], [-126.580711, 54.441249], [-126.582152, 54.441366], [-126.582551, 54.441284], [-126.582758, 54.441158], [-126.582773, 54.440835], [-126.58249, 54.440114], [-126.582545, 54.439973], [-126.582892, 54.439798], [-126.585052, 54.439391], [-126.585696, 54.439441], [-126.586502, 54.439785], [-126.587015, 54.439844], [-126.587816, 54.439668], [-126.588389, 54.439372], [-126.588533, 54.439115], [-126.588372, 54.438831], [-126.587837, 54.438723], [-126.586978, 54.438672], [-126.586322, 54.438461], [-126.585959, 54.438207], [-126.585958, 54.437971], [-126.586258, 54.437407], [-126.586941, 54.436678], [-126.587701, 54.436218], [-126.588798, 54.436021], [-126.58944, 54.435725], [-126.590172, 54.435591], [-126.590866, 54.435602], [-126.591884, 54.436068], [-126.59271, 54.436101], [-126.593092, 54.435876], [-126.592543, 54.435392], [-126.592616, 54.435155], [-126.593117, 54.434975], [-126.593256, 54.432183], [-126.615537, 54.432453], [-126.617341, 54.432641], [-126.633274, 54.433577], [-126.633053, 54.425401], [-126.647131, 54.425265], [-126.654102, 54.425253], [-126.656053, 54.425186], [-126.656328, 54.41785], [-126.659921, 54.41779], [-126.667303, 54.418122], [-126.680956, 54.41838], [-126.681951, 54.425927], [-126.719124, 54.426569], [-126.719332, 54.423708], [-126.727017, 54.423828]]]]}, "properties": {"name": "Houston", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Houston", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951034", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.057138, 54.71007], [-127.059424, 54.709881], [-127.05991, 54.710417], [-127.06394, 54.709915], [-127.064406, 54.709623], [-127.063697, 54.708894], [-127.063145, 54.708061], [-127.061836, 54.706877], [-127.057703, 54.704227], [-127.056563, 54.703835], [-127.054677, 54.702388], [-127.053295, 54.701706], [-127.05238, 54.700794], [-127.052208, 54.700417], [-127.053541, 54.697363], [-127.053557, 54.696844], [-127.053345, 54.696351], [-127.053287, 54.695649], [-127.053967, 54.695578], [-127.054067, 54.695357], [-127.05458, 54.695197], [-127.055939, 54.695247], [-127.056423, 54.695347], [-127.05701, 54.695287], [-127.057551, 54.695059], [-127.05794, 54.694648], [-127.058584, 54.694189], [-127.059257, 54.693431], [-127.059521, 54.692501], [-127.059727, 54.692289], [-127.060361, 54.692107], [-127.062168, 54.691873], [-127.064101, 54.692043], [-127.065971, 54.691953], [-127.067801, 54.691551], [-127.069928, 54.690418], [-127.070212, 54.689825], [-127.070174, 54.689176], [-127.072418, 54.687802], [-127.072806, 54.686748], [-127.072862, 54.685814], [-127.071221, 54.682461], [-127.071353, 54.68162], [-127.068738, 54.681298], [-127.068418, 54.681391], [-127.068261, 54.681321], [-127.077561, 54.676577], [-127.075889, 54.675143], [-127.079592, 54.675144], [-127.080651, 54.674102], [-127.072068, 54.671151], [-127.071952, 54.661694], [-127.047239, 54.660859], [-127.046801, 54.668061], [-127.046711, 54.672443], [-127.053108, 54.672149], [-127.06391, 54.671356], [-127.067856, 54.673746], [-127.067507, 54.674411], [-127.068377, 54.675212], [-127.06973, 54.674746], [-127.07212, 54.675741], [-127.072143, 54.678719], [-127.068163, 54.680584], [-127.065606, 54.679798], [-127.065283, 54.680913], [-127.064296, 54.680923], [-127.062384, 54.680769], [-127.061804, 54.677401], [-127.047963, 54.677459], [-127.047126, 54.680774], [-127.046687, 54.689341], [-127.046815, 54.69119], [-127.044521, 54.691373], [-127.044112, 54.690674], [-127.043221, 54.689595], [-127.041974, 54.688703], [-127.041185, 54.688296], [-127.035609, 54.685937], [-127.03478, 54.685675], [-127.033928, 54.685497], [-127.032695, 54.68536], [-127.033199, 54.698658], [-127.036769, 54.698658], [-127.038091, 54.699893], [-127.038596, 54.700946], [-127.039213, 54.70166], [-127.03973, 54.702124], [-127.040213, 54.702373], [-127.040741, 54.702517], [-127.042239, 54.702591], [-127.046549, 54.702509], [-127.046659, 54.709822], [-127.047609, 54.709805], [-127.047764, 54.710808], [-127.047932, 54.710616], [-127.051456, 54.711033], [-127.051624, 54.710651], [-127.052744, 54.710785], [-127.052926, 54.709822], [-127.057138, 54.71007]]]]}, "properties": {"name": "Telkwa", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Telkwa", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951038", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.173872, 54.834176], [-127.179402, 54.834415], [-127.179658, 54.836263], [-127.190382, 54.836101], [-127.19099, 54.825026], [-127.190987, 54.824419], [-127.19051, 54.823883], [-127.190368, 54.82353], [-127.190398, 54.823163], [-127.190544, 54.822831], [-127.190836, 54.822516], [-127.195819, 54.81919], [-127.197344, 54.817475], [-127.197037, 54.817326], [-127.197035, 54.816979], [-127.190301, 54.816973], [-127.190443, 54.811171], [-127.176592, 54.811105], [-127.176489, 54.8038], [-127.171578, 54.803768], [-127.170488, 54.793709], [-127.171155, 54.793794], [-127.172357, 54.794065], [-127.175622, 54.794113], [-127.177099, 54.793794], [-127.177605, 54.793595], [-127.177767, 54.793445], [-127.177834, 54.792978], [-127.178307, 54.792755], [-127.18299, 54.795898], [-127.184205, 54.795755], [-127.184461, 54.796228], [-127.184468, 54.797342], [-127.185092, 54.797354], [-127.184949, 54.798464], [-127.187426, 54.798541], [-127.187437, 54.798282], [-127.188058, 54.798404], [-127.188694, 54.798086], [-127.190097, 54.799129], [-127.192489, 54.798014], [-127.192087, 54.797743], [-127.190736, 54.796156], [-127.196881, 54.797134], [-127.197706, 54.794105], [-127.196809, 54.793439], [-127.195043, 54.791686], [-127.183577, 54.783195], [-127.183935, 54.78278], [-127.184361, 54.781968], [-127.195028, 54.783855], [-127.194907, 54.781393], [-127.188911, 54.781475], [-127.188487, 54.778292], [-127.182095, 54.778023], [-127.182019, 54.774009], [-127.179111, 54.773947], [-127.175903, 54.767478], [-127.165291, 54.767386], [-127.165137, 54.767456], [-127.164506, 54.767456], [-127.157956, 54.763835], [-127.156992, 54.763074], [-127.157326, 54.752981], [-127.149133, 54.753011], [-127.146937, 54.749408], [-127.146133, 54.74623], [-127.135951, 54.745832], [-127.136876, 54.747789], [-127.137585, 54.748881], [-127.137966, 54.749293], [-127.139411, 54.750613], [-127.142971, 54.753271], [-127.143111, 54.753486], [-127.132715, 54.75507], [-127.132228, 54.755009], [-127.132527, 54.760544], [-127.125915, 54.761094], [-127.126161, 54.761954], [-127.126701, 54.762624], [-127.129241, 54.764618], [-127.131984, 54.766401], [-127.132659, 54.767195], [-127.133164, 54.76805], [-127.133164, 54.768846], [-127.132933, 54.76925], [-127.133362, 54.76974], [-127.135579, 54.775557], [-127.138543, 54.776725], [-127.141738, 54.779572], [-127.135006, 54.779822], [-127.134687, 54.779911], [-127.134135, 54.780225], [-127.134013, 54.780416], [-127.133965, 54.780719], [-127.134101, 54.781787], [-127.134451, 54.782123], [-127.135266, 54.78204], [-127.136489, 54.781816], [-127.138249, 54.781744], [-127.13988, 54.781778], [-127.140414, 54.781661], [-127.140851, 54.78164], [-127.141441, 54.781677], [-127.142797, 54.781913], [-127.144192, 54.782068], [-127.144818, 54.782276], [-127.145717, 54.782704], [-127.146851, 54.783386], [-127.147421, 54.783853], [-127.148216, 54.784836], [-127.148559, 54.785857], [-127.148719, 54.786767], [-127.148671, 54.788842], [-127.14881, 54.789214], [-127.149244, 54.789588], [-127.149749, 54.789776], [-127.151057, 54.789751], [-127.151417, 54.789667], [-127.152056, 54.789281], [-127.15249, 54.788658], [-127.152815, 54.788349], [-127.15328, 54.788059], [-127.153785, 54.787878], [-127.156146, 54.787294], [-127.156687, 54.787347], [-127.157361, 54.78759], [-127.157963, 54.787663], [-127.160058, 54.788117], [-127.160527, 54.788393], [-127.160866, 54.788804], [-127.161128, 54.789536], [-127.161105, 54.791108], [-127.161204, 54.791299], [-127.161637, 54.791709], [-127.162672, 54.793244], [-127.162741, 54.793803], [-127.162949, 54.794318], [-127.163352, 54.794386], [-127.16391, 54.794395], [-127.164756, 54.793941], [-127.164983, 54.793737], [-127.165361, 54.793636], [-127.165749, 54.79365], [-127.166441, 54.793858], [-127.167492, 54.793946], [-127.16778, 54.796191], [-127.163238, 54.796489], [-127.163198, 54.79678], [-127.166071, 54.796749], [-127.166066, 54.800287], [-127.167983, 54.800592], [-127.169651, 54.802621], [-127.170923, 54.80268], [-127.171061, 54.803401], [-127.17106, 54.805], [-127.170161, 54.804991], [-127.170701, 54.808211], [-127.17295, 54.808517], [-127.174198, 54.80877], [-127.175341, 54.809677], [-127.175526, 54.810013], [-127.175392, 54.812329], [-127.175285, 54.812598], [-127.175024, 54.812908], [-127.174281, 54.813489], [-127.173755, 54.81377], [-127.17187, 54.814505], [-127.170484, 54.814763], [-127.173872, 54.834176]]], [[[-127.197289, 54.81884], [-127.201071, 54.818722], [-127.201276, 54.818208], [-127.2017, 54.817634], [-127.197355, 54.817832], [-127.197289, 54.81884]]]]}, "properties": {"name": "Smithers", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Smithers", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951043", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.367095, 54.993844], [-127.367069, 55.000261], [-127.439815, 55.000596], [-127.499273, 55.000315], [-127.736253, 54.999444], [-127.801046, 54.999467], [-127.800355, 54.814822], [-127.799982, 54.786822], [-127.79955, 54.673926], [-127.799646, 54.632468], [-127.797178, 54.631122], [-127.796702, 54.627258], [-127.799535, 54.623979], [-127.800715, 54.61684], [-127.810142, 54.606658], [-127.803985, 54.599239], [-127.791826, 54.599239], [-127.777658, 54.604439], [-127.755036, 54.595996], [-127.738662, 54.592701], [-127.715552, 54.592617], [-127.695767, 54.584989], [-127.687348, 54.578403], [-127.698536, 54.562755], [-127.694645, 54.555625], [-127.70026, 54.547234], [-127.710875, 54.548161], [-127.723752, 54.545279], [-127.729386, 54.546923], [-127.757223, 54.537778], [-127.760946, 54.531193], [-127.771211, 54.525916], [-127.776515, 54.517256], [-127.773191, 54.510662], [-127.766004, 54.50698], [-127.774105, 54.49766], [-127.77166, 54.494948], [-127.500396, 54.496171], [-127.46022, 54.496144], [-127.361358, 54.49626], [-127.230751, 54.495855], [-127.213009, 54.496032], [-127.194621, 54.495776], [-127.102569, 54.495537], [-127.084525, 54.495394], [-127.067074, 54.495416], [-127.065006, 54.495357], [-127.063517, 54.495567], [-127.062177, 54.495637], [-127.060129, 54.495228], [-127.042116, 54.495198], [-127.040403, 54.494984], [-127.038518, 54.494524], [-127.038436, 54.495326], [-127.037591, 54.495332], [-127.022455, 54.495252], [-126.984375, 54.494867], [-126.946438, 54.494823], [-126.887982, 54.494441], [-126.852929, 54.49427], [-126.820288, 54.494179], [-126.794449, 54.493948], [-126.764091, 54.493292], [-126.763659, 54.49722], [-126.745111, 54.497213], [-126.727641, 54.497351], [-126.726967, 54.506329], [-126.703407, 54.506542], [-126.698829, 54.506521], [-126.66771, 54.506924], [-126.657374, 54.50692], [-126.629641, 54.507434], [-126.622986, 54.507471], [-126.622974, 54.532525], [-126.623485, 54.55749], [-126.624335, 54.579711], [-126.626415, 54.612732], [-126.627333, 54.625504], [-126.63303, 54.637656], [-126.643778, 54.639549], [-126.651478, 54.643918], [-126.664318, 54.64884], [-126.67382, 54.657272], [-126.675791, 54.659157], [-126.682867, 54.660607], [-126.679861, 54.667476], [-126.683537, 54.672227], [-126.684966, 54.678701], [-126.694737, 54.680828], [-126.702953, 54.679536], [-126.720249, 54.673596], [-126.732456, 54.670407], [-126.734323, 54.679055], [-126.731862, 54.685272], [-126.734827, 54.688153], [-126.738523, 54.690348], [-126.749115, 54.692708], [-126.749151, 54.701861], [-126.749565, 54.70511], [-126.745383, 54.711333], [-126.743383, 54.719411], [-126.754916, 54.725814], [-126.769711, 54.72801], [-126.775867, 54.733624], [-126.772708, 54.740484], [-126.772518, 54.741617], [-126.771702, 54.749645], [-126.756628, 54.761025], [-126.748404, 54.760488], [-126.739437, 54.756449], [-126.707324, 54.761181], [-126.707373, 54.764579], [-126.712245, 54.771434], [-126.705815, 54.773729], [-126.701728, 54.787193], [-126.70059, 54.793946], [-126.7057, 54.799347], [-126.712435, 54.80349], [-126.724679, 54.805018], [-126.735131, 54.802057], [-126.742656, 54.800795], [-126.754212, 54.796085], [-126.76104, 54.794724], [-126.767892, 54.79506], [-126.776924, 54.79634], [-126.7834, 54.804691], [-126.790176, 54.810533], [-126.794091, 54.81167], [-126.793995, 54.811828], [-126.817118, 54.814869], [-126.829162, 54.822484], [-126.828917, 54.828179], [-126.821864, 54.830682], [-126.840832, 54.837831], [-126.849958, 54.84483], [-126.85744, 54.848122], [-126.853889, 54.854986], [-126.83639, 54.860516], [-126.833997, 54.86202], [-126.834058, 54.865293], [-126.836129, 54.868844], [-126.845423, 54.869511], [-126.86337, 54.87239], [-126.865156, 54.878348], [-126.85767, 54.884829], [-126.85636, 54.895455], [-126.860163, 54.90594], [-126.863901, 54.909824], [-126.859426, 54.920632], [-126.859401, 54.928685], [-126.861854, 54.93752], [-126.875918, 54.946631], [-126.893654, 54.955511], [-126.900183, 54.963146], [-126.912579, 54.975099], [-126.91769, 54.983709], [-126.925304, 54.988122], [-126.934264, 54.991117], [-126.937524, 54.998024], [-126.937201, 55.000035], [-127.000365, 55.000148], [-127.074587, 55.000474], [-127.078485, 55.000429], [-127.099898, 55.000471], [-127.175897, 55.000209], [-127.240114, 55.000219], [-127.24152, 55.006876], [-127.271626, 55.007948], [-127.272521, 55.000278], [-127.302726, 55.000327], [-127.320073, 55.001109], [-127.334863, 55.000101], [-127.336772, 55.000122], [-127.337925, 55.000041], [-127.343996, 55.000036], [-127.343479, 54.993822], [-127.367095, 54.993844]], [[-127.190836, 54.822516], [-127.190544, 54.822831], [-127.190398, 54.823163], [-127.190368, 54.82353], [-127.19051, 54.823883], [-127.190987, 54.824419], [-127.19099, 54.825026], [-127.190382, 54.836101], [-127.179658, 54.836263], [-127.179402, 54.834415], [-127.173872, 54.834176], [-127.170484, 54.814763], [-127.17187, 54.814505], [-127.173755, 54.81377], [-127.174281, 54.813489], [-127.175024, 54.812908], [-127.175285, 54.812598], [-127.175392, 54.812329], [-127.175526, 54.810013], [-127.175341, 54.809677], [-127.174198, 54.80877], [-127.17295, 54.808517], [-127.170701, 54.808211], [-127.170161, 54.804991], [-127.17106, 54.805], [-127.171061, 54.803401], [-127.170923, 54.80268], [-127.169651, 54.802621], [-127.167983, 54.800592], [-127.166066, 54.800287], [-127.166071, 54.796749], [-127.163198, 54.79678], [-127.163238, 54.796489], [-127.16778, 54.796191], [-127.167492, 54.793946], [-127.166441, 54.793858], [-127.165749, 54.79365], [-127.165361, 54.793636], [-127.164983, 54.793737], [-127.164756, 54.793941], [-127.16391, 54.794395], [-127.163352, 54.794386], [-127.162949, 54.794318], [-127.162741, 54.793803], [-127.162672, 54.793244], [-127.161637, 54.791709], [-127.161204, 54.791299], [-127.161105, 54.791108], [-127.161128, 54.789536], [-127.160866, 54.788804], [-127.160527, 54.788393], [-127.160058, 54.788117], [-127.157963, 54.787663], [-127.157361, 54.78759], [-127.156687, 54.787347], [-127.156146, 54.787294], [-127.153785, 54.787878], [-127.15328, 54.788059], [-127.152815, 54.788349], [-127.15249, 54.788658], [-127.152056, 54.789281], [-127.151417, 54.789667], [-127.151057, 54.789751], [-127.149749, 54.789776], [-127.149244, 54.789588], [-127.14881, 54.789214], [-127.148671, 54.788842], [-127.148719, 54.786767], [-127.148559, 54.785857], [-127.148216, 54.784836], [-127.147421, 54.783853], [-127.146851, 54.783386], [-127.145717, 54.782704], [-127.144818, 54.782276], [-127.144192, 54.782068], [-127.142797, 54.781913], [-127.141441, 54.781677], [-127.140851, 54.78164], [-127.140414, 54.781661], [-127.13988, 54.781778], [-127.138249, 54.781744], [-127.136489, 54.781816], [-127.135266, 54.78204], [-127.134451, 54.782123], [-127.134101, 54.781787], [-127.133965, 54.780719], [-127.134013, 54.780416], [-127.134135, 54.780225], [-127.134687, 54.779911], [-127.135006, 54.779822], [-127.141738, 54.779572], [-127.138543, 54.776725], [-127.135579, 54.775557], [-127.133362, 54.76974], [-127.132933, 54.76925], [-127.133164, 54.768846], [-127.133164, 54.76805], [-127.132659, 54.767195], [-127.131984, 54.766401], [-127.129241, 54.764618], [-127.126701, 54.762624], [-127.126161, 54.761954], [-127.125915, 54.761094], [-127.132527, 54.760544], [-127.132228, 54.755009], [-127.132715, 54.75507], [-127.143111, 54.753486], [-127.142971, 54.753271], [-127.139411, 54.750613], [-127.137966, 54.749293], [-127.137585, 54.748881], [-127.136876, 54.747789], [-127.135951, 54.745832], [-127.146133, 54.74623], [-127.146937, 54.749408], [-127.149133, 54.753011], [-127.157326, 54.752981], [-127.156992, 54.763074], [-127.157956, 54.763835], [-127.164506, 54.767456], [-127.165137, 54.767456], [-127.165291, 54.767386], [-127.175903, 54.767478], [-127.179111, 54.773947], [-127.182019, 54.774009], [-127.182095, 54.778023], [-127.188487, 54.778292], [-127.188911, 54.781475], [-127.194907, 54.781393], [-127.195028, 54.783855], [-127.184361, 54.781968], [-127.183935, 54.78278], [-127.183577, 54.783195], [-127.195043, 54.791686], [-127.196809, 54.793439], [-127.197706, 54.794105], [-127.196881, 54.797134], [-127.190736, 54.796156], [-127.192087, 54.797743], [-127.192489, 54.798014], [-127.190097, 54.799129], [-127.188694, 54.798086], [-127.188058, 54.798404], [-127.187437, 54.798282], [-127.187426, 54.798541], [-127.184949, 54.798464], [-127.185092, 54.797354], [-127.184468, 54.797342], [-127.184461, 54.796228], [-127.184205, 54.795755], [-127.18299, 54.795898], [-127.178307, 54.792755], [-127.177834, 54.792978], [-127.177767, 54.793445], [-127.177605, 54.793595], [-127.177099, 54.793794], [-127.175622, 54.794113], [-127.172357, 54.794065], [-127.171155, 54.793794], [-127.170488, 54.793709], [-127.171578, 54.803768], [-127.176489, 54.8038], [-127.176592, 54.811105], [-127.190443, 54.811171], [-127.190301, 54.816973], [-127.197035, 54.816979], [-127.197037, 54.817326], [-127.197344, 54.817475], [-127.195819, 54.81919], [-127.190836, 54.822516]], [[-127.197289, 54.81884], [-127.197355, 54.817832], [-127.2017, 54.817634], [-127.201276, 54.818208], [-127.201071, 54.818722], [-127.197289, 54.81884]], [[-127.001404, 54.743439], [-127.012571, 54.743388], [-127.016914, 54.743321], [-127.028774, 54.74336], [-127.028477, 54.751274], [-127.002488, 54.749962], [-127.000276, 54.74426], [-127.000852, 54.743659], [-127.001404, 54.743439]], [[-127.053557, 54.696844], [-127.053541, 54.697363], [-127.052208, 54.700417], [-127.05238, 54.700794], [-127.053295, 54.701706], [-127.054677, 54.702388], [-127.056563, 54.703835], [-127.057703, 54.704227], [-127.061836, 54.706877], [-127.063145, 54.708061], [-127.063697, 54.708894], [-127.064406, 54.709623], [-127.06394, 54.709915], [-127.05991, 54.710417], [-127.059424, 54.709881], [-127.057159, 54.710079], [-127.052926, 54.709822], [-127.052744, 54.710785], [-127.051624, 54.710651], [-127.051456, 54.711033], [-127.047932, 54.710616], [-127.047764, 54.710808], [-127.047609, 54.709805], [-127.046659, 54.709822], [-127.046549, 54.702509], [-127.042239, 54.702591], [-127.040741, 54.702517], [-127.040213, 54.702373], [-127.03973, 54.702124], [-127.039213, 54.70166], [-127.038596, 54.700946], [-127.038091, 54.699893], [-127.036769, 54.698658], [-127.033199, 54.698658], [-127.032695, 54.68536], [-127.033928, 54.685497], [-127.03478, 54.685675], [-127.035609, 54.685937], [-127.041185, 54.688296], [-127.041974, 54.688703], [-127.043221, 54.689595], [-127.044112, 54.690674], [-127.044521, 54.691373], [-127.046815, 54.69119], [-127.046687, 54.689341], [-127.047126, 54.680774], [-127.047963, 54.677459], [-127.061804, 54.677401], [-127.062384, 54.680769], [-127.064296, 54.680923], [-127.065283, 54.680913], [-127.065606, 54.679798], [-127.068163, 54.680584], [-127.072143, 54.678719], [-127.07212, 54.675741], [-127.06973, 54.674746], [-127.068377, 54.675212], [-127.067507, 54.674411], [-127.067856, 54.673746], [-127.06391, 54.671356], [-127.053108, 54.672149], [-127.046711, 54.672443], [-127.046801, 54.668061], [-127.047239, 54.660859], [-127.071952, 54.661694], [-127.072068, 54.671151], [-127.080651, 54.674102], [-127.079592, 54.675144], [-127.075889, 54.675143], [-127.077561, 54.676577], [-127.068261, 54.681321], [-127.068418, 54.681391], [-127.068738, 54.681298], [-127.071353, 54.68162], [-127.071221, 54.682461], [-127.072862, 54.685814], [-127.072806, 54.686748], [-127.072418, 54.687802], [-127.070174, 54.689176], [-127.070212, 54.689825], [-127.069928, 54.690418], [-127.067801, 54.691551], [-127.065971, 54.691953], [-127.064101, 54.692043], [-127.062168, 54.691873], [-127.060361, 54.692107], [-127.059727, 54.692289], [-127.059521, 54.692501], [-127.059257, 54.693431], [-127.058584, 54.694189], [-127.05794, 54.694648], [-127.057551, 54.695059], [-127.05701, 54.695287], [-127.056423, 54.695347], [-127.055939, 54.695247], [-127.05458, 54.695197], [-127.054067, 54.695357], [-127.053967, 54.695578], [-127.053287, 54.695649], [-127.053345, 54.696351], [-127.053557, 54.696844]]]]}, "properties": {"name": "Bulkley-Nechako A", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Bulkley-Nechako A", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951051", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.249568, 56.002235], [-128.364627, 56.003179], [-128.439281, 56.002952], [-128.475188, 55.967464], [-128.48555, 55.944838], [-128.455166, 55.928821], [-128.386899, 55.914299], [-128.330936, 55.914164], [-128.275373, 55.936053], [-128.224256, 55.932451], [-128.189044, 55.910787], [-128.191663, 55.878766], [-128.188481, 55.870916], [-128.156002, 55.86302], [-128.142873, 55.846493], [-128.168877, 55.829794], [-128.18949, 55.822388], [-128.193232, 55.810409], [-128.207565, 55.796248], [-128.223877, 55.783825], [-128.24061, 55.767969], [-128.229994, 55.758726], [-128.213853, 55.740851], [-128.184811, 55.72967], [-128.180168, 55.727739], [-128.146862, 55.72773], [-128.115121, 55.721409], [-128.104747, 55.731861], [-128.094579, 55.74969], [-128.099514, 55.764475], [-128.09531, 55.769336], [-128.087757, 55.770182], [-128.071749, 55.759571], [-128.055606, 55.756634], [-128.049324, 55.754154], [-128.042677, 55.748953], [-128.031592, 55.746555], [-128.004445, 55.752083], [-127.998758, 55.747308], [-127.996381, 55.740834], [-127.994758, 55.736947], [-127.996156, 55.726692], [-127.983186, 55.716967], [-127.976301, 55.699812], [-127.962948, 55.68845], [-127.949156, 55.686117], [-127.93679, 55.687621], [-127.931612, 55.692809], [-127.925356, 55.699581], [-127.915072, 55.717031], [-127.902443, 55.720043], [-127.882018, 55.717083], [-127.869955, 55.712464], [-127.861682, 55.710322], [-127.853666, 55.708394], [-127.843691, 55.711104], [-127.826622, 55.708199], [-127.811348, 55.707966], [-127.800183, 55.709864], [-127.798022, 55.709915], [-127.785388, 55.704999], [-127.767852, 55.704924], [-127.757377, 55.708151], [-127.741346, 55.708899], [-127.713321, 55.710818], [-127.693418, 55.699178], [-127.693179, 55.698962], [-127.694583, 55.698129], [-127.693405, 55.697581], [-127.692835, 55.69711], [-127.690608, 55.695643], [-127.689947, 55.695356], [-127.688733, 55.695016], [-127.686697, 55.694893], [-127.664097, 55.685445], [-127.656965, 55.673925], [-127.65661, 55.661659], [-127.657543, 55.649412], [-127.655574, 55.643564], [-127.652794, 55.638494], [-127.647478, 55.6353], [-127.62734, 55.623699], [-127.590869, 55.601568], [-127.580622, 55.592869], [-127.568844, 55.577935], [-127.553244, 55.564852], [-127.544661, 55.557985], [-127.53337, 55.550025], [-127.506533, 55.542355], [-127.494917, 55.53964], [-127.494883, 55.540951], [-127.469087, 55.539902], [-127.457701, 55.537564], [-127.454095, 55.532843], [-127.45896, 55.529121], [-127.458525, 55.52784], [-127.458757, 55.52425], [-127.456571, 55.520129], [-127.459417, 55.514538], [-127.458405, 55.509294], [-127.451521, 55.5037], [-127.448903, 55.499734], [-127.429018, 55.494531], [-127.415582, 55.494005], [-127.40344, 55.498518], [-127.401796, 55.503151], [-127.395035, 55.510908], [-127.378938, 55.511294], [-127.369535, 55.511092], [-127.356147, 55.509507], [-127.346622, 55.511404], [-127.337846, 55.51464], [-127.336957, 55.514489], [-127.335353, 55.514433], [-127.334445, 55.515159], [-127.333857, 55.516099], [-127.333561, 55.516208], [-127.328133, 55.514628], [-127.318729, 55.514422], [-127.309214, 55.513565], [-127.300169, 55.51212], [-127.295379, 55.505648], [-127.293015, 55.500108], [-127.278487, 55.494875], [-127.273207, 55.488579], [-127.266664, 55.483328], [-127.257233, 55.473923], [-127.246992, 55.472535], [-127.240523, 55.475523], [-127.230278, 55.475706], [-127.21843, 55.475066], [-127.216802, 55.473601], [-127.21505, 55.473508], [-127.181354, 55.465548], [-127.172604, 55.462593], [-127.162193, 55.455291], [-127.154037, 55.450176], [-127.142978, 55.442735], [-127.128427, 55.430914], [-127.108085, 55.416911], [-127.089755, 55.405329], [-127.072031, 55.397591], [-127.064405, 55.396349], [-127.063007, 55.396054], [-127.062909, 55.395314], [-127.060703, 55.39026], [-127.063378, 55.383064], [-127.046633, 55.375503], [-127.037972, 55.377708], [-127.033398, 55.384392], [-127.031842, 55.385867], [-127.008486, 55.382457], [-126.991177, 55.383218], [-126.973419, 55.378388], [-126.961086, 55.378373], [-126.946376, 55.38297], [-126.937403, 55.386145], [-126.931186, 55.386128], [-126.924216, 55.385049], [-126.921773, 55.381437], [-126.909341, 55.378208], [-126.9058, 55.377403], [-126.897724, 55.380576], [-126.89605, 55.381517], [-126.893784, 55.381318], [-126.892935, 55.380968], [-126.891651, 55.380124], [-126.889364, 55.375271], [-126.892166, 55.370998], [-126.891358, 55.369519], [-126.889202, 55.368953], [-126.884909, 55.368919], [-126.882644, 55.368612], [-126.879336, 55.366246], [-126.867453, 55.364907], [-126.853386, 55.360804], [-126.87117, 55.352008], [-126.874306, 55.34696], [-126.874833, 55.342377], [-126.875561, 55.341244], [-126.872557, 55.334812], [-126.874278, 55.321625], [-126.875029, 55.314055], [-126.868205, 55.310218], [-126.868058, 55.304641], [-126.867769, 55.302786], [-126.88103, 55.303995], [-126.881422, 55.304096], [-126.882904, 55.30342], [-126.895783, 55.299562], [-126.905182, 55.297146], [-126.920304, 55.295373], [-126.92564, 55.293498], [-126.953646, 55.288545], [-126.953985, 55.282017], [-126.940773, 55.27406], [-126.92834, 55.26826], [-126.907999, 55.265903], [-126.881101, 55.268778], [-126.87997, 55.268979], [-126.856174, 55.249883], [-126.845335, 55.240279], [-126.848785, 55.231911], [-126.838076, 55.221928], [-126.821484, 55.225959], [-126.808051, 55.229325], [-126.785465, 55.227035], [-126.76579, 55.220157], [-126.756181, 55.21108], [-126.742003, 55.207146], [-126.738574, 55.203904], [-126.73598, 55.194151], [-126.741474, 55.178893], [-126.740618, 55.172974], [-126.734944, 55.160305], [-126.726257, 55.154226], [-126.685603, 55.124746], [-126.676724, 55.12173], [-126.660833, 55.122083], [-126.6447, 55.124485], [-126.647428, 55.111501], [-126.647625, 55.10078], [-126.679059, 55.088624], [-126.684027, 55.086438], [-126.691822, 55.082338], [-126.698431, 55.078648], [-126.70481, 55.075504], [-126.71005, 55.069021], [-126.716155, 55.064103], [-126.724707, 55.063008], [-126.734936, 55.062735], [-126.742926, 55.064178], [-126.762983, 55.069398], [-126.775976, 55.070973], [-126.785136, 55.070724], [-126.786085, 55.070993], [-126.789089, 55.071013], [-126.802625, 55.07245], [-126.814164, 55.072627], [-126.82429, 55.073768], [-126.833956, 55.076008], [-126.843454, 55.075022], [-126.855244, 55.064792], [-126.880001, 55.05985], [-126.883078, 55.049863], [-126.873474, 55.034968], [-126.89611, 55.031864], [-126.901695, 55.025501], [-126.902238, 55.025153], [-126.912847, 55.025312], [-126.930068, 55.015895], [-126.942963, 55.00707], [-126.937201, 55.000035], [-126.937524, 54.998024], [-126.934264, 54.991117], [-126.925304, 54.988122], [-126.91769, 54.983709], [-126.912579, 54.975099], [-126.900183, 54.963146], [-126.893654, 54.955511], [-126.875918, 54.946631], [-126.861854, 54.93752], [-126.859401, 54.928685], [-126.859426, 54.920632], [-126.863901, 54.909824], [-126.860163, 54.90594], [-126.85636, 54.895455], [-126.85767, 54.884829], [-126.865156, 54.878348], [-126.86337, 54.87239], [-126.845423, 54.869511], [-126.836129, 54.868844], [-126.834058, 54.865293], [-126.833997, 54.86202], [-126.83639, 54.860516], [-126.853889, 54.854986], [-126.85744, 54.848122], [-126.849958, 54.84483], [-126.840832, 54.837831], [-126.821864, 54.830682], [-126.828917, 54.828179], [-126.829162, 54.822484], [-126.817118, 54.814869], [-126.793995, 54.811828], [-126.794091, 54.81167], [-126.790176, 54.810533], [-126.7834, 54.804691], [-126.776924, 54.79634], [-126.767892, 54.79506], [-126.76104, 54.794724], [-126.754212, 54.796085], [-126.742656, 54.800795], [-126.735131, 54.802057], [-126.724679, 54.805018], [-126.712435, 54.80349], [-126.7057, 54.799347], [-126.70059, 54.793946], [-126.701728, 54.787193], [-126.705815, 54.773729], [-126.712245, 54.771434], [-126.707373, 54.764579], [-126.707324, 54.761181], [-126.739437, 54.756449], [-126.748404, 54.760488], [-126.756628, 54.761025], [-126.771702, 54.749645], [-126.772518, 54.741617], [-126.772708, 54.740484], [-126.775867, 54.733624], [-126.769711, 54.72801], [-126.754916, 54.725814], [-126.743383, 54.719411], [-126.745383, 54.711333], [-126.749565, 54.70511], [-126.749151, 54.701861], [-126.749115, 54.692708], [-126.738523, 54.690348], [-126.734827, 54.688153], [-126.731862, 54.685272], [-126.734323, 54.679055], [-126.732456, 54.670407], [-126.720249, 54.673596], [-126.702953, 54.679536], [-126.694737, 54.680828], [-126.684966, 54.678701], [-126.683537, 54.672227], [-126.679861, 54.667476], [-126.682867, 54.660607], [-126.675791, 54.659157], [-126.67382, 54.657272], [-126.664318, 54.64884], [-126.651478, 54.643918], [-126.643778, 54.639549], [-126.63303, 54.637656], [-126.627333, 54.625504], [-126.626415, 54.612732], [-126.624335, 54.579711], [-126.623485, 54.55749], [-126.622974, 54.532525], [-126.622986, 54.507471], [-126.629641, 54.507434], [-126.657374, 54.50692], [-126.66771, 54.506924], [-126.698829, 54.506521], [-126.703407, 54.506542], [-126.726967, 54.506329], [-126.727641, 54.497351], [-126.745111, 54.497213], [-126.763659, 54.49722], [-126.764091, 54.493292], [-126.794449, 54.493948], [-126.820288, 54.494179], [-126.852929, 54.49427], [-126.887982, 54.494441], [-126.946438, 54.494823], [-126.984375, 54.494867], [-127.022455, 54.495252], [-127.037591, 54.495332], [-127.038436, 54.495326], [-127.038518, 54.494524], [-127.040403, 54.494984], [-127.042116, 54.495198], [-127.060129, 54.495228], [-127.062177, 54.495637], [-127.063517, 54.495567], [-127.065006, 54.495357], [-127.067074, 54.495416], [-127.084525, 54.495394], [-127.102569, 54.495537], [-127.194621, 54.495776], [-127.213009, 54.496032], [-127.230751, 54.495855], [-127.361358, 54.49626], [-127.46022, 54.496144], [-127.500396, 54.496171], [-127.77166, 54.494948], [-127.7678, 54.490671], [-127.768954, 54.484666], [-127.775273, 54.480476], [-127.779569, 54.467359], [-127.757707, 54.44307], [-127.737616, 54.444534], [-127.713485, 54.460494], [-127.693911, 54.463614], [-127.651975, 54.456377], [-127.641825, 54.459365], [-127.632684, 54.449727], [-127.621401, 54.444589], [-127.605695, 54.444787], [-127.584076, 54.450123], [-127.580427, 54.451461], [-127.575447, 54.449205], [-127.554643, 54.44644], [-127.54411, 54.43991], [-127.537755, 54.43519], [-127.539519, 54.43269], [-127.547165, 54.42915], [-127.5524, 54.422782], [-127.548105, 54.418791], [-127.561423, 54.405752], [-127.561795, 54.397825], [-127.553803, 54.396306], [-127.55339, 54.392377], [-127.545113, 54.39059], [-127.535577, 54.38704], [-127.532315, 54.383415], [-127.536585, 54.379996], [-127.545885, 54.379185], [-127.548781, 54.374786], [-127.548708, 54.369991], [-127.554857, 54.366253], [-127.562044, 54.365843], [-127.568009, 54.359574], [-127.565127, 54.350988], [-127.568516, 54.342326], [-127.575953, 54.334772], [-127.589583, 54.323829], [-127.593197, 54.316564], [-127.593808, 54.313001], [-127.603749, 54.307489], [-127.60941, 54.310974], [-127.641158, 54.304483], [-127.643969, 54.298251], [-127.641218, 54.294812], [-127.644836, 54.290509], [-127.652225, 54.288528], [-127.653199, 54.280003], [-127.65953, 54.281753], [-127.665534, 54.27731], [-127.669918, 54.26901], [-127.674873, 54.261241], [-127.672852, 54.25642], [-127.655166, 54.245878], [-127.658778, 54.241575], [-127.660003, 54.237411], [-127.665981, 54.230007], [-127.677802, 54.221556], [-127.683027, 54.22111], [-127.698167, 54.216625], [-127.70559, 54.206453], [-127.717561, 54.204621], [-127.726481, 54.204661], [-127.731639, 54.209439], [-127.738988, 54.211546], [-127.75, 54.204122], [-127.750424, 54.193936], [-127.757615, 54.185325], [-127.759932, 54.177779], [-127.757904, 54.17296], [-127.745425, 54.166078], [-127.738734, 54.159277], [-127.739875, 54.153283], [-127.724836, 54.144011], [-127.728763, 54.138841], [-127.726361, 54.13602], [-127.719321, 54.134177], [-127.718372, 54.12859], [-127.721679, 54.124021], [-127.736788, 54.121013], [-127.748418, 54.115951], [-127.787428, 54.112225], [-127.804755, 54.11098], [-127.826018, 54.101947], [-127.829501, 54.088756], [-127.840944, 54.084118], [-127.845344, 54.077644], [-127.853668, 54.073051], [-127.853679, 54.068958], [-127.859548, 54.062678], [-127.863188, 54.054627], [-127.861154, 54.049811], [-127.865174, 54.045336], [-127.87672, 54.041393], [-127.883518, 54.037736], [-127.888599, 54.032489], [-127.89254, 54.022091], [-127.898471, 54.021731], [-127.901335, 54.02438], [-127.907675, 54.024982], [-127.90768, 54.02089], [-127.917292, 54.021011], [-127.925104, 54.021805], [-127.93492, 54.020359], [-127.943814, 54.009585], [-127.944714, 54.005156], [-127.960984, 54.000295], [-127.968949, 53.997808], [-127.978235, 53.994179], [-127.983878, 53.995332], [-127.991809, 53.993359], [-128.000235, 53.995003], [-128.00092, 53.919727], [-128.001663, 53.891285], [-128.00125, 53.891202], [-127.999363, 53.880534], [-128.012716, 53.875042], [-128.006149, 53.863767], [-127.998138, 53.856357], [-127.974911, 53.843783], [-127.958476, 53.835997], [-127.951933, 53.829932], [-127.936677, 53.826207], [-127.944414, 53.812887], [-127.923867, 53.802854], [-127.912943, 53.793116], [-127.899227, 53.777897], [-127.907413, 53.774824], [-127.911249, 53.771815], [-127.90112, 53.752114], [-127.901071, 53.745079], [-127.871745, 53.736279], [-127.851667, 53.729086], [-127.842503, 53.728362], [-127.827451, 53.730383], [-127.820119, 53.727658], [-127.815975, 53.72008], [-127.816854, 53.713486], [-127.821015, 53.707487], [-127.823961, 53.706121], [-127.825564, 53.704737], [-127.831847, 53.705257], [-127.836372, 53.700425], [-127.827537, 53.696703], [-127.820031, 53.688042], [-127.812351, 53.681274], [-127.814298, 53.671148], [-127.814129, 53.662338], [-127.80789, 53.661035], [-127.794532, 53.662551], [-127.785898, 53.66189], [-127.785893, 53.661855], [-127.746347, 53.665238], [-127.734849, 53.66575], [-127.725645, 53.671787], [-127.716918, 53.67252], [-127.705341, 53.681493], [-127.694148, 53.682887], [-127.688182, 53.680457], [-127.671833, 53.677994], [-127.661573, 53.679666], [-127.650771, 53.680034], [-127.638217, 53.685112], [-127.641723, 53.690405], [-127.649483, 53.695726], [-127.649655, 53.710605], [-127.643705, 53.71455], [-127.631293, 53.716054], [-127.631252, 53.716118], [-127.586322, 53.725912], [-127.578163, 53.7302], [-127.571953, 53.737789], [-127.550403, 53.734712], [-127.537239, 53.735157], [-127.511244, 53.759335], [-127.500162, 53.758822], [-127.490953, 53.7633], [-127.481772, 53.767218], [-127.475075, 53.768778], [-127.451088, 53.759459], [-127.438091, 53.75835], [-127.427854, 53.770252], [-127.417729, 53.771463], [-127.412715, 53.764518], [-127.388507, 53.75198], [-127.377938, 53.753163], [-127.375351, 53.747709], [-127.358266, 53.740703], [-127.335905, 53.735886], [-127.328873, 53.739823], [-127.332646, 53.747622], [-127.329749, 53.754892], [-127.315149, 53.759659], [-127.295635, 53.755541], [-127.288501, 53.764603], [-127.289949, 53.773007], [-127.285276, 53.784462], [-127.281075, 53.790526], [-127.276723, 53.796575], [-127.276343, 53.804777], [-127.282895, 53.807019], [-127.289722, 53.805909], [-127.298929, 53.820561], [-127.293595, 53.833623], [-127.28638, 53.842466], [-127.27876, 53.850279], [-127.273599, 53.853807], [-127.267351, 53.861924], [-127.270182, 53.870637], [-127.270204, 53.876882], [-127.265663, 53.881806], [-127.272014, 53.884223], [-127.281962, 53.891258], [-127.280446, 53.905075], [-127.272259, 53.912967], [-127.26593, 53.915797], [-127.268487, 53.921236], [-127.280219, 53.923931], [-127.282479, 53.931294], [-127.277381, 53.943927], [-127.273518, 53.9491], [-127.273, 53.958047], [-127.261412, 53.958309], [-127.258853, 53.966128], [-127.264515, 53.967679], [-127.26561, 53.975345], [-127.254688, 53.979859], [-127.251739, 53.978069], [-127.245253, 53.978952], [-127.240889, 53.983054], [-127.238692, 53.989613], [-127.230142, 53.990752], [-127.223408, 53.995222], [-127.214556, 53.997282], [-127.210722, 53.997064], [-127.208188, 54.000492], [-127.201935, 54.003409], [-127.193375, 54.005546], [-127.19398, 54.010951], [-127.192979, 54.012817], [-127.185267, 54.011333], [-127.17641, 54.011819], [-127.159444, 54.018624], [-127.15657, 54.016559], [-127.158118, 54.011005], [-127.153925, 54.010201], [-127.153146, 54.005541], [-127.154768, 54.002867], [-127.151202, 54.000735], [-127.148253, 53.997783], [-127.137823, 53.993189], [-127.131133, 53.98675], [-127.12084, 53.990422], [-127.113479, 53.99474], [-127.110275, 54.000129], [-127.106025, 54.003561], [-127.104483, 54.009054], [-127.100524, 54.012838], [-127.09712, 54.023236], [-127.10715, 54.034421], [-127.109909, 54.044111], [-127.110822, 54.052044], [-127.10946, 54.055458], [-127.105653, 54.057333], [-127.098351, 54.059024], [-127.082355, 54.059512], [-127.083091, 54.070425], [-127.079534, 54.078039], [-127.072402, 54.076752], [-127.062688, 54.073007], [-127.05881, 54.066171], [-127.047816, 54.069404], [-127.035098, 54.068236], [-127.014986, 54.05979], [-127.009662, 54.064154], [-127.000694, 54.061106], [-126.994989, 54.064549], [-126.980199, 54.063183], [-126.975825, 54.057045], [-126.950364, 54.057132], [-126.949726, 54.057003], [-126.944924, 54.06531], [-126.944026, 54.071621], [-126.944619, 54.072866], [-126.949576, 54.078381], [-126.945149, 54.084383], [-126.937079, 54.094629], [-126.929612, 54.096866], [-126.93009, 54.103513], [-126.922098, 54.108371], [-126.892666, 54.103569], [-126.884503, 54.098791], [-126.865967, 54.095839], [-126.842221, 54.082204], [-126.833586, 54.076149], [-126.830227, 54.073979], [-126.824025, 54.07238], [-126.800047, 54.055176], [-126.780207, 54.051085], [-126.77045, 54.05677], [-126.709555, 54.057219], [-126.635641, 54.057611], [-126.638526, 54.140756], [-126.638799, 54.153148], [-126.637886, 54.198568], [-126.637216, 54.198454], [-126.638772, 54.203402], [-126.620008, 54.197071], [-126.609943, 54.199916], [-126.596101, 54.184254], [-126.588727, 54.182696], [-126.580617, 54.179712], [-126.570191, 54.177991], [-126.562308, 54.178746], [-126.55778, 54.177848], [-126.549883, 54.176478], [-126.53409, 54.171621], [-126.528729, 54.16849], [-126.520309, 54.167309], [-126.5091, 54.166389], [-126.490215, 54.164422], [-126.477395, 54.165804], [-126.469335, 54.165568], [-126.458518, 54.165418], [-126.452996, 54.165462], [-126.451367, 54.165118], [-126.449633, 54.1644], [-126.445088, 54.164284], [-126.434519, 54.16645], [-126.425114, 54.16588], [-126.417497, 54.163179], [-126.41898, 54.159101], [-126.417892, 54.156314], [-126.420222, 54.156695], [-126.418774, 54.153515], [-126.409307, 54.152158], [-126.399742, 54.152111], [-126.391347, 54.150375], [-126.380349, 54.146144], [-126.36484, 54.14523], [-126.355251, 54.14267], [-126.339601, 54.141829], [-126.334097, 54.139099], [-126.32688, 54.133148], [-126.32894, 54.128595], [-126.328469, 54.126637], [-126.326069, 54.12196], [-126.326282, 54.118484], [-126.325179, 54.112924], [-126.321549, 54.106983], [-126.316016, 54.101289], [-126.306758, 54.10329], [-126.296336, 54.102725], [-126.286019, 54.102971], [-126.272589, 54.100068], [-126.269891, 54.106335], [-126.261036, 54.107338], [-126.255324, 54.105106], [-126.248135, 54.104245], [-126.239707, 54.102121], [-126.235926, 54.106005], [-126.231483, 54.109272], [-126.230599, 54.112558], [-126.22609, 54.113723], [-126.22347, 54.114646], [-126.219587, 54.114315], [-126.213369, 54.108011], [-126.209915, 54.10668], [-126.202149, 54.106017], [-126.192706, 54.105096], [-126.189038, 54.106387], [-126.172088, 54.114899], [-126.175558, 54.117501], [-126.172251, 54.120593], [-126.169865, 54.122424], [-126.169489, 54.127114], [-126.169969, 54.128017], [-126.173792, 54.132814], [-126.180552, 54.139383], [-126.192117, 54.142139], [-126.207178, 54.14545], [-126.207453, 54.145593], [-126.211944, 54.153105], [-126.209826, 54.15855], [-126.215869, 54.167107], [-126.214617, 54.1714], [-126.216391, 54.17505], [-126.218628, 54.176828], [-126.233653, 54.18309], [-126.239056, 54.187039], [-126.245318, 54.190711], [-126.257829, 54.192264], [-126.266107, 54.194563], [-126.276034, 54.198004], [-126.279209, 54.194668], [-126.287395, 54.195119], [-126.295183, 54.192345], [-126.29857, 54.193823], [-126.301798, 54.195692], [-126.305794, 54.201969], [-126.315559, 54.203866], [-126.322661, 54.206038], [-126.332856, 54.207781], [-126.341705, 54.211007], [-126.346019, 54.21115], [-126.363724, 54.217599], [-126.360726, 54.221656], [-126.360424, 54.226106], [-126.358028, 54.228615], [-126.3516, 54.232975], [-126.351296, 54.232853], [-126.350976, 54.233336], [-126.348781, 54.234813], [-126.337367, 54.238168], [-126.319129, 54.236537], [-126.30039, 54.236087], [-126.294594, 54.239109], [-126.262017, 54.239178], [-126.259449, 54.245266], [-126.259835, 54.248719], [-126.284024, 54.265737], [-126.284599, 54.272449], [-126.290063, 54.275878], [-126.31424, 54.295033], [-126.32437, 54.301201], [-126.340663, 54.31412], [-126.342999, 54.318843], [-126.351465, 54.321147], [-126.360744, 54.322318], [-126.371539, 54.326121], [-126.392611, 54.335382], [-126.402528, 54.335237], [-126.407898, 54.337369], [-126.413157, 54.342728], [-126.419451, 54.343527], [-126.426007, 54.346247], [-126.434655, 54.344869], [-126.438175, 54.339924], [-126.443559, 54.336505], [-126.459652, 54.335092], [-126.477359, 54.33218], [-126.485065, 54.336003], [-126.488607, 54.341634], [-126.499244, 54.345122], [-126.50984, 54.346184], [-126.51289, 54.348722], [-126.502127, 54.35228], [-126.499248, 54.354256], [-126.494397, 54.359071], [-126.494916, 54.3623], [-126.485139, 54.374147], [-126.477869, 54.377935], [-126.477934, 54.383203], [-126.474109, 54.387807], [-126.462286, 54.389136], [-126.454852, 54.391108], [-126.454233, 54.394911], [-126.462475, 54.401551], [-126.472806, 54.404926], [-126.456188, 54.404917], [-126.295881, 54.405816], [-126.279903, 54.405786], [-126.279438, 54.40976], [-126.263315, 54.409736], [-126.251905, 54.409874], [-126.25214, 54.41367], [-126.252055, 54.413671], [-126.25004, 54.475998], [-126.245244, 54.475868], [-126.24555, 54.48684], [-126.243971, 54.535256], [-126.247224, 54.638145], [-126.249665, 54.694608], [-126.24969, 54.708789], [-126.249954, 54.73858], [-126.249892, 54.749015], [-126.24275, 54.748849], [-126.230601, 54.748742], [-126.190864, 54.749307], [-126.107238, 54.748719], [-126.107699, 54.749387], [-126.10716, 54.750156], [-126.105429, 54.750096], [-126.081704, 54.750112], [-126.052196, 54.754501], [-126.043175, 54.757209], [-126.001639, 54.754346], [-125.956229, 54.751299], [-125.95699, 54.754479], [-125.956683, 54.762138], [-125.954878, 54.766778], [-125.951409, 54.768124], [-125.942686, 54.770676], [-125.943681, 54.772278], [-125.958378, 54.773903], [-125.964507, 54.77838], [-125.967182, 54.782432], [-125.970823, 54.786196], [-125.968868, 54.789165], [-125.966129, 54.790592], [-125.962121, 54.791415], [-125.958261, 54.791305], [-125.939276, 54.783949], [-125.929304, 54.779596], [-125.925445, 54.778181], [-125.923, 54.779483], [-125.922016, 54.781874], [-125.925156, 54.790293], [-125.926969, 54.793138], [-125.933266, 54.795065], [-125.956479, 54.793551], [-125.968473, 54.795994], [-125.972631, 54.80104], [-125.97544, 54.805444], [-125.989514, 54.808786], [-125.990981, 54.808613], [-125.992481, 54.809513], [-125.993038, 54.810537], [-125.996932, 54.811829], [-125.999536, 54.812017], [-126.000976, 54.813378], [-126.003161, 54.81665], [-126.002959, 54.817122], [-125.999063, 54.854326], [-125.999184, 54.869509], [-126.000059, 54.933729], [-125.994083, 54.970674], [-125.995966, 54.999914], [-125.995763, 55.008368], [-125.996499, 55.029457], [-125.996784, 55.031577], [-125.997375, 55.065734], [-125.99521, 55.086338], [-125.995899, 55.086862], [-125.996666, 55.088093], [-125.997414, 55.088695], [-125.998086, 55.088849], [-125.99858, 55.089367], [-125.998737, 55.090864], [-125.999217, 55.092031], [-125.999717, 55.09262], [-126.000274, 55.092953], [-126.000469, 55.093489], [-126.000478, 55.093794], [-126.000701, 55.094168], [-126.001051, 55.09451], [-126.00191, 55.094989], [-126.003654, 55.095606], [-125.999408, 55.161387], [-125.999225, 55.167037], [-126.023474, 55.168294], [-126.036346, 55.168819], [-126.04089, 55.170797], [-126.057251, 55.177564], [-126.082784, 55.201318], [-126.092425, 55.209322], [-126.107902, 55.216394], [-126.113365, 55.219824], [-126.122654, 55.226891], [-126.129759, 55.233645], [-126.132768, 55.240033], [-126.136509, 55.250056], [-126.139614, 55.260649], [-126.147826, 55.270207], [-126.154853, 55.276285], [-126.167912, 55.289841], [-126.183257, 55.299086], [-126.199566, 55.305704], [-126.211632, 55.311829], [-126.222518, 55.319772], [-126.227369, 55.323769], [-126.238351, 55.330619], [-126.25163, 55.34022], [-126.260151, 55.346499], [-126.269308, 55.350438], [-126.263581, 55.355579], [-126.257653, 55.359386], [-126.235888, 55.367566], [-126.236736, 55.373657], [-126.246169, 55.374337], [-126.250245, 55.375249], [-126.255836, 55.377592], [-126.258403, 55.378842], [-126.260702, 55.381601], [-126.263182, 55.383944], [-126.26979, 55.388421], [-126.270617, 55.389201], [-126.271833, 55.39446], [-126.280273, 55.398311], [-126.286505, 55.398311], [-126.288431, 55.396595], [-126.295309, 55.392475], [-126.302008, 55.394078], [-126.305529, 55.403869], [-126.306908, 55.405171], [-126.308831, 55.405223], [-126.311213, 55.405119], [-126.313227, 55.404079], [-126.314054, 55.399558], [-126.317533, 55.396958], [-126.320004, 55.395761], [-126.326143, 55.396854], [-126.33066, 55.403466], [-126.342145, 55.41195], [-126.344183, 55.41622], [-126.343747, 55.419919], [-126.335125, 55.428276], [-126.334843, 55.432783], [-126.337375, 55.437479], [-126.340386, 55.442243], [-126.344412, 55.446427], [-126.347471, 55.448162], [-126.352622, 55.449182], [-126.359336, 55.453602], [-126.358202, 55.469056], [-126.359172, 55.471505], [-126.3611, 55.474089], [-126.365723, 55.476909], [-126.374353, 55.478128], [-126.39304, 55.481924], [-126.403502, 55.492938], [-126.407238, 55.498378], [-126.407559, 55.503995], [-126.410053, 55.508032], [-126.413284, 55.516968], [-126.411139, 55.520843], [-126.411116, 55.527756], [-126.394685, 55.532761], [-126.385801, 55.532039], [-126.383532, 55.534068], [-126.387276, 55.538637], [-126.387229, 55.541369], [-126.387565, 55.545851], [-126.394999, 55.553546], [-126.40098, 55.560072], [-126.400548, 55.562487], [-126.396306, 55.567903], [-126.396908, 55.57223], [-126.399565, 55.576138], [-126.400243, 55.581007], [-126.402303, 55.582002], [-126.417, 55.584061], [-126.421931, 55.586342], [-126.427735, 55.586623], [-126.432584, 55.586948], [-126.437225, 55.589895], [-126.441799, 55.593715], [-126.449674, 55.596406], [-126.467031, 55.599535], [-126.475377, 55.606884], [-126.480255, 55.611452], [-126.485193, 55.613731], [-126.487633, 55.616014], [-126.481247, 55.618484], [-126.478317, 55.620904], [-126.474738, 55.625532], [-126.477263, 55.629772], [-126.476108, 55.633853], [-126.480908, 55.637883], [-126.487901, 55.639745], [-126.493795, 55.641983], [-126.504406, 55.646294], [-126.513979, 55.64869], [-126.521699, 55.648883], [-126.530126, 55.655358], [-126.527461, 55.665065], [-126.530358, 55.669179], [-126.535383, 55.671997], [-126.542009, 55.672566], [-126.550152, 55.670346], [-126.553647, 55.666836], [-126.554439, 55.666554], [-126.564873, 55.660269], [-126.584858, 55.668291], [-126.609201, 55.67495], [-126.624791, 55.682638], [-126.632084, 55.693494], [-126.63403, 55.695074], [-126.644466, 55.699849], [-126.652548, 55.706657], [-126.656819, 55.709268], [-126.658816, 55.707761], [-126.662603, 55.705227], [-126.668398, 55.702204], [-126.674117, 55.706152], [-126.675738, 55.708654], [-126.676728, 55.711577], [-126.682957, 55.718001], [-126.687297, 55.719665], [-126.695059, 55.721475], [-126.700537, 55.722849], [-126.705178, 55.725123], [-126.712812, 55.725137], [-126.71656, 55.727924], [-126.71978, 55.730892], [-126.732426, 55.733477], [-126.735847, 55.736593], [-126.741749, 55.73865], [-126.747001, 55.740112], [-126.749263, 55.742503], [-126.747611, 55.7443], [-126.745395, 55.746904], [-126.745043, 55.749889], [-126.745781, 55.751885], [-126.7479, 55.753814], [-126.748639, 55.755809], [-126.749401, 55.758819], [-126.748461, 55.761598], [-126.745164, 55.764568], [-126.753806, 55.776897], [-126.75083, 55.781183], [-126.743892, 55.783152], [-126.745828, 55.789627], [-126.754735, 55.797174], [-126.758916, 55.802368], [-126.767995, 55.806386], [-126.774055, 55.80695], [-126.781642, 55.80658], [-126.789374, 55.80534], [-126.820108, 55.825601], [-126.824687, 55.827809], [-126.836562, 55.829037], [-126.841667, 55.832394], [-126.842882, 55.838527], [-126.846872, 55.84186], [-126.854599, 55.845952], [-126.856868, 55.848036], [-126.861363, 55.852834], [-126.862387, 55.856781], [-126.869419, 55.863571], [-126.873176, 55.871697], [-126.876483, 55.881412], [-126.880628, 55.890224], [-126.884945, 55.89652], [-126.900113, 55.896842], [-126.901215, 55.900642], [-126.901913, 55.900969], [-126.908058, 55.906058], [-126.916532, 55.910124], [-126.919497, 55.920146], [-126.901222, 55.930232], [-126.891163, 55.930815], [-126.881012, 55.932761], [-126.880611, 55.940009], [-126.874847, 55.949567], [-126.866891, 55.953867], [-126.867345, 55.959703], [-126.880999, 55.965659], [-126.889007, 55.963569], [-126.901055, 55.964087], [-126.909805, 55.967739], [-126.916856, 55.970199], [-126.927135, 55.97488], [-126.931688, 55.979757], [-126.942193, 55.981026], [-126.94832, 55.98336], [-126.951727, 55.985742], [-126.961684, 55.991199], [-126.969031, 55.993555], [-126.976686, 55.991137], [-126.980224, 55.991598], [-126.984864, 55.992899], [-126.988466, 55.993683], [-126.990582, 55.993812], [-126.995025, 55.993481], [-127.000072, 55.993018], [-127.001968, 55.992749], [-127.003611, 55.992584], [-127.00639, 55.992399], [-127.009866, 55.992345], [-127.012536, 55.992589], [-127.013987, 55.993028], [-127.015409, 55.993692], [-127.017194, 55.994937], [-127.022063, 55.998609], [-127.024314, 56.000102], [-127.250224, 56.000753], [-127.500404, 56.001503], [-127.750594, 56.002251], [-127.91822, 56.002813], [-127.918083, 56.00249], [-127.916965, 56.001133], [-127.916773, 56.000584], [-127.916064, 55.999527], [-127.91587, 55.999013], [-127.915571, 55.997558], [-127.941533, 55.999936], [-127.998658, 56.000323], [-128.249568, 56.002235]], [[-126.630094, 55.315735], [-126.630236, 55.316862], [-126.659042, 55.3176], [-126.658395, 55.331313], [-126.633452, 55.331454], [-126.632831, 55.330645], [-126.611902, 55.330641], [-126.609601, 55.316066], [-126.630094, 55.315735]], [[-126.509982, 55.061971], [-126.5126, 55.061927], [-126.512952, 55.061826], [-126.513452, 55.061817], [-126.514147, 55.061994], [-126.515028, 55.062444], [-126.515439, 55.062883], [-126.515641, 55.063408], [-126.515698, 55.063985], [-126.516252, 55.064661], [-126.516645, 55.064895], [-126.516991, 55.065359], [-126.517211, 55.066362], [-126.51836, 55.067293], [-126.518742, 55.067957], [-126.519116, 55.06827], [-126.51962, 55.068947], [-126.519967, 55.069169], [-126.520382, 55.069322], [-126.521564, 55.070199], [-126.522155, 55.070415], [-126.51962, 55.07736], [-126.506768, 55.075995], [-126.506926, 55.075626], [-126.507014, 55.072609], [-126.507229, 55.072186], [-126.495758, 55.071397], [-126.496132, 55.067253], [-126.500294, 55.067417], [-126.501352, 55.061987], [-126.501738, 55.062045], [-126.503707, 55.062616], [-126.504687, 55.062753], [-126.505624, 55.063024], [-126.506595, 55.063044], [-126.507229, 55.06294], [-126.507787, 55.062754], [-126.508261, 55.062467], [-126.508919, 55.062183], [-126.509533, 55.062125], [-126.509982, 55.061971]], [[-126.326227, 55.0395], [-126.327101, 55.039547], [-126.328135, 55.039776], [-126.32931, 55.040206], [-126.330011, 55.040258], [-126.330533, 55.040413], [-126.332178, 55.040421], [-126.333407, 55.040521], [-126.333881, 55.040693], [-126.334565, 55.04078], [-126.335349, 55.040977], [-126.336374, 55.041106], [-126.337121, 55.04142], [-126.338528, 55.041891], [-126.340503, 55.04233], [-126.341733, 55.042924], [-126.342102, 55.043022], [-126.342538, 55.043058], [-126.342902, 55.0432], [-126.343319, 55.043552], [-126.343612, 55.043676], [-126.341725, 55.055737], [-126.304333, 55.054227], [-126.305655, 55.045087], [-126.306288, 55.044814], [-126.306629, 55.044399], [-126.306995, 55.042888], [-126.307337, 55.042464], [-126.308104, 55.041995], [-126.308801, 55.041661], [-126.30985, 55.040937], [-126.310609, 55.040145], [-126.310915, 55.039746], [-126.310981, 55.039479], [-126.31134, 55.039056], [-126.311695, 55.038856], [-126.311876, 55.038527], [-126.313061, 55.038123], [-126.314625, 55.03768], [-126.315355, 55.037535], [-126.315969, 55.037216], [-126.316064, 55.036993], [-126.316082, 55.036499], [-126.316469, 55.03631], [-126.317033, 55.036286], [-126.317183, 55.036371], [-126.317384, 55.036653], [-126.318037, 55.036973], [-126.318695, 55.037438], [-126.319182, 55.037646], [-126.319494, 55.037869], [-126.320958, 55.038459], [-126.322555, 55.038943], [-126.323804, 55.039204], [-126.326227, 55.0395]], [[-126.264142, 54.968767], [-126.265212, 54.983636], [-126.274916, 55.003069], [-126.277226, 55.015466], [-126.215834, 55.022627], [-126.193885, 54.995719], [-126.175349, 54.968857], [-126.159487, 54.956943], [-126.155222, 54.954068], [-126.14798, 54.950518], [-126.142821, 54.945233], [-126.140297, 54.928877], [-126.137306, 54.914907], [-126.184741, 54.892071], [-126.185913, 54.881466], [-126.184333, 54.875031], [-126.186181, 54.875093], [-126.198445, 54.875971], [-126.20206, 54.875453], [-126.217712, 54.874776], [-126.227068, 54.874943], [-126.227142, 54.886188], [-126.244927, 54.886541], [-126.245915, 54.901056], [-126.220119, 54.901439], [-126.201679, 54.90682], [-126.228439, 54.929742], [-126.248715, 54.939479], [-126.263803, 54.950825], [-126.264142, 54.968767]], [[-126.153567, 54.814085], [-126.155282, 54.814012], [-126.15683, 54.814253], [-126.15576, 54.82177], [-126.154644, 54.821771], [-126.154657, 54.821342], [-126.154288, 54.820848], [-126.154292, 54.820552], [-126.154365, 54.820185], [-126.154723, 54.819951], [-126.154735, 54.819797], [-126.154308, 54.81968], [-126.15406, 54.819216], [-126.153846, 54.819139], [-126.153089, 54.818608], [-126.15277, 54.818503], [-126.152129, 54.818532], [-126.151229, 54.818726], [-126.150196, 54.818568], [-126.148455, 54.818544], [-126.145943, 54.818844], [-126.145542, 54.818782], [-126.144999, 54.818552], [-126.1446, 54.818463], [-126.144055, 54.818458], [-126.143382, 54.818532], [-126.142743, 54.818733], [-126.142055, 54.818799], [-126.140658, 54.818495], [-126.140417, 54.818391], [-126.140166, 54.818205], [-126.139535, 54.817219], [-126.139003, 54.816604], [-126.138577, 54.816244], [-126.138594, 54.815983], [-126.138787, 54.815691], [-126.139529, 54.815107], [-126.139934, 54.815089], [-126.141081, 54.81518], [-126.144301, 54.814976], [-126.145674, 54.81473], [-126.146124, 54.814525], [-126.14571, 54.814223], [-126.149332, 54.814809], [-126.150086, 54.81476], [-126.152471, 54.814435], [-126.153567, 54.814085]], [[-126.738442, 54.382509], [-126.739527, 54.384497], [-126.745012, 54.388299], [-126.747624, 54.39061], [-126.747781, 54.391103], [-126.74782, 54.392378], [-126.747291, 54.394674], [-126.745039, 54.396052], [-126.744337, 54.396706], [-126.743027, 54.397461], [-126.742595, 54.398265], [-126.742771, 54.398504], [-126.744978, 54.399275], [-126.74642, 54.399932], [-126.747265, 54.400749], [-126.747418, 54.401636], [-126.74739, 54.402928], [-126.746895, 54.405136], [-126.747118, 54.406888], [-126.74646, 54.410679], [-126.746019, 54.411266], [-126.74666, 54.411737], [-126.747469, 54.413146], [-126.747623, 54.413933], [-126.747575, 54.414772], [-126.747777, 54.41501], [-126.74788, 54.415485], [-126.747731, 54.416582], [-126.747493, 54.417066], [-126.74776, 54.418058], [-126.748199, 54.418794], [-126.748764, 54.419332], [-126.74966, 54.419829], [-126.750258, 54.420005], [-126.750816, 54.420071], [-126.751745, 54.42886], [-126.739858, 54.430061], [-126.727318, 54.429755], [-126.727017, 54.423828], [-126.719332, 54.423708], [-126.719124, 54.426569], [-126.681951, 54.425927], [-126.680956, 54.41838], [-126.667303, 54.418122], [-126.659921, 54.41779], [-126.656328, 54.41785], [-126.656053, 54.425186], [-126.654102, 54.425253], [-126.647131, 54.425265], [-126.633053, 54.425401], [-126.633274, 54.433577], [-126.617341, 54.432641], [-126.615537, 54.432453], [-126.593256, 54.432183], [-126.593117, 54.434975], [-126.592616, 54.435155], [-126.592543, 54.435392], [-126.593092, 54.435876], [-126.59271, 54.436101], [-126.591884, 54.436068], [-126.590866, 54.435602], [-126.590172, 54.435591], [-126.58944, 54.435725], [-126.588798, 54.436021], [-126.587701, 54.436218], [-126.586941, 54.436678], [-126.586258, 54.437407], [-126.585958, 54.437971], [-126.585959, 54.438207], [-126.586322, 54.438461], [-126.586978, 54.438672], [-126.587837, 54.438723], [-126.588372, 54.438831], [-126.588533, 54.439115], [-126.588389, 54.439372], [-126.587816, 54.439668], [-126.587015, 54.439844], [-126.586502, 54.439785], [-126.585696, 54.439441], [-126.585052, 54.439391], [-126.582892, 54.439798], [-126.582545, 54.439973], [-126.58249, 54.440114], [-126.582773, 54.440835], [-126.582758, 54.441158], [-126.582551, 54.441284], [-126.582152, 54.441366], [-126.580711, 54.441249], [-126.579484, 54.441278], [-126.579636, 54.402896], [-126.579296, 54.389324], [-126.593813, 54.389583], [-126.593904, 54.367828], [-126.608532, 54.367281], [-126.621046, 54.367039], [-126.627233, 54.367198], [-126.634362, 54.36803], [-126.654546, 54.36703], [-126.678082, 54.367298], [-126.67831, 54.367248], [-126.7041, 54.367181], [-126.704027, 54.366636], [-126.704139, 54.366635], [-126.703143, 54.356259], [-126.703927, 54.356248], [-126.704429, 54.356151], [-126.705157, 54.356231], [-126.738117, 54.355757], [-126.737535, 54.366816], [-126.760787, 54.366657], [-126.760442, 54.369074], [-126.760647, 54.37343], [-126.760038, 54.373526], [-126.755352, 54.373759], [-126.753997, 54.374166], [-126.751354, 54.375382], [-126.753792, 54.37507], [-126.750564, 54.376385], [-126.749623, 54.375871], [-126.744443, 54.37826], [-126.741202, 54.379391], [-126.739192, 54.380557], [-126.738442, 54.382509]]]]}, "properties": {"name": "Bulkley-Nechako G", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Bulkley-Nechako G", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951053", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.079379, 54.608065], [-125.079397, 54.598644], [-125.082905, 54.598709], [-125.092023, 54.595824], [-125.092323, 54.593966], [-125.072356, 54.59381], [-125.072259, 54.596488], [-125.053168, 54.596581], [-125.05301, 54.601462], [-125.053838, 54.601645], [-125.055702, 54.602386], [-125.056914, 54.602779], [-125.057068, 54.602795], [-125.057173, 54.602731], [-125.057115, 54.602497], [-125.057594, 54.602453], [-125.057775, 54.602379], [-125.057775, 54.602081], [-125.057956, 54.60198], [-125.058333, 54.602081], [-125.058684, 54.602263], [-125.059714, 54.602426], [-125.059851, 54.602414], [-125.060046, 54.602276], [-125.0602, 54.602265], [-125.060686, 54.602688], [-125.061606, 54.602816], [-125.062367, 54.603154], [-125.062545, 54.603017], [-125.062542, 54.602629], [-125.062913, 54.602353], [-125.063143, 54.602305], [-125.063702, 54.602322], [-125.064204, 54.602457], [-125.064655, 54.602504], [-125.065537, 54.602759], [-125.065984, 54.602742], [-125.066581, 54.602588], [-125.067108, 54.6023], [-125.067413, 54.601882], [-125.0678, 54.600697], [-125.067769, 54.600374], [-125.067452, 54.599921], [-125.067495, 54.599247], [-125.067716, 54.599026], [-125.068173, 54.598867], [-125.068501, 54.598941], [-125.068692, 54.599325], [-125.068329, 54.599844], [-125.068317, 54.600213], [-125.068586, 54.600603], [-125.068435, 54.600975], [-125.068621, 54.601304], [-125.068686, 54.601662], [-125.068889, 54.601704], [-125.069283, 54.601517], [-125.069953, 54.601002], [-125.070083, 54.600829], [-125.070766, 54.600584], [-125.071648, 54.599948], [-125.072432, 54.599522], [-125.072837, 54.599892], [-125.072168, 54.600398], [-125.071907, 54.600752], [-125.071684, 54.601862], [-125.07145, 54.602127], [-125.071482, 54.602431], [-125.07177, 54.602661], [-125.072004, 54.602666], [-125.072232, 54.602617], [-125.072546, 54.602387], [-125.073301, 54.602302], [-125.073934, 54.602553], [-125.074837, 54.602654], [-125.075356, 54.602833], [-125.075473, 54.603003], [-125.075469, 54.603209], [-125.075079, 54.603458], [-125.074856, 54.603984], [-125.074534, 54.604313], [-125.074215, 54.604417], [-125.073782, 54.604442], [-125.073171, 54.604317], [-125.072241, 54.60428], [-125.071934, 54.60433], [-125.071495, 54.604554], [-125.071373, 54.604905], [-125.071362, 54.605301], [-125.070974, 54.605838], [-125.07098, 54.606009], [-125.071355, 54.606354], [-125.07167, 54.606438], [-125.072135, 54.606475], [-125.072264, 54.606545], [-125.072172, 54.606592], [-125.071209, 54.606859], [-125.070865, 54.607054], [-125.070266, 54.607173], [-125.069722, 54.607415], [-125.069491, 54.607446], [-125.068139, 54.606785], [-125.067939, 54.606483], [-125.067792, 54.605696], [-125.067642, 54.605528], [-125.067212, 54.605274], [-125.066509, 54.605133], [-125.066121, 54.60513], [-125.065475, 54.605231], [-125.064421, 54.605204], [-125.063875, 54.605115], [-125.063473, 54.605149], [-125.062783, 54.605277], [-125.062528, 54.605435], [-125.062352, 54.605626], [-125.062021, 54.606405], [-125.061368, 54.606667], [-125.060085, 54.607022], [-125.059602, 54.607299], [-125.059506, 54.607526], [-125.059828, 54.608708], [-125.079379, 54.608065]]]]}, "properties": {"name": "Ye Koo Che 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Ye Koo Che 3", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951801", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.577358, 54.093793], [-124.604267, 54.093594], [-124.604248, 54.086703], [-124.603931, 54.084754], [-124.605041, 54.08341], [-124.605384, 54.083153], [-124.606209, 54.082755], [-124.607099, 54.082464], [-124.607557, 54.082441], [-124.60915, 54.082537], [-124.610155, 54.082441], [-124.611399, 54.082218], [-124.611897, 54.08205], [-124.612645, 54.081608], [-124.613428, 54.081302], [-124.61368, 54.081083], [-124.614053, 54.080474], [-124.613961, 54.08008], [-124.613735, 54.079769], [-124.61328, 54.079452], [-124.61323, 54.079299], [-124.613375, 54.078345], [-124.613174, 54.077862], [-124.61337, 54.077392], [-124.613369, 54.076583], [-124.613614, 54.07622], [-124.613969, 54.075937], [-124.614396, 54.075122], [-124.614809, 54.074704], [-124.614929, 54.074288], [-124.615124, 54.074187], [-124.615077, 54.072983], [-124.615698, 54.072012], [-124.616477, 54.07042], [-124.61689, 54.070055], [-124.617679, 54.068319], [-124.617765, 54.068209], [-124.618339, 54.06804], [-124.618472, 54.067921], [-124.618485, 54.067813], [-124.618177, 54.067359], [-124.618162, 54.067026], [-124.619426, 54.065311], [-124.619219, 54.064728], [-124.619426, 54.064565], [-124.619746, 54.064523], [-124.619728, 54.064425], [-124.619381, 54.064187], [-124.619392, 54.064052], [-124.620153, 54.063566], [-124.620288, 54.06326], [-124.614599, 54.062438], [-124.612735, 54.062562], [-124.605605, 54.062734], [-124.606411, 54.062798], [-124.608086, 54.062775], [-124.608471, 54.062988], [-124.608393, 54.063314], [-124.608002, 54.063756], [-124.607028, 54.064191], [-124.605538, 54.064232], [-124.605002, 54.064392], [-124.604241, 54.064046], [-124.603149, 54.063917], [-124.602635, 54.064192], [-124.602162, 54.064244], [-124.601357, 54.063661], [-124.600028, 54.063423], [-124.599655, 54.063196], [-124.599786, 54.062434], [-124.597438, 54.06238], [-124.597492, 54.063033], [-124.591147, 54.063118], [-124.593005, 54.063757], [-124.593821, 54.064304], [-124.594985, 54.065556], [-124.596141, 54.066601], [-124.596557, 54.067081], [-124.597529, 54.067779], [-124.598528, 54.068682], [-124.598611, 54.070038], [-124.598571, 54.071387], [-124.598198, 54.072435], [-124.598102, 54.07311], [-124.598234, 54.073388], [-124.598588, 54.073419], [-124.598846, 54.07337], [-124.599069, 54.073591], [-124.5988, 54.074179], [-124.59851, 54.075416], [-124.598064, 54.076141], [-124.597041, 54.076908], [-124.596262, 54.077341], [-124.595375, 54.077731], [-124.594815, 54.077855], [-124.594203, 54.077872], [-124.592561, 54.077679], [-124.591995, 54.077667], [-124.591208, 54.077902], [-124.590628, 54.078305], [-124.59034, 54.078787], [-124.590297, 54.079272], [-124.590314, 54.079731], [-124.590648, 54.080813], [-124.59069, 54.081937], [-124.590478, 54.082416], [-124.589004, 54.083811], [-124.587315, 54.084049], [-124.586215, 54.084072], [-124.585536, 54.084278], [-124.585276, 54.084273], [-124.584272, 54.084043], [-124.583337, 54.083957], [-124.580285, 54.083296], [-124.579517, 54.083189], [-124.578631, 54.083183], [-124.577824, 54.083329], [-124.575042, 54.08412], [-124.574592, 54.084324], [-124.572767, 54.085822], [-124.572195, 54.086082], [-124.569138, 54.087298], [-124.56885, 54.087356], [-124.568604, 54.087332], [-124.568218, 54.087202], [-124.56736, 54.087556], [-124.566946, 54.087974], [-124.566778, 54.088803], [-124.566078, 54.089693], [-124.565563, 54.090176], [-124.563999, 54.09132], [-124.563536, 54.091863], [-124.577449, 54.092105], [-124.577358, 54.093793]]]]}, "properties": {"name": "Nautley (Fort Fraser) 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Nautley (Fort Fraser) 1", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951802", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.238987, 54.439025], [-124.244427, 54.438919], [-124.256731, 54.438912], [-124.25711, 54.439508], [-124.257756, 54.437668], [-124.258424, 54.436357], [-124.259181, 54.435325], [-124.259642, 54.434826], [-124.259666, 54.434574], [-124.259585, 54.434413], [-124.258852, 54.433701], [-124.258838, 54.433234], [-124.258575, 54.432689], [-124.258629, 54.432428], [-124.258883, 54.432129], [-124.260222, 54.431126], [-124.261439, 54.430565], [-124.262007, 54.430451], [-124.262492, 54.430697], [-124.262949, 54.431062], [-124.26309, 54.431123], [-124.263459, 54.431119], [-124.264509, 54.430668], [-124.265023, 54.43033], [-124.265273, 54.429896], [-124.265162, 54.42934], [-124.264981, 54.428937], [-124.265018, 54.428658], [-124.265781, 54.427356], [-124.266169, 54.426938], [-124.267473, 54.426781], [-124.267668, 54.426609], [-124.267642, 54.426275], [-124.267394, 54.425667], [-124.267431, 54.424892], [-124.265953, 54.42453], [-124.265942, 54.424487], [-124.26106, 54.42442], [-124.257772, 54.42448], [-124.252823, 54.425357], [-124.252541, 54.424741], [-124.251849, 54.423977], [-124.240289, 54.424704], [-124.23103, 54.424517], [-124.230951, 54.43439], [-124.231044, 54.438816], [-124.231594, 54.438866], [-124.238987, 54.439025]]]]}, "properties": {"name": "Nak'azdli", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Nak'azdli", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951803", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.385978, 54.419147], [-124.38713, 54.419183], [-124.387596, 54.419295], [-124.387818, 54.419426], [-124.388086, 54.420099], [-124.388744, 54.420396], [-124.389394, 54.420964], [-124.391173, 54.422067], [-124.393232, 54.42367], [-124.394077, 54.424029], [-124.394847, 54.424524], [-124.395443, 54.424777], [-124.396236, 54.424984], [-124.396792, 54.425013], [-124.3976, 54.42522], [-124.398913, 54.425321], [-124.398836, 54.425708], [-124.398699, 54.425818], [-124.398706, 54.426025], [-124.399506, 54.426392], [-124.399994, 54.426693], [-124.401012, 54.42714], [-124.402385, 54.427627], [-124.402804, 54.427712], [-124.405094, 54.427649], [-124.405035, 54.426521], [-124.405382, 54.420389], [-124.40585, 54.416268], [-124.385992, 54.416232], [-124.385978, 54.419147]]]]}, "properties": {"name": "Sowchea 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Sowchea 3", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951804", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.533012, 54.571907], [-124.543472, 54.570163], [-124.544976, 54.570062], [-124.54565, 54.570091], [-124.547007, 54.570318], [-124.548431, 54.570826], [-124.556518, 54.575233], [-124.555214, 54.5683], [-124.554298, 54.568213], [-124.549391, 54.568097], [-124.548956, 54.568065], [-124.548065, 54.567853], [-124.547108, 54.567856], [-124.545866, 54.567736], [-124.54378, 54.567818], [-124.542942, 54.567792], [-124.542508, 54.567716], [-124.541783, 54.567376], [-124.540591, 54.566519], [-124.540357, 54.566494], [-124.539916, 54.566671], [-124.5391, 54.566798], [-124.538976, 54.566782], [-124.538939, 54.566638], [-124.539105, 54.566474], [-124.538918, 54.566432], [-124.538518, 54.566536], [-124.536488, 54.566849], [-124.533543, 54.567489], [-124.524517, 54.569796], [-124.524131, 54.569783], [-124.523117, 54.569545], [-124.522495, 54.569471], [-124.520002, 54.569826], [-124.519154, 54.5699], [-124.516726, 54.56994], [-124.5153, 54.569813], [-124.511415, 54.568981], [-124.508821, 54.568663], [-124.508418, 54.568676], [-124.506817, 54.568427], [-124.504032, 54.567581], [-124.502909, 54.567352], [-124.501565, 54.566973], [-124.500773, 54.566858], [-124.499897, 54.566625], [-124.496462, 54.566192], [-124.493102, 54.565658], [-124.491837, 54.565287], [-124.491034, 54.564902], [-124.49059, 54.564602], [-124.490107, 54.564105], [-124.489957, 54.5638], [-124.489545, 54.563526], [-124.488599, 54.563439], [-124.488271, 54.563363], [-124.486959, 54.562588], [-124.486646, 54.562511], [-124.485934, 54.562484], [-124.485676, 54.562163], [-124.483919, 54.561501], [-124.482617, 54.561391], [-124.480789, 54.56136], [-124.477556, 54.560923], [-124.476526, 54.560639], [-124.47585, 54.560325], [-124.475548, 54.560116], [-124.475606, 54.570802], [-124.475593, 54.574755], [-124.475525, 54.575241], [-124.489749, 54.575529], [-124.490487, 54.575423], [-124.492162, 54.57541], [-124.492826, 54.575493], [-124.493265, 54.575454], [-124.49476, 54.575208], [-124.496048, 54.57483], [-124.525408, 54.574932], [-124.52543, 54.57335], [-124.533012, 54.571907]]]]}, "properties": {"name": "Binche 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Binche 2", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951805", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.76854, 54.062356], [-124.769714, 54.062303], [-124.77233, 54.062327], [-124.775741, 54.062438], [-124.776545, 54.062633], [-124.777327, 54.062693], [-124.778077, 54.062386], [-124.779348, 54.061738], [-124.781315, 54.060927], [-124.783303, 54.059909], [-124.782506, 54.056651], [-124.782253, 54.051771], [-124.781949, 54.052198], [-124.781151, 54.052776], [-124.779712, 54.053444], [-124.778415, 54.053869], [-124.776144, 54.054325], [-124.775275, 54.054356], [-124.77411, 54.054292], [-124.773618, 54.054218], [-124.773227, 54.054008], [-124.772765, 54.053584], [-124.772478, 54.052913], [-124.771513, 54.051445], [-124.77131, 54.05098], [-124.771364, 54.050781], [-124.773229, 54.050097], [-124.774034, 54.04971], [-124.758366, 54.049413], [-124.758332, 54.067396], [-124.760642, 54.06712], [-124.761856, 54.066886], [-124.76218, 54.066593], [-124.762985, 54.066133], [-124.764153, 54.06518], [-124.764621, 54.065066], [-124.765308, 54.065019], [-124.7653, 54.064875], [-124.764399, 54.064529], [-124.764365, 54.064089], [-124.76451, 54.063862], [-124.764789, 54.063652], [-124.765489, 54.06321], [-124.766377, 54.062864], [-124.767691, 54.062512], [-124.76854, 54.062356]]]]}, "properties": {"name": "Seaspunkut 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Seaspunkut 4", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951806", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.889224, 54.070232], [-124.926053, 54.069948], [-124.926175, 54.063514], [-124.928424, 54.040704], [-124.926658, 54.036339], [-124.92656, 54.034301], [-124.890371, 54.034374], [-124.889448, 54.046818], [-124.889809, 54.049371], [-124.892451, 54.048883], [-124.893102, 54.048729], [-124.894771, 54.048172], [-124.896061, 54.047944], [-124.896609, 54.047908], [-124.899196, 54.047952], [-124.899618, 54.048399], [-124.896483, 54.04916], [-124.894326, 54.049761], [-124.89097, 54.050884], [-124.888625, 54.051423], [-124.888145, 54.051593], [-124.887085, 54.052131], [-124.886584, 54.052553], [-124.886027, 54.053379], [-124.885907, 54.054487], [-124.885998, 54.054782], [-124.885958, 54.055232], [-124.885809, 54.055683], [-124.88555, 54.056021], [-124.885228, 54.057005], [-124.88504, 54.057243], [-124.884262, 54.057604], [-124.883952, 54.057844], [-124.883899, 54.058365], [-124.883969, 54.058553], [-124.884132, 54.058794], [-124.885462, 54.058835], [-124.886037, 54.058666], [-124.886925, 54.057365], [-124.88711, 54.056401], [-124.887279, 54.056065], [-124.888361, 54.055356], [-124.889246, 54.054982], [-124.891479, 54.054363], [-124.892332, 54.054323], [-124.892922, 54.054206], [-124.893889, 54.054253], [-124.894959, 54.054632], [-124.896771, 54.055494], [-124.897537, 54.055895], [-124.89852, 54.056635], [-124.899275, 54.057486], [-124.900087, 54.058839], [-124.900396, 54.059607], [-124.900605, 54.060836], [-124.900462, 54.062743], [-124.900312, 54.063132], [-124.899372, 54.06428], [-124.898761, 54.06464], [-124.897815, 54.064629], [-124.897238, 54.064754], [-124.894982, 54.064889], [-124.894018, 54.064849], [-124.891517, 54.064593], [-124.88916, 54.064754], [-124.889234, 54.064905], [-124.889224, 54.070232]]]]}, "properties": {"name": "Stellaquo (Stella) 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Stellaquo (Stella) 1", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951807", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.176033, 53.951707], [-124.176395, 53.951532], [-124.177111, 53.951022], [-124.17761, 53.950837], [-124.178504, 53.950668], [-124.178925, 53.950483], [-124.179606, 53.950315], [-124.18001, 53.950023], [-124.180209, 53.949554], [-124.180646, 53.949333], [-124.180931, 53.949259], [-124.181879, 53.949205], [-124.182178, 53.932746], [-124.14291, 53.932262], [-124.142748, 53.922363], [-124.141539, 53.923537], [-124.140779, 53.924065], [-124.138994, 53.925045], [-124.137021, 53.925889], [-124.135616, 53.92629], [-124.133495, 53.926741], [-124.132359, 53.926923], [-124.13005, 53.927789], [-124.128504, 53.928585], [-124.127038, 53.92905], [-124.126159, 53.929156], [-124.123522, 53.929099], [-124.123278, 53.929075], [-124.122753, 53.928846], [-124.122457, 53.928553], [-124.122603, 53.927788], [-124.123322, 53.927314], [-124.125458, 53.926305], [-124.125562, 53.926214], [-124.125495, 53.925989], [-124.124667, 53.925791], [-124.123806, 53.925493], [-124.123619, 53.925369], [-124.123349, 53.924966], [-124.122781, 53.92472], [-124.121559, 53.924606], [-124.120036, 53.924091], [-124.119687, 53.924048], [-124.117279, 53.924026], [-124.116295, 53.923649], [-124.115087, 53.92348], [-124.113525, 53.92317], [-124.112648, 53.92282], [-124.111404, 53.922427], [-124.109696, 53.922326], [-124.108082, 53.92234], [-124.105839, 53.922793], [-124.104349, 53.922816], [-124.103194, 53.922951], [-124.10268, 53.923074], [-124.101655, 53.923497], [-124.10025, 53.92385], [-124.097675, 53.923847], [-124.096551, 53.923938], [-124.094968, 53.923962], [-124.094103, 53.924059], [-124.093782, 53.924062], [-124.093446, 53.923994], [-124.093088, 53.923781], [-124.092612, 53.923615], [-124.091652, 53.923021], [-124.0909, 53.922776], [-124.090153, 53.922702], [-124.089445, 53.922403], [-124.088986, 53.921796], [-124.088549, 53.920191], [-124.088577, 53.919543], [-124.088784, 53.919254], [-124.088948, 53.919154], [-124.089449, 53.91905], [-124.091747, 53.919066], [-124.092242, 53.918737], [-124.092499, 53.918654], [-124.093351, 53.918637], [-124.092751, 53.918543], [-124.069868, 53.918192], [-124.069923, 53.923913], [-124.069864, 53.924193], [-124.069151, 53.924899], [-124.069218, 53.925802], [-124.069855, 53.926738], [-124.069993, 53.928163], [-124.070305, 53.961906], [-124.093004, 53.962607], [-124.10076, 53.962278], [-124.106744, 53.962195], [-124.107428, 53.962442], [-124.108176, 53.962853], [-124.108503, 53.963236], [-124.108758, 53.963342], [-124.109047, 53.963373], [-124.11051, 53.96307], [-124.110817, 53.96309], [-124.111199, 53.963198], [-124.111337, 53.963321], [-124.121163, 53.963741], [-124.122293, 53.963349], [-124.12279, 53.963084], [-124.124025, 53.962577], [-124.125794, 53.962022], [-124.127552, 53.961618], [-124.130541, 53.961087], [-124.132129, 53.960696], [-124.134076, 53.959948], [-124.135226, 53.95965], [-124.136388, 53.959243], [-124.136807, 53.958942], [-124.137452, 53.958038], [-124.137812, 53.9578], [-124.138109, 53.957474], [-124.138155, 53.956917], [-124.137851, 53.956416], [-124.137815, 53.956219], [-124.137822, 53.955338], [-124.13826, 53.954677], [-124.138484, 53.954513], [-124.138983, 53.954329], [-124.140273, 53.954173], [-124.141328, 53.954225], [-124.143263, 53.954747], [-124.144745, 53.954984], [-124.145698, 53.9552], [-124.146757, 53.95554], [-124.147048, 53.955574], [-124.147627, 53.95556], [-124.149614, 53.955181], [-124.151261, 53.955219], [-124.152066, 53.95513], [-124.153261, 53.954787], [-124.154231, 53.954633], [-124.155177, 53.954687], [-124.155427, 53.954909], [-124.155903, 53.955003], [-124.156705, 53.954798], [-124.157594, 53.954412], [-124.15979, 53.953905], [-124.160907, 53.953535], [-124.161498, 53.953458], [-124.163086, 53.953505], [-124.163922, 53.953416], [-124.164466, 53.953302], [-124.165779, 53.952823], [-124.167448, 53.952555], [-124.168876, 53.952451], [-124.170476, 53.952445], [-124.171947, 53.952152], [-124.173247, 53.951779], [-124.176033, 53.951707]]]]}, "properties": {"name": "Stony Creek 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Stony Creek 1", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951809", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.734158, 54.660951], [-124.73405, 54.676501], [-124.76845, 54.676349], [-124.781782, 54.676638], [-124.78116, 54.665343], [-124.781349, 54.663804], [-124.771078, 54.660319], [-124.766129, 54.656708], [-124.762514, 54.653471], [-124.7598, 54.649989], [-124.753726, 54.649345], [-124.746402, 54.651454], [-124.746266, 54.654807], [-124.742335, 54.650708], [-124.736952, 54.650141], [-124.728993, 54.649811], [-124.718526, 54.649697], [-124.709481, 54.649062], [-124.703553, 54.645875], [-124.702085, 54.646078], [-124.694745, 54.648281], [-124.688079, 54.648113], [-124.688473, 54.652967], [-124.704616, 54.653227], [-124.708872, 54.653661], [-124.710026, 54.655325], [-124.709914, 54.660068], [-124.734158, 54.660951]]]]}, "properties": {"name": "Tache 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Tache 1", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951810", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.022015, 55.324586], [-126.035837, 55.323579], [-126.034084, 55.316374], [-126.021117, 55.317235], [-126.022015, 55.324586]]], [[[-126.021498, 55.313145], [-126.021241, 55.311682], [-126.020898, 55.311817], [-126.020112, 55.311995], [-126.018105, 55.312192], [-126.01838, 55.313391], [-126.018561, 55.313256], [-126.021498, 55.313145]]]]}, "properties": {"name": "Tacla Lake (Ferry Landing) 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Tacla Lake (Ferry Landing) 9", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951811", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.172805, 53.930159], [-124.192932, 53.930459], [-124.197832, 53.93041], [-124.198319, 53.916513], [-124.197587, 53.916799], [-124.197036, 53.917182], [-124.19583, 53.917616], [-124.19471, 53.917887], [-124.19307, 53.918604], [-124.192601, 53.918736], [-124.191719, 53.918763], [-124.191004, 53.918716], [-124.189822, 53.918404], [-124.188405, 53.917843], [-124.187429, 53.917204], [-124.185257, 53.916884], [-124.184949, 53.916789], [-124.183297, 53.915968], [-124.182714, 53.915849], [-124.182197, 53.915854], [-124.179853, 53.91639], [-124.177879, 53.916579], [-124.175565, 53.916621], [-124.174863, 53.916582], [-124.174206, 53.916481], [-124.172999, 53.916179], [-124.172884, 53.918594], [-124.172805, 53.930159]]]]}, "properties": {"name": "Laketown 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Laketown 3", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951813", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.163687, 54.886399], [-125.163873, 54.882772], [-125.161988, 54.882779], [-125.161205, 54.883008], [-125.160973, 54.883021], [-125.158445, 54.882706], [-125.157085, 54.882353], [-125.155591, 54.881821], [-125.154586, 54.881381], [-125.153639, 54.880877], [-125.153176, 54.88039], [-125.153132, 54.880122], [-125.153219, 54.879752], [-125.153412, 54.879514], [-125.154094, 54.87917], [-125.155743, 54.878835], [-125.157632, 54.877687], [-125.158167, 54.877506], [-125.158521, 54.877438], [-125.160548, 54.877446], [-125.162294, 54.877711], [-125.162527, 54.877698], [-125.163215, 54.877471], [-125.163495, 54.877142], [-125.163537, 54.876468], [-125.16306, 54.876026], [-125.161868, 54.87532], [-125.161343, 54.875113], [-125.160919, 54.875031], [-125.158854, 54.874906], [-125.157624, 54.874937], [-125.153715, 54.875311], [-125.151167, 54.875761], [-125.150849, 54.875911], [-125.150531, 54.876402], [-125.15033, 54.876989], [-125.150186, 54.87808], [-125.15003, 54.878379], [-125.149517, 54.879009], [-125.148757, 54.879382], [-125.148782, 54.879543], [-125.14865, 54.879717], [-125.14773, 54.880001], [-125.147038, 54.879897], [-125.144875, 54.879944], [-125.143664, 54.879751], [-125.142795, 54.87955], [-125.142333, 54.87936], [-125.141896, 54.879071], [-125.141499, 54.878908], [-125.140027, 54.877918], [-125.139909, 54.877748], [-125.139913, 54.877525], [-125.140156, 54.877116], [-125.140156, 54.87681], [-125.139758, 54.876062], [-125.138485, 54.874403], [-125.137957, 54.873846], [-125.137124, 54.873142], [-125.136577, 54.872783], [-125.135617, 54.872323], [-125.133536, 54.871569], [-125.132033, 54.871164], [-125.130979, 54.870688], [-125.129709, 54.870251], [-125.129175, 54.870163], [-125.128536, 54.869904], [-125.127575, 54.869679], [-125.125295, 54.869008], [-125.124964, 54.868959], [-125.123965, 54.868618], [-125.121631, 54.868119], [-125.120203, 54.86792], [-125.117964, 54.867393], [-125.117667, 54.867406], [-125.117304, 54.867584], [-125.116712, 54.867585], [-125.116391, 54.867428], [-125.116256, 54.866954], [-125.115484, 54.866501], [-125.114788, 54.866298], [-125.114148, 54.866281], [-125.113655, 54.866389], [-125.113749, 54.868158], [-125.11394, 54.868524], [-125.114464, 54.869018], [-125.11472, 54.869147], [-125.11481, 54.869065], [-125.114244, 54.868391], [-125.114283, 54.868266], [-125.114517, 54.86827], [-125.114835, 54.868373], [-125.115045, 54.868539], [-125.115111, 54.869194], [-125.115356, 54.869684], [-125.115793, 54.872104], [-125.115814, 54.872454], [-125.115566, 54.872801], [-125.115502, 54.87308], [-125.115781, 54.873328], [-125.115239, 54.874324], [-125.114116, 54.875487], [-125.113667, 54.875817], [-125.112549, 54.876233], [-125.106859, 54.877707], [-125.102923, 54.878467], [-125.100938, 54.878673], [-125.100022, 54.878688], [-125.104653, 54.888304], [-125.163687, 54.886399]]]]}, "properties": {"name": "Dzitline Lee 9", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Dzitline Lee 9", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951814", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.763098, 54.241258], [-125.763191, 54.241685], [-125.763895, 54.241703], [-125.772047, 54.241229], [-125.77237, 54.236651], [-125.77139, 54.235937], [-125.769312, 54.237046], [-125.767092, 54.236058], [-125.76644, 54.236691], [-125.765621, 54.2363], [-125.764945, 54.2362], [-125.763805, 54.237781], [-125.763098, 54.241258]]], [[[-125.765579, 54.234244], [-125.765841, 54.234858], [-125.765542, 54.235372], [-125.765853, 54.235494], [-125.766836, 54.234329], [-125.765734, 54.233997], [-125.765579, 54.234244]]], [[[-125.769181, 54.231639], [-125.772323, 54.233884], [-125.771583, 54.23422], [-125.772318, 54.234784], [-125.772771, 54.234633], [-125.772933, 54.23053], [-125.77257, 54.230253], [-125.771397, 54.229696], [-125.770287, 54.229388], [-125.769418, 54.229021], [-125.769099, 54.228721], [-125.768466, 54.229207], [-125.76747, 54.228771], [-125.76824, 54.228141], [-125.767397, 54.227711], [-125.766184, 54.226768], [-125.765707, 54.226527], [-125.764916, 54.225933], [-125.764479, 54.225376], [-125.764498, 54.224765], [-125.764691, 54.224519], [-125.763175, 54.223739], [-125.762815, 54.224123], [-125.762945, 54.224168], [-125.762991, 54.224298], [-125.762983, 54.226473], [-125.762678, 54.226608], [-125.769181, 54.231639]]]]}, "properties": {"name": "Burns Lake 18", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Burns Lake 18", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951815", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.693522, 54.000536], [-125.698995, 54.000778], [-125.699881, 54.014813], [-125.718515, 54.014643], [-125.718063, 53.999795], [-125.706537, 53.99999], [-125.706272, 53.993098], [-125.693139, 53.99331], [-125.693522, 54.000536]]], [[[-125.752712, 53.678164], [-125.765172, 53.678009], [-125.764626, 53.663385], [-125.752426, 53.663501], [-125.752712, 53.678164]]], [[[-125.647493, 53.959019], [-125.670081, 53.958789], [-125.669094, 53.951954], [-125.659899, 53.951857], [-125.647427, 53.952115], [-125.647493, 53.959019]]], [[[-125.718337, 53.963047], [-125.718241, 53.963184], [-125.718291, 53.963488], [-125.718576, 53.963887], [-125.719579, 53.965015], [-125.720283, 53.965474], [-125.723197, 53.954239], [-125.716546, 53.954907], [-125.71726, 53.955393], [-125.718263, 53.956288], [-125.718963, 53.956739], [-125.719721, 53.957602], [-125.720608, 53.958338], [-125.721007, 53.958868], [-125.721136, 53.959207], [-125.721143, 53.959783], [-125.720497, 53.960147], [-125.720298, 53.960377], [-125.720123, 53.961217], [-125.719247, 53.962037], [-125.719074, 53.962652], [-125.718842, 53.962829], [-125.718337, 53.963047]]], [[[-125.679556, 53.984151], [-125.692282, 53.984082], [-125.692179, 53.976728], [-125.679592, 53.976675], [-125.679556, 53.984151]]], [[[-125.730447, 53.970677], [-125.730703, 53.970861], [-125.730903, 53.971243], [-125.730638, 53.972241], [-125.730591, 53.97281], [-125.73068, 53.976048], [-125.730585, 53.977273], [-125.743553, 53.976898], [-125.74316, 53.969359], [-125.730427, 53.969025], [-125.730447, 53.970677]]], [[[-125.779836, 53.975167], [-125.791284, 53.974773], [-125.791168, 53.974116], [-125.790742, 53.973227], [-125.790417, 53.972911], [-125.788981, 53.971974], [-125.788653, 53.971639], [-125.78861, 53.97075], [-125.78884, 53.970547], [-125.789464, 53.970541], [-125.789966, 53.970719], [-125.790728, 53.97143], [-125.792407, 53.971572], [-125.792918, 53.967633], [-125.779448, 53.967799], [-125.779391, 53.970319], [-125.779836, 53.975167]]], [[[-125.87902, 53.971208], [-125.88074, 53.971182], [-125.881987, 53.971477], [-125.882581, 53.97215], [-125.882628, 53.972744], [-125.892102, 53.972404], [-125.891619, 53.964151], [-125.891807, 53.963752], [-125.891897, 53.963151], [-125.891861, 53.958631], [-125.878666, 53.958288], [-125.87902, 53.971208]]], [[[-125.836319, 54.001047], [-125.848936, 54.001051], [-125.849085, 53.996565], [-125.848943, 53.994767], [-125.847232, 53.994862], [-125.836096, 53.994367], [-125.836319, 54.001047]]], [[[-125.987618, 53.966084], [-125.987643, 53.958753], [-125.981078, 53.958682], [-125.981982, 53.959116], [-125.981994, 53.959476], [-125.98185, 53.959596], [-125.980448, 53.959803], [-125.978495, 53.959787], [-125.976656, 53.959447], [-125.975534, 53.95934], [-125.974621, 53.958931], [-125.973789, 53.958807], [-125.973211, 53.958183], [-125.97322, 53.957886], [-125.973912, 53.957122], [-125.973883, 53.956701], [-125.973993, 53.956537], [-125.974946, 53.956423], [-125.975494, 53.956221], [-125.974922, 53.955883], [-125.974851, 53.955509], [-125.974415, 53.95497], [-125.973429, 53.954383], [-125.973181, 53.954354], [-125.972823, 53.954443], [-125.972666, 53.954608], [-125.972625, 53.955114], [-125.972366, 53.955326], [-125.972156, 53.955351], [-125.970199, 53.955291], [-125.969167, 53.955145], [-125.966043, 53.954522], [-125.963672, 53.954373], [-125.963183, 53.95429], [-125.962944, 53.965906], [-125.987618, 53.966084]]]]}, "properties": {"name": "Cheslatta 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Cheslatta 1", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951818", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.848788, 53.987536], [-125.84869, 53.991047], [-125.84882, 53.993077], [-125.848763, 53.993282], [-125.848943, 53.994767], [-125.85433, 53.994679], [-125.855386, 53.994294], [-125.855738, 53.994079], [-125.856253, 53.993572], [-125.856858, 53.992622], [-125.8575, 53.992175], [-125.857946, 53.992021], [-125.858299, 53.992031], [-125.858627, 53.992131], [-125.859558, 53.993259], [-125.859745, 53.993992], [-125.859742, 53.994388], [-125.859577, 53.994705], [-125.860859, 53.994744], [-125.86078, 53.987551], [-125.848788, 53.987536]]]]}, "properties": {"name": "Omineca 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Omineca 1", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951819", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.903106, 54.33429], [-125.90346, 54.330054], [-125.902714, 54.330396], [-125.901614, 54.330709], [-125.901097, 54.330795], [-125.899947, 54.33084], [-125.899831, 54.331148], [-125.8989, 54.330856], [-125.898992, 54.331914], [-125.89884, 54.332179], [-125.898385, 54.332487], [-125.897641, 54.332622], [-125.89704, 54.332834], [-125.896781, 54.332876], [-125.896195, 54.332836], [-125.895508, 54.332691], [-125.894634, 54.33228], [-125.894371, 54.332052], [-125.893207, 54.330399], [-125.892684, 54.330143], [-125.892309, 54.33008], [-125.891692, 54.329852], [-125.891197, 54.329584], [-125.890074, 54.328703], [-125.889722, 54.328523], [-125.890144, 54.33029], [-125.890075, 54.330342], [-125.886267, 54.330512], [-125.883514, 54.32674], [-125.877393, 54.327113], [-125.878532, 54.334275], [-125.885542, 54.334052], [-125.885452, 54.332711], [-125.886782, 54.332656], [-125.886649, 54.332297], [-125.888646, 54.332316], [-125.888701, 54.333619], [-125.903106, 54.33429]]]]}, "properties": {"name": "Palling 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Palling 1", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951820", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.132703, 54.42153], [-126.133372, 54.421672], [-126.134199, 54.421755], [-126.134592, 54.421872], [-126.134812, 54.42203], [-126.134863, 54.422202], [-126.135175, 54.422578], [-126.135741, 54.423095], [-126.137381, 54.423646], [-126.138305, 54.423893], [-126.139218, 54.424283], [-126.139826, 54.424415], [-126.141385, 54.424908], [-126.141299, 54.423161], [-126.141533, 54.419936], [-126.141143, 54.416482], [-126.127494, 54.416348], [-126.127984, 54.423737], [-126.129832, 54.42335], [-126.130712, 54.423102], [-126.131081, 54.422921], [-126.131472, 54.422617], [-126.13183, 54.422121], [-126.131834, 54.421843], [-126.132032, 54.421668], [-126.132347, 54.42154], [-126.132703, 54.42153]]]]}, "properties": {"name": "Duncan Lake 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Duncan Lake 2", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951821", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.962717, 54.015683], [-125.964234, 54.014908], [-125.964836, 54.014786], [-125.964869, 54.013814], [-125.962975, 54.013899], [-125.962899, 54.002245], [-125.950441, 54.002383], [-125.950567, 54.008803], [-125.948237, 54.008888], [-125.938306, 54.008984], [-125.938367, 54.011503], [-125.940894, 54.011283], [-125.942287, 54.011348], [-125.943369, 54.011501], [-125.945016, 54.011479], [-125.946929, 54.011792], [-125.948329, 54.012135], [-125.950156, 54.012729], [-125.95208, 54.013185], [-125.955374, 54.014615], [-125.955554, 54.014781], [-125.955658, 54.015156], [-125.955879, 54.015501], [-125.956494, 54.016187], [-125.957124, 54.016676], [-125.958919, 54.016577], [-125.9599, 54.016455], [-125.960835, 54.01627], [-125.962717, 54.015683]]]]}, "properties": {"name": "Francois Lake 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Francois Lake 7", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951822", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.871644, 53.99478], [-125.871595, 54.000432], [-125.886864, 54.000375], [-125.886806, 53.994074], [-125.877603, 53.994342], [-125.871644, 53.99478]]]]}, "properties": {"name": "Skins Lake 16A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Skins Lake 16A", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951823", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.647427, 53.952115], [-125.659899, 53.951857], [-125.661136, 53.946109], [-125.661662, 53.944951], [-125.658099, 53.945205], [-125.649071, 53.94494], [-125.647427, 53.952115]]]]}, "properties": {"name": "Skins Lake 16B", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Skins Lake 16B", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951824", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.491322, 53.99052], [-126.497264, 53.990526], [-126.500092, 53.990467], [-126.500185, 53.984269], [-126.500103, 53.98296], [-126.499663, 53.982673], [-126.499511, 53.982391], [-126.499308, 53.982224], [-126.498919, 53.9821], [-126.49843, 53.982107], [-126.497717, 53.982542], [-126.497239, 53.982631], [-126.496134, 53.9825], [-126.495171, 53.982516], [-126.494769, 53.982391], [-126.492676, 53.98241], [-126.491555, 53.982297], [-126.490515, 53.982296], [-126.49085, 53.984736], [-126.491322, 53.99052]]]]}, "properties": {"name": "Tatla West 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Tatla West 11", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951825", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.663812, 53.931231], [-125.663641, 53.937111], [-125.675882, 53.937234], [-125.675962, 53.934436], [-125.675709, 53.934298], [-125.67403, 53.933778], [-125.672991, 53.933271], [-125.672524, 53.93311], [-125.669273, 53.932751], [-125.668436, 53.932563], [-125.66729, 53.93177], [-125.665253, 53.931609], [-125.664196, 53.931281], [-125.663812, 53.931231]]]]}, "properties": {"name": "Uncha Lake 13A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Uncha Lake 13A", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951826", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.76177, 54.241757], [-125.763191, 54.241685], [-125.763098, 54.241258], [-125.763696, 54.238064], [-125.763805, 54.237781], [-125.764945, 54.2362], [-125.762435, 54.236164], [-125.760008, 54.236274], [-125.760015, 54.237447], [-125.757095, 54.23745], [-125.757092, 54.236641], [-125.753972, 54.236652], [-125.753996, 54.237193], [-125.744831, 54.237433], [-125.744668, 54.239002], [-125.74501, 54.239396], [-125.745367, 54.241102], [-125.754003, 54.241093], [-125.753994, 54.242317], [-125.760008, 54.242309], [-125.760038, 54.241702], [-125.76177, 54.241757]], [[-125.760035, 54.239211], [-125.760063, 54.240863], [-125.759799, 54.240863], [-125.759135, 54.240586], [-125.757315, 54.239215], [-125.760035, 54.239211]]]]}, "properties": {"name": "Woyenne 27", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Woyenne 27", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951827", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.611902, 55.330641], [-126.632831, 55.330645], [-126.629659, 55.328683], [-126.629242, 55.327397], [-126.629388, 55.324623], [-126.629351, 55.322797], [-126.628214, 55.321284], [-126.628082, 55.320376], [-126.628534, 55.318449], [-126.628342, 55.316813], [-126.630236, 55.316862], [-126.630094, 55.315735], [-126.609601, 55.316066], [-126.611902, 55.330641]]]]}, "properties": {"name": "Babine 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Babine 6", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951828", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.143506, 54.818508], [-126.1446, 54.818463], [-126.144999, 54.818552], [-126.145542, 54.818782], [-126.145943, 54.818844], [-126.148455, 54.818544], [-126.150196, 54.818568], [-126.151229, 54.818726], [-126.152129, 54.818532], [-126.15277, 54.818503], [-126.153089, 54.818608], [-126.153846, 54.819139], [-126.15406, 54.819216], [-126.154308, 54.81968], [-126.154735, 54.819797], [-126.154723, 54.819951], [-126.154365, 54.820185], [-126.154292, 54.820552], [-126.154288, 54.820848], [-126.154657, 54.821342], [-126.154644, 54.821771], [-126.15576, 54.82177], [-126.15683, 54.814253], [-126.155282, 54.814012], [-126.153567, 54.814085], [-126.152471, 54.814435], [-126.150086, 54.81476], [-126.149332, 54.814809], [-126.14571, 54.814223], [-126.146124, 54.814525], [-126.145674, 54.81473], [-126.144301, 54.814976], [-126.141081, 54.81518], [-126.139934, 54.815089], [-126.139529, 54.815107], [-126.138787, 54.815691], [-126.138594, 54.815983], [-126.138577, 54.816244], [-126.139003, 54.816604], [-126.139535, 54.817219], [-126.140166, 54.818205], [-126.140521, 54.818457], [-126.142055, 54.818799], [-126.142743, 54.818733], [-126.143506, 54.818508]]]]}, "properties": {"name": "Babine 25", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Babine 25", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951829", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.000276, 54.74426], [-127.002488, 54.749962], [-127.028477, 54.751274], [-127.028774, 54.74336], [-127.016914, 54.743321], [-127.012571, 54.743388], [-127.001699, 54.743412], [-127.001113, 54.743515], [-127.000852, 54.743659], [-127.000276, 54.74426]]]]}, "properties": {"name": "Jean Baptiste 28", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Jean Baptiste 28", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951830", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.628534, 55.318449], [-126.628082, 55.320376], [-126.628214, 55.321284], [-126.629351, 55.322797], [-126.629388, 55.324623], [-126.629242, 55.327397], [-126.629659, 55.328683], [-126.632831, 55.330645], [-126.633452, 55.331454], [-126.658395, 55.331313], [-126.659042, 55.3176], [-126.628342, 55.316813], [-126.628534, 55.318449]]]]}, "properties": {"name": "Babine 16", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Babine 16", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951831", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.06783, 54.021138], [-124.068977, 54.0219], [-124.070247, 54.02258], [-124.071615, 54.023476], [-124.073268, 54.024271], [-124.073943, 54.024463], [-124.075129, 54.025413], [-124.07594, 54.025487], [-124.076701, 54.025847], [-124.077668, 54.026775], [-124.077899, 54.027169], [-124.080595, 54.02709], [-124.080315, 54.016679], [-124.067444, 54.016516], [-124.06783, 54.021138]]]]}, "properties": {"name": "Noonla 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Noonla 6", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951832", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.482075, 53.990805], [-126.491322, 53.99052], [-126.49085, 53.984736], [-126.490515, 53.982296], [-126.489921, 53.982308], [-126.488974, 53.982081], [-126.488089, 53.982099], [-126.487629, 53.981899], [-126.487128, 53.981845], [-126.486822, 53.981847], [-126.486264, 53.982015], [-126.484567, 53.982087], [-126.483319, 53.982034], [-126.482333, 53.982203], [-126.481659, 53.982224], [-126.482075, 53.990805]]]]}, "properties": {"name": "Tatla't East 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Tatla't East 2", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951833", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.190983, 54.471295], [-124.189218, 54.472031], [-124.190539, 54.473151], [-124.193398, 54.475194], [-124.203394, 54.475074], [-124.203404, 54.467677], [-124.190992, 54.467757], [-124.190983, 54.471295]]]]}, "properties": {"name": "Williams Prairie Meadow 1A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Williams Prairie Meadow 1A", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951840", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.78398, 54.228991], [-125.783794, 54.22922], [-125.783825, 54.22988], [-125.788476, 54.229881], [-125.788477, 54.222655], [-125.781524, 54.223022], [-125.781887, 54.223654], [-125.782182, 54.223954], [-125.782941, 54.224295], [-125.784263, 54.224543], [-125.785567, 54.22499], [-125.786503, 54.225453], [-125.786335, 54.2257], [-125.786388, 54.225798], [-125.787048, 54.226268], [-125.787115, 54.226546], [-125.786908, 54.226927], [-125.786566, 54.227295], [-125.785677, 54.227756], [-125.784465, 54.228216], [-125.784576, 54.228726], [-125.78452, 54.228799], [-125.78398, 54.228991]]]]}, "properties": {"name": "Poison Creek 17A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Poison Creek 17A", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951844", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.501352, 55.061987], [-126.500294, 55.067417], [-126.496132, 55.067253], [-126.495758, 55.071397], [-126.507229, 55.072186], [-126.507014, 55.072609], [-126.506926, 55.075626], [-126.506768, 55.075995], [-126.51962, 55.07736], [-126.522155, 55.070415], [-126.521564, 55.070199], [-126.520382, 55.069322], [-126.519967, 55.069169], [-126.51962, 55.068947], [-126.519116, 55.06827], [-126.518742, 55.067957], [-126.51836, 55.067293], [-126.517211, 55.066362], [-126.516991, 55.065359], [-126.516645, 55.064895], [-126.516252, 55.064661], [-126.515698, 55.063985], [-126.515616, 55.063318], [-126.515265, 55.062628], [-126.514769, 55.062303], [-126.513963, 55.061927], [-126.513452, 55.061817], [-126.512952, 55.061826], [-126.5126, 55.061927], [-126.509825, 55.061995], [-126.509533, 55.062125], [-126.508919, 55.062183], [-126.508261, 55.062467], [-126.507932, 55.062693], [-126.507229, 55.06294], [-126.506595, 55.063044], [-126.505735, 55.063035], [-126.504687, 55.062753], [-126.503707, 55.062616], [-126.501738, 55.062045], [-126.501352, 55.061987]]]]}, "properties": {"name": "Tadinlay 15", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Tadinlay 15", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951845", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.343612, 55.043676], [-126.343319, 55.043552], [-126.342902, 55.0432], [-126.342538, 55.043058], [-126.342102, 55.043022], [-126.341733, 55.042924], [-126.340503, 55.04233], [-126.338528, 55.041891], [-126.337121, 55.04142], [-126.336374, 55.041106], [-126.335349, 55.040977], [-126.334565, 55.04078], [-126.333881, 55.040693], [-126.333407, 55.040521], [-126.332178, 55.040421], [-126.330533, 55.040413], [-126.330011, 55.040258], [-126.32931, 55.040206], [-126.328135, 55.039776], [-126.327101, 55.039547], [-126.326227, 55.0395], [-126.323804, 55.039204], [-126.322277, 55.038873], [-126.320958, 55.038459], [-126.319494, 55.037869], [-126.319182, 55.037646], [-126.318695, 55.037438], [-126.318037, 55.036973], [-126.317384, 55.036653], [-126.317183, 55.036371], [-126.317033, 55.036286], [-126.316469, 55.03631], [-126.316082, 55.036499], [-126.316064, 55.036993], [-126.315969, 55.037216], [-126.315355, 55.037535], [-126.314625, 55.03768], [-126.313061, 55.038123], [-126.311876, 55.038527], [-126.311695, 55.038856], [-126.31134, 55.039056], [-126.310981, 55.039479], [-126.310915, 55.039746], [-126.310609, 55.040145], [-126.30985, 55.040937], [-126.308801, 55.041661], [-126.307419, 55.042403], [-126.306995, 55.042888], [-126.306629, 55.044399], [-126.306288, 55.044814], [-126.305655, 55.045087], [-126.304333, 55.054227], [-126.341725, 55.055737], [-126.343612, 55.043676]]]]}, "properties": {"name": "Nedoats 11", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Nedoats 11", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951846", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.645866, 54.49095], [-125.646745, 54.491263], [-125.647757, 54.491482], [-125.648287, 54.491723], [-125.648981, 54.492235], [-125.649103, 54.490301], [-125.646007, 54.490427], [-125.645866, 54.49095]]]]}, "properties": {"name": "Babine Lake 21B", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Babine Lake 21B", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951847", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.974415, 55.484697], [-125.975666, 55.485158], [-125.976211, 55.488337], [-125.983631, 55.488163], [-125.983559, 55.487592], [-125.983874, 55.486515], [-125.983905, 55.484644], [-125.98369, 55.484299], [-125.983106, 55.483907], [-125.982758, 55.483765], [-125.979899, 55.483165], [-125.97783, 55.483277], [-125.978099, 55.481945], [-125.977626, 55.48156], [-125.97605, 55.481146], [-125.974039, 55.480811], [-125.973342, 55.480801], [-125.971869, 55.480991], [-125.970733, 55.481036], [-125.969678, 55.480927], [-125.968571, 55.480729], [-125.966253, 55.480012], [-125.965441, 55.479643], [-125.963006, 55.479128], [-125.962359, 55.478937], [-125.962043, 55.478738], [-125.961374, 55.477622], [-125.960904, 55.477282], [-125.957788, 55.476882], [-125.955013, 55.477123], [-125.954278, 55.47739], [-125.95102, 55.477383], [-125.94978, 55.478875], [-125.948708, 55.479923], [-125.948443, 55.480406], [-125.947972, 55.480669], [-125.9478, 55.48085], [-125.947185, 55.481976], [-125.946204, 55.482367], [-125.949348, 55.484991], [-125.950527, 55.48703], [-125.950766, 55.488664], [-125.953855, 55.49006], [-125.965196, 55.490681], [-125.965326, 55.489057], [-125.967766, 55.488008], [-125.97275, 55.487381], [-125.972684, 55.48489], [-125.974415, 55.484697]], [[-125.970473, 55.48641], [-125.971431, 55.48618], [-125.971855, 55.486737], [-125.970891, 55.486967], [-125.970473, 55.48641]]]]}, "properties": {"name": "North Tacla Lake", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "North Tacla Lake", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951848", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.262942, 54.456995], [-124.264082, 54.457298], [-124.264899, 54.457439], [-124.265936, 54.457517], [-124.274289, 54.457536], [-124.274143, 54.452567], [-124.27376, 54.452484], [-124.27111, 54.452196], [-124.267946, 54.451013], [-124.265433, 54.449777], [-124.264194, 54.449789], [-124.263332, 54.45619], [-124.263209, 54.456625], [-124.262942, 54.456995]]]]}, "properties": {"name": "Mission Lands 17", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Mission Lands 17", "economic_region_id": "5970", "census_division_code": "5951", "census_subdivision_code": "5951849", "regional_district_aka_census_division": "Bulkley-Nechako"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.255937, 52.840056], [-119.263929, 52.839701], [-119.264812, 52.846511], [-119.270867, 52.846366], [-119.270481, 52.839993], [-119.270021, 52.835348], [-119.271031, 52.83508], [-119.272461, 52.835177], [-119.273104, 52.835109], [-119.273569, 52.834937], [-119.273903, 52.834457], [-119.275018, 52.834244], [-119.275449, 52.833848], [-119.276205, 52.833599], [-119.277311, 52.833599], [-119.278495, 52.833723], [-119.281279, 52.833811], [-119.281774, 52.833912], [-119.282898, 52.833892], [-119.282053, 52.830365], [-119.282439, 52.827731], [-119.282851, 52.818757], [-119.27915, 52.816286], [-119.275926, 52.81595], [-119.273479, 52.815509], [-119.272255, 52.815035], [-119.270183, 52.814945], [-119.268538, 52.815073], [-119.265023, 52.815634], [-119.263331, 52.816083], [-119.261764, 52.8166], [-119.260415, 52.817144], [-119.25926, 52.817752], [-119.258313, 52.818347], [-119.258301, 52.822798], [-119.252015, 52.822821], [-119.251497, 52.824789], [-119.246557, 52.824794], [-119.244354, 52.824508], [-119.244402, 52.825562], [-119.245791, 52.832484], [-119.254137, 52.831982], [-119.253849, 52.836015], [-119.252498, 52.83999], [-119.255937, 52.840056]]]]}, "properties": {"name": "Valemount", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Valemount", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953007", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.177903, 53.322953], [-120.178284, 53.323106], [-120.178767, 53.323464], [-120.178661, 53.322676], [-120.182753, 53.321323], [-120.182711, 53.319794], [-120.183586, 53.31663], [-120.184108, 53.315729], [-120.180405, 53.309401], [-120.181493, 53.305881], [-120.176051, 53.305882], [-120.17458, 53.30204], [-120.174754, 53.295028], [-120.168087, 53.295026], [-120.165297, 53.290674], [-120.164002, 53.289043], [-120.162552, 53.290474], [-120.158917, 53.291339], [-120.158552, 53.293127], [-120.157924, 53.293569], [-120.157005, 53.293834], [-120.157473, 53.295379], [-120.157512, 53.298647], [-120.150974, 53.298651], [-120.150853, 53.301892], [-120.150954, 53.303806], [-120.148093, 53.303885], [-120.147019, 53.30643], [-120.147936, 53.306835], [-120.148267, 53.306835], [-120.149412, 53.307204], [-120.151144, 53.307596], [-120.152407, 53.307995], [-120.15305, 53.308711], [-120.153417, 53.309269], [-120.153676, 53.309454], [-120.154706, 53.310694], [-120.1549, 53.311166], [-120.155137, 53.311396], [-120.155333, 53.311833], [-120.155571, 53.312108], [-120.155751, 53.312571], [-120.156823, 53.314053], [-120.15734, 53.314631], [-120.157802, 53.314922], [-120.158181, 53.315084], [-120.159007, 53.315301], [-120.161109, 53.315307], [-120.161618, 53.315364], [-120.163592, 53.315698], [-120.166106, 53.316288], [-120.166739, 53.316249], [-120.167315, 53.31638], [-120.167944, 53.316413], [-120.168607, 53.316608], [-120.16933, 53.31703], [-120.170027, 53.317614], [-120.170549, 53.317869], [-120.171326, 53.318417], [-120.17286, 53.319732], [-120.173151, 53.320089], [-120.173525, 53.32035], [-120.174205, 53.320734], [-120.174646, 53.320897], [-120.174946, 53.32112], [-120.175903, 53.32162], [-120.177903, 53.322953]]]]}, "properties": {"name": "McBride", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "McBride", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953012", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.933105, 53.894221], [-120.954201, 53.902582], [-120.969555, 53.90603], [-120.975351, 53.906327], [-120.987201, 53.903567], [-121.000475, 53.90318], [-121.006703, 53.904993], [-121.011677, 53.910295], [-121.009433, 53.919271], [-120.99412, 53.937919], [-120.99261, 53.945114], [-120.996454, 53.952394], [-121.00686, 53.962871], [-121.028687, 53.977688], [-121.059432, 53.990166], [-121.085536, 53.997406], [-121.112569, 54.000756], [-121.108788, 53.928757], [-121.106656, 53.891869], [-121.104615, 53.863316], [-121.10381, 53.846969], [-121.098908, 53.810958], [-121.097555, 53.800428], [-121.096448, 53.793655], [-121.09603, 53.788452], [-121.099541, 53.788798], [-121.102164, 53.788303], [-121.103944, 53.787177], [-121.105222, 53.783569], [-121.107017, 53.780352], [-121.111652, 53.775265], [-121.114221, 53.773366], [-121.119289, 53.770554], [-121.124206, 53.768373], [-121.127079, 53.76741], [-121.131305, 53.766855], [-121.132338, 53.766953], [-121.130189, 53.730366], [-121.130082, 53.725661], [-121.120248, 53.719864], [-121.113253, 53.713838], [-121.1134, 53.707144], [-121.117831, 53.700046], [-121.137661, 53.687494], [-121.138984, 53.678795], [-121.144805, 53.652369], [-121.150354, 53.645777], [-121.17002, 53.636491], [-121.177363, 53.619805], [-121.187834, 53.599658], [-121.195686, 53.590388], [-121.207065, 53.584499], [-121.212177, 53.567714], [-121.18045, 53.5632], [-121.172251, 53.559305], [-121.12, 53.53524], [-121.114517, 53.520579], [-121.107334, 53.515768], [-121.090181, 53.520649], [-121.05601, 53.529304], [-121.043946, 53.533509], [-121.009826, 53.519201], [-121.015005, 53.511389], [-121.018381, 53.499698], [-121.013134, 53.480151], [-121.017989, 53.475792], [-121.014924, 53.471237], [-121.023648, 53.461756], [-121.026429, 53.452337], [-121.009868, 53.441267], [-121.008286, 53.430403], [-121.004701, 53.411873], [-120.997872, 53.389181], [-120.998278, 53.383036], [-121.018193, 53.329766], [-121.002288, 53.325422], [-120.990426, 53.319888], [-120.980221, 53.313593], [-120.975348, 53.304358], [-120.976185, 53.289329], [-120.977319, 53.284067], [-120.976062, 53.28088], [-120.972055, 53.278779], [-120.962538, 53.278842], [-120.946037, 53.281496], [-120.941443, 53.283114], [-120.938101, 53.286815], [-120.9389, 53.295014], [-120.937543, 53.300582], [-120.935504, 53.30254], [-120.927029, 53.306654], [-120.922812, 53.30707], [-120.906741, 53.30304], [-120.885374, 53.298101], [-120.88028, 53.295223], [-120.867571, 53.285833], [-120.860461, 53.283546], [-120.85298, 53.281639], [-120.84365, 53.281364], [-120.833381, 53.282725], [-120.822728, 53.285285], [-120.811163, 53.287845], [-120.79994, 53.266886], [-120.79545, 53.261391], [-120.787481, 53.256644], [-120.777272, 53.255279], [-120.767405, 53.255549], [-120.751662, 53.257608], [-120.733163, 53.260573], [-120.718672, 53.263996], [-120.715009, 53.264523], [-120.708991, 53.263831], [-120.694319, 53.256411], [-120.671023, 53.241166], [-120.627163, 53.213961], [-120.614412, 53.203261], [-120.607609, 53.19654], [-120.604025, 53.193232], [-120.600986, 53.190038], [-120.598461, 53.188598], [-120.593347, 53.189001], [-120.583097, 53.190901], [-120.575403, 53.192598], [-120.56961, 53.190478], [-120.525173, 53.170781], [-120.502224, 53.162491], [-120.476909, 53.156215], [-120.470612, 53.153412], [-120.466718, 53.149096], [-120.462805, 53.138524], [-120.462138, 53.133339], [-120.462496, 53.128635], [-120.462597, 53.124713], [-120.461137, 53.121776], [-120.456143, 53.118449], [-120.44501, 53.115132], [-120.429558, 53.11006], [-120.422683, 53.10657], [-120.417066, 53.100242], [-120.41505, 53.091808], [-120.417042, 53.082304], [-120.42163, 53.071711], [-120.425288, 53.067841], [-120.474238, 53.065544], [-120.488419, 53.054554], [-120.45739, 52.999311], [-120.451299, 52.990655], [-120.441102, 52.978594], [-120.434201, 52.972626], [-120.426995, 52.968604], [-120.418527, 52.965323], [-120.411238, 52.964302], [-120.396576, 52.965642], [-120.3854, 52.966325], [-120.376763, 52.964766], [-120.37188, 52.962107], [-120.364409, 52.955005], [-120.361678, 52.951163], [-120.358748, 52.945896], [-120.353095, 52.940307], [-120.348885, 52.937439], [-120.345652, 52.934936], [-120.341523, 52.93306], [-120.338438, 52.927389], [-120.327034, 52.924779], [-120.317077, 52.924441], [-120.309274, 52.922501], [-120.300838, 52.921199], [-120.293935, 52.923731], [-120.285785, 52.923418], [-120.275487, 52.925682], [-120.269351, 52.928867], [-120.262112, 52.927148], [-120.253411, 52.923614], [-120.248094, 52.92112], [-120.235064, 52.919955], [-120.22713, 52.918315], [-120.217275, 52.922234], [-120.215662, 52.928122], [-120.20833, 52.932839], [-120.201287, 52.932513], [-120.187842, 52.924017], [-120.180489, 52.922332], [-120.17592, 52.922433], [-120.17037, 52.924954], [-120.163909, 52.923924], [-120.159125, 52.921344], [-120.166911, 52.914195], [-120.165868, 52.89851], [-120.161952, 52.893016], [-120.152668, 52.887439], [-120.146587, 52.884604], [-120.142597, 52.876767], [-120.128897, 52.869692], [-120.115602, 52.861753], [-120.112964, 52.858778], [-120.111481, 52.843142], [-120.10278, 52.839484], [-120.094426, 52.836658], [-120.089867, 52.835541], [-120.087339, 52.833095], [-120.081427, 52.82789], [-120.077158, 52.825571], [-120.072601, 52.824453], [-120.066276, 52.824213], [-120.061431, 52.824295], [-120.059356, 52.823211], [-120.05806, 52.821158], [-120.057384, 52.819112], [-120.060915, 52.813798], [-120.061755, 52.810942], [-120.06034, 52.808736], [-120.050551, 52.800913], [-120.042707, 52.794397], [-120.039141, 52.789825], [-120.036671, 52.78587], [-120.033355, 52.77768], [-120.029738, 52.77107], [-120.027046, 52.766434], [-120.025554, 52.762944], [-120.024748, 52.757578], [-120.022348, 52.755283], [-120.017853, 52.752658], [-120.010327, 52.748105], [-120.002514, 52.744753], [-119.991961, 52.741812], [-119.973783, 52.737326], [-119.969885, 52.73546], [-119.967358, 52.733388], [-119.965741, 52.730123], [-119.965231, 52.727099], [-119.964311, 52.725126], [-119.958304, 52.716595], [-119.951161, 52.710081], [-119.945714, 52.712584], [-119.920304, 52.719198], [-119.909555, 52.714991], [-119.906778, 52.708488], [-119.890353, 52.706691], [-119.890332, 52.706545], [-119.885118, 52.699386], [-119.879617, 52.692712], [-119.872172, 52.684382], [-119.86643, 52.680394], [-119.866172, 52.683913], [-119.863786, 52.686828], [-119.859114, 52.689796], [-119.854646, 52.690883], [-119.849537, 52.691145], [-119.843663, 52.690417], [-119.83704, 52.688291], [-119.829306, 52.683867], [-119.824969, 52.681689], [-119.820336, 52.67698], [-119.817358, 52.674412], [-119.812479, 52.67239], [-119.805064, 52.670088], [-119.786105, 52.664857], [-119.775198, 52.662751], [-119.768329, 52.660292], [-119.755756, 52.675879], [-119.75203, 52.679338], [-119.746913, 52.680977], [-119.742921, 52.681898], [-119.733046, 52.681268], [-119.726898, 52.68021], [-119.714238, 52.67719], [-119.708005, 52.678172], [-119.703335, 52.680321], [-119.697229, 52.684498], [-119.677485, 52.695614], [-119.668028, 52.699333], [-119.660431, 52.700681], [-119.650328, 52.700906], [-119.643059, 52.700936], [-119.636027, 52.701705], [-119.6293, 52.703181], [-119.62075, 52.705415], [-119.617905, 52.706045], [-119.616612, 52.704719], [-119.616534, 52.696279], [-119.616062, 52.689135], [-119.61299, 52.682222], [-119.609373, 52.677495], [-119.603539, 52.672042], [-119.594607, 52.665436], [-119.587394, 52.660712], [-119.582293, 52.656574], [-119.579531, 52.652958], [-119.577956, 52.647991], [-119.544409, 52.662787], [-119.544449, 52.657025], [-119.542736, 52.655142], [-119.537708, 52.647094], [-119.536256, 52.644462], [-119.533902, 52.637011], [-119.531119, 52.631542], [-119.528089, 52.629017], [-119.523766, 52.627701], [-119.517694, 52.627719], [-119.510188, 52.629485], [-119.505946, 52.631178], [-119.502972, 52.634532], [-119.500064, 52.636523], [-119.497662, 52.637363], [-119.492979, 52.638842], [-119.486871, 52.639541], [-119.482449, 52.640274], [-119.474839, 52.644084], [-119.469158, 52.647521], [-119.464912, 52.649212], [-119.458641, 52.648607], [-119.453823, 52.645908], [-119.447281, 52.641667], [-119.442587, 52.638764], [-119.438249, 52.637786], [-119.431719, 52.637927], [-119.427647, 52.638391], [-119.422505, 52.639994], [-119.418819, 52.641694], [-119.415556, 52.643949], [-119.413081, 52.646151], [-119.410431, 52.647394], [-119.407955, 52.647412], [-119.398105, 52.648644], [-119.394347, 52.649522], [-119.387868, 52.650823], [-119.375522, 52.654597], [-119.36948, 52.656111], [-119.365651, 52.656167], [-119.363333, 52.655297], [-119.361857, 52.653347], [-119.363555, 52.64645], [-119.364342, 52.642005], [-119.364402, 52.63251], [-119.269367, 52.630903], [-119.269184, 52.631127], [-119.268912, 52.631275], [-119.26807, 52.631579], [-119.267913, 52.631691], [-119.267165, 52.631785], [-119.266319, 52.632269], [-119.26594, 52.632366], [-119.265496, 52.632374], [-119.264916, 52.632565], [-119.264166, 52.632633], [-119.263359, 52.633045], [-119.262103, 52.633338], [-119.260955, 52.633451], [-119.259996, 52.633217], [-119.259419, 52.632904], [-119.259195, 52.632873], [-119.258479, 52.632985], [-119.257356, 52.632988], [-119.255902, 52.633187], [-119.253427, 52.633343], [-119.252581, 52.633575], [-119.251821, 52.633983], [-119.251611, 52.633944], [-119.251081, 52.633683], [-119.250754, 52.633636], [-119.249193, 52.633773], [-119.247784, 52.633979], [-119.24712, 52.633983], [-119.2466, 52.633921], [-119.242902, 52.634163], [-119.242126, 52.634025], [-119.241093, 52.634026], [-119.240228, 52.633881], [-119.239567, 52.633686], [-119.238868, 52.633582], [-119.238453, 52.633582], [-119.237647, 52.633398], [-119.237247, 52.633397], [-119.236782, 52.633261], [-119.236146, 52.632968], [-119.234328, 52.632643], [-119.233303, 52.632276], [-119.232069, 52.632155], [-119.231863, 52.632159], [-119.231267, 52.632331], [-119.230695, 52.632145], [-119.23011, 52.632237], [-119.229783, 52.632235], [-119.229633, 52.632165], [-119.229591, 52.63195], [-119.229366, 52.631891], [-119.228912, 52.631927], [-119.228155, 52.63186], [-119.227651, 52.632139], [-119.226915, 52.63191], [-119.226406, 52.632047], [-119.224888, 52.632165], [-119.224439, 52.632334], [-119.22411, 52.632233], [-119.223172, 52.632413], [-119.221988, 52.63239], [-119.221746, 52.632259], [-119.221012, 52.631473], [-119.220721, 52.631316], [-119.220336, 52.63154], [-119.220173, 52.631857], [-119.220057, 52.631904], [-119.21938, 52.631935], [-119.218852, 52.632035], [-119.21832, 52.632008], [-119.218086, 52.632076], [-119.217871, 52.632188], [-119.217382, 52.632764], [-119.217068, 52.632985], [-119.216299, 52.63326], [-119.215134, 52.633579], [-119.214453, 52.6336], [-119.212973, 52.633529], [-119.212326, 52.633613], [-119.211909, 52.633847], [-119.210778, 52.634254], [-119.208716, 52.634409], [-119.208149, 52.6346], [-119.207545, 52.634935], [-119.20716, 52.634915], [-119.206962, 52.634792], [-119.206664, 52.634735], [-119.205953, 52.634731], [-119.204401, 52.63502], [-119.20344, 52.634706], [-119.203144, 52.634674], [-119.202775, 52.634691], [-119.201913, 52.634878], [-119.201179, 52.634711], [-119.200676, 52.634721], [-119.199509, 52.635022], [-119.199006, 52.635291], [-119.198535, 52.635318], [-119.197657, 52.635496], [-119.19712, 52.635712], [-119.196394, 52.636257], [-119.194755, 52.636288], [-119.194448, 52.636373], [-119.194062, 52.636597], [-119.192989, 52.636734], [-119.192568, 52.636891], [-119.155067, 52.633792], [-119.125389, 52.633719], [-119.056089, 52.633298], [-119.054475, 52.628202], [-119.052493, 52.62556], [-119.049618, 52.62283], [-119.048635, 52.620414], [-119.046838, 52.616545], [-119.044525, 52.613827], [-119.041234, 52.610541], [-119.040188, 52.607304], [-119.041093, 52.603358], [-119.040524, 52.599653], [-119.037795, 52.596378], [-119.033636, 52.594508], [-119.022162, 52.592817], [-119.018213, 52.593071], [-119.015781, 52.594248], [-119.015572, 52.595817], [-119.014635, 52.598258], [-119.012057, 52.599979], [-119.008731, 52.601067], [-119.004345, 52.601105], [-119.000042, 52.599778], [-118.996943, 52.597109], [-118.995049, 52.593101], [-118.993301, 52.590394], [-118.988189, 52.587612], [-118.980791, 52.585461], [-118.975514, 52.583564], [-118.971027, 52.581615], [-118.964151, 52.578313], [-118.960246, 52.577882], [-118.953515, 52.577727], [-118.948924, 52.577485], [-118.946536, 52.576131], [-118.944793, 52.573424], [-118.941741, 52.571918], [-118.936383, 52.571384], [-118.931067, 52.570167], [-118.927559, 52.568786], [-118.926564, 52.566712], [-118.926836, 52.56412], [-118.928498, 52.560808], [-118.932358, 52.558231], [-118.935491, 52.556527], [-118.937089, 52.554239], [-118.936365, 52.551419], [-118.931886, 52.545777], [-118.915631, 52.534664], [-118.90935, 52.53103], [-118.90527, 52.526285], [-118.903699, 52.522693], [-118.902938, 52.51871], [-118.906408, 52.511544], [-118.908175, 52.506527], [-118.907331, 52.502063], [-118.904621, 52.498787], [-118.900314, 52.495951], [-118.891415, 52.48952], [-118.887609, 52.485875], [-118.885689, 52.482548], [-118.885054, 52.478363], [-118.886325, 52.474155], [-118.888542, 52.472704], [-118.893801, 52.470914], [-118.904336, 52.46884], [-118.908846, 52.468263], [-118.912034, 52.467381], [-118.914559, 52.466347], [-118.916982, 52.465173], [-118.924266, 52.463157], [-118.926978, 52.460896], [-118.927808, 52.458318], [-118.929238, 52.45507], [-118.930915, 52.453264], [-118.935797, 52.452079], [-118.938635, 52.44408], [-118.939753, 52.44226], [-118.941698, 52.439708], [-118.932275, 52.434602], [-118.925762, 52.429529], [-118.922435, 52.425419], [-118.921632, 52.42212], [-118.92395, 52.418962], [-118.930812, 52.412733], [-118.931673, 52.410348], [-118.93055, 52.408245], [-118.926319, 52.404319], [-118.938138, 52.396615], [-118.947937, 52.391213], [-118.942286, 52.38567], [-118.938124, 52.380654], [-118.935102, 52.375993], [-118.933188, 52.372231], [-118.9321, 52.368106], [-118.928668, 52.362888], [-118.92588, 52.358833], [-118.926379, 52.353598], [-118.909379, 52.345438], [-118.887943, 52.344003], [-118.868452, 52.344305], [-118.861816, 52.343327], [-118.85515, 52.341418], [-118.841548, 52.334859], [-118.831524, 52.331063], [-118.816241, 52.325772], [-118.807177, 52.32238], [-118.798015, 52.319149], [-118.792147, 52.317419], [-118.78947, 52.314675], [-118.787684, 52.311953], [-118.786496, 52.308262], [-118.786602, 52.306625], [-118.788025, 52.305294], [-118.791292, 52.304391], [-118.796384, 52.30419], [-118.800704, 52.303531], [-118.805276, 52.301732], [-118.810538, 52.300276], [-118.813377, 52.299089], [-118.821225, 52.293434], [-118.824033, 52.291317], [-118.827942, 52.290101], [-118.831815, 52.289431], [-118.836279, 52.289267], [-118.838192, 52.288603], [-118.840701, 52.28697], [-118.842368, 52.285972], [-118.845386, 52.284734], [-118.846081, 52.283603], [-118.846336, 52.280986], [-118.847082, 52.279037], [-118.852181, 52.275882], [-118.859384, 52.273215], [-118.861658, 52.27245], [-118.866901, 52.269789], [-118.870263, 52.268723], [-118.874448, 52.267293], [-118.879012, 52.26549], [-118.882127, 52.26409], [-118.890406, 52.246911], [-118.890735, 52.24568], [-118.900185, 52.238338], [-118.897787, 52.235888], [-118.883941, 52.236352], [-118.875621, 52.238758], [-118.874123, 52.238352], [-118.864316, 52.236543], [-118.839837, 52.232811], [-118.837841, 52.232164], [-118.836427, 52.230821], [-118.833675, 52.227046], [-118.83265, 52.223994], [-118.832907, 52.221655], [-118.835168, 52.219965], [-118.838646, 52.218743], [-118.847657, 52.217606], [-118.851209, 52.215294], [-118.851689, 52.213561], [-118.849581, 52.209474], [-118.847196, 52.206799], [-118.84385, 52.205193], [-118.836767, 52.203827], [-118.831634, 52.202451], [-118.828632, 52.201016], [-118.813335, 52.186576], [-118.80321, 52.177222], [-118.796433, 52.176746], [-118.792837, 52.176437], [-118.782607, 52.178326], [-118.777584, 52.17883], [-118.772605, 52.17996], [-118.768981, 52.180393], [-118.759001, 52.183616], [-118.751985, 52.185151], [-118.744974, 52.182502], [-118.733505, 52.176433], [-118.732519, 52.17422], [-118.731958, 52.169022], [-118.729902, 52.165193], [-118.726476, 52.162763], [-118.72425, 52.161626], [-118.720794, 52.160862], [-118.716069, 52.161344], [-118.711508, 52.163185], [-118.705478, 52.164859], [-118.699675, 52.166278], [-118.694153, 52.166661], [-118.688582, 52.155265], [-118.68686, 52.15332], [-118.683852, 52.151602], [-118.676296, 52.151462], [-118.673465, 52.153047], [-118.671709, 52.155324], [-118.669067, 52.161492], [-118.666314, 52.164108], [-118.657487, 52.165213], [-118.649025, 52.166534], [-118.644356, 52.167731], [-118.640088, 52.169552], [-118.636601, 52.173009], [-118.633044, 52.177509], [-118.632031, 52.179387], [-118.628637, 52.182691], [-118.623876, 52.184263], [-118.619486, 52.185349], [-118.607934, 52.188765], [-118.602133, 52.190048], [-118.595017, 52.191375], [-118.589527, 52.191231], [-118.582422, 52.193001], [-118.577333, 52.200316], [-118.5746, 52.20695], [-118.570935, 52.221129], [-118.569265, 52.224529], [-118.567895, 52.225354], [-118.563844, 52.227269], [-118.558818, 52.229483], [-118.55578, 52.233004], [-118.55493, 52.23995], [-118.556286, 52.243798], [-118.561584, 52.251616], [-118.562762, 52.25401], [-118.563529, 52.258381], [-118.558455, 52.264118], [-118.551791, 52.268418], [-118.540802, 52.272934], [-118.501574, 52.281672], [-118.493272, 52.292357], [-118.493082, 52.292462], [-118.489169, 52.299127], [-118.493598, 52.307889], [-118.493132, 52.312498], [-118.478222, 52.314829], [-118.466193, 52.31781], [-118.456418, 52.324784], [-118.447308, 52.323759], [-118.440362, 52.324667], [-118.433607, 52.330743], [-118.425972, 52.336128], [-118.411405, 52.33754], [-118.395253, 52.334845], [-118.386122, 52.339392], [-118.37995, 52.349979], [-118.374035, 52.350564], [-118.366796, 52.354754], [-118.359081, 52.362857], [-118.353657, 52.366054], [-118.342343, 52.36654], [-118.329914, 52.36864], [-118.31712, 52.367778], [-118.304668, 52.360737], [-118.303088, 52.352623], [-118.294916, 52.342217], [-118.289766, 52.33895], [-118.272986, 52.346075], [-118.261877, 52.346654], [-118.254213, 52.347971], [-118.247994, 52.357125], [-118.245234, 52.365813], [-118.239953, 52.374868], [-118.226025, 52.380289], [-118.220343, 52.385108], [-118.219804, 52.391787], [-118.220902, 52.39756], [-118.226067, 52.399437], [-118.233918, 52.402926], [-118.240798, 52.402941], [-118.244457, 52.408025], [-118.243154, 52.412577], [-118.239931, 52.417646], [-118.239805, 52.427017], [-118.242754, 52.432536], [-118.247205, 52.43623], [-118.251302, 52.439796], [-118.253762, 52.44427], [-118.255348, 52.449537], [-118.19336, 52.47782], [-118.235538, 52.490178], [-118.274295, 52.523983], [-118.289154, 52.538494], [-118.272791, 52.565955], [-118.332574, 52.580171], [-118.334027, 52.592966], [-118.333607, 52.606195], [-118.35251, 52.610647], [-118.354497, 52.633684], [-118.301045, 52.654081], [-118.293868, 52.66835], [-118.290149, 52.677693], [-118.343301, 52.708888], [-118.342829, 52.738556], [-118.391139, 52.760395], [-118.422412, 52.775787], [-118.412997, 52.805984], [-118.399627, 52.824461], [-118.401088, 52.840509], [-118.401506, 52.840501], [-118.402319, 52.842534], [-118.398343, 52.844488], [-118.3914, 52.845464], [-118.386985, 52.847126], [-118.388926, 52.848855], [-118.395629, 52.84924], [-118.403166, 52.850765], [-118.42087, 52.851401], [-118.431213, 52.851216], [-118.444462, 52.852226], [-118.452525, 52.855381], [-118.458433, 52.859591], [-118.460996, 52.866612], [-118.461205, 52.869353], [-118.455911, 52.872278], [-118.449401, 52.879076], [-118.448595, 52.880282], [-118.448279, 52.885288], [-118.458519, 52.890856], [-118.462154, 52.8929], [-118.466056, 52.894177], [-118.469301, 52.895621], [-118.470594, 52.89756], [-118.476858, 52.900971], [-118.485575, 52.902541], [-118.500143, 52.906383], [-118.511025, 52.905216], [-118.52224, 52.898218], [-118.52942, 52.900302], [-118.535168, 52.903045], [-118.543788, 52.908456], [-118.553367, 52.905519], [-118.561936, 52.901215], [-118.564972, 52.895536], [-118.569553, 52.888891], [-118.575441, 52.885243], [-118.584961, 52.882694], [-118.587213, 52.882249], [-118.608143, 52.879551], [-118.61383, 52.883723], [-118.614254, 52.900148], [-118.606662, 52.903972], [-118.620344, 52.913663], [-118.620958, 52.916254], [-118.613423, 52.936013], [-118.638537, 52.951874], [-118.651338, 52.955503], [-118.660206, 52.963939], [-118.661065, 52.972571], [-118.671195, 52.978303], [-118.66977, 52.983417], [-118.661623, 52.987393], [-118.649331, 52.991504], [-118.648978, 53.000268], [-118.640773, 52.999332], [-118.647152, 53.011005], [-118.652635, 53.01839], [-118.64976, 53.025077], [-118.655349, 53.034798], [-118.668761, 53.042506], [-118.67966, 53.041334], [-118.685713, 53.034968], [-118.695877, 53.032811], [-118.70055, 53.044358], [-118.710293, 53.052169], [-118.726437, 53.060219], [-118.74608, 53.052336], [-118.756409, 53.043819], [-118.75894, 53.038006], [-118.776204, 53.045351], [-118.759059, 53.065777], [-118.769828, 53.074493], [-118.754427, 53.082807], [-118.748705, 53.088301], [-118.748769, 53.097157], [-118.736761, 53.10652], [-118.729524, 53.115477], [-118.732342, 53.11925], [-118.772489, 53.13304], [-118.779337, 53.138681], [-118.784004, 53.144914], [-118.780473, 53.147645], [-118.779315, 53.150918], [-118.786523, 53.159225], [-118.795368, 53.163143], [-118.798808, 53.16379], [-118.805811, 53.165247], [-118.817298, 53.171803], [-118.823387, 53.172915], [-118.831493, 53.183052], [-118.847789, 53.185936], [-118.862071, 53.190943], [-118.879598, 53.205928], [-118.909396, 53.209681], [-118.915963, 53.211845], [-118.923425, 53.225222], [-118.939389, 53.23372], [-118.947447, 53.238936], [-118.955789, 53.236468], [-118.965294, 53.236844], [-118.975193, 53.241657], [-118.98408, 53.239038], [-119.012596, 53.233635], [-119.023837, 53.23195], [-119.026191, 53.226366], [-119.018298, 53.21943], [-118.999395, 53.212731], [-118.999421, 53.192765], [-119.008543, 53.186125], [-119.019837, 53.170195], [-119.028777, 53.164194], [-118.999869, 53.148581], [-119.025092, 53.134571], [-119.024567, 53.126712], [-119.047977, 53.126824], [-119.046884, 53.14491], [-119.068619, 53.157538], [-119.0885, 53.165533], [-119.119527, 53.161766], [-119.131599, 53.171801], [-119.141471, 53.181749], [-119.146017, 53.191182], [-119.175609, 53.184631], [-119.19606, 53.185534], [-119.219034, 53.19405], [-119.233137, 53.193529], [-119.232718, 53.181769], [-119.24281, 53.17859], [-119.257119, 53.176622], [-119.253184, 53.184834], [-119.251466, 53.198967], [-119.262517, 53.212549], [-119.27716, 53.228351], [-119.277614, 53.228709], [-119.27775, 53.229029], [-119.288005, 53.240067], [-119.291362, 53.250034], [-119.301443, 53.249826], [-119.300429, 53.256246], [-119.325233, 53.269603], [-119.335542, 53.280426], [-119.340499, 53.287081], [-119.329652, 53.296615], [-119.355983, 53.312329], [-119.346915, 53.326328], [-119.355881, 53.340103], [-119.39074, 53.360803], [-119.406087, 53.36809], [-119.410427, 53.365437], [-119.416245, 53.364327], [-119.423613, 53.362344], [-119.436747, 53.357627], [-119.444879, 53.356873], [-119.451896, 53.356594], [-119.459243, 53.357221], [-119.46731, 53.358896], [-119.47452, 53.36078], [-119.481627, 53.363248], [-119.488006, 53.363699], [-119.500133, 53.36247], [-119.500034, 53.366049], [-119.512913, 53.369134], [-119.517537, 53.37007], [-119.52206, 53.369202], [-119.526006, 53.368189], [-119.533533, 53.365931], [-119.542271, 53.366666], [-119.548482, 53.367493], [-119.557821, 53.369475], [-119.566296, 53.372614], [-119.578522, 53.375319], [-119.584643, 53.378529], [-119.590285, 53.381123], [-119.598385, 53.383532], [-119.60453, 53.383431], [-119.602504, 53.379997], [-119.600845, 53.375127], [-119.597451, 53.367909], [-119.598343, 53.365717], [-119.603705, 53.364972], [-119.611418, 53.365099], [-119.618969, 53.363827], [-119.624131, 53.35961], [-119.625273, 53.363457], [-119.628226, 53.365577], [-119.63225, 53.367759], [-119.637538, 53.369061], [-119.645542, 53.368605], [-119.654663, 53.368391], [-119.664362, 53.36832], [-119.668903, 53.36783], [-119.67636, 53.371191], [-119.678595, 53.374289], [-119.680273, 53.378099], [-119.679786, 53.381875], [-119.682769, 53.384264], [-119.69545, 53.390612], [-119.700194, 53.388951], [-119.708788, 53.388409], [-119.718882, 53.388475], [-119.725425, 53.388756], [-119.725547, 53.391168], [-119.731086, 53.402153], [-119.736166, 53.408514], [-119.739305, 53.411805], [-119.75151, 53.420482], [-119.758369, 53.426373], [-119.759973, 53.431262], [-119.758386, 53.434933], [-119.756764, 53.437611], [-119.758522, 53.440205], [-119.76277, 53.441463], [-119.771491, 53.445805], [-119.773276, 53.449143], [-119.773871, 53.452508], [-119.775836, 53.456073], [-119.779559, 53.460927], [-119.781112, 53.466694], [-119.783716, 53.470359], [-119.787873, 53.472087], [-119.790644, 53.475371], [-119.790635, 53.479268], [-119.787804, 53.482426], [-119.782057, 53.485314], [-119.779351, 53.488631], [-119.780352, 53.491799], [-119.789951, 53.495343], [-119.800091, 53.500042], [-119.812525, 53.499952], [-119.819915, 53.506367], [-119.830159, 53.514737], [-119.832923, 53.519305], [-119.840988, 53.515207], [-119.846532, 53.511704], [-119.850246, 53.507656], [-119.853859, 53.499935], [-119.870217, 53.499962], [-119.875446, 53.506342], [-119.883592, 53.51015], [-119.889926, 53.51249], [-119.899478, 53.519131], [-119.900344, 53.532975], [-119.89143, 53.535647], [-119.880979, 53.541338], [-119.87118, 53.544311], [-119.862257, 53.548512], [-119.861032, 53.556538], [-119.86329, 53.561639], [-119.867945, 53.566931], [-119.873145, 53.571375], [-119.886887, 53.57646], [-119.891502, 53.577675], [-119.896244, 53.581517], [-119.899259, 53.586166], [-119.902941, 53.590031], [-119.905874, 53.596846], [-119.910713, 53.601259], [-119.916896, 53.603473], [-119.923166, 53.605341], [-119.930379, 53.610404], [-119.92589, 53.614543], [-119.917551, 53.616623], [-119.909822, 53.617721], [-119.902697, 53.620163], [-119.893857, 53.619535], [-119.884993, 53.617641], [-119.87941, 53.616834], [-119.869613, 53.613824], [-119.860168, 53.609567], [-119.854067, 53.60771], [-119.846102, 53.60792], [-119.83613, 53.609104], [-119.829415, 53.60907], [-119.816663, 53.604068], [-119.801692, 53.60426], [-119.793065, 53.602388], [-119.787522, 53.59895], [-119.784022, 53.593993], [-119.776239, 53.591165], [-119.759228, 53.590974], [-119.748727, 53.593368], [-119.743887, 53.597271], [-119.739218, 53.602242], [-119.733896, 53.604688], [-119.722602, 53.60843], [-119.714847, 53.611706], [-119.71341, 53.614582], [-119.716786, 53.618871], [-119.721759, 53.622638], [-119.726399, 53.628333], [-119.732431, 53.632005], [-119.737215, 53.636835], [-119.736889, 53.644188], [-119.735646, 53.650574], [-119.735607, 53.656334], [-119.73453, 53.663194], [-119.747174, 53.664339], [-119.755618, 53.664924], [-119.757722, 53.668437], [-119.760832, 53.671593], [-119.768397, 53.674978], [-119.773563, 53.679686], [-119.775471, 53.682948], [-119.77316, 53.685565], [-119.77668, 53.690214], [-119.779547, 53.692796], [-119.783805, 53.695312], [-119.786826, 53.699197], [-119.786696, 53.701314], [-119.78919, 53.703618], [-119.792878, 53.706063], [-119.79738, 53.707776], [-119.805009, 53.706599], [-119.813662, 53.70463], [-119.822066, 53.700526], [-119.834344, 53.697146], [-119.839552, 53.697405], [-119.845112, 53.702465], [-119.841954, 53.708045], [-119.844327, 53.714744], [-119.85417, 53.713557], [-119.860877, 53.715311], [-119.87038, 53.714799], [-119.880077, 53.712778], [-119.88949, 53.710528], [-119.903351, 53.70985], [-119.907979, 53.710607], [-119.911963, 53.713993], [-119.91567, 53.717289], [-119.913148, 53.720415], [-119.900817, 53.723023], [-119.899054, 53.725936], [-119.897544, 53.730661], [-119.900361, 53.73563], [-119.902123, 53.73843], [-119.895665, 53.744921], [-119.887429, 53.750025], [-119.892627, 53.757469], [-119.888784, 53.762187], [-119.885768, 53.768465], [-119.885573, 53.775303], [-119.888234, 53.779491], [-119.942338, 53.775868], [-119.959163, 53.78107], [-119.971604, 53.788679], [-119.983044, 53.797166], [-119.971284, 53.801625], [-119.973754, 53.803354], [-119.977447, 53.805384], [-119.999985, 53.806242], [-120.0, 53.799488], [-120.003003, 53.796788], [-120.008501, 53.795358], [-120.013747, 53.796695], [-120.037085, 53.804657], [-120.041808, 53.799508], [-120.059654, 53.791951], [-120.073904, 53.790537], [-120.085273, 53.79237], [-120.097037, 53.792306], [-120.116272, 53.780675], [-120.127029, 53.777306], [-120.150512, 53.773022], [-120.160096, 53.775032], [-120.18111, 53.7769], [-120.194875, 53.773163], [-120.209793, 53.768453], [-120.217, 53.763398], [-120.22126, 53.758442], [-120.231738, 53.757104], [-120.257408, 53.764011], [-120.264861, 53.767441], [-120.294999, 53.781883], [-120.304045, 53.784208], [-120.317339, 53.783612], [-120.34073, 53.785609], [-120.344349, 53.783275], [-120.3693, 53.776662], [-120.387054, 53.77748], [-120.398384, 53.781922], [-120.401937, 53.788662], [-120.406431, 53.791135], [-120.440011, 53.790371], [-120.447138, 53.794378], [-120.470125, 53.795159], [-120.486735, 53.802661], [-120.513273, 53.811487], [-120.534302, 53.815924], [-120.550864, 53.816245], [-120.567392, 53.818208], [-120.571419, 53.822447], [-120.569068, 53.828679], [-120.563854, 53.833442], [-120.561602, 53.840135], [-120.567883, 53.851166], [-120.583005, 53.862853], [-120.625513, 53.869791], [-120.640375, 53.881798], [-120.655447, 53.892028], [-120.679689, 53.900931], [-120.720188, 53.901044], [-120.723, 53.904018], [-120.73755, 53.905539], [-120.758959, 53.903655], [-120.767442, 53.899782], [-120.764596, 53.896799], [-120.76936, 53.892709], [-120.790359, 53.881574], [-120.828681, 53.908091], [-120.842569, 53.919146], [-120.856268, 53.928291], [-120.867166, 53.930381], [-120.879018, 53.927605], [-120.891391, 53.91812], [-120.896683, 53.912864], [-120.921237, 53.91315], [-120.920182, 53.895588], [-120.933105, 53.894221]], [[-120.178767, 53.323464], [-120.178284, 53.323106], [-120.17796, 53.322999], [-120.17688, 53.322308], [-120.175903, 53.32162], [-120.174946, 53.32112], [-120.174646, 53.320897], [-120.174205, 53.320734], [-120.173525, 53.32035], [-120.173151, 53.320089], [-120.17286, 53.319732], [-120.171326, 53.318417], [-120.170549, 53.317869], [-120.170027, 53.317614], [-120.16933, 53.31703], [-120.168607, 53.316608], [-120.167944, 53.316413], [-120.167315, 53.31638], [-120.166739, 53.316249], [-120.166106, 53.316288], [-120.163592, 53.315698], [-120.161618, 53.315364], [-120.161109, 53.315307], [-120.159007, 53.315301], [-120.158181, 53.315084], [-120.157802, 53.314922], [-120.15734, 53.314631], [-120.156823, 53.314053], [-120.155751, 53.312571], [-120.155571, 53.312108], [-120.155333, 53.311833], [-120.155137, 53.311396], [-120.1549, 53.311166], [-120.154706, 53.310694], [-120.153676, 53.309454], [-120.153417, 53.309269], [-120.15305, 53.308711], [-120.152407, 53.307995], [-120.151144, 53.307596], [-120.149412, 53.307204], [-120.148267, 53.306835], [-120.147936, 53.306835], [-120.147019, 53.30643], [-120.148093, 53.303885], [-120.150954, 53.303806], [-120.150853, 53.301892], [-120.150974, 53.298651], [-120.157512, 53.298647], [-120.157473, 53.295379], [-120.157005, 53.293834], [-120.157924, 53.293569], [-120.158552, 53.293127], [-120.158917, 53.291339], [-120.162552, 53.290474], [-120.164002, 53.289043], [-120.165297, 53.290674], [-120.168087, 53.295026], [-120.174754, 53.295028], [-120.17458, 53.30204], [-120.176051, 53.305882], [-120.181493, 53.305881], [-120.180405, 53.309401], [-120.184108, 53.315729], [-120.183586, 53.31663], [-120.182711, 53.319794], [-120.182753, 53.321323], [-120.178661, 53.322676], [-120.178767, 53.323464]], [[-119.270397, 52.83915], [-119.270867, 52.846366], [-119.264812, 52.846511], [-119.263929, 52.839701], [-119.255937, 52.840056], [-119.252498, 52.83999], [-119.253849, 52.836015], [-119.254137, 52.831982], [-119.245791, 52.832484], [-119.244402, 52.825562], [-119.244354, 52.824508], [-119.246557, 52.824794], [-119.251497, 52.824789], [-119.252015, 52.822821], [-119.258301, 52.822798], [-119.258313, 52.818347], [-119.25926, 52.817752], [-119.260415, 52.817144], [-119.261764, 52.8166], [-119.263331, 52.816083], [-119.265023, 52.815634], [-119.266797, 52.815327], [-119.268538, 52.815073], [-119.270183, 52.814945], [-119.272255, 52.815035], [-119.273479, 52.815509], [-119.275926, 52.81595], [-119.27915, 52.816286], [-119.282851, 52.818757], [-119.282439, 52.827731], [-119.282053, 52.830365], [-119.282898, 52.833892], [-119.281774, 52.833912], [-119.281279, 52.833811], [-119.278495, 52.833723], [-119.277311, 52.833599], [-119.276205, 52.833599], [-119.275449, 52.833848], [-119.275018, 52.834244], [-119.273903, 52.834457], [-119.273569, 52.834937], [-119.273104, 52.835109], [-119.272461, 52.835177], [-119.271031, 52.83508], [-119.270021, 52.835348], [-119.270397, 52.83915]]]]}, "properties": {"name": "Fraser-Fort George H", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fraser-Fort George H", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953019", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.727044, 54.022213], [-122.727204, 54.039397], [-122.729003, 54.039335], [-122.740972, 54.039313], [-122.752186, 54.039693], [-122.759742, 54.039631], [-122.760431, 54.039528], [-122.801103, 54.039494], [-122.843218, 54.039082], [-122.843082, 54.039901], [-122.843284, 54.04082], [-122.851231, 54.039672], [-122.851035, 54.027024], [-122.850854, 54.025397], [-122.84924, 54.015832], [-122.848886, 54.01063], [-122.850422, 54.003117], [-122.850593, 53.995871], [-122.850091, 53.98134], [-122.850216, 53.981184], [-122.90051, 53.981188], [-122.900474, 53.979173], [-122.900364, 53.978677], [-122.900509, 53.978086], [-122.895901, 53.976839], [-122.8955, 53.976817], [-122.894315, 53.971712], [-122.895105, 53.963587], [-122.892133, 53.963774], [-122.891118, 53.952324], [-122.892021, 53.926735], [-122.890318, 53.910972], [-122.89003, 53.903292], [-122.890768, 53.896271], [-122.890821, 53.891126], [-122.891265, 53.885793], [-122.891181, 53.883767], [-122.891168, 53.874262], [-122.897774, 53.874128], [-122.897026, 53.859719], [-122.896742, 53.852535], [-122.881937, 53.851925], [-122.881784, 53.843264], [-122.881666, 53.843155], [-122.881642, 53.841549], [-122.881459, 53.840323], [-122.881569, 53.836207], [-122.881408, 53.825576], [-122.881584, 53.822005], [-122.881523, 53.821405], [-122.883364, 53.82098], [-122.88315, 53.820312], [-122.881459, 53.820788], [-122.881495, 53.815884], [-122.850528, 53.816008], [-122.850324, 53.815951], [-122.842162, 53.815916], [-122.803945, 53.815985], [-122.760495, 53.814303], [-122.749711, 53.813741], [-122.749441, 53.814471], [-122.74843, 53.815808], [-122.747957, 53.816292], [-122.747575, 53.816372], [-122.746954, 53.816289], [-122.746574, 53.816298], [-122.745373, 53.816466], [-122.744145, 53.81614], [-122.742945, 53.816111], [-122.742006, 53.815839], [-122.741504, 53.815802], [-122.741291, 53.815846], [-122.740421, 53.816437], [-122.73955, 53.816688], [-122.732636, 53.816347], [-122.731326, 53.816358], [-122.732824, 53.814473], [-122.733524, 53.812941], [-122.724882, 53.812918], [-122.721176, 53.812848], [-122.71941, 53.812894], [-122.718974, 53.813065], [-122.722626, 53.818104], [-122.722005, 53.818358], [-122.721633, 53.818668], [-122.720697, 53.820474], [-122.720448, 53.820809], [-122.719508, 53.82151], [-122.718506, 53.821841], [-122.714417, 53.821906], [-122.714388, 53.822455], [-122.717782, 53.827057], [-122.718295, 53.82706], [-122.718174, 53.841766], [-122.714532, 53.841808], [-122.705798, 53.842048], [-122.705936, 53.843011], [-122.705846, 53.844543], [-122.705298, 53.846347], [-122.705002, 53.849135], [-122.705218, 53.850211], [-122.705567, 53.865714], [-122.706009, 53.880046], [-122.685511, 53.879751], [-122.679296, 53.878934], [-122.676067, 53.879325], [-122.671544, 53.879614], [-122.666494, 53.879667], [-122.66772, 53.876757], [-122.667747, 53.876506], [-122.647962, 53.876676], [-122.64092, 53.876686], [-122.628613, 53.876615], [-122.627658, 53.876572], [-122.628742, 53.881184], [-122.628757, 53.88567], [-122.629076, 53.891257], [-122.616641, 53.891077], [-122.612434, 53.891103], [-122.605087, 53.891299], [-122.604035, 53.913203], [-122.616285, 53.913025], [-122.616689, 53.915678], [-122.616969, 53.920117], [-122.638451, 53.920051], [-122.638535, 53.922278], [-122.641173, 53.922171], [-122.641843, 53.925376], [-122.641944, 53.927914], [-122.650351, 53.927809], [-122.650126, 53.931898], [-122.654899, 53.931769], [-122.6549, 53.931902], [-122.663809, 53.931704], [-122.668697, 53.931843], [-122.669267, 53.931293], [-122.669668, 53.929824], [-122.679098, 53.929609], [-122.684043, 53.928926], [-122.687477, 53.929782], [-122.688125, 53.930585], [-122.691225, 53.939567], [-122.693176, 53.944608], [-122.690485, 53.94949], [-122.690023, 53.952711], [-122.690595, 53.953812], [-122.692076, 53.955008], [-122.695742, 53.955995], [-122.699993, 53.956304], [-122.704539, 53.95729], [-122.705071, 53.957575], [-122.707819, 53.959479], [-122.708664, 53.960255], [-122.708042, 53.962505], [-122.704134, 53.96461], [-122.699167, 53.964194], [-122.693115, 53.963403], [-122.668546, 53.960672], [-122.666118, 53.960745], [-122.659047, 53.961556], [-122.655699, 53.962167], [-122.652244, 53.964393], [-122.650137, 53.967485], [-122.64919, 53.968997], [-122.649706, 53.971222], [-122.652452, 53.974007], [-122.655812, 53.974706], [-122.657637, 53.974464], [-122.660893, 53.973562], [-122.669359, 53.973864], [-122.674118, 53.975458], [-122.674896, 53.975934], [-122.675055, 53.977201], [-122.679849, 53.982711], [-122.685422, 53.986209], [-122.685562, 53.986997], [-122.683791, 53.992539], [-122.680677, 53.995788], [-122.679555, 53.996178], [-122.676529, 53.996428], [-122.675018, 53.996449], [-122.666053, 53.99698], [-122.662353, 53.99758], [-122.658019, 53.998946], [-122.647926, 54.000203], [-122.642968, 54.000531], [-122.630603, 54.001849], [-122.624564, 54.006265], [-122.626814, 54.005986], [-122.643776, 54.005502], [-122.644002, 54.007152], [-122.643607, 54.012133], [-122.689448, 54.012267], [-122.715479, 54.012021], [-122.727153, 54.012306], [-122.727044, 54.022213]]]]}, "properties": {"name": "Prince George", "province": "British Columbia", "rurality": "Urban 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Prince George", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953023", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.012041, 55.332137], [-123.042185, 55.332311], [-123.04202, 55.368082], [-123.091851, 55.367866], [-123.093324, 55.396735], [-123.157052, 55.396833], [-123.178354, 55.396272], [-123.238274, 55.395848], [-123.257866, 55.395606], [-123.258195, 55.387205], [-123.257746, 55.345791], [-123.257391, 55.341403], [-123.251581, 55.341147], [-123.249736, 55.327018], [-123.241767, 55.327339], [-123.241803, 55.325374], [-123.239358, 55.302687], [-123.237015, 55.286865], [-123.231251, 55.28698], [-123.226836, 55.254645], [-123.226355, 55.251708], [-123.201786, 55.251409], [-123.201765, 55.215345], [-123.181987, 55.215215], [-123.152719, 55.216093], [-123.084207, 55.218904], [-123.08301, 55.239195], [-123.082074, 55.239543], [-123.085806, 55.293348], [-123.043479, 55.292599], [-123.011478, 55.2924], [-123.012041, 55.332137]]]]}, "properties": {"name": "Mackenzie", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Mackenzie", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953033", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.452584, 54.17116], [-123.517061, 54.171259], [-123.520204, 54.173363], [-123.520331, 54.172002], [-123.520358, 54.154401], [-123.518303, 54.152512], [-123.517779, 54.150781], [-123.5187, 54.149194], [-123.52077, 54.148656], [-123.524211, 54.149062], [-123.525494, 54.148685], [-123.526883, 54.147556], [-123.529123, 54.145988], [-123.532073, 54.1445], [-123.533011, 54.143882], [-123.533721, 54.14255], [-123.533547, 54.1415], [-123.532661, 54.140649], [-123.532574, 54.13988], [-123.533197, 54.139085], [-123.534899, 54.138411], [-123.535803, 54.137822], [-123.535952, 54.136887], [-123.535056, 54.135178], [-123.534495, 54.133447], [-123.533292, 54.131571], [-123.532659, 54.130372], [-123.531824, 54.129633], [-123.531369, 54.12901], [-123.531275, 54.12863], [-123.531714, 54.128032], [-123.53286, 54.126931], [-123.539335, 54.124219], [-123.542096, 54.123372], [-123.544723, 54.122381], [-123.547739, 54.121926], [-123.549284, 54.121758], [-123.552482, 54.121237], [-123.554267, 54.121098], [-123.555508, 54.120597], [-123.55938, 54.117555], [-123.561065, 54.115995], [-123.563263, 54.115051], [-123.564672, 54.112523], [-123.565892, 54.111156], [-123.565992, 54.110315], [-123.564266, 54.109448], [-123.564164, 54.108952], [-123.564573, 54.10846], [-123.56526, 54.108031], [-123.566314, 54.106759], [-123.56602, 54.10557], [-123.56421, 54.103768], [-123.562732, 54.102826], [-123.556499, 54.100494], [-123.556119, 54.10037], [-123.553542, 54.100339], [-123.551547, 54.101166], [-123.548994, 54.101057], [-123.542014, 54.100144], [-123.53512, 54.09909], [-123.53063, 54.098547], [-123.528726, 54.097954], [-123.526511, 54.097505], [-123.523003, 54.096578], [-123.519573, 54.096324], [-123.517235, 54.095436], [-123.515219, 54.09436], [-123.513608, 54.093764], [-123.511739, 54.093498], [-123.508304, 54.092675], [-123.506743, 54.092448], [-123.505243, 54.092138], [-123.503371, 54.090998], [-123.499564, 54.089861], [-123.497714, 54.088642], [-123.493199, 54.086925], [-123.490085, 54.085575], [-123.486723, 54.085153], [-123.484893, 54.084585], [-123.483944, 54.083943], [-123.483936, 54.082094], [-123.482974, 54.080556], [-123.481575, 54.078695], [-123.481503, 54.078483], [-123.481835, 54.076849], [-123.483167, 54.075164], [-123.483273, 54.073304], [-123.484533, 54.071376], [-123.486504, 54.069743], [-123.488521, 54.068311], [-123.48928, 54.068134], [-123.492177, 54.066997], [-123.495022, 54.066051], [-123.496366, 54.065483], [-123.497549, 54.065245], [-123.501711, 54.065727], [-123.505391, 54.066414], [-123.508777, 54.067487], [-123.514345, 54.068807], [-123.515735, 54.069068], [-123.517625, 54.069022], [-123.518898, 54.068915], [-123.521675, 54.068811], [-123.522665, 54.068869], [-123.52609, 54.068187], [-123.5299, 54.066796], [-123.531057, 54.065681], [-123.532919, 54.064831], [-123.535818, 54.062425], [-123.53668, 54.06202], [-123.541737, 54.06088], [-123.543199, 54.0608], [-123.545521, 54.061115], [-123.548257, 54.06171], [-123.550488, 54.062944], [-123.551543, 54.063876], [-123.552308, 54.0643], [-123.553404, 54.065094], [-123.553921, 54.065881], [-123.55412, 54.067571], [-123.554071, 54.068789], [-123.553789, 54.069807], [-123.552442, 54.070419], [-123.55195, 54.071123], [-123.552952, 54.072466], [-123.553701, 54.073646], [-123.554125, 54.074677], [-123.553093, 54.076021], [-123.553139, 54.076286], [-123.553323, 54.076597], [-123.557489, 54.078898], [-123.559246, 54.079258], [-123.56205, 54.07917], [-123.564871, 54.079428], [-123.56709, 54.079207], [-123.568711, 54.078402], [-123.569526, 54.07686], [-123.570106, 54.076277], [-123.571753, 54.075995], [-123.574094, 54.074515], [-123.574971, 54.073052], [-123.575333, 54.070651], [-123.57575, 54.069876], [-123.576963, 54.068743], [-123.578403, 54.06432], [-123.579722, 54.062136], [-123.582247, 54.060198], [-123.585511, 54.05853], [-123.58678, 54.058139], [-123.587393, 54.058186], [-123.590314, 54.058714], [-123.595478, 54.060117], [-123.59714, 54.060234], [-123.598104, 54.059972], [-123.601226, 54.059791], [-123.603085, 54.059586], [-123.604338, 54.05914], [-123.605981, 54.058437], [-123.60763, 54.057307], [-123.609491, 54.055728], [-123.61044, 54.053872], [-123.612983, 54.051056], [-123.613178, 54.049616], [-123.613956, 54.048272], [-123.615192, 54.046682], [-123.616827, 54.045471], [-123.617777, 54.04458], [-123.618105, 54.043631], [-123.617966, 54.042902], [-123.617101, 54.042108], [-123.616018, 54.041421], [-123.613992, 54.040789], [-123.606129, 54.038947], [-123.603847, 54.038769], [-123.602334, 54.038807], [-123.600266, 54.038394], [-123.596636, 54.037975], [-123.594361, 54.037907], [-123.590962, 54.038092], [-123.588348, 54.03802], [-123.583474, 54.038698], [-123.581717, 54.039042], [-123.580008, 54.039111], [-123.57849, 54.038944], [-123.576972, 54.03843], [-123.575532, 54.037556], [-123.574045, 54.035454], [-123.572946, 54.034491], [-123.572775, 54.033403], [-123.573003, 54.032545], [-123.575509, 54.031672], [-123.579867, 54.031822], [-123.584396, 54.030176], [-123.584915, 54.029663], [-123.584955, 54.029172], [-123.585614, 54.027111], [-123.58553, 54.026189], [-123.584522, 54.023794], [-123.580527, 54.021113], [-123.577068, 54.020213], [-123.574382, 54.019238], [-123.572226, 54.018031], [-123.571449, 54.017517], [-123.569637, 54.014422], [-123.564641, 54.011615], [-123.563335, 54.011063], [-123.562116, 54.010261], [-123.560597, 54.009066], [-123.5588, 54.008048], [-123.556835, 54.006672], [-123.554465, 54.003483], [-123.552506, 54.002378], [-123.551621, 54.00105], [-123.550094, 53.999909], [-123.548118, 53.999191], [-123.546366, 53.997736], [-123.544492, 53.995385], [-123.542154, 53.993721], [-123.540656, 53.991926], [-123.540659, 53.989943], [-123.540749, 53.98933], [-123.541819, 53.98766], [-123.53996, 53.987224], [-123.537311, 53.986948], [-123.535983, 53.987024], [-123.534809, 53.987266], [-123.532847, 53.988271], [-123.530338, 53.990084], [-123.526519, 53.991863], [-123.523393, 53.993605], [-123.522651, 53.994925], [-123.522582, 53.997366], [-123.524077, 54.000898], [-123.523743, 54.003199], [-123.523286, 54.003839], [-123.522476, 54.004311], [-123.521246, 54.004856], [-123.519921, 54.005121], [-123.518595, 54.005033], [-123.516939, 54.004534], [-123.51579, 54.004011], [-123.514236, 54.003], [-123.510997, 53.999609], [-123.509995, 53.999024], [-123.508953, 53.998634], [-123.506808, 53.998481], [-123.505759, 53.998648], [-123.501992, 53.999495], [-123.497521, 54.001576], [-123.494886, 54.002302], [-123.491364, 54.002861], [-123.489314, 54.002827], [-123.487802, 54.002693], [-123.483909, 54.001797], [-123.482789, 54.001371], [-123.481064, 54.000459], [-123.477832, 53.999247], [-123.47341, 53.998354], [-123.471572, 53.998268], [-123.469052, 53.997919], [-123.467764, 53.997473], [-123.466248, 53.996805], [-123.465419, 53.996363], [-123.463244, 53.994887], [-123.460924, 53.992904], [-123.459194, 53.990872], [-123.456218, 53.988412], [-123.453372, 53.98644], [-123.450891, 53.985168], [-123.448087, 53.983983], [-123.441571, 53.983131], [-123.437585, 53.982858], [-123.434382, 53.982373], [-123.431068, 53.981657], [-123.429613, 53.981102], [-123.428693, 53.980471], [-123.427222, 53.979054], [-123.425037, 53.976447], [-123.423614, 53.97523], [-123.422638, 53.974687], [-123.421732, 53.974334], [-123.420291, 53.973949], [-123.414285, 53.973298], [-123.411493, 53.97277], [-123.408039, 53.971729], [-123.405481, 53.971246], [-123.40401, 53.971104], [-123.39665, 53.971565], [-123.39438, 53.971613], [-123.392976, 53.971451], [-123.390465, 53.970802], [-123.388228, 53.969825], [-123.385905, 53.969029], [-123.382453, 53.96818], [-123.379, 53.967684], [-123.375237, 53.967422], [-123.370958, 53.967389], [-123.362278, 53.968354], [-123.356979, 53.968483], [-123.353556, 53.968774], [-123.352025, 53.968974], [-123.349945, 53.969447], [-123.348463, 53.97008], [-123.347569, 53.9706], [-123.346703, 53.970881], [-123.345393, 53.971104], [-123.343609, 53.971255], [-123.341526, 53.97129], [-123.338439, 53.971173], [-123.332964, 53.970648], [-123.330816, 53.970742], [-123.329208, 53.970978], [-123.326065, 53.971692], [-123.325209, 53.971998], [-123.323581, 53.972791], [-123.322982, 53.973156], [-123.321155, 53.973877], [-123.317823, 53.973877], [-123.314426, 53.97419], [-123.313177, 53.974409], [-123.31195, 53.974774], [-123.311038, 53.975113], [-123.310065, 53.975546], [-123.308954, 53.976379], [-123.306987, 53.978609], [-123.305953, 53.97939], [-123.303247, 53.980713], [-123.302314, 53.980914], [-123.300158, 53.981122], [-123.299064, 53.981291], [-123.294503, 53.982906], [-123.292652, 53.983067], [-123.290804, 53.983627], [-123.288272, 53.984678], [-123.286787, 53.985018], [-123.284912, 53.985205], [-123.281732, 53.985709], [-123.277824, 53.986545], [-123.273469, 53.987274], [-123.27102, 53.987405], [-123.27008, 53.987372], [-123.267518, 53.98667], [-123.266404, 53.986192], [-123.264223, 53.985833], [-123.261581, 53.98594], [-123.259666, 53.985584], [-123.25832, 53.985454], [-123.257304, 53.985212], [-123.25572, 53.984483], [-123.251827, 53.983323], [-123.250234, 53.982791], [-123.247981, 53.981861], [-123.247033, 53.980877], [-123.245828, 53.978904], [-123.242472, 53.975477], [-123.239839, 53.971975], [-123.238945, 53.971134], [-123.237786, 53.968228], [-123.23722, 53.963713], [-123.236628, 53.9625], [-123.236066, 53.961752], [-123.235718, 53.960462], [-123.235722, 53.959776], [-123.236603, 53.957132], [-123.237227, 53.956511], [-123.238503, 53.955805], [-123.240215, 53.955214], [-123.241517, 53.954423], [-123.242134, 53.953718], [-123.243599, 53.951015], [-123.244448, 53.950235], [-123.245185, 53.949997], [-123.247694, 53.949486], [-123.249828, 53.948356], [-123.254264, 53.945314], [-123.255595, 53.944648], [-123.255545, 53.944329], [-123.255646, 53.943098], [-123.255989, 53.942646], [-123.257155, 53.941939], [-123.257781, 53.941749], [-123.258627, 53.941044], [-123.258602, 53.940537], [-123.258274, 53.939848], [-123.257366, 53.936118], [-123.2568, 53.933106], [-123.256759, 53.93214], [-123.257347, 53.930552], [-123.258308, 53.928691], [-123.2588, 53.928101], [-123.259057, 53.927591], [-123.259173, 53.926893], [-123.259065, 53.926288], [-123.258319, 53.925133], [-123.257968, 53.924186], [-123.256151, 53.922386], [-123.255837, 53.921515], [-123.25501, 53.920772], [-123.251329, 53.918492], [-123.250832, 53.91806], [-123.249945, 53.91631], [-123.24939, 53.915752], [-123.246298, 53.913835], [-123.24397, 53.91299], [-123.239721, 53.911881], [-123.238032, 53.911193], [-123.235005, 53.910546], [-123.233147, 53.910516], [-123.231113, 53.910719], [-123.229223, 53.911119], [-123.225025, 53.911361], [-123.22389, 53.91158], [-123.219665, 53.913304], [-123.218547, 53.913557], [-123.213693, 53.913694], [-123.211353, 53.914053], [-123.209595, 53.91453], [-123.207937, 53.914731], [-123.205556, 53.915473], [-123.20475, 53.915511], [-123.201369, 53.915001], [-123.200558, 53.914944], [-123.198478, 53.915075], [-123.196947, 53.9151], [-123.190881, 53.914602], [-123.187078, 53.913504], [-123.182659, 53.91257], [-123.1811, 53.912314], [-123.178057, 53.912138], [-123.177087, 53.911986], [-123.176107, 53.911723], [-123.172632, 53.910315], [-123.171018, 53.908945], [-123.168355, 53.90701], [-123.166791, 53.906235], [-123.165831, 53.905606], [-123.164725, 53.905177], [-123.161911, 53.902491], [-123.160211, 53.90146], [-123.155851, 53.901289], [-123.152324, 53.900748], [-123.150154, 53.900742], [-123.146708, 53.900913], [-123.13844, 53.902038], [-123.13348, 53.902179], [-123.128816, 53.90284], [-123.126888, 53.902763], [-123.125755, 53.902934], [-123.124862, 53.902881], [-123.123154, 53.902441], [-123.116076, 53.899963], [-123.115094, 53.899802], [-123.113784, 53.898443], [-123.112989, 53.896942], [-123.112894, 53.896241], [-123.11371, 53.893536], [-123.113579, 53.89297], [-123.113135, 53.892305], [-123.112659, 53.891792], [-123.111495, 53.890976], [-123.11058, 53.890617], [-123.109822, 53.890395], [-123.108108, 53.889351], [-123.106141, 53.888538], [-123.101592, 53.887551], [-123.099195, 53.88649], [-123.098099, 53.885513], [-123.096774, 53.884666], [-123.096353, 53.884076], [-123.09618, 53.883245], [-123.09395, 53.881204], [-123.092426, 53.878766], [-123.091766, 53.8781], [-123.090363, 53.87629], [-123.089608, 53.874489], [-123.088602, 53.873255], [-123.087811, 53.870891], [-123.08741, 53.867145], [-123.087525, 53.862126], [-123.087296, 53.8609], [-123.086463, 53.859456], [-123.084838, 53.857875], [-123.084453, 53.857589], [-123.080311, 53.854958], [-123.076509, 53.853035], [-123.073866, 53.852105], [-123.071687, 53.851701], [-123.069376, 53.851383], [-123.067436, 53.851349], [-123.064636, 53.851906], [-123.063097, 53.852475], [-123.060327, 53.854128], [-123.058971, 53.854737], [-123.056713, 53.855371], [-123.054926, 53.85565], [-123.053719, 53.855914], [-123.051845, 53.856717], [-123.050741, 53.857351], [-123.04982, 53.858292], [-123.049233, 53.859535], [-123.049143, 53.863033], [-123.048286, 53.865043], [-123.046808, 53.867069], [-123.04584, 53.867789], [-123.04274, 53.869421], [-123.040686, 53.870056], [-123.038722, 53.870346], [-123.036792, 53.870475], [-123.031908, 53.87004], [-123.029944, 53.870153], [-123.028112, 53.870435], [-123.025649, 53.871178], [-123.021307, 53.872075], [-123.019738, 53.872614], [-123.017727, 53.873597], [-123.015215, 53.874336], [-123.014363, 53.874521], [-123.012062, 53.874499], [-123.007428, 53.875505], [-123.001975, 53.876134], [-123.000666, 53.876498], [-122.994938, 53.878931], [-122.99425, 53.879597], [-122.993408, 53.880037], [-122.989762, 53.881393], [-122.988627, 53.881599], [-122.987014, 53.882058], [-122.985989, 53.882494], [-122.983436, 53.884468], [-122.982609, 53.885704], [-122.981183, 53.886786], [-122.980204, 53.887393], [-122.97909, 53.887734], [-122.978053, 53.888367], [-122.976172, 53.890377], [-122.974129, 53.893191], [-122.972558, 53.894349], [-122.970494, 53.894814], [-122.96794, 53.89591], [-122.966967, 53.896978], [-122.966471, 53.898792], [-122.965956, 53.899219], [-122.963153, 53.900309], [-122.953678, 53.901041], [-122.951265, 53.901453], [-122.949757, 53.901834], [-122.948622, 53.902348], [-122.947002, 53.903609], [-122.946267, 53.905796], [-122.945905, 53.906363], [-122.945984, 53.908142], [-122.946542, 53.910113], [-122.946973, 53.91113], [-122.947728, 53.91213], [-122.949115, 53.913049], [-122.953153, 53.914924], [-122.958091, 53.916958], [-122.95889, 53.917841], [-122.959223, 53.918686], [-122.95883, 53.919815], [-122.957424, 53.921377], [-122.956246, 53.922386], [-122.955327, 53.923051], [-122.953311, 53.923766], [-122.951711, 53.923972], [-122.944377, 53.924211], [-122.943066, 53.924978], [-122.942183, 53.925841], [-122.940263, 53.928963], [-122.94001, 53.929858], [-122.939987, 53.931365], [-122.940302, 53.932153], [-122.941942, 53.933879], [-122.942486, 53.934349], [-122.943765, 53.93498], [-122.945583, 53.935464], [-122.948995, 53.935511], [-122.949877, 53.935416], [-122.957324, 53.933708], [-122.95915, 53.933752], [-122.962258, 53.934254], [-122.964069, 53.934712], [-122.965619, 53.935357], [-122.968203, 53.937025], [-122.969037, 53.938189], [-122.968997, 53.938838], [-122.968588, 53.939913], [-122.967869, 53.940758], [-122.966268, 53.942051], [-122.965164, 53.942429], [-122.963546, 53.942794], [-122.962334, 53.9429], [-122.960473, 53.943293], [-122.959713, 53.943557], [-122.958766, 53.944074], [-122.957636, 53.945163], [-122.955067, 53.946629], [-122.954225, 53.947281], [-122.953463, 53.948235], [-122.952561, 53.948889], [-122.950716, 53.949859], [-122.948098, 53.95077], [-122.945684, 53.95117], [-122.941225, 53.951142], [-122.939283, 53.950601], [-122.937499, 53.949658], [-122.935158, 53.947747], [-122.933697, 53.947317], [-122.932486, 53.947116], [-122.930624, 53.947132], [-122.929971, 53.947228], [-122.929325, 53.947621], [-122.928633, 53.948275], [-122.927457, 53.949723], [-122.926973, 53.950646], [-122.926308, 53.952975], [-122.926514, 53.953636], [-122.92726, 53.954414], [-122.928916, 53.955399], [-122.93127, 53.956118], [-122.933685, 53.956649], [-122.935598, 53.957296], [-122.937269, 53.958257], [-122.938636, 53.959286], [-122.939599, 53.960322], [-122.940178, 53.961396], [-122.939846, 53.96258], [-122.939132, 53.963322], [-122.937917, 53.965004], [-122.936515, 53.96609], [-122.935158, 53.966896], [-122.933775, 53.967424], [-122.93083, 53.967715], [-122.929642, 53.967901], [-122.926677, 53.967895], [-122.925883, 53.967751], [-122.924805, 53.967261], [-122.922554, 53.966464], [-122.92158, 53.965951], [-122.920035, 53.965377], [-122.918059, 53.965313], [-122.91642, 53.965538], [-122.915054, 53.965937], [-122.912563, 53.965925], [-122.909019, 53.965815], [-122.908167, 53.965892], [-122.907235, 53.966092], [-122.905253, 53.967169], [-122.904739, 53.967744], [-122.904499, 53.96861], [-122.905209, 53.969795], [-122.907148, 53.971326], [-122.909833, 53.97398], [-122.91057, 53.974983], [-122.910865, 53.976388], [-122.910632, 53.976904], [-122.909534, 53.97784], [-122.907929, 53.978377], [-122.905721, 53.978713], [-122.903935, 53.978712], [-122.90188, 53.978457], [-122.900509, 53.978086], [-122.900364, 53.978677], [-122.900474, 53.979173], [-122.90051, 53.981188], [-122.850216, 53.981184], [-122.850091, 53.98134], [-122.850593, 53.995871], [-122.850422, 54.003117], [-122.848886, 54.01063], [-122.84924, 54.015832], [-122.850854, 54.025397], [-122.851035, 54.027024], [-122.851231, 54.039672], [-122.843284, 54.04082], [-122.843082, 54.039901], [-122.843218, 54.039082], [-122.801103, 54.039494], [-122.760431, 54.039528], [-122.759742, 54.039631], [-122.752186, 54.039693], [-122.740972, 54.039313], [-122.729003, 54.039335], [-122.727204, 54.039397], [-122.727044, 54.022213], [-122.727153, 54.012306], [-122.715479, 54.012021], [-122.689448, 54.012267], [-122.643679, 54.012136], [-122.643164, 54.027427], [-122.615131, 54.027523], [-122.607778, 54.027488], [-122.607156, 54.015911], [-122.603469, 54.017214], [-122.600383, 54.019513], [-122.598973, 54.02086], [-122.597517, 54.023352], [-122.596384, 54.024453], [-122.594831, 54.02696], [-122.595098, 54.028749], [-122.596063, 54.032246], [-122.597825, 54.034266], [-122.599225, 54.035647], [-122.60238, 54.038053], [-122.608036, 54.042576], [-122.610356, 54.043854], [-122.612743, 54.044896], [-122.614209, 54.046203], [-122.614175, 54.047045], [-122.613181, 54.048246], [-122.611545, 54.04863], [-122.608215, 54.049159], [-122.597795, 54.047665], [-122.584955, 54.04786], [-122.575899, 54.050213], [-122.572893, 54.051246], [-122.569773, 54.052943], [-122.567565, 54.054911], [-122.563396, 54.057983], [-122.560663, 54.062536], [-122.55817, 54.066029], [-122.545826, 54.072972], [-122.538275, 54.078367], [-122.537039, 54.078726], [-122.533084, 54.079664], [-122.520079, 54.08337], [-122.511846, 54.085365], [-122.510271, 54.086074], [-122.510049, 54.087266], [-122.510104, 54.091819], [-122.509866, 54.093322], [-122.515147, 54.097469], [-122.516097, 54.098006], [-122.51725, 54.098408], [-122.518144, 54.098994], [-122.518619, 54.09976], [-122.518914, 54.100035], [-122.522285, 54.101933], [-122.527535, 54.102694], [-122.533073, 54.1048], [-122.53755, 54.109336], [-122.538732, 54.112284], [-122.539326, 54.114026], [-122.540458, 54.11581], [-122.541734, 54.117264], [-122.544205, 54.118168], [-122.547144, 54.118942], [-122.551696, 54.119176], [-122.553722, 54.118946], [-122.556892, 54.118073], [-122.559092, 54.118099], [-122.567614, 54.118516], [-122.572276, 54.119574], [-122.575302, 54.119932], [-122.588194, 54.119567], [-122.594313, 54.120044], [-122.598092, 54.121223], [-122.599206, 54.122426], [-122.599752, 54.123188], [-122.599525, 54.125955], [-122.598697, 54.126697], [-122.594668, 54.129134], [-122.590806, 54.129447], [-122.589319, 54.129171], [-122.582317, 54.1274], [-122.580351, 54.1273], [-122.578173, 54.12746], [-122.572624, 54.129334], [-122.571288, 54.130823], [-122.571005, 54.132471], [-122.573375, 54.136043], [-122.574301, 54.138821], [-122.573846, 54.14105], [-122.572926, 54.144498], [-122.57172, 54.14831], [-122.572152, 54.149811], [-122.573172, 54.155713], [-122.576039, 54.160541], [-122.575562, 54.161426], [-122.614171, 54.160928], [-122.638364, 54.161043], [-122.639238, 54.166979], [-122.664467, 54.167668], [-122.702849, 54.165909], [-122.703325, 54.166764], [-122.703672, 54.167149], [-122.739763, 54.167486], [-122.739812, 54.163656], [-122.762697, 54.16379], [-122.81287, 54.163865], [-122.812879, 54.148776], [-122.861355, 54.148704], [-122.865836, 54.157039], [-122.91998, 54.157236], [-122.946086, 54.156867], [-122.945972, 54.165763], [-123.022576, 54.165511], [-123.021425, 54.167311], [-123.020979, 54.179913], [-123.055772, 54.180043], [-123.075832, 54.180208], [-123.12633, 54.179826], [-123.179425, 54.181205], [-123.188984, 54.180731], [-123.21611, 54.179752], [-123.216243, 54.17072], [-123.26742, 54.170402], [-123.309404, 54.170633], [-123.361544, 54.170652], [-123.452584, 54.17116]]]]}, "properties": {"name": "Fraser-Fort George A", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fraser-Fort George A", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953038", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.352025, 53.968974], [-123.353556, 53.968774], [-123.356979, 53.968483], [-123.362278, 53.968354], [-123.370958, 53.967389], [-123.375237, 53.967422], [-123.379, 53.967684], [-123.382453, 53.96818], [-123.385905, 53.969029], [-123.388228, 53.969825], [-123.390465, 53.970802], [-123.392976, 53.971451], [-123.39438, 53.971613], [-123.39665, 53.971565], [-123.40401, 53.971104], [-123.405481, 53.971246], [-123.408039, 53.971729], [-123.411493, 53.97277], [-123.414285, 53.973298], [-123.420291, 53.973949], [-123.421732, 53.974334], [-123.422398, 53.974593], [-123.425561, 53.974747], [-123.425711, 53.954339], [-123.425704, 53.916593], [-123.425308, 53.895176], [-123.426119, 53.890207], [-123.428969, 53.886721], [-123.427318, 53.876632], [-123.425079, 53.87146], [-123.425362, 53.858186], [-123.425204, 53.840919], [-123.424697, 53.816665], [-123.42525, 53.792634], [-123.440546, 53.794953], [-123.448367, 53.795174], [-123.462535, 53.793881], [-123.473504, 53.79265], [-123.50071, 53.787462], [-123.510313, 53.781504], [-123.513671, 53.770759], [-123.512626, 53.76715], [-123.518127, 53.758978], [-123.513252, 53.748989], [-123.499368, 53.728504], [-123.493896, 53.728006], [-123.489904, 53.724583], [-123.482963, 53.724159], [-123.478323, 53.717793], [-123.473721, 53.716161], [-123.473243, 53.713763], [-123.468111, 53.711741], [-123.465075, 53.708431], [-123.447336, 53.708834], [-123.442755, 53.705154], [-123.435475, 53.692701], [-123.424355, 53.681687], [-123.420324, 53.678036], [-123.413115, 53.675049], [-123.40541, 53.676609], [-123.39966, 53.674275], [-123.38259, 53.666143], [-123.376431, 53.665457], [-123.36955, 53.659034], [-123.369078, 53.654933], [-123.370771, 53.651332], [-123.375485, 53.648598], [-123.370094, 53.64778], [-123.361624, 53.64887], [-123.351134, 53.647058], [-123.304718, 53.627589], [-123.304275, 53.616859], [-123.302366, 53.554576], [-123.30307, 53.523968], [-123.303179, 53.499123], [-123.280561, 53.499273], [-123.277745, 53.47059], [-123.300446, 53.470531], [-123.301706, 53.47048], [-123.301833, 53.411751], [-123.301432, 53.392078], [-123.301268, 53.371964], [-123.301464, 53.360178], [-123.30373, 53.30129], [-123.30512, 53.28364], [-123.30328, 53.283405], [-123.301687, 53.283564], [-123.299559, 53.284155], [-123.297967, 53.283608], [-123.296408, 53.282892], [-123.295054, 53.281652], [-123.292876, 53.281222], [-123.29216, 53.281138], [-123.290334, 53.281986], [-123.289954, 53.282107], [-123.289494, 53.282134], [-123.288812, 53.282384], [-123.287827, 53.283105], [-123.287103, 53.283255], [-123.285544, 53.284418], [-123.285288, 53.284705], [-123.284113, 53.285343], [-123.282547, 53.285747], [-123.282076, 53.286372], [-123.282166, 53.286814], [-123.282494, 53.28711], [-123.282982, 53.287353], [-123.28385, 53.288326], [-123.28391, 53.288564], [-123.283633, 53.289101], [-123.283488, 53.289222], [-123.282992, 53.289336], [-123.281508, 53.289367], [-123.280673, 53.289302], [-123.279797, 53.289061], [-123.277282, 53.288671], [-123.274516, 53.288289], [-123.273372, 53.288264], [-123.27289, 53.288442], [-123.272039, 53.289261], [-123.272129, 53.289736], [-123.272783, 53.29076], [-123.272757, 53.291136], [-123.272513, 53.29164], [-123.271469, 53.292227], [-123.269948, 53.292918], [-123.268964, 53.293223], [-123.267819, 53.293799], [-123.265733, 53.29448], [-123.264104, 53.294297], [-123.262717, 53.293583], [-123.262315, 53.292847], [-123.261911, 53.292374], [-123.261565, 53.29221], [-123.261045, 53.292155], [-123.260137, 53.292599], [-123.259663, 53.292951], [-123.258928, 53.29316], [-123.258447, 53.293445], [-123.256613, 53.295335], [-123.256084, 53.29561], [-123.255195, 53.29559], [-123.253873, 53.295044], [-123.253318, 53.294506], [-123.251203, 53.294308], [-123.250842, 53.294405], [-123.250546, 53.294802], [-123.250169, 53.295058], [-123.249211, 53.295155], [-123.24881, 53.295489], [-123.248139, 53.295859], [-123.247731, 53.296372], [-123.247471, 53.296947], [-123.246609, 53.297928], [-123.245472, 53.29875], [-123.244666, 53.299518], [-123.244144, 53.299817], [-123.243332, 53.300055], [-123.242744, 53.30013], [-123.241924, 53.300104], [-123.240148, 53.299817], [-123.239649, 53.299643], [-123.237622, 53.298643], [-123.237093, 53.298551], [-123.236341, 53.298806], [-123.235942, 53.299273], [-123.235533, 53.299562], [-123.23377, 53.300149], [-123.232416, 53.300466], [-123.229793, 53.300847], [-123.22947, 53.300839], [-123.227157, 53.300246], [-123.226185, 53.298944], [-123.224916, 53.297928], [-123.223943, 53.29745], [-123.223253, 53.297247], [-123.221962, 53.297064], [-123.22092, 53.297087], [-123.220004, 53.297265], [-123.219337, 53.297554], [-123.218548, 53.298205], [-123.218394, 53.298591], [-123.218468, 53.299437], [-123.218317, 53.29982], [-123.217191, 53.300753], [-123.216387, 53.301167], [-123.215371, 53.301489], [-123.214694, 53.301546], [-123.212959, 53.301264], [-123.209871, 53.301453], [-123.208464, 53.301218], [-123.208301, 53.300557], [-123.208385, 53.299498], [-123.208611, 53.298731], [-123.208977, 53.298391], [-123.209432, 53.297529], [-123.20928, 53.297065], [-123.209075, 53.296874], [-123.208706, 53.296729], [-123.205614, 53.296484], [-123.204459, 53.29657], [-123.204044, 53.296742], [-123.202368, 53.297171], [-123.201377, 53.297847], [-123.199863, 53.298705], [-123.199311, 53.298925], [-123.198868, 53.298979], [-123.196841, 53.29792], [-123.194693, 53.297396], [-123.193576, 53.29702], [-123.192367, 53.296514], [-123.191361, 53.295768], [-123.190813, 53.295593], [-123.190372, 53.295553], [-123.189256, 53.295637], [-123.1875, 53.296182], [-123.186828, 53.296507], [-123.185479, 53.297378], [-123.185062, 53.297534], [-123.183817, 53.29771], [-123.18041, 53.297616], [-123.177801, 53.297971], [-123.175854, 53.298425], [-123.175351, 53.298642], [-123.172857, 53.299363], [-123.170951, 53.299644], [-123.169258, 53.299699], [-123.167223, 53.299419], [-123.166104, 53.299015], [-123.165668, 53.298736], [-123.165361, 53.298304], [-123.165356, 53.297814], [-123.165716, 53.297604], [-123.166171, 53.297474], [-123.16743, 53.297426], [-123.170287, 53.297128], [-123.171427, 53.296879], [-123.171822, 53.296693], [-123.171867, 53.296567], [-123.171492, 53.296165], [-123.170675, 53.294368], [-123.169561, 53.293144], [-123.168722, 53.292553], [-123.167453, 53.291845], [-123.163528, 53.290972], [-123.161355, 53.290685], [-123.159995, 53.290703], [-123.159139, 53.290807], [-123.158054, 53.291119], [-123.155886, 53.29118], [-123.154071, 53.291415], [-123.153447, 53.291595], [-123.152729, 53.291947], [-123.151792, 53.292833], [-123.151238, 53.292887], [-123.150496, 53.292786], [-123.148674, 53.29191], [-123.146087, 53.290967], [-123.145696, 53.290762], [-123.145749, 53.289261], [-123.145541, 53.288665], [-123.145026, 53.288039], [-123.144117, 53.28746], [-123.14332, 53.287325], [-123.142675, 53.287334], [-123.142333, 53.287512], [-123.140095, 53.288244], [-123.139799, 53.288425], [-123.138386, 53.288521], [-123.137782, 53.289058], [-123.13757, 53.289048], [-123.137322, 53.288926], [-123.135687, 53.289118], [-123.134295, 53.289191], [-123.132762, 53.289649], [-123.131832, 53.28942], [-123.129467, 53.289759], [-123.128987, 53.2903], [-123.127934, 53.291085], [-123.127487, 53.291237], [-123.126555, 53.291326], [-123.125809, 53.291203], [-123.124958, 53.290937], [-123.124159, 53.29044], [-123.122672, 53.28997], [-123.122517, 53.289852], [-123.121302, 53.289728], [-123.120881, 53.289423], [-123.120595, 53.289387], [-123.119905, 53.289406], [-123.119291, 53.289487], [-123.118765, 53.28946], [-123.117625, 53.28957], [-123.115504, 53.289644], [-123.112901, 53.289605], [-123.112175, 53.289675], [-123.111369, 53.289856], [-123.109683, 53.290065], [-123.109243, 53.290192], [-123.109024, 53.290376], [-123.109222, 53.290756], [-123.109184, 53.290894], [-123.108682, 53.291425], [-123.107482, 53.291732], [-123.106033, 53.291697], [-123.105659, 53.291994], [-123.10476, 53.292421], [-123.103306, 53.292572], [-123.101335, 53.292902], [-123.100329, 53.293214], [-123.099828, 53.29373], [-123.099273, 53.293878], [-123.098465, 53.293971], [-123.09785, 53.293822], [-123.096926, 53.293268], [-123.095631, 53.292244], [-123.092786, 53.291182], [-123.092297, 53.291102], [-123.091371, 53.291188], [-123.090079, 53.291081], [-123.089466, 53.291155], [-123.088753, 53.29138], [-123.088228, 53.291311], [-123.086259, 53.290276], [-123.084488, 53.289864], [-123.082895, 53.289353], [-123.082087, 53.289236], [-123.080737, 53.289296], [-123.079784, 53.289209], [-123.078429, 53.288259], [-123.077734, 53.287859], [-123.077186, 53.28769], [-123.076692, 53.287701], [-123.074637, 53.28838], [-123.072298, 53.288937], [-123.070747, 53.289615], [-123.07022, 53.289667], [-123.069202, 53.289617], [-123.068093, 53.290117], [-123.067605, 53.290222], [-123.067218, 53.290235], [-123.066786, 53.289954], [-123.066131, 53.289668], [-123.065849, 53.289624], [-123.062993, 53.290307], [-123.062002, 53.290435], [-123.061049, 53.290467], [-123.060518, 53.290625], [-123.06016, 53.290907], [-123.060091, 53.29143], [-123.060284, 53.291927], [-123.060286, 53.292281], [-123.059647, 53.2935], [-123.059507, 53.294724], [-123.059086, 53.295249], [-123.058075, 53.295849], [-123.057987, 53.296525], [-123.05743, 53.298065], [-123.057447, 53.298341], [-123.057721, 53.298746], [-123.057761, 53.299538], [-123.057336, 53.300127], [-123.056624, 53.300388], [-123.055925, 53.300399], [-123.055017, 53.300159], [-123.05347, 53.29958], [-123.052145, 53.29933], [-123.047142, 53.299159], [-123.046909, 53.298895], [-123.04699, 53.297717], [-123.046628, 53.296991], [-123.046348, 53.296758], [-123.045843, 53.296527], [-123.044879, 53.296443], [-123.044182, 53.296117], [-123.042415, 53.294339], [-123.041987, 53.294123], [-123.041461, 53.293979], [-123.040995, 53.29396], [-123.039453, 53.29416], [-123.038816, 53.294127], [-123.038081, 53.293787], [-123.037347, 53.293065], [-123.036748, 53.292852], [-123.036272, 53.292775], [-123.035692, 53.292868], [-123.035172, 53.293141], [-123.034543, 53.293811], [-123.034227, 53.294009], [-123.033614, 53.294174], [-123.033211, 53.294154], [-123.033045, 53.293988], [-123.032501, 53.292303], [-123.032022, 53.291823], [-123.031753, 53.291729], [-123.031219, 53.29174], [-123.030298, 53.292182], [-123.029283, 53.292432], [-123.028738, 53.292253], [-123.027794, 53.291727], [-123.026698, 53.290944], [-123.026573, 53.290681], [-123.026734, 53.290525], [-123.027066, 53.290436], [-123.028847, 53.290158], [-123.029493, 53.289846], [-123.029763, 53.289486], [-123.029786, 53.289094], [-123.029573, 53.288862], [-123.029183, 53.288645], [-123.028806, 53.288553], [-123.027999, 53.288517], [-123.026822, 53.288685], [-123.026408, 53.288919], [-123.025751, 53.289604], [-123.025014, 53.290141], [-123.024157, 53.290349], [-123.02375, 53.290337], [-123.02336, 53.290209], [-123.022797, 53.289715], [-123.022451, 53.289256], [-123.022138, 53.288516], [-123.022202, 53.287878], [-123.022508, 53.287381], [-123.023074, 53.286989], [-123.023166, 53.286767], [-123.023088, 53.28654], [-123.022635, 53.286445], [-123.021657, 53.286727], [-123.020932, 53.286807], [-123.019792, 53.286762], [-123.019349, 53.286681], [-123.018445, 53.286189], [-123.017717, 53.285599], [-123.017355, 53.28522], [-123.017251, 53.284911], [-123.017543, 53.284521], [-123.019085, 53.283921], [-123.019558, 53.283658], [-123.020037, 53.283275], [-123.020567, 53.282608], [-123.021042, 53.282192], [-123.021439, 53.282078], [-123.022602, 53.281979], [-123.022835, 53.281791], [-123.022839, 53.281507], [-123.022544, 53.280984], [-123.022058, 53.280557], [-123.021422, 53.280259], [-123.02076, 53.280111], [-123.019993, 53.280106], [-123.019524, 53.280177], [-123.018154, 53.280607], [-123.01715, 53.280784], [-123.015096, 53.280791], [-123.013855, 53.280494], [-123.013435, 53.280235], [-123.01319, 53.279882], [-123.013165, 53.279236], [-123.013517, 53.278783], [-123.014578, 53.277847], [-123.014762, 53.277514], [-123.014774, 53.277178], [-123.01459, 53.276871], [-123.014185, 53.276618], [-123.012852, 53.276259], [-123.010964, 53.276538], [-123.010031, 53.276557], [-123.008212, 53.275684], [-123.007391, 53.275461], [-123.006417, 53.275308], [-123.004167, 53.275276], [-123.003658, 53.275392], [-123.003156, 53.275706], [-123.002891, 53.27649], [-122.999671, 53.278532], [-122.999111, 53.279048], [-122.998579, 53.279835], [-122.998739, 53.280059], [-122.998717, 53.280643], [-122.998223, 53.281235], [-122.997485, 53.281611], [-122.996732, 53.281719], [-122.994871, 53.281645], [-122.994563, 53.281708], [-122.994281, 53.281899], [-122.994366, 53.28289], [-122.993703, 53.283655], [-122.992512, 53.284481], [-122.991824, 53.284633], [-122.991444, 53.284586], [-122.989179, 53.283698], [-122.987543, 53.283416], [-122.986182, 53.28337], [-122.985129, 53.283427], [-122.982877, 53.283317], [-122.981799, 53.283457], [-122.980839, 53.2834], [-122.979598, 53.283145], [-122.978568, 53.283051], [-122.977597, 53.283085], [-122.975892, 53.283582], [-122.97453, 53.283796], [-122.973177, 53.283927], [-122.972448, 53.283913], [-122.971883, 53.283755], [-122.971298, 53.283309], [-122.971182, 53.282325], [-122.970871, 53.28193], [-122.970565, 53.281688], [-122.970017, 53.28144], [-122.969382, 53.281311], [-122.968862, 53.281331], [-122.96843, 53.281434], [-122.967808, 53.281751], [-122.967676, 53.281973], [-122.96766, 53.282446], [-122.968917, 53.283812], [-122.96902, 53.284712], [-122.968531, 53.285539], [-122.96853, 53.286315], [-122.96928, 53.288177], [-122.970295, 53.29025], [-122.970626, 53.290612], [-122.970882, 53.290743], [-122.971775, 53.290764], [-122.972113, 53.290907], [-122.97297, 53.291847], [-122.973649, 53.292398], [-122.973727, 53.292894], [-122.973631, 53.293094], [-122.973428, 53.293208], [-122.971524, 53.293906], [-122.971099, 53.294137], [-122.970926, 53.294752], [-122.970703, 53.295037], [-122.968179, 53.297632], [-122.966708, 53.298868], [-122.966553, 53.2992], [-122.966792, 53.299642], [-122.966797, 53.30008], [-122.966347, 53.300727], [-122.965977, 53.300932], [-122.965628, 53.300966], [-122.965158, 53.300768], [-122.964752, 53.300423], [-122.964068, 53.30003], [-122.962976, 53.298904], [-122.961829, 53.298018], [-122.961321, 53.297357], [-122.960739, 53.296017], [-122.960284, 53.295487], [-122.95955, 53.295288], [-122.958712, 53.295251], [-122.957857, 53.295996], [-122.957666, 53.296434], [-122.956988, 53.297495], [-122.955877, 53.298354], [-122.954861, 53.298798], [-122.953776, 53.298837], [-122.952976, 53.298737], [-122.952425, 53.298576], [-122.952072, 53.298384], [-122.950872, 53.297259], [-122.950575, 53.296759], [-122.95001, 53.296585], [-122.949518, 53.296216], [-122.948914, 53.295229], [-122.948898, 53.294745], [-122.947966, 53.293871], [-122.947457, 53.293573], [-122.947048, 53.293546], [-122.946838, 53.293603], [-122.946447, 53.294157], [-122.945851, 53.294722], [-122.94558, 53.295399], [-122.945187, 53.295772], [-122.945201, 53.29629], [-122.944486, 53.296964], [-122.9441, 53.297142], [-122.942718, 53.296795], [-122.941972, 53.29646], [-122.940918, 53.296159], [-122.93982, 53.295594], [-122.938314, 53.295319], [-122.936814, 53.295281], [-122.93556, 53.295806], [-122.933397, 53.296446], [-122.931099, 53.297411], [-122.929412, 53.297888], [-122.927924, 53.29845], [-122.926689, 53.298397], [-122.925847, 53.298504], [-122.925037, 53.298539], [-122.924543, 53.298638], [-122.923762, 53.298871], [-122.92232, 53.299437], [-122.919873, 53.300011], [-122.919333, 53.300334], [-122.918686, 53.300576], [-122.917531, 53.300629], [-122.916196, 53.3006], [-122.915492, 53.300429], [-122.914306, 53.299898], [-122.913257, 53.299583], [-122.912552, 53.299582], [-122.912237, 53.299654], [-122.910599, 53.300506], [-122.910133, 53.300829], [-122.909937, 53.301288], [-122.909621, 53.301738], [-122.909576, 53.302007], [-122.90935, 53.302322], [-122.909137, 53.30296], [-122.908926, 53.303832], [-122.908953, 53.304685], [-122.909299, 53.305198], [-122.909402, 53.305593], [-122.909896, 53.306152], [-122.909956, 53.306654], [-122.909684, 53.306798], [-122.907973, 53.30722], [-122.906261, 53.307506], [-122.905707, 53.307703], [-122.90518, 53.308099], [-122.905146, 53.309627], [-122.905295, 53.310148], [-122.905278, 53.311182], [-122.905128, 53.311532], [-122.904858, 53.311774], [-122.905021, 53.311874], [-122.905006, 53.311991], [-122.904648, 53.312227], [-122.904074, 53.312186], [-122.903769, 53.312232], [-122.902896, 53.312639], [-122.901761, 53.312995], [-122.89957, 53.314171], [-122.898597, 53.31461], [-122.897843, 53.314831], [-122.897156, 53.314888], [-122.896354, 53.314406], [-122.895813, 53.3143], [-122.893957, 53.31423], [-122.893372, 53.313602], [-122.892883, 53.313256], [-122.892448, 53.312145], [-122.8925, 53.311143], [-122.893527, 53.309543], [-122.893655, 53.308964], [-122.893552, 53.308365], [-122.893263, 53.307858], [-122.892433, 53.306949], [-122.892113, 53.306284], [-122.890851, 53.304777], [-122.890209, 53.304276], [-122.889799, 53.304072], [-122.889255, 53.303963], [-122.887826, 53.30397], [-122.885532, 53.30443], [-122.883739, 53.305001], [-122.882413, 53.305576], [-122.881089, 53.306301], [-122.879937, 53.30703], [-122.879233, 53.307626], [-122.878025, 53.309605], [-122.876542, 53.310451], [-122.875778, 53.310749], [-122.87522, 53.310839], [-122.872952, 53.311766], [-122.877148, 53.314231], [-122.88368, 53.318406], [-122.885403, 53.320046], [-122.885384, 53.323047], [-122.884831, 53.325245], [-122.883006, 53.327878], [-122.879667, 53.329936], [-122.872539, 53.336296], [-122.872396, 53.338908], [-122.87018, 53.340789], [-122.863508, 53.343462], [-122.862162, 53.344268], [-122.855584, 53.347308], [-122.851332, 53.349758], [-122.850325, 53.351342], [-122.85026, 53.353787], [-122.849407, 53.356366], [-122.848251, 53.357962], [-122.847471, 53.358353], [-122.846214, 53.359742], [-122.845194, 53.360595], [-122.84235, 53.362664], [-122.839892, 53.365245], [-122.8381, 53.369812], [-122.837627, 53.371379], [-122.83788, 53.372117], [-122.836847, 53.373558], [-122.835911, 53.374198], [-122.834953, 53.374727], [-122.830944, 53.375931], [-122.829978, 53.376129], [-122.829, 53.376577], [-122.827887, 53.376885], [-122.826262, 53.377106], [-122.824494, 53.377184], [-122.822801, 53.377469], [-122.813975, 53.378553], [-122.811158, 53.378406], [-122.806019, 53.378805], [-122.80062, 53.379708], [-122.79888, 53.380118], [-122.795633, 53.381502], [-122.79052, 53.382593], [-122.783658, 53.384237], [-122.768435, 53.385952], [-122.766667, 53.385917], [-122.766315, 53.385976], [-122.762698, 53.38607], [-122.760649, 53.385786], [-122.759761, 53.384988], [-122.75835, 53.384638], [-122.755843, 53.384279], [-122.75401, 53.383804], [-122.753011, 53.383669], [-122.752039, 53.383622], [-122.75118, 53.383431], [-122.748053, 53.383245], [-122.745501, 53.382921], [-122.742951, 53.382824], [-122.738932, 53.382433], [-122.734459, 53.382534], [-122.73025, 53.382934], [-122.727235, 53.383448], [-122.725992, 53.384072], [-122.723674, 53.385914], [-122.719674, 53.387483], [-122.71561, 53.388272], [-122.713401, 53.388222], [-122.711473, 53.388478], [-122.708843, 53.388639], [-122.704781, 53.389617], [-122.701624, 53.391004], [-122.699834, 53.391458], [-122.69821, 53.391686], [-122.69384, 53.391862], [-122.691597, 53.39176], [-122.689141, 53.391334], [-122.686565, 53.39077], [-122.684384, 53.390366], [-122.682518, 53.389862], [-122.680375, 53.388988], [-122.679685, 53.388136], [-122.679046, 53.387617], [-122.678264, 53.386729], [-122.675856, 53.38561], [-122.674087, 53.383724], [-122.672355, 53.381213], [-122.670597, 53.379855], [-122.669215, 53.379394], [-122.665666, 53.379433], [-122.661504, 53.380329], [-122.659433, 53.381047], [-122.658431, 53.38146], [-122.655598, 53.382358], [-122.651794, 53.384022], [-122.649137, 53.385536], [-122.645404, 53.387185], [-122.641781, 53.389854], [-122.638877, 53.393139], [-122.635397, 53.396834], [-122.634481, 53.399537], [-122.635145, 53.401549], [-122.635883, 53.402925], [-122.639255, 53.404136], [-122.642077, 53.406033], [-122.644451, 53.407528], [-122.646734, 53.411221], [-122.646994, 53.414944], [-122.647313, 53.41549], [-122.650364, 53.41815], [-122.653288, 53.420199], [-122.655435, 53.420796], [-122.657502, 53.422874], [-122.659523, 53.425423], [-122.66047, 53.428406], [-122.66063, 53.430955], [-122.662171, 53.436042], [-122.662429, 53.438532], [-122.66205, 53.439855], [-122.664384, 53.442419], [-122.671299, 53.446995], [-122.674943, 53.449896], [-122.677401, 53.452882], [-122.679316, 53.453439], [-122.681486, 53.455382], [-122.681784, 53.456092], [-122.683024, 53.457173], [-122.683995, 53.458864], [-122.684829, 53.460886], [-122.684665, 53.462541], [-122.684227, 53.46466], [-122.683683, 53.466379], [-122.682488, 53.468019], [-122.682086, 53.469313], [-122.678924, 53.473154], [-122.677869, 53.47431], [-122.675829, 53.475704], [-122.673709, 53.47783], [-122.674162, 53.479643], [-122.673782, 53.481911], [-122.675447, 53.488344], [-122.67249, 53.491336], [-122.669844, 53.492511], [-122.669122, 53.49478], [-122.669435, 53.496588], [-122.670622, 53.4978], [-122.674219, 53.499814], [-122.67628, 53.499065], [-122.676648, 53.499547], [-122.677166, 53.500555], [-122.678989, 53.50295], [-122.67936, 53.503635], [-122.680195, 53.504771], [-122.681132, 53.506544], [-122.681486, 53.507551], [-122.681483, 53.508063], [-122.681746, 53.509035], [-122.682013, 53.509718], [-122.68249, 53.512407], [-122.683727, 53.514353], [-122.684445, 53.515172], [-122.684454, 53.516008], [-122.684316, 53.516395], [-122.684325, 53.517311], [-122.684542, 53.518301], [-122.684826, 53.518759], [-122.685064, 53.519372], [-122.685252, 53.52028], [-122.686611, 53.52209], [-122.687181, 53.52255], [-122.688233, 53.523227], [-122.690986, 53.524249], [-122.692358, 53.524235], [-122.692961, 53.52439], [-122.69493, 53.52516], [-122.69591, 53.525432], [-122.696468, 53.52555], [-122.698561, 53.525762], [-122.699119, 53.52588], [-122.699887, 53.525953], [-122.701547, 53.525949], [-122.70333, 53.525548], [-122.706248, 53.524801], [-122.706866, 53.52455], [-122.707413, 53.524157], [-122.70776, 53.524076], [-122.708213, 53.52406], [-122.708755, 53.524141], [-122.7102, 53.52454], [-122.711147, 53.524939], [-122.711958, 53.525417], [-122.712693, 53.52629], [-122.713578, 53.526859], [-122.715094, 53.527977], [-122.715588, 53.528535], [-122.715766, 53.529129], [-122.716832, 53.529941], [-122.717445, 53.530715], [-122.718264, 53.532281], [-122.718444, 53.532389], [-122.719185, 53.532346], [-122.71953, 53.532392], [-122.719619, 53.532725], [-122.719436, 53.533092], [-122.719435, 53.533309], [-122.720212, 53.5342], [-122.721512, 53.53654], [-122.721883, 53.537053], [-122.721913, 53.537359], [-122.72017, 53.538614], [-122.719716, 53.538702], [-122.718779, 53.538718], [-122.718538, 53.538772], [-122.718159, 53.539004], [-122.717886, 53.539282], [-122.717612, 53.539741], [-122.717125, 53.540198], [-122.717137, 53.540738], [-122.717659, 53.54179], [-122.718632, 53.542988], [-122.719334, 53.54404], [-122.720405, 53.546255], [-122.721838, 53.548811], [-122.722974, 53.550441], [-122.724277, 53.552097], [-122.725189, 53.553484], [-122.725693, 53.554681], [-122.725913, 53.555706], [-122.725808, 53.557998], [-122.725574, 53.558932], [-122.724552, 53.560843], [-122.723407, 53.562729], [-122.718977, 53.568175], [-122.718246, 53.569243], [-122.717287, 53.570256], [-122.715434, 53.571995], [-122.714581, 53.573108], [-122.714061, 53.574077], [-122.714044, 53.574427], [-122.713922, 53.574617], [-122.713328, 53.575181], [-122.713221, 53.575451], [-122.712946, 53.575765], [-122.711503, 53.577038], [-122.709689, 53.579371], [-122.709215, 53.580151], [-122.709002, 53.580608], [-122.708999, 53.581023], [-122.708891, 53.581238], [-122.708856, 53.581957], [-122.708975, 53.582299], [-122.708701, 53.582631], [-122.708516, 53.583188], [-122.708511, 53.583744], [-122.708616, 53.583915], [-122.708629, 53.584221], [-122.708764, 53.584401], [-122.709105, 53.585409], [-122.709106, 53.587386], [-122.708968, 53.587799], [-122.708869, 53.589058], [-122.708668, 53.589542], [-122.708649, 53.590009], [-122.708496, 53.590539], [-122.707898, 53.591582], [-122.707821, 53.591968], [-122.706403, 53.593762], [-122.705873, 53.594066], [-122.705054, 53.594396], [-122.704206, 53.59461], [-122.701939, 53.594902], [-122.700849, 53.595114], [-122.696418, 53.595544], [-122.694788, 53.595567], [-122.692535, 53.595488], [-122.689302, 53.595463], [-122.686899, 53.595582], [-122.684346, 53.595619], [-122.682938, 53.595725], [-122.680326, 53.595718], [-122.679434, 53.595787], [-122.678055, 53.596188], [-122.677008, 53.596652], [-122.676159, 53.597099], [-122.675339, 53.597699], [-122.674938, 53.598579], [-122.67486, 53.599092], [-122.674842, 53.599559], [-122.675014, 53.600512], [-122.675328, 53.601249], [-122.675443, 53.601753], [-122.676324, 53.603247], [-122.677065, 53.605164], [-122.677692, 53.606075], [-122.678174, 53.606525], [-122.678368, 53.606849], [-122.679101, 53.607616], [-122.680854, 53.609938], [-122.681649, 53.610669], [-122.682489, 53.611318], [-122.683574, 53.611834], [-122.68449, 53.612563], [-122.685587, 53.613637], [-122.686224, 53.61514], [-122.686233, 53.616199], [-122.686089, 53.617215], [-122.685737, 53.61779], [-122.685474, 53.618454], [-122.684502, 53.619072], [-122.684185, 53.61916], [-122.683727, 53.619627], [-122.683212, 53.619914], [-122.682861, 53.620208], [-122.682479, 53.620855], [-122.682171, 53.621618], [-122.681953, 53.622346], [-122.682012, 53.624638], [-122.68258, 53.625358], [-122.682573, 53.626545], [-122.682386, 53.627137], [-122.681558, 53.628727], [-122.681102, 53.629175], [-122.680032, 53.630484], [-122.679302, 53.631138], [-122.678858, 53.631659], [-122.678236, 53.63216], [-122.677396, 53.632994], [-122.676759, 53.633424], [-122.676651, 53.633666], [-122.675997, 53.634204], [-122.675509, 53.634768], [-122.673151, 53.636533], [-122.672741, 53.636748], [-122.672283, 53.637142], [-122.671555, 53.637463], [-122.670568, 53.638072], [-122.669492, 53.638393], [-122.669128, 53.638437], [-122.668886, 53.638544], [-122.668761, 53.638723], [-122.66826, 53.639099], [-122.667663, 53.639907], [-122.667585, 53.64014], [-122.667637, 53.641569], [-122.668157, 53.642587], [-122.668938, 53.64346], [-122.669958, 53.644299], [-122.670953, 53.644842], [-122.67222, 53.645195], [-122.674743, 53.645733], [-122.675982, 53.645915], [-122.677329, 53.645999], [-122.678992, 53.646185], [-122.682012, 53.646633], [-122.68325, 53.64687], [-122.684882, 53.647351], [-122.68591, 53.647569], [-122.689154, 53.648601], [-122.689953, 53.649027], [-122.690616, 53.649271], [-122.692906, 53.650481], [-122.693812, 53.650772], [-122.694598, 53.651107], [-122.69511, 53.65135], [-122.695486, 53.651612], [-122.696482, 53.651991], [-122.697568, 53.652561], [-122.698368, 53.652868], [-122.699618, 53.65368], [-122.700436, 53.65566], [-122.700729, 53.656954], [-122.70075, 53.658366], [-122.700951, 53.65976], [-122.700988, 53.660965], [-122.700752, 53.662267], [-122.70093, 53.662825], [-122.701798, 53.663933], [-122.70225, 53.664302], [-122.702762, 53.66486], [-122.703606, 53.66542], [-122.704917, 53.666106], [-122.706957, 53.666732], [-122.708031, 53.666816], [-122.708939, 53.666754], [-122.711378, 53.666347], [-122.712726, 53.66626], [-122.713618, 53.666326], [-122.715084, 53.666689], [-122.716169, 53.667149], [-122.717811, 53.668285], [-122.720181, 53.669235], [-122.720318, 53.669469], [-122.721133, 53.669812], [-122.721431, 53.670262], [-122.722731, 53.670571], [-122.72341, 53.670906], [-122.723905, 53.671518], [-122.724008, 53.67194], [-122.724673, 53.67232], [-122.724959, 53.672626], [-122.725923, 53.673168], [-122.726435, 53.673707], [-122.726628, 53.674257], [-122.726562, 53.675236], [-122.726378, 53.675586], [-122.726148, 53.675792], [-122.726103, 53.676035], [-122.726386, 53.676638], [-122.726218, 53.676799], [-122.725899, 53.676844], [-122.725521, 53.676996], [-122.725398, 53.677265], [-122.724774, 53.677695], [-122.72459, 53.678009], [-122.724117, 53.678511], [-122.723849, 53.680039], [-122.723575, 53.68029], [-122.722828, 53.681331], [-122.722636, 53.682822], [-122.722422, 53.683092], [-122.721874, 53.683351], [-122.721466, 53.683449], [-122.720508, 53.683834], [-122.719493, 53.684308], [-122.718478, 53.684313], [-122.718401, 53.684511], [-122.718535, 53.684907], [-122.718423, 53.685654], [-122.71742, 53.686199], [-122.716765, 53.686809], [-122.716005, 53.687193], [-122.715382, 53.687623], [-122.714743, 53.687847], [-122.713363, 53.688157], [-122.711849, 53.688055], [-122.711077, 53.688072], [-122.708957, 53.688219], [-122.707985, 53.68837], [-122.706894, 53.688726], [-122.705511, 53.689496], [-122.705022, 53.689918], [-122.704898, 53.690358], [-122.705064, 53.69069], [-122.705031, 53.691031], [-122.705288, 53.691104], [-122.705392, 53.691212], [-122.705902, 53.692121], [-122.706227, 53.693013], [-122.706438, 53.693102], [-122.706801, 53.693436], [-122.70678, 53.694111], [-122.707127, 53.69429], [-122.707308, 53.694579], [-122.707337, 53.69484], [-122.707575, 53.695083], [-122.708125, 53.696738], [-122.708123, 53.697205], [-122.708407, 53.697683], [-122.708693, 53.697918], [-122.708465, 53.698114], [-122.708464, 53.698294], [-122.708523, 53.698358], [-122.709506, 53.698432], [-122.709825, 53.698576], [-122.710125, 53.698846], [-122.709982, 53.699924], [-122.710416, 53.700708], [-122.710458, 53.701049], [-122.711296, 53.702435], [-122.711797, 53.702643], [-122.711762, 53.703191], [-122.712185, 53.703364], [-122.71253, 53.703678], [-122.713311, 53.704705], [-122.713959, 53.705345], [-122.713989, 53.705534], [-122.714349, 53.705849], [-122.714363, 53.706047], [-122.714587, 53.706488], [-122.714673, 53.707172], [-122.714809, 53.70736], [-122.714776, 53.707621], [-122.71494, 53.707873], [-122.714814, 53.708682], [-122.714525, 53.709032], [-122.714446, 53.709337], [-122.713701, 53.709992], [-122.713197, 53.710556], [-122.712827, 53.711319], [-122.712508, 53.711651], [-122.71246, 53.711885], [-122.712123, 53.712217], [-122.71165, 53.712943], [-122.711304, 53.714749], [-122.710872, 53.71802], [-122.710749, 53.718281], [-122.710543, 53.719628], [-122.710329, 53.72006], [-122.710107, 53.721478], [-122.710009, 53.722279], [-122.710113, 53.722773], [-122.710016, 53.723555], [-122.710183, 53.725641], [-122.710358, 53.726675], [-122.710656, 53.727359], [-122.7107, 53.727728], [-122.711043, 53.728474], [-122.711056, 53.728753], [-122.711341, 53.729158], [-122.711413, 53.729643], [-122.711698, 53.73021], [-122.712247, 53.732009], [-122.712056, 53.733303], [-122.711822, 53.734138], [-122.71144, 53.734731], [-122.711073, 53.737318], [-122.711157, 53.738388], [-122.7117, 53.741041], [-122.711633, 53.742021], [-122.711885, 53.742606], [-122.711958, 53.743361], [-122.712166, 53.743865], [-122.712268, 53.744485], [-122.713033, 53.745871], [-122.71324, 53.746492], [-122.713631, 53.746996], [-122.713869, 53.747509], [-122.714307, 53.748041], [-122.715251, 53.749633], [-122.715695, 53.750974], [-122.715787, 53.7515], [-122.715747, 53.751918], [-122.713592, 53.751179], [-122.714041, 53.753809], [-122.712528, 53.757179], [-122.709806, 53.760879], [-122.708229, 53.766746], [-122.708405, 53.77509], [-122.711027, 53.782306], [-122.712626, 53.785896], [-122.716949, 53.791308], [-122.7182, 53.791955], [-122.724062, 53.795296], [-122.730947, 53.800184], [-122.73412, 53.80356], [-122.735962, 53.806789], [-122.735445, 53.808734], [-122.732824, 53.814473], [-122.731326, 53.816358], [-122.732636, 53.816347], [-122.73957, 53.816688], [-122.740421, 53.816437], [-122.741291, 53.815846], [-122.741504, 53.815802], [-122.742006, 53.815839], [-122.742945, 53.816111], [-122.744145, 53.81614], [-122.745373, 53.816466], [-122.746574, 53.816298], [-122.746954, 53.816289], [-122.747575, 53.816372], [-122.747957, 53.816292], [-122.74843, 53.815808], [-122.749549, 53.8143], [-122.749711, 53.813741], [-122.760495, 53.814303], [-122.803945, 53.815985], [-122.842162, 53.815916], [-122.850324, 53.815951], [-122.850528, 53.816008], [-122.881495, 53.815884], [-122.881459, 53.820788], [-122.88315, 53.820312], [-122.883364, 53.82098], [-122.881523, 53.821405], [-122.881584, 53.822005], [-122.881408, 53.825576], [-122.881569, 53.836207], [-122.881459, 53.840323], [-122.881642, 53.841549], [-122.881666, 53.843155], [-122.881784, 53.843264], [-122.881937, 53.851925], [-122.896742, 53.852535], [-122.897026, 53.859719], [-122.897774, 53.874128], [-122.891168, 53.874262], [-122.891181, 53.883767], [-122.891265, 53.885793], [-122.890821, 53.891126], [-122.890768, 53.896271], [-122.89003, 53.903292], [-122.890318, 53.910972], [-122.892021, 53.926735], [-122.891118, 53.952324], [-122.892133, 53.963774], [-122.895105, 53.963587], [-122.894315, 53.971712], [-122.8955, 53.976817], [-122.895901, 53.976839], [-122.90188, 53.978457], [-122.903935, 53.978712], [-122.905721, 53.978713], [-122.907929, 53.978377], [-122.909534, 53.97784], [-122.910632, 53.976904], [-122.910865, 53.976388], [-122.91057, 53.974983], [-122.909833, 53.97398], [-122.907148, 53.971326], [-122.905209, 53.969795], [-122.904499, 53.96861], [-122.904739, 53.967744], [-122.905253, 53.967169], [-122.907235, 53.966092], [-122.908167, 53.965892], [-122.909019, 53.965815], [-122.912563, 53.965925], [-122.915054, 53.965937], [-122.91642, 53.965538], [-122.918059, 53.965313], [-122.920035, 53.965377], [-122.92158, 53.965951], [-122.922554, 53.966464], [-122.924805, 53.967261], [-122.925883, 53.967751], [-122.926677, 53.967895], [-122.929642, 53.967901], [-122.93083, 53.967715], [-122.933775, 53.967424], [-122.935158, 53.966896], [-122.936515, 53.96609], [-122.937917, 53.965004], [-122.939132, 53.963322], [-122.939846, 53.96258], [-122.940178, 53.961396], [-122.939599, 53.960322], [-122.939181, 53.95981], [-122.938636, 53.959286], [-122.937269, 53.958257], [-122.935598, 53.957296], [-122.933685, 53.956649], [-122.93127, 53.956118], [-122.928916, 53.955399], [-122.92726, 53.954414], [-122.926514, 53.953636], [-122.926308, 53.952975], [-122.926973, 53.950646], [-122.927457, 53.949723], [-122.928633, 53.948275], [-122.929325, 53.947621], [-122.929971, 53.947228], [-122.930624, 53.947132], [-122.932486, 53.947116], [-122.933697, 53.947317], [-122.935158, 53.947747], [-122.937499, 53.949658], [-122.939283, 53.950601], [-122.941225, 53.951142], [-122.945684, 53.95117], [-122.948098, 53.95077], [-122.950716, 53.949859], [-122.952561, 53.948889], [-122.953463, 53.948235], [-122.954225, 53.947281], [-122.955067, 53.946629], [-122.957636, 53.945163], [-122.958766, 53.944074], [-122.959713, 53.943557], [-122.960473, 53.943293], [-122.962334, 53.9429], [-122.963546, 53.942794], [-122.965164, 53.942429], [-122.966268, 53.942051], [-122.967869, 53.940758], [-122.968588, 53.939913], [-122.968997, 53.938838], [-122.969037, 53.938189], [-122.968203, 53.937025], [-122.965619, 53.935357], [-122.964069, 53.934712], [-122.962258, 53.934254], [-122.96011, 53.933878], [-122.95915, 53.933752], [-122.957324, 53.933708], [-122.949877, 53.935416], [-122.948995, 53.935511], [-122.945583, 53.935464], [-122.943765, 53.93498], [-122.942486, 53.934349], [-122.941942, 53.933879], [-122.940302, 53.932153], [-122.939987, 53.931365], [-122.94001, 53.929858], [-122.940263, 53.928963], [-122.942183, 53.925841], [-122.943066, 53.924978], [-122.944377, 53.924211], [-122.951711, 53.923972], [-122.953311, 53.923766], [-122.955327, 53.923051], [-122.956246, 53.922386], [-122.957424, 53.921377], [-122.95883, 53.919815], [-122.959223, 53.918686], [-122.95889, 53.917841], [-122.958091, 53.916958], [-122.953153, 53.914924], [-122.949115, 53.913049], [-122.947728, 53.91213], [-122.946973, 53.91113], [-122.946542, 53.910113], [-122.945984, 53.908142], [-122.945905, 53.906363], [-122.946267, 53.905796], [-122.947002, 53.903609], [-122.948622, 53.902348], [-122.949757, 53.901834], [-122.951265, 53.901453], [-122.953678, 53.901041], [-122.963153, 53.900309], [-122.965956, 53.899219], [-122.966471, 53.898792], [-122.966967, 53.896978], [-122.96794, 53.89591], [-122.970494, 53.894814], [-122.972558, 53.894349], [-122.974129, 53.893191], [-122.976172, 53.890377], [-122.978053, 53.888367], [-122.97909, 53.887734], [-122.980204, 53.887393], [-122.981183, 53.886786], [-122.982609, 53.885704], [-122.983436, 53.884468], [-122.985989, 53.882494], [-122.987014, 53.882058], [-122.988627, 53.881599], [-122.989762, 53.881393], [-122.993408, 53.880037], [-122.99425, 53.879597], [-122.994938, 53.878931], [-123.000666, 53.876498], [-123.001975, 53.876134], [-123.007428, 53.875505], [-123.012062, 53.874499], [-123.014363, 53.874521], [-123.015215, 53.874336], [-123.017727, 53.873597], [-123.019738, 53.872614], [-123.021307, 53.872075], [-123.025649, 53.871178], [-123.028112, 53.870435], [-123.029944, 53.870153], [-123.031908, 53.87004], [-123.036792, 53.870475], [-123.038722, 53.870346], [-123.040686, 53.870056], [-123.04274, 53.869421], [-123.04584, 53.867789], [-123.046808, 53.867069], [-123.048286, 53.865043], [-123.049143, 53.863033], [-123.049233, 53.859535], [-123.04982, 53.858292], [-123.050741, 53.857351], [-123.051845, 53.856717], [-123.053719, 53.855914], [-123.054926, 53.85565], [-123.056713, 53.855371], [-123.058971, 53.854737], [-123.060327, 53.854128], [-123.063097, 53.852475], [-123.064636, 53.851906], [-123.067436, 53.851349], [-123.069376, 53.851383], [-123.071687, 53.851701], [-123.073866, 53.852105], [-123.076509, 53.853035], [-123.080311, 53.854958], [-123.084453, 53.857589], [-123.084838, 53.857875], [-123.086463, 53.859456], [-123.087296, 53.8609], [-123.087525, 53.862126], [-123.08741, 53.867145], [-123.087811, 53.870891], [-123.088602, 53.873255], [-123.089608, 53.874489], [-123.090363, 53.87629], [-123.091766, 53.8781], [-123.092426, 53.878766], [-123.09395, 53.881204], [-123.09618, 53.883245], [-123.096353, 53.884076], [-123.096774, 53.884666], [-123.098099, 53.885513], [-123.099195, 53.88649], [-123.101592, 53.887551], [-123.106141, 53.888538], [-123.108108, 53.889351], [-123.109822, 53.890395], [-123.11058, 53.890617], [-123.111495, 53.890976], [-123.112659, 53.891792], [-123.113135, 53.892305], [-123.113579, 53.89297], [-123.11371, 53.893536], [-123.112894, 53.896241], [-123.112989, 53.896942], [-123.113784, 53.898443], [-123.115094, 53.899802], [-123.116076, 53.899963], [-123.123154, 53.902441], [-123.124862, 53.902881], [-123.125755, 53.902934], [-123.126888, 53.902763], [-123.128816, 53.90284], [-123.13348, 53.902179], [-123.13844, 53.902038], [-123.146708, 53.900913], [-123.150154, 53.900742], [-123.152324, 53.900748], [-123.155851, 53.901289], [-123.160211, 53.90146], [-123.161911, 53.902491], [-123.164725, 53.905177], [-123.165831, 53.905606], [-123.166791, 53.906235], [-123.168355, 53.90701], [-123.171018, 53.908945], [-123.172632, 53.910315], [-123.176107, 53.911723], [-123.177087, 53.911986], [-123.178057, 53.912138], [-123.1811, 53.912314], [-123.182659, 53.91257], [-123.187078, 53.913504], [-123.190881, 53.914602], [-123.196947, 53.9151], [-123.198478, 53.915075], [-123.200558, 53.914944], [-123.201369, 53.915001], [-123.20475, 53.915511], [-123.205556, 53.915473], [-123.207937, 53.914731], [-123.209595, 53.91453], [-123.211353, 53.914053], [-123.213693, 53.913694], [-123.218547, 53.913557], [-123.219665, 53.913304], [-123.22389, 53.91158], [-123.225025, 53.911361], [-123.229223, 53.911119], [-123.231113, 53.910719], [-123.233147, 53.910516], [-123.235005, 53.910546], [-123.238032, 53.911193], [-123.239721, 53.911881], [-123.24397, 53.91299], [-123.246298, 53.913835], [-123.24939, 53.915752], [-123.249945, 53.91631], [-123.250832, 53.91806], [-123.251329, 53.918492], [-123.25501, 53.920772], [-123.255837, 53.921515], [-123.256151, 53.922386], [-123.257968, 53.924186], [-123.258319, 53.925133], [-123.259065, 53.926288], [-123.259173, 53.926893], [-123.259057, 53.927591], [-123.2588, 53.928101], [-123.258308, 53.928691], [-123.257347, 53.930552], [-123.256759, 53.93214], [-123.2568, 53.933106], [-123.257366, 53.936118], [-123.258274, 53.939848], [-123.258602, 53.940537], [-123.258627, 53.941044], [-123.257781, 53.941749], [-123.257155, 53.941939], [-123.255989, 53.942646], [-123.255646, 53.943098], [-123.255545, 53.944329], [-123.255595, 53.944648], [-123.254264, 53.945314], [-123.249828, 53.948356], [-123.247694, 53.949486], [-123.245185, 53.949997], [-123.244448, 53.950235], [-123.243599, 53.951015], [-123.242134, 53.953718], [-123.241517, 53.954423], [-123.240215, 53.955214], [-123.238503, 53.955805], [-123.237227, 53.956511], [-123.236603, 53.957132], [-123.235722, 53.959776], [-123.235718, 53.960462], [-123.236066, 53.961752], [-123.236628, 53.9625], [-123.23722, 53.963713], [-123.237786, 53.968228], [-123.238945, 53.971134], [-123.239839, 53.971975], [-123.242472, 53.975477], [-123.245828, 53.978904], [-123.247033, 53.980877], [-123.247981, 53.981861], [-123.250234, 53.982791], [-123.251827, 53.983323], [-123.25572, 53.984483], [-123.257304, 53.985212], [-123.25832, 53.985454], [-123.259666, 53.985584], [-123.261581, 53.98594], [-123.264223, 53.985833], [-123.266404, 53.986192], [-123.267518, 53.98667], [-123.27008, 53.987372], [-123.27102, 53.987405], [-123.273469, 53.987274], [-123.277824, 53.986545], [-123.281732, 53.985709], [-123.284912, 53.985205], [-123.286787, 53.985018], [-123.288272, 53.984678], [-123.290804, 53.983627], [-123.292652, 53.983067], [-123.294503, 53.982906], [-123.299064, 53.981291], [-123.300158, 53.981122], [-123.302314, 53.980914], [-123.303247, 53.980713], [-123.305953, 53.97939], [-123.306987, 53.978609], [-123.308954, 53.976379], [-123.310065, 53.975546], [-123.311873, 53.974801], [-123.313177, 53.974409], [-123.314426, 53.97419], [-123.317823, 53.973877], [-123.321155, 53.973877], [-123.322982, 53.973156], [-123.323581, 53.972791], [-123.325209, 53.971998], [-123.326065, 53.971692], [-123.329208, 53.970978], [-123.330816, 53.970742], [-123.332964, 53.970648], [-123.338439, 53.971173], [-123.341526, 53.97129], [-123.343609, 53.971255], [-123.345393, 53.971104], [-123.346703, 53.970881], [-123.347569, 53.9706], [-123.348463, 53.97008], [-123.349945, 53.969447], [-123.352025, 53.968974]]]]}, "properties": {"name": "Fraser-Fort George C", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fraser-Fort George C", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953042", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.562761, 53.927434], [-122.580747, 53.927492], [-122.589158, 53.927418], [-122.594251, 53.926932], [-122.598459, 53.926694], [-122.600462, 53.926661], [-122.602219, 53.92672], [-122.610533, 53.927312], [-122.636065, 53.927279], [-122.64194, 53.927869], [-122.641843, 53.925376], [-122.641173, 53.922171], [-122.638535, 53.922278], [-122.638451, 53.920051], [-122.616969, 53.920117], [-122.616689, 53.915678], [-122.616285, 53.913025], [-122.604035, 53.913203], [-122.605087, 53.891299], [-122.612434, 53.891103], [-122.616641, 53.891077], [-122.629076, 53.891257], [-122.628757, 53.88567], [-122.628742, 53.881184], [-122.627658, 53.876572], [-122.628613, 53.876615], [-122.64092, 53.876686], [-122.647962, 53.876676], [-122.667747, 53.876506], [-122.66772, 53.876757], [-122.666494, 53.879667], [-122.671544, 53.879614], [-122.676067, 53.879325], [-122.679296, 53.878934], [-122.685511, 53.879751], [-122.706009, 53.880046], [-122.705567, 53.865714], [-122.705218, 53.850211], [-122.705002, 53.849135], [-122.705298, 53.846347], [-122.705846, 53.844543], [-122.705936, 53.843011], [-122.705798, 53.842048], [-122.714532, 53.841808], [-122.718174, 53.841766], [-122.718295, 53.82706], [-122.717782, 53.827057], [-122.714388, 53.822455], [-122.714417, 53.821906], [-122.718506, 53.821841], [-122.719508, 53.82151], [-122.720448, 53.820809], [-122.720697, 53.820474], [-122.721633, 53.818668], [-122.722005, 53.818358], [-122.722626, 53.818104], [-122.718974, 53.813065], [-122.71941, 53.812894], [-122.721176, 53.812848], [-122.724882, 53.812918], [-122.733524, 53.812941], [-122.735445, 53.808734], [-122.735962, 53.806789], [-122.73412, 53.80356], [-122.730947, 53.800184], [-122.724062, 53.795296], [-122.7182, 53.791955], [-122.716949, 53.791308], [-122.712626, 53.785896], [-122.711027, 53.782306], [-122.708405, 53.77509], [-122.708229, 53.766746], [-122.709806, 53.760879], [-122.712528, 53.757179], [-122.714041, 53.753809], [-122.713592, 53.751179], [-122.715747, 53.751918], [-122.715787, 53.7515], [-122.715695, 53.750974], [-122.715251, 53.749633], [-122.714307, 53.748041], [-122.713869, 53.747509], [-122.713631, 53.746996], [-122.71324, 53.746492], [-122.713033, 53.745871], [-122.712268, 53.744485], [-122.712166, 53.743865], [-122.711958, 53.743361], [-122.711885, 53.742606], [-122.711633, 53.742021], [-122.7117, 53.741041], [-122.711157, 53.738388], [-122.711073, 53.737318], [-122.71144, 53.734731], [-122.711822, 53.734138], [-122.712056, 53.733303], [-122.712247, 53.732009], [-122.711698, 53.73021], [-122.711413, 53.729643], [-122.711341, 53.729158], [-122.711056, 53.728753], [-122.711043, 53.728474], [-122.7107, 53.727728], [-122.710656, 53.727359], [-122.710358, 53.726675], [-122.710183, 53.725641], [-122.710016, 53.723555], [-122.710113, 53.722773], [-122.710009, 53.722279], [-122.710107, 53.721478], [-122.710329, 53.72006], [-122.710543, 53.719628], [-122.710749, 53.718281], [-122.710872, 53.71802], [-122.711304, 53.714749], [-122.71165, 53.712943], [-122.712123, 53.712217], [-122.71246, 53.711885], [-122.712508, 53.711651], [-122.712827, 53.711319], [-122.713197, 53.710556], [-122.713701, 53.709992], [-122.714446, 53.709337], [-122.714525, 53.709032], [-122.714814, 53.708682], [-122.71494, 53.707873], [-122.714776, 53.707621], [-122.714809, 53.70736], [-122.714673, 53.707172], [-122.714587, 53.706488], [-122.714363, 53.706047], [-122.714349, 53.705849], [-122.713989, 53.705534], [-122.713959, 53.705345], [-122.713311, 53.704705], [-122.71253, 53.703678], [-122.712185, 53.703364], [-122.711762, 53.703191], [-122.711797, 53.702643], [-122.711296, 53.702435], [-122.710458, 53.701049], [-122.710416, 53.700708], [-122.709982, 53.699924], [-122.710125, 53.698846], [-122.709825, 53.698576], [-122.709506, 53.698432], [-122.708523, 53.698358], [-122.708464, 53.698294], [-122.708465, 53.698114], [-122.708693, 53.697918], [-122.708407, 53.697683], [-122.708123, 53.697205], [-122.708125, 53.696738], [-122.707575, 53.695083], [-122.707337, 53.69484], [-122.707308, 53.694579], [-122.707127, 53.69429], [-122.70678, 53.694111], [-122.706801, 53.693436], [-122.706438, 53.693102], [-122.706227, 53.693013], [-122.705902, 53.692121], [-122.705392, 53.691212], [-122.705288, 53.691104], [-122.705031, 53.691031], [-122.705064, 53.69069], [-122.704897, 53.690421], [-122.70493, 53.690141], [-122.705022, 53.689918], [-122.705511, 53.689496], [-122.706894, 53.688726], [-122.707985, 53.68837], [-122.708957, 53.688219], [-122.711077, 53.688072], [-122.711849, 53.688055], [-122.713363, 53.688157], [-122.714743, 53.687847], [-122.715382, 53.687623], [-122.716005, 53.687193], [-122.716765, 53.686809], [-122.71742, 53.686199], [-122.718423, 53.685654], [-122.718535, 53.684907], [-122.718401, 53.684511], [-122.718478, 53.684313], [-122.719493, 53.684308], [-122.720508, 53.683834], [-122.721466, 53.683449], [-122.721874, 53.683351], [-122.722422, 53.683092], [-122.722636, 53.682822], [-122.722828, 53.681331], [-122.723575, 53.68029], [-122.723849, 53.680039], [-122.724117, 53.678511], [-122.72459, 53.678009], [-122.724774, 53.677695], [-122.725398, 53.677265], [-122.725521, 53.676996], [-122.725899, 53.676844], [-122.726218, 53.676799], [-122.726386, 53.676638], [-122.726103, 53.676035], [-122.726148, 53.675792], [-122.726378, 53.675586], [-122.726562, 53.675236], [-122.726655, 53.674608], [-122.726657, 53.674364], [-122.726435, 53.673707], [-122.725923, 53.673168], [-122.724959, 53.672626], [-122.724673, 53.67232], [-122.724008, 53.67194], [-122.723905, 53.671518], [-122.72341, 53.670906], [-122.722731, 53.670571], [-122.721431, 53.670262], [-122.721133, 53.669812], [-122.720318, 53.669469], [-122.720181, 53.669235], [-122.717811, 53.668285], [-122.716169, 53.667149], [-122.715084, 53.666689], [-122.713618, 53.666326], [-122.712726, 53.66626], [-122.711378, 53.666347], [-122.708939, 53.666754], [-122.708031, 53.666816], [-122.706957, 53.666732], [-122.704917, 53.666106], [-122.703606, 53.66542], [-122.702762, 53.66486], [-122.70225, 53.664302], [-122.701798, 53.663933], [-122.70093, 53.662825], [-122.700752, 53.662267], [-122.700988, 53.660965], [-122.700951, 53.65976], [-122.70075, 53.658366], [-122.700729, 53.656954], [-122.700436, 53.65566], [-122.699618, 53.65368], [-122.698368, 53.652868], [-122.697568, 53.652561], [-122.696482, 53.651991], [-122.695486, 53.651612], [-122.69511, 53.65135], [-122.694598, 53.651107], [-122.693812, 53.650772], [-122.692906, 53.650481], [-122.690616, 53.649271], [-122.689953, 53.649027], [-122.689154, 53.648601], [-122.68591, 53.647569], [-122.684882, 53.647351], [-122.68325, 53.64687], [-122.682012, 53.646633], [-122.678992, 53.646185], [-122.677329, 53.645999], [-122.675982, 53.645915], [-122.674743, 53.645733], [-122.673625, 53.645522], [-122.671164, 53.644914], [-122.670802, 53.644777], [-122.669958, 53.644299], [-122.668938, 53.64346], [-122.668157, 53.642587], [-122.667637, 53.641569], [-122.667585, 53.64014], [-122.667663, 53.639907], [-122.66826, 53.639099], [-122.668761, 53.638723], [-122.668886, 53.638544], [-122.669128, 53.638437], [-122.669492, 53.638393], [-122.670568, 53.638072], [-122.671555, 53.637463], [-122.672283, 53.637142], [-122.672741, 53.636748], [-122.673151, 53.636533], [-122.675509, 53.634768], [-122.675997, 53.634204], [-122.676651, 53.633666], [-122.676759, 53.633424], [-122.677396, 53.632994], [-122.678236, 53.63216], [-122.678858, 53.631659], [-122.679302, 53.631138], [-122.680032, 53.630484], [-122.681102, 53.629175], [-122.681558, 53.628727], [-122.682386, 53.627137], [-122.682573, 53.626545], [-122.68258, 53.625358], [-122.682012, 53.624638], [-122.681953, 53.622346], [-122.682171, 53.621618], [-122.682479, 53.620855], [-122.682861, 53.620208], [-122.683212, 53.619914], [-122.683727, 53.619627], [-122.684185, 53.61916], [-122.684502, 53.619072], [-122.685474, 53.618454], [-122.685737, 53.61779], [-122.686089, 53.617215], [-122.686233, 53.616199], [-122.686224, 53.61514], [-122.685587, 53.613637], [-122.68449, 53.612563], [-122.683574, 53.611834], [-122.682489, 53.611318], [-122.681649, 53.610669], [-122.680854, 53.609938], [-122.679101, 53.607616], [-122.678368, 53.606849], [-122.678174, 53.606525], [-122.677692, 53.606075], [-122.676991, 53.605029], [-122.676324, 53.603247], [-122.675443, 53.601753], [-122.675328, 53.601249], [-122.675014, 53.600512], [-122.674842, 53.599559], [-122.674985, 53.598454], [-122.675339, 53.597699], [-122.675642, 53.597467], [-122.676159, 53.597099], [-122.677008, 53.596652], [-122.678055, 53.596188], [-122.679177, 53.59584], [-122.680326, 53.595718], [-122.681576, 53.595729], [-122.682333, 53.594687], [-122.682599, 53.594166], [-122.682681, 53.593792], [-122.681337, 53.593905], [-122.678749, 53.594302], [-122.677449, 53.594389], [-122.677102, 53.594387], [-122.676455, 53.594061], [-122.676063, 53.59398], [-122.675792, 53.59397], [-122.675637, 53.594131], [-122.675261, 53.594167], [-122.67508, 53.594113], [-122.674794, 53.593896], [-122.674567, 53.593859], [-122.673661, 53.594063], [-122.672365, 53.595453], [-122.671225, 53.597074], [-122.666186, 53.594804], [-122.646884, 53.594958], [-122.595393, 53.594471], [-122.595378, 53.597589], [-122.589519, 53.597694], [-122.589099, 53.594315], [-122.531975, 53.593037], [-122.506348, 53.592202], [-122.491834, 53.591957], [-122.397142, 53.591424], [-122.393811, 53.611059], [-122.388101, 53.62754], [-122.364605, 53.636169], [-122.340103, 53.645536], [-122.322097, 53.657965], [-122.319272, 53.673023], [-122.320051, 53.676257], [-122.32508, 53.683164], [-122.327842, 53.684155], [-122.35857, 53.692008], [-122.36729, 53.698427], [-122.379718, 53.709709], [-122.404732, 53.718395], [-122.410884, 53.748842], [-122.41139, 53.75494], [-122.413915, 53.778561], [-122.430188, 53.809396], [-122.439121, 53.821613], [-122.448294, 53.833922], [-122.466405, 53.835262], [-122.484081, 53.843061], [-122.490816, 53.859679], [-122.488016, 53.866266], [-122.476164, 53.873366], [-122.461549, 53.880502], [-122.458419, 53.884841], [-122.462317, 53.892022], [-122.477261, 53.896739], [-122.518169, 53.907298], [-122.518127, 53.922333], [-122.520694, 53.937513], [-122.521066, 53.941587], [-122.5257, 53.941722], [-122.537764, 53.941887], [-122.543278, 53.941756], [-122.543152, 53.927464], [-122.562761, 53.927434]]]]}, "properties": {"name": "Fraser-Fort George D", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fraser-Fort George D", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953044", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.676455, 53.594061], [-122.677102, 53.594387], [-122.677449, 53.594389], [-122.678749, 53.594302], [-122.681337, 53.593905], [-122.682681, 53.593792], [-122.682599, 53.594166], [-122.682333, 53.594687], [-122.681576, 53.595729], [-122.682258, 53.595732], [-122.689302, 53.595463], [-122.695104, 53.595567], [-122.696418, 53.595544], [-122.697824, 53.59543], [-122.700849, 53.595114], [-122.701939, 53.594902], [-122.704206, 53.59461], [-122.705054, 53.594396], [-122.705873, 53.594066], [-122.706403, 53.593762], [-122.707821, 53.591968], [-122.707898, 53.591582], [-122.708496, 53.590539], [-122.708649, 53.590009], [-122.708668, 53.589542], [-122.708869, 53.589058], [-122.708968, 53.587799], [-122.709106, 53.587386], [-122.709105, 53.585409], [-122.708764, 53.584401], [-122.708629, 53.584221], [-122.708616, 53.583915], [-122.708511, 53.583744], [-122.708516, 53.583188], [-122.708701, 53.582631], [-122.708975, 53.582299], [-122.708856, 53.581957], [-122.708891, 53.581238], [-122.708999, 53.581023], [-122.709002, 53.580608], [-122.709215, 53.580151], [-122.709689, 53.579371], [-122.711503, 53.577038], [-122.712946, 53.575765], [-122.713221, 53.575451], [-122.713328, 53.575181], [-122.713922, 53.574617], [-122.714044, 53.574427], [-122.714061, 53.574077], [-122.714581, 53.573108], [-122.715434, 53.571995], [-122.717287, 53.570256], [-122.718246, 53.569243], [-122.718977, 53.568175], [-122.723407, 53.562729], [-122.724552, 53.560843], [-122.725574, 53.558932], [-122.725808, 53.557998], [-122.725913, 53.555706], [-122.725693, 53.554681], [-122.725189, 53.553484], [-122.724277, 53.552097], [-122.722974, 53.550441], [-122.721838, 53.548811], [-122.720405, 53.546255], [-122.719334, 53.54404], [-122.718632, 53.542988], [-122.717659, 53.54179], [-122.717137, 53.540738], [-122.717125, 53.540198], [-122.717612, 53.539741], [-122.717886, 53.539282], [-122.718159, 53.539004], [-122.718538, 53.538772], [-122.718779, 53.538718], [-122.719716, 53.538702], [-122.72017, 53.538614], [-122.721913, 53.537359], [-122.721883, 53.537053], [-122.721512, 53.53654], [-122.720212, 53.5342], [-122.719435, 53.533309], [-122.719436, 53.533092], [-122.719619, 53.532725], [-122.71953, 53.532392], [-122.719185, 53.532346], [-122.718444, 53.532389], [-122.718264, 53.532281], [-122.717445, 53.530715], [-122.716832, 53.529941], [-122.715766, 53.529129], [-122.715588, 53.528535], [-122.715094, 53.527977], [-122.713578, 53.526859], [-122.712693, 53.52629], [-122.711958, 53.525417], [-122.711147, 53.524939], [-122.7102, 53.52454], [-122.708755, 53.524141], [-122.708213, 53.52406], [-122.70776, 53.524076], [-122.707413, 53.524157], [-122.706866, 53.52455], [-122.706248, 53.524801], [-122.70333, 53.525548], [-122.701547, 53.525949], [-122.699887, 53.525953], [-122.699119, 53.52588], [-122.698561, 53.525762], [-122.696468, 53.52555], [-122.69591, 53.525432], [-122.69493, 53.52516], [-122.692961, 53.52439], [-122.692358, 53.524235], [-122.690986, 53.524249], [-122.688233, 53.523227], [-122.687181, 53.52255], [-122.686611, 53.52209], [-122.685252, 53.52028], [-122.685064, 53.519372], [-122.684826, 53.518759], [-122.684542, 53.518301], [-122.684325, 53.517311], [-122.684316, 53.516395], [-122.684454, 53.516008], [-122.684445, 53.515172], [-122.683727, 53.514353], [-122.68249, 53.512407], [-122.682013, 53.509718], [-122.681746, 53.509035], [-122.681483, 53.508063], [-122.681486, 53.507551], [-122.681132, 53.506544], [-122.680195, 53.504771], [-122.67936, 53.503635], [-122.678989, 53.50295], [-122.677166, 53.500555], [-122.676648, 53.499547], [-122.67628, 53.499065], [-122.674219, 53.499814], [-122.670622, 53.4978], [-122.669435, 53.496588], [-122.669122, 53.49478], [-122.669844, 53.492511], [-122.67249, 53.491336], [-122.675447, 53.488344], [-122.673782, 53.481911], [-122.674162, 53.479643], [-122.673709, 53.47783], [-122.675829, 53.475704], [-122.677869, 53.47431], [-122.678924, 53.473154], [-122.682086, 53.469313], [-122.682488, 53.468019], [-122.683683, 53.466379], [-122.684227, 53.46466], [-122.684665, 53.462541], [-122.684829, 53.460886], [-122.683995, 53.458864], [-122.683024, 53.457173], [-122.681784, 53.456092], [-122.681486, 53.455382], [-122.679316, 53.453439], [-122.677401, 53.452882], [-122.674943, 53.449896], [-122.671299, 53.446995], [-122.664384, 53.442419], [-122.66205, 53.439855], [-122.662429, 53.438532], [-122.662171, 53.436042], [-122.66063, 53.430955], [-122.66047, 53.428406], [-122.659523, 53.425423], [-122.657502, 53.422874], [-122.655435, 53.420796], [-122.653288, 53.420199], [-122.650364, 53.41815], [-122.647313, 53.41549], [-122.646994, 53.414944], [-122.646734, 53.411221], [-122.644451, 53.407528], [-122.642077, 53.406033], [-122.639255, 53.404136], [-122.635883, 53.402925], [-122.635145, 53.401549], [-122.634481, 53.399537], [-122.635397, 53.396834], [-122.638877, 53.393139], [-122.641781, 53.389854], [-122.645404, 53.387185], [-122.646048, 53.3869], [-122.643054, 53.38665], [-122.63653, 53.386496], [-122.635941, 53.375924], [-122.612316, 53.376045], [-122.612461, 53.372434], [-122.598185, 53.372409], [-122.567944, 53.37246], [-122.564546, 53.372756], [-122.540087, 53.372087], [-122.520965, 53.37171], [-122.489633, 53.372594], [-122.486151, 53.372635], [-122.407575, 53.37302], [-122.348617, 53.373491], [-122.34305, 53.377114], [-122.344955, 53.383158], [-122.349534, 53.390124], [-122.34505, 53.399421], [-122.326422, 53.411656], [-122.327889, 53.41806], [-122.332219, 53.424024], [-122.344511, 53.435385], [-122.348115, 53.440083], [-122.339864, 53.446074], [-122.336265, 53.450127], [-122.313437, 53.450038], [-122.287072, 53.450016], [-122.280705, 53.454885], [-122.27543, 53.456014], [-122.213057, 53.456296], [-122.162903, 53.456789], [-122.163222, 53.467068], [-122.166819, 53.474162], [-122.173416, 53.480334], [-122.192301, 53.491357], [-122.189885, 53.499548], [-122.18845, 53.502003], [-122.18054, 53.516662], [-122.182522, 53.525263], [-122.20148, 53.527806], [-122.215094, 53.524235], [-122.241665, 53.526764], [-122.258452, 53.531906], [-122.273492, 53.527354], [-122.318695, 53.545406], [-122.32594, 53.546197], [-122.333215, 53.545357], [-122.339016, 53.543245], [-122.357402, 53.524463], [-122.383041, 53.541618], [-122.392034, 53.555331], [-122.395198, 53.561601], [-122.397226, 53.590898], [-122.397142, 53.591424], [-122.491834, 53.591957], [-122.506348, 53.592202], [-122.531975, 53.593037], [-122.589099, 53.594315], [-122.589519, 53.597694], [-122.595378, 53.597589], [-122.595393, 53.594471], [-122.646884, 53.594958], [-122.666186, 53.594804], [-122.671225, 53.597074], [-122.672365, 53.595453], [-122.67363, 53.594073], [-122.674567, 53.593859], [-122.674794, 53.593896], [-122.67508, 53.594113], [-122.675261, 53.594167], [-122.675637, 53.594131], [-122.675792, 53.59397], [-122.676455, 53.594061]]]]}, "properties": {"name": "Fraser-Fort George E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fraser-Fort George E", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953046", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.23133, 54.494142], [-122.235365, 54.49489], [-122.238829, 54.49036], [-122.244158, 54.489191], [-122.23898, 54.484211], [-122.231146, 54.480031], [-122.230789, 54.471202], [-122.226135, 54.469334], [-122.219943, 54.471637], [-122.215615, 54.470978], [-122.206256, 54.4714], [-122.213133, 54.466497], [-122.220241, 54.46523], [-122.219204, 54.459004], [-122.208267, 54.455324], [-122.213339, 54.449656], [-122.228098, 54.451534], [-122.228383, 54.403426], [-122.22821, 54.348948], [-122.228363, 54.295683], [-122.228269, 54.250318], [-122.228731, 54.204841], [-122.232114, 54.20481], [-122.234118, 54.204846], [-122.241819, 54.205333], [-122.247846, 54.204936], [-122.259642, 54.204654], [-122.2708, 54.205691], [-122.276247, 54.20737], [-122.286592, 54.210851], [-122.289735, 54.212066], [-122.296212, 54.215841], [-122.30258, 54.218905], [-122.306161, 54.220196], [-122.307495, 54.220924], [-122.311034, 54.224282], [-122.311732, 54.225044], [-122.314692, 54.229532], [-122.315411, 54.230503], [-122.317987, 54.233087], [-122.320076, 54.234505], [-122.321945, 54.235606], [-122.323405, 54.236213], [-122.32629, 54.237543], [-122.333753, 54.239923], [-122.344339, 54.241773], [-122.346198, 54.242195], [-122.349905, 54.242702], [-122.354578, 54.244406], [-122.357047, 54.245928], [-122.362937, 54.250243], [-122.365016, 54.252238], [-122.366636, 54.256944], [-122.368362, 54.258542], [-122.369154, 54.258999], [-122.372666, 54.259423], [-122.373977, 54.259383], [-122.379041, 54.258093], [-122.382709, 54.256401], [-122.383853, 54.255674], [-122.387828, 54.252581], [-122.389659, 54.25183], [-122.403124, 54.248152], [-122.414781, 54.245899], [-122.419703, 54.24414], [-122.43384, 54.239905], [-122.444278, 54.236536], [-122.44733, 54.235], [-122.452475, 54.231811], [-122.453804, 54.230797], [-122.463938, 54.222365], [-122.46583, 54.221797], [-122.470746, 54.221421], [-122.475723, 54.221942], [-122.481476, 54.223535], [-122.493756, 54.222387], [-122.498968, 54.221618], [-122.506526, 54.219229], [-122.512791, 54.215941], [-122.516465, 54.214736], [-122.524555, 54.2133], [-122.527378, 54.212725], [-122.532333, 54.210402], [-122.533626, 54.209727], [-122.538199, 54.206389], [-122.540412, 54.202337], [-122.539571, 54.19808], [-122.539439, 54.196749], [-122.541105, 54.195113], [-122.544678, 54.191852], [-122.546294, 54.190244], [-122.546577, 54.189572], [-122.546429, 54.187573], [-122.545889, 54.18588], [-122.546739, 54.182981], [-122.556451, 54.178204], [-122.557084, 54.176304], [-122.556531, 54.17572], [-122.553777, 54.173713], [-122.552188, 54.173086], [-122.541458, 54.172292], [-122.540864, 54.171798], [-122.540241, 54.171437], [-122.539627, 54.170554], [-122.539499, 54.168337], [-122.540342, 54.16674], [-122.540928, 54.16613], [-122.54388, 54.165152], [-122.546363, 54.164792], [-122.54979, 54.164594], [-122.55828, 54.16494], [-122.573973, 54.163455], [-122.574592, 54.162812], [-122.57551, 54.161523], [-122.576039, 54.160541], [-122.573172, 54.155713], [-122.572152, 54.149811], [-122.57172, 54.14831], [-122.572926, 54.144498], [-122.573846, 54.14105], [-122.574301, 54.138821], [-122.573375, 54.136043], [-122.571005, 54.132471], [-122.571288, 54.130823], [-122.572624, 54.129334], [-122.578173, 54.12746], [-122.580351, 54.1273], [-122.582317, 54.1274], [-122.589319, 54.129171], [-122.590806, 54.129447], [-122.594668, 54.129134], [-122.598697, 54.126697], [-122.599525, 54.125955], [-122.599752, 54.123188], [-122.599206, 54.122426], [-122.598092, 54.121223], [-122.594313, 54.120044], [-122.588194, 54.119567], [-122.575302, 54.119932], [-122.572276, 54.119574], [-122.567614, 54.118516], [-122.559092, 54.118099], [-122.556892, 54.118073], [-122.553722, 54.118946], [-122.551696, 54.119176], [-122.547144, 54.118942], [-122.544205, 54.118168], [-122.541734, 54.117264], [-122.540458, 54.11581], [-122.539326, 54.114026], [-122.538732, 54.112284], [-122.53755, 54.109336], [-122.533073, 54.1048], [-122.527535, 54.102694], [-122.522285, 54.101933], [-122.518914, 54.100035], [-122.518619, 54.09976], [-122.518144, 54.098994], [-122.51725, 54.098408], [-122.516097, 54.098006], [-122.515147, 54.097469], [-122.509866, 54.093322], [-122.510104, 54.091819], [-122.510049, 54.087266], [-122.510271, 54.086074], [-122.511846, 54.085365], [-122.520079, 54.08337], [-122.533084, 54.079664], [-122.537039, 54.078726], [-122.538275, 54.078367], [-122.545826, 54.072972], [-122.55817, 54.066029], [-122.560663, 54.062536], [-122.563396, 54.057983], [-122.567565, 54.054911], [-122.569773, 54.052943], [-122.572893, 54.051246], [-122.575899, 54.050213], [-122.584955, 54.04786], [-122.597795, 54.047665], [-122.608215, 54.049159], [-122.611545, 54.04863], [-122.613181, 54.048246], [-122.614175, 54.047045], [-122.614209, 54.046203], [-122.612743, 54.044896], [-122.610356, 54.043854], [-122.608036, 54.042576], [-122.60238, 54.038053], [-122.599225, 54.035647], [-122.597825, 54.034266], [-122.596063, 54.032246], [-122.595098, 54.028749], [-122.594831, 54.02696], [-122.596384, 54.024453], [-122.597517, 54.023352], [-122.598973, 54.02086], [-122.600383, 54.019513], [-122.603469, 54.017214], [-122.607156, 54.015911], [-122.607694, 54.006], [-122.615336, 54.005795], [-122.621237, 54.005566], [-122.624564, 54.006265], [-122.630603, 54.001849], [-122.642968, 54.000531], [-122.647926, 54.000203], [-122.658019, 53.998946], [-122.662353, 53.99758], [-122.666053, 53.99698], [-122.675018, 53.996449], [-122.676529, 53.996428], [-122.679555, 53.996178], [-122.680677, 53.995788], [-122.683791, 53.992539], [-122.685562, 53.986997], [-122.685422, 53.986209], [-122.679849, 53.982711], [-122.675055, 53.977201], [-122.674896, 53.975934], [-122.674118, 53.975458], [-122.669359, 53.973864], [-122.660893, 53.973562], [-122.657637, 53.974464], [-122.655812, 53.974706], [-122.652452, 53.974007], [-122.649706, 53.971222], [-122.64919, 53.968997], [-122.650137, 53.967485], [-122.652244, 53.964393], [-122.655699, 53.962167], [-122.659047, 53.961556], [-122.666118, 53.960745], [-122.668546, 53.960672], [-122.693115, 53.963403], [-122.699167, 53.964194], [-122.704134, 53.96461], [-122.708042, 53.962505], [-122.708664, 53.960255], [-122.707819, 53.959479], [-122.705071, 53.957575], [-122.704539, 53.95729], [-122.699993, 53.956304], [-122.695742, 53.955995], [-122.692076, 53.955008], [-122.690595, 53.953812], [-122.690023, 53.952711], [-122.690485, 53.94949], [-122.693176, 53.944608], [-122.691225, 53.939567], [-122.688125, 53.930585], [-122.687477, 53.929782], [-122.684043, 53.928926], [-122.679098, 53.929609], [-122.669668, 53.929824], [-122.669267, 53.931293], [-122.668697, 53.931843], [-122.663809, 53.931704], [-122.6549, 53.931902], [-122.654899, 53.931769], [-122.650126, 53.931898], [-122.650351, 53.927809], [-122.641944, 53.927914], [-122.64194, 53.927869], [-122.636065, 53.927279], [-122.610533, 53.927312], [-122.602219, 53.92672], [-122.600462, 53.926661], [-122.598459, 53.926694], [-122.594251, 53.926932], [-122.589158, 53.927418], [-122.580747, 53.927492], [-122.562761, 53.927434], [-122.543152, 53.927464], [-122.543278, 53.941756], [-122.537764, 53.941887], [-122.5257, 53.941722], [-122.521066, 53.941587], [-122.520694, 53.937513], [-122.518127, 53.922333], [-122.518169, 53.907298], [-122.477261, 53.896739], [-122.462317, 53.892022], [-122.458419, 53.884841], [-122.461549, 53.880502], [-122.476164, 53.873366], [-122.488016, 53.866266], [-122.490816, 53.859679], [-122.484081, 53.843061], [-122.466405, 53.835262], [-122.448294, 53.833922], [-122.439121, 53.821613], [-122.430188, 53.809396], [-122.413915, 53.778561], [-122.41139, 53.75494], [-122.410884, 53.748842], [-122.404732, 53.718395], [-122.379718, 53.709709], [-122.36729, 53.698427], [-122.35857, 53.692008], [-122.327842, 53.684155], [-122.32508, 53.683164], [-122.320051, 53.676257], [-122.319272, 53.673023], [-122.322097, 53.657965], [-122.340103, 53.645536], [-122.364605, 53.636169], [-122.388101, 53.62754], [-122.393811, 53.611059], [-122.397226, 53.590898], [-122.395198, 53.561601], [-122.392034, 53.555331], [-122.383041, 53.541618], [-122.357402, 53.524463], [-122.339016, 53.543245], [-122.333215, 53.545357], [-122.32594, 53.546197], [-122.318695, 53.545406], [-122.273492, 53.527354], [-122.258452, 53.531906], [-122.241665, 53.526764], [-122.215094, 53.524235], [-122.20148, 53.527806], [-122.182522, 53.525263], [-122.18054, 53.516662], [-122.18845, 53.502003], [-122.189885, 53.499548], [-122.192301, 53.491357], [-122.173416, 53.480334], [-122.166819, 53.474162], [-122.163222, 53.467068], [-122.162903, 53.456789], [-122.136862, 53.45664], [-122.036478, 53.456563], [-122.014899, 53.456592], [-121.972079, 53.456766], [-121.942744, 53.456968], [-121.931003, 53.456153], [-121.896532, 53.456605], [-121.838615, 53.456886], [-121.814029, 53.456911], [-121.75927, 53.455609], [-121.630807, 53.45334], [-121.571344, 53.45255], [-121.555426, 53.439387], [-121.546495, 53.439646], [-121.536343, 53.440161], [-121.328667, 53.444949], [-121.288296, 53.445714], [-121.283508, 53.429864], [-121.275473, 53.416035], [-121.264053, 53.403216], [-121.228164, 53.38473], [-121.208841, 53.37974], [-121.197692, 53.379055], [-121.187196, 53.389343], [-121.191936, 53.400583], [-121.174018, 53.396431], [-121.159981, 53.381283], [-121.142495, 53.379773], [-121.138995, 53.387476], [-121.135002, 53.394585], [-121.127219, 53.397966], [-121.111133, 53.397294], [-121.089005, 53.392742], [-121.073477, 53.393161], [-121.054507, 53.400504], [-121.036532, 53.414613], [-121.024415, 53.427714], [-121.008286, 53.430403], [-121.009868, 53.441267], [-121.026429, 53.452337], [-121.023648, 53.461756], [-121.014924, 53.471237], [-121.017989, 53.475792], [-121.013134, 53.480151], [-121.018381, 53.499698], [-121.015005, 53.511389], [-121.009826, 53.519201], [-121.043946, 53.533509], [-121.05601, 53.529304], [-121.090181, 53.520649], [-121.107334, 53.515768], [-121.114517, 53.520579], [-121.12, 53.53524], [-121.172251, 53.559305], [-121.18045, 53.5632], [-121.212177, 53.567714], [-121.207065, 53.584499], [-121.195686, 53.590388], [-121.187834, 53.599658], [-121.177363, 53.619805], [-121.17002, 53.636491], [-121.150354, 53.645777], [-121.144805, 53.652369], [-121.138984, 53.678795], [-121.137661, 53.687494], [-121.117831, 53.700046], [-121.1134, 53.707144], [-121.113253, 53.713838], [-121.120248, 53.719864], [-121.130082, 53.725661], [-121.130189, 53.730366], [-121.132338, 53.766953], [-121.131305, 53.766855], [-121.127079, 53.76741], [-121.124206, 53.768373], [-121.119289, 53.770554], [-121.114221, 53.773366], [-121.111652, 53.775265], [-121.107017, 53.780352], [-121.105222, 53.783569], [-121.103944, 53.787177], [-121.102164, 53.788303], [-121.099541, 53.788798], [-121.09603, 53.788452], [-121.096448, 53.793655], [-121.097555, 53.800428], [-121.098908, 53.810958], [-121.10381, 53.846969], [-121.104615, 53.863316], [-121.106656, 53.891869], [-121.108788, 53.928757], [-121.112569, 54.000756], [-121.085536, 53.997406], [-121.059432, 53.990166], [-121.028687, 53.977688], [-121.00686, 53.962871], [-120.996454, 53.952394], [-120.99261, 53.945114], [-120.99412, 53.937919], [-121.009433, 53.919271], [-121.011677, 53.910295], [-121.006703, 53.904993], [-121.000475, 53.90318], [-120.987201, 53.903567], [-120.975351, 53.906327], [-120.969555, 53.90603], [-120.954201, 53.902582], [-120.933105, 53.894221], [-120.920182, 53.895588], [-120.921237, 53.91315], [-120.896683, 53.912864], [-120.891391, 53.91812], [-120.879018, 53.927605], [-120.867166, 53.930381], [-120.856268, 53.928291], [-120.842569, 53.919146], [-120.828681, 53.908091], [-120.790359, 53.881574], [-120.76936, 53.892709], [-120.764596, 53.896799], [-120.767442, 53.899782], [-120.758959, 53.903655], [-120.73755, 53.905539], [-120.723, 53.904018], [-120.720188, 53.901044], [-120.679689, 53.900931], [-120.655447, 53.892028], [-120.640375, 53.881798], [-120.625513, 53.869791], [-120.583005, 53.862853], [-120.567883, 53.851166], [-120.561602, 53.840135], [-120.563854, 53.833442], [-120.569068, 53.828679], [-120.571419, 53.822447], [-120.567392, 53.818208], [-120.550864, 53.816245], [-120.534302, 53.815924], [-120.513273, 53.811487], [-120.486735, 53.802661], [-120.470125, 53.795159], [-120.447138, 53.794378], [-120.440011, 53.790371], [-120.406431, 53.791135], [-120.401937, 53.788662], [-120.398384, 53.781922], [-120.387054, 53.77748], [-120.3693, 53.776662], [-120.344349, 53.783275], [-120.34073, 53.785609], [-120.317339, 53.783612], [-120.304045, 53.784208], [-120.294999, 53.781883], [-120.264861, 53.767441], [-120.257408, 53.764011], [-120.231738, 53.757104], [-120.22126, 53.758442], [-120.217, 53.763398], [-120.209793, 53.768453], [-120.194875, 53.773163], [-120.18111, 53.7769], [-120.160096, 53.775032], [-120.150512, 53.773022], [-120.127029, 53.777306], [-120.116272, 53.780675], [-120.097037, 53.792306], [-120.085273, 53.79237], [-120.073904, 53.790537], [-120.059654, 53.791951], [-120.041808, 53.799508], [-120.036969, 53.804782], [-120.040413, 53.814231], [-120.04724, 53.822405], [-120.049787, 53.829014], [-120.042959, 53.845903], [-120.031042, 53.849243], [-120.01598, 53.851751], [-120.017422, 53.864203], [-120.037608, 53.875636], [-120.052817, 53.883254], [-120.065897, 53.902623], [-120.067575, 53.908828], [-120.064083, 53.913063], [-120.055447, 53.920854], [-120.060304, 53.928611], [-120.058376, 53.940629], [-120.06505, 53.947553], [-120.069316, 53.953197], [-120.063905, 53.964319], [-120.074487, 53.977803], [-120.096817, 53.984572], [-120.105801, 53.983029], [-120.122908, 53.972032], [-120.134996, 53.960647], [-120.145563, 53.94773], [-120.147413, 53.942155], [-120.155515, 53.938163], [-120.161335, 53.937503], [-120.173801, 53.938231], [-120.180653, 53.940214], [-120.191818, 53.940003], [-120.204652, 53.95106], [-120.207881, 53.955041], [-120.206655, 53.969895], [-120.209583, 53.972821], [-120.216017, 53.974269], [-120.233321, 53.976486], [-120.260004, 53.976628], [-120.262904, 53.999629], [-120.249586, 54.021085], [-120.229628, 54.041549], [-120.205469, 54.030564], [-120.199695, 54.029251], [-120.196546, 54.02981], [-120.194418, 54.037094], [-120.193634, 54.044327], [-120.178265, 54.04212], [-120.176262, 54.048879], [-120.177759, 54.051068], [-120.17415, 54.054897], [-120.168155, 54.051329], [-120.155088, 54.054523], [-120.143579, 54.064601], [-120.142135, 54.074219], [-120.155538, 54.086293], [-120.157653, 54.09633], [-120.158307, 54.101583], [-120.155204, 54.107653], [-120.160117, 54.111713], [-120.163991, 54.117956], [-120.167297, 54.121521], [-120.172471, 54.122436], [-120.183563, 54.117567], [-120.198506, 54.114212], [-120.231415, 54.111339], [-120.240648, 54.113477], [-120.249498, 54.113438], [-120.262326, 54.111464], [-120.272961, 54.113614], [-120.288403, 54.114166], [-120.310144, 54.109839], [-120.321378, 54.104551], [-120.328998, 54.104361], [-120.342334, 54.108111], [-120.36485, 54.11425], [-120.37055, 54.114764], [-120.385991, 54.119714], [-120.39322, 54.121755], [-120.413482, 54.117987], [-120.430633, 54.117545], [-120.440245, 54.118419], [-120.446493, 54.124005], [-120.460561, 54.130644], [-120.479227, 54.13508], [-120.491731, 54.132352], [-120.501844, 54.131444], [-120.506267, 54.129371], [-120.531808, 54.136017], [-120.543862, 54.144204], [-120.550838, 54.153998], [-120.555491, 54.156929], [-120.556867, 54.160954], [-120.58147, 54.173836], [-120.581964, 54.182859], [-120.56777, 54.190984], [-120.571604, 54.201348], [-120.564082, 54.206757], [-120.566253, 54.218821], [-120.569804, 54.221085], [-120.584059, 54.227836], [-120.58316, 54.233492], [-120.57551, 54.239428], [-120.576736, 54.245626], [-120.581595, 54.250138], [-120.580908, 54.256388], [-120.584334, 54.259507], [-120.591093, 54.267654], [-120.593441, 54.274189], [-120.598546, 54.283707], [-120.606312, 54.289687], [-120.611575, 54.291303], [-120.619473, 54.290697], [-120.624063, 54.292176], [-120.631158, 54.281154], [-120.645575, 54.287043], [-120.652865, 54.288736], [-120.668941, 54.284489], [-120.676641, 54.282297], [-120.68461, 54.283794], [-120.699368, 54.293431], [-120.706871, 54.296044], [-120.717526, 54.29235], [-120.727472, 54.297215], [-120.727309, 54.300374], [-120.719944, 54.303294], [-120.713383, 54.305164], [-120.70405, 54.3111], [-120.690425, 54.317602], [-120.683123, 54.322956], [-120.691591, 54.328737], [-120.692165, 54.334799], [-120.697188, 54.341152], [-120.699017, 54.346366], [-120.693436, 54.349756], [-120.685866, 54.350762], [-120.675619, 54.350236], [-120.665324, 54.352343], [-120.659627, 54.355024], [-120.659315, 54.356188], [-120.660958, 54.360662], [-120.66804, 54.37433], [-120.681957, 54.386436], [-120.688972, 54.391814], [-120.711644, 54.402491], [-120.7322, 54.408611], [-120.739903, 54.407076], [-120.747517, 54.40409], [-120.750038, 54.401733], [-120.752232, 54.39865], [-120.75565, 54.396693], [-120.760734, 54.396393], [-120.770323, 54.396777], [-120.775961, 54.397137], [-120.781072, 54.40224], [-120.784554, 54.403379], [-120.784898, 54.410169], [-120.796636, 54.417811], [-120.802071, 54.42799], [-120.802609, 54.437022], [-120.801123, 54.44532], [-120.803484, 54.453506], [-120.803564, 54.453556], [-120.800043, 54.462066], [-120.789895, 54.468744], [-120.790827, 54.473137], [-120.794488, 54.476316], [-120.804892, 54.478304], [-120.815337, 54.485251], [-120.814407, 54.488057], [-120.816405, 54.490769], [-120.825079, 54.493712], [-120.833713, 54.491581], [-120.847555, 54.489276], [-120.858637, 54.490053], [-120.870857, 54.490505], [-120.875178, 54.488943], [-120.878131, 54.470707], [-120.876846, 54.465168], [-120.879481, 54.46261], [-120.886412, 54.460137], [-120.902003, 54.456911], [-120.914801, 54.455384], [-120.922629, 54.453308], [-120.934178, 54.451971], [-120.936722, 54.45699], [-120.942786, 54.460836], [-120.947523, 54.462106], [-120.954075, 54.462856], [-120.961437, 54.461896], [-120.977167, 54.461163], [-120.984913, 54.461322], [-120.995865, 54.463272], [-121.004684, 54.463697], [-121.020658, 54.460916], [-121.026225, 54.458167], [-121.037797, 54.453854], [-121.044567, 54.455521], [-121.053456, 54.460687], [-121.063015, 54.467304], [-121.065206, 54.461907], [-121.064223, 54.457424], [-121.068284, 54.451242], [-121.074163, 54.451192], [-121.093433, 54.45994], [-121.099169, 54.46437], [-121.10751, 54.468541], [-121.113042, 54.47007], [-121.119457, 54.474961], [-121.12191, 54.480501], [-121.126189, 54.48387], [-121.127052, 54.490526], [-121.121261, 54.493346], [-121.117136, 54.500782], [-121.126196, 54.500472], [-121.13361, 54.509843], [-121.134267, 54.5136], [-121.12245, 54.536901], [-121.12117, 54.542038], [-121.125235, 54.544484], [-121.120241, 54.545264], [-121.124525, 54.548963], [-121.139132, 54.551826], [-121.145022, 54.552759], [-121.157159, 54.551727], [-121.158782, 54.545006], [-121.166829, 54.545152], [-121.17339, 54.547864], [-121.179621, 54.548533], [-121.19073, 54.548615], [-121.199238, 54.547309], [-121.207059, 54.547517], [-121.219917, 54.549642], [-121.248165, 54.546568], [-121.263741, 54.534972], [-121.265703, 54.525015], [-121.272075, 54.517237], [-121.284437, 54.513813], [-121.293498, 54.517109], [-121.31022, 54.514804], [-121.316796, 54.512892], [-121.313284, 54.518356], [-121.32779, 54.52468], [-121.339466, 54.527049], [-121.355455, 54.53574], [-121.369517, 54.537249], [-121.389983, 54.532029], [-121.397356, 54.53367], [-121.396263, 54.536261], [-121.422679, 54.531207], [-121.439982, 54.523502], [-121.437451, 54.513293], [-121.430823, 54.503617], [-121.418509, 54.495932], [-121.41258, 54.491029], [-121.414496, 54.480022], [-121.420848, 54.46888], [-121.414922, 54.463314], [-121.418321, 54.456019], [-121.440368, 54.449902], [-121.463292, 54.434898], [-121.466633, 54.413019], [-121.478665, 54.410485], [-121.490267, 54.415371], [-121.502118, 54.425158], [-121.525777, 54.430816], [-121.568556, 54.439477], [-121.585819, 54.437052], [-121.580817, 54.418766], [-121.580798, 54.418536], [-121.583977, 54.41588], [-121.588542, 54.414792], [-121.59566, 54.414365], [-121.606783, 54.421361], [-121.612225, 54.420014], [-121.620497, 54.420915], [-121.624734, 54.423262], [-121.633172, 54.422829], [-121.637525, 54.417174], [-121.641317, 54.40481], [-121.648157, 54.401221], [-121.657164, 54.391916], [-121.668091, 54.395328], [-121.681158, 54.409727], [-121.713635, 54.409088], [-121.768828, 54.418818], [-121.805594, 54.434167], [-121.840766, 54.446995], [-121.866561, 54.454292], [-121.870433, 54.438496], [-121.874877, 54.431182], [-121.873784, 54.418194], [-121.863597, 54.404586], [-121.869201, 54.399256], [-121.884857, 54.39825], [-121.906334, 54.407149], [-121.929747, 54.415635], [-121.940758, 54.422332], [-121.951393, 54.433799], [-121.952834, 54.438693], [-121.993238, 54.448262], [-122.00333, 54.440246], [-122.026712, 54.438243], [-122.04239, 54.437865], [-122.047033, 54.443123], [-122.058399, 54.443035], [-122.066612, 54.44456], [-122.072194, 54.463166], [-122.070276, 54.470054], [-122.069275, 54.477332], [-122.087476, 54.488839], [-122.09473, 54.487321], [-122.10045, 54.477581], [-122.103344, 54.463344], [-122.112742, 54.466843], [-122.115562, 54.471318], [-122.128498, 54.469751], [-122.133685, 54.473017], [-122.135287, 54.484509], [-122.147258, 54.490896], [-122.155484, 54.489934], [-122.161488, 54.48613], [-122.165445, 54.483534], [-122.174775, 54.477231], [-122.177696, 54.474257], [-122.183866, 54.47023], [-122.194481, 54.47206], [-122.200388, 54.476176], [-122.201514, 54.479548], [-122.204902, 54.483136], [-122.211636, 54.484461], [-122.217503, 54.488273], [-122.23133, 54.494142]]]]}, "properties": {"name": "Fraser-Fort George F", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fraser-Fort George F", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953048", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.77346, 55.957479], [-123.794515, 55.967716], [-123.802924, 55.970706], [-123.809937, 55.979086], [-123.830591, 55.983276], [-123.84227, 55.982796], [-123.851438, 55.977502], [-123.857121, 55.972037], [-123.86002, 55.958133], [-123.86479, 55.946131], [-123.868709, 55.934391], [-123.874674, 55.926977], [-123.891539, 55.920546], [-123.896623, 55.91898], [-123.907433, 55.918755], [-123.915526, 55.916882], [-123.924836, 55.914009], [-123.932725, 55.909708], [-123.9362, 55.904289], [-123.937607, 55.90013], [-123.936756, 55.894808], [-123.922444, 55.883728], [-123.912657, 55.874971], [-123.908896, 55.865588], [-123.903822, 55.855992], [-123.892545, 55.844597], [-123.886163, 55.834789], [-123.880253, 55.825455], [-123.866557, 55.810471], [-123.858013, 55.806297], [-123.846721, 55.806078], [-123.835811, 55.805119], [-123.824173, 55.800042], [-123.820806, 55.795504], [-123.81913, 55.790444], [-123.822987, 55.784293], [-123.82226, 55.7746], [-123.815999, 55.766001], [-123.805893, 55.757973], [-123.784317, 55.752879], [-123.777092, 55.750557], [-123.7726, 55.750557], [-123.773021, 55.749236], [-123.761779, 55.745584], [-123.756804, 55.73595], [-123.760397, 55.731734], [-123.776929, 55.734052], [-123.78431, 55.734865], [-123.793132, 55.731507], [-123.803259, 55.728364], [-123.813211, 55.722792], [-123.817985, 55.716957], [-123.820912, 55.70318], [-123.827321, 55.700688], [-123.832242, 55.695536], [-123.833785, 55.693603], [-123.840899, 55.686978], [-123.846141, 55.682402], [-123.879067, 55.670155], [-123.916439, 55.65677], [-123.932938, 55.648008], [-123.952185, 55.634637], [-123.961997, 55.624431], [-123.975056, 55.609454], [-123.953462, 55.602729], [-123.942251, 55.574914], [-123.927865, 55.553625], [-123.910824, 55.527727], [-123.884512, 55.503715], [-123.883092, 55.496195], [-123.885201, 55.493316], [-123.901024, 55.483265], [-123.897992, 55.477746], [-123.89498, 55.464783], [-123.904374, 55.439074], [-123.908069, 55.434369], [-123.906758, 55.429075], [-123.901208, 55.423322], [-123.895552, 55.416919], [-123.887707, 55.412609], [-123.874972, 55.400241], [-123.869926, 55.389944], [-123.869578, 55.379817], [-123.862146, 55.365403], [-123.860354, 55.346707], [-123.856325, 55.342204], [-123.851789, 55.339533], [-123.828675, 55.334494], [-123.797172, 55.324456], [-123.773021, 55.299392], [-123.742078, 55.287507], [-123.712134, 55.290517], [-123.678679, 55.297662], [-123.666446, 55.30016], [-123.645893, 55.306529], [-123.626258, 55.309089], [-123.609397, 55.310782], [-123.593834, 55.310775], [-123.568507, 55.31276], [-123.549177, 55.317976], [-123.534565, 55.327462], [-123.507433, 55.319709], [-123.494209, 55.313965], [-123.468429, 55.292908], [-123.461566, 55.286684], [-123.457301, 55.270194], [-123.446709, 55.256594], [-123.438575, 55.247984], [-123.43059, 55.241925], [-123.413326, 55.234931], [-123.418527, 55.218849], [-123.418042, 55.212509], [-123.413883, 55.20193], [-123.397334, 55.182306], [-123.392259, 55.171086], [-123.396127, 55.165249], [-123.409732, 55.156377], [-123.418661, 55.148033], [-123.420061, 55.136843], [-123.417, 55.121941], [-123.41073, 55.114247], [-123.3987, 55.10556], [-123.396273, 55.102977], [-123.39956, 55.098246], [-123.413453, 55.085942], [-123.415814, 55.080571], [-123.415208, 55.070913], [-123.407685, 55.065022], [-123.406686, 55.057349], [-123.408513, 55.051023], [-123.410766, 55.041017], [-123.415566, 55.032891], [-123.421147, 55.028074], [-123.433046, 55.020878], [-123.446567, 55.015407], [-123.454189, 55.014412], [-123.460156, 55.016612], [-123.467503, 55.021234], [-123.468443, 55.019275], [-123.472612, 55.01687], [-123.494898, 55.020009], [-123.505838, 55.018637], [-123.515376, 55.017144], [-123.524406, 55.006938], [-123.525107, 55.001546], [-123.538122, 54.986027], [-123.545057, 54.971572], [-123.550471, 54.958238], [-123.556522, 54.955793], [-123.561223, 54.95192], [-123.590095, 54.946403], [-123.619836, 54.955039], [-123.626669, 54.955119], [-123.63238, 54.94926], [-123.635457, 54.939603], [-123.633008, 54.935657], [-123.658341, 54.920308], [-123.690611, 54.923128], [-123.708216, 54.933521], [-123.710458, 54.942638], [-123.720716, 54.94293], [-123.726595, 54.947751], [-123.72728, 54.955228], [-123.758347, 54.964163], [-123.761197, 54.974576], [-123.787477, 54.990954], [-123.787414, 54.990969], [-123.794212, 54.995416], [-123.80599, 54.996622], [-123.816426, 54.997861], [-123.814049, 55.008908], [-123.815073, 55.020527], [-123.811999, 55.033855], [-123.810555, 55.037606], [-123.813811, 55.040285], [-123.828263, 55.034516], [-123.830474, 55.038348], [-123.83004, 55.044664], [-123.849047, 55.048144], [-123.862982, 55.04705], [-123.87238, 55.041221], [-123.888392, 55.037826], [-123.904458, 55.019633], [-123.945878, 55.011501], [-123.968239, 55.011017], [-123.980082, 55.01221], [-123.985989, 55.020642], [-123.994483, 55.023925], [-123.999078, 55.025169], [-123.999123, 54.986602], [-124.003635, 54.982163], [-124.012022, 54.981627], [-124.011096, 54.972221], [-124.013229, 54.966187], [-124.013276, 54.959907], [-124.021485, 54.953055], [-124.031968, 54.952964], [-124.040359, 54.954448], [-124.051272, 54.950777], [-124.053262, 54.944786], [-124.051912, 54.930459], [-124.045017, 54.928212], [-124.040546, 54.92428], [-124.034522, 54.916802], [-124.034065, 54.908256], [-124.03411, 54.902987], [-124.029107, 54.899227], [-124.023007, 54.897435], [-124.012974, 54.898215], [-124.006811, 54.897454], [-123.998615, 54.895117], [-123.995036, 54.893024], [-123.993419, 54.887478], [-123.993566, 54.885613], [-123.994507, 54.882283], [-123.998608, 54.880879], [-124.003418, 54.881677], [-124.009859, 54.882158], [-124.014193, 54.882095], [-124.015907, 54.880034], [-124.014855, 54.876732], [-124.023116, 54.867939], [-124.019201, 54.864944], [-124.011001, 54.865343], [-124.007373, 54.86448], [-124.005181, 54.862553], [-124.001279, 54.864511], [-123.996231, 54.865822], [-123.990328, 54.86632], [-123.972526, 54.863698], [-123.926726, 54.86212], [-123.904444, 54.86481], [-123.895808, 54.85372], [-123.919557, 54.831743], [-123.914928, 54.816178], [-123.92578, 54.806834], [-123.943971, 54.779138], [-123.948156, 54.767498], [-123.92637, 54.758991], [-123.913616, 54.750272], [-123.903706, 54.743865], [-123.880519, 54.738196], [-123.878702, 54.735281], [-123.880391, 54.719662], [-123.859366, 54.704204], [-123.858035, 54.700123], [-123.863263, 54.687058], [-123.860128, 54.685759], [-123.842237, 54.696153], [-123.812116, 54.693656], [-123.807015, 54.694539], [-123.804517, 54.694313], [-123.800154, 54.693724], [-123.795951, 54.692659], [-123.794408, 54.691172], [-123.793095, 54.68954], [-123.78972, 54.681654], [-123.793276, 54.674734], [-123.778499, 54.659126], [-123.78018, 54.650184], [-123.786343, 54.627227], [-123.777753, 54.618477], [-123.77865, 54.61323], [-123.808238, 54.605182], [-123.807906, 54.602991], [-123.780056, 54.592616], [-123.79629, 54.577152], [-123.819678, 54.58081], [-123.81966, 54.580637], [-123.822176, 54.575585], [-123.81973, 54.561963], [-123.833335, 54.554283], [-123.829352, 54.549794], [-123.821715, 54.544199], [-123.833302, 54.535494], [-123.842901, 54.530757], [-123.848615, 54.529081], [-123.851902, 54.528022], [-123.852809, 54.527817], [-123.854858, 54.527515], [-123.855979, 54.527283], [-123.858481, 54.526411], [-123.861177, 54.525286], [-123.861359, 54.525124], [-123.861386, 54.524935], [-123.86077, 54.524257], [-123.86068, 54.523735], [-123.86033, 54.523181], [-123.859826, 54.52278], [-123.859281, 54.522577], [-123.859018, 54.522579], [-123.858373, 54.522763], [-123.858032, 54.522738], [-123.857892, 54.522667], [-123.857621, 54.522283], [-123.857728, 54.521501], [-123.858093, 54.521129], [-123.858552, 54.520937], [-123.858813, 54.520935], [-123.859265, 54.521041], [-123.85999, 54.521044], [-123.861678, 54.520421], [-123.863147, 54.520123], [-123.865055, 54.517415], [-123.849597, 54.513029], [-123.848044, 54.512487], [-123.87731, 54.49911], [-123.8806, 54.492351], [-123.910953, 54.477862], [-123.952445, 54.458758], [-123.951285, 54.449467], [-123.954751, 54.446601], [-123.965079, 54.444307], [-123.967238, 54.44061], [-123.970153, 54.438536], [-123.977074, 54.436575], [-123.984599, 54.435255], [-123.986479, 54.429511], [-123.977189, 54.427366], [-123.969351, 54.424189], [-123.969783, 54.419486], [-123.969402, 54.41134], [-123.962847, 54.407482], [-123.956008, 54.399772], [-123.95287, 54.395139], [-123.945659, 54.392386], [-123.938183, 54.386337], [-123.933424, 54.379827], [-123.933403, 54.373492], [-123.928283, 54.361446], [-123.91542, 54.364856], [-123.905611, 54.374682], [-123.878024, 54.378871], [-123.863814, 54.378019], [-123.853054, 54.375642], [-123.847382, 54.37131], [-123.828845, 54.346359], [-123.819412, 54.336532], [-123.782701, 54.336333], [-123.759277, 54.328331], [-123.741171, 54.321789], [-123.733691, 54.322533], [-123.716096, 54.322386], [-123.684191, 54.325758], [-123.676544, 54.326826], [-123.668246, 54.326359], [-123.644256, 54.330123], [-123.643355, 54.325643], [-123.620212, 54.320558], [-123.586623, 54.317562], [-123.554392, 54.306245], [-123.541612, 54.297761], [-123.532431, 54.289599], [-123.537912, 54.27902], [-123.552689, 54.270199], [-123.518847, 54.254732], [-123.520494, 54.252469], [-123.520098, 54.224992], [-123.520395, 54.194733], [-123.520214, 54.17337], [-123.517061, 54.171259], [-123.452584, 54.17116], [-123.361544, 54.170652], [-123.309404, 54.170633], [-123.26742, 54.170402], [-123.216243, 54.17072], [-123.21611, 54.179752], [-123.188984, 54.180731], [-123.179425, 54.181205], [-123.12633, 54.179826], [-123.075832, 54.180208], [-123.055772, 54.180043], [-123.020979, 54.179913], [-123.021425, 54.167311], [-123.022576, 54.165511], [-122.945972, 54.165763], [-122.946086, 54.156867], [-122.91998, 54.157236], [-122.865836, 54.157039], [-122.861355, 54.148704], [-122.812879, 54.148776], [-122.81287, 54.163865], [-122.762697, 54.16379], [-122.739812, 54.163656], [-122.739763, 54.167486], [-122.703672, 54.167149], [-122.703325, 54.166764], [-122.702849, 54.165909], [-122.664467, 54.167668], [-122.639238, 54.166979], [-122.638364, 54.161043], [-122.614171, 54.160928], [-122.575562, 54.161426], [-122.574592, 54.162812], [-122.573973, 54.163455], [-122.55828, 54.16494], [-122.54979, 54.164594], [-122.546363, 54.164792], [-122.54388, 54.165152], [-122.540928, 54.16613], [-122.540342, 54.16674], [-122.539499, 54.168337], [-122.539627, 54.170554], [-122.540241, 54.171437], [-122.540864, 54.171798], [-122.541458, 54.172292], [-122.552188, 54.173086], [-122.553777, 54.173713], [-122.556531, 54.17572], [-122.557084, 54.176304], [-122.556451, 54.178204], [-122.546739, 54.182981], [-122.545889, 54.18588], [-122.546429, 54.187573], [-122.546577, 54.189572], [-122.546294, 54.190244], [-122.544678, 54.191852], [-122.541105, 54.195113], [-122.539439, 54.196749], [-122.539571, 54.19808], [-122.540412, 54.202337], [-122.538199, 54.206389], [-122.533626, 54.209727], [-122.532333, 54.210402], [-122.527378, 54.212725], [-122.524555, 54.2133], [-122.516465, 54.214736], [-122.512791, 54.215941], [-122.506526, 54.219229], [-122.498968, 54.221618], [-122.493756, 54.222387], [-122.481476, 54.223535], [-122.475723, 54.221942], [-122.470746, 54.221421], [-122.46583, 54.221797], [-122.463938, 54.222365], [-122.453804, 54.230797], [-122.452475, 54.231811], [-122.44733, 54.235], [-122.444278, 54.236536], [-122.43384, 54.239905], [-122.419703, 54.24414], [-122.414781, 54.245899], [-122.403124, 54.248152], [-122.389659, 54.25183], [-122.387828, 54.252581], [-122.383853, 54.255674], [-122.382709, 54.256401], [-122.379041, 54.258093], [-122.373977, 54.259383], [-122.372666, 54.259423], [-122.369154, 54.258999], [-122.368362, 54.258542], [-122.366636, 54.256944], [-122.365016, 54.252238], [-122.362937, 54.250243], [-122.357047, 54.245928], [-122.354578, 54.244406], [-122.349905, 54.242702], [-122.346198, 54.242195], [-122.344339, 54.241773], [-122.333753, 54.239923], [-122.32629, 54.237543], [-122.323405, 54.236213], [-122.321945, 54.235606], [-122.320076, 54.234505], [-122.317987, 54.233087], [-122.315411, 54.230503], [-122.314692, 54.229532], [-122.311732, 54.225044], [-122.311034, 54.224282], [-122.307495, 54.220924], [-122.306161, 54.220196], [-122.30258, 54.218905], [-122.296212, 54.215841], [-122.289735, 54.212066], [-122.286592, 54.210851], [-122.276247, 54.20737], [-122.2708, 54.205691], [-122.259642, 54.204654], [-122.247846, 54.204936], [-122.241819, 54.205333], [-122.234118, 54.204846], [-122.232114, 54.20481], [-122.228731, 54.204841], [-122.228269, 54.250318], [-122.228363, 54.295683], [-122.22821, 54.348948], [-122.228383, 54.403426], [-122.228098, 54.451534], [-122.213339, 54.449656], [-122.208267, 54.455324], [-122.219204, 54.459004], [-122.220241, 54.46523], [-122.213133, 54.466497], [-122.206256, 54.4714], [-122.215615, 54.470978], [-122.219943, 54.471637], [-122.226135, 54.469334], [-122.230789, 54.471202], [-122.231146, 54.480031], [-122.23898, 54.484211], [-122.244158, 54.489191], [-122.238829, 54.49036], [-122.235365, 54.49489], [-122.23133, 54.494142], [-122.217503, 54.488273], [-122.211636, 54.484461], [-122.204902, 54.483136], [-122.201514, 54.479548], [-122.200388, 54.476176], [-122.194481, 54.47206], [-122.183866, 54.47023], [-122.177696, 54.474257], [-122.174775, 54.477231], [-122.165445, 54.483534], [-122.161488, 54.48613], [-122.155484, 54.489934], [-122.147258, 54.490896], [-122.135287, 54.484509], [-122.133685, 54.473017], [-122.128498, 54.469751], [-122.115562, 54.471318], [-122.112742, 54.466843], [-122.103344, 54.463344], [-122.10045, 54.477581], [-122.09473, 54.487321], [-122.087476, 54.488839], [-122.069275, 54.477332], [-122.070276, 54.470054], [-122.072194, 54.463166], [-122.066612, 54.44456], [-122.058399, 54.443035], [-122.047033, 54.443123], [-122.04239, 54.437865], [-122.026712, 54.438243], [-122.00333, 54.440246], [-121.993238, 54.448262], [-121.952834, 54.438693], [-121.951393, 54.433799], [-121.940758, 54.422332], [-121.929747, 54.415635], [-121.906334, 54.407149], [-121.884857, 54.39825], [-121.869201, 54.399256], [-121.863597, 54.404586], [-121.873784, 54.418194], [-121.874877, 54.431182], [-121.870433, 54.438496], [-121.866561, 54.454292], [-121.840766, 54.446995], [-121.805594, 54.434167], [-121.768828, 54.418818], [-121.713635, 54.409088], [-121.681158, 54.409727], [-121.668091, 54.395328], [-121.657164, 54.391916], [-121.648157, 54.401221], [-121.641317, 54.40481], [-121.637525, 54.417174], [-121.633172, 54.422829], [-121.624734, 54.423262], [-121.620497, 54.420915], [-121.612225, 54.420014], [-121.606783, 54.421361], [-121.59566, 54.414365], [-121.588542, 54.414792], [-121.583977, 54.41588], [-121.580798, 54.418536], [-121.580817, 54.418766], [-121.585819, 54.437052], [-121.568556, 54.439477], [-121.525777, 54.430816], [-121.502118, 54.425158], [-121.490267, 54.415371], [-121.478665, 54.410485], [-121.466633, 54.413019], [-121.463292, 54.434898], [-121.440368, 54.449902], [-121.418321, 54.456019], [-121.414922, 54.463314], [-121.420848, 54.46888], [-121.414496, 54.480022], [-121.41258, 54.491029], [-121.418509, 54.495932], [-121.430823, 54.503617], [-121.437451, 54.513293], [-121.439982, 54.523502], [-121.422679, 54.531207], [-121.396263, 54.536261], [-121.390007, 54.557666], [-121.397373, 54.568963], [-121.402834, 54.569367], [-121.421486, 54.567266], [-121.426119, 54.568657], [-121.436416, 54.567054], [-121.447614, 54.563799], [-121.453942, 54.563017], [-121.457991, 54.565624], [-121.455273, 54.570053], [-121.444957, 54.576961], [-121.445054, 54.577026], [-121.43772, 54.587136], [-121.452747, 54.597368], [-121.45181, 54.607604], [-121.459785, 54.608936], [-121.46753, 54.609338], [-121.473905, 54.608811], [-121.481877, 54.608814], [-121.492361, 54.622365], [-121.490071, 54.625027], [-121.499195, 54.634989], [-121.523507, 54.651985], [-121.523045, 54.665414], [-121.519151, 54.671536], [-121.518687, 54.684965], [-121.497815, 54.690067], [-121.485658, 54.695277], [-121.478769, 54.706588], [-121.473929, 54.723613], [-121.476095, 54.730127], [-121.487988, 54.736637], [-121.493705, 54.745275], [-121.488879, 54.75233], [-121.499865, 54.757112], [-121.518642, 54.766939], [-121.527117, 54.771453], [-121.522754, 54.779041], [-121.520453, 54.791678], [-121.522057, 54.798193], [-121.538781, 54.800978], [-121.543371, 54.805627], [-121.546472, 54.813868], [-121.553819, 54.820376], [-121.580184, 54.824346], [-121.624947, 54.838917], [-121.643093, 54.845271], [-121.642423, 54.85179], [-121.646118, 54.858033], [-121.655743, 54.857226], [-121.672988, 54.863843], [-121.687382, 54.872455], [-121.695224, 54.87882], [-121.724891, 54.88647], [-121.740426, 54.880608], [-121.734979, 54.870571], [-121.757532, 54.858334], [-121.762278, 54.85329], [-121.7712, 54.851679], [-121.775199, 54.843197], [-121.782022, 54.839206], [-121.791879, 54.839316], [-121.797046, 54.855124], [-121.802586, 54.858829], [-121.829463, 54.862607], [-121.865097, 54.869139], [-121.869962, 54.873375], [-121.869379, 54.885216], [-121.851684, 54.891431], [-121.838138, 54.897753], [-121.832887, 54.903631], [-121.859924, 54.899706], [-121.868246, 54.904595], [-121.868521, 54.909516], [-121.864653, 54.914989], [-121.851968, 54.916393], [-121.845538, 54.919619], [-121.843306, 54.928276], [-121.844846, 54.933325], [-121.853612, 54.936087], [-121.858704, 54.93926], [-121.860363, 54.944442], [-121.868528, 54.955715], [-121.891567, 54.95896], [-121.895762, 54.96373], [-121.904305, 54.966224], [-121.914319, 54.97629], [-121.919736, 54.987041], [-121.937583, 54.996142], [-121.934894, 55.003608], [-121.946515, 55.011536], [-121.96128, 55.013205], [-121.967127, 55.019828], [-121.971372, 55.027257], [-121.98128, 55.02735], [-121.993279, 55.028494], [-121.995943, 55.029325], [-122.008785, 55.033753], [-122.016837, 55.044591], [-122.035138, 55.065298], [-122.059347, 55.072958], [-122.079382, 55.08936], [-122.089784, 55.097637], [-122.10021, 55.105154], [-122.124404, 55.098294], [-122.15015, 55.102506], [-122.159401, 55.105466], [-122.160607, 55.114957], [-122.166716, 55.123366], [-122.161138, 55.134145], [-122.176931, 55.145944], [-122.1907, 55.148354], [-122.206981, 55.152289], [-122.223384, 55.149847], [-122.230837, 55.141107], [-122.239815, 55.140777], [-122.251338, 55.143453], [-122.251244, 55.161686], [-122.262922, 55.172238], [-122.273883, 55.181111], [-122.27071, 55.190795], [-122.255915, 55.203262], [-122.239025, 55.202832], [-122.225673, 55.207679], [-122.238512, 55.222814], [-122.250564, 55.226096], [-122.259078, 55.231158], [-122.275401, 55.23734], [-122.297101, 55.239532], [-122.302348, 55.243663], [-122.296628, 55.251089], [-122.330501, 55.284255], [-122.357099, 55.302161], [-122.385967, 55.335309], [-122.429226, 55.330766], [-122.435888, 55.333142], [-122.445736, 55.335165], [-122.461793, 55.344556], [-122.484757, 55.348755], [-122.485693, 55.352587], [-122.490188, 55.360206], [-122.496295, 55.364267], [-122.504326, 55.363768], [-122.511026, 55.366599], [-122.522502, 55.376324], [-122.543892, 55.38406], [-122.547098, 55.390677], [-122.559844, 55.403476], [-122.560589, 55.403786], [-122.578549, 55.41258], [-122.589957, 55.414495], [-122.603116, 55.410212], [-122.619003, 55.400712], [-122.628589, 55.395343], [-122.630081, 55.393951], [-122.636698, 55.359145], [-122.654945, 55.342432], [-122.678487, 55.340353], [-122.698196, 55.347012], [-122.719897, 55.343978], [-122.739977, 55.354066], [-122.742708, 55.365542], [-122.78915, 55.381116], [-122.811555, 55.387509], [-122.830314, 55.384382], [-122.83954, 55.393083], [-122.846042, 55.398916], [-122.86938, 55.400104], [-122.877789, 55.406203], [-122.861965, 55.415763], [-122.87441, 55.419017], [-122.920235, 55.413138], [-122.974535, 55.398085], [-122.987187, 55.401535], [-122.986632, 55.428286], [-123.00121, 55.438199], [-123.00572, 55.446078], [-123.002297, 55.458262], [-122.980075, 55.464697], [-122.955631, 55.459557], [-122.937846, 55.459478], [-122.927786, 55.46305], [-122.933095, 55.472312], [-122.956661, 55.488287], [-122.953328, 55.503146], [-122.932919, 55.521785], [-122.93991, 55.536927], [-122.942539, 55.554064], [-122.921157, 55.564019], [-122.93573, 55.5724], [-122.948041, 55.580919], [-122.965536, 55.582165], [-122.978482, 55.570899], [-122.996901, 55.563421], [-123.013629, 55.559746], [-123.037875, 55.562517], [-123.071809, 55.582667], [-123.071713, 55.595793], [-123.080639, 55.610826], [-123.072795, 55.620845], [-123.078161, 55.625498], [-123.103006, 55.627818], [-123.125926, 55.629624], [-123.142936, 55.640441], [-123.142205, 55.651858], [-123.127644, 55.660377], [-123.127971, 55.673929], [-123.127933, 55.680493], [-123.123006, 55.684446], [-123.120379, 55.688791], [-123.120457, 55.693955], [-123.127863, 55.697177], [-123.139116, 55.712066], [-123.136452, 55.722977], [-123.14377, 55.731686], [-123.164293, 55.737501], [-123.191175, 55.733216], [-123.198507, 55.727193], [-123.180817, 55.711594], [-123.203648, 55.714247], [-123.228411, 55.711812], [-123.260829, 55.697108], [-123.306928, 55.706886], [-123.326662, 55.715373], [-123.339073, 55.727319], [-123.341399, 55.73126], [-123.313598, 55.757797], [-123.315496, 55.770895], [-123.307408, 55.776096], [-123.317957, 55.80024], [-123.339859, 55.808906], [-123.339258, 55.819897], [-123.351342, 55.830451], [-123.364664, 55.829148], [-123.381597, 55.834127], [-123.382871, 55.839487], [-123.363664, 55.853829], [-123.367726, 55.861078], [-123.386291, 55.8642], [-123.400593, 55.866425], [-123.418129, 55.871497], [-123.430833, 55.882141], [-123.442351, 55.882474], [-123.485376, 55.873014], [-123.511003, 55.86925], [-123.52366, 55.863167], [-123.542913, 55.864908], [-123.576198, 55.870535], [-123.578967, 55.880875], [-123.608036, 55.883145], [-123.618901, 55.888278], [-123.649694, 55.896302], [-123.667732, 55.909749], [-123.684286, 55.913676], [-123.68294, 55.939212], [-123.681437, 55.940117], [-123.688429, 55.942836], [-123.705739, 55.942458], [-123.726748, 55.939074], [-123.736635, 55.937881], [-123.74589, 55.933777], [-123.751531, 55.933895], [-123.757572, 55.940083], [-123.762073, 55.94922], [-123.77346, 55.957479]], [[-123.152719, 55.216093], [-123.181987, 55.215215], [-123.201765, 55.215345], [-123.201786, 55.251409], [-123.226355, 55.251708], [-123.226836, 55.254645], [-123.231251, 55.28698], [-123.237015, 55.286865], [-123.239358, 55.302687], [-123.241803, 55.325374], [-123.241767, 55.327339], [-123.249736, 55.327018], [-123.251581, 55.341147], [-123.257391, 55.341403], [-123.257746, 55.345791], [-123.258195, 55.387205], [-123.257866, 55.395606], [-123.238274, 55.395848], [-123.178354, 55.396272], [-123.157052, 55.396833], [-123.093324, 55.396735], [-123.091851, 55.367866], [-123.04202, 55.368082], [-123.042185, 55.332311], [-123.012041, 55.332137], [-123.011478, 55.2924], [-123.043479, 55.292599], [-123.085806, 55.293348], [-123.082074, 55.239543], [-123.08301, 55.239195], [-123.084207, 55.218904], [-123.152719, 55.216093]], [[-123.025352, 55.005284], [-123.026003, 55.006974], [-123.031045, 55.007054], [-123.030081, 55.013675], [-123.024686, 55.013973], [-123.023986, 55.013039], [-123.02251, 55.013095], [-123.021173, 55.012231], [-123.019964, 55.010186], [-123.019822, 55.007067], [-123.015796, 55.004786], [-123.009017, 55.003656], [-123.007019, 55.005338], [-123.009365, 55.006141], [-123.004839, 55.010953], [-122.98775, 55.007914], [-122.979155, 55.006819], [-122.978974, 55.005469], [-122.977741, 55.00386], [-122.975177, 55.003431], [-122.972266, 55.003151], [-122.968404, 55.002386], [-122.957774, 54.998079], [-122.949815, 54.99542], [-122.942107, 54.991542], [-122.941777, 54.993662], [-122.932888, 54.998748], [-122.929677, 54.997833], [-122.922892, 54.996359], [-122.912016, 54.994501], [-122.90062, 54.991747], [-122.892719, 54.987237], [-122.88826, 54.985877], [-122.88428, 54.985863], [-122.878552, 54.984451], [-122.879027, 54.982814], [-122.88445, 54.976949], [-122.88827, 54.973151], [-122.886136, 54.969678], [-122.881973, 54.96814], [-122.871855, 54.965436], [-122.861944, 54.964774], [-122.854519, 54.964493], [-122.85087, 54.965167], [-122.847571, 54.964067], [-122.845841, 54.963015], [-122.847272, 54.962094], [-122.851861, 54.962275], [-122.853484, 54.963091], [-122.855063, 54.962752], [-122.856591, 54.962341], [-122.858731, 54.962182], [-122.859924, 54.962339], [-122.859803, 54.96167], [-122.857267, 54.960889], [-122.859298, 54.960284], [-122.863998, 54.959714], [-122.868077, 54.960005], [-122.870523, 54.95904], [-122.872055, 54.958349], [-122.87408, 54.957626], [-122.875023, 54.95802], [-122.883216, 54.956541], [-122.884107, 54.955523], [-122.880442, 54.955764], [-122.877553, 54.956018], [-122.875194, 54.955422], [-122.873016, 54.955398], [-122.875548, 54.953266], [-122.879558, 54.951165], [-122.888199, 54.949194], [-122.895737, 54.947945], [-122.900665, 54.947668], [-122.903862, 54.94634], [-122.903454, 54.945236], [-122.897453, 54.944349], [-122.893458, 54.945306], [-122.893507, 54.940729], [-122.895538, 54.937476], [-122.89491, 54.933982], [-122.891457, 54.932054], [-122.883176, 54.930996], [-122.881268, 54.930373], [-122.87815, 54.930502], [-122.876895, 54.930173], [-122.8742, 54.929625], [-122.871837, 54.927989], [-122.870092, 54.927644], [-122.866662, 54.926607], [-122.865691, 54.926794], [-122.86242, 54.92686], [-122.86156, 54.927891], [-122.859334, 54.928679], [-122.857724, 54.927964], [-122.858611, 54.926652], [-122.857024, 54.926479], [-122.855698, 54.925348], [-122.854897, 54.924167], [-122.85519, 54.923036], [-122.854752, 54.922457], [-122.854581, 54.921029], [-122.854694, 54.920118], [-122.857565, 54.917652], [-122.859034, 54.916765], [-122.860152, 54.914669], [-122.859889, 54.913763], [-122.859805, 54.912637], [-122.860023, 54.911529], [-122.861381, 54.909799], [-122.861709, 54.908438], [-122.861283, 54.906857], [-122.860013, 54.9056], [-122.858816, 54.903926], [-122.858709, 54.900209], [-122.860763, 54.897477], [-122.863221, 54.895805], [-122.865464, 54.894397], [-122.867654, 54.892807], [-122.869561, 54.890908], [-122.870954, 54.889693], [-122.875375, 54.886434], [-122.878081, 54.883172], [-122.880617, 54.877989], [-122.880118, 54.876826], [-122.879697, 54.875376], [-122.881295, 54.874756], [-122.884102, 54.873963], [-122.892189, 54.871094], [-122.896234, 54.868595], [-122.898269, 54.867951], [-122.898606, 54.86802], [-122.898705, 54.867933], [-122.899016, 54.86787], [-122.899298, 54.867367], [-122.899516, 54.867169], [-122.90078, 54.866372], [-122.90103, 54.866093], [-122.901078, 54.865302], [-122.900985, 54.865131], [-122.90066, 54.86496], [-122.901112, 54.864251], [-122.901099, 54.863891], [-122.900881, 54.863424], [-122.900478, 54.863109], [-122.900571, 54.862857], [-122.900847, 54.862658], [-122.901336, 54.862444], [-122.905129, 54.861455], [-122.905559, 54.86127], [-122.907048, 54.860283], [-122.907713, 54.859726], [-122.907979, 54.85934], [-122.908188, 54.859226], [-122.908152, 54.858971], [-122.908402, 54.858316], [-122.908809, 54.857543], [-122.909355, 54.856763], [-122.909856, 54.85625], [-122.910605, 54.855766], [-122.910676, 54.856376], [-122.910447, 54.856565], [-122.910039, 54.857832], [-122.909975, 54.858452], [-122.910068, 54.858633], [-122.910613, 54.858956], [-122.910769, 54.859222], [-122.910814, 54.859702], [-122.910578, 54.860182], [-122.910516, 54.860672], [-122.91064, 54.861212], [-122.910872, 54.861544], [-122.910871, 54.861679], [-122.910669, 54.861769], [-122.910357, 54.861606], [-122.909859, 54.861677], [-122.909687, 54.861831], [-122.909672, 54.862092], [-122.910043, 54.863143], [-122.909962, 54.864329], [-122.91002, 54.864808], [-122.910118, 54.864967], [-122.910265, 54.865036], [-122.910927, 54.865094], [-122.911152, 54.865057], [-122.911425, 54.865355], [-122.911392, 54.865895], [-122.91119, 54.866218], [-122.910845, 54.866469], [-122.91033, 54.866684], [-122.909318, 54.866961], [-122.909254, 54.867088], [-122.909316, 54.867267], [-122.909189, 54.867473], [-122.909239, 54.867599], [-122.909811, 54.867849], [-122.910562, 54.868374], [-122.910451, 54.868779], [-122.910044, 54.869263], [-122.909281, 54.869694], [-122.908158, 54.869899], [-122.906878, 54.870348], [-122.906582, 54.87059], [-122.906302, 54.870968], [-122.906269, 54.871381], [-122.906579, 54.871993], [-122.907012, 54.873845], [-122.906603, 54.874814], [-122.907987, 54.87663], [-122.908034, 54.877008], [-122.907814, 54.877367], [-122.907783, 54.877637], [-122.907844, 54.878067], [-122.908046, 54.878319], [-122.908433, 54.878554], [-122.909681, 54.87895], [-122.910366, 54.879275], [-122.910521, 54.879436], [-122.910708, 54.879903], [-122.910862, 54.880011], [-122.911954, 54.88029], [-122.912203, 54.880507], [-122.912699, 54.881352], [-122.91304, 54.88172], [-122.913072, 54.881964], [-122.912867, 54.88234], [-122.9129, 54.882467], [-122.91307, 54.882583], [-122.914535, 54.882854], [-122.915376, 54.883231], [-122.915967, 54.884023], [-122.917086, 54.884842], [-122.917103, 54.88503], [-122.916773, 54.885309], [-122.916618, 54.885606], [-122.916742, 54.886027], [-122.917771, 54.886531], [-122.919046, 54.88682], [-122.919841, 54.887216], [-122.920465, 54.887414], [-122.9204, 54.888322], [-122.921366, 54.889338], [-122.921706, 54.889941], [-122.922065, 54.890372], [-122.922172, 54.890777], [-122.922422, 54.891226], [-122.92295, 54.891567], [-122.923112, 54.891752], [-122.923182, 54.892278], [-122.92279, 54.894084], [-122.923553, 54.894461], [-122.924053, 54.894309], [-122.924365, 54.894363], [-122.924426, 54.89448], [-122.924223, 54.894947], [-122.924727, 54.895101], [-122.925547, 54.895146], [-122.925828, 54.895272], [-122.926014, 54.895532], [-122.925842, 54.896395], [-122.926089, 54.897474], [-122.925806, 54.898139], [-122.925136, 54.898812], [-122.924903, 54.898929], [-122.924356, 54.899109], [-122.923044, 54.899332], [-122.922795, 54.89943], [-122.922625, 54.89962], [-122.922544, 54.900258], [-122.921956, 54.901034], [-122.92236, 54.901447], [-122.922912, 54.901838], [-122.92732, 54.904055], [-122.927852, 54.904375], [-122.934127, 54.908876], [-122.942166, 54.907332], [-122.942947, 54.907593], [-122.943258, 54.907782], [-122.94332, 54.907916], [-122.944053, 54.908501], [-122.94416, 54.90921], [-122.94438, 54.909427], [-122.944845, 54.909679], [-122.945766, 54.910784], [-122.946076, 54.911314], [-122.946124, 54.911691], [-122.946044, 54.911845], [-122.945076, 54.912905], [-122.94506, 54.913193], [-122.945356, 54.913435], [-122.946043, 54.913633], [-122.946452, 54.913902], [-122.946914, 54.914452], [-122.947958, 54.916114], [-122.948176, 54.916257], [-122.948723, 54.91643], [-122.949142, 54.916745], [-122.949205, 54.917085], [-122.949127, 54.91731], [-122.949017, 54.917552], [-122.948469, 54.918155], [-122.948439, 54.918407], [-122.948578, 54.918622], [-122.949203, 54.919134], [-122.949746, 54.919845], [-122.950262, 54.920222], [-122.950668, 54.920393], [-122.951631, 54.92042], [-122.951868, 54.920339], [-122.952322, 54.919738], [-122.952774, 54.919549], [-122.953601, 54.919532], [-122.954788, 54.919784], [-122.955068, 54.919999], [-122.955231, 54.92058], [-122.95505, 54.921051], [-122.954145, 54.921859], [-122.953895, 54.922309], [-122.953894, 54.922597], [-122.954658, 54.923126], [-122.954939, 54.923235], [-122.955578, 54.923243], [-122.956239, 54.923332], [-122.95767, 54.923253], [-122.958293, 54.92338], [-122.958636, 54.923774], [-122.959024, 54.924881], [-122.959992, 54.92568], [-122.960273, 54.92604], [-122.96038, 54.926535], [-122.960209, 54.927173], [-122.960255, 54.927298], [-122.960645, 54.927289], [-122.961471, 54.927685], [-122.961644, 54.927623], [-122.9618, 54.927677], [-122.962049, 54.927667], [-122.962439, 54.92756], [-122.963111, 54.927506], [-122.964062, 54.927614], [-122.964998, 54.927902], [-122.966214, 54.928765], [-122.967931, 54.929457], [-122.968024, 54.930032], [-122.968164, 54.930275], [-122.969084, 54.931148], [-122.969334, 54.931803], [-122.969739, 54.93218], [-122.96999, 54.932297], [-122.970846, 54.932522], [-122.972174, 54.932513], [-122.972658, 54.932576], [-122.973298, 54.932757], [-122.973702, 54.933008], [-122.973764, 54.933629], [-122.97367, 54.934698], [-122.973421, 54.935111], [-122.973015, 54.935543], [-122.971641, 54.936377], [-122.971249, 54.936844], [-122.970874, 54.93786], [-122.97103, 54.938364], [-122.971421, 54.938804], [-122.971653, 54.938948], [-122.972169, 54.939182], [-122.973277, 54.939452], [-122.973824, 54.93974], [-122.974089, 54.941329], [-122.974508, 54.94186], [-122.974821, 54.942732], [-122.975477, 54.943451], [-122.975928, 54.944161], [-122.976365, 54.944458], [-122.977332, 54.944863], [-122.978112, 54.945276], [-122.979563, 54.945843], [-122.980439, 54.946364], [-122.981016, 54.946552], [-122.981437, 54.946795], [-122.981592, 54.946966], [-122.981687, 54.947281], [-122.98167, 54.948278], [-122.982325, 54.948952], [-122.982559, 54.949671], [-122.982951, 54.950382], [-122.98323, 54.950659], [-122.983653, 54.95092], [-122.984229, 54.951099], [-122.985168, 54.95119], [-122.985574, 54.95118], [-122.986026, 54.951109], [-122.986338, 54.950957], [-122.98665, 54.950723], [-122.986728, 54.950399], [-122.987071, 54.950354], [-122.987697, 54.950517], [-122.987993, 54.950813], [-122.988601, 54.950984], [-122.990631, 54.951028], [-122.992942, 54.951334], [-122.994098, 54.952054], [-122.99455, 54.952475], [-122.995566, 54.952754], [-122.996737, 54.953257], [-122.997175, 54.953572], [-122.997485, 54.953995], [-122.997517, 54.954399], [-122.997346, 54.954587], [-122.996831, 54.954839], [-122.996782, 54.955171], [-122.993424, 54.955196], [-122.992161, 54.955051], [-122.991249, 54.955058], [-122.990724, 54.955108], [-122.989199, 54.955398], [-122.988557, 54.955694], [-122.987502, 54.955852], [-122.985805, 54.955812], [-122.985157, 54.955978], [-122.984069, 54.956904], [-122.983129, 54.957126], [-122.986094, 54.959774], [-122.988041, 54.961878], [-122.989694, 54.963974], [-122.990512, 54.966094], [-123.00334, 54.964545], [-123.006296, 54.96649], [-123.007027, 54.967037], [-123.013928, 54.972758], [-123.014705, 54.973313], [-123.015914, 54.973909], [-123.01668, 54.975432], [-123.01937, 54.975924], [-123.021731, 54.975117], [-123.022042, 54.975155], [-123.02154, 54.977895], [-123.027646, 54.981392], [-123.027964, 54.986862], [-123.02937, 54.986889], [-123.029916, 54.997023], [-123.036262, 54.996938], [-123.035687, 54.997969], [-123.035251, 54.999326], [-123.034798, 55.0], [-123.023219, 55.000183], [-123.020339, 55.002516], [-123.022441, 55.003628], [-123.025352, 55.005284]], [[-123.017897, 54.944567], [-123.024002, 54.946891], [-123.02336, 54.947613], [-123.02374, 54.948627], [-123.025386, 54.948981], [-123.038388, 54.948281], [-123.038454, 54.94813], [-123.038704, 54.947949], [-123.039234, 54.947778], [-123.040014, 54.947824], [-123.04067, 54.94793], [-123.04128, 54.947913], [-123.041716, 54.947626], [-123.041809, 54.947094], [-123.042464, 54.946888], [-123.043307, 54.947005], [-123.043964, 54.946905], [-123.044479, 54.946914], [-123.044681, 54.946986], [-123.044807, 54.947147], [-123.044994, 54.947228], [-123.045196, 54.947183], [-123.045337, 54.946995], [-123.045696, 54.946797], [-123.046586, 54.946761], [-123.047086, 54.946877], [-123.047445, 54.946877], [-123.04796, 54.946626], [-123.048333, 54.946347], [-123.048599, 54.94587], [-123.048691, 54.945214], [-123.049379, 54.944341], [-123.04961, 54.943839], [-123.050314, 54.943399], [-123.051733, 54.943326], [-123.052232, 54.943118], [-123.052624, 54.943218], [-123.052937, 54.943441], [-123.053483, 54.943487], [-123.054324, 54.943208], [-123.054903, 54.943154], [-123.055137, 54.942839], [-123.055902, 54.942595], [-123.056524, 54.94256], [-123.057135, 54.94264], [-123.07811, 54.948028], [-123.078113, 54.949702], [-123.077276, 54.950003], [-123.072433, 54.952959], [-123.070553, 54.956931], [-123.070015, 54.957611], [-123.069872, 54.958575], [-123.068766, 54.959832], [-123.067259, 54.963034], [-123.06682, 54.964561], [-123.066308, 54.965184], [-123.063972, 54.967229], [-123.064354, 54.968846], [-123.063662, 54.969677], [-123.063425, 54.970804], [-123.062532, 54.971925], [-123.061357, 54.972735], [-123.059785, 54.974247], [-123.059242, 54.974931], [-123.057905, 54.975861], [-123.057427, 54.976357], [-123.057259, 54.97681], [-123.057346, 54.977729], [-123.056912, 54.978519], [-123.05605, 54.979337], [-123.055126, 54.980556], [-123.052665, 54.98294], [-123.052908, 54.993769], [-123.052717, 54.994844], [-123.040362, 54.995082], [-123.040213, 54.991651], [-123.040839, 54.990994], [-123.040822, 54.990617], [-123.04065, 54.990329], [-123.040713, 54.989618], [-123.040508, 54.989449], [-123.040494, 54.989224], [-123.040806, 54.989017], [-123.041025, 54.98864], [-123.041431, 54.988613], [-123.042775, 54.988674], [-123.042962, 54.988585], [-123.042931, 54.988468], [-123.042523, 54.988163], [-123.04193, 54.988163], [-123.041774, 54.988092], [-123.041258, 54.987588], [-123.041009, 54.987444], [-123.040945, 54.987193], [-123.041085, 54.98712], [-123.04168, 54.987175], [-123.042352, 54.987354], [-123.04293, 54.987596], [-123.043117, 54.98756], [-123.043117, 54.987371], [-123.042945, 54.986994], [-123.042413, 54.986536], [-123.042037, 54.985907], [-123.041989, 54.985413], [-123.041785, 54.985171], [-123.041614, 54.984694], [-123.04166, 54.984263], [-123.041409, 54.983957], [-123.040799, 54.982735], [-123.040628, 54.982097], [-123.039813, 54.981622], [-123.039454, 54.981236], [-123.039391, 54.980481], [-123.039607, 54.979501], [-123.039953, 54.979034], [-123.040544, 54.978377], [-123.041873, 54.977308], [-123.042419, 54.976687], [-123.042307, 54.976103], [-123.041963, 54.975942], [-123.041324, 54.975492], [-123.040699, 54.974647], [-123.040479, 54.974055], [-123.040367, 54.972994], [-123.040664, 54.972005], [-123.041334, 54.970748], [-123.041505, 54.970154], [-123.04244, 54.968851], [-123.042691, 54.968131], [-123.042719, 54.966749], [-123.042522, 54.965533], [-123.043463, 54.958255], [-123.042074, 54.957589], [-123.037928, 54.956234], [-123.035173, 54.955057], [-123.03184, 54.954087], [-123.030737, 54.953852], [-123.030579, 54.952644], [-123.028574, 54.951231], [-123.027714, 54.95134], [-123.027278, 54.951215], [-123.027026, 54.951206], [-123.026308, 54.951404], [-123.025981, 54.951404], [-123.025419, 54.951296], [-123.024357, 54.95135], [-123.023967, 54.951423], [-123.023594, 54.951396], [-123.022935, 54.951233], [-123.02228, 54.951252], [-123.021657, 54.951477], [-123.020846, 54.952177], [-123.020564, 54.952357], [-123.020252, 54.952457], [-123.019283, 54.952448], [-123.018517, 54.952277], [-123.017613, 54.952205], [-123.0146, 54.95279], [-123.013646, 54.952807], [-123.013241, 54.952744], [-123.012709, 54.952494], [-123.012413, 54.952296], [-123.012273, 54.951622], [-123.012334, 54.951514], [-123.012616, 54.951351], [-123.012601, 54.951064], [-123.012256, 54.95074], [-123.012147, 54.950417], [-123.011959, 54.950346], [-123.011242, 54.950363], [-123.010805, 54.949977], [-123.010025, 54.949887], [-123.009915, 54.949825], [-123.009837, 54.949456], [-123.009367, 54.949366], [-123.009353, 54.949034], [-123.009915, 54.948836], [-123.009946, 54.94844], [-123.00979, 54.947641], [-123.009306, 54.947525], [-123.009476, 54.947317], [-123.009695, 54.947191], [-123.009914, 54.947183], [-123.010397, 54.94702], [-123.011287, 54.947039], [-123.012677, 54.947704], [-123.013115, 54.948036], [-123.013662, 54.948027], [-123.014348, 54.94764], [-123.016361, 54.94622], [-123.017267, 54.945402], [-123.017897, 54.944567]]]]}, "properties": {"name": "Fraser-Fort George G", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fraser-Fort George G", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953050", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.643679, 54.012136], [-122.643607, 54.012133], [-122.644002, 54.007152], [-122.643776, 54.005502], [-122.626814, 54.005986], [-122.624564, 54.006265], [-122.621237, 54.005566], [-122.615336, 54.005795], [-122.607694, 54.006], [-122.607156, 54.015911], [-122.607778, 54.027488], [-122.615131, 54.027523], [-122.643164, 54.027427], [-122.643679, 54.012136]]]]}, "properties": {"name": "Fort George 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "Fort George 2", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953801", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.040508, 54.989449], [-123.040713, 54.989618], [-123.04065, 54.990329], [-123.040822, 54.990617], [-123.040839, 54.990994], [-123.040213, 54.991651], [-123.040362, 54.995082], [-123.052717, 54.994844], [-123.052908, 54.993769], [-123.052665, 54.98294], [-123.055126, 54.980556], [-123.05605, 54.979337], [-123.056912, 54.978519], [-123.057346, 54.977729], [-123.057259, 54.97681], [-123.057427, 54.976357], [-123.057905, 54.975861], [-123.059242, 54.974931], [-123.059785, 54.974247], [-123.061357, 54.972735], [-123.062532, 54.971925], [-123.063425, 54.970804], [-123.063662, 54.969677], [-123.064354, 54.968846], [-123.063972, 54.967229], [-123.066308, 54.965184], [-123.06682, 54.964561], [-123.067259, 54.963034], [-123.068766, 54.959832], [-123.069872, 54.958575], [-123.070015, 54.957611], [-123.070553, 54.956931], [-123.072433, 54.952959], [-123.077276, 54.950003], [-123.078113, 54.949702], [-123.07811, 54.948028], [-123.057135, 54.94264], [-123.056524, 54.94256], [-123.055902, 54.942595], [-123.055137, 54.942839], [-123.054903, 54.943154], [-123.054324, 54.943208], [-123.053483, 54.943487], [-123.052937, 54.943441], [-123.052624, 54.943218], [-123.052232, 54.943118], [-123.051733, 54.943326], [-123.050314, 54.943399], [-123.04961, 54.943839], [-123.049379, 54.944341], [-123.048691, 54.945214], [-123.048599, 54.94587], [-123.048333, 54.946347], [-123.04796, 54.946626], [-123.047445, 54.946877], [-123.047086, 54.946877], [-123.046586, 54.946761], [-123.045696, 54.946797], [-123.045337, 54.946995], [-123.045196, 54.947183], [-123.044994, 54.947228], [-123.044807, 54.947147], [-123.044681, 54.946986], [-123.044479, 54.946914], [-123.043964, 54.946905], [-123.043307, 54.947005], [-123.042464, 54.946888], [-123.041809, 54.947094], [-123.041716, 54.947626], [-123.04128, 54.947913], [-123.04067, 54.94793], [-123.040014, 54.947824], [-123.039234, 54.947778], [-123.038704, 54.947949], [-123.038454, 54.94813], [-123.038388, 54.948281], [-123.025386, 54.948981], [-123.02374, 54.948627], [-123.02336, 54.947613], [-123.024002, 54.946891], [-123.017897, 54.944567], [-123.017267, 54.945402], [-123.016361, 54.94622], [-123.014348, 54.94764], [-123.013662, 54.948027], [-123.013115, 54.948036], [-123.012677, 54.947704], [-123.011287, 54.947039], [-123.010397, 54.94702], [-123.009914, 54.947183], [-123.009695, 54.947191], [-123.009476, 54.947317], [-123.009306, 54.947525], [-123.00979, 54.947641], [-123.009946, 54.94844], [-123.009915, 54.948836], [-123.009353, 54.949034], [-123.009367, 54.949366], [-123.009837, 54.949456], [-123.009915, 54.949825], [-123.010025, 54.949887], [-123.010805, 54.949977], [-123.011242, 54.950363], [-123.011959, 54.950346], [-123.012147, 54.950417], [-123.012256, 54.95074], [-123.012601, 54.951064], [-123.012632, 54.951272], [-123.012273, 54.951622], [-123.012413, 54.952296], [-123.013241, 54.952744], [-123.013646, 54.952807], [-123.0146, 54.95279], [-123.017613, 54.952205], [-123.018517, 54.952277], [-123.019283, 54.952448], [-123.020252, 54.952457], [-123.020564, 54.952357], [-123.020846, 54.952177], [-123.021657, 54.951477], [-123.02228, 54.951252], [-123.022935, 54.951233], [-123.023594, 54.951396], [-123.023967, 54.951423], [-123.024357, 54.95135], [-123.025419, 54.951296], [-123.025981, 54.951404], [-123.026308, 54.951404], [-123.027026, 54.951206], [-123.027278, 54.951215], [-123.027714, 54.95134], [-123.028574, 54.951231], [-123.030579, 54.952644], [-123.030737, 54.953852], [-123.03184, 54.954087], [-123.035173, 54.955057], [-123.037928, 54.956234], [-123.042074, 54.957589], [-123.043463, 54.958255], [-123.042522, 54.965533], [-123.042719, 54.966749], [-123.042691, 54.968131], [-123.04244, 54.968851], [-123.041505, 54.970154], [-123.041334, 54.970748], [-123.040664, 54.972005], [-123.040367, 54.972994], [-123.040479, 54.974055], [-123.040699, 54.974647], [-123.041324, 54.975492], [-123.041963, 54.975942], [-123.042307, 54.976103], [-123.042419, 54.976687], [-123.041873, 54.977308], [-123.040544, 54.978377], [-123.039953, 54.979034], [-123.039607, 54.979501], [-123.039391, 54.980481], [-123.039454, 54.981236], [-123.039813, 54.981622], [-123.040628, 54.982097], [-123.040799, 54.982735], [-123.041409, 54.983957], [-123.04166, 54.984263], [-123.041614, 54.984694], [-123.041785, 54.985171], [-123.041989, 54.985413], [-123.042037, 54.985907], [-123.042413, 54.986536], [-123.042711, 54.98676], [-123.043069, 54.987183], [-123.043117, 54.98756], [-123.04293, 54.987596], [-123.042352, 54.987354], [-123.04168, 54.987175], [-123.041303, 54.98712], [-123.04099, 54.987139], [-123.041009, 54.987444], [-123.041258, 54.987588], [-123.041774, 54.988092], [-123.04193, 54.988163], [-123.042523, 54.988163], [-123.042931, 54.988468], [-123.042962, 54.988585], [-123.042775, 54.988674], [-123.041431, 54.988613], [-123.041025, 54.98864], [-123.040806, 54.989017], [-123.040494, 54.989224], [-123.040508, 54.989449]]]]}, "properties": {"name": "McLeod Lake 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "McLeod Lake 1", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953802", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.015796, 55.004786], [-123.019822, 55.007067], [-123.019964, 55.010186], [-123.021173, 55.012231], [-123.02251, 55.013095], [-123.023986, 55.013039], [-123.024686, 55.013973], [-123.030081, 55.013675], [-123.031045, 55.007054], [-123.026003, 55.006974], [-123.025352, 55.005284], [-123.022441, 55.003628], [-123.020339, 55.002516], [-123.023219, 55.000183], [-123.034798, 55.0], [-123.035251, 54.999326], [-123.035687, 54.997969], [-123.036262, 54.996938], [-123.029916, 54.997023], [-123.02937, 54.986889], [-123.027964, 54.986862], [-123.027646, 54.981392], [-123.02154, 54.977895], [-123.022042, 54.975155], [-123.021731, 54.975117], [-123.01937, 54.975924], [-123.01668, 54.975432], [-123.015914, 54.973909], [-123.014705, 54.973313], [-123.013928, 54.972758], [-123.007027, 54.967037], [-123.006296, 54.96649], [-123.00334, 54.964545], [-122.990512, 54.966094], [-122.989694, 54.963974], [-122.988041, 54.961878], [-122.986094, 54.959774], [-122.983129, 54.957126], [-122.984069, 54.956904], [-122.985157, 54.955978], [-122.985805, 54.955812], [-122.987502, 54.955852], [-122.988557, 54.955694], [-122.989199, 54.955398], [-122.990724, 54.955108], [-122.991249, 54.955058], [-122.992161, 54.955051], [-122.993424, 54.955196], [-122.996782, 54.955171], [-122.996831, 54.954839], [-122.997346, 54.954587], [-122.997517, 54.954399], [-122.997485, 54.953995], [-122.997175, 54.953572], [-122.996737, 54.953257], [-122.995566, 54.952754], [-122.99455, 54.952475], [-122.994098, 54.952054], [-122.992942, 54.951334], [-122.990631, 54.951028], [-122.988601, 54.950984], [-122.987993, 54.950813], [-122.987697, 54.950517], [-122.987071, 54.950354], [-122.986728, 54.950399], [-122.98665, 54.950723], [-122.986338, 54.950957], [-122.986026, 54.951109], [-122.985574, 54.95118], [-122.985168, 54.95119], [-122.984229, 54.951099], [-122.983653, 54.95092], [-122.98323, 54.950659], [-122.982951, 54.950382], [-122.982559, 54.949671], [-122.982325, 54.948952], [-122.98167, 54.948278], [-122.981687, 54.947281], [-122.981592, 54.946966], [-122.981437, 54.946795], [-122.981016, 54.946552], [-122.980439, 54.946364], [-122.979563, 54.945843], [-122.978112, 54.945276], [-122.977332, 54.944863], [-122.976365, 54.944458], [-122.975928, 54.944161], [-122.975477, 54.943451], [-122.974821, 54.942732], [-122.974508, 54.94186], [-122.974089, 54.941329], [-122.973824, 54.93974], [-122.973277, 54.939452], [-122.972169, 54.939182], [-122.971653, 54.938948], [-122.971421, 54.938804], [-122.97103, 54.938364], [-122.970874, 54.93786], [-122.971249, 54.936844], [-122.971641, 54.936377], [-122.973015, 54.935543], [-122.973421, 54.935111], [-122.97367, 54.934698], [-122.973764, 54.933629], [-122.973702, 54.933008], [-122.973298, 54.932757], [-122.972658, 54.932576], [-122.972174, 54.932513], [-122.970846, 54.932522], [-122.96999, 54.932297], [-122.969739, 54.93218], [-122.969334, 54.931803], [-122.969084, 54.931148], [-122.968164, 54.930275], [-122.968024, 54.930032], [-122.967931, 54.929457], [-122.966214, 54.928765], [-122.964998, 54.927902], [-122.964062, 54.927614], [-122.963111, 54.927506], [-122.962439, 54.92756], [-122.962049, 54.927667], [-122.9618, 54.927677], [-122.961644, 54.927623], [-122.961471, 54.927685], [-122.960645, 54.927289], [-122.960255, 54.927298], [-122.960209, 54.927173], [-122.96038, 54.926535], [-122.960273, 54.92604], [-122.959992, 54.92568], [-122.959024, 54.924881], [-122.958636, 54.923774], [-122.958293, 54.92338], [-122.95767, 54.923253], [-122.956239, 54.923332], [-122.955578, 54.923243], [-122.954939, 54.923235], [-122.954658, 54.923126], [-122.953894, 54.922597], [-122.953895, 54.922309], [-122.954145, 54.921859], [-122.95505, 54.921051], [-122.955231, 54.92058], [-122.955068, 54.919999], [-122.954788, 54.919784], [-122.953601, 54.919532], [-122.952774, 54.919549], [-122.952322, 54.919738], [-122.951868, 54.920339], [-122.951631, 54.92042], [-122.950668, 54.920393], [-122.950262, 54.920222], [-122.949746, 54.919845], [-122.949203, 54.919134], [-122.948578, 54.918622], [-122.948439, 54.918407], [-122.948469, 54.918155], [-122.949017, 54.917552], [-122.949127, 54.91731], [-122.949205, 54.917085], [-122.949142, 54.916745], [-122.948723, 54.91643], [-122.948176, 54.916257], [-122.947958, 54.916114], [-122.946914, 54.914452], [-122.946452, 54.913902], [-122.946043, 54.913633], [-122.945356, 54.913435], [-122.94506, 54.913193], [-122.945076, 54.912905], [-122.946044, 54.911845], [-122.946124, 54.911691], [-122.946076, 54.911314], [-122.945766, 54.910784], [-122.944845, 54.909679], [-122.94438, 54.909427], [-122.94416, 54.90921], [-122.944053, 54.908501], [-122.94332, 54.907916], [-122.943258, 54.907782], [-122.942947, 54.907593], [-122.942166, 54.907332], [-122.934127, 54.908876], [-122.927852, 54.904375], [-122.92732, 54.904055], [-122.922912, 54.901838], [-122.92236, 54.901447], [-122.921956, 54.901034], [-122.922544, 54.900258], [-122.922625, 54.89962], [-122.922795, 54.89943], [-122.923044, 54.899332], [-122.924356, 54.899109], [-122.924903, 54.898929], [-122.925136, 54.898812], [-122.925806, 54.898139], [-122.926089, 54.897474], [-122.925842, 54.896395], [-122.926014, 54.895532], [-122.925828, 54.895272], [-122.925547, 54.895146], [-122.924727, 54.895101], [-122.924223, 54.894947], [-122.924426, 54.89448], [-122.924365, 54.894363], [-122.924053, 54.894309], [-122.923553, 54.894461], [-122.92279, 54.894084], [-122.923182, 54.892278], [-122.923112, 54.891752], [-122.92295, 54.891567], [-122.922422, 54.891226], [-122.922172, 54.890777], [-122.922065, 54.890372], [-122.921706, 54.889941], [-122.921366, 54.889338], [-122.9204, 54.888322], [-122.920465, 54.887414], [-122.919841, 54.887216], [-122.919046, 54.88682], [-122.917771, 54.886531], [-122.916742, 54.886027], [-122.916618, 54.885606], [-122.916773, 54.885309], [-122.917103, 54.88503], [-122.917086, 54.884842], [-122.915967, 54.884023], [-122.915376, 54.883231], [-122.914535, 54.882854], [-122.91307, 54.882583], [-122.9129, 54.882467], [-122.912867, 54.88234], [-122.913072, 54.881964], [-122.91304, 54.88172], [-122.912699, 54.881352], [-122.912203, 54.880507], [-122.911954, 54.88029], [-122.910862, 54.880011], [-122.910708, 54.879903], [-122.910521, 54.879436], [-122.910366, 54.879275], [-122.909681, 54.87895], [-122.908433, 54.878554], [-122.908046, 54.878319], [-122.907844, 54.878067], [-122.907783, 54.877637], [-122.907814, 54.877367], [-122.908034, 54.877008], [-122.907987, 54.87663], [-122.906603, 54.874814], [-122.907012, 54.873845], [-122.906579, 54.871993], [-122.906269, 54.871381], [-122.906302, 54.870968], [-122.906582, 54.87059], [-122.906878, 54.870348], [-122.908158, 54.869899], [-122.909281, 54.869694], [-122.910044, 54.869263], [-122.910451, 54.868779], [-122.910562, 54.868374], [-122.909811, 54.867849], [-122.909239, 54.867599], [-122.909189, 54.867473], [-122.909316, 54.867267], [-122.909254, 54.867088], [-122.909318, 54.866961], [-122.91033, 54.866684], [-122.910845, 54.866469], [-122.91119, 54.866218], [-122.911392, 54.865895], [-122.911425, 54.865355], [-122.911152, 54.865057], [-122.910927, 54.865094], [-122.910265, 54.865036], [-122.910118, 54.864967], [-122.91002, 54.864808], [-122.909962, 54.864329], [-122.910043, 54.863143], [-122.909672, 54.862092], [-122.909687, 54.861831], [-122.909859, 54.861677], [-122.910357, 54.861606], [-122.910669, 54.861769], [-122.910871, 54.861679], [-122.910872, 54.861544], [-122.91064, 54.861212], [-122.910516, 54.860672], [-122.910578, 54.860182], [-122.910814, 54.859702], [-122.910769, 54.859222], [-122.910613, 54.858956], [-122.910068, 54.858633], [-122.909975, 54.858452], [-122.910039, 54.857832], [-122.910447, 54.856565], [-122.910676, 54.856376], [-122.910605, 54.855766], [-122.909856, 54.85625], [-122.909355, 54.856763], [-122.908809, 54.857543], [-122.908402, 54.858316], [-122.908152, 54.858971], [-122.908188, 54.859226], [-122.907979, 54.85934], [-122.907713, 54.859726], [-122.907048, 54.860283], [-122.905559, 54.86127], [-122.905129, 54.861455], [-122.901336, 54.862444], [-122.900847, 54.862658], [-122.900571, 54.862857], [-122.900478, 54.863109], [-122.900881, 54.863424], [-122.901099, 54.863891], [-122.901112, 54.864251], [-122.90066, 54.86496], [-122.900985, 54.865131], [-122.901078, 54.865302], [-122.90103, 54.866093], [-122.90078, 54.866372], [-122.899516, 54.867169], [-122.899298, 54.867367], [-122.899016, 54.86787], [-122.898705, 54.867933], [-122.898606, 54.86802], [-122.898269, 54.867951], [-122.896234, 54.868595], [-122.892189, 54.871094], [-122.884102, 54.873963], [-122.881295, 54.874756], [-122.879697, 54.875376], [-122.880118, 54.876826], [-122.880617, 54.877989], [-122.878081, 54.883172], [-122.875375, 54.886434], [-122.870954, 54.889693], [-122.869561, 54.890908], [-122.867654, 54.892807], [-122.865464, 54.894397], [-122.863221, 54.895805], [-122.860763, 54.897477], [-122.858709, 54.900209], [-122.858816, 54.903926], [-122.860013, 54.9056], [-122.861283, 54.906857], [-122.861709, 54.908438], [-122.861381, 54.909799], [-122.860023, 54.911529], [-122.859805, 54.912637], [-122.859889, 54.913763], [-122.860152, 54.914669], [-122.859034, 54.916765], [-122.857565, 54.917652], [-122.854694, 54.920118], [-122.854581, 54.921029], [-122.854752, 54.922457], [-122.85519, 54.923036], [-122.854897, 54.924167], [-122.855698, 54.925348], [-122.857024, 54.926479], [-122.858611, 54.926652], [-122.857724, 54.927964], [-122.859334, 54.928679], [-122.86156, 54.927891], [-122.86242, 54.92686], [-122.865691, 54.926794], [-122.866662, 54.926607], [-122.870092, 54.927644], [-122.871837, 54.927989], [-122.8742, 54.929625], [-122.876895, 54.930173], [-122.87815, 54.930502], [-122.881268, 54.930373], [-122.883176, 54.930996], [-122.891457, 54.932054], [-122.89491, 54.933982], [-122.895538, 54.937476], [-122.893507, 54.940729], [-122.893458, 54.945306], [-122.897453, 54.944349], [-122.903454, 54.945236], [-122.903862, 54.94634], [-122.900665, 54.947668], [-122.895737, 54.947945], [-122.888199, 54.949194], [-122.879558, 54.951165], [-122.875548, 54.953266], [-122.873016, 54.955398], [-122.875194, 54.955422], [-122.877553, 54.956018], [-122.880442, 54.955764], [-122.884107, 54.955523], [-122.883216, 54.956541], [-122.875023, 54.95802], [-122.87408, 54.957626], [-122.872055, 54.958349], [-122.870523, 54.95904], [-122.868077, 54.960005], [-122.863998, 54.959714], [-122.859298, 54.960284], [-122.857267, 54.960889], [-122.859803, 54.96167], [-122.859924, 54.962339], [-122.858731, 54.962182], [-122.856591, 54.962341], [-122.855063, 54.962752], [-122.853484, 54.963091], [-122.851861, 54.962275], [-122.847272, 54.962094], [-122.845841, 54.963015], [-122.847571, 54.964067], [-122.85087, 54.965167], [-122.854519, 54.964493], [-122.861944, 54.964774], [-122.871855, 54.965436], [-122.881973, 54.96814], [-122.886136, 54.969678], [-122.88827, 54.973151], [-122.88445, 54.976949], [-122.879027, 54.982814], [-122.878552, 54.984451], [-122.88428, 54.985863], [-122.88826, 54.985877], [-122.892719, 54.987237], [-122.90062, 54.991747], [-122.912016, 54.994501], [-122.922892, 54.996359], [-122.929677, 54.997833], [-122.932888, 54.998748], [-122.941777, 54.993662], [-122.942107, 54.991542], [-122.949815, 54.99542], [-122.957774, 54.998079], [-122.968404, 55.002386], [-122.972266, 55.003151], [-122.975177, 55.003431], [-122.977741, 55.00386], [-122.978974, 55.005469], [-122.979155, 55.006819], [-122.98775, 55.007914], [-123.004839, 55.010953], [-123.009365, 55.006141], [-123.007019, 55.005338], [-123.009017, 55.003656], [-123.015796, 55.004786]]]]}, "properties": {"name": "McCleod Lake 5", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Cariboo", "census_subdivision": "McCleod Lake 5", "economic_region_id": "5950", "census_division_code": "5953", "census_subdivision_code": "5953803", "regional_district_aka_census_division": "Fraser-Fort George"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.301737, 55.246258], [-121.49252, 55.245617], [-121.492476, 55.240623], [-121.493562, 55.217934], [-121.493382, 55.203916], [-121.497562, 55.185086], [-121.513083, 55.185417], [-121.533762, 55.185775], [-121.549085, 55.185664], [-121.548979, 55.175936], [-121.599751, 55.17677], [-121.599146, 55.186153], [-121.624613, 55.186208], [-121.627812, 55.136237], [-121.599891, 55.135609], [-121.526066, 55.134702], [-121.525022, 55.133885], [-121.525472, 55.126765], [-121.528898, 55.0844], [-121.519841, 55.084238], [-121.52177, 55.072854], [-121.488685, 55.052645], [-121.441448, 55.024263], [-121.396266, 54.997227], [-121.349635, 54.96915], [-121.301068, 54.940047], [-121.262997, 54.916421], [-121.228113, 54.894839], [-121.165017, 54.856009], [-121.119102, 54.82716], [-121.083942, 54.804926], [-121.079403, 54.801943], [-121.033177, 54.815377], [-121.018844, 54.819432], [-120.981992, 54.830222], [-120.881273, 54.858329], [-120.878142, 54.859267], [-120.862634, 54.945793], [-120.855296, 54.988589], [-120.854595, 54.992119], [-120.847461, 55.031812], [-120.843186, 55.053043], [-120.837843, 55.080496], [-120.826785, 55.137956], [-120.819075, 55.180252], [-120.811686, 55.202803], [-120.846074, 55.201561], [-120.845636, 55.202099], [-120.852564, 55.201858], [-120.882035, 55.201545], [-120.933189, 55.20109], [-120.951481, 55.201038], [-120.951059, 55.201528], [-120.951194, 55.202127], [-121.006075, 55.202456], [-121.032778, 55.202165], [-121.08088, 55.201861], [-121.129182, 55.201327], [-121.155237, 55.201103], [-121.153221, 55.22247], [-121.151095, 55.242709], [-121.190773, 55.242046], [-121.254335, 55.240813], [-121.301737, 55.246258]]]]}, "properties": {"name": "Tumbler Ridge", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Tumbler Ridge", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955003", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.111711, 55.722898], [-120.111907, 55.72321], [-120.124292, 55.723231], [-120.124805, 55.723145], [-120.146809, 55.723153], [-120.146762, 55.715862], [-120.146681, 55.715779], [-120.146775, 55.714711], [-120.146736, 55.713272], [-120.146556, 55.713124], [-120.145645, 55.712734], [-120.142064, 55.71137], [-120.140921, 55.710725], [-120.140584, 55.710763], [-120.140787, 55.711328], [-120.139823, 55.711362], [-120.139407, 55.710914], [-120.138599, 55.710964], [-120.138281, 55.711076], [-120.138519, 55.711408], [-120.138184, 55.71142], [-120.137692, 55.711613], [-120.137053, 55.711193], [-120.135899, 55.71196], [-120.135273, 55.712271], [-120.134412, 55.712303], [-120.134068, 55.712738], [-120.132899, 55.712795], [-120.132007, 55.712522], [-120.132015, 55.712833], [-120.131778, 55.713154], [-120.131293, 55.713542], [-120.130755, 55.713387], [-120.129993, 55.714319], [-120.1304, 55.714324], [-120.129674, 55.715196], [-120.129125, 55.715489], [-120.128808, 55.715555], [-120.128441, 55.715289], [-120.128112, 55.714574], [-120.127697, 55.714622], [-120.126838, 55.713112], [-120.126332, 55.713179], [-120.124779, 55.71376], [-120.12406, 55.713826], [-120.123047, 55.713662], [-120.121759, 55.713225], [-120.121323, 55.713695], [-120.120504, 55.714215], [-120.120165, 55.714513], [-120.119748, 55.715195], [-120.119523, 55.71582], [-120.125158, 55.715818], [-120.125065, 55.717707], [-120.124604, 55.718178], [-120.123355, 55.717805], [-120.12307, 55.717773], [-120.12255, 55.717907], [-120.12183, 55.71793], [-120.120232, 55.717532], [-120.120164, 55.717247], [-120.11937, 55.717244], [-120.119242, 55.717502], [-120.118938, 55.717765], [-120.118366, 55.717958], [-120.117553, 55.717966], [-120.115912, 55.717748], [-120.115292, 55.717743], [-120.115057, 55.717908], [-120.114983, 55.718059], [-120.115102, 55.718394], [-120.116216, 55.719257], [-120.116631, 55.719671], [-120.1175, 55.720635], [-120.117592, 55.720889], [-120.117532, 55.721058], [-120.117344, 55.721225], [-120.116842, 55.721339], [-120.116253, 55.721333], [-120.114692, 55.721117], [-120.11388, 55.721117], [-120.112482, 55.721505], [-120.111952, 55.721763], [-120.111797, 55.721957], [-120.111711, 55.722898]]]]}, "properties": {"name": "Pouce Coupe", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Pouce Coupe", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955005", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.689783, 55.751668], [-121.689325, 55.751147], [-121.688742, 55.751317], [-121.688483, 55.751458], [-121.688259, 55.751457], [-121.687818, 55.751298], [-121.687341, 55.751338], [-121.687078, 55.751552], [-121.686885, 55.751612], [-121.686362, 55.751499], [-121.685989, 55.751234], [-121.685746, 55.75089], [-121.68557, 55.750421], [-121.684454, 55.749933], [-121.683754, 55.74944], [-121.683526, 55.749132], [-121.683533, 55.748907], [-121.683619, 55.748702], [-121.683977, 55.74849], [-121.683928, 55.747554], [-121.684126, 55.747413], [-121.684076, 55.746999], [-121.685341, 55.746312], [-121.687072, 55.745566], [-121.687397, 55.745354], [-121.687487, 55.745013], [-121.688006, 55.744786], [-121.688057, 55.744679], [-121.688053, 55.744345], [-121.687776, 55.744011], [-121.687666, 55.743736], [-121.691803, 55.744348], [-121.695393, 55.743895], [-121.697383, 55.742468], [-121.699531, 55.740592], [-121.699384, 55.739986], [-121.697227, 55.737029], [-121.695216, 55.73468], [-121.693745, 55.732421], [-121.691773, 55.728278], [-121.691224, 55.72665], [-121.691584, 55.7255], [-121.692312, 55.724668], [-121.691973, 55.723778], [-121.691881, 55.723076], [-121.692713, 55.721959], [-121.694962, 55.72033], [-121.695162, 55.719843], [-121.694297, 55.720022], [-121.691761, 55.721139], [-121.690857, 55.721163], [-121.69017, 55.720466], [-121.689976, 55.720116], [-121.68901, 55.720075], [-121.687408, 55.718909], [-121.682321, 55.715901], [-121.681753, 55.71517], [-121.680712, 55.714575], [-121.677387, 55.711736], [-121.677408, 55.710912], [-121.67678, 55.710894], [-121.672258, 55.707154], [-121.668919, 55.704374], [-121.666641, 55.70198], [-121.66528, 55.700826], [-121.665087, 55.700393], [-121.66491, 55.693517], [-121.664709, 55.691159], [-121.663498, 55.686819], [-121.643821, 55.693129], [-121.645151, 55.675396], [-121.645019, 55.673021], [-121.643921, 55.673014], [-121.642505, 55.672797], [-121.639742, 55.672068], [-121.644671, 55.676833], [-121.644298, 55.677013], [-121.643936, 55.676946], [-121.643576, 55.676735], [-121.643325, 55.67667], [-121.643134, 55.676667], [-121.642925, 55.676764], [-121.642904, 55.676916], [-121.643258, 55.677208], [-121.643438, 55.67756], [-121.643413, 55.677785], [-121.643142, 55.677809], [-121.642311, 55.677522], [-121.641997, 55.677383], [-121.641656, 55.677083], [-121.641231, 55.676988], [-121.640863, 55.677002], [-121.64075, 55.677117], [-121.640702, 55.677584], [-121.640586, 55.677683], [-121.64014, 55.677749], [-121.640073, 55.677838], [-121.640334, 55.678101], [-121.640313, 55.678254], [-121.63941, 55.678621], [-121.639387, 55.678765], [-121.63968, 55.67902], [-121.639675, 55.679164], [-121.638952, 55.679407], [-121.638881, 55.679639], [-121.638525, 55.679789], [-121.638032, 55.679837], [-121.637995, 55.679909], [-121.638037, 55.680089], [-121.638132, 55.680126], [-121.639088, 55.680074], [-121.639245, 55.680148], [-121.639257, 55.680265], [-121.638351, 55.680695], [-121.637667, 55.680723], [-121.637167, 55.680861], [-121.636195, 55.68094], [-121.63554, 55.680555], [-121.619838, 55.680559], [-121.620548, 55.683467], [-121.620726, 55.685309], [-121.616264, 55.68486], [-121.614802, 55.684349], [-121.608985, 55.684363], [-121.609066, 55.681169], [-121.59672, 55.681481], [-121.597311, 55.685839], [-121.596669, 55.687985], [-121.594632, 55.687966], [-121.592784, 55.688019], [-121.585703, 55.688502], [-121.584768, 55.695582], [-121.584547, 55.699049], [-121.585454, 55.708554], [-121.591366, 55.708749], [-121.597353, 55.708708], [-121.596982, 55.715713], [-121.604351, 55.71594], [-121.595509, 55.717815], [-121.594399, 55.719771], [-121.590182, 55.719904], [-121.58918, 55.721874], [-121.587458, 55.721922], [-121.585668, 55.725069], [-121.582408, 55.725158], [-121.58258, 55.724514], [-121.582904, 55.723827], [-121.579938, 55.72385], [-121.580095, 55.72209], [-121.577855, 55.722116], [-121.570405, 55.724758], [-121.570381, 55.728409], [-121.570257, 55.730498], [-121.565916, 55.730582], [-121.565864, 55.727676], [-121.563587, 55.729802], [-121.565157, 55.72976], [-121.564892, 55.737114], [-121.596275, 55.737433], [-121.596632, 55.737865], [-121.597569, 55.738696], [-121.598333, 55.739183], [-121.599429, 55.739715], [-121.605654, 55.742392], [-121.606287, 55.742742], [-121.606821, 55.743146], [-121.607458, 55.7439], [-121.607647, 55.744391], [-121.6077, 55.744885], [-121.60747, 55.745736], [-121.607136, 55.746223], [-121.603699, 55.750155], [-121.689783, 55.751668]]], [[[-121.295899, 55.741418], [-121.293047, 55.74957], [-121.29654, 55.749054], [-121.31925, 55.749192], [-121.319725, 55.74202], [-121.321008, 55.735424], [-121.295439, 55.73724], [-121.295899, 55.741418]]], [[[-121.936521, 55.5739], [-121.94105, 55.575056], [-121.952942, 55.574918], [-121.953038, 55.567648], [-121.936264, 55.568043], [-121.936521, 55.5739]]], [[[-121.982693, 55.603468], [-122.000583, 55.599271], [-122.007901, 55.597721], [-122.007696, 55.597287], [-121.998981, 55.59915], [-121.99578, 55.597833], [-121.992383, 55.59858], [-121.99357, 55.600272], [-121.983629, 55.602366], [-121.982346, 55.603044], [-121.982693, 55.603468]]], [[[-121.546103, 55.737053], [-121.552821, 55.737066], [-121.556021, 55.735305], [-121.558135, 55.733704], [-121.562906, 55.729773], [-121.563163, 55.729774], [-121.565384, 55.727565], [-121.565866, 55.721969], [-121.570939, 55.721874], [-121.569003, 55.721027], [-121.565841, 55.719464], [-121.561527, 55.72116], [-121.559852, 55.722049], [-121.553033, 55.722157], [-121.552906, 55.729722], [-121.550127, 55.729694], [-121.546128, 55.733167], [-121.546103, 55.737053]]], [[[-122.22653, 55.627915], [-122.226052, 55.619325], [-122.244764, 55.617955], [-122.249672, 55.616004], [-122.25318, 55.615746], [-122.253326, 55.612558], [-122.264762, 55.612287], [-122.264519, 55.600893], [-122.226358, 55.60183], [-122.225847, 55.598846], [-122.187086, 55.600293], [-122.186378, 55.595946], [-122.16947, 55.596925], [-122.176626, 55.6314], [-122.22653, 55.627915]]]]}, "properties": {"name": "Chetwynd", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Chetwynd", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955010", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.265393, 55.781286], [-120.269447, 55.7812], [-120.27116, 55.781279], [-120.273185, 55.781275], [-120.2736, 55.781454], [-120.276693, 55.783426], [-120.276546, 55.783549], [-120.27637, 55.784025], [-120.276367, 55.78857], [-120.289326, 55.788588], [-120.289316, 55.785837], [-120.286554, 55.785031], [-120.280643, 55.782909], [-120.277247, 55.781395], [-120.276354, 55.780882], [-120.276451, 55.777229], [-120.27639, 55.773975], [-120.302288, 55.773966], [-120.302282, 55.766737], [-120.27636, 55.766717], [-120.276374, 55.759616], [-120.276248, 55.759616], [-120.276249, 55.759469], [-120.263449, 55.75955], [-120.263427, 55.744894], [-120.250709, 55.744891], [-120.250709, 55.744983], [-120.250497, 55.744982], [-120.250454, 55.730365], [-120.224571, 55.730481], [-120.211519, 55.730463], [-120.211587, 55.733432], [-120.201349, 55.73345], [-120.201263, 55.735113], [-120.198634, 55.735134], [-120.198634, 55.73042], [-120.17274, 55.730442], [-120.172665, 55.737698], [-120.14679, 55.737673], [-120.146827, 55.74358], [-120.146731, 55.744899], [-120.172638, 55.744961], [-120.172692, 55.752124], [-120.183167, 55.752102], [-120.183171, 55.752191], [-120.200776, 55.75219], [-120.200689, 55.748187], [-120.211398, 55.748182], [-120.211393, 55.748916], [-120.211599, 55.750802], [-120.211713, 55.751053], [-120.21173, 55.752209], [-120.211741, 55.753528], [-120.211631, 55.754069], [-120.211643, 55.761349], [-120.211763, 55.761359], [-120.211621, 55.773962], [-120.224593, 55.773997], [-120.22457, 55.781272], [-120.265393, 55.781286]]]]}, "properties": {"name": "Dawson Creek", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Dawson Creek", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955014", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.817003, 56.147996], [-120.817757, 56.148091], [-120.816286, 56.113373], [-120.812186, 56.084553], [-120.812684, 56.084197], [-120.81409, 56.083755], [-120.814653, 56.08346], [-120.814806, 56.0833], [-120.814898, 56.082799], [-120.815071, 56.082612], [-120.815385, 56.082466], [-120.815987, 56.082306], [-120.816683, 56.081949], [-120.816968, 56.081729], [-120.817284, 56.080728], [-120.817802, 56.080352], [-120.81829, 56.079668], [-120.818272, 56.079425], [-120.81799, 56.079052], [-120.818004, 56.078764], [-120.818403, 56.078546], [-120.819171, 56.078335], [-120.819435, 56.078179], [-120.819663, 56.077858], [-120.81985, 56.077116], [-120.820184, 56.076897], [-120.82066, 56.076735], [-120.82194, 56.076608], [-120.815312, 55.987158], [-120.808822, 55.986851], [-120.706716, 55.986218], [-120.66244, 55.986087], [-120.662392, 55.985303], [-120.66252, 55.984244], [-120.662154, 55.973459], [-120.662031, 55.9704], [-120.661833, 55.969506], [-120.661717, 55.967869], [-120.661967, 55.96769], [-120.663031, 55.949867], [-120.662854, 55.947192], [-120.662219, 55.947196], [-120.662232, 55.941757], [-120.662486, 55.936883], [-120.662269, 55.936411], [-120.662311, 55.920099], [-120.662532, 55.918907], [-120.662327, 55.912577], [-120.662368, 55.903759], [-120.662481, 55.903406], [-120.66238, 55.903126], [-120.662449, 55.902409], [-120.662382, 55.90126], [-120.662573, 55.899422], [-120.662569, 55.898619], [-120.662643, 55.89852], [-120.662569, 55.897816], [-120.662654, 55.896164], [-120.662483, 55.89357], [-120.66254, 55.89121], [-120.66234, 55.880135], [-120.662335, 55.839838], [-120.662303, 55.833783], [-120.662215, 55.832773], [-120.662333, 55.828981], [-120.662101, 55.828992], [-120.662076, 55.810629], [-120.649179, 55.810647], [-120.649174, 55.810959], [-120.635615, 55.811103], [-120.634621, 55.767154], [-120.63468, 55.752247], [-120.635352, 55.723152], [-120.635295, 55.69282], [-120.63431, 55.650772], [-120.634515, 55.635342], [-120.645753, 55.635227], [-120.644631, 55.613057], [-120.644597, 55.597169], [-120.642812, 55.564404], [-120.646951, 55.564224], [-120.648191, 55.564284], [-120.649015, 55.564379], [-120.652222, 55.565002], [-120.653038, 55.565081], [-120.654336, 55.565065], [-120.655559, 55.564953], [-120.666889, 55.563317], [-120.667979, 55.563027], [-120.668927, 55.562576], [-120.670136, 55.561555], [-120.671673, 55.55977], [-120.672351, 55.55915], [-120.67853, 55.555439], [-120.679799, 55.554907], [-120.680822, 55.554615], [-120.685844, 55.553757], [-120.686428, 55.553555], [-120.687286, 55.553154], [-120.691036, 55.550893], [-120.691449, 55.550513], [-120.692081, 55.549711], [-120.69313, 55.548029], [-120.694349, 55.545538], [-120.695016, 55.54469], [-120.696016, 55.543996], [-120.700088, 55.541922], [-120.703452, 55.539782], [-120.704362, 55.539299], [-120.705741, 55.538796], [-120.713012, 55.536361], [-120.713781, 55.536145], [-120.715096, 55.53593], [-120.7175, 55.535676], [-120.718793, 55.535434], [-120.731623, 55.526712], [-120.737664, 55.520659], [-120.74542, 55.517639], [-120.760509, 55.512906], [-120.772852, 55.510009], [-120.789164, 55.504646], [-120.793422, 55.501888], [-120.798502, 55.496072], [-120.799043, 55.489735], [-120.799361, 55.488844], [-120.799689, 55.488258], [-120.81889, 55.462596], [-120.827497, 55.455583], [-120.819054, 55.440908], [-120.818069, 55.427621], [-120.820259, 55.425343], [-120.814431, 55.419371], [-120.81383, 55.418544], [-120.813508, 55.41788], [-120.812444, 55.416562], [-120.81227, 55.414297], [-120.822898, 55.397004], [-120.816179, 55.388258], [-120.806332, 55.382709], [-120.802844, 55.377391], [-120.805167, 55.375638], [-120.808708, 55.374274], [-120.814271, 55.372595], [-120.816346, 55.372253], [-120.822388, 55.370965], [-120.829472, 55.369635], [-120.831343, 55.369755], [-120.83222, 55.369741], [-120.83356, 55.369522], [-120.834475, 55.369211], [-120.835362, 55.368751], [-120.837756, 55.368153], [-120.851923, 55.361182], [-120.857954, 55.354305], [-120.872764, 55.349506], [-120.904821, 55.335211], [-120.908448, 55.331883], [-120.908925, 55.330403], [-120.911256, 55.319793], [-120.910559, 55.31545], [-120.905643, 55.310423], [-120.904996, 55.309672], [-120.904423, 55.308873], [-120.9031, 55.306391], [-120.897707, 55.301318], [-120.899055, 55.298074], [-120.891632, 55.2828], [-120.89051, 55.281379], [-120.889051, 55.280131], [-120.887731, 55.279314], [-120.88662, 55.278727], [-120.885175, 55.278145], [-120.883932, 55.277737], [-120.870659, 55.274688], [-120.860424, 55.271302], [-120.859957, 55.270951], [-120.854332, 55.265427], [-120.843559, 55.261005], [-120.841816, 55.252406], [-120.848605, 55.247668], [-120.846278, 55.242887], [-120.845099, 55.239981], [-120.844453, 55.235637], [-120.84507, 55.23195], [-120.844885, 55.228393], [-120.848851, 55.220926], [-120.850457, 55.214122], [-120.852564, 55.201858], [-120.845636, 55.202099], [-120.846074, 55.201561], [-120.811686, 55.202803], [-120.819075, 55.180252], [-120.826785, 55.137956], [-120.837843, 55.080496], [-120.843186, 55.053043], [-120.847461, 55.031812], [-120.854595, 54.992119], [-120.855296, 54.988589], [-120.862634, 54.945793], [-120.878142, 54.859267], [-120.881273, 54.858329], [-120.981992, 54.830222], [-121.018844, 54.819432], [-121.033177, 54.815377], [-121.079403, 54.801943], [-121.083942, 54.804926], [-121.119102, 54.82716], [-121.165017, 54.856009], [-121.230934, 54.896587], [-121.231559, 54.896391], [-121.23327, 54.896064], [-121.23405, 54.896037], [-121.235799, 54.896136], [-121.23745, 54.895547], [-121.238461, 54.895035], [-121.238818, 54.894595], [-121.239436, 54.894306], [-121.239835, 54.893941], [-121.241962, 54.892866], [-121.242795, 54.892573], [-121.24481, 54.892083], [-121.245666, 54.891771], [-121.246323, 54.891653], [-121.247171, 54.891254], [-121.250883, 54.889844], [-121.250819, 54.889357], [-121.250033, 54.888928], [-121.248865, 54.887906], [-121.248914, 54.887619], [-121.249651, 54.886367], [-121.24954, 54.886027], [-121.249969, 54.884506], [-121.250801, 54.883076], [-121.250629, 54.882894], [-121.250328, 54.882166], [-121.250406, 54.881846], [-121.250692, 54.88152], [-121.251966, 54.880844], [-121.253003, 54.880642], [-121.253502, 54.879895], [-121.254287, 54.879242], [-121.254091, 54.878989], [-121.2533, 54.878446], [-121.252806, 54.878359], [-121.25253, 54.878372], [-121.250761, 54.879059], [-121.249699, 54.879138], [-121.249461, 54.87907], [-121.249263, 54.878826], [-121.249045, 54.878101], [-121.249103, 54.877274], [-121.249394, 54.876513], [-121.249966, 54.876032], [-121.250151, 54.875562], [-121.249886, 54.874743], [-121.249181, 54.873793], [-121.248237, 54.873177], [-121.247519, 54.873057], [-121.24674, 54.872679], [-121.246274, 54.872331], [-121.245956, 54.871873], [-121.245882, 54.870821], [-121.246059, 54.870347], [-121.246641, 54.869417], [-121.247053, 54.868969], [-121.249683, 54.866803], [-121.249808, 54.86606], [-121.250649, 54.864332], [-121.250642, 54.863029], [-121.251165, 54.861495], [-121.251512, 54.861086], [-121.251949, 54.860819], [-121.253689, 54.86031], [-121.254994, 54.860024], [-121.255351, 54.859843], [-121.255758, 54.859505], [-121.256203, 54.85892], [-121.256259, 54.858621], [-121.256055, 54.858285], [-121.254843, 54.857391], [-121.25448, 54.856913], [-121.254281, 54.856519], [-121.254358, 54.855721], [-121.254191, 54.855099], [-121.253736, 54.854603], [-121.2525, 54.854089], [-121.249936, 54.853547], [-121.248702, 54.853456], [-121.246171, 54.853651], [-121.245367, 54.853824], [-121.244224, 54.853766], [-121.242903, 54.853334], [-121.241299, 54.853172], [-121.240281, 54.852926], [-121.238646, 54.852181], [-121.238038, 54.851746], [-121.237198, 54.850822], [-121.236743, 54.850156], [-121.235265, 54.846682], [-121.234539, 54.845876], [-121.234032, 54.845496], [-121.232369, 54.844786], [-121.23012, 54.844049], [-121.22952, 54.843741], [-121.229319, 54.843453], [-121.229301, 54.843107], [-121.229727, 54.842335], [-121.23197, 54.840954], [-121.232753, 54.839908], [-121.232988, 54.839238], [-121.233018, 54.838478], [-121.232736, 54.837177], [-121.231993, 54.835993], [-121.231278, 54.835392], [-121.230795, 54.835183], [-121.229705, 54.834949], [-121.227763, 54.834731], [-121.225748, 54.834287], [-121.22392, 54.833498], [-121.221496, 54.832299], [-121.2203, 54.831856], [-121.219348, 54.831309], [-121.218992, 54.831034], [-121.21831, 54.830322], [-121.217813, 54.828986], [-121.217375, 54.828207], [-121.217512, 54.827679], [-121.217954, 54.827143], [-121.218627, 54.827126], [-121.219122, 54.826999], [-121.22004, 54.826625], [-121.220538, 54.826306], [-121.220904, 54.825642], [-121.220839, 54.825317], [-121.220497, 54.82502], [-121.219663, 54.824674], [-121.219108, 54.82476], [-121.217779, 54.824779], [-121.217148, 54.824665], [-121.216466, 54.824417], [-121.215811, 54.823969], [-121.215398, 54.823476], [-121.215085, 54.822725], [-121.215106, 54.822361], [-121.215505, 54.821733], [-121.215847, 54.821454], [-121.216416, 54.82137], [-121.217352, 54.821389], [-121.218451, 54.82122], [-121.218988, 54.821043], [-121.219354, 54.820002], [-121.219097, 54.819428], [-121.218676, 54.818947], [-121.218359, 54.818765], [-121.218114, 54.817813], [-121.217899, 54.81744], [-121.217331, 54.816818], [-121.216188, 54.815852], [-121.2157, 54.815277], [-121.216239, 54.814855], [-121.216575, 54.814398], [-121.216797, 54.813978], [-121.216787, 54.8134], [-121.21578, 54.812279], [-121.215268, 54.812015], [-121.213852, 54.811505], [-121.213348, 54.811111], [-121.212952, 54.810641], [-121.212941, 54.810295], [-121.213473, 54.809875], [-121.214442, 54.809642], [-121.215773, 54.809738], [-121.21643, 54.809688], [-121.217343, 54.809412], [-121.21792, 54.80893], [-121.217969, 54.808265], [-121.217566, 54.807136], [-121.215929, 54.806239], [-121.215309, 54.805651], [-121.215275, 54.805497], [-121.214649, 54.804669], [-121.214173, 54.803789], [-121.214173, 54.803548], [-121.213515, 54.802934], [-121.211969, 54.802073], [-121.210099, 54.801276], [-121.20774, 54.800726], [-121.205985, 54.799902], [-121.205069, 54.799318], [-121.204945, 54.799173], [-121.203595, 54.798588], [-121.200661, 54.796645], [-121.199295, 54.795586], [-121.198155, 54.794271], [-121.19683, 54.793182], [-121.19658, 54.793079], [-121.197961, 54.792727], [-121.197405, 54.792246], [-121.197003, 54.791144], [-121.196327, 54.790585], [-121.195153, 54.790064], [-121.193697, 54.789252], [-121.193336, 54.788635], [-121.193074, 54.787849], [-121.191852, 54.787032], [-121.191328, 54.786529], [-121.191148, 54.786068], [-121.191156, 54.785767], [-121.190038, 54.785864], [-121.190658, 54.785467], [-121.191029, 54.78479], [-121.19139, 54.784448], [-121.190942, 54.783743], [-121.189807, 54.782396], [-121.188575, 54.781729], [-121.188353, 54.781301], [-121.190212, 54.778746], [-121.190356, 54.778405], [-121.192251, 54.776004], [-121.193252, 54.775464], [-121.194496, 54.775093], [-121.195788, 54.774946], [-121.196195, 54.775026], [-121.198617, 54.775869], [-121.199544, 54.776684], [-121.200036, 54.77675], [-121.200551, 54.776669], [-121.202045, 54.775386], [-121.203015, 54.773993], [-121.203005, 54.773428], [-121.202443, 54.772435], [-121.201938, 54.771827], [-121.199881, 54.770304], [-121.199693, 54.770042], [-121.198828, 54.769406], [-121.198775, 54.769225], [-121.199156, 54.769014], [-121.200439, 54.768738], [-121.202573, 54.768496], [-121.205072, 54.768426], [-121.206414, 54.768272], [-121.207511, 54.767893], [-121.209353, 54.766794], [-121.209581, 54.766235], [-121.209022, 54.765516], [-121.208516, 54.765186], [-121.206305, 54.764279], [-121.204206, 54.762993], [-121.203461, 54.762139], [-121.203439, 54.761615], [-121.204118, 54.760563], [-121.204374, 54.759963], [-121.204108, 54.759543], [-121.203736, 54.759371], [-121.201165, 54.758861], [-121.199963, 54.758259], [-121.199027, 54.757652], [-121.198692, 54.757516], [-121.197882, 54.756905], [-121.197637, 54.756584], [-121.197542, 54.75622], [-121.197368, 54.75596], [-121.196595, 54.755423], [-121.19476, 54.753701], [-121.193777, 54.753211], [-121.192099, 54.752909], [-121.190927, 54.752809], [-121.189724, 54.752283], [-121.188363, 54.751335], [-121.188122, 54.751481], [-121.187041, 54.750952], [-121.186289, 54.750393], [-121.186191, 54.750166], [-121.186194, 54.749726], [-121.18657, 54.748293], [-121.186514, 54.747134], [-121.18662, 54.74647], [-121.187094, 54.745973], [-121.187821, 54.744294], [-121.188149, 54.743887], [-121.1884, 54.743143], [-121.189378, 54.742494], [-121.189391, 54.741856], [-121.188763, 54.740956], [-121.188444, 54.740789], [-121.185841, 54.739932], [-121.185123, 54.739586], [-121.182936, 54.73905], [-121.181135, 54.738837], [-121.177978, 54.738782], [-121.176216, 54.738884], [-121.174882, 54.738755], [-121.174054, 54.738248], [-121.17357, 54.737619], [-121.173533, 54.736827], [-121.173889, 54.736256], [-121.174549, 54.735925], [-121.176559, 54.735181], [-121.177911, 54.734246], [-121.178086, 54.733803], [-121.177916, 54.732907], [-121.176642, 54.73115], [-121.175089, 54.72978], [-121.173491, 54.728555], [-121.173253, 54.727887], [-121.173218, 54.727407], [-121.172991, 54.727082], [-121.172619, 54.726766], [-121.171283, 54.726077], [-121.170665, 54.725576], [-121.169759, 54.72515], [-121.169207, 54.72478], [-121.169192, 54.72406], [-121.16945, 54.723199], [-121.16971, 54.722854], [-121.170268, 54.722712], [-121.170476, 54.722464], [-121.170197, 54.722116], [-121.169648, 54.721829], [-121.169346, 54.721456], [-121.169834, 54.720847], [-121.169658, 54.720553], [-121.169178, 54.720326], [-121.167568, 54.720232], [-121.166241, 54.72004], [-121.165474, 54.719655], [-121.164724, 54.719417], [-121.164161, 54.719019], [-121.164005, 54.718682], [-121.164111, 54.718146], [-121.165422, 54.716706], [-121.166141, 54.716213], [-121.16731, 54.715776], [-121.167492, 54.715568], [-121.167218, 54.7152], [-121.166523, 54.714799], [-121.164343, 54.713894], [-121.163854, 54.713423], [-121.163824, 54.712931], [-121.164097, 54.712214], [-121.164014, 54.712051], [-121.163536, 54.711869], [-121.162884, 54.711875], [-121.161915, 54.712068], [-121.15994, 54.712719], [-121.1584, 54.713689], [-121.156766, 54.714218], [-121.155999, 54.714282], [-121.154362, 54.714058], [-121.153309, 54.714168], [-121.152345, 54.713913], [-121.150905, 54.713293], [-121.150672, 54.712585], [-121.14967, 54.711802], [-121.149509, 54.711456], [-121.149591, 54.710996], [-121.149457, 54.710473], [-121.14981, 54.70974], [-121.149728, 54.709394], [-121.148485, 54.708501], [-121.146436, 54.707598], [-121.14598, 54.707156], [-121.146141, 54.706682], [-121.146668, 54.706056], [-121.147569, 54.705376], [-121.148929, 54.704532], [-121.14966, 54.70376], [-121.149878, 54.703193], [-121.149604, 54.701931], [-121.149207, 54.701687], [-121.14836, 54.701598], [-121.144032, 54.701622], [-121.143237, 54.701502], [-121.142337, 54.70118], [-121.140878, 54.699956], [-121.140437, 54.699712], [-121.13921, 54.699315], [-121.137528, 54.698976], [-121.136751, 54.698604], [-121.134433, 54.6972], [-121.133505, 54.696861], [-121.133236, 54.696577], [-121.132701, 54.69431], [-121.132368, 54.693653], [-121.131471, 54.692803], [-121.129352, 54.691672], [-121.127397, 54.690287], [-121.126517, 54.689811], [-121.125198, 54.689314], [-121.122396, 54.688542], [-121.118437, 54.686522], [-121.117488, 54.686213], [-121.114539, 54.684732], [-121.112955, 54.683137], [-121.112569, 54.682898], [-121.110523, 54.682109], [-121.108742, 54.681699], [-121.10782, 54.681572], [-121.106532, 54.681172], [-121.106287, 54.681008], [-121.106303, 54.680572], [-121.106563, 54.680353], [-121.107876, 54.679844], [-121.108554, 54.679436], [-121.108719, 54.679233], [-121.108733, 54.678847], [-121.108594, 54.678627], [-121.107795, 54.678023], [-121.107423, 54.677875], [-121.106523, 54.677855], [-121.104291, 54.67832], [-121.10239, 54.678366], [-121.098835, 54.678268], [-121.096832, 54.67812], [-121.096501, 54.678007], [-121.095507, 54.677241], [-121.095281, 54.676235], [-121.094533, 54.675567], [-121.093885, 54.67469], [-121.093747, 54.674307], [-121.093925, 54.673334], [-121.094191, 54.672901], [-121.094439, 54.671906], [-121.094984, 54.671], [-121.095317, 54.670652], [-121.095645, 54.669908], [-121.095739, 54.668486], [-121.095147, 54.668029], [-121.094645, 54.667026], [-121.094617, 54.666693], [-121.094367, 54.666406], [-121.093708, 54.665997], [-121.091673, 54.665166], [-121.091317, 54.664963], [-121.090946, 54.664554], [-121.090914, 54.663789], [-121.091223, 54.662909], [-121.091254, 54.662076], [-121.091477, 54.661233], [-121.09145, 54.660633], [-121.09119, 54.660167], [-121.091198, 54.659179], [-121.090925, 54.6589], [-121.090595, 54.658776], [-121.090034, 54.65874], [-121.08919, 54.658883], [-121.08726, 54.659393], [-121.086846, 54.659373], [-121.085725, 54.658745], [-121.085447, 54.65842], [-121.085019, 54.658204], [-121.083344, 54.65789], [-121.081315, 54.657689], [-121.080247, 54.657507], [-121.07898, 54.657187], [-121.078534, 54.656996], [-121.078073, 54.65661], [-121.077663, 54.655778], [-121.077709, 54.655425], [-121.078199, 54.654414], [-121.078323, 54.653381], [-121.078126, 54.652773], [-121.077663, 54.652088], [-121.077276, 54.651763], [-121.076739, 54.651491], [-121.076074, 54.651364], [-121.074699, 54.651346], [-121.073761, 54.651006], [-121.072926, 54.651043], [-121.070831, 54.651796], [-121.069942, 54.651806], [-121.067901, 54.652032], [-121.067211, 54.652199], [-121.065943, 54.65274], [-121.06532, 54.652813], [-121.06409, 54.652709], [-121.063403, 54.652482], [-121.063166, 54.652045], [-121.063081, 54.651045], [-121.06271, 54.650389], [-121.061064, 54.648822], [-121.060734, 54.648411], [-121.060763, 54.645783], [-121.060361, 54.644894], [-121.059881, 54.644231], [-121.058359, 54.643111], [-121.057778, 54.642909], [-121.054793, 54.642497], [-121.052667, 54.641925], [-121.052257, 54.641372], [-121.052169, 54.640606], [-121.051787, 54.639949], [-121.051514, 54.639743], [-121.050469, 54.639377], [-121.049673, 54.638982], [-121.049443, 54.638702], [-121.04948, 54.638393], [-121.050272, 54.637515], [-121.050262, 54.637228], [-121.049348, 54.636299], [-121.049315, 54.63514], [-121.049153, 54.634768], [-121.048699, 54.634308], [-121.046533, 54.633488], [-121.046029, 54.633127], [-121.043056, 54.630303], [-121.041568, 54.629574], [-121.040967, 54.62916], [-121.03955, 54.628624], [-121.038463, 54.628285], [-121.037376, 54.627822], [-121.036568, 54.627281], [-121.035617, 54.626899], [-121.035169, 54.626627], [-121.033904, 54.625494], [-121.033557, 54.624987], [-121.033696, 54.623433], [-121.033509, 54.622855], [-121.032993, 54.621895], [-121.032248, 54.619758], [-121.03197, 54.619468], [-121.031325, 54.619202], [-121.030591, 54.618655], [-121.030461, 54.617582], [-121.030006, 54.617003], [-121.029746, 54.615924], [-121.029522, 54.615736], [-121.029356, 54.615164], [-121.028486, 54.613953], [-121.028148, 54.61377], [-121.026589, 54.613412], [-121.023246, 54.611885], [-121.021579, 54.610728], [-121.020295, 54.610017], [-121.018181, 54.609226], [-121.017468, 54.608712], [-121.01731, 54.608422], [-121.017354, 54.608127], [-121.017615, 54.607776], [-121.019143, 54.606623], [-121.019842, 54.605972], [-121.020148, 54.60536], [-121.020844, 54.604939], [-121.023921, 54.603688], [-121.024434, 54.603685], [-121.024926, 54.603859], [-121.025405, 54.603823], [-121.025592, 54.603659], [-121.025635, 54.603002], [-121.025471, 54.602545], [-121.025087, 54.60232], [-121.023997, 54.601262], [-121.023192, 54.600738], [-121.023352, 54.60045], [-121.024776, 54.599721], [-121.025532, 54.599459], [-121.026114, 54.59947], [-121.026551, 54.599635], [-121.026866, 54.599922], [-121.027271, 54.600009], [-121.028003, 54.599864], [-121.028514, 54.599572], [-121.029416, 54.598692], [-121.03026, 54.596653], [-121.030253, 54.595926], [-121.030788, 54.595209], [-121.030844, 54.594556], [-121.030776, 54.59396], [-121.030562, 54.593552], [-121.03056, 54.592958], [-121.030651, 54.592681], [-121.031525, 54.59159], [-121.031354, 54.591284], [-121.031484, 54.590926], [-121.032038, 54.590058], [-121.032282, 54.58996], [-121.034427, 54.590188], [-121.034605, 54.590149], [-121.034802, 54.590009], [-121.034888, 54.589786], [-121.034902, 54.589484], [-121.034797, 54.58937], [-121.033951, 54.588916], [-121.032783, 54.58879], [-121.032484, 54.588679], [-121.032175, 54.588397], [-121.032248, 54.587872], [-121.03266, 54.587496], [-121.033299, 54.587235], [-121.033595, 54.586997], [-121.033662, 54.58656], [-121.033572, 54.586247], [-121.034138, 54.586046], [-121.035293, 54.585878], [-121.035715, 54.585542], [-121.035788, 54.585127], [-121.035491, 54.583884], [-121.035116, 54.583212], [-121.03524, 54.583071], [-121.036123, 54.582672], [-121.036834, 54.582582], [-121.037047, 54.582353], [-121.036976, 54.582138], [-121.036498, 54.581957], [-121.036058, 54.581645], [-121.036129, 54.580786], [-121.035909, 54.580466], [-121.035948, 54.580007], [-121.036784, 54.579438], [-121.037272, 54.579344], [-121.03863, 54.578808], [-121.039737, 54.578213], [-121.039857, 54.577845], [-121.039344, 54.577185], [-121.039419, 54.576828], [-121.039643, 54.576643], [-121.041463, 54.57595], [-121.042064, 54.575481], [-121.042118, 54.574654], [-121.0419, 54.574329], [-121.041508, 54.574097], [-121.040887, 54.573845], [-121.040448, 54.57347], [-121.038942, 54.572438], [-121.038784, 54.571815], [-121.038806, 54.571515], [-121.039854, 54.56935], [-121.039973, 54.568192], [-121.039405, 54.567866], [-121.038302, 54.565679], [-121.038568, 54.565525], [-121.038307, 54.565133], [-121.03807, 54.564941], [-121.037971, 54.564436], [-121.038167, 54.563881], [-121.038181, 54.56327], [-121.038518, 54.562665], [-121.039337, 54.562039], [-121.03996, 54.56196], [-121.040359, 54.561698], [-121.040524, 54.561503], [-121.040466, 54.561097], [-121.040165, 54.560947], [-121.039587, 54.560407], [-121.039434, 54.559714], [-121.039765, 54.559269], [-121.040813, 54.558388], [-121.040999, 54.558057], [-121.040835, 54.557587], [-121.040789, 54.556958], [-121.040588, 54.556605], [-121.040037, 54.556146], [-121.039623, 54.555465], [-121.039267, 54.555118], [-121.039103, 54.555015], [-121.038593, 54.554998], [-121.038426, 54.554943], [-121.038389, 54.554743], [-121.038617, 54.554478], [-121.038777, 54.5544], [-121.039635, 54.554225], [-121.040185, 54.554369], [-121.040577, 54.554564], [-121.041166, 54.554545], [-121.041822, 54.554448], [-121.042011, 54.554362], [-121.042094, 54.554229], [-121.04193, 54.552823], [-121.042295, 54.552631], [-121.042243, 54.552091], [-121.042344, 54.55158], [-121.042458, 54.551456], [-121.042394, 54.551196], [-121.042727, 54.551056], [-121.043025, 54.550603], [-121.043808, 54.550436], [-121.044384, 54.550005], [-121.045545, 54.54802], [-121.045514, 54.547416], [-121.045738, 54.547231], [-121.045907, 54.546946], [-121.045875, 54.546649], [-121.046006, 54.54648], [-121.046742, 54.54598], [-121.047238, 54.545962], [-121.048729, 54.54549], [-121.049596, 54.545433], [-121.050124, 54.545064], [-121.050277, 54.544778], [-121.04984, 54.544206], [-121.049032, 54.543644], [-121.048627, 54.543395], [-121.04787, 54.543086], [-121.04673, 54.542321], [-121.046277, 54.541793], [-121.046203, 54.541081], [-121.045938, 54.540789], [-121.044991, 54.540523], [-121.043624, 54.540374], [-121.043235, 54.54009], [-121.043157, 54.539773], [-121.043283, 54.539557], [-121.044066, 54.53915], [-121.044611, 54.53867], [-121.045452, 54.538212], [-121.045504, 54.53754], [-121.046136, 54.53749], [-121.046504, 54.537328], [-121.046672, 54.537111], [-121.047064, 54.537037], [-121.047082, 54.536592], [-121.046489, 54.535845], [-121.046703, 54.535528], [-121.047406, 54.53545], [-121.048422, 54.535546], [-121.049564, 54.535764], [-121.050658, 54.535823], [-121.050903, 54.535925], [-121.05123, 54.536297], [-121.051771, 54.536315], [-121.052345, 54.535897], [-121.052421, 54.53525], [-121.052636, 54.535008], [-121.053513, 54.535068], [-121.05405, 54.535222], [-121.054287, 54.535209], [-121.055963, 54.534465], [-121.057394, 54.533246], [-121.057478, 54.532769], [-121.058129, 54.532244], [-121.058619, 54.531551], [-121.059015, 54.530336], [-121.059046, 54.529266], [-121.059552, 54.528598], [-121.059384, 54.527764], [-121.059652, 54.527192], [-121.059542, 54.52634], [-121.060021, 54.525278], [-121.060266, 54.524237], [-121.05983, 54.523644], [-121.058899, 54.523722], [-121.058093, 54.524133], [-121.057588, 54.524], [-121.05748, 54.523852], [-121.05766, 54.52357], [-121.057984, 54.523401], [-121.057957, 54.522988], [-121.056204, 54.521175], [-121.054878, 54.520173], [-121.054828, 54.519929], [-121.054899, 54.519748], [-121.054186, 54.519028], [-121.054068, 54.518147], [-121.053807, 54.517487], [-121.053651, 54.517305], [-121.053169, 54.517282], [-121.052869, 54.51704], [-121.052663, 54.516301], [-121.052749, 54.515823], [-121.053584, 54.514602], [-121.053561, 54.514441], [-121.053297, 54.514149], [-121.05339, 54.513809], [-121.052632, 54.51385], [-121.052571, 54.513813], [-121.052579, 54.513679], [-121.052738, 54.513574], [-121.052873, 54.513323], [-121.052655, 54.511765], [-121.053286, 54.511443], [-121.053427, 54.511094], [-121.053352, 54.511066], [-121.053024, 54.510153], [-121.053007, 54.509838], [-121.053242, 54.509482], [-121.05313, 54.50859], [-121.052695, 54.50764], [-121.051812, 54.507716], [-121.051629, 54.507667], [-121.051527, 54.507522], [-121.051586, 54.507253], [-121.052008, 54.50682], [-121.051816, 54.504389], [-121.051609, 54.503856], [-121.05134, 54.503681], [-121.050838, 54.503512], [-121.049709, 54.503529], [-121.049711, 54.503143], [-121.050093, 54.502942], [-121.050073, 54.502357], [-121.050308, 54.502307], [-121.05069, 54.502421], [-121.050877, 54.502379], [-121.050976, 54.502228], [-121.05101, 54.501842], [-121.051904, 54.501236], [-121.052133, 54.500638], [-121.052494, 54.500185], [-121.05255, 54.499961], [-121.051888, 54.499609], [-121.051789, 54.499418], [-121.051808, 54.499032], [-121.051967, 54.498927], [-121.052196, 54.498975], [-121.052187, 54.499164], [-121.05262, 54.499485], [-121.053262, 54.498993], [-121.053303, 54.498436], [-121.053595, 54.498135], [-121.053686, 54.497849], [-121.053846, 54.497752], [-121.053876, 54.497456], [-121.053692, 54.497373], [-121.053425, 54.497494], [-121.053025, 54.497785], [-121.052889, 54.498078], [-121.052782, 54.498041], [-121.052787, 54.497933], [-121.052872, 54.497746], [-121.053261, 54.497393], [-121.053467, 54.496946], [-121.05434, 54.496458], [-121.054651, 54.496067], [-121.054644, 54.495878], [-121.054513, 54.495723], [-121.05449, 54.49459], [-121.054677, 54.494233], [-121.054998, 54.493942], [-121.055004, 54.493834], [-121.054473, 54.493655], [-121.053951, 54.493592], [-121.05428, 54.492483], [-121.054237, 54.492141], [-121.054116, 54.49204], [-121.053312, 54.491739], [-121.052596, 54.491215], [-121.052049, 54.491027], [-121.051683, 54.490617], [-121.051185, 54.489728], [-121.050947, 54.489526], [-121.050869, 54.48922], [-121.050428, 54.489077], [-121.050449, 54.488988], [-121.050639, 54.488874], [-121.051335, 54.488849], [-121.051359, 54.488687], [-121.051155, 54.488424], [-121.051193, 54.488254], [-121.051395, 54.488211], [-121.05173, 54.488325], [-121.05196, 54.48833], [-121.051902, 54.487968], [-121.052254, 54.488011], [-121.052743, 54.488441], [-121.05332, 54.488342], [-121.053953, 54.488325], [-121.054642, 54.488804], [-121.054749, 54.488805], [-121.054987, 54.488674], [-121.055234, 54.488668], [-121.057373, 54.489144], [-121.059517, 54.489178], [-121.059848, 54.489372], [-121.06037, 54.489453], [-121.060802, 54.489469], [-121.061828, 54.489288], [-121.062323, 54.488953], [-121.063382, 54.488414], [-121.064259, 54.488518], [-121.065001, 54.48879], [-121.065737, 54.488559], [-121.066166, 54.488341], [-121.066737, 54.487686], [-121.067845, 54.4871], [-121.068988, 54.48676], [-121.069969, 54.486605], [-121.070683, 54.486193], [-121.070948, 54.486116], [-121.072152, 54.486126], [-121.072691, 54.485857], [-121.073016, 54.485844], [-121.073189, 54.485739], [-121.073737, 54.485595], [-121.07531, 54.485611], [-121.075692, 54.485374], [-121.076746, 54.485302], [-121.077366, 54.48488], [-121.078181, 54.484991], [-121.078386, 54.48486], [-121.078652, 54.48445], [-121.078796, 54.484407], [-121.079614, 54.484403], [-121.080226, 54.483855], [-121.08082, 54.483677], [-121.081823, 54.483054], [-121.082356, 54.482523], [-121.08358, 54.48211], [-121.08403, 54.48174], [-121.08433, 54.481602], [-121.085899, 54.48105], [-121.086867, 54.481129], [-121.087609, 54.481114], [-121.087953, 54.481362], [-121.088742, 54.481617], [-121.089867, 54.481688], [-121.090215, 54.481506], [-121.090494, 54.481142], [-121.091198, 54.480936], [-121.092277, 54.480288], [-121.094069, 54.479948], [-121.094438, 54.479666], [-121.094652, 54.4794], [-121.095074, 54.479246], [-121.095806, 54.479141], [-121.096446, 54.478953], [-121.096782, 54.478723], [-121.097475, 54.478393], [-121.097578, 54.478215], [-121.097837, 54.478273], [-121.098077, 54.478447], [-121.098443, 54.47849], [-121.099022, 54.478327], [-121.099456, 54.47828], [-121.099897, 54.478098], [-121.100268, 54.478122], [-121.101319, 54.478417], [-121.102017, 54.478312], [-121.102481, 54.47831], [-121.102873, 54.478199], [-121.104161, 54.478237], [-121.119457, 54.474961], [-121.113042, 54.47007], [-121.10751, 54.468541], [-121.099169, 54.46437], [-121.093433, 54.45994], [-121.074163, 54.451192], [-121.068284, 54.451242], [-121.064223, 54.457424], [-121.065206, 54.461907], [-121.063015, 54.467304], [-121.053456, 54.460687], [-121.044567, 54.455521], [-121.037797, 54.453854], [-121.026225, 54.458167], [-121.020658, 54.460916], [-121.004684, 54.463697], [-120.995865, 54.463272], [-120.984913, 54.461322], [-120.977167, 54.461163], [-120.961437, 54.461896], [-120.954075, 54.462856], [-120.947523, 54.462106], [-120.942786, 54.460836], [-120.936722, 54.45699], [-120.934178, 54.451971], [-120.922629, 54.453308], [-120.914801, 54.455384], [-120.902003, 54.456911], [-120.886412, 54.460137], [-120.879481, 54.46261], [-120.876846, 54.465168], [-120.878131, 54.470707], [-120.875178, 54.488943], [-120.870857, 54.490505], [-120.858637, 54.490053], [-120.847555, 54.489276], [-120.833713, 54.491581], [-120.825079, 54.493712], [-120.816405, 54.490769], [-120.814407, 54.488057], [-120.815337, 54.485251], [-120.804892, 54.478304], [-120.794488, 54.476316], [-120.790827, 54.473137], [-120.789895, 54.468744], [-120.800043, 54.462066], [-120.803564, 54.453556], [-120.803484, 54.453506], [-120.801123, 54.44532], [-120.802609, 54.437022], [-120.802071, 54.42799], [-120.796636, 54.417811], [-120.784898, 54.410169], [-120.784554, 54.403379], [-120.781072, 54.40224], [-120.775961, 54.397137], [-120.770323, 54.396777], [-120.760734, 54.396393], [-120.75565, 54.396693], [-120.752232, 54.39865], [-120.750038, 54.401733], [-120.747517, 54.40409], [-120.739903, 54.407076], [-120.7322, 54.408611], [-120.711644, 54.402491], [-120.688972, 54.391814], [-120.681957, 54.386436], [-120.66804, 54.37433], [-120.660958, 54.360662], [-120.659315, 54.356188], [-120.659627, 54.355024], [-120.665324, 54.352343], [-120.675619, 54.350236], [-120.685866, 54.350762], [-120.693436, 54.349756], [-120.699017, 54.346366], [-120.697188, 54.341152], [-120.692165, 54.334799], [-120.691591, 54.328737], [-120.683123, 54.322956], [-120.690425, 54.317602], [-120.70405, 54.3111], [-120.713383, 54.305164], [-120.719944, 54.303294], [-120.727309, 54.300374], [-120.727472, 54.297215], [-120.717526, 54.29235], [-120.706871, 54.296044], [-120.699368, 54.293431], [-120.68461, 54.283794], [-120.676641, 54.282297], [-120.668941, 54.284489], [-120.652865, 54.288736], [-120.645575, 54.287043], [-120.631158, 54.281154], [-120.624063, 54.292176], [-120.619473, 54.290697], [-120.611575, 54.291303], [-120.606312, 54.289687], [-120.598546, 54.283707], [-120.593441, 54.274189], [-120.591093, 54.267654], [-120.584334, 54.259507], [-120.580908, 54.256388], [-120.581595, 54.250138], [-120.576736, 54.245626], [-120.57551, 54.239428], [-120.58316, 54.233492], [-120.584059, 54.227836], [-120.569804, 54.221085], [-120.566253, 54.218821], [-120.564082, 54.206757], [-120.571604, 54.201348], [-120.56777, 54.190984], [-120.581964, 54.182859], [-120.58147, 54.173836], [-120.556867, 54.160954], [-120.555491, 54.156929], [-120.550838, 54.153998], [-120.543862, 54.144204], [-120.531808, 54.136017], [-120.506267, 54.129371], [-120.501844, 54.131444], [-120.491731, 54.132352], [-120.479227, 54.13508], [-120.460561, 54.130644], [-120.446493, 54.124005], [-120.440245, 54.118419], [-120.430633, 54.117545], [-120.413482, 54.117987], [-120.39322, 54.121755], [-120.385991, 54.119714], [-120.37055, 54.114764], [-120.36485, 54.11425], [-120.342334, 54.108111], [-120.328998, 54.104361], [-120.321378, 54.104551], [-120.310144, 54.109839], [-120.288403, 54.114166], [-120.272961, 54.113614], [-120.262326, 54.111464], [-120.249498, 54.113438], [-120.240648, 54.113477], [-120.231415, 54.111339], [-120.198506, 54.114212], [-120.183563, 54.117567], [-120.172471, 54.122436], [-120.167297, 54.121521], [-120.163991, 54.117956], [-120.160117, 54.111713], [-120.155204, 54.107653], [-120.158307, 54.101583], [-120.157653, 54.09633], [-120.155538, 54.086293], [-120.142135, 54.074219], [-120.143579, 54.064601], [-120.155088, 54.054523], [-120.168155, 54.051329], [-120.17415, 54.054897], [-120.177759, 54.051068], [-120.176262, 54.048879], [-120.178265, 54.04212], [-120.193634, 54.044327], [-120.194418, 54.037094], [-120.196546, 54.02981], [-120.199695, 54.029251], [-120.205469, 54.030564], [-120.229628, 54.041549], [-120.249586, 54.021085], [-120.262904, 53.999629], [-120.260004, 53.976628], [-120.233321, 53.976486], [-120.216017, 53.974269], [-120.209583, 53.972821], [-120.206655, 53.969895], [-120.207881, 53.955041], [-120.204652, 53.95106], [-120.191818, 53.940003], [-120.180653, 53.940214], [-120.173801, 53.938231], [-120.161335, 53.937503], [-120.155515, 53.938163], [-120.147413, 53.942155], [-120.145563, 53.94773], [-120.134996, 53.960647], [-120.122908, 53.972032], [-120.105801, 53.983029], [-120.096817, 53.984572], [-120.074487, 53.977803], [-120.063905, 53.964319], [-120.069316, 53.953197], [-120.06505, 53.947553], [-120.058376, 53.940629], [-120.060304, 53.928611], [-120.055447, 53.920854], [-120.064083, 53.913063], [-120.067575, 53.908828], [-120.065897, 53.902623], [-120.052817, 53.883254], [-120.037608, 53.875636], [-120.017422, 53.864203], [-120.01598, 53.851751], [-120.031042, 53.849243], [-120.042959, 53.845903], [-120.049787, 53.829014], [-120.04724, 53.822405], [-120.040413, 53.814231], [-120.036969, 53.804782], [-120.037085, 53.804657], [-120.013747, 53.796695], [-120.008501, 53.795358], [-120.003003, 53.796788], [-120.0, 53.799488], [-120.000029, 53.840149], [-119.999925, 53.868244], [-120.0, 53.937418], [-119.999932, 54.490904], [-119.999987, 54.754386], [-120.000285, 54.797688], [-119.999978, 54.91618], [-119.999986, 54.997117], [-119.999731, 55.054054], [-119.999982, 55.072611], [-120.000127, 55.092928], [-120.000025, 55.113611], [-120.000309, 55.1192], [-120.000012, 55.148553], [-119.999968, 55.17319], [-120.000157, 55.1988], [-119.999815, 55.332952], [-120.0, 55.351546], [-120.000107, 55.353641], [-120.0, 55.372742], [-120.0, 55.402344], [-120.001354, 55.481797], [-120.001528, 55.487263], [-120.001756, 55.50571], [-120.001353, 55.533102], [-120.0, 55.548583], [-120.001349, 55.606818], [-120.001349, 55.621357], [-120.000181, 55.635814], [-120.0, 55.663637], [-119.99995, 55.778381], [-120.000114, 55.815814], [-120.0, 55.881292], [-120.00021, 55.897845], [-120.000385, 55.903178], [-120.000354, 55.912463], [-120.000039, 55.927083], [-119.999951, 55.965426], [-120.000277, 55.999723], [-120.00133, 56.014315], [-120.000032, 56.057963], [-120.00132, 56.072485], [-120.0, 56.145537], [-120.004958, 56.140369], [-120.009662, 56.137705], [-120.015754, 56.135021], [-120.022717, 56.131578], [-120.029368, 56.129091], [-120.033007, 56.127953], [-120.036679, 56.127119], [-120.040695, 56.126821], [-120.04846, 56.126639], [-120.052243, 56.126464], [-120.057459, 56.125725], [-120.063014, 56.123262], [-120.066187, 56.120113], [-120.069258, 56.11724], [-120.073511, 56.114306], [-120.085643, 56.1092], [-120.096681, 56.104727], [-120.104909, 56.101182], [-120.112477, 56.098779], [-120.117229, 56.098153], [-120.122334, 56.09781], [-120.134074, 56.098915], [-120.13803, 56.098937], [-120.143249, 56.097936], [-120.151907, 56.095493], [-120.160636, 56.092936], [-120.162475, 56.09245], [-120.164991, 56.091414], [-120.170767, 56.090863], [-120.180086, 56.091421], [-120.183732, 56.091492], [-120.1897, 56.091377], [-120.195766, 56.091635], [-120.199392, 56.092068], [-120.204192, 56.093415], [-120.205238, 56.093312], [-120.207238, 56.093288], [-120.207922, 56.093345], [-120.228231, 56.097997], [-120.22909, 56.099347], [-120.229376, 56.101292], [-120.232387, 56.104777], [-120.235689, 56.105226], [-120.240122, 56.105341], [-120.247952, 56.105404], [-120.252205, 56.105645], [-120.258455, 56.105459], [-120.260028, 56.105359], [-120.263488, 56.104801], [-120.265865, 56.10469], [-120.268574, 56.103896], [-120.270776, 56.103944], [-120.274247, 56.102776], [-120.279419, 56.101841], [-120.284222, 56.101386], [-120.290647, 56.101126], [-120.293235, 56.100869], [-120.294685, 56.10093], [-120.296492, 56.100663], [-120.301316, 56.100418], [-120.308069, 56.100465], [-120.309142, 56.100391], [-120.312151, 56.101409], [-120.314651, 56.102544], [-120.316816, 56.10254], [-120.318646, 56.102348], [-120.322424, 56.102091], [-120.328944, 56.101257], [-120.332607, 56.100656], [-120.334022, 56.100728], [-120.33641, 56.100582], [-120.338727, 56.10057], [-120.340429, 56.100372], [-120.343521, 56.099778], [-120.34559, 56.09874], [-120.348199, 56.098509], [-120.352954, 56.098236], [-120.357621, 56.097048], [-120.359859, 56.096302], [-120.363361, 56.096154], [-120.370041, 56.096342], [-120.377, 56.097183], [-120.381743, 56.097235], [-120.392673, 56.098439], [-120.402516, 56.098924], [-120.41623, 56.100469], [-120.42204, 56.101403], [-120.425274, 56.100782], [-120.440536, 56.102352], [-120.44207, 56.103709], [-120.446745, 56.105264], [-120.454489, 56.106436], [-120.460777, 56.108543], [-120.462461, 56.110578], [-120.463617, 56.11221], [-120.466211, 56.112824], [-120.467035, 56.113435], [-120.468224, 56.113902], [-120.47038, 56.114433], [-120.475062, 56.115218], [-120.477398, 56.11596], [-120.478455, 56.116058], [-120.481059, 56.116071], [-120.485483, 56.116734], [-120.487471, 56.117835], [-120.487953, 56.118041], [-120.489891, 56.118216], [-120.491403, 56.118593], [-120.493029, 56.118667], [-120.493996, 56.118622], [-120.502793, 56.118719], [-120.518901, 56.117372], [-120.52425, 56.116436], [-120.533326, 56.115144], [-120.536492, 56.115312], [-120.537767, 56.115502], [-120.54174, 56.115731], [-120.546117, 56.116218], [-120.549702, 56.116694], [-120.551509, 56.117074], [-120.556739, 56.120048], [-120.56533, 56.122853], [-120.567733, 56.123127], [-120.569013, 56.123605], [-120.5715, 56.124263], [-120.576636, 56.125276], [-120.586554, 56.126599], [-120.588872, 56.1276], [-120.590134, 56.128013], [-120.593672, 56.12897], [-120.598186, 56.129842], [-120.599487, 56.130044], [-120.60847, 56.128694], [-120.628686, 56.127399], [-120.634774, 56.127987], [-120.640287, 56.128361], [-120.645219, 56.130098], [-120.648208, 56.130807], [-120.652805, 56.132088], [-120.655124, 56.13289], [-120.660534, 56.136332], [-120.672796, 56.137491], [-120.674012, 56.13781], [-120.674928, 56.13833], [-120.677558, 56.13887], [-120.678949, 56.13884], [-120.679403, 56.138877], [-120.689477, 56.140062], [-120.695018, 56.139853], [-120.697402, 56.140038], [-120.698646, 56.140318], [-120.701237, 56.141728], [-120.704576, 56.140102], [-120.707861, 56.138971], [-120.708566, 56.138551], [-120.709048, 56.138014], [-120.70895, 56.136527], [-120.709027, 56.136019], [-120.709508, 56.135269], [-120.710636, 56.134436], [-120.712013, 56.133887], [-120.712916, 56.13367], [-120.71424, 56.133572], [-120.715682, 56.133572], [-120.718666, 56.134094], [-120.722075, 56.134013], [-120.724533, 56.134133], [-120.727053, 56.134153], [-120.728293, 56.133928], [-120.728447, 56.133796], [-120.729614, 56.133377], [-120.730758, 56.132787], [-120.732179, 56.132185], [-120.732977, 56.132028], [-120.733443, 56.13201], [-120.734362, 56.132018], [-120.734567, 56.132067], [-120.735696, 56.132564], [-120.736121, 56.132994], [-120.740202, 56.133464], [-120.742045, 56.133126], [-120.746547, 56.131978], [-120.747978, 56.131699], [-120.750408, 56.13141], [-120.752159, 56.13137], [-120.753177, 56.131443], [-120.754251, 56.131669], [-120.756475, 56.132306], [-120.757967, 56.132482], [-120.760748, 56.132568], [-120.762491, 56.132763], [-120.771805, 56.134207], [-120.780154, 56.134277], [-120.782231, 56.134096], [-120.783227, 56.13453], [-120.78585, 56.136293], [-120.78988, 56.136278], [-120.795659, 56.137077], [-120.797098, 56.137372], [-120.797736, 56.13805], [-120.799617, 56.139422], [-120.802099, 56.141757], [-120.802954, 56.142433], [-120.803464, 56.142698], [-120.804812, 56.143839], [-120.805394, 56.144464], [-120.808132, 56.148156], [-120.809245, 56.149057], [-120.809477, 56.149327], [-120.811314, 56.149513], [-120.815712, 56.148248], [-120.817003, 56.147996]], [[-120.277175, 55.781353], [-120.279038, 55.782236], [-120.280643, 55.782909], [-120.286554, 55.785031], [-120.289316, 55.785837], [-120.289326, 55.788588], [-120.276367, 55.78857], [-120.27637, 55.784025], [-120.276546, 55.783549], [-120.276693, 55.783426], [-120.2736, 55.781454], [-120.273185, 55.781275], [-120.27116, 55.781279], [-120.269447, 55.7812], [-120.265393, 55.781286], [-120.22457, 55.781272], [-120.224593, 55.773997], [-120.211621, 55.773962], [-120.211763, 55.761359], [-120.211643, 55.761349], [-120.211631, 55.754069], [-120.211741, 55.753528], [-120.21173, 55.752209], [-120.211713, 55.751053], [-120.211599, 55.750802], [-120.211393, 55.748916], [-120.211398, 55.748182], [-120.200689, 55.748187], [-120.200776, 55.75219], [-120.183171, 55.752191], [-120.183167, 55.752102], [-120.172692, 55.752124], [-120.172638, 55.744961], [-120.146731, 55.744899], [-120.146827, 55.74358], [-120.14679, 55.737673], [-120.172665, 55.737698], [-120.17274, 55.730442], [-120.198634, 55.73042], [-120.198634, 55.735134], [-120.201263, 55.735113], [-120.201349, 55.73345], [-120.211587, 55.733432], [-120.211519, 55.730463], [-120.224571, 55.730481], [-120.250454, 55.730365], [-120.250497, 55.744982], [-120.250709, 55.744983], [-120.250709, 55.744891], [-120.263427, 55.744894], [-120.263449, 55.75955], [-120.276249, 55.759469], [-120.276248, 55.759616], [-120.276374, 55.759616], [-120.27636, 55.766717], [-120.302282, 55.766737], [-120.302288, 55.773966], [-120.27639, 55.773975], [-120.276451, 55.777229], [-120.276354, 55.780882], [-120.277175, 55.781353]], [[-120.140921, 55.710725], [-120.142064, 55.71137], [-120.145645, 55.712734], [-120.146556, 55.713124], [-120.146736, 55.713272], [-120.146775, 55.714711], [-120.146681, 55.715779], [-120.146762, 55.715862], [-120.146809, 55.723153], [-120.124805, 55.723145], [-120.124292, 55.723231], [-120.111907, 55.72321], [-120.111711, 55.722898], [-120.111714, 55.722216], [-120.111952, 55.721763], [-120.112401, 55.721531], [-120.11388, 55.721117], [-120.114692, 55.721117], [-120.116253, 55.721333], [-120.116842, 55.721339], [-120.117344, 55.721225], [-120.117532, 55.721058], [-120.117592, 55.720889], [-120.1175, 55.720635], [-120.116631, 55.719671], [-120.116216, 55.719257], [-120.115102, 55.718394], [-120.114983, 55.718059], [-120.115057, 55.717908], [-120.115292, 55.717743], [-120.115912, 55.717748], [-120.117553, 55.717966], [-120.118366, 55.717958], [-120.118938, 55.717765], [-120.119242, 55.717502], [-120.11937, 55.717244], [-120.120164, 55.717247], [-120.120232, 55.717532], [-120.12183, 55.71793], [-120.12255, 55.717907], [-120.12307, 55.717773], [-120.123355, 55.717805], [-120.124604, 55.718178], [-120.125065, 55.717707], [-120.125158, 55.715818], [-120.119523, 55.71582], [-120.119748, 55.715195], [-120.120165, 55.714513], [-120.120504, 55.714215], [-120.121323, 55.713695], [-120.121759, 55.713225], [-120.123047, 55.713662], [-120.12406, 55.713826], [-120.124779, 55.71376], [-120.126332, 55.713179], [-120.126838, 55.713112], [-120.127697, 55.714622], [-120.128112, 55.714574], [-120.128441, 55.715289], [-120.128808, 55.715555], [-120.129125, 55.715489], [-120.129674, 55.715196], [-120.1304, 55.714324], [-120.129993, 55.714319], [-120.130755, 55.713387], [-120.131293, 55.713542], [-120.131778, 55.713154], [-120.132015, 55.712833], [-120.132007, 55.712522], [-120.132899, 55.712795], [-120.134068, 55.712738], [-120.134412, 55.712303], [-120.135273, 55.712271], [-120.135899, 55.71196], [-120.137053, 55.711193], [-120.137692, 55.711613], [-120.138184, 55.71142], [-120.138519, 55.711408], [-120.138281, 55.711076], [-120.138599, 55.710964], [-120.139407, 55.710914], [-120.139823, 55.711362], [-120.140787, 55.711328], [-120.140584, 55.710763], [-120.140921, 55.710725]]]]}, "properties": {"name": "Peace River D", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Peace River D", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955021", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-123.468605, 56.021698], [-123.500667, 56.02811], [-123.547154, 56.031783], [-123.578719, 56.035917], [-123.617377, 56.037161], [-123.64185, 56.039486], [-123.658285, 56.047198], [-123.683844, 56.050651], [-123.69514, 56.050678], [-123.718636, 56.044425], [-123.736844, 56.042659], [-123.764087, 56.050033], [-123.773838, 56.046887], [-123.786222, 56.038923], [-123.793826, 56.03189], [-123.802231, 56.019045], [-123.816883, 56.006265], [-123.827149, 55.993409], [-123.815906, 55.980797], [-123.815288, 55.980189], [-123.809937, 55.979086], [-123.802924, 55.970706], [-123.794515, 55.967716], [-123.77346, 55.957479], [-123.762073, 55.94922], [-123.757572, 55.940083], [-123.751531, 55.933895], [-123.74589, 55.933777], [-123.736635, 55.937881], [-123.726748, 55.939074], [-123.705739, 55.942458], [-123.688429, 55.942836], [-123.681437, 55.940117], [-123.68294, 55.939212], [-123.684286, 55.913676], [-123.667732, 55.909749], [-123.649694, 55.896302], [-123.618901, 55.888278], [-123.608036, 55.883145], [-123.578967, 55.880875], [-123.576198, 55.870535], [-123.542913, 55.864908], [-123.52366, 55.863167], [-123.511003, 55.86925], [-123.485376, 55.873014], [-123.442351, 55.882474], [-123.430833, 55.882141], [-123.418129, 55.871497], [-123.400593, 55.866425], [-123.386291, 55.8642], [-123.367726, 55.861078], [-123.363664, 55.853829], [-123.382871, 55.839487], [-123.381597, 55.834127], [-123.364664, 55.829148], [-123.351342, 55.830451], [-123.339258, 55.819897], [-123.339859, 55.808906], [-123.317957, 55.80024], [-123.307408, 55.776096], [-123.315496, 55.770895], [-123.313598, 55.757797], [-123.341399, 55.73126], [-123.339073, 55.727319], [-123.326662, 55.715373], [-123.306928, 55.706886], [-123.260829, 55.697108], [-123.228411, 55.711812], [-123.203648, 55.714247], [-123.180817, 55.711594], [-123.198507, 55.727193], [-123.191175, 55.733216], [-123.164293, 55.737501], [-123.14377, 55.731686], [-123.136452, 55.722977], [-123.139116, 55.712066], [-123.127863, 55.697177], [-123.120457, 55.693955], [-123.120379, 55.688791], [-123.123006, 55.684446], [-123.127933, 55.680493], [-123.127971, 55.673929], [-123.127644, 55.660377], [-123.142205, 55.651858], [-123.142936, 55.640441], [-123.125926, 55.629624], [-123.103006, 55.627818], [-123.078161, 55.625498], [-123.072795, 55.620845], [-123.080639, 55.610826], [-123.071713, 55.595793], [-123.071809, 55.582667], [-123.037875, 55.562517], [-123.013629, 55.559746], [-122.996901, 55.563421], [-122.978482, 55.570899], [-122.965536, 55.582165], [-122.948041, 55.580919], [-122.93573, 55.5724], [-122.921157, 55.564019], [-122.942539, 55.554064], [-122.93991, 55.536927], [-122.932919, 55.521785], [-122.953328, 55.503146], [-122.956661, 55.488287], [-122.933095, 55.472312], [-122.927786, 55.46305], [-122.937846, 55.459478], [-122.955631, 55.459557], [-122.980075, 55.464697], [-123.002297, 55.458262], [-123.00572, 55.446078], [-123.00121, 55.438199], [-122.986632, 55.428286], [-122.987187, 55.401535], [-122.974535, 55.398085], [-122.920235, 55.413138], [-122.87441, 55.419017], [-122.861965, 55.415763], [-122.877789, 55.406203], [-122.86938, 55.400104], [-122.846042, 55.398916], [-122.83954, 55.393083], [-122.830314, 55.384382], [-122.811555, 55.387509], [-122.78915, 55.381116], [-122.742708, 55.365542], [-122.739977, 55.354066], [-122.719897, 55.343978], [-122.698196, 55.347012], [-122.678487, 55.340353], [-122.654945, 55.342432], [-122.636698, 55.359145], [-122.630081, 55.393951], [-122.628589, 55.395343], [-122.619003, 55.400712], [-122.603116, 55.410212], [-122.589957, 55.414495], [-122.578549, 55.41258], [-122.560589, 55.403786], [-122.559844, 55.403476], [-122.547098, 55.390677], [-122.543892, 55.38406], [-122.522502, 55.376324], [-122.511026, 55.366599], [-122.504326, 55.363768], [-122.496295, 55.364267], [-122.490188, 55.360206], [-122.485693, 55.352587], [-122.484757, 55.348755], [-122.461793, 55.344556], [-122.445736, 55.335165], [-122.435888, 55.333142], [-122.429226, 55.330766], [-122.385967, 55.335309], [-122.357099, 55.302161], [-122.330501, 55.284255], [-122.296628, 55.251089], [-122.302348, 55.243663], [-122.297101, 55.239532], [-122.275401, 55.23734], [-122.259078, 55.231158], [-122.250564, 55.226096], [-122.238512, 55.222814], [-122.225673, 55.207679], [-122.239025, 55.202832], [-122.255915, 55.203262], [-122.27071, 55.190795], [-122.273883, 55.181111], [-122.262922, 55.172238], [-122.251244, 55.161686], [-122.251338, 55.143453], [-122.239815, 55.140777], [-122.230837, 55.141107], [-122.223384, 55.149847], [-122.206981, 55.152289], [-122.1907, 55.148354], [-122.176931, 55.145944], [-122.161138, 55.134145], [-122.166716, 55.123366], [-122.160607, 55.114957], [-122.159401, 55.105466], [-122.15015, 55.102506], [-122.124404, 55.098294], [-122.10021, 55.105154], [-122.089784, 55.097637], [-122.079382, 55.08936], [-122.059347, 55.072958], [-122.035138, 55.065298], [-122.016837, 55.044591], [-122.008785, 55.033753], [-121.995943, 55.029325], [-121.993279, 55.028494], [-121.98128, 55.02735], [-121.971372, 55.027257], [-121.967127, 55.019828], [-121.96128, 55.013205], [-121.946515, 55.011536], [-121.934894, 55.003608], [-121.937583, 54.996142], [-121.919736, 54.987041], [-121.914319, 54.97629], [-121.904305, 54.966224], [-121.895762, 54.96373], [-121.891567, 54.95896], [-121.868528, 54.955715], [-121.860363, 54.944442], [-121.858704, 54.93926], [-121.853612, 54.936087], [-121.844846, 54.933325], [-121.843306, 54.928276], [-121.845538, 54.919619], [-121.851968, 54.916393], [-121.864653, 54.914989], [-121.868521, 54.909516], [-121.868246, 54.904595], [-121.859924, 54.899706], [-121.832887, 54.903631], [-121.838138, 54.897753], [-121.851684, 54.891431], [-121.869379, 54.885216], [-121.869962, 54.873375], [-121.865097, 54.869139], [-121.829463, 54.862607], [-121.802586, 54.858829], [-121.797046, 54.855124], [-121.791879, 54.839316], [-121.782022, 54.839206], [-121.775199, 54.843197], [-121.7712, 54.851679], [-121.762278, 54.85329], [-121.757532, 54.858334], [-121.734979, 54.870571], [-121.740426, 54.880608], [-121.724891, 54.88647], [-121.695224, 54.87882], [-121.687382, 54.872455], [-121.672988, 54.863843], [-121.655743, 54.857226], [-121.646118, 54.858033], [-121.642423, 54.85179], [-121.643093, 54.845271], [-121.624947, 54.838917], [-121.580184, 54.824346], [-121.553819, 54.820376], [-121.546472, 54.813868], [-121.543371, 54.805627], [-121.538781, 54.800978], [-121.522057, 54.798193], [-121.520453, 54.791678], [-121.522754, 54.779041], [-121.527117, 54.771453], [-121.518642, 54.766939], [-121.499865, 54.757112], [-121.488879, 54.75233], [-121.493705, 54.745275], [-121.487988, 54.736637], [-121.476095, 54.730127], [-121.473929, 54.723613], [-121.478769, 54.706588], [-121.485658, 54.695277], [-121.497815, 54.690067], [-121.518687, 54.684965], [-121.519151, 54.671536], [-121.523045, 54.665414], [-121.523507, 54.651985], [-121.499195, 54.634989], [-121.490071, 54.625027], [-121.492361, 54.622365], [-121.481877, 54.608814], [-121.473905, 54.608811], [-121.46753, 54.609338], [-121.459785, 54.608936], [-121.45181, 54.607604], [-121.452747, 54.597368], [-121.43772, 54.587136], [-121.445054, 54.577026], [-121.444957, 54.576961], [-121.455273, 54.570053], [-121.457991, 54.565624], [-121.453942, 54.563017], [-121.447614, 54.563799], [-121.436416, 54.567054], [-121.426119, 54.568657], [-121.421486, 54.567266], [-121.402834, 54.569367], [-121.397373, 54.568963], [-121.390007, 54.557666], [-121.396263, 54.536261], [-121.397356, 54.53367], [-121.389983, 54.532029], [-121.369517, 54.537249], [-121.355455, 54.53574], [-121.339466, 54.527049], [-121.32779, 54.52468], [-121.313284, 54.518356], [-121.316796, 54.512892], [-121.31022, 54.514804], [-121.293498, 54.517109], [-121.284437, 54.513813], [-121.272075, 54.517237], [-121.265703, 54.525015], [-121.263741, 54.534972], [-121.248165, 54.546568], [-121.219917, 54.549642], [-121.207059, 54.547517], [-121.199238, 54.547309], [-121.19073, 54.548615], [-121.179621, 54.548533], [-121.17339, 54.547864], [-121.166829, 54.545152], [-121.158782, 54.545006], [-121.157159, 54.551727], [-121.145022, 54.552759], [-121.139132, 54.551826], [-121.124525, 54.548963], [-121.120241, 54.545264], [-121.125235, 54.544484], [-121.12117, 54.542038], [-121.12245, 54.536901], [-121.134267, 54.5136], [-121.13361, 54.509843], [-121.126196, 54.500472], [-121.117136, 54.500782], [-121.121261, 54.493346], [-121.127052, 54.490526], [-121.126189, 54.48387], [-121.12191, 54.480501], [-121.119457, 54.474961], [-121.104161, 54.478237], [-121.102873, 54.478199], [-121.102481, 54.47831], [-121.102017, 54.478312], [-121.101319, 54.478417], [-121.100268, 54.478122], [-121.099897, 54.478098], [-121.099456, 54.47828], [-121.099022, 54.478327], [-121.098443, 54.47849], [-121.098077, 54.478447], [-121.097837, 54.478273], [-121.097578, 54.478215], [-121.097475, 54.478393], [-121.096782, 54.478723], [-121.096446, 54.478953], [-121.095806, 54.479141], [-121.095074, 54.479246], [-121.094652, 54.4794], [-121.094438, 54.479666], [-121.094069, 54.479948], [-121.092277, 54.480288], [-121.091198, 54.480936], [-121.090494, 54.481142], [-121.090215, 54.481506], [-121.089867, 54.481688], [-121.088742, 54.481617], [-121.087953, 54.481362], [-121.087609, 54.481114], [-121.086867, 54.481129], [-121.085899, 54.48105], [-121.08433, 54.481602], [-121.08403, 54.48174], [-121.08358, 54.48211], [-121.082356, 54.482523], [-121.081823, 54.483054], [-121.08082, 54.483677], [-121.080226, 54.483855], [-121.079614, 54.484403], [-121.078796, 54.484407], [-121.078652, 54.48445], [-121.078386, 54.48486], [-121.078181, 54.484991], [-121.077366, 54.48488], [-121.076746, 54.485302], [-121.075692, 54.485374], [-121.07531, 54.485611], [-121.073737, 54.485595], [-121.073189, 54.485739], [-121.073016, 54.485844], [-121.072691, 54.485857], [-121.072152, 54.486126], [-121.070948, 54.486116], [-121.070683, 54.486193], [-121.069969, 54.486605], [-121.068988, 54.48676], [-121.067845, 54.4871], [-121.066737, 54.487686], [-121.066166, 54.488341], [-121.065737, 54.488559], [-121.065001, 54.48879], [-121.064259, 54.488518], [-121.063382, 54.488414], [-121.062323, 54.488953], [-121.061828, 54.489288], [-121.060646, 54.489466], [-121.059969, 54.489411], [-121.059517, 54.489178], [-121.057373, 54.489144], [-121.055234, 54.488668], [-121.054987, 54.488674], [-121.054749, 54.488805], [-121.054642, 54.488804], [-121.053953, 54.488325], [-121.05332, 54.488342], [-121.052882, 54.488442], [-121.052667, 54.488421], [-121.052478, 54.488176], [-121.052194, 54.487982], [-121.051902, 54.487968], [-121.05196, 54.48833], [-121.05173, 54.488325], [-121.051273, 54.48821], [-121.051155, 54.488424], [-121.051359, 54.488687], [-121.051335, 54.488849], [-121.050639, 54.488874], [-121.050449, 54.488988], [-121.050428, 54.489077], [-121.050869, 54.48922], [-121.050947, 54.489526], [-121.051185, 54.489728], [-121.051683, 54.490617], [-121.052049, 54.491027], [-121.052596, 54.491215], [-121.053312, 54.491739], [-121.054116, 54.49204], [-121.054237, 54.492141], [-121.05428, 54.492483], [-121.053951, 54.493592], [-121.054763, 54.493723], [-121.055004, 54.493834], [-121.054998, 54.493942], [-121.054677, 54.494233], [-121.05449, 54.49459], [-121.054513, 54.495723], [-121.054644, 54.495878], [-121.054651, 54.496067], [-121.05434, 54.496458], [-121.053467, 54.496946], [-121.053261, 54.497393], [-121.052872, 54.497746], [-121.052787, 54.497933], [-121.052782, 54.498041], [-121.052889, 54.498078], [-121.053025, 54.497785], [-121.053425, 54.497494], [-121.053692, 54.497373], [-121.053876, 54.497456], [-121.053846, 54.497752], [-121.053686, 54.497849], [-121.053595, 54.498135], [-121.053303, 54.498436], [-121.053262, 54.498993], [-121.05262, 54.499485], [-121.052187, 54.499164], [-121.052196, 54.498975], [-121.051967, 54.498927], [-121.051808, 54.499032], [-121.051789, 54.499418], [-121.051888, 54.499609], [-121.05255, 54.499961], [-121.052494, 54.500185], [-121.052133, 54.500638], [-121.051904, 54.501236], [-121.05101, 54.501842], [-121.050976, 54.502228], [-121.050877, 54.502379], [-121.05069, 54.502421], [-121.050308, 54.502307], [-121.050073, 54.502357], [-121.050093, 54.502942], [-121.049711, 54.503143], [-121.049709, 54.503529], [-121.050838, 54.503512], [-121.05134, 54.503681], [-121.051609, 54.503856], [-121.051816, 54.504389], [-121.052008, 54.50682], [-121.051586, 54.507253], [-121.051527, 54.507522], [-121.051629, 54.507667], [-121.051812, 54.507716], [-121.052695, 54.50764], [-121.05313, 54.50859], [-121.053242, 54.509482], [-121.053007, 54.509838], [-121.053024, 54.510153], [-121.053352, 54.511066], [-121.053427, 54.511094], [-121.053286, 54.511443], [-121.052655, 54.511765], [-121.052873, 54.513323], [-121.052738, 54.513574], [-121.052579, 54.513679], [-121.052571, 54.513813], [-121.052632, 54.51385], [-121.05339, 54.513809], [-121.053297, 54.514149], [-121.053561, 54.514441], [-121.053584, 54.514602], [-121.052749, 54.515823], [-121.052663, 54.516301], [-121.052869, 54.51704], [-121.053169, 54.517282], [-121.053651, 54.517305], [-121.053807, 54.517487], [-121.054068, 54.518147], [-121.054186, 54.519028], [-121.054899, 54.519748], [-121.054828, 54.519929], [-121.054878, 54.520173], [-121.056204, 54.521175], [-121.057957, 54.522988], [-121.057984, 54.523401], [-121.05766, 54.52357], [-121.05748, 54.523852], [-121.057588, 54.524], [-121.058093, 54.524133], [-121.058899, 54.523722], [-121.05983, 54.523644], [-121.060266, 54.524237], [-121.060021, 54.525278], [-121.059542, 54.52634], [-121.059652, 54.527192], [-121.059384, 54.527764], [-121.059552, 54.528598], [-121.059046, 54.529266], [-121.059015, 54.530336], [-121.058619, 54.531551], [-121.058129, 54.532244], [-121.057478, 54.532769], [-121.057394, 54.533246], [-121.055963, 54.534465], [-121.054287, 54.535209], [-121.05405, 54.535222], [-121.053513, 54.535068], [-121.052636, 54.535008], [-121.052421, 54.53525], [-121.052345, 54.535897], [-121.051771, 54.536315], [-121.05123, 54.536297], [-121.050903, 54.535925], [-121.050658, 54.535823], [-121.049564, 54.535764], [-121.048422, 54.535546], [-121.047406, 54.53545], [-121.046703, 54.535528], [-121.046489, 54.535845], [-121.047082, 54.536592], [-121.047064, 54.537037], [-121.046672, 54.537111], [-121.046504, 54.537328], [-121.046136, 54.53749], [-121.045504, 54.53754], [-121.045452, 54.538212], [-121.044611, 54.53867], [-121.044066, 54.53915], [-121.043283, 54.539557], [-121.043157, 54.539773], [-121.043235, 54.54009], [-121.043624, 54.540374], [-121.044991, 54.540523], [-121.045938, 54.540789], [-121.046203, 54.541081], [-121.046277, 54.541793], [-121.04673, 54.542321], [-121.04787, 54.543086], [-121.048627, 54.543395], [-121.049032, 54.543644], [-121.04984, 54.544206], [-121.050277, 54.544778], [-121.050124, 54.545064], [-121.049596, 54.545433], [-121.048729, 54.54549], [-121.047238, 54.545962], [-121.046742, 54.54598], [-121.046006, 54.54648], [-121.045875, 54.546649], [-121.045907, 54.546946], [-121.045738, 54.547231], [-121.045514, 54.547416], [-121.045545, 54.54802], [-121.044384, 54.550005], [-121.043808, 54.550436], [-121.043025, 54.550603], [-121.042727, 54.551056], [-121.042394, 54.551196], [-121.042458, 54.551456], [-121.042344, 54.55158], [-121.042243, 54.552091], [-121.042295, 54.552631], [-121.04193, 54.552823], [-121.042094, 54.554229], [-121.042011, 54.554362], [-121.041822, 54.554448], [-121.041166, 54.554545], [-121.040577, 54.554564], [-121.040185, 54.554369], [-121.039635, 54.554225], [-121.038777, 54.5544], [-121.038617, 54.554478], [-121.038389, 54.554743], [-121.038426, 54.554943], [-121.038593, 54.554998], [-121.039103, 54.555015], [-121.039267, 54.555118], [-121.039623, 54.555465], [-121.040037, 54.556146], [-121.040588, 54.556605], [-121.040789, 54.556958], [-121.040835, 54.557587], [-121.040999, 54.558057], [-121.040813, 54.558388], [-121.039765, 54.559269], [-121.039434, 54.559714], [-121.039587, 54.560407], [-121.040165, 54.560947], [-121.040466, 54.561097], [-121.040524, 54.561503], [-121.040359, 54.561698], [-121.03996, 54.56196], [-121.039337, 54.562039], [-121.038518, 54.562665], [-121.038181, 54.56327], [-121.038167, 54.563881], [-121.037971, 54.564436], [-121.03807, 54.564941], [-121.038307, 54.565133], [-121.038568, 54.565525], [-121.038302, 54.565679], [-121.039405, 54.567866], [-121.039973, 54.568192], [-121.039854, 54.56935], [-121.038806, 54.571515], [-121.038784, 54.571815], [-121.038942, 54.572438], [-121.040448, 54.57347], [-121.040887, 54.573845], [-121.041508, 54.574097], [-121.0419, 54.574329], [-121.042118, 54.574654], [-121.042064, 54.575481], [-121.041463, 54.57595], [-121.039643, 54.576643], [-121.039419, 54.576828], [-121.039344, 54.577185], [-121.039857, 54.577845], [-121.039737, 54.578213], [-121.03863, 54.578808], [-121.037272, 54.579344], [-121.036784, 54.579438], [-121.035948, 54.580007], [-121.035909, 54.580466], [-121.036129, 54.580786], [-121.036058, 54.581645], [-121.036498, 54.581957], [-121.036976, 54.582138], [-121.037047, 54.582353], [-121.036834, 54.582582], [-121.036123, 54.582672], [-121.03524, 54.583071], [-121.035116, 54.583212], [-121.035491, 54.583884], [-121.035788, 54.585127], [-121.035715, 54.585542], [-121.035293, 54.585878], [-121.034138, 54.586046], [-121.033572, 54.586247], [-121.033662, 54.58656], [-121.033595, 54.586997], [-121.033299, 54.587235], [-121.03266, 54.587496], [-121.032248, 54.587872], [-121.032175, 54.588397], [-121.032484, 54.588679], [-121.032783, 54.58879], [-121.033951, 54.588916], [-121.034797, 54.58937], [-121.034902, 54.589484], [-121.034888, 54.589786], [-121.034802, 54.590009], [-121.034605, 54.590149], [-121.034427, 54.590188], [-121.032282, 54.58996], [-121.032038, 54.590058], [-121.031484, 54.590926], [-121.031354, 54.591284], [-121.031525, 54.59159], [-121.030651, 54.592681], [-121.03056, 54.592958], [-121.030562, 54.593552], [-121.030776, 54.59396], [-121.030844, 54.594556], [-121.030788, 54.595209], [-121.030253, 54.595926], [-121.03026, 54.596653], [-121.029416, 54.598692], [-121.028514, 54.599572], [-121.028003, 54.599864], [-121.027271, 54.600009], [-121.026866, 54.599922], [-121.026551, 54.599635], [-121.026114, 54.59947], [-121.025532, 54.599459], [-121.024776, 54.599721], [-121.023352, 54.60045], [-121.023192, 54.600738], [-121.023997, 54.601262], [-121.025087, 54.60232], [-121.025471, 54.602545], [-121.025635, 54.603002], [-121.025592, 54.603659], [-121.025405, 54.603823], [-121.024926, 54.603859], [-121.024434, 54.603685], [-121.023921, 54.603688], [-121.020844, 54.604939], [-121.020148, 54.60536], [-121.019842, 54.605972], [-121.019143, 54.606623], [-121.017615, 54.607776], [-121.017354, 54.608127], [-121.01731, 54.608422], [-121.017468, 54.608712], [-121.018181, 54.609226], [-121.020295, 54.610017], [-121.021579, 54.610728], [-121.023246, 54.611885], [-121.026589, 54.613412], [-121.028148, 54.61377], [-121.028486, 54.613953], [-121.029356, 54.615164], [-121.029522, 54.615736], [-121.029746, 54.615924], [-121.030006, 54.617003], [-121.030461, 54.617582], [-121.030591, 54.618655], [-121.031325, 54.619202], [-121.03197, 54.619468], [-121.032248, 54.619758], [-121.032993, 54.621895], [-121.033509, 54.622855], [-121.033696, 54.623433], [-121.033557, 54.624987], [-121.033904, 54.625494], [-121.035169, 54.626627], [-121.035617, 54.626899], [-121.036568, 54.627281], [-121.037376, 54.627822], [-121.038463, 54.628285], [-121.03955, 54.628624], [-121.040967, 54.62916], [-121.041568, 54.629574], [-121.043056, 54.630303], [-121.046029, 54.633127], [-121.046533, 54.633488], [-121.048699, 54.634308], [-121.049153, 54.634768], [-121.049315, 54.63514], [-121.049348, 54.636299], [-121.050262, 54.637228], [-121.050272, 54.637515], [-121.04948, 54.638393], [-121.049443, 54.638702], [-121.049673, 54.638982], [-121.050469, 54.639377], [-121.051514, 54.639743], [-121.051787, 54.639949], [-121.052169, 54.640606], [-121.052257, 54.641372], [-121.052667, 54.641925], [-121.054793, 54.642497], [-121.057778, 54.642909], [-121.058359, 54.643111], [-121.059881, 54.644231], [-121.060361, 54.644894], [-121.060763, 54.645783], [-121.060734, 54.648411], [-121.061064, 54.648822], [-121.06271, 54.650389], [-121.063081, 54.651045], [-121.063166, 54.652045], [-121.063403, 54.652482], [-121.06409, 54.652709], [-121.06532, 54.652813], [-121.065943, 54.65274], [-121.067211, 54.652199], [-121.067901, 54.652032], [-121.069942, 54.651806], [-121.070831, 54.651796], [-121.072926, 54.651043], [-121.073761, 54.651006], [-121.074699, 54.651346], [-121.076074, 54.651364], [-121.076739, 54.651491], [-121.077276, 54.651763], [-121.077663, 54.652088], [-121.078126, 54.652773], [-121.078323, 54.653381], [-121.078199, 54.654414], [-121.077709, 54.655425], [-121.077663, 54.655778], [-121.078073, 54.65661], [-121.078534, 54.656996], [-121.07898, 54.657187], [-121.080247, 54.657507], [-121.081315, 54.657689], [-121.083344, 54.65789], [-121.085019, 54.658204], [-121.085447, 54.65842], [-121.085725, 54.658745], [-121.086846, 54.659373], [-121.08726, 54.659393], [-121.08919, 54.658883], [-121.090034, 54.65874], [-121.090595, 54.658776], [-121.090925, 54.6589], [-121.091198, 54.659179], [-121.09119, 54.660167], [-121.09145, 54.660633], [-121.091477, 54.661233], [-121.091254, 54.662076], [-121.091223, 54.662909], [-121.090914, 54.663789], [-121.090946, 54.664554], [-121.091317, 54.664963], [-121.091673, 54.665166], [-121.093708, 54.665997], [-121.094367, 54.666406], [-121.094617, 54.666693], [-121.094645, 54.667026], [-121.095147, 54.668029], [-121.095739, 54.668486], [-121.095645, 54.669908], [-121.095317, 54.670652], [-121.094984, 54.671], [-121.094439, 54.671906], [-121.094191, 54.672901], [-121.093925, 54.673334], [-121.093747, 54.674307], [-121.093885, 54.67469], [-121.094533, 54.675567], [-121.095281, 54.676235], [-121.095507, 54.677241], [-121.096501, 54.678007], [-121.096832, 54.67812], [-121.098835, 54.678268], [-121.10239, 54.678366], [-121.104291, 54.67832], [-121.106523, 54.677855], [-121.107423, 54.677875], [-121.107795, 54.678023], [-121.108594, 54.678627], [-121.108733, 54.678847], [-121.108719, 54.679233], [-121.108554, 54.679436], [-121.107876, 54.679844], [-121.106563, 54.680353], [-121.106303, 54.680572], [-121.106287, 54.681008], [-121.106532, 54.681172], [-121.10782, 54.681572], [-121.108742, 54.681699], [-121.110523, 54.682109], [-121.112569, 54.682898], [-121.112955, 54.683137], [-121.114539, 54.684732], [-121.117488, 54.686213], [-121.118437, 54.686522], [-121.122396, 54.688542], [-121.125198, 54.689314], [-121.126517, 54.689811], [-121.127397, 54.690287], [-121.129352, 54.691672], [-121.131471, 54.692803], [-121.132368, 54.693653], [-121.132701, 54.69431], [-121.133236, 54.696577], [-121.133505, 54.696861], [-121.134433, 54.6972], [-121.136751, 54.698604], [-121.137528, 54.698976], [-121.13921, 54.699315], [-121.140437, 54.699712], [-121.140878, 54.699956], [-121.142337, 54.70118], [-121.143237, 54.701502], [-121.144032, 54.701622], [-121.14836, 54.701598], [-121.149207, 54.701687], [-121.149604, 54.701931], [-121.149878, 54.703193], [-121.14966, 54.70376], [-121.148929, 54.704532], [-121.147569, 54.705376], [-121.146668, 54.706056], [-121.146141, 54.706682], [-121.14598, 54.707156], [-121.146436, 54.707598], [-121.148485, 54.708501], [-121.149728, 54.709394], [-121.14981, 54.70974], [-121.149457, 54.710473], [-121.149591, 54.710996], [-121.149509, 54.711456], [-121.14967, 54.711802], [-121.150672, 54.712585], [-121.150905, 54.713293], [-121.152345, 54.713913], [-121.153309, 54.714168], [-121.154362, 54.714058], [-121.155999, 54.714282], [-121.156766, 54.714218], [-121.1584, 54.713689], [-121.15994, 54.712719], [-121.161915, 54.712068], [-121.162884, 54.711875], [-121.163536, 54.711869], [-121.164014, 54.712051], [-121.164097, 54.712214], [-121.163824, 54.712931], [-121.163854, 54.713423], [-121.164343, 54.713894], [-121.166523, 54.714799], [-121.167218, 54.7152], [-121.167492, 54.715568], [-121.16731, 54.715776], [-121.166141, 54.716213], [-121.165422, 54.716706], [-121.164111, 54.718146], [-121.164005, 54.718682], [-121.164161, 54.719019], [-121.164724, 54.719417], [-121.165474, 54.719655], [-121.166241, 54.72004], [-121.167568, 54.720232], [-121.169178, 54.720326], [-121.169658, 54.720553], [-121.169834, 54.720847], [-121.169346, 54.721456], [-121.169648, 54.721829], [-121.170197, 54.722116], [-121.170476, 54.722464], [-121.170268, 54.722712], [-121.16971, 54.722854], [-121.16945, 54.723199], [-121.169192, 54.72406], [-121.169207, 54.72478], [-121.169759, 54.72515], [-121.170665, 54.725576], [-121.171283, 54.726077], [-121.172619, 54.726766], [-121.172991, 54.727082], [-121.173218, 54.727407], [-121.173253, 54.727887], [-121.173491, 54.728555], [-121.175089, 54.72978], [-121.176642, 54.73115], [-121.177916, 54.732907], [-121.178086, 54.733803], [-121.177911, 54.734246], [-121.176559, 54.735181], [-121.174549, 54.735925], [-121.173889, 54.736256], [-121.173533, 54.736827], [-121.17357, 54.737619], [-121.174054, 54.738248], [-121.174882, 54.738755], [-121.176216, 54.738884], [-121.177978, 54.738782], [-121.181135, 54.738837], [-121.182936, 54.73905], [-121.185123, 54.739586], [-121.185841, 54.739932], [-121.188444, 54.740789], [-121.188763, 54.740956], [-121.189391, 54.741856], [-121.189378, 54.742494], [-121.1884, 54.743143], [-121.188149, 54.743887], [-121.187821, 54.744294], [-121.187094, 54.745973], [-121.18662, 54.74647], [-121.186514, 54.747134], [-121.18657, 54.748293], [-121.186194, 54.749726], [-121.186191, 54.750166], [-121.186289, 54.750393], [-121.187041, 54.750952], [-121.188122, 54.751481], [-121.188363, 54.751335], [-121.189724, 54.752283], [-121.190927, 54.752809], [-121.192099, 54.752909], [-121.193777, 54.753211], [-121.19476, 54.753701], [-121.196595, 54.755423], [-121.197368, 54.75596], [-121.197542, 54.75622], [-121.197637, 54.756584], [-121.197882, 54.756905], [-121.198692, 54.757516], [-121.199027, 54.757652], [-121.199963, 54.758259], [-121.201165, 54.758861], [-121.203736, 54.759371], [-121.204108, 54.759543], [-121.204374, 54.759963], [-121.204118, 54.760563], [-121.203439, 54.761615], [-121.203461, 54.762139], [-121.204206, 54.762993], [-121.206305, 54.764279], [-121.208516, 54.765186], [-121.209022, 54.765516], [-121.209581, 54.766235], [-121.209353, 54.766794], [-121.207511, 54.767893], [-121.206414, 54.768272], [-121.205072, 54.768426], [-121.202573, 54.768496], [-121.200439, 54.768738], [-121.199156, 54.769014], [-121.198775, 54.769225], [-121.198828, 54.769406], [-121.199693, 54.770042], [-121.199881, 54.770304], [-121.201938, 54.771827], [-121.202443, 54.772435], [-121.203005, 54.773428], [-121.203015, 54.773993], [-121.202045, 54.775386], [-121.200551, 54.776669], [-121.200036, 54.77675], [-121.199544, 54.776684], [-121.198617, 54.775869], [-121.196195, 54.775026], [-121.195788, 54.774946], [-121.194496, 54.775093], [-121.193252, 54.775464], [-121.192251, 54.776004], [-121.190356, 54.778405], [-121.190212, 54.778746], [-121.188353, 54.781301], [-121.188575, 54.781729], [-121.189807, 54.782396], [-121.190942, 54.783743], [-121.19139, 54.784448], [-121.191029, 54.78479], [-121.190658, 54.785467], [-121.190038, 54.785864], [-121.191156, 54.785767], [-121.191148, 54.786068], [-121.191328, 54.786529], [-121.191852, 54.787032], [-121.193074, 54.787849], [-121.193336, 54.788635], [-121.193697, 54.789252], [-121.195153, 54.790064], [-121.196327, 54.790585], [-121.197003, 54.791144], [-121.197405, 54.792246], [-121.197961, 54.792727], [-121.19658, 54.793079], [-121.19683, 54.793182], [-121.198155, 54.794271], [-121.199295, 54.795586], [-121.200661, 54.796645], [-121.203595, 54.798588], [-121.204945, 54.799173], [-121.205069, 54.799318], [-121.205985, 54.799902], [-121.20774, 54.800726], [-121.210099, 54.801276], [-121.211969, 54.802073], [-121.213515, 54.802934], [-121.214173, 54.803548], [-121.214173, 54.803789], [-121.214649, 54.804669], [-121.215275, 54.805497], [-121.215309, 54.805651], [-121.215929, 54.806239], [-121.217566, 54.807136], [-121.217969, 54.808265], [-121.21792, 54.80893], [-121.217343, 54.809412], [-121.21643, 54.809688], [-121.215773, 54.809738], [-121.214442, 54.809642], [-121.213473, 54.809875], [-121.212941, 54.810295], [-121.212952, 54.810641], [-121.213348, 54.811111], [-121.213852, 54.811505], [-121.215268, 54.812015], [-121.21578, 54.812279], [-121.216787, 54.8134], [-121.216797, 54.813978], [-121.216575, 54.814398], [-121.216239, 54.814855], [-121.2157, 54.815277], [-121.216188, 54.815852], [-121.217331, 54.816818], [-121.217899, 54.81744], [-121.218114, 54.817813], [-121.218359, 54.818765], [-121.218676, 54.818947], [-121.219097, 54.819428], [-121.219354, 54.820002], [-121.218988, 54.821043], [-121.218451, 54.82122], [-121.217352, 54.821389], [-121.216416, 54.82137], [-121.215847, 54.821454], [-121.215505, 54.821733], [-121.215106, 54.822361], [-121.215085, 54.822725], [-121.215398, 54.823476], [-121.215811, 54.823969], [-121.216466, 54.824417], [-121.217148, 54.824665], [-121.217779, 54.824779], [-121.219108, 54.82476], [-121.219663, 54.824674], [-121.220497, 54.82502], [-121.220839, 54.825317], [-121.220904, 54.825642], [-121.220538, 54.826306], [-121.22004, 54.826625], [-121.219122, 54.826999], [-121.218627, 54.827126], [-121.217954, 54.827143], [-121.217512, 54.827679], [-121.217375, 54.828207], [-121.217813, 54.828986], [-121.21831, 54.830322], [-121.218992, 54.831034], [-121.219348, 54.831309], [-121.2203, 54.831856], [-121.221496, 54.832299], [-121.22392, 54.833498], [-121.225748, 54.834287], [-121.227763, 54.834731], [-121.229705, 54.834949], [-121.230795, 54.835183], [-121.231278, 54.835392], [-121.231993, 54.835993], [-121.232736, 54.837177], [-121.233018, 54.838478], [-121.232988, 54.839238], [-121.232753, 54.839908], [-121.23197, 54.840954], [-121.229727, 54.842335], [-121.229301, 54.843107], [-121.229319, 54.843453], [-121.22952, 54.843741], [-121.23012, 54.844049], [-121.232369, 54.844786], [-121.234032, 54.845496], [-121.234539, 54.845876], [-121.235265, 54.846682], [-121.236743, 54.850156], [-121.237198, 54.850822], [-121.238038, 54.851746], [-121.238646, 54.852181], [-121.240281, 54.852926], [-121.241299, 54.853172], [-121.242903, 54.853334], [-121.244224, 54.853766], [-121.245367, 54.853824], [-121.246171, 54.853651], [-121.248702, 54.853456], [-121.249936, 54.853547], [-121.2525, 54.854089], [-121.253736, 54.854603], [-121.254191, 54.855099], [-121.254358, 54.855721], [-121.254281, 54.856519], [-121.25448, 54.856913], [-121.254843, 54.857391], [-121.256055, 54.858285], [-121.256259, 54.858621], [-121.256203, 54.85892], [-121.255758, 54.859505], [-121.255351, 54.859843], [-121.254994, 54.860024], [-121.253689, 54.86031], [-121.251949, 54.860819], [-121.251512, 54.861086], [-121.251165, 54.861495], [-121.250642, 54.863029], [-121.250649, 54.864332], [-121.249808, 54.86606], [-121.249683, 54.866803], [-121.247053, 54.868969], [-121.246641, 54.869417], [-121.246059, 54.870347], [-121.245882, 54.870821], [-121.245956, 54.871873], [-121.246274, 54.872331], [-121.24674, 54.872679], [-121.247519, 54.873057], [-121.248237, 54.873177], [-121.249181, 54.873793], [-121.249886, 54.874743], [-121.250151, 54.875562], [-121.249966, 54.876032], [-121.249394, 54.876513], [-121.249103, 54.877274], [-121.249045, 54.878101], [-121.249263, 54.878826], [-121.249461, 54.87907], [-121.249699, 54.879138], [-121.250761, 54.879059], [-121.25253, 54.878372], [-121.252806, 54.878359], [-121.2533, 54.878446], [-121.254091, 54.878989], [-121.254287, 54.879242], [-121.253502, 54.879895], [-121.253003, 54.880642], [-121.251966, 54.880844], [-121.250692, 54.88152], [-121.250406, 54.881846], [-121.250328, 54.882166], [-121.250629, 54.882894], [-121.250801, 54.883076], [-121.249969, 54.884506], [-121.24954, 54.886027], [-121.249651, 54.886367], [-121.248914, 54.887619], [-121.248865, 54.887906], [-121.250033, 54.888928], [-121.250819, 54.889357], [-121.250883, 54.889844], [-121.247171, 54.891254], [-121.246323, 54.891653], [-121.245666, 54.891771], [-121.24481, 54.892083], [-121.242795, 54.892573], [-121.241962, 54.892866], [-121.239835, 54.893941], [-121.239436, 54.894306], [-121.238818, 54.894595], [-121.238461, 54.895035], [-121.23745, 54.895547], [-121.235799, 54.896136], [-121.23405, 54.896037], [-121.23327, 54.896064], [-121.231559, 54.896391], [-121.230934, 54.896587], [-121.262997, 54.916421], [-121.301068, 54.940047], [-121.349635, 54.96915], [-121.396266, 54.997227], [-121.441448, 55.024263], [-121.488685, 55.052645], [-121.52177, 55.072854], [-121.519841, 55.084238], [-121.528898, 55.0844], [-121.525472, 55.126765], [-121.525022, 55.133885], [-121.526066, 55.134702], [-121.599891, 55.135609], [-121.627812, 55.136237], [-121.624613, 55.186208], [-121.599146, 55.186153], [-121.599751, 55.17677], [-121.548979, 55.175936], [-121.549085, 55.185664], [-121.533762, 55.185775], [-121.513083, 55.185417], [-121.497562, 55.185086], [-121.493382, 55.203916], [-121.493562, 55.217934], [-121.492476, 55.240623], [-121.49252, 55.245617], [-121.301737, 55.246258], [-121.254335, 55.240813], [-121.190773, 55.242046], [-121.151095, 55.242709], [-121.153221, 55.22247], [-121.155237, 55.201103], [-121.129182, 55.201327], [-121.08088, 55.201861], [-121.032778, 55.202165], [-121.006075, 55.202456], [-120.951194, 55.202127], [-120.951059, 55.201528], [-120.951481, 55.201038], [-120.933189, 55.20109], [-120.882035, 55.201545], [-120.852564, 55.201858], [-120.850457, 55.214122], [-120.848851, 55.220926], [-120.844885, 55.228393], [-120.84507, 55.23195], [-120.844453, 55.235637], [-120.845099, 55.239981], [-120.846278, 55.242887], [-120.848605, 55.247668], [-120.841816, 55.252406], [-120.843559, 55.261005], [-120.854332, 55.265427], [-120.859957, 55.270951], [-120.860424, 55.271302], [-120.870659, 55.274688], [-120.883932, 55.277737], [-120.885175, 55.278145], [-120.88662, 55.278727], [-120.887731, 55.279314], [-120.889051, 55.280131], [-120.89051, 55.281379], [-120.891632, 55.2828], [-120.899055, 55.298074], [-120.897707, 55.301318], [-120.9031, 55.306391], [-120.904423, 55.308873], [-120.904996, 55.309672], [-120.905643, 55.310423], [-120.910559, 55.31545], [-120.911256, 55.319793], [-120.908925, 55.330403], [-120.908448, 55.331883], [-120.904821, 55.335211], [-120.872764, 55.349506], [-120.857954, 55.354305], [-120.851923, 55.361182], [-120.837756, 55.368153], [-120.835362, 55.368751], [-120.834475, 55.369211], [-120.83356, 55.369522], [-120.83222, 55.369741], [-120.831343, 55.369755], [-120.829472, 55.369635], [-120.822388, 55.370965], [-120.816346, 55.372253], [-120.814271, 55.372595], [-120.808708, 55.374274], [-120.805167, 55.375638], [-120.802844, 55.377391], [-120.806332, 55.382709], [-120.816179, 55.388258], [-120.822898, 55.397004], [-120.81227, 55.414297], [-120.812444, 55.416562], [-120.813508, 55.41788], [-120.81383, 55.418544], [-120.814431, 55.419371], [-120.820259, 55.425343], [-120.818069, 55.427621], [-120.819054, 55.440908], [-120.827497, 55.455583], [-120.81889, 55.462596], [-120.799689, 55.488258], [-120.799361, 55.488844], [-120.799043, 55.489735], [-120.798502, 55.496072], [-120.793422, 55.501888], [-120.789164, 55.504646], [-120.772852, 55.510009], [-120.760509, 55.512906], [-120.74542, 55.517639], [-120.737664, 55.520659], [-120.731623, 55.526712], [-120.718793, 55.535434], [-120.7175, 55.535676], [-120.715096, 55.53593], [-120.713781, 55.536145], [-120.713012, 55.536361], [-120.705741, 55.538796], [-120.704362, 55.539299], [-120.703452, 55.539782], [-120.700088, 55.541922], [-120.696016, 55.543996], [-120.695016, 55.54469], [-120.694349, 55.545538], [-120.69313, 55.548029], [-120.692081, 55.549711], [-120.691449, 55.550513], [-120.691036, 55.550893], [-120.687286, 55.553154], [-120.686428, 55.553555], [-120.685844, 55.553757], [-120.680822, 55.554615], [-120.679799, 55.554907], [-120.67853, 55.555439], [-120.672351, 55.55915], [-120.671673, 55.55977], [-120.670136, 55.561555], [-120.668927, 55.562576], [-120.667979, 55.563027], [-120.666889, 55.563317], [-120.655559, 55.564953], [-120.654336, 55.565065], [-120.653038, 55.565081], [-120.652222, 55.565002], [-120.649015, 55.564379], [-120.648191, 55.564284], [-120.646951, 55.564224], [-120.642812, 55.564404], [-120.644597, 55.597169], [-120.644631, 55.613057], [-120.645753, 55.635227], [-120.634515, 55.635342], [-120.63431, 55.650772], [-120.635295, 55.69282], [-120.635352, 55.723152], [-120.63468, 55.752247], [-120.634621, 55.767154], [-120.635615, 55.811103], [-120.649174, 55.810959], [-120.649179, 55.810647], [-120.662076, 55.810629], [-120.662101, 55.828992], [-120.662333, 55.828981], [-120.662215, 55.832773], [-120.662303, 55.833783], [-120.662335, 55.839838], [-120.66234, 55.880135], [-120.66254, 55.89121], [-120.662483, 55.89357], [-120.662654, 55.896164], [-120.662569, 55.897816], [-120.662643, 55.89852], [-120.662569, 55.898619], [-120.662573, 55.899422], [-120.662382, 55.90126], [-120.662449, 55.902409], [-120.66238, 55.903126], [-120.662481, 55.903406], [-120.662368, 55.903759], [-120.662327, 55.912577], [-120.662532, 55.918907], [-120.662311, 55.920099], [-120.662269, 55.936411], [-120.662486, 55.936883], [-120.662232, 55.941757], [-120.662219, 55.947196], [-120.662854, 55.947192], [-120.663031, 55.949867], [-120.661967, 55.96769], [-120.661717, 55.967869], [-120.661833, 55.969506], [-120.662031, 55.9704], [-120.662154, 55.973459], [-120.66252, 55.984244], [-120.662392, 55.985303], [-120.66244, 55.986087], [-120.706716, 55.986218], [-120.808822, 55.986851], [-120.815312, 55.987158], [-120.82194, 56.076608], [-120.82066, 56.076735], [-120.820184, 56.076897], [-120.81985, 56.077116], [-120.819663, 56.077858], [-120.819435, 56.078179], [-120.819171, 56.078335], [-120.818403, 56.078546], [-120.818004, 56.078764], [-120.81799, 56.079052], [-120.818272, 56.079425], [-120.81829, 56.079668], [-120.817802, 56.080352], [-120.817284, 56.080728], [-120.816968, 56.081729], [-120.816683, 56.081949], [-120.815987, 56.082306], [-120.815385, 56.082466], [-120.815071, 56.082612], [-120.814898, 56.082799], [-120.814806, 56.0833], [-120.814653, 56.08346], [-120.81409, 56.083755], [-120.812684, 56.084197], [-120.812186, 56.084553], [-120.816286, 56.113373], [-120.817757, 56.148091], [-120.817003, 56.147996], [-120.815712, 56.148248], [-120.811314, 56.149513], [-120.809477, 56.149327], [-120.809245, 56.149057], [-120.808132, 56.148156], [-120.805394, 56.144464], [-120.804812, 56.143839], [-120.803464, 56.142698], [-120.802954, 56.142433], [-120.802099, 56.141757], [-120.799617, 56.139422], [-120.797736, 56.13805], [-120.797098, 56.137372], [-120.795659, 56.137077], [-120.78988, 56.136278], [-120.78585, 56.136293], [-120.783227, 56.13453], [-120.782231, 56.134096], [-120.780154, 56.134277], [-120.771805, 56.134207], [-120.762491, 56.132763], [-120.760748, 56.132568], [-120.757967, 56.132482], [-120.756475, 56.132306], [-120.754251, 56.131669], [-120.753177, 56.131443], [-120.752159, 56.13137], [-120.750408, 56.13141], [-120.747978, 56.131699], [-120.746547, 56.131978], [-120.742045, 56.133126], [-120.740202, 56.133464], [-120.736121, 56.132994], [-120.735696, 56.132564], [-120.734567, 56.132067], [-120.734362, 56.132018], [-120.733443, 56.13201], [-120.732977, 56.132028], [-120.732179, 56.132185], [-120.730758, 56.132787], [-120.729614, 56.133377], [-120.728447, 56.133796], [-120.728293, 56.133928], [-120.727053, 56.134153], [-120.724533, 56.134133], [-120.722075, 56.134013], [-120.718666, 56.134094], [-120.715682, 56.133572], [-120.71424, 56.133572], [-120.712916, 56.13367], [-120.712013, 56.133887], [-120.710636, 56.134436], [-120.709508, 56.135269], [-120.709027, 56.136019], [-120.70895, 56.136527], [-120.709048, 56.138014], [-120.708566, 56.138551], [-120.707861, 56.138971], [-120.704576, 56.140102], [-120.701237, 56.141728], [-120.702258, 56.142415], [-120.709301, 56.145313], [-120.715515, 56.147949], [-120.723514, 56.151488], [-120.727533, 56.153507], [-120.732293, 56.155389], [-120.74041, 56.159283], [-120.745958, 56.159652], [-120.748343, 56.160197], [-120.750281, 56.160837], [-120.755537, 56.162174], [-120.761302, 56.163734], [-120.763606, 56.164476], [-120.767738, 56.166109], [-120.769605, 56.166984], [-120.772013, 56.167972], [-120.772303, 56.168781], [-120.7736, 56.170235], [-120.774808, 56.171033], [-120.775854, 56.171464], [-120.777238, 56.172545], [-120.778625, 56.173283], [-120.779864, 56.174568], [-120.781113, 56.176097], [-120.782864, 56.176862], [-120.78539, 56.179404], [-120.78639, 56.180064], [-120.786759, 56.181283], [-120.786752, 56.18311], [-120.787549, 56.184597], [-120.789284, 56.186752], [-120.790256, 56.187435], [-120.790997, 56.18815], [-120.791221, 56.188995], [-120.792375, 56.190993], [-120.793314, 56.192914], [-120.794421, 56.194048], [-120.797121, 56.195909], [-120.800147, 56.19669], [-120.800943, 56.197137], [-120.804741, 56.197743], [-120.807449, 56.198433], [-120.812715, 56.197896], [-120.817315, 56.197198], [-120.819726, 56.197119], [-120.821348, 56.19726], [-120.8232, 56.196371], [-120.825507, 56.195434], [-120.828162, 56.194743], [-120.830448, 56.193903], [-120.831363, 56.193739], [-120.8325, 56.193675], [-120.833055, 56.193515], [-120.835873, 56.193021], [-120.837567, 56.192642], [-120.839073, 56.192496], [-120.840815, 56.193161], [-120.843629, 56.194062], [-120.849544, 56.193339], [-120.852923, 56.193026], [-120.855023, 56.192933], [-120.858686, 56.192511], [-120.859874, 56.192516], [-120.861285, 56.192728], [-120.863262, 56.192426], [-120.867875, 56.191994], [-120.87197, 56.191684], [-120.875738, 56.191533], [-120.882891, 56.191897], [-120.885779, 56.191822], [-120.887106, 56.191997], [-120.892722, 56.192356], [-120.897619, 56.191328], [-120.905463, 56.191839], [-120.907819, 56.192865], [-120.909905, 56.193441], [-120.916573, 56.195836], [-120.925017, 56.200632], [-120.926378, 56.201752], [-120.92861, 56.203784], [-120.929387, 56.204841], [-120.929487, 56.20612], [-120.931642, 56.20775], [-120.934165, 56.209215], [-120.937375, 56.211691], [-120.939451, 56.212984], [-120.945673, 56.219269], [-120.947888, 56.220849], [-120.949778, 56.221699], [-120.951459, 56.222783], [-120.954084, 56.224021], [-120.958471, 56.225609], [-120.965513, 56.227221], [-120.968508, 56.228117], [-120.977877, 56.229066], [-120.982729, 56.229811], [-120.98686, 56.230781], [-120.989458, 56.231277], [-121.002843, 56.228935], [-121.005674, 56.226349], [-121.008294, 56.2255], [-121.011793, 56.224552], [-121.016413, 56.222376], [-121.020689, 56.220601], [-121.02458, 56.21922], [-121.038616, 56.217542], [-121.041354, 56.217459], [-121.042091, 56.217285], [-121.049065, 56.216915], [-121.053066, 56.217468], [-121.062933, 56.217822], [-121.066961, 56.218426], [-121.068054, 56.218465], [-121.072448, 56.219776], [-121.077063, 56.220509], [-121.081656, 56.22097], [-121.083442, 56.219677], [-121.084167, 56.219453], [-121.090137, 56.219818], [-121.091654, 56.220204], [-121.095125, 56.222474], [-121.099663, 56.222782], [-121.103848, 56.223393], [-121.107212, 56.224458], [-121.113309, 56.225742], [-121.122412, 56.228494], [-121.124163, 56.229712], [-121.125517, 56.231358], [-121.127879, 56.232462], [-121.129638, 56.233416], [-121.132219, 56.235196], [-121.138638, 56.23914], [-121.140331, 56.240852], [-121.144545, 56.244109], [-121.146022, 56.245033], [-121.14907, 56.246556], [-121.149801, 56.246889], [-121.155915, 56.247088], [-121.162577, 56.248198], [-121.165237, 56.24851], [-121.165484, 56.248946], [-121.171008, 56.252912], [-121.1768, 56.256423], [-121.17841, 56.258199], [-121.184297, 56.260567], [-121.18622, 56.261578], [-121.192808, 56.263159], [-121.200252, 56.265845], [-121.202227, 56.266461], [-121.206914, 56.267433], [-121.209621, 56.267378], [-121.217585, 56.266743], [-121.220906, 56.266263], [-121.225519, 56.265276], [-121.226614, 56.264979], [-121.227766, 56.264344], [-121.22979, 56.263608], [-121.231567, 56.262809], [-121.239907, 56.259495], [-121.241976, 56.258904], [-121.242769, 56.258179], [-121.243947, 56.257417], [-121.248504, 56.255478], [-121.251299, 56.254494], [-121.253772, 56.25225], [-121.258229, 56.248951], [-121.259921, 56.247903], [-121.260471, 56.247069], [-121.261103, 56.246449], [-121.261258, 56.245529], [-121.261776, 56.2448], [-121.263182, 56.243811], [-121.263152, 56.243714], [-121.263331, 56.243586], [-121.265334, 56.242427], [-121.266285, 56.242179], [-121.267765, 56.241957], [-121.268264, 56.241574], [-121.270484, 56.240577], [-121.274064, 56.239559], [-121.27527, 56.239258], [-121.277608, 56.238919], [-121.28087, 56.238582], [-121.281951, 56.237811], [-121.282672, 56.237555], [-121.283924, 56.237173], [-121.28677, 56.236535], [-121.287583, 56.236401], [-121.289564, 56.236259], [-121.291264, 56.236518], [-121.296064, 56.235148], [-121.303501, 56.233657], [-121.31035, 56.232855], [-121.313825, 56.23264], [-121.320553, 56.232636], [-121.326409, 56.234232], [-121.332363, 56.235263], [-121.335037, 56.23548], [-121.336406, 56.234676], [-121.338965, 56.234607], [-121.340458, 56.234252], [-121.343917, 56.233731], [-121.346283, 56.23314], [-121.349337, 56.232515], [-121.351344, 56.232383], [-121.353912, 56.232441], [-121.35648, 56.232855], [-121.359779, 56.232056], [-121.361013, 56.231838], [-121.36499, 56.231653], [-121.369523, 56.231146], [-121.372045, 56.231001], [-121.378694, 56.231023], [-121.378848, 56.230944], [-121.387135, 56.232634], [-121.39193, 56.233015], [-121.398916, 56.231426], [-121.401356, 56.23024], [-121.404003, 56.229826], [-121.405865, 56.229212], [-121.408487, 56.227789], [-121.409604, 56.226721], [-121.412077, 56.224656], [-121.415009, 56.221268], [-121.418028, 56.219449], [-121.418949, 56.218486], [-121.420687, 56.217032], [-121.421348, 56.216316], [-121.423061, 56.21501], [-121.426349, 56.213487], [-121.428857, 56.212567], [-121.431201, 56.211915], [-121.434461, 56.21081], [-121.436901, 56.210407], [-121.438431, 56.210422], [-121.439234, 56.210347], [-121.441888, 56.210327], [-121.444573, 56.210549], [-121.448282, 56.210643], [-121.449827, 56.210576], [-121.454792, 56.209345], [-121.461224, 56.208625], [-121.463013, 56.208303], [-121.467135, 56.207246], [-121.468392, 56.206732], [-121.467849, 56.205698], [-121.467862, 56.202608], [-121.473216, 56.198816], [-121.478739, 56.195911], [-121.48711, 56.192769], [-121.490804, 56.191626], [-121.496996, 56.19069], [-121.501874, 56.189801], [-121.506901, 56.189303], [-121.510469, 56.188286], [-121.512622, 56.18792], [-121.514425, 56.187418], [-121.520209, 56.185305], [-121.529618, 56.182419], [-121.534517, 56.181069], [-121.537695, 56.180297], [-121.540197, 56.179867], [-121.549611, 56.177469], [-121.555453, 56.175652], [-121.562234, 56.173314], [-121.564957, 56.172132], [-121.568185, 56.170513], [-121.570716, 56.169804], [-121.572338, 56.169167], [-121.573298, 56.168927], [-121.574964, 56.168385], [-121.581435, 56.165206], [-121.583955, 56.163765], [-121.591391, 56.157353], [-121.593702, 56.156167], [-121.598455, 56.152323], [-121.599168, 56.151144], [-121.600248, 56.1502], [-121.607305, 56.146454], [-121.617123, 56.142852], [-121.622206, 56.141378], [-121.626481, 56.139845], [-121.630318, 56.138787], [-121.63517, 56.137051], [-121.63658, 56.136476], [-121.639074, 56.134925], [-121.647793, 56.133255], [-121.653721, 56.130807], [-121.66409, 56.127661], [-121.668368, 56.125767], [-121.672216, 56.12333], [-121.6736, 56.121844], [-121.674257, 56.119871], [-121.679639, 56.118141], [-121.682276, 56.117456], [-121.685407, 56.116923], [-121.687874, 56.116624], [-121.688616, 56.116434], [-121.691403, 56.116108], [-121.696353, 56.115863], [-121.698496, 56.115816], [-121.700404, 56.115866], [-121.702553, 56.116087], [-121.705588, 56.115816], [-121.709534, 56.115379], [-121.714127, 56.115155], [-121.716354, 56.115114], [-121.717668, 56.11545], [-121.719259, 56.115685], [-121.72258, 56.11609], [-121.724111, 56.116167], [-121.729942, 56.117464], [-121.733416, 56.11796], [-121.735056, 56.118124], [-121.738586, 56.118034], [-121.739259, 56.117954], [-121.74084, 56.118124], [-121.742492, 56.117974], [-121.743772, 56.117659], [-121.746903, 56.116679], [-121.74797, 56.116422], [-121.750796, 56.115956], [-121.752129, 56.115576], [-121.755208, 56.114378], [-121.756295, 56.113875], [-121.756185, 56.103827], [-121.756812, 56.035289], [-121.75687, 56.000212], [-121.744059, 56.000324], [-121.743614, 55.991372], [-121.743793, 55.985361], [-121.756744, 55.985478], [-121.756631, 55.898387], [-121.824845, 55.898062], [-121.902003, 55.897948], [-121.900828, 55.888256], [-121.901034, 55.871665], [-121.914092, 55.872], [-121.914835, 55.890148], [-121.929004, 55.890089], [-121.92927, 55.897745], [-121.947893, 55.897479], [-121.947892, 55.897612], [-121.980207, 55.898149], [-122.037843, 55.899264], [-122.036893, 55.885841], [-122.08048, 55.886628], [-122.179517, 55.888753], [-122.236071, 55.889982], [-122.229773, 55.935232], [-122.226984, 55.95444], [-122.231593, 56.005624], [-122.243626, 56.003732], [-122.285394, 56.001723], [-122.285865, 56.004002], [-122.291537, 56.040686], [-122.270785, 56.038994], [-122.270919, 56.04589], [-122.299862, 56.045505], [-122.301496, 56.062995], [-122.304324, 56.083086], [-122.342581, 56.094052], [-122.399098, 56.106155], [-122.437892, 56.112753], [-122.508456, 56.132429], [-122.531649, 56.141394], [-122.535128, 56.142068], [-122.555554, 56.144846], [-122.590444, 56.142892], [-122.606325, 56.139105], [-122.628616, 56.131105], [-122.670648, 56.109505], [-122.700146, 56.098296], [-122.740371, 56.090509], [-122.780985, 56.089323], [-122.831309, 56.091451], [-122.843731, 56.090709], [-122.868961, 56.091642], [-122.904721, 56.093852], [-122.928805, 56.091174], [-122.966342, 56.086694], [-123.005537, 56.082572], [-123.00958, 56.081682], [-123.013457, 56.080175], [-123.033478, 56.075967], [-123.049822, 56.069632], [-123.062381, 56.061137], [-123.068836, 56.046377], [-123.076848, 56.031936], [-123.099956, 56.015076], [-123.117268, 56.001929], [-123.129924, 55.99427], [-123.162714, 55.986363], [-123.20216, 55.981423], [-123.227887, 55.980371], [-123.247363, 55.97974], [-123.28268, 55.983322], [-123.320615, 55.996115], [-123.326245, 56.000947], [-123.336218, 56.007749], [-123.354857, 56.012656], [-123.36439, 56.015291], [-123.394812, 56.01844], [-123.468605, 56.021698]], [[-121.904207, 55.832368], [-121.860739, 55.832393], [-121.826623, 55.83038], [-121.826167, 55.827727], [-121.825468, 55.826052], [-121.826515, 55.826099], [-121.828559, 55.826631], [-121.830567, 55.826739], [-121.831172, 55.826817], [-121.832942, 55.827445], [-121.833702, 55.827623], [-121.834245, 55.827646], [-121.835236, 55.82761], [-121.836598, 55.827408], [-121.838292, 55.827343], [-121.840585, 55.827041], [-121.843664, 55.827079], [-121.84492, 55.827226], [-121.846915, 55.82728], [-121.847635, 55.827215], [-121.849258, 55.826853], [-121.851501, 55.826614], [-121.852283, 55.826629], [-121.853492, 55.826766], [-121.855549, 55.826804], [-121.857278, 55.826658], [-121.858945, 55.826448], [-121.859921, 55.826396], [-121.8609, 55.826188], [-121.862294, 55.825985], [-121.864824, 55.825685], [-121.867482, 55.825458], [-121.869318, 55.825386], [-121.870608, 55.825001], [-121.871124, 55.824773], [-121.87162, 55.824248], [-121.871808, 55.823288], [-121.872055, 55.823012], [-121.872788, 55.822461], [-121.873062, 55.822347], [-121.874524, 55.822046], [-121.875075, 55.821808], [-121.875917, 55.820764], [-121.876276, 55.820462], [-121.876941, 55.820118], [-121.87756, 55.819683], [-121.878168, 55.819122], [-121.878376, 55.818558], [-121.878593, 55.818228], [-121.879167, 55.817658], [-121.879257, 55.817299], [-121.879325, 55.816581], [-121.879206, 55.816292], [-121.879219, 55.814756], [-121.879143, 55.81462], [-121.878988, 55.814466], [-121.878752, 55.814365], [-121.877205, 55.814297], [-121.876053, 55.814358], [-121.875003, 55.814331], [-121.874051, 55.814116], [-121.873294, 55.814351], [-121.871803, 55.814599], [-121.870126, 55.814592], [-121.869501, 55.814703], [-121.869403, 55.814818], [-121.868503, 55.815026], [-121.867606, 55.815126], [-121.863948, 55.816341], [-121.862758, 55.816644], [-121.861523, 55.816866], [-121.861059, 55.816889], [-121.860375, 55.816794], [-121.859252, 55.81645], [-121.859081, 55.816324], [-121.85907, 55.816099], [-121.859742, 55.816087], [-121.86138, 55.816245], [-121.862353, 55.816264], [-121.863057, 55.816207], [-121.864617, 55.815844], [-121.866112, 55.814951], [-121.866947, 55.81477], [-121.868303, 55.814764], [-121.868642, 55.814642], [-121.868791, 55.814435], [-121.868731, 55.81431], [-121.867817, 55.814462], [-121.867018, 55.814438], [-121.866314, 55.814521], [-121.865701, 55.814731], [-121.864729, 55.815315], [-121.863357, 55.815815], [-121.862908, 55.815909], [-121.862125, 55.815921], [-121.86211, 55.815866], [-121.862255, 55.815814], [-121.863592, 55.815431], [-121.86659, 55.813823], [-121.866772, 55.813645], [-121.866848, 55.813196], [-121.866553, 55.812914], [-121.866031, 55.812802], [-121.865043, 55.812747], [-121.86461, 55.81278], [-121.863758, 55.812978], [-121.860696, 55.812905], [-121.860007, 55.813042], [-121.859041, 55.813357], [-121.858597, 55.813784], [-121.858353, 55.813908], [-121.858021, 55.813833], [-121.857816, 55.813706], [-121.857504, 55.812992], [-121.857283, 55.812874], [-121.856817, 55.81295], [-121.856026, 55.813276], [-121.855101, 55.813257], [-121.8539, 55.813381], [-121.852244, 55.813816], [-121.850285, 55.814229], [-121.849123, 55.814173], [-121.848592, 55.813754], [-121.848, 55.813757], [-121.847702, 55.81362], [-121.847504, 55.813259], [-121.847492, 55.812602], [-121.847263, 55.812267], [-121.84729, 55.811854], [-121.847662, 55.811696], [-121.848908, 55.811699], [-121.849432, 55.811795], [-121.849713, 55.811967], [-121.850912, 55.812445], [-121.851612, 55.812569], [-121.853484, 55.812353], [-121.854776, 55.812347], [-121.856077, 55.812081], [-121.857044, 55.811722], [-121.857436, 55.811464], [-121.859738, 55.810758], [-121.861055, 55.810464], [-121.861733, 55.810237], [-121.861815, 55.810121], [-121.861405, 55.809992], [-121.8601, 55.809853], [-121.857851, 55.809796], [-121.856908, 55.809366], [-121.856926, 55.809204], [-121.857025, 55.80917], [-121.860663, 55.809724], [-121.861442, 55.809804], [-121.861507, 55.809759], [-121.861514, 55.809499], [-121.861087, 55.809342], [-121.86066, 55.809257], [-121.858923, 55.809141], [-121.858352, 55.809047], [-121.857274, 55.808848], [-121.856945, 55.808612], [-121.857062, 55.808469], [-121.857523, 55.808327], [-121.857144, 55.807335], [-121.858133, 55.806718], [-121.861288, 55.806496], [-121.861678, 55.805542], [-121.861211, 55.805069], [-121.860741, 55.80534], [-121.860469, 55.805408], [-121.858884, 55.805079], [-121.858359, 55.805021], [-121.857832, 55.805034], [-121.857124, 55.805225], [-121.855448, 55.80583], [-121.855046, 55.805898], [-121.854776, 55.80586], [-121.854573, 55.805659], [-121.854413, 55.805128], [-121.85451, 55.805102], [-121.854622, 55.8046], [-121.854632, 55.804222], [-121.854543, 55.804051], [-121.854007, 55.803758], [-121.852366, 55.803123], [-121.850374, 55.80247], [-121.851144, 55.802273], [-121.869917, 55.802923], [-121.869927, 55.796188], [-121.889897, 55.796381], [-121.890145, 55.782323], [-121.891885, 55.782059], [-121.941802, 55.781345], [-121.942381, 55.795957], [-121.943306, 55.810934], [-121.904155, 55.81058], [-121.904207, 55.832368]], [[-121.652608, 55.883418], [-121.634363, 55.883412], [-121.627706, 55.883474], [-121.627756, 55.868933], [-121.618791, 55.868889], [-121.618536, 55.868892], [-121.618399, 55.869008], [-121.601763, 55.868947], [-121.600261, 55.852533], [-121.600204, 55.828071], [-121.600584, 55.811131], [-121.679269, 55.811235], [-121.677087, 55.814123], [-121.6769, 55.814489], [-121.675414, 55.815452], [-121.674394, 55.815882], [-121.673809, 55.816227], [-121.672741, 55.816601], [-121.670841, 55.817155], [-121.668571, 55.817715], [-121.668058, 55.817763], [-121.66727, 55.817961], [-121.666419, 55.818078], [-121.664153, 55.818081], [-121.663145, 55.818168], [-121.661944, 55.818722], [-121.660266, 55.819296], [-121.65947, 55.819629], [-121.658121, 55.820378], [-121.657118, 55.82078], [-121.65579, 55.822248], [-121.655152, 55.822656], [-121.653578, 55.822952], [-121.653162, 55.822966], [-121.652799, 55.822891], [-121.652368, 55.822885], [-121.650912, 55.822969], [-121.650445, 55.823044], [-121.650154, 55.823167], [-121.649871, 55.823514], [-121.649798, 55.823782], [-121.650159, 55.823939], [-121.650561, 55.823908], [-121.652452, 55.824117], [-121.653448, 55.824434], [-121.653634, 55.824544], [-121.653961, 55.824843], [-121.654257, 55.825494], [-121.655226, 55.826557], [-121.655663, 55.827289], [-121.656213, 55.827978], [-121.656525, 55.828206], [-121.657438, 55.828575], [-121.658268, 55.82906], [-121.659726, 55.830775], [-121.660271, 55.83115], [-121.662053, 55.832786], [-121.662895, 55.833397], [-121.663295, 55.833779], [-121.664215, 55.834435], [-121.664624, 55.834629], [-121.665419, 55.835159], [-121.666361, 55.835619], [-121.667573, 55.836171], [-121.668081, 55.836257], [-121.669563, 55.836794], [-121.669788, 55.836797], [-121.670319, 55.836677], [-121.673002, 55.836624], [-121.673528, 55.836693], [-121.674541, 55.836948], [-121.675145, 55.836989], [-121.676188, 55.836875], [-121.677496, 55.836871], [-121.678396, 55.836737], [-121.679309, 55.8364], [-121.679384, 55.837166], [-121.678834, 55.839437], [-121.678709, 55.868819], [-121.652865, 55.86903], [-121.652608, 55.883418]], [[-122.22653, 55.627915], [-122.176626, 55.6314], [-122.16947, 55.596925], [-122.186378, 55.595946], [-122.187086, 55.600293], [-122.225847, 55.598846], [-122.226358, 55.60183], [-122.264519, 55.600893], [-122.264762, 55.612287], [-122.253326, 55.612558], [-122.25318, 55.615746], [-122.249672, 55.616004], [-122.244764, 55.617955], [-122.226052, 55.619325], [-122.22653, 55.627915]], [[-121.689325, 55.751147], [-121.689783, 55.751668], [-121.603699, 55.750155], [-121.607136, 55.746223], [-121.60747, 55.745736], [-121.6077, 55.744885], [-121.607647, 55.744391], [-121.607458, 55.7439], [-121.606821, 55.743146], [-121.606287, 55.742742], [-121.605654, 55.742392], [-121.599429, 55.739715], [-121.598333, 55.739183], [-121.597569, 55.738696], [-121.596632, 55.737865], [-121.596275, 55.737433], [-121.564892, 55.737114], [-121.565157, 55.72976], [-121.563587, 55.729802], [-121.565864, 55.727676], [-121.565916, 55.730582], [-121.570257, 55.730498], [-121.570381, 55.728409], [-121.570405, 55.724758], [-121.577855, 55.722116], [-121.580095, 55.72209], [-121.579938, 55.72385], [-121.582904, 55.723827], [-121.58258, 55.724514], [-121.582408, 55.725158], [-121.585668, 55.725069], [-121.587458, 55.721922], [-121.58918, 55.721874], [-121.590182, 55.719904], [-121.594399, 55.719771], [-121.595509, 55.717815], [-121.604351, 55.71594], [-121.596982, 55.715713], [-121.597353, 55.708708], [-121.591366, 55.708749], [-121.585454, 55.708554], [-121.584547, 55.699049], [-121.584768, 55.695582], [-121.585703, 55.688502], [-121.592784, 55.688019], [-121.594632, 55.687966], [-121.596669, 55.687985], [-121.597311, 55.685839], [-121.59672, 55.681481], [-121.609066, 55.681169], [-121.608985, 55.684363], [-121.614802, 55.684349], [-121.616264, 55.68486], [-121.620726, 55.685309], [-121.620548, 55.683467], [-121.619838, 55.680559], [-121.63554, 55.680555], [-121.636195, 55.68094], [-121.637167, 55.680861], [-121.637667, 55.680723], [-121.638351, 55.680695], [-121.639257, 55.680265], [-121.639245, 55.680148], [-121.639088, 55.680074], [-121.638132, 55.680126], [-121.638037, 55.680089], [-121.637995, 55.679909], [-121.638032, 55.679837], [-121.638525, 55.679789], [-121.638881, 55.679639], [-121.638952, 55.679407], [-121.639675, 55.679164], [-121.63968, 55.67902], [-121.639387, 55.678765], [-121.63941, 55.678621], [-121.640313, 55.678254], [-121.640334, 55.678101], [-121.640073, 55.677838], [-121.64014, 55.677749], [-121.640586, 55.677683], [-121.640702, 55.677584], [-121.64075, 55.677117], [-121.640863, 55.677002], [-121.641231, 55.676988], [-121.641656, 55.677083], [-121.641997, 55.677383], [-121.642311, 55.677522], [-121.643142, 55.677809], [-121.643413, 55.677785], [-121.643438, 55.67756], [-121.643258, 55.677208], [-121.642904, 55.676916], [-121.642925, 55.676764], [-121.643134, 55.676667], [-121.643325, 55.67667], [-121.643576, 55.676735], [-121.643936, 55.676946], [-121.644298, 55.677013], [-121.644671, 55.676833], [-121.639742, 55.672068], [-121.642505, 55.672797], [-121.643921, 55.673014], [-121.645019, 55.673021], [-121.645151, 55.675396], [-121.643821, 55.693129], [-121.663498, 55.686819], [-121.664709, 55.691159], [-121.66491, 55.693517], [-121.665087, 55.700393], [-121.66528, 55.700826], [-121.666641, 55.70198], [-121.668919, 55.704374], [-121.672258, 55.707154], [-121.67678, 55.710894], [-121.677408, 55.710912], [-121.677387, 55.711736], [-121.680712, 55.714575], [-121.681753, 55.71517], [-121.682321, 55.715901], [-121.687408, 55.718909], [-121.68901, 55.720075], [-121.689976, 55.720116], [-121.69017, 55.720466], [-121.690857, 55.721163], [-121.691761, 55.721139], [-121.694297, 55.720022], [-121.695162, 55.719843], [-121.694962, 55.72033], [-121.692713, 55.721959], [-121.691881, 55.723076], [-121.691973, 55.723778], [-121.692312, 55.724668], [-121.691584, 55.7255], [-121.691224, 55.72665], [-121.691773, 55.728278], [-121.693745, 55.732421], [-121.695216, 55.73468], [-121.697227, 55.737029], [-121.699384, 55.739986], [-121.699531, 55.740592], [-121.697383, 55.742468], [-121.695393, 55.743895], [-121.691803, 55.744348], [-121.687666, 55.743736], [-121.687776, 55.744011], [-121.688053, 55.744345], [-121.688057, 55.744679], [-121.688006, 55.744786], [-121.687487, 55.745013], [-121.687397, 55.745354], [-121.687072, 55.745566], [-121.685341, 55.746312], [-121.684076, 55.746999], [-121.684126, 55.747413], [-121.683928, 55.747554], [-121.683977, 55.74849], [-121.683619, 55.748702], [-121.683526, 55.749132], [-121.683754, 55.74944], [-121.684454, 55.749933], [-121.68557, 55.750421], [-121.685746, 55.75089], [-121.685989, 55.751234], [-121.686362, 55.751499], [-121.686885, 55.751612], [-121.687078, 55.751552], [-121.687341, 55.751338], [-121.687818, 55.751298], [-121.688259, 55.751457], [-121.688483, 55.751458], [-121.688742, 55.751317], [-121.689325, 55.751147]], [[-121.558135, 55.733704], [-121.556021, 55.735305], [-121.552821, 55.737066], [-121.546103, 55.737053], [-121.546128, 55.733167], [-121.550127, 55.729694], [-121.552906, 55.729722], [-121.553033, 55.722157], [-121.559852, 55.722049], [-121.561527, 55.72116], [-121.565841, 55.719464], [-121.569003, 55.721027], [-121.570939, 55.721874], [-121.565866, 55.721969], [-121.565384, 55.727565], [-121.563163, 55.729774], [-121.562906, 55.729773], [-121.558135, 55.733704]], [[-121.992383, 55.59858], [-121.99578, 55.597833], [-121.998981, 55.59915], [-122.007696, 55.597287], [-122.007901, 55.597721], [-122.000583, 55.599271], [-121.982693, 55.603468], [-121.982346, 55.603044], [-121.983629, 55.602366], [-121.99357, 55.600272], [-121.992383, 55.59858]], [[-121.953038, 55.567648], [-121.952942, 55.574918], [-121.94105, 55.575056], [-121.936521, 55.5739], [-121.936264, 55.568043], [-121.953038, 55.567648]], [[-121.31925, 55.749192], [-121.29654, 55.749054], [-121.293047, 55.74957], [-121.295899, 55.741418], [-121.295439, 55.73724], [-121.321008, 55.735424], [-121.319725, 55.74202], [-121.31925, 55.749192]]]]}, "properties": {"name": "Peace River E", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Peace River E", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955023", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.156343, 56.14465], [-122.233405, 56.139797], [-122.251459, 56.115642], [-122.287446, 56.113975], [-122.288731, 56.114043], [-122.287995, 56.095142], [-122.305635, 56.096721], [-122.304466, 56.083106], [-122.304324, 56.083086], [-122.301496, 56.062995], [-122.299862, 56.045505], [-122.270919, 56.04589], [-122.270785, 56.038994], [-122.291537, 56.040686], [-122.285865, 56.004002], [-122.285394, 56.001723], [-122.243626, 56.003732], [-122.231593, 56.005624], [-122.226984, 55.95444], [-122.229773, 55.935232], [-122.236071, 55.889982], [-122.179517, 55.888753], [-122.08048, 55.886628], [-122.036893, 55.885841], [-122.037843, 55.899264], [-121.980207, 55.898149], [-121.947892, 55.897612], [-121.947893, 55.897479], [-121.92927, 55.897745], [-121.929004, 55.890089], [-121.914835, 55.890148], [-121.914092, 55.872], [-121.901034, 55.871665], [-121.900828, 55.888256], [-121.902003, 55.897948], [-121.824845, 55.898062], [-121.756631, 55.898387], [-121.756744, 55.985478], [-121.743793, 55.985361], [-121.743614, 55.991372], [-121.744059, 56.000324], [-121.75687, 56.000212], [-121.756812, 56.035289], [-121.756185, 56.103827], [-121.756295, 56.113875], [-121.756228, 56.119565], [-121.75793, 56.159407], [-121.795902, 56.159345], [-121.867321, 56.159018], [-121.958213, 56.158894], [-121.959228, 56.14145], [-122.042002, 56.142363], [-122.090944, 56.142375], [-122.092019, 56.14268], [-122.156343, 56.14465]]]]}, "properties": {"name": "Hudson's Hope", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Hudson's Hope", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955025", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.715587, 56.173734], [-120.715766, 56.173926], [-120.715639, 56.159716], [-120.732828, 56.159785], [-120.733206, 56.155827], [-120.732293, 56.155389], [-120.727533, 56.153507], [-120.723514, 56.151488], [-120.715515, 56.147949], [-120.709301, 56.145313], [-120.702258, 56.142415], [-120.701237, 56.141728], [-120.698646, 56.140318], [-120.697402, 56.140038], [-120.695018, 56.139853], [-120.689477, 56.140062], [-120.679403, 56.138877], [-120.678949, 56.13884], [-120.677558, 56.13887], [-120.674928, 56.13833], [-120.674012, 56.13781], [-120.672796, 56.137491], [-120.660534, 56.136332], [-120.661612, 56.139231], [-120.659182, 56.138983], [-120.657618, 56.139017], [-120.653732, 56.138889], [-120.652854, 56.138755], [-120.651077, 56.138614], [-120.649356, 56.13831], [-120.647071, 56.138061], [-120.644619, 56.13787], [-120.643741, 56.137719], [-120.643256, 56.137503], [-120.642649, 56.137437], [-120.641903, 56.137504], [-120.640811, 56.137501], [-120.638204, 56.137218], [-120.637903, 56.137148], [-120.637089, 56.136765], [-120.63669, 56.136721], [-120.636385, 56.136761], [-120.636094, 56.138465], [-120.636208, 56.138978], [-120.636183, 56.152495], [-120.636354, 56.152716], [-120.636332, 56.159373], [-120.6369, 56.159374], [-120.636886, 56.170385], [-120.636679, 56.170718], [-120.63667, 56.170911], [-120.6492, 56.169079], [-120.649069, 56.159493], [-120.662931, 56.159485], [-120.662919, 56.173728], [-120.715587, 56.173734]]]]}, "properties": {"name": "Taylor", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Taylor", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955030", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.865372, 56.260071], [-120.866205, 56.259912], [-120.867122, 56.259833], [-120.871656, 56.25957], [-120.873722, 56.259517], [-120.873654, 56.265888], [-120.873445, 56.266531], [-120.873696, 56.266623], [-120.873744, 56.266763], [-120.873754, 56.268187], [-120.887058, 56.268191], [-120.887043, 56.272632], [-120.900178, 56.272666], [-120.900158, 56.264269], [-120.89726, 56.264171], [-120.897346, 56.260964], [-120.887082, 56.260969], [-120.887085, 56.259983], [-120.887186, 56.259537], [-120.887051, 56.259145], [-120.887066, 56.253856], [-120.886921, 56.252381], [-120.880347, 56.250077], [-120.880771, 56.249498], [-120.880318, 56.249343], [-120.880688, 56.248718], [-120.880554, 56.248445], [-120.875464, 56.246686], [-120.875254, 56.246678], [-120.874567, 56.24644], [-120.875284, 56.24637], [-120.875251, 56.246316], [-120.875804, 56.246428], [-120.876855, 56.246476], [-120.876652, 56.245212], [-120.881422, 56.245169], [-120.881663, 56.246474], [-120.882218, 56.246474], [-120.881938, 56.245164], [-120.88685, 56.245119], [-120.886979, 56.246472], [-120.893445, 56.24647], [-120.893201, 56.242966], [-120.896832, 56.243021], [-120.896774, 56.242591], [-120.897145, 56.242599], [-120.897092, 56.242218], [-120.892888, 56.242152], [-120.892855, 56.241724], [-120.887127, 56.241619], [-120.887182, 56.239042], [-120.886508, 56.239124], [-120.872267, 56.239125], [-120.872236, 56.237008], [-120.873811, 56.237002], [-120.87381, 56.234857], [-120.872456, 56.234859], [-120.872242, 56.232154], [-120.873809, 56.232116], [-120.873809, 56.231926], [-120.866338, 56.231933], [-120.863198, 56.232006], [-120.862315, 56.232071], [-120.860577, 56.232075], [-120.853982, 56.231947], [-120.847454, 56.231928], [-120.847458, 56.230807], [-120.843838, 56.230839], [-120.843836, 56.231922], [-120.835003, 56.23191], [-120.834212, 56.231974], [-120.834102, 56.231679], [-120.834112, 56.230354], [-120.841348, 56.230382], [-120.841314, 56.229877], [-120.842174, 56.229864], [-120.842037, 56.224698], [-120.847485, 56.224701], [-120.847497, 56.220899], [-120.834233, 56.220897], [-120.83426, 56.210028], [-120.821305, 56.210019], [-120.821226, 56.226714], [-120.821066, 56.227026], [-120.821193, 56.228171], [-120.822063, 56.229068], [-120.821613, 56.229481], [-120.821379, 56.229397], [-120.820947, 56.229061], [-120.808991, 56.224694], [-120.807588, 56.224095], [-120.796991, 56.220261], [-120.796437, 56.220166], [-120.79547, 56.220163], [-120.795161, 56.220054], [-120.794953, 56.219852], [-120.794871, 56.220019], [-120.793568, 56.219234], [-120.791576, 56.218831], [-120.787201, 56.218062], [-120.785402, 56.217809], [-120.778532, 56.217652], [-120.774704, 56.217782], [-120.771415, 56.217697], [-120.76843, 56.217784], [-120.755623, 56.217737], [-120.755608, 56.220072], [-120.761337, 56.219967], [-120.761472, 56.222059], [-120.755769, 56.222056], [-120.756293, 56.227083], [-120.753693, 56.225844], [-120.750995, 56.224891], [-120.7429, 56.224821], [-120.742982, 56.230897], [-120.755348, 56.230389], [-120.755481, 56.228017], [-120.757544, 56.227845], [-120.756288, 56.230133], [-120.756718, 56.232352], [-120.755688, 56.232372], [-120.75563, 56.238551], [-120.763637, 56.238515], [-120.763249, 56.236479], [-120.764796, 56.236383], [-120.764879, 56.234503], [-120.768418, 56.234395], [-120.768419, 56.232923], [-120.777818, 56.237347], [-120.779195, 56.237916], [-120.781532, 56.238766], [-120.781581, 56.246456], [-120.808097, 56.246461], [-120.808046, 56.248836], [-120.806295, 56.248784], [-120.806253, 56.24847], [-120.801912, 56.248571], [-120.801908, 56.248832], [-120.800066, 56.248814], [-120.799959, 56.248649], [-120.79896, 56.248661], [-120.798901, 56.248461], [-120.794753, 56.248484], [-120.794764, 56.26089], [-120.82066, 56.260965], [-120.821066, 56.261072], [-120.821071, 56.264623], [-120.834261, 56.264622], [-120.834321, 56.265109], [-120.83457, 56.265473], [-120.834095, 56.266452], [-120.834239, 56.266617], [-120.834185, 56.268205], [-120.821305, 56.268193], [-120.82108, 56.268627], [-120.821079, 56.268357], [-120.807787, 56.268135], [-120.807962, 56.279927], [-120.82113, 56.279656], [-120.821111, 56.2753], [-120.833671, 56.275198], [-120.833903, 56.272148], [-120.8433, 56.270496], [-120.84323, 56.270028], [-120.846421, 56.269699], [-120.847457, 56.268213], [-120.858725, 56.268206], [-120.858732, 56.268383], [-120.860781, 56.268368], [-120.860623, 56.268204], [-120.860616, 56.263816], [-120.860847, 56.26188], [-120.862645, 56.26092], [-120.863234, 56.260674], [-120.865372, 56.260071]]]]}, "properties": {"name": "Fort St. John", "province": "British Columbia", "rurality": "Rural 3", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Fort St. John", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955034", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-126.434757, 57.934522], [-126.452369, 57.938404], [-126.473956, 57.940046], [-126.49822, 57.942451], [-126.518032, 57.940947], [-126.539833, 57.9456], [-126.558552, 57.952313], [-126.604124, 57.960207], [-126.662906, 57.990822], [-126.683212, 58.006112], [-126.692256, 58.023192], [-126.696688, 58.025834], [-126.703056, 58.027104], [-126.732215, 58.018294], [-126.773015, 58.011069], [-126.815895, 58.009304], [-126.868008, 58.003361], [-126.907547, 57.994433], [-126.941797, 57.99247], [-126.95094, 57.989447], [-126.953941, 57.975678], [-126.972009, 57.967633], [-126.980028, 57.961224], [-126.970126, 57.949064], [-126.970592, 57.93312], [-126.964103, 57.925104], [-126.947537, 57.918694], [-126.936862, 57.911299], [-126.933537, 57.906004], [-126.93454, 57.897781], [-126.915992, 57.891457], [-126.896954, 57.877418], [-126.887957, 57.867319], [-126.889016, 57.864489], [-126.884811, 57.855292], [-126.881272, 57.841118], [-126.878603, 57.829831], [-126.868619, 57.81989], [-126.863691, 57.813049], [-126.856504, 57.8051], [-126.852484, 57.796905], [-126.851418, 57.791704], [-126.854067, 57.78845], [-126.864537, 57.785373], [-126.869154, 57.785328], [-126.8878, 57.788489], [-126.899301, 57.790181], [-126.934008, 57.797344], [-126.948075, 57.798379], [-126.959091, 57.797081], [-126.973187, 57.788242], [-126.979719, 57.777957], [-126.982833, 57.766628], [-126.981267, 57.76081], [-126.96742, 57.75488], [-126.953985, 57.74413], [-126.945506, 57.716495], [-126.938092, 57.707122], [-126.918192, 57.698721], [-126.902251, 57.695706], [-126.877069, 57.693269], [-126.852513, 57.688166], [-126.839593, 57.679439], [-126.836662, 57.668219], [-126.849484, 57.653787], [-126.861004, 57.647837], [-126.87013, 57.640117], [-126.868305, 57.633371], [-126.83651, 57.611137], [-126.802296, 57.592715], [-126.787304, 57.580841], [-126.784298, 57.576054], [-126.787572, 57.570778], [-126.796138, 57.565861], [-126.806405, 57.564582], [-126.836881, 57.558746], [-126.87663, 57.549051], [-126.929227, 57.540342], [-126.969789, 57.534143], [-126.987971, 57.529957], [-127.010612, 57.521132], [-127.021848, 57.514665], [-127.057045, 57.507272], [-127.075651, 57.512351], [-127.093079, 57.528133], [-127.118943, 57.528693], [-127.134536, 57.530553], [-127.135888, 57.531172], [-127.150146, 57.535899], [-127.143276, 57.546085], [-127.138208, 57.562514], [-127.14525, 57.577546], [-127.16786, 57.591612], [-127.181405, 57.597661], [-127.246746, 57.605469], [-127.271911, 57.603187], [-127.278215, 57.598783], [-127.27248, 57.587682], [-127.283424, 57.575599], [-127.296116, 57.576711], [-127.304828, 57.579921], [-127.312857, 57.577673], [-127.320636, 57.56709], [-127.334191, 57.558347], [-127.341887, 57.549047], [-127.343061, 57.531435], [-127.338168, 57.51936], [-127.329369, 57.509296], [-127.313082, 57.503985], [-127.299658, 57.501141], [-127.293401, 57.498202], [-127.297182, 57.492037], [-127.308153, 57.488495], [-127.320871, 57.486463], [-127.325086, 57.482249], [-127.320519, 57.476506], [-127.31286, 57.470332], [-127.304963, 57.46193], [-127.30153, 57.453569], [-127.302903, 57.446672], [-127.312445, 57.438988], [-127.330379, 57.432956], [-127.346258, 57.424253], [-127.366942, 57.419035], [-127.374265, 57.418194], [-127.390938, 57.402219], [-127.411189, 57.382975], [-127.434844, 57.366265], [-127.480272, 57.335693], [-127.489097, 57.322661], [-127.491236, 57.303443], [-127.48658, 57.28257], [-127.478603, 57.261771], [-127.47335, 57.241635], [-127.46727, 57.210031], [-127.476459, 57.196078], [-127.492508, 57.186388], [-127.521536, 57.170681], [-127.558285, 57.159984], [-127.602376, 57.151646], [-127.684321, 57.142594], [-127.696956, 57.140901], [-127.716505, 57.132595], [-127.730349, 57.109966], [-127.732954, 57.082069], [-127.738413, 57.061659], [-127.738198, 57.035528], [-127.732869, 57.019632], [-127.723006, 57.006097], [-127.706427, 56.990765], [-127.677095, 56.976778], [-127.645559, 56.976774], [-127.605856, 56.978507], [-127.578755, 56.978549], [-127.561174, 56.977175], [-127.541077, 56.968997], [-127.536316, 56.953971], [-127.538599, 56.94631], [-127.544788, 56.931355], [-127.563575, 56.919593], [-127.597478, 56.901284], [-127.605031, 56.894443], [-127.603807, 56.88878], [-127.580662, 56.873741], [-127.563991, 56.861655], [-127.565424, 56.857872], [-127.572243, 56.853755], [-127.598194, 56.854294], [-127.610816, 56.853275], [-127.616313, 56.849963], [-127.617747, 56.84647], [-127.612038, 56.840683], [-127.603352, 56.833985], [-127.586108, 56.827948], [-127.574549, 56.821537], [-127.568453, 56.81289], [-127.566591, 56.804016], [-127.558963, 56.797661], [-127.545437, 56.790082], [-127.533479, 56.781346], [-127.523315, 56.77305], [-127.514685, 56.761055], [-127.514006, 56.750092], [-127.51313, 56.750091], [-127.521917, 56.745472], [-127.531594, 56.743445], [-127.532738, 56.74067], [-127.525719, 56.736221], [-127.51935, 56.732341], [-127.507526, 56.724532], [-127.496107, 56.71791], [-127.454166, 56.693171], [-127.432331, 56.683278], [-127.415857, 56.676815], [-127.405384, 56.676461], [-127.388677, 56.681153], [-127.362287, 56.689963], [-127.333092, 56.706036], [-127.305004, 56.718029], [-127.269231, 56.732768], [-127.222285, 56.745903], [-127.207523, 56.729886], [-127.188039, 56.69654], [-127.159946, 56.662725], [-127.15265, 56.652854], [-127.128864, 56.626397], [-127.101075, 56.613536], [-127.065889, 56.613178], [-127.037911, 56.617973], [-126.992883, 56.632225], [-126.967831, 56.645186], [-126.943066, 56.659482], [-126.937492, 56.661548], [-126.937128, 56.662436], [-126.931113, 56.667868], [-126.927681, 56.684596], [-126.917051, 56.690737], [-126.902275, 56.692477], [-126.871844, 56.682947], [-126.856682, 56.677331], [-126.840997, 56.679024], [-126.811487, 56.680323], [-126.796724, 56.69381], [-126.766104, 56.72454], [-126.717223, 56.766343], [-126.705372, 56.773061], [-126.692686, 56.774951], [-126.674838, 56.771759], [-126.653406, 56.760603], [-126.615825, 56.739146], [-126.57093, 56.713596], [-126.548216, 56.699474], [-126.488313, 56.664694], [-126.449199, 56.654996], [-126.41767, 56.654779], [-126.396479, 56.663125], [-126.378341, 56.671235], [-126.353018, 56.676242], [-126.33151, 56.67737], [-126.296134, 56.671216], [-126.231269, 56.647301], [-126.188942, 56.62532], [-126.17041, 56.612161], [-126.16217, 56.600425], [-126.159636, 56.5916], [-126.153484, 56.587804], [-126.142565, 56.583776], [-126.143027, 56.576678], [-126.151907, 56.571299], [-126.160815, 56.56317], [-126.158537, 56.554529], [-126.142233, 56.538941], [-126.141925, 56.529501], [-126.163247, 56.509167], [-126.181149, 56.491779], [-126.193083, 56.481047], [-126.196489, 56.473533], [-126.182456, 56.464897], [-126.139968, 56.443811], [-126.101873, 56.425438], [-126.093292, 56.41266], [-126.091052, 56.404031], [-126.100362, 56.392618], [-126.133302, 56.376355], [-126.1624, 56.365907], [-126.195836, 56.350355], [-126.194747, 56.342382], [-126.187582, 56.335891], [-126.156768, 56.307528], [-126.124686, 56.279838], [-126.116323, 56.271922], [-126.098413, 56.26574], [-126.043217, 56.254314], [-126.003249, 56.248962], [-126.001612, 56.248953], [-126.001613, 56.248831], [-125.980622, 56.245629], [-125.983397, 56.23336], [-125.98291, 56.214339], [-125.980067, 56.208663], [-125.979343, 56.197894], [-125.972631, 56.185698], [-125.970722, 56.17556], [-125.971729, 56.166341], [-125.962909, 56.153581], [-125.961973, 56.146904], [-125.9555, 56.142928], [-125.931973, 56.147102], [-125.86564, 56.145204], [-125.80405, 56.169716], [-125.737618, 56.190575], [-125.698814, 56.20852], [-125.673122, 56.222139], [-125.656628, 56.228585], [-125.645516, 56.226012], [-125.644814, 56.217444], [-125.648376, 56.208516], [-125.647304, 56.196965], [-125.653189, 56.169164], [-125.649925, 56.157297], [-125.644358, 56.152912], [-125.63518, 56.151264], [-125.608488, 56.153289], [-125.574789, 56.168992], [-125.501726, 56.209692], [-125.457688, 56.233354], [-125.403774, 56.252948], [-125.377864, 56.253086], [-125.324629, 56.243991], [-125.316446, 56.25011], [-125.313739, 56.248709], [-125.292167, 56.247057], [-125.265895, 56.247985], [-125.245464, 56.250564], [-125.236059, 56.255281], [-125.234432, 56.265332], [-125.226409, 56.271907], [-125.212214, 56.277851], [-125.203053, 56.286247], [-125.189028, 56.294743], [-125.15828, 56.300461], [-125.119096, 56.303596], [-125.090507, 56.276647], [-125.063661, 56.263069], [-125.053489, 56.22895], [-125.055991, 56.223095], [-125.060266, 56.207896], [-125.054706, 56.203533], [-125.041653, 56.203104], [-125.010375, 56.207885], [-124.998692, 56.210388], [-124.985541, 56.215199], [-124.980917, 56.221887], [-124.980181, 56.22941], [-124.946707, 56.240076], [-124.923507, 56.244373], [-124.894642, 56.242233], [-124.832853, 56.223538], [-124.795199, 56.200004], [-124.768846, 56.170319], [-124.715464, 56.1338], [-124.661017, 56.116116], [-124.623558, 56.11615], [-124.590206, 56.122056], [-124.532132, 56.127014], [-124.504247, 56.132448], [-124.488306, 56.130695], [-124.483998, 56.130003], [-124.478978, 56.119416], [-124.479043, 56.119204], [-124.475416, 56.118876], [-124.478828, 56.108226], [-124.47909, 56.106972], [-124.493201, 56.089179], [-124.497632, 56.067253], [-124.485057, 56.042996], [-124.463774, 56.020978], [-124.440686, 55.998926], [-124.440047, 55.998927], [-124.440646, 55.995649], [-124.442215, 55.990532], [-124.444257, 55.987367], [-124.440506, 55.978468], [-124.433561, 55.974566], [-124.43129, 55.968982], [-124.432585, 55.962482], [-124.431582, 55.954817], [-124.415526, 55.953784], [-124.410641, 55.954901], [-124.399127, 55.950549], [-124.398785, 55.942048], [-124.401233, 55.938546], [-124.391695, 55.926857], [-124.383421, 55.918347], [-124.382024, 55.91088], [-124.377007, 55.903307], [-124.379153, 55.898967], [-124.381428, 55.896052], [-124.380759, 55.891502], [-124.379252, 55.886118], [-124.376606, 55.882193], [-124.374025, 55.878979], [-124.360495, 55.870063], [-124.359809, 55.869701], [-124.337546, 55.843505], [-124.334644, 55.838755], [-124.333616, 55.832157], [-124.338105, 55.825495], [-124.344997, 55.819751], [-124.349846, 55.81717], [-124.353114, 55.811521], [-124.352181, 55.80762], [-124.355362, 55.802628], [-124.357353, 55.790878], [-124.357267, 55.786709], [-124.354185, 55.77992], [-124.346854, 55.768706], [-124.334556, 55.761263], [-124.327783, 55.753754], [-124.333209, 55.744697], [-124.334855, 55.740401], [-124.323402, 55.734162], [-124.322275, 55.733746], [-124.31951, 55.726617], [-124.316202, 55.720916], [-124.312721, 55.713246], [-124.308333, 55.705864], [-124.301989, 55.700111], [-124.296927, 55.69564], [-124.284052, 55.694252], [-124.276727, 55.68988], [-124.267151, 55.686613], [-124.25602, 55.687396], [-124.247888, 55.689327], [-124.239867, 55.687245], [-124.232061, 55.684257], [-124.215783, 55.682469], [-124.192291, 55.683154], [-124.187603, 55.679185], [-124.181689, 55.670994], [-124.174248, 55.670611], [-124.167435, 55.668984], [-124.16353, 55.663931], [-124.157783, 55.655898], [-124.153083, 55.649107], [-124.123011, 55.63972], [-124.115956, 55.621008], [-124.112854, 55.61152], [-124.108536, 55.603043], [-124.105483, 55.595842], [-124.104357, 55.585733], [-124.099954, 55.577912], [-124.092629, 55.568814], [-124.077011, 55.556362], [-124.062545, 55.547315], [-124.050353, 55.541317], [-124.037478, 55.537623], [-124.018542, 55.536037], [-124.011834, 55.539389], [-124.006664, 55.546223], [-124.001185, 55.548563], [-123.993608, 55.54989], [-123.957716, 55.552132], [-123.928378, 55.55438], [-123.942251, 55.574914], [-123.953462, 55.602729], [-123.975056, 55.609454], [-123.961997, 55.624431], [-123.952185, 55.634637], [-123.932938, 55.648008], [-123.916439, 55.65677], [-123.879067, 55.670155], [-123.846141, 55.682402], [-123.840899, 55.686978], [-123.833785, 55.693603], [-123.832242, 55.695536], [-123.827321, 55.700688], [-123.820912, 55.70318], [-123.817985, 55.716957], [-123.813211, 55.722792], [-123.803259, 55.728364], [-123.793132, 55.731507], [-123.78431, 55.734865], [-123.776929, 55.734052], [-123.760397, 55.731734], [-123.756804, 55.73595], [-123.761779, 55.745584], [-123.773021, 55.749236], [-123.7726, 55.750557], [-123.777092, 55.750557], [-123.784317, 55.752879], [-123.805893, 55.757973], [-123.815999, 55.766001], [-123.82226, 55.7746], [-123.822987, 55.784293], [-123.81913, 55.790444], [-123.820806, 55.795504], [-123.824173, 55.800042], [-123.835811, 55.805119], [-123.846721, 55.806078], [-123.858013, 55.806297], [-123.866557, 55.810471], [-123.880253, 55.825455], [-123.886163, 55.834789], [-123.892545, 55.844597], [-123.903822, 55.855992], [-123.908896, 55.865588], [-123.912657, 55.874971], [-123.922444, 55.883728], [-123.936756, 55.894808], [-123.937607, 55.90013], [-123.9362, 55.904289], [-123.932725, 55.909708], [-123.924836, 55.914009], [-123.915526, 55.916882], [-123.907433, 55.918755], [-123.896623, 55.91898], [-123.891539, 55.920546], [-123.874674, 55.926977], [-123.868709, 55.934391], [-123.86479, 55.946131], [-123.86002, 55.958133], [-123.857121, 55.972037], [-123.851438, 55.977502], [-123.84227, 55.982796], [-123.830591, 55.983276], [-123.815288, 55.980189], [-123.815906, 55.980797], [-123.827149, 55.993409], [-123.816883, 56.006265], [-123.802231, 56.019045], [-123.793826, 56.03189], [-123.786222, 56.038923], [-123.773838, 56.046887], [-123.764087, 56.050033], [-123.736844, 56.042659], [-123.718636, 56.044425], [-123.69514, 56.050678], [-123.683844, 56.050651], [-123.658285, 56.047198], [-123.64185, 56.039486], [-123.617377, 56.037161], [-123.578719, 56.035917], [-123.547154, 56.031783], [-123.500667, 56.02811], [-123.468605, 56.021698], [-123.394812, 56.01844], [-123.36439, 56.015291], [-123.354857, 56.012656], [-123.336218, 56.007749], [-123.326245, 56.000947], [-123.320615, 55.996115], [-123.28268, 55.983322], [-123.247363, 55.97974], [-123.227887, 55.980371], [-123.20216, 55.981423], [-123.162714, 55.986363], [-123.129924, 55.99427], [-123.117268, 56.001929], [-123.099956, 56.015076], [-123.076848, 56.031936], [-123.068836, 56.046377], [-123.062381, 56.061137], [-123.049822, 56.069632], [-123.033478, 56.075967], [-123.013457, 56.080175], [-123.00958, 56.081682], [-123.005537, 56.082572], [-122.966342, 56.086694], [-122.928805, 56.091174], [-122.904721, 56.093852], [-122.868961, 56.091642], [-122.843731, 56.090709], [-122.831309, 56.091451], [-122.780985, 56.089323], [-122.740371, 56.090509], [-122.700146, 56.098296], [-122.670648, 56.109505], [-122.628616, 56.131105], [-122.606325, 56.139105], [-122.590444, 56.142892], [-122.555554, 56.144846], [-122.535128, 56.142068], [-122.531649, 56.141394], [-122.508456, 56.132429], [-122.437892, 56.112753], [-122.399098, 56.106155], [-122.342581, 56.094052], [-122.304466, 56.083106], [-122.305635, 56.096721], [-122.287995, 56.095142], [-122.288731, 56.114043], [-122.287446, 56.113975], [-122.251459, 56.115642], [-122.233405, 56.139797], [-122.156343, 56.14465], [-122.092019, 56.14268], [-122.090944, 56.142375], [-122.042002, 56.142363], [-121.959228, 56.14145], [-121.958213, 56.158894], [-121.867321, 56.159018], [-121.795902, 56.159345], [-121.75793, 56.159407], [-121.756228, 56.119565], [-121.756295, 56.113875], [-121.755208, 56.114378], [-121.752129, 56.115576], [-121.750796, 56.115956], [-121.74797, 56.116422], [-121.746903, 56.116679], [-121.743772, 56.117659], [-121.742492, 56.117974], [-121.74084, 56.118124], [-121.739259, 56.117954], [-121.738586, 56.118034], [-121.735056, 56.118124], [-121.733416, 56.11796], [-121.729942, 56.117464], [-121.724111, 56.116167], [-121.72258, 56.11609], [-121.719259, 56.115685], [-121.717668, 56.11545], [-121.716354, 56.115114], [-121.714127, 56.115155], [-121.709534, 56.115379], [-121.705588, 56.115816], [-121.702553, 56.116087], [-121.700404, 56.115866], [-121.698496, 56.115816], [-121.696353, 56.115863], [-121.691403, 56.116108], [-121.688616, 56.116434], [-121.687874, 56.116624], [-121.685407, 56.116923], [-121.682276, 56.117456], [-121.679639, 56.118141], [-121.674257, 56.119871], [-121.6736, 56.121844], [-121.672216, 56.12333], [-121.668368, 56.125767], [-121.66409, 56.127661], [-121.653721, 56.130807], [-121.647793, 56.133255], [-121.639074, 56.134925], [-121.63658, 56.136476], [-121.63517, 56.137051], [-121.630318, 56.138787], [-121.626481, 56.139845], [-121.622206, 56.141378], [-121.617123, 56.142852], [-121.607305, 56.146454], [-121.600248, 56.1502], [-121.599168, 56.151144], [-121.598455, 56.152323], [-121.593702, 56.156167], [-121.591391, 56.157353], [-121.583955, 56.163765], [-121.581435, 56.165206], [-121.574964, 56.168385], [-121.573298, 56.168927], [-121.572338, 56.169167], [-121.570716, 56.169804], [-121.568185, 56.170513], [-121.564957, 56.172132], [-121.562234, 56.173314], [-121.555453, 56.175652], [-121.549611, 56.177469], [-121.540197, 56.179867], [-121.537695, 56.180297], [-121.534517, 56.181069], [-121.529618, 56.182419], [-121.520209, 56.185305], [-121.514425, 56.187418], [-121.512622, 56.18792], [-121.510469, 56.188286], [-121.506901, 56.189303], [-121.501874, 56.189801], [-121.496996, 56.19069], [-121.490804, 56.191626], [-121.48711, 56.192769], [-121.478739, 56.195911], [-121.473216, 56.198816], [-121.467862, 56.202608], [-121.467849, 56.205698], [-121.468392, 56.206732], [-121.467135, 56.207246], [-121.463013, 56.208303], [-121.461224, 56.208625], [-121.454792, 56.209345], [-121.449827, 56.210576], [-121.448282, 56.210643], [-121.444573, 56.210549], [-121.441888, 56.210327], [-121.439234, 56.210347], [-121.438431, 56.210422], [-121.436901, 56.210407], [-121.434461, 56.21081], [-121.431201, 56.211915], [-121.428857, 56.212567], [-121.426349, 56.213487], [-121.423061, 56.21501], [-121.421348, 56.216316], [-121.420687, 56.217032], [-121.418949, 56.218486], [-121.418028, 56.219449], [-121.415009, 56.221268], [-121.412077, 56.224656], [-121.409604, 56.226721], [-121.408487, 56.227789], [-121.405865, 56.229212], [-121.404003, 56.229826], [-121.401356, 56.23024], [-121.398916, 56.231426], [-121.39193, 56.233015], [-121.387135, 56.232634], [-121.378848, 56.230944], [-121.378694, 56.231023], [-121.372045, 56.231001], [-121.369523, 56.231146], [-121.36499, 56.231653], [-121.361013, 56.231838], [-121.359779, 56.232056], [-121.35648, 56.232855], [-121.353912, 56.232441], [-121.351344, 56.232383], [-121.349337, 56.232515], [-121.346283, 56.23314], [-121.343917, 56.233731], [-121.340458, 56.234252], [-121.338965, 56.234607], [-121.336406, 56.234676], [-121.335037, 56.23548], [-121.332363, 56.235263], [-121.326409, 56.234232], [-121.320553, 56.232636], [-121.313825, 56.23264], [-121.31035, 56.232855], [-121.303501, 56.233657], [-121.296064, 56.235148], [-121.291264, 56.236518], [-121.289564, 56.236259], [-121.287583, 56.236401], [-121.28677, 56.236535], [-121.283924, 56.237173], [-121.282672, 56.237555], [-121.281951, 56.237811], [-121.28087, 56.238582], [-121.277608, 56.238919], [-121.27527, 56.239258], [-121.274064, 56.239559], [-121.270484, 56.240577], [-121.268264, 56.241574], [-121.267765, 56.241957], [-121.266285, 56.242179], [-121.265334, 56.242427], [-121.263331, 56.243586], [-121.263152, 56.243714], [-121.263182, 56.243811], [-121.261776, 56.2448], [-121.261258, 56.245529], [-121.261103, 56.246449], [-121.260471, 56.247069], [-121.259921, 56.247903], [-121.258229, 56.248951], [-121.253772, 56.25225], [-121.251299, 56.254494], [-121.248504, 56.255478], [-121.243947, 56.257417], [-121.242769, 56.258179], [-121.241976, 56.258904], [-121.239907, 56.259495], [-121.231567, 56.262809], [-121.22979, 56.263608], [-121.227766, 56.264344], [-121.226614, 56.264979], [-121.225519, 56.265276], [-121.220906, 56.266263], [-121.217585, 56.266743], [-121.209621, 56.267378], [-121.206914, 56.267433], [-121.202227, 56.266461], [-121.200252, 56.265845], [-121.192808, 56.263159], [-121.18622, 56.261578], [-121.184297, 56.260567], [-121.17841, 56.258199], [-121.1768, 56.256423], [-121.171008, 56.252912], [-121.165484, 56.248946], [-121.165237, 56.24851], [-121.162609, 56.248202], [-121.162696, 56.252616], [-121.163006, 56.259272], [-121.16361, 56.268133], [-121.163693, 56.288678], [-121.164403, 56.289751], [-121.163646, 56.293548], [-121.160634, 56.30646], [-121.163806, 56.333527], [-121.058251, 56.333536], [-121.031842, 56.333659], [-121.018717, 56.333608], [-121.018673, 56.337068], [-121.0202, 56.337844], [-121.018094, 56.339173], [-121.020283, 56.340238], [-121.020314, 56.340798], [-121.004454, 56.340906], [-120.999968, 56.341012], [-120.993469, 56.338524], [-120.990345, 56.335506], [-120.988466, 56.332768], [-120.955459, 56.333695], [-120.951431, 56.33365], [-120.926418, 56.333641], [-120.926421, 56.333697], [-120.873655, 56.333674], [-120.864856, 56.333732], [-120.84749, 56.333742], [-120.815512, 56.333644], [-120.797414, 56.333692], [-120.768424, 56.333647], [-120.768421, 56.333705], [-120.742034, 56.333705], [-120.741427, 56.333585], [-120.706999, 56.333591], [-120.70654, 56.333531], [-120.706857, 56.333098], [-120.70702, 56.332703], [-120.706927, 56.332235], [-120.705798, 56.330326], [-120.705394, 56.3291], [-120.705476, 56.327905], [-120.706024, 56.326696], [-120.707278, 56.325604], [-120.707536, 56.324997], [-120.707732, 56.323702], [-120.708059, 56.322707], [-120.708387, 56.322264], [-120.7088, 56.321972], [-120.709486, 56.321728], [-120.710889, 56.321484], [-120.712805, 56.321311], [-120.714468, 56.321071], [-120.715862, 56.320773], [-120.717777, 56.320071], [-120.718042, 56.319746], [-120.718128, 56.319109], [-120.717852, 56.318587], [-120.716742, 56.317266], [-120.716637, 56.316544], [-120.716984, 56.31604], [-120.717656, 56.315453], [-120.719494, 56.314295], [-120.721869, 56.313626], [-120.724077, 56.313195], [-120.726044, 56.312641], [-120.727388, 56.31183], [-120.728267, 56.31087], [-120.728616, 56.310125], [-120.728596, 56.30822], [-120.728808, 56.306971], [-120.729064, 56.306585], [-120.729974, 56.305869], [-120.731033, 56.305219], [-120.732859, 56.303923], [-120.734888, 56.302821], [-120.73562, 56.302225], [-120.737207, 56.300615], [-120.737737, 56.299504], [-120.737946, 56.298636], [-120.737406, 56.296128], [-120.736845, 56.294401], [-120.73684, 56.293264], [-120.737109, 56.292424], [-120.738061, 56.290666], [-120.73922, 56.287906], [-120.739817, 56.286837], [-120.740487, 56.286099], [-120.740826, 56.284817], [-120.740761, 56.284164], [-120.740531, 56.283563], [-120.73973, 56.282658], [-120.738108, 56.281507], [-120.733956, 56.279556], [-120.732417, 56.279021], [-120.730245, 56.278603], [-120.728068, 56.278422], [-120.725148, 56.278344], [-120.7208, 56.27836], [-120.718957, 56.278552], [-120.716517, 56.279035], [-120.715403, 56.279492], [-120.712028, 56.279875], [-120.710994, 56.279925], [-120.709608, 56.279864], [-120.706875, 56.279481], [-120.705393, 56.279364], [-120.703484, 56.278922], [-120.702167, 56.278494], [-120.699363, 56.277786], [-120.695724, 56.276944], [-120.694413, 56.276721], [-120.693835, 56.276676], [-120.686011, 56.276998], [-120.684828, 56.276966], [-120.683711, 56.276725], [-120.682838, 56.276377], [-120.681188, 56.275557], [-120.680972, 56.275232], [-120.679578, 56.274], [-120.67696, 56.272197], [-120.675864, 56.271615], [-120.673377, 56.269335], [-120.671372, 56.267791], [-120.669528, 56.265677], [-120.66858, 56.2652], [-120.666207, 56.264554], [-120.66256, 56.263203], [-120.661873, 56.263018], [-120.660509, 56.262796], [-120.65925, 56.262772], [-120.65704, 56.262833], [-120.653837, 56.263178], [-120.652323, 56.263387], [-120.649426, 56.264374], [-120.646744, 56.264975], [-120.643581, 56.265365], [-120.64211, 56.265615], [-120.639673, 56.265845], [-120.638641, 56.265814], [-120.63766, 56.265644], [-120.636545, 56.265152], [-120.635964, 56.26448], [-120.635124, 56.263786], [-120.634066, 56.263383], [-120.63206, 56.262817], [-120.627847, 56.262161], [-120.626145, 56.261833], [-120.622686, 56.261964], [-120.62118, 56.262103], [-120.617348, 56.263168], [-120.616061, 56.26339], [-120.614241, 56.263548], [-120.612642, 56.263179], [-120.610103, 56.262946], [-120.60679, 56.262752], [-120.605533, 56.262866], [-120.603538, 56.262557], [-120.601639, 56.262094], [-120.598214, 56.260967], [-120.596666, 56.260617], [-120.592756, 56.260065], [-120.585503, 56.259576], [-120.583357, 56.259291], [-120.581115, 56.259288], [-120.576443, 56.258855], [-120.57414, 56.2584], [-120.572182, 56.257944], [-120.570041, 56.25772], [-120.568133, 56.25725], [-120.565769, 56.256424], [-120.564952, 56.255943], [-120.560754, 56.253026], [-120.559935, 56.252609], [-120.558969, 56.252267], [-120.557591, 56.251882], [-120.555395, 56.251408], [-120.5536, 56.250779], [-120.550438, 56.250151], [-120.545859, 56.248919], [-120.538918, 56.247883], [-120.535435, 56.247672], [-120.533151, 56.247417], [-120.531583, 56.247135], [-120.530299, 56.246523], [-120.529087, 56.245683], [-120.528817, 56.245276], [-120.528759, 56.244575], [-120.52938, 56.242797], [-120.529253, 56.241565], [-120.528973, 56.240603], [-120.528347, 56.239673], [-120.52685, 56.238415], [-120.525195, 56.237343], [-120.52196, 56.235762], [-120.520764, 56.235239], [-120.519292, 56.234738], [-120.51685, 56.234041], [-120.514796, 56.233654], [-120.511686, 56.233171], [-120.509516, 56.232569], [-120.507701, 56.231915], [-120.506537, 56.231248], [-120.504919, 56.229961], [-120.501454, 56.228243], [-120.498425, 56.226259], [-120.496654, 56.224892], [-120.49553, 56.224218], [-120.49306, 56.223212], [-120.490059, 56.222651], [-120.485337, 56.221437], [-120.480596, 56.219799], [-120.477905, 56.218149], [-120.477514, 56.217258], [-120.477689, 56.216422], [-120.476906, 56.21211], [-120.477033, 56.210877], [-120.47648, 56.208951], [-120.476615, 56.207161], [-120.476584, 56.205593], [-120.476361, 56.205], [-120.475766, 56.204304], [-120.47525, 56.203889], [-120.474375, 56.203421], [-120.472277, 56.202652], [-120.471152, 56.202344], [-120.468388, 56.202311], [-120.467105, 56.202179], [-120.464474, 56.201669], [-120.462101, 56.200743], [-120.459741, 56.200011], [-120.458872, 56.199761], [-120.455697, 56.199124], [-120.454303, 56.198559], [-120.453298, 56.198], [-120.453021, 56.19759], [-120.452818, 56.196701], [-120.452978, 56.195237], [-120.453982, 56.193446], [-120.454183, 56.192909], [-120.454081, 56.192121], [-120.453657, 56.191032], [-120.453268, 56.190543], [-120.452069, 56.189572], [-120.451082, 56.18817], [-120.449869, 56.186921], [-120.447391, 56.185294], [-120.445185, 56.18417], [-120.443995, 56.183428], [-120.442111, 56.182052], [-120.441665, 56.181459], [-120.441304, 56.180717], [-120.441083, 56.179911], [-120.441016, 56.177992], [-120.440572, 56.175204], [-120.439946, 56.173861], [-120.43949, 56.173105], [-120.43868, 56.172188], [-120.436887, 56.171346], [-120.433907, 56.170536], [-120.431129, 56.169673], [-120.426617, 56.168079], [-120.425492, 56.167499], [-120.424888, 56.166968], [-120.423741, 56.165346], [-120.422019, 56.163554], [-120.419436, 56.160635], [-120.418875, 56.160116], [-120.416995, 56.157518], [-120.416339, 56.156866], [-120.414897, 56.155053], [-120.413084, 56.152384], [-120.412207, 56.151473], [-120.407957, 56.148341], [-120.407479, 56.148106], [-120.40703, 56.147736], [-120.405812, 56.147028], [-120.404998, 56.146673], [-120.404699, 56.146481], [-120.403186, 56.145403], [-120.401637, 56.144121], [-120.40037, 56.143376], [-120.39896, 56.141134], [-120.398679, 56.140542], [-120.398161, 56.138547], [-120.398524, 56.137447], [-120.397746, 56.13598], [-120.397413, 56.135648], [-120.396468, 56.13501], [-120.392622, 56.133798], [-120.390366, 56.1333], [-120.389521, 56.132366], [-120.38878, 56.132199], [-120.386956, 56.13151], [-120.386011, 56.131532], [-120.384627, 56.131256], [-120.383714, 56.130688], [-120.383086, 56.13004], [-120.382671, 56.129396], [-120.382192, 56.127586], [-120.38184, 56.127135], [-120.381638, 56.126069], [-120.381819, 56.124739], [-120.382259, 56.124165], [-120.38261, 56.122886], [-120.383544, 56.121429], [-120.383742, 56.120556], [-120.38358, 56.11978], [-120.383303, 56.119056], [-120.382334, 56.117578], [-120.381496, 56.116647], [-120.380265, 56.114503], [-120.379654, 56.112867], [-120.37905, 56.111767], [-120.378719, 56.110665], [-120.378632, 56.10998], [-120.378037, 56.108099], [-120.377948, 56.106723], [-120.378644, 56.103896], [-120.378554, 56.101739], [-120.377993, 56.100436], [-120.377111, 56.099543], [-120.377, 56.097183], [-120.370041, 56.096342], [-120.363361, 56.096154], [-120.359859, 56.096302], [-120.357621, 56.097048], [-120.352954, 56.098236], [-120.348199, 56.098509], [-120.34559, 56.09874], [-120.343521, 56.099778], [-120.340429, 56.100372], [-120.338727, 56.10057], [-120.33641, 56.100582], [-120.334022, 56.100728], [-120.332607, 56.100656], [-120.328944, 56.101257], [-120.322424, 56.102091], [-120.318646, 56.102348], [-120.316816, 56.10254], [-120.314651, 56.102544], [-120.312151, 56.101409], [-120.309142, 56.100391], [-120.308069, 56.100465], [-120.301316, 56.100418], [-120.296492, 56.100663], [-120.294685, 56.10093], [-120.293235, 56.100869], [-120.290647, 56.101126], [-120.284222, 56.101386], [-120.279419, 56.101841], [-120.274247, 56.102776], [-120.270776, 56.103944], [-120.268574, 56.103896], [-120.265865, 56.10469], [-120.263488, 56.104801], [-120.260028, 56.105359], [-120.258455, 56.105459], [-120.252205, 56.105645], [-120.247952, 56.105404], [-120.240122, 56.105341], [-120.235689, 56.105226], [-120.232387, 56.104777], [-120.229376, 56.101292], [-120.22909, 56.099347], [-120.228231, 56.097997], [-120.207922, 56.093345], [-120.207238, 56.093288], [-120.205238, 56.093312], [-120.204192, 56.093415], [-120.199392, 56.092068], [-120.195766, 56.091635], [-120.1897, 56.091377], [-120.183732, 56.091492], [-120.180086, 56.091421], [-120.170767, 56.090863], [-120.164991, 56.091414], [-120.162475, 56.09245], [-120.160636, 56.092936], [-120.151907, 56.095493], [-120.143249, 56.097936], [-120.13803, 56.098937], [-120.134074, 56.098915], [-120.122334, 56.09781], [-120.117229, 56.098153], [-120.112477, 56.098779], [-120.104909, 56.101182], [-120.096681, 56.104727], [-120.085643, 56.1092], [-120.073511, 56.114306], [-120.069258, 56.11724], [-120.066187, 56.120113], [-120.063014, 56.123262], [-120.057459, 56.125725], [-120.052243, 56.126464], [-120.04846, 56.126639], [-120.040695, 56.126821], [-120.036679, 56.127119], [-120.033007, 56.127953], [-120.029368, 56.129091], [-120.022717, 56.131578], [-120.015754, 56.135021], [-120.009662, 56.137705], [-120.004958, 56.140369], [-120.0, 56.145537], [-120.0, 56.147453], [-119.999734, 56.147568], [-119.999903, 56.147767], [-120.0, 56.151056], [-120.00132, 56.159305], [-120.0027, 56.217222], [-120.000754, 56.249315], [-120.0, 56.319397], [-120.000088, 56.507328], [-120.0, 56.507329], [-120.0, 57.514057], [-119.999895, 57.514004], [-120.0, 58.000005], [-120.506001, 57.999793], [-120.752101, 58.000307], [-121.00311, 58.000832], [-121.254127, 58.001353], [-121.273823, 58.001412], [-121.509068, 58.000039], [-121.753294, 57.999121], [-121.872499, 58.00018], [-122.004122, 57.99997], [-122.04237, 57.999964], [-122.255163, 58.000025], [-122.506352, 58.000132], [-122.590853, 58.000225], [-122.739823, 58.000582], [-122.755558, 58.002754], [-122.756338, 58.002221], [-122.757374, 58.001363], [-122.757758, 58.000548], [-122.75785, 57.998528], [-122.757701, 57.997566], [-123.006438, 57.999798], [-123.253976, 57.999669], [-123.503003, 57.999545], [-123.752029, 57.999425], [-124.001053, 57.999308], [-124.25101, 57.999445], [-124.50097, 57.999582], [-124.750932, 57.999719], [-124.948365, 57.99987], [-124.93915, 57.993839], [-124.926217, 57.989265], [-124.918989, 57.986243], [-124.924218, 57.984327], [-124.934278, 57.984708], [-124.9494, 57.983871], [-124.964294, 57.982052], [-124.982349, 57.981425], [-124.993736, 57.983487], [-125.005244, 57.987392], [-125.010119, 57.990552], [-125.020429, 57.996038], [-125.034464, 58.001883], [-125.059925, 58.009609], [-125.079729, 58.014412], [-125.094701, 58.019102], [-125.097272, 58.018943], [-125.118466, 58.0205], [-125.134579, 58.022311], [-125.14534, 58.023685], [-125.157496, 58.022304], [-125.172244, 58.023751], [-125.189752, 58.022801], [-125.203907, 58.022356], [-125.216833, 58.01944], [-125.227602, 58.015888], [-125.237946, 58.011948], [-125.250831, 58.005418], [-125.329551, 57.9946], [-125.38658, 57.988714], [-125.410063, 57.982516], [-125.424977, 57.979862], [-125.451032, 57.971563], [-125.463535, 57.960709], [-125.476994, 57.954735], [-125.491602, 57.948922], [-125.488976, 57.941192], [-125.49599, 57.935135], [-125.504218, 57.935959], [-125.509893, 57.93446], [-125.525913, 57.929497], [-125.536559, 57.925419], [-125.563534, 57.918216], [-125.593828, 57.914252], [-125.603989, 57.928768], [-125.608688, 57.933024], [-125.619972, 57.937048], [-125.640003, 57.929519], [-125.653443, 57.922221], [-125.662556, 57.910562], [-125.664224, 57.902781], [-125.657022, 57.894919], [-125.661368, 57.890451], [-125.674694, 57.888372], [-125.679825, 57.884176], [-125.686342, 57.875266], [-125.690807, 57.871796], [-125.699601, 57.86827], [-125.718848, 57.865371], [-125.736149, 57.862037], [-125.747358, 57.865549], [-125.756266, 57.874469], [-125.766404, 57.889777], [-125.76907, 57.902747], [-125.766772, 57.90816], [-125.789649, 57.922597], [-125.785151, 57.93131], [-125.791858, 57.939104], [-125.797738, 57.943512], [-125.797356, 57.966046], [-125.8074, 57.973969], [-125.81543, 57.974579], [-125.823245, 57.974995], [-125.83746, 57.979394], [-125.845706, 57.980195], [-125.850713, 57.979407], [-125.859816, 57.975256], [-125.868009, 57.974249], [-125.875906, 57.973856], [-125.890479, 57.979441], [-125.896937, 57.978196], [-125.908091, 57.97808], [-125.916395, 57.980683], [-125.974736, 57.967033], [-125.991429, 57.97142], [-126.024099, 57.968813], [-126.044091, 57.966939], [-126.058235, 57.962476], [-126.06477, 57.95911], [-126.068943, 57.952324], [-126.063534, 57.941802], [-126.055733, 57.933081], [-126.053958, 57.930211], [-126.067142, 57.916338], [-126.077943, 57.913668], [-126.093607, 57.915345], [-126.106725, 57.917825], [-126.124431, 57.918853], [-126.140094, 57.922367], [-126.153814, 57.930923], [-126.163163, 57.938654], [-126.182909, 57.94456], [-126.21418, 57.943495], [-126.228748, 57.93374], [-126.23374, 57.922248], [-126.229684, 57.911696], [-126.243503, 57.901462], [-126.250244, 57.883493], [-126.257401, 57.867207], [-126.263137, 57.859677], [-126.268712, 57.855704], [-126.288948, 57.854519], [-126.315934, 57.861916], [-126.323244, 57.87403], [-126.337915, 57.884836], [-126.353862, 57.900229], [-126.365475, 57.914386], [-126.37799, 57.923259], [-126.385251, 57.926192], [-126.397782, 57.926399], [-126.411318, 57.924456], [-126.422177, 57.923622], [-126.434757, 57.934522]], [[-125.64774, 57.423648], [-125.650704, 57.424235], [-125.654757, 57.425695], [-125.659424, 57.428405], [-125.66189, 57.429429], [-125.665219, 57.429925], [-125.66965, 57.430076], [-125.672128, 57.429812], [-125.673696, 57.429722], [-125.67462, 57.430121], [-125.676404, 57.430128], [-125.677326, 57.43019], [-125.679703, 57.430589], [-125.680575, 57.430668], [-125.680882, 57.430752], [-125.681501, 57.431009], [-125.681625, 57.431356], [-125.681369, 57.43172], [-125.681029, 57.432536], [-125.680847, 57.433673], [-125.680265, 57.434134], [-125.628374, 57.433691], [-125.626831, 57.433311], [-125.626096, 57.433281], [-125.624422, 57.433397], [-125.623767, 57.434012], [-125.622902, 57.434507], [-125.622307, 57.435284], [-125.622117, 57.435422], [-125.62203, 57.435692], [-125.621387, 57.435889], [-125.62067, 57.435923], [-125.618862, 57.435768], [-125.617771, 57.434759], [-125.616726, 57.434469], [-125.615664, 57.433912], [-125.614656, 57.432958], [-125.614528, 57.432715], [-125.614307, 57.431169], [-125.615581, 57.429213], [-125.616825, 57.426364], [-125.615585, 57.423877], [-125.613773, 57.423125], [-125.610993, 57.424033], [-125.609064, 57.424135], [-125.608348, 57.423092], [-125.60924, 57.421732], [-125.609284, 57.421457], [-125.609151, 57.421145], [-125.608981, 57.42098], [-125.608261, 57.420647], [-125.607215, 57.420305], [-125.606363, 57.420305], [-125.605788, 57.420123], [-125.605332, 57.419774], [-125.60409, 57.417727], [-125.603939, 57.416599], [-125.60479, 57.41625], [-125.605659, 57.416653], [-125.606626, 57.416934], [-125.608499, 57.417271], [-125.613733, 57.417808], [-125.616155, 57.418198], [-125.620032, 57.418715], [-125.62707, 57.420092], [-125.637237, 57.422471], [-125.640563, 57.423073], [-125.640888, 57.425634], [-125.644187, 57.425926], [-125.644564, 57.423432], [-125.64774, 57.423648]], [[-124.975163, 56.923431], [-124.95606, 56.925318], [-124.955475, 56.924213], [-124.954471, 56.921651], [-124.953535, 56.91977], [-124.952941, 56.918817], [-124.951571, 56.915504], [-124.951281, 56.914359], [-124.951429, 56.912802], [-124.950898, 56.911768], [-124.950367, 56.911039], [-124.950373, 56.910841], [-124.950687, 56.910253], [-124.952019, 56.909028], [-124.952171, 56.908746], [-124.95283, 56.908198], [-124.952925, 56.907486], [-124.953086, 56.907116], [-124.953675, 56.906459], [-124.954914, 56.904687], [-124.95548, 56.902936], [-124.956215, 56.9019], [-124.957263, 56.899646], [-124.957434, 56.898834], [-124.957531, 56.897269], [-124.957333, 56.893795], [-124.957187, 56.893195], [-124.957274, 56.89296], [-124.959532, 56.890929], [-124.960876, 56.889354], [-124.961646, 56.888084], [-124.961858, 56.887407], [-124.961969, 56.886408], [-124.962225, 56.885963], [-124.963243, 56.885013], [-124.964396, 56.884132], [-124.96645, 56.882347], [-124.970567, 56.879443], [-124.97174, 56.878364], [-124.972059, 56.878188], [-124.973478, 56.877726], [-124.974658, 56.878327], [-124.974857, 56.878342], [-124.975149, 56.878597], [-124.975435, 56.879024], [-124.975145, 56.879416], [-124.975376, 56.879789], [-124.976595, 56.880795], [-124.977186, 56.8811], [-124.977834, 56.88126], [-124.979971, 56.881631], [-124.983517, 56.881628], [-124.983929, 56.881685], [-124.984248, 56.881823], [-124.984206, 56.888308], [-124.980673, 56.89051], [-124.988752, 56.890261], [-124.988406, 56.890582], [-124.988417, 56.89077], [-124.989009, 56.891075], [-124.990176, 56.891417], [-124.990491, 56.891492], [-124.991198, 56.891498], [-124.991364, 56.891559], [-124.991456, 56.891737], [-124.991461, 56.892141], [-124.991653, 56.892345], [-124.992445, 56.892404], [-124.993373, 56.892314], [-124.993324, 56.898437], [-124.993765, 56.917184], [-124.973669, 56.918969], [-124.975163, 56.923431]], [[-124.929879, 56.788618], [-124.927807, 56.79651], [-124.923723, 56.804379], [-124.915764, 56.808874], [-124.908315, 56.811941], [-124.907723, 56.81113], [-124.907179, 56.810725], [-124.905687, 56.810379], [-124.904767, 56.810034], [-124.904008, 56.809245], [-124.903735, 56.809052], [-124.902984, 56.80875], [-124.900579, 56.808184], [-124.899788, 56.808079], [-124.898544, 56.808097], [-124.897633, 56.808237], [-124.896403, 56.808526], [-124.895868, 56.808283], [-124.895386, 56.808146], [-124.894712, 56.808139], [-124.894063, 56.808256], [-124.894047, 56.806944], [-124.894083, 56.806702], [-124.894356, 56.806274], [-124.894938, 56.805799], [-124.89627, 56.805239], [-124.897031, 56.804725], [-124.89743, 56.803873], [-124.897393, 56.80346], [-124.897096, 56.803106], [-124.896809, 56.80293], [-124.895437, 56.802358], [-124.89526, 56.80211], [-124.895225, 56.801741], [-124.895059, 56.801358], [-124.894458, 56.800478], [-124.891618, 56.798436], [-124.890606, 56.797822], [-124.889945, 56.797033], [-124.889044, 56.79638], [-124.888427, 56.795196], [-124.887286, 56.794035], [-124.885257, 56.793059], [-124.8848, 56.792734], [-124.884451, 56.792317], [-124.884006, 56.791947], [-124.882678, 56.791266], [-124.881815, 56.790722], [-124.881423, 56.790359], [-124.880657, 56.789175], [-124.880116, 56.788736], [-124.884073, 56.786926], [-124.905241, 56.787168], [-124.915975, 56.786264], [-124.925692, 56.783071], [-124.929879, 56.788618]], [[-125.445808, 56.378715], [-125.409616, 56.373208], [-125.388838, 56.356418], [-125.390753, 56.356011], [-125.391496, 56.354365], [-125.389618, 56.35209], [-125.386994, 56.350795], [-125.391924, 56.350777], [-125.392517, 56.351246], [-125.393308, 56.351299], [-125.393334, 56.350841], [-125.393004, 56.350526], [-125.393425, 56.350334], [-125.394009, 56.35061], [-125.396006, 56.350939], [-125.397561, 56.351485], [-125.398873, 56.352295], [-125.399565, 56.352983], [-125.400278, 56.353275], [-125.400925, 56.353756], [-125.401027, 56.354087], [-125.400974, 56.354797], [-125.400397, 56.355914], [-125.400477, 56.356183], [-125.400989, 56.356838], [-125.401268, 56.356922], [-125.401578, 56.356934], [-125.402212, 56.356751], [-125.403456, 56.356673], [-125.404094, 56.356543], [-125.404932, 56.356465], [-125.405905, 56.356499], [-125.406841, 56.356706], [-125.407446, 56.357063], [-125.407912, 56.357503], [-125.408736, 56.358781], [-125.409832, 56.359739], [-125.411663, 56.360765], [-125.412095, 56.361196], [-125.41343, 56.361827], [-125.413858, 56.361952], [-125.414198, 56.362207], [-125.414523, 56.362219], [-125.414822, 56.362096], [-125.415562, 56.362001], [-125.416182, 56.361575], [-125.416304, 56.361195], [-125.416062, 56.360957], [-125.41605, 56.360527], [-125.416152, 56.360353], [-125.416533, 56.360194], [-125.417214, 56.360233], [-125.417805, 56.360627], [-125.419854, 56.361252], [-125.420505, 56.361572], [-125.421133, 56.362027], [-125.421492, 56.362568], [-125.421595, 56.363699], [-125.421744, 56.364019], [-125.422068, 56.364525], [-125.423203, 56.365815], [-125.424545, 56.366273], [-125.425312, 56.366376], [-125.426566, 56.366746], [-125.427055, 56.367051], [-125.427366, 56.367379], [-125.429385, 56.368319], [-125.43005, 56.368827], [-125.430282, 56.368921], [-125.431359, 56.369052], [-125.431992, 56.369066], [-125.432876, 56.369229], [-125.433915, 56.369244], [-125.435236, 56.36912], [-125.438069, 56.368381], [-125.442255, 56.367733], [-125.442795, 56.367578], [-125.443478, 56.367107], [-125.444133, 56.366959], [-125.444736, 56.36701], [-125.445788, 56.368022], [-125.447592, 56.368652], [-125.448339, 56.369149], [-125.448619, 56.369261], [-125.450949, 56.369719], [-125.45129, 56.369739], [-125.452772, 56.369358], [-125.453054, 56.3692], [-125.445808, 56.378715]], [[-121.961254, 56.498039], [-121.965868, 56.497885], [-121.972152, 56.498735], [-121.976034, 56.49822], [-121.978035, 56.497826], [-121.978042, 56.498422], [-121.979977, 56.509512], [-121.978677, 56.514697], [-121.977679, 56.523102], [-121.976529, 56.523184], [-121.953363, 56.52328], [-121.901545, 56.522503], [-121.901581, 56.521337], [-121.900171, 56.510033], [-121.900251, 56.499516], [-121.900791, 56.487842], [-121.883688, 56.487594], [-121.833118, 56.487178], [-121.832518, 56.472918], [-121.777758, 56.472176], [-121.778171, 56.437968], [-121.779606, 56.424538], [-121.780197, 56.422576], [-121.780507, 56.423037], [-121.781626, 56.424035], [-121.781975, 56.424254], [-121.783705, 56.424972], [-121.784638, 56.425206], [-121.785606, 56.425324], [-121.786556, 56.425549], [-121.788425, 56.426402], [-121.789871, 56.426866], [-121.792788, 56.426912], [-121.793142, 56.42696], [-121.793736, 56.427191], [-121.794084, 56.427428], [-121.794247, 56.427879], [-121.794331, 56.42884], [-121.794521, 56.429553], [-121.794894, 56.430014], [-121.795341, 56.43027], [-121.796062, 56.430503], [-121.798773, 56.430916], [-121.799454, 56.431442], [-121.800476, 56.431992], [-121.80084, 56.432264], [-121.802213, 56.432942], [-121.802918, 56.433193], [-121.80382, 56.433416], [-121.807401, 56.434007], [-121.809593, 56.434955], [-121.813033, 56.435957], [-121.813931, 56.43629], [-121.814569, 56.436628], [-121.815324, 56.4374], [-121.816069, 56.437937], [-121.816872, 56.438232], [-121.818692, 56.438653], [-121.819745, 56.439184], [-121.820873, 56.439959], [-121.821513, 56.440207], [-121.822246, 56.440602], [-121.824296, 56.441527], [-121.824643, 56.441836], [-121.824937, 56.442271], [-121.825275, 56.443406], [-121.825526, 56.443723], [-121.827445, 56.445098], [-121.829322, 56.445277], [-121.829851, 56.445525], [-121.830654, 56.445739], [-121.83102, 56.445977], [-121.831297, 56.446491], [-121.831485, 56.446673], [-121.831541, 56.446969], [-121.831523, 56.447536], [-121.831266, 56.448522], [-121.83126, 56.449294], [-121.831797, 56.450233], [-121.831962, 56.450702], [-121.832209, 56.451072], [-121.833178, 56.45181], [-121.833458, 56.452118], [-121.834881, 56.452868], [-121.835602, 56.453126], [-121.836403, 56.453521], [-121.837802, 56.454441], [-121.838349, 56.455129], [-121.839234, 56.455946], [-121.839236, 56.456359], [-121.838894, 56.456895], [-121.838867, 56.457793], [-121.839057, 56.458559], [-121.839896, 56.459726], [-121.840692, 56.460209], [-121.842586, 56.460955], [-121.842935, 56.46121], [-121.843797, 56.461613], [-121.844658, 56.46216], [-121.845303, 56.462301], [-121.846733, 56.462791], [-121.848155, 56.462983], [-121.849427, 56.463292], [-121.850037, 56.463558], [-121.850403, 56.46384], [-121.851266, 56.464198], [-121.852094, 56.46478], [-121.852708, 56.464886], [-121.855011, 56.464934], [-121.855402, 56.464829], [-121.855874, 56.464797], [-121.859202, 56.464253], [-121.860894, 56.464107], [-121.865924, 56.464135], [-121.867218, 56.4643], [-121.867747, 56.464511], [-121.868132, 56.464749], [-121.868901, 56.465574], [-121.868917, 56.466696], [-121.869308, 56.467716], [-121.869943, 56.468737], [-121.870774, 56.469714], [-121.871571, 56.470207], [-121.873426, 56.471167], [-121.874062, 56.471595], [-121.877282, 56.473098], [-121.880447, 56.473629], [-121.884381, 56.474015], [-121.884996, 56.474119], [-121.885863, 56.474405], [-121.886253, 56.474409], [-121.886695, 56.474287], [-121.888486, 56.473549], [-121.889362, 56.473035], [-121.889665, 56.472661], [-121.89046, 56.470961], [-121.890695, 56.470684], [-121.89134, 56.470295], [-121.892901, 56.469644], [-121.89403, 56.469375], [-121.89601, 56.469356], [-121.896805, 56.469391], [-121.898401, 56.469711], [-121.901199, 56.470679], [-121.903072, 56.471602], [-121.904137, 56.472413], [-121.904839, 56.473361], [-121.90516, 56.474038], [-121.905765, 56.474493], [-121.906356, 56.474768], [-121.907359, 56.475486], [-121.907397, 56.476395], [-121.907617, 56.477205], [-121.908571, 56.479064], [-121.908737, 56.479559], [-121.908738, 56.481761], [-121.908445, 56.482351], [-121.907825, 56.48302], [-121.907832, 56.483325], [-121.910956, 56.484288], [-121.911675, 56.484679], [-121.912716, 56.485129], [-121.913144, 56.48552], [-121.913851, 56.486416], [-121.914547, 56.487059], [-121.915807, 56.487761], [-121.916588, 56.488344], [-121.917404, 56.488764], [-121.918514, 56.48969], [-121.919524, 56.490184], [-121.920618, 56.490499], [-121.9213, 56.49109], [-121.922228, 56.49161], [-121.922637, 56.492117], [-121.922663, 56.492288], [-121.922497, 56.492447], [-121.922035, 56.492649], [-121.922019, 56.492695], [-121.922275, 56.492832], [-121.924533, 56.492824], [-121.926005, 56.493035], [-121.929464, 56.493055], [-121.930663, 56.493146], [-121.932039, 56.49332], [-121.933633, 56.493783], [-121.934134, 56.493868], [-121.934716, 56.493954], [-121.936032, 56.493992], [-121.936775, 56.494143], [-121.938674, 56.495318], [-121.940927, 56.496127], [-121.941199, 56.496274], [-121.941831, 56.496864], [-121.942646, 56.497939], [-121.942924, 56.499028], [-121.943606, 56.500239], [-121.943889, 56.500565], [-121.944671, 56.501038], [-121.945299, 56.501277], [-121.946251, 56.501511], [-121.947901, 56.501535], [-121.95446, 56.499352], [-121.961254, 56.498039]], [[-121.07358, 56.726059], [-121.049914, 56.726072], [-121.046923, 56.70337], [-121.077118, 56.702944], [-121.076807, 56.697575], [-121.086968, 56.697112], [-121.086259, 56.690341], [-121.112249, 56.689152], [-121.111453, 56.683092], [-121.123279, 56.683033], [-121.123426, 56.678261], [-121.138978, 56.678246], [-121.138283, 56.697912], [-121.138549, 56.69832], [-121.127255, 56.698134], [-121.127406, 56.704411], [-121.099866, 56.704381], [-121.099867, 56.711609], [-121.074254, 56.711616], [-121.074472, 56.711903], [-121.073382, 56.713375], [-121.073247, 56.714012], [-121.073679, 56.714785], [-121.07358, 56.726059]], [[-121.786269, 56.424378], [-121.784892, 56.424364], [-121.784278, 56.424242], [-121.783335, 56.423819], [-121.78302, 56.423574], [-121.782694, 56.423067], [-121.782715, 56.42242], [-121.783062, 56.421732], [-121.783937, 56.421237], [-121.78526, 56.420945], [-121.785689, 56.42068], [-121.785978, 56.420305], [-121.785965, 56.41964], [-121.785793, 56.418955], [-121.785505, 56.418333], [-121.785116, 56.416837], [-121.785376, 56.416813], [-121.787279, 56.417109], [-121.787864, 56.417071], [-121.78907, 56.416876], [-121.789295, 56.416887], [-121.789972, 56.417074], [-121.791221, 56.417004], [-121.791575, 56.417106], [-121.792658, 56.417208], [-121.793559, 56.417395], [-121.793718, 56.417522], [-121.794273, 56.4184], [-121.794277, 56.418795], [-121.793644, 56.419795], [-121.793504, 56.420171], [-121.793735, 56.421603], [-121.793674, 56.42295], [-121.793946, 56.423272], [-121.793156, 56.424783], [-121.790719, 56.42416], [-121.789719, 56.424007], [-121.78761, 56.423987], [-121.786269, 56.424378]], [[-120.493959, 56.603342], [-120.4784, 56.603691], [-120.477696, 56.595327], [-120.485229, 56.595284], [-120.4845, 56.575372], [-120.459066, 56.575079], [-120.458067, 56.566201], [-120.472375, 56.565344], [-120.471524, 56.551365], [-120.499024, 56.55038], [-120.499146, 56.550606], [-120.500441, 56.558862], [-120.514558, 56.558878], [-120.513092, 56.575347], [-120.51269, 56.594908], [-120.492894, 56.595092], [-120.493959, 56.603342]]]]}, "properties": {"name": "Peace River B", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Peace River B", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955040", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.031842, 56.333659], [-121.058251, 56.333536], [-121.163806, 56.333527], [-121.160634, 56.30646], [-121.163646, 56.293548], [-121.164403, 56.289751], [-121.163693, 56.288678], [-121.16361, 56.268133], [-121.163006, 56.259272], [-121.162696, 56.252616], [-121.162609, 56.248202], [-121.155915, 56.247088], [-121.149801, 56.246889], [-121.14907, 56.246556], [-121.146022, 56.245033], [-121.144545, 56.244109], [-121.140331, 56.240852], [-121.138638, 56.23914], [-121.132219, 56.235196], [-121.129638, 56.233416], [-121.127879, 56.232462], [-121.125517, 56.231358], [-121.124163, 56.229712], [-121.122412, 56.228494], [-121.113309, 56.225742], [-121.107212, 56.224458], [-121.103848, 56.223393], [-121.099663, 56.222782], [-121.095125, 56.222474], [-121.091654, 56.220204], [-121.090137, 56.219818], [-121.084167, 56.219453], [-121.083442, 56.219677], [-121.081656, 56.22097], [-121.077063, 56.220509], [-121.072448, 56.219776], [-121.068054, 56.218465], [-121.066961, 56.218426], [-121.062933, 56.217822], [-121.053066, 56.217468], [-121.049065, 56.216915], [-121.042091, 56.217285], [-121.041354, 56.217459], [-121.038616, 56.217542], [-121.02458, 56.21922], [-121.020689, 56.220601], [-121.016413, 56.222376], [-121.011793, 56.224552], [-121.008294, 56.2255], [-121.005674, 56.226349], [-121.002843, 56.228935], [-120.989458, 56.231277], [-120.98686, 56.230781], [-120.982729, 56.229811], [-120.977877, 56.229066], [-120.968508, 56.228117], [-120.965513, 56.227221], [-120.958471, 56.225609], [-120.954084, 56.224021], [-120.951459, 56.222783], [-120.949778, 56.221699], [-120.947888, 56.220849], [-120.945673, 56.219269], [-120.939451, 56.212984], [-120.937375, 56.211691], [-120.934165, 56.209215], [-120.931642, 56.20775], [-120.929487, 56.20612], [-120.929387, 56.204841], [-120.92861, 56.203784], [-120.926378, 56.201752], [-120.925017, 56.200632], [-120.916573, 56.195836], [-120.909905, 56.193441], [-120.907819, 56.192865], [-120.905463, 56.191839], [-120.897619, 56.191328], [-120.892722, 56.192356], [-120.887106, 56.191997], [-120.885779, 56.191822], [-120.882891, 56.191897], [-120.875738, 56.191533], [-120.87197, 56.191684], [-120.867875, 56.191994], [-120.863262, 56.192426], [-120.861285, 56.192728], [-120.859874, 56.192516], [-120.858686, 56.192511], [-120.855023, 56.192933], [-120.852923, 56.193026], [-120.849544, 56.193339], [-120.843629, 56.194062], [-120.840815, 56.193161], [-120.839073, 56.192496], [-120.838857, 56.19251], [-120.837567, 56.192642], [-120.835873, 56.193021], [-120.833055, 56.193515], [-120.8325, 56.193675], [-120.831363, 56.193739], [-120.830448, 56.193903], [-120.828162, 56.194743], [-120.825507, 56.195434], [-120.8232, 56.196371], [-120.821348, 56.19726], [-120.819726, 56.197119], [-120.817315, 56.197198], [-120.812715, 56.197896], [-120.807449, 56.198433], [-120.804741, 56.197743], [-120.800943, 56.197137], [-120.800147, 56.19669], [-120.797121, 56.195909], [-120.794421, 56.194048], [-120.793314, 56.192914], [-120.792375, 56.190993], [-120.791221, 56.188995], [-120.790997, 56.18815], [-120.790256, 56.187435], [-120.789284, 56.186752], [-120.787549, 56.184597], [-120.786752, 56.18311], [-120.786759, 56.181283], [-120.78639, 56.180064], [-120.78539, 56.179404], [-120.782864, 56.176862], [-120.781113, 56.176097], [-120.779864, 56.174568], [-120.778625, 56.173283], [-120.777238, 56.172545], [-120.775854, 56.171464], [-120.774808, 56.171033], [-120.7736, 56.170235], [-120.772303, 56.168781], [-120.772013, 56.167972], [-120.769605, 56.166984], [-120.767738, 56.166109], [-120.763606, 56.164476], [-120.761302, 56.163734], [-120.755537, 56.162174], [-120.750281, 56.160837], [-120.748343, 56.160197], [-120.745958, 56.159652], [-120.74041, 56.159283], [-120.733206, 56.155827], [-120.732828, 56.159785], [-120.715639, 56.159716], [-120.715766, 56.173926], [-120.715587, 56.173734], [-120.662919, 56.173728], [-120.662931, 56.159485], [-120.649069, 56.159493], [-120.6492, 56.169079], [-120.63667, 56.170911], [-120.636679, 56.170718], [-120.636886, 56.170385], [-120.6369, 56.159374], [-120.636332, 56.159373], [-120.636354, 56.152716], [-120.636183, 56.152495], [-120.636208, 56.138978], [-120.636094, 56.138465], [-120.636385, 56.136761], [-120.63669, 56.136721], [-120.637089, 56.136765], [-120.637903, 56.137148], [-120.638204, 56.137218], [-120.640811, 56.137501], [-120.641903, 56.137504], [-120.642649, 56.137437], [-120.643256, 56.137503], [-120.643741, 56.137719], [-120.644619, 56.13787], [-120.647071, 56.138061], [-120.649356, 56.13831], [-120.651077, 56.138614], [-120.652854, 56.138755], [-120.653732, 56.138889], [-120.657618, 56.139017], [-120.659182, 56.138983], [-120.661612, 56.139231], [-120.660534, 56.136332], [-120.655124, 56.13289], [-120.652805, 56.132088], [-120.648208, 56.130807], [-120.645219, 56.130098], [-120.640287, 56.128361], [-120.634774, 56.127987], [-120.628686, 56.127399], [-120.60847, 56.128694], [-120.599487, 56.130044], [-120.59657, 56.129557], [-120.593672, 56.12897], [-120.590134, 56.128013], [-120.588872, 56.1276], [-120.586554, 56.126599], [-120.576636, 56.125276], [-120.5715, 56.124263], [-120.569013, 56.123605], [-120.567733, 56.123127], [-120.56533, 56.122853], [-120.556739, 56.120048], [-120.551509, 56.117074], [-120.549702, 56.116694], [-120.546117, 56.116218], [-120.54174, 56.115731], [-120.537767, 56.115502], [-120.536492, 56.115312], [-120.533326, 56.115144], [-120.52425, 56.116436], [-120.518901, 56.117372], [-120.502793, 56.118719], [-120.493996, 56.118622], [-120.493029, 56.118667], [-120.491403, 56.118593], [-120.489891, 56.118216], [-120.487953, 56.118041], [-120.487471, 56.117835], [-120.485483, 56.116734], [-120.481059, 56.116071], [-120.478455, 56.116058], [-120.477398, 56.11596], [-120.475062, 56.115218], [-120.47038, 56.114433], [-120.468224, 56.113902], [-120.467035, 56.113435], [-120.466211, 56.112824], [-120.463617, 56.11221], [-120.462461, 56.110578], [-120.460777, 56.108543], [-120.454489, 56.106436], [-120.446745, 56.105264], [-120.44207, 56.103709], [-120.440536, 56.102352], [-120.425274, 56.100782], [-120.42204, 56.101403], [-120.41623, 56.100469], [-120.402516, 56.098924], [-120.392673, 56.098439], [-120.381743, 56.097235], [-120.377, 56.097183], [-120.377111, 56.099543], [-120.377993, 56.100436], [-120.378554, 56.101739], [-120.378644, 56.103896], [-120.377948, 56.106723], [-120.378037, 56.108099], [-120.378632, 56.10998], [-120.378719, 56.110665], [-120.37905, 56.111767], [-120.379654, 56.112867], [-120.380265, 56.114503], [-120.381496, 56.116647], [-120.382334, 56.117578], [-120.383303, 56.119056], [-120.38358, 56.11978], [-120.383742, 56.120556], [-120.383544, 56.121429], [-120.38261, 56.122886], [-120.382259, 56.124165], [-120.381819, 56.124739], [-120.381638, 56.126069], [-120.38184, 56.127135], [-120.382192, 56.127586], [-120.382671, 56.129396], [-120.383086, 56.13004], [-120.383714, 56.130688], [-120.384627, 56.131256], [-120.386011, 56.131532], [-120.386956, 56.13151], [-120.38878, 56.132199], [-120.389521, 56.132366], [-120.390366, 56.1333], [-120.392622, 56.133798], [-120.396468, 56.13501], [-120.397413, 56.135648], [-120.397746, 56.13598], [-120.398524, 56.137447], [-120.398161, 56.138547], [-120.398679, 56.140542], [-120.39896, 56.141134], [-120.40037, 56.143376], [-120.401637, 56.144121], [-120.403186, 56.145403], [-120.404699, 56.146481], [-120.404998, 56.146673], [-120.405812, 56.147028], [-120.40703, 56.147736], [-120.407479, 56.148106], [-120.407957, 56.148341], [-120.412207, 56.151473], [-120.413084, 56.152384], [-120.414897, 56.155053], [-120.416339, 56.156866], [-120.416995, 56.157518], [-120.418875, 56.160116], [-120.419436, 56.160635], [-120.422019, 56.163554], [-120.423741, 56.165346], [-120.424888, 56.166968], [-120.425492, 56.167499], [-120.426617, 56.168079], [-120.431129, 56.169673], [-120.433907, 56.170536], [-120.436887, 56.171346], [-120.43868, 56.172188], [-120.43949, 56.173105], [-120.439946, 56.173861], [-120.440572, 56.175204], [-120.441016, 56.177992], [-120.441083, 56.179911], [-120.441304, 56.180717], [-120.441665, 56.181459], [-120.442111, 56.182052], [-120.443995, 56.183428], [-120.445185, 56.18417], [-120.447391, 56.185294], [-120.449869, 56.186921], [-120.451082, 56.18817], [-120.452069, 56.189572], [-120.453268, 56.190543], [-120.453657, 56.191032], [-120.454081, 56.192121], [-120.454183, 56.192909], [-120.453982, 56.193446], [-120.452978, 56.195237], [-120.452818, 56.196701], [-120.453021, 56.19759], [-120.453298, 56.198], [-120.454303, 56.198559], [-120.455697, 56.199124], [-120.458872, 56.199761], [-120.459741, 56.200011], [-120.462101, 56.200743], [-120.464474, 56.201669], [-120.467105, 56.202179], [-120.468388, 56.202311], [-120.471152, 56.202344], [-120.472277, 56.202652], [-120.474375, 56.203421], [-120.47525, 56.203889], [-120.475766, 56.204304], [-120.476361, 56.205], [-120.476584, 56.205593], [-120.476615, 56.207161], [-120.47648, 56.208951], [-120.477033, 56.210877], [-120.476906, 56.21211], [-120.477689, 56.216422], [-120.477514, 56.217258], [-120.477905, 56.218149], [-120.480596, 56.219799], [-120.485337, 56.221437], [-120.490059, 56.222651], [-120.49306, 56.223212], [-120.49553, 56.224218], [-120.496654, 56.224892], [-120.498425, 56.226259], [-120.501454, 56.228243], [-120.504919, 56.229961], [-120.506537, 56.231248], [-120.507701, 56.231915], [-120.509516, 56.232569], [-120.511686, 56.233171], [-120.514796, 56.233654], [-120.51685, 56.234041], [-120.519292, 56.234738], [-120.520764, 56.235239], [-120.52196, 56.235762], [-120.525195, 56.237343], [-120.52685, 56.238415], [-120.528347, 56.239673], [-120.528973, 56.240603], [-120.529253, 56.241565], [-120.52938, 56.242797], [-120.528759, 56.244575], [-120.528817, 56.245276], [-120.529087, 56.245683], [-120.530299, 56.246523], [-120.531583, 56.247135], [-120.533151, 56.247417], [-120.535435, 56.247672], [-120.538918, 56.247883], [-120.545859, 56.248919], [-120.550438, 56.250151], [-120.5536, 56.250779], [-120.555395, 56.251408], [-120.557591, 56.251882], [-120.558969, 56.252267], [-120.559935, 56.252609], [-120.560754, 56.253026], [-120.564952, 56.255943], [-120.565769, 56.256424], [-120.568133, 56.25725], [-120.570041, 56.25772], [-120.572182, 56.257944], [-120.57414, 56.2584], [-120.576443, 56.258855], [-120.581115, 56.259288], [-120.583357, 56.259291], [-120.585503, 56.259576], [-120.592756, 56.260065], [-120.596666, 56.260617], [-120.598214, 56.260967], [-120.601639, 56.262094], [-120.603538, 56.262557], [-120.605533, 56.262866], [-120.60679, 56.262752], [-120.610103, 56.262946], [-120.612642, 56.263179], [-120.614241, 56.263548], [-120.616061, 56.26339], [-120.617348, 56.263168], [-120.62118, 56.262103], [-120.622686, 56.261964], [-120.626145, 56.261833], [-120.627847, 56.262161], [-120.63206, 56.262817], [-120.634066, 56.263383], [-120.635124, 56.263786], [-120.635964, 56.26448], [-120.636545, 56.265152], [-120.63766, 56.265644], [-120.638641, 56.265814], [-120.639673, 56.265845], [-120.64211, 56.265615], [-120.643581, 56.265365], [-120.646744, 56.264975], [-120.649426, 56.264374], [-120.652323, 56.263387], [-120.653837, 56.263178], [-120.65704, 56.262833], [-120.65925, 56.262772], [-120.660509, 56.262796], [-120.661873, 56.263018], [-120.66256, 56.263203], [-120.666207, 56.264554], [-120.66858, 56.2652], [-120.669528, 56.265677], [-120.671372, 56.267791], [-120.673377, 56.269335], [-120.675864, 56.271615], [-120.67696, 56.272197], [-120.679578, 56.274], [-120.680972, 56.275232], [-120.681188, 56.275557], [-120.682838, 56.276377], [-120.683711, 56.276725], [-120.684828, 56.276966], [-120.686011, 56.276998], [-120.693835, 56.276676], [-120.694413, 56.276721], [-120.695724, 56.276944], [-120.699363, 56.277786], [-120.702167, 56.278494], [-120.703484, 56.278922], [-120.705393, 56.279364], [-120.706875, 56.279481], [-120.709608, 56.279864], [-120.710994, 56.279925], [-120.712028, 56.279875], [-120.715403, 56.279492], [-120.716517, 56.279035], [-120.718957, 56.278552], [-120.7208, 56.27836], [-120.725148, 56.278344], [-120.728068, 56.278422], [-120.730245, 56.278603], [-120.732417, 56.279021], [-120.733956, 56.279556], [-120.738108, 56.281507], [-120.73973, 56.282658], [-120.740531, 56.283563], [-120.740761, 56.284164], [-120.740826, 56.284817], [-120.740487, 56.286099], [-120.739817, 56.286837], [-120.73922, 56.287906], [-120.738061, 56.290666], [-120.737109, 56.292424], [-120.73684, 56.293264], [-120.736845, 56.294401], [-120.737406, 56.296128], [-120.737946, 56.298636], [-120.737737, 56.299504], [-120.737207, 56.300615], [-120.73562, 56.302225], [-120.734888, 56.302821], [-120.732859, 56.303923], [-120.731033, 56.305219], [-120.729974, 56.305869], [-120.729064, 56.306585], [-120.728808, 56.306971], [-120.728596, 56.30822], [-120.728616, 56.310125], [-120.728267, 56.31087], [-120.727388, 56.31183], [-120.726044, 56.312641], [-120.724077, 56.313195], [-120.721869, 56.313626], [-120.719494, 56.314295], [-120.717656, 56.315453], [-120.716984, 56.31604], [-120.716637, 56.316544], [-120.716742, 56.317266], [-120.717852, 56.318587], [-120.718128, 56.319109], [-120.718042, 56.319746], [-120.717777, 56.320071], [-120.715862, 56.320773], [-120.714468, 56.321071], [-120.712805, 56.321311], [-120.710889, 56.321484], [-120.709486, 56.321728], [-120.7088, 56.321972], [-120.708387, 56.322264], [-120.708059, 56.322707], [-120.707732, 56.323702], [-120.707536, 56.324997], [-120.707278, 56.325604], [-120.706024, 56.326696], [-120.705476, 56.327905], [-120.705394, 56.3291], [-120.705798, 56.330326], [-120.706927, 56.332235], [-120.70702, 56.332703], [-120.706857, 56.333098], [-120.70654, 56.333531], [-120.706999, 56.333591], [-120.741427, 56.333585], [-120.742034, 56.333705], [-120.768421, 56.333705], [-120.768424, 56.333647], [-120.797414, 56.333692], [-120.815512, 56.333644], [-120.84749, 56.333742], [-120.864856, 56.333732], [-120.873655, 56.333674], [-120.926421, 56.333697], [-120.926418, 56.333641], [-120.951431, 56.33365], [-120.955459, 56.333695], [-120.988466, 56.332768], [-120.990345, 56.335506], [-120.993469, 56.338524], [-121.000083, 56.341031], [-121.004454, 56.340906], [-121.020314, 56.340798], [-121.020283, 56.340238], [-121.018094, 56.339173], [-121.0202, 56.337844], [-121.018673, 56.337068], [-121.018717, 56.333608], [-121.031842, 56.333659]], [[-120.900178, 56.272666], [-120.887043, 56.272632], [-120.887058, 56.268191], [-120.873754, 56.268187], [-120.873744, 56.266763], [-120.873696, 56.266623], [-120.873445, 56.266531], [-120.873654, 56.265888], [-120.873722, 56.259517], [-120.871656, 56.25957], [-120.866205, 56.259912], [-120.864828, 56.260191], [-120.863234, 56.260674], [-120.862645, 56.26092], [-120.860847, 56.26188], [-120.860616, 56.263816], [-120.860623, 56.268204], [-120.860781, 56.268368], [-120.858732, 56.268383], [-120.858725, 56.268206], [-120.847457, 56.268213], [-120.846421, 56.269699], [-120.84323, 56.270028], [-120.8433, 56.270496], [-120.833903, 56.272148], [-120.833671, 56.275198], [-120.821111, 56.2753], [-120.82113, 56.279656], [-120.807962, 56.279927], [-120.807787, 56.268135], [-120.821079, 56.268357], [-120.82108, 56.268627], [-120.821305, 56.268193], [-120.834185, 56.268205], [-120.834239, 56.266617], [-120.834095, 56.266452], [-120.83457, 56.265473], [-120.834321, 56.265109], [-120.834261, 56.264622], [-120.821071, 56.264623], [-120.821066, 56.261072], [-120.82066, 56.260965], [-120.794764, 56.26089], [-120.794753, 56.248484], [-120.798901, 56.248461], [-120.79896, 56.248661], [-120.799959, 56.248649], [-120.800066, 56.248814], [-120.801908, 56.248832], [-120.801912, 56.248571], [-120.806253, 56.24847], [-120.806295, 56.248784], [-120.808046, 56.248836], [-120.808097, 56.246461], [-120.781581, 56.246456], [-120.781532, 56.238766], [-120.779195, 56.237916], [-120.777818, 56.237347], [-120.768419, 56.232923], [-120.768418, 56.234395], [-120.764879, 56.234503], [-120.764796, 56.236383], [-120.763249, 56.236479], [-120.763637, 56.238515], [-120.75563, 56.238551], [-120.755688, 56.232372], [-120.756718, 56.232352], [-120.756288, 56.230133], [-120.757544, 56.227845], [-120.755481, 56.228017], [-120.755348, 56.230389], [-120.742982, 56.230897], [-120.7429, 56.224821], [-120.750995, 56.224891], [-120.753693, 56.225844], [-120.756293, 56.227083], [-120.755769, 56.222056], [-120.761472, 56.222059], [-120.761337, 56.219967], [-120.755608, 56.220072], [-120.755623, 56.217737], [-120.76843, 56.217784], [-120.771415, 56.217697], [-120.774704, 56.217782], [-120.778532, 56.217652], [-120.785402, 56.217809], [-120.787201, 56.218062], [-120.791576, 56.218831], [-120.793568, 56.219234], [-120.794871, 56.220019], [-120.794953, 56.219852], [-120.795161, 56.220054], [-120.79547, 56.220163], [-120.796437, 56.220166], [-120.796991, 56.220261], [-120.807588, 56.224095], [-120.808991, 56.224694], [-120.820947, 56.229061], [-120.821379, 56.229397], [-120.821613, 56.229481], [-120.822063, 56.229068], [-120.821193, 56.228171], [-120.821066, 56.227026], [-120.821226, 56.226714], [-120.821305, 56.210019], [-120.83426, 56.210028], [-120.834233, 56.220897], [-120.847497, 56.220899], [-120.847485, 56.224701], [-120.842037, 56.224698], [-120.842174, 56.229864], [-120.841314, 56.229877], [-120.841348, 56.230382], [-120.834112, 56.230354], [-120.834102, 56.231679], [-120.834212, 56.231974], [-120.835003, 56.23191], [-120.843836, 56.231922], [-120.843838, 56.230839], [-120.847458, 56.230807], [-120.847454, 56.231928], [-120.853982, 56.231947], [-120.860577, 56.232075], [-120.862315, 56.232071], [-120.863198, 56.232006], [-120.866338, 56.231933], [-120.873809, 56.231926], [-120.873809, 56.232116], [-120.872242, 56.232154], [-120.872456, 56.234859], [-120.87381, 56.234857], [-120.873811, 56.237002], [-120.872236, 56.237008], [-120.872267, 56.239125], [-120.886508, 56.239124], [-120.887182, 56.239042], [-120.887127, 56.241619], [-120.892855, 56.241724], [-120.892888, 56.242152], [-120.897092, 56.242218], [-120.897145, 56.242599], [-120.896774, 56.242591], [-120.896832, 56.243021], [-120.893201, 56.242966], [-120.893445, 56.24647], [-120.886979, 56.246472], [-120.88685, 56.245119], [-120.881938, 56.245164], [-120.882218, 56.246474], [-120.881663, 56.246474], [-120.881422, 56.245169], [-120.876652, 56.245212], [-120.876855, 56.246476], [-120.875804, 56.246428], [-120.875251, 56.246316], [-120.875284, 56.24637], [-120.874567, 56.24644], [-120.875254, 56.246678], [-120.875464, 56.246686], [-120.880554, 56.248445], [-120.880688, 56.248718], [-120.880318, 56.249343], [-120.880771, 56.249498], [-120.880347, 56.250077], [-120.886921, 56.252381], [-120.887066, 56.253856], [-120.887051, 56.259145], [-120.887186, 56.259537], [-120.887085, 56.259983], [-120.887082, 56.260969], [-120.897346, 56.260964], [-120.89726, 56.264171], [-120.900158, 56.264269], [-120.900178, 56.272666]], [[-120.871761, 56.217312], [-120.865233, 56.21716], [-120.860641, 56.217183], [-120.860587, 56.203975], [-120.861706, 56.203894], [-120.863064, 56.203541], [-120.864635, 56.203483], [-120.868466, 56.203682], [-120.872264, 56.204006], [-120.873852, 56.204074], [-120.874089, 56.208066], [-120.873863, 56.208533], [-120.873819, 56.209827], [-120.873817, 56.217255], [-120.871761, 56.217312]]]]}, "properties": {"name": "Peace River C", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Peace River C", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955042", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.627706, 55.883474], [-121.634363, 55.883412], [-121.652608, 55.883418], [-121.652865, 55.86903], [-121.678709, 55.868819], [-121.678834, 55.839437], [-121.679384, 55.837166], [-121.679309, 55.8364], [-121.678396, 55.836737], [-121.677496, 55.836871], [-121.676188, 55.836875], [-121.675145, 55.836989], [-121.674541, 55.836948], [-121.673528, 55.836693], [-121.673002, 55.836624], [-121.670319, 55.836677], [-121.669788, 55.836797], [-121.669563, 55.836794], [-121.668081, 55.836257], [-121.667573, 55.836171], [-121.665419, 55.835159], [-121.664624, 55.834629], [-121.664215, 55.834435], [-121.663295, 55.833779], [-121.662895, 55.833397], [-121.662053, 55.832786], [-121.660271, 55.83115], [-121.659726, 55.830775], [-121.658268, 55.82906], [-121.657438, 55.828575], [-121.656525, 55.828206], [-121.656213, 55.827978], [-121.655663, 55.827289], [-121.655226, 55.826557], [-121.654257, 55.825494], [-121.653961, 55.824843], [-121.653634, 55.824544], [-121.653448, 55.824434], [-121.652452, 55.824117], [-121.650561, 55.823908], [-121.650159, 55.823939], [-121.649799, 55.823747], [-121.649871, 55.823514], [-121.650154, 55.823167], [-121.650445, 55.823044], [-121.650912, 55.822969], [-121.652368, 55.822885], [-121.652799, 55.822891], [-121.653162, 55.822966], [-121.653578, 55.822952], [-121.655152, 55.822656], [-121.65579, 55.822248], [-121.657118, 55.82078], [-121.658121, 55.820378], [-121.65947, 55.819629], [-121.660266, 55.819296], [-121.661944, 55.818722], [-121.663145, 55.818168], [-121.664153, 55.818081], [-121.666419, 55.818078], [-121.66727, 55.817961], [-121.668058, 55.817763], [-121.668571, 55.817715], [-121.670841, 55.817155], [-121.672741, 55.816601], [-121.673809, 55.816227], [-121.674394, 55.815882], [-121.675414, 55.815452], [-121.6769, 55.814489], [-121.677087, 55.814123], [-121.679269, 55.811235], [-121.600584, 55.811131], [-121.600204, 55.828071], [-121.600261, 55.852533], [-121.601763, 55.868947], [-121.618399, 55.869008], [-121.618536, 55.868892], [-121.618791, 55.868889], [-121.627756, 55.868933], [-121.627706, 55.883474]]]]}, "properties": {"name": "East Moberly Lake 169", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "East Moberly Lake 169", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955801", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.860739, 55.832393], [-121.904207, 55.832368], [-121.904155, 55.81058], [-121.943306, 55.810934], [-121.942381, 55.795957], [-121.941802, 55.781345], [-121.891885, 55.782059], [-121.890145, 55.782323], [-121.889897, 55.796381], [-121.869927, 55.796188], [-121.869917, 55.802923], [-121.851144, 55.802273], [-121.850374, 55.80247], [-121.852366, 55.803123], [-121.854007, 55.803758], [-121.854543, 55.804051], [-121.854632, 55.804222], [-121.854622, 55.8046], [-121.85451, 55.805102], [-121.854413, 55.805128], [-121.854573, 55.805659], [-121.854776, 55.80586], [-121.855046, 55.805898], [-121.855448, 55.80583], [-121.857124, 55.805225], [-121.857832, 55.805034], [-121.858359, 55.805021], [-121.858884, 55.805079], [-121.860469, 55.805408], [-121.860741, 55.80534], [-121.861211, 55.805069], [-121.861678, 55.805542], [-121.861288, 55.806496], [-121.858133, 55.806718], [-121.857144, 55.807335], [-121.857523, 55.808327], [-121.857062, 55.808469], [-121.856945, 55.808612], [-121.857274, 55.808848], [-121.858352, 55.809047], [-121.858923, 55.809141], [-121.86066, 55.809257], [-121.861087, 55.809342], [-121.861514, 55.809499], [-121.861507, 55.809759], [-121.861442, 55.809804], [-121.860663, 55.809724], [-121.857025, 55.80917], [-121.856926, 55.809204], [-121.856908, 55.809366], [-121.857851, 55.809796], [-121.8601, 55.809853], [-121.861405, 55.809992], [-121.861815, 55.810121], [-121.861733, 55.810237], [-121.861055, 55.810464], [-121.859738, 55.810758], [-121.857436, 55.811464], [-121.857044, 55.811722], [-121.856077, 55.812081], [-121.854776, 55.812347], [-121.853484, 55.812353], [-121.851612, 55.812569], [-121.850912, 55.812445], [-121.849713, 55.811967], [-121.849432, 55.811795], [-121.848908, 55.811699], [-121.847662, 55.811696], [-121.84729, 55.811854], [-121.847238, 55.812052], [-121.847292, 55.812359], [-121.847492, 55.812602], [-121.847491, 55.813196], [-121.847702, 55.81362], [-121.848129, 55.813777], [-121.848592, 55.813754], [-121.849123, 55.814173], [-121.850285, 55.814229], [-121.852244, 55.813816], [-121.8539, 55.813381], [-121.855101, 55.813257], [-121.856026, 55.813276], [-121.856609, 55.813021], [-121.857156, 55.812881], [-121.857283, 55.812874], [-121.857504, 55.812992], [-121.857816, 55.813706], [-121.858021, 55.813833], [-121.858353, 55.813908], [-121.858597, 55.813784], [-121.859041, 55.813357], [-121.860007, 55.813042], [-121.860696, 55.812905], [-121.863758, 55.812978], [-121.86461, 55.81278], [-121.865043, 55.812747], [-121.866031, 55.812802], [-121.866553, 55.812914], [-121.866848, 55.813196], [-121.866772, 55.813645], [-121.86659, 55.813823], [-121.863592, 55.815431], [-121.862255, 55.815814], [-121.86211, 55.815866], [-121.862125, 55.815921], [-121.862908, 55.815909], [-121.863357, 55.815815], [-121.864729, 55.815315], [-121.865701, 55.814731], [-121.866314, 55.814521], [-121.867018, 55.814438], [-121.867817, 55.814462], [-121.868731, 55.81431], [-121.868791, 55.814435], [-121.868642, 55.814642], [-121.868303, 55.814764], [-121.866947, 55.81477], [-121.866112, 55.814951], [-121.864617, 55.815844], [-121.863057, 55.816207], [-121.862353, 55.816264], [-121.86138, 55.816245], [-121.859742, 55.816087], [-121.85907, 55.816099], [-121.859081, 55.816324], [-121.859252, 55.81645], [-121.860375, 55.816794], [-121.861059, 55.816889], [-121.861523, 55.816866], [-121.862758, 55.816644], [-121.863948, 55.816341], [-121.867606, 55.815126], [-121.868503, 55.815026], [-121.869403, 55.814818], [-121.869501, 55.814703], [-121.870126, 55.814592], [-121.871803, 55.814599], [-121.873294, 55.814351], [-121.874051, 55.814116], [-121.875003, 55.814331], [-121.876053, 55.814358], [-121.877205, 55.814297], [-121.878752, 55.814365], [-121.878988, 55.814466], [-121.879219, 55.814756], [-121.879206, 55.816292], [-121.879325, 55.816581], [-121.879257, 55.817299], [-121.879167, 55.817658], [-121.878593, 55.818228], [-121.878376, 55.818558], [-121.878168, 55.819122], [-121.87756, 55.819683], [-121.876941, 55.820118], [-121.876276, 55.820462], [-121.875917, 55.820764], [-121.875075, 55.821808], [-121.874524, 55.822046], [-121.873062, 55.822347], [-121.872788, 55.822461], [-121.872055, 55.823012], [-121.871808, 55.823288], [-121.87162, 55.824248], [-121.871124, 55.824773], [-121.870608, 55.825001], [-121.869318, 55.825386], [-121.867482, 55.825458], [-121.864824, 55.825685], [-121.862294, 55.825985], [-121.8609, 55.826188], [-121.859921, 55.826396], [-121.858945, 55.826448], [-121.857278, 55.826658], [-121.855549, 55.826804], [-121.853492, 55.826766], [-121.852283, 55.826629], [-121.851501, 55.826614], [-121.849258, 55.826853], [-121.847635, 55.827215], [-121.846915, 55.82728], [-121.84492, 55.827226], [-121.843664, 55.827079], [-121.840585, 55.827041], [-121.838292, 55.827343], [-121.836598, 55.827408], [-121.835236, 55.82761], [-121.834245, 55.827646], [-121.833702, 55.827623], [-121.832942, 55.827445], [-121.831172, 55.826817], [-121.830567, 55.826739], [-121.828559, 55.826631], [-121.826515, 55.826099], [-121.825468, 55.826052], [-121.826167, 55.827727], [-121.826623, 55.83038], [-121.860739, 55.832393]]]]}, "properties": {"name": "West Moberly Lake 168A", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "West Moberly Lake 168A", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955802", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.049914, 56.726072], [-121.07358, 56.726059], [-121.073586, 56.717611], [-121.073679, 56.714785], [-121.073247, 56.714012], [-121.073382, 56.713375], [-121.074472, 56.711903], [-121.074254, 56.711616], [-121.099867, 56.711609], [-121.099866, 56.704381], [-121.127406, 56.704411], [-121.127255, 56.698134], [-121.138549, 56.69832], [-121.138283, 56.697912], [-121.138978, 56.678246], [-121.123426, 56.678261], [-121.123279, 56.683033], [-121.111453, 56.683092], [-121.112249, 56.689152], [-121.086259, 56.690341], [-121.086968, 56.697112], [-121.076807, 56.697575], [-121.077118, 56.702944], [-121.046923, 56.70337], [-121.049914, 56.726072]]]]}, "properties": {"name": "Blueberry River 205", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Blueberry River 205", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955803", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.4784, 56.603691], [-120.493959, 56.603342], [-120.492894, 56.595092], [-120.51269, 56.594908], [-120.513092, 56.575347], [-120.514558, 56.558878], [-120.500441, 56.558862], [-120.499146, 56.550606], [-120.499024, 56.55038], [-120.471524, 56.551365], [-120.472375, 56.565344], [-120.458067, 56.566201], [-120.459066, 56.575079], [-120.4845, 56.575372], [-120.485229, 56.595284], [-120.477696, 56.595327], [-120.4784, 56.603691]]]]}, "properties": {"name": "Doig River 206", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Doig River 206", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955804", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.860641, 56.217183], [-120.865233, 56.21716], [-120.871761, 56.217312], [-120.873817, 56.217255], [-120.873819, 56.209827], [-120.873863, 56.208533], [-120.874089, 56.208066], [-120.873852, 56.204074], [-120.872264, 56.204006], [-120.868466, 56.203682], [-120.864635, 56.203483], [-120.863064, 56.203541], [-120.861706, 56.203894], [-120.860587, 56.203975], [-120.860641, 56.217183]]]]}, "properties": {"name": "Wochiigii Nané?", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Wochiigii Nané?", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955805", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.624486, 57.433377], [-125.626096, 57.433281], [-125.626663, 57.433295], [-125.628374, 57.433691], [-125.680265, 57.434134], [-125.680847, 57.433673], [-125.681029, 57.432536], [-125.681369, 57.43172], [-125.681625, 57.431356], [-125.681612, 57.431149], [-125.681501, 57.431009], [-125.68119, 57.430853], [-125.680575, 57.430668], [-125.679703, 57.430589], [-125.676955, 57.430153], [-125.67462, 57.430121], [-125.673696, 57.429722], [-125.672128, 57.429812], [-125.66965, 57.430076], [-125.665219, 57.429925], [-125.66189, 57.429429], [-125.659424, 57.428405], [-125.654757, 57.425695], [-125.650704, 57.424235], [-125.64774, 57.423648], [-125.644564, 57.423432], [-125.644187, 57.425926], [-125.640888, 57.425634], [-125.640563, 57.423073], [-125.637237, 57.422471], [-125.62707, 57.420092], [-125.620032, 57.418715], [-125.616155, 57.418198], [-125.613733, 57.417808], [-125.608499, 57.417271], [-125.606626, 57.416934], [-125.605659, 57.416653], [-125.60479, 57.41625], [-125.603939, 57.416599], [-125.60409, 57.417727], [-125.605332, 57.419774], [-125.605788, 57.420123], [-125.606363, 57.420305], [-125.607215, 57.420305], [-125.608261, 57.420647], [-125.608981, 57.42098], [-125.609151, 57.421145], [-125.609284, 57.421457], [-125.60924, 57.421732], [-125.608348, 57.423092], [-125.609064, 57.424135], [-125.610993, 57.424033], [-125.613773, 57.423125], [-125.615585, 57.423877], [-125.616825, 57.426364], [-125.615581, 57.429213], [-125.614307, 57.431169], [-125.614528, 57.432715], [-125.614656, 57.432958], [-125.615664, 57.433912], [-125.616726, 57.434469], [-125.617771, 57.434759], [-125.618862, 57.435768], [-125.62067, 57.435923], [-125.621387, 57.435889], [-125.62203, 57.435692], [-125.622117, 57.435422], [-125.622307, 57.435284], [-125.622902, 57.434507], [-125.623767, 57.434012], [-125.624486, 57.433377]]]]}, "properties": {"name": "Fort Ware 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Fort Ware 1", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955807", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.901581, 56.521337], [-121.901545, 56.522503], [-121.953363, 56.52328], [-121.976529, 56.523184], [-121.977679, 56.523102], [-121.978677, 56.514697], [-121.979977, 56.509512], [-121.978042, 56.498422], [-121.978035, 56.497826], [-121.976034, 56.49822], [-121.972152, 56.498735], [-121.965868, 56.497885], [-121.961254, 56.498039], [-121.95446, 56.499352], [-121.947901, 56.501535], [-121.946251, 56.501511], [-121.945299, 56.501277], [-121.944671, 56.501038], [-121.943889, 56.500565], [-121.943606, 56.500239], [-121.942924, 56.499028], [-121.942646, 56.497939], [-121.941831, 56.496864], [-121.941199, 56.496274], [-121.940927, 56.496127], [-121.938674, 56.495318], [-121.936775, 56.494143], [-121.936032, 56.493992], [-121.934716, 56.493954], [-121.934134, 56.493868], [-121.933633, 56.493783], [-121.932039, 56.49332], [-121.930663, 56.493146], [-121.929464, 56.493055], [-121.926005, 56.493035], [-121.924533, 56.492824], [-121.922275, 56.492832], [-121.922019, 56.492695], [-121.922035, 56.492649], [-121.922497, 56.492447], [-121.922663, 56.492288], [-121.922637, 56.492117], [-121.922228, 56.49161], [-121.9213, 56.49109], [-121.920618, 56.490499], [-121.919524, 56.490184], [-121.918514, 56.48969], [-121.917404, 56.488764], [-121.916588, 56.488344], [-121.915807, 56.487761], [-121.914547, 56.487059], [-121.913851, 56.486416], [-121.913144, 56.48552], [-121.912716, 56.485129], [-121.911675, 56.484679], [-121.910956, 56.484288], [-121.907832, 56.483325], [-121.907825, 56.48302], [-121.908445, 56.482351], [-121.908738, 56.481761], [-121.908737, 56.479559], [-121.908571, 56.479064], [-121.907617, 56.477205], [-121.907397, 56.476395], [-121.907359, 56.475486], [-121.906356, 56.474768], [-121.905765, 56.474493], [-121.90516, 56.474038], [-121.904715, 56.47318], [-121.904137, 56.472413], [-121.90382, 56.472122], [-121.903072, 56.471602], [-121.902159, 56.471137], [-121.901199, 56.470679], [-121.900219, 56.470321], [-121.898965, 56.46994], [-121.898401, 56.469711], [-121.897645, 56.469524], [-121.896805, 56.469391], [-121.896076, 56.469358], [-121.89403, 56.469375], [-121.892901, 56.469644], [-121.892178, 56.469916], [-121.890861, 56.470568], [-121.89046, 56.470961], [-121.889665, 56.472661], [-121.889362, 56.473035], [-121.888486, 56.473549], [-121.886695, 56.474287], [-121.886253, 56.474409], [-121.885863, 56.474405], [-121.884996, 56.474119], [-121.884381, 56.474015], [-121.88205, 56.473806], [-121.879138, 56.473438], [-121.877282, 56.473098], [-121.876511, 56.472776], [-121.874062, 56.471595], [-121.873426, 56.471167], [-121.871571, 56.470207], [-121.870774, 56.469714], [-121.869943, 56.468737], [-121.869308, 56.467716], [-121.868917, 56.466696], [-121.868901, 56.465574], [-121.868132, 56.464749], [-121.867747, 56.464511], [-121.867218, 56.4643], [-121.865924, 56.464135], [-121.860894, 56.464107], [-121.859202, 56.464253], [-121.855874, 56.464797], [-121.855402, 56.464829], [-121.855011, 56.464934], [-121.852708, 56.464886], [-121.852094, 56.46478], [-121.851266, 56.464198], [-121.850403, 56.46384], [-121.850037, 56.463558], [-121.849427, 56.463292], [-121.848155, 56.462983], [-121.846733, 56.462791], [-121.845303, 56.462301], [-121.844658, 56.46216], [-121.843797, 56.461613], [-121.842935, 56.46121], [-121.842586, 56.460955], [-121.840692, 56.460209], [-121.839896, 56.459726], [-121.839057, 56.458559], [-121.838867, 56.457793], [-121.838894, 56.456895], [-121.839236, 56.456359], [-121.839234, 56.455946], [-121.838349, 56.455129], [-121.837802, 56.454441], [-121.836403, 56.453521], [-121.835602, 56.453126], [-121.834881, 56.452868], [-121.833458, 56.452118], [-121.833178, 56.45181], [-121.832209, 56.451072], [-121.831962, 56.450702], [-121.831797, 56.450233], [-121.83126, 56.449294], [-121.831266, 56.448522], [-121.831523, 56.447536], [-121.831541, 56.446969], [-121.831485, 56.446673], [-121.831297, 56.446491], [-121.83102, 56.445977], [-121.830654, 56.445739], [-121.829851, 56.445525], [-121.829322, 56.445277], [-121.827445, 56.445098], [-121.825526, 56.443723], [-121.825275, 56.443406], [-121.824937, 56.442271], [-121.824643, 56.441836], [-121.824296, 56.441527], [-121.822246, 56.440602], [-121.821513, 56.440207], [-121.820873, 56.439959], [-121.819745, 56.439184], [-121.818692, 56.438653], [-121.816872, 56.438232], [-121.816069, 56.437937], [-121.815324, 56.4374], [-121.814569, 56.436628], [-121.813931, 56.43629], [-121.813033, 56.435957], [-121.809593, 56.434955], [-121.807401, 56.434007], [-121.80382, 56.433416], [-121.802918, 56.433193], [-121.802213, 56.432942], [-121.80084, 56.432264], [-121.800476, 56.431992], [-121.799454, 56.431442], [-121.798773, 56.430916], [-121.796062, 56.430503], [-121.795341, 56.43027], [-121.794894, 56.430014], [-121.794521, 56.429553], [-121.794331, 56.42884], [-121.794247, 56.427879], [-121.794084, 56.427428], [-121.793736, 56.427191], [-121.793142, 56.42696], [-121.792788, 56.426912], [-121.789871, 56.426866], [-121.788425, 56.426402], [-121.786556, 56.425549], [-121.785606, 56.425324], [-121.784638, 56.425206], [-121.783705, 56.424972], [-121.781975, 56.424254], [-121.781626, 56.424035], [-121.780507, 56.423037], [-121.780197, 56.422576], [-121.779606, 56.424538], [-121.778171, 56.437968], [-121.777758, 56.472176], [-121.832518, 56.472918], [-121.833118, 56.487178], [-121.883688, 56.487594], [-121.900791, 56.487842], [-121.900251, 56.499516], [-121.900171, 56.510033], [-121.901581, 56.521337]]], [[[-121.78761, 56.423987], [-121.789443, 56.423995], [-121.79038, 56.424095], [-121.792021, 56.424461], [-121.793156, 56.424783], [-121.793946, 56.423272], [-121.793674, 56.42295], [-121.793735, 56.421603], [-121.793504, 56.420171], [-121.793644, 56.419795], [-121.794154, 56.419055], [-121.794284, 56.418553], [-121.794273, 56.4184], [-121.793718, 56.417522], [-121.793559, 56.417395], [-121.793318, 56.41733], [-121.792658, 56.417208], [-121.791575, 56.417106], [-121.791221, 56.417004], [-121.789972, 56.417074], [-121.789295, 56.416887], [-121.78907, 56.416876], [-121.787392, 56.417111], [-121.785376, 56.416813], [-121.785116, 56.416837], [-121.785505, 56.418333], [-121.785793, 56.418955], [-121.785965, 56.41964], [-121.785978, 56.420305], [-121.785689, 56.42068], [-121.78526, 56.420945], [-121.783937, 56.421237], [-121.783062, 56.421732], [-121.782715, 56.42242], [-121.782694, 56.423067], [-121.78302, 56.423574], [-121.783335, 56.423819], [-121.784617, 56.424344], [-121.786269, 56.424378], [-121.78761, 56.423987]]]]}, "properties": {"name": "Halfway River 168", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Halfway River 168", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955808", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.888286, 56.795017], [-124.888551, 56.795374], [-124.889044, 56.79638], [-124.889945, 56.797033], [-124.890606, 56.797822], [-124.891618, 56.798436], [-124.894458, 56.800478], [-124.895059, 56.801358], [-124.895225, 56.801741], [-124.89526, 56.80211], [-124.895437, 56.802358], [-124.896809, 56.80293], [-124.897096, 56.803106], [-124.897393, 56.80346], [-124.89743, 56.803873], [-124.897031, 56.804725], [-124.89627, 56.805239], [-124.894938, 56.805799], [-124.894356, 56.806274], [-124.894083, 56.806702], [-124.894014, 56.80823], [-124.894712, 56.808139], [-124.895386, 56.808146], [-124.895868, 56.808283], [-124.896403, 56.808526], [-124.897633, 56.808237], [-124.898544, 56.808097], [-124.899788, 56.808079], [-124.900579, 56.808184], [-124.902984, 56.80875], [-124.903735, 56.809052], [-124.904008, 56.809245], [-124.904767, 56.810034], [-124.905687, 56.810379], [-124.907179, 56.810725], [-124.907723, 56.81113], [-124.908315, 56.811941], [-124.915764, 56.808874], [-124.923723, 56.804379], [-124.927807, 56.79651], [-124.929879, 56.788618], [-124.925692, 56.783071], [-124.915975, 56.786264], [-124.905241, 56.787168], [-124.884073, 56.786926], [-124.880116, 56.788736], [-124.880657, 56.789175], [-124.881423, 56.790359], [-124.881815, 56.790722], [-124.882678, 56.791266], [-124.884006, 56.791947], [-124.884451, 56.792317], [-124.8848, 56.792734], [-124.885257, 56.793059], [-124.887286, 56.794035], [-124.888286, 56.795017]]]]}, "properties": {"name": "Ingenika Point", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Ingenika Point", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955812", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-124.955678, 56.924659], [-124.95606, 56.925318], [-124.975163, 56.923431], [-124.973669, 56.918969], [-124.993765, 56.917184], [-124.993324, 56.898437], [-124.993373, 56.892314], [-124.992445, 56.892404], [-124.991653, 56.892345], [-124.991461, 56.892141], [-124.991456, 56.891737], [-124.991364, 56.891559], [-124.991198, 56.891498], [-124.990491, 56.891492], [-124.990176, 56.891417], [-124.989009, 56.891075], [-124.988417, 56.89077], [-124.988406, 56.890582], [-124.988752, 56.890261], [-124.980673, 56.89051], [-124.984206, 56.888308], [-124.984248, 56.881823], [-124.983929, 56.881685], [-124.983517, 56.881628], [-124.979971, 56.881631], [-124.977834, 56.88126], [-124.977186, 56.8811], [-124.976595, 56.880795], [-124.975376, 56.879789], [-124.975145, 56.879416], [-124.975435, 56.879024], [-124.975149, 56.878597], [-124.974857, 56.878342], [-124.974658, 56.878327], [-124.973478, 56.877726], [-124.972059, 56.878188], [-124.97174, 56.878364], [-124.970567, 56.879443], [-124.96645, 56.882347], [-124.964396, 56.884132], [-124.963243, 56.885013], [-124.962225, 56.885963], [-124.961969, 56.886408], [-124.961858, 56.887407], [-124.961646, 56.888084], [-124.960876, 56.889354], [-124.959532, 56.890929], [-124.957274, 56.89296], [-124.957187, 56.893195], [-124.957333, 56.893795], [-124.957531, 56.897269], [-124.957434, 56.898834], [-124.957263, 56.899646], [-124.956215, 56.9019], [-124.95548, 56.902936], [-124.954914, 56.904687], [-124.953675, 56.906459], [-124.953086, 56.907116], [-124.952925, 56.907486], [-124.95283, 56.908198], [-124.952171, 56.908746], [-124.952019, 56.909028], [-124.950843, 56.910079], [-124.950373, 56.910841], [-124.950443, 56.911227], [-124.950898, 56.911768], [-124.951429, 56.912802], [-124.951281, 56.914359], [-124.951571, 56.915504], [-124.952941, 56.918817], [-124.953535, 56.91977], [-124.954471, 56.921651], [-124.955678, 56.924659]]]]}, "properties": {"name": "Finlay River 6", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Finlay River 6", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955840", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-125.445808, 56.378715], [-125.453054, 56.3692], [-125.452772, 56.369358], [-125.45129, 56.369739], [-125.450949, 56.369719], [-125.448619, 56.369261], [-125.448339, 56.369149], [-125.447592, 56.368652], [-125.445788, 56.368022], [-125.444736, 56.36701], [-125.444133, 56.366959], [-125.443478, 56.367107], [-125.442795, 56.367578], [-125.442255, 56.367733], [-125.438069, 56.368381], [-125.435236, 56.36912], [-125.433915, 56.369244], [-125.432876, 56.369229], [-125.431992, 56.369066], [-125.431359, 56.369052], [-125.430282, 56.368921], [-125.43005, 56.368827], [-125.429385, 56.368319], [-125.427366, 56.367379], [-125.427055, 56.367051], [-125.426566, 56.366746], [-125.425312, 56.366376], [-125.424545, 56.366273], [-125.423203, 56.365815], [-125.422068, 56.364525], [-125.421744, 56.364019], [-125.421595, 56.363699], [-125.421492, 56.362568], [-125.421133, 56.362027], [-125.420505, 56.361572], [-125.419854, 56.361252], [-125.417805, 56.360627], [-125.417214, 56.360233], [-125.416533, 56.360194], [-125.416152, 56.360353], [-125.41605, 56.360527], [-125.416062, 56.360957], [-125.416304, 56.361195], [-125.416182, 56.361575], [-125.415562, 56.362001], [-125.414822, 56.362096], [-125.414523, 56.362219], [-125.414198, 56.362207], [-125.413858, 56.361952], [-125.41343, 56.361827], [-125.412095, 56.361196], [-125.411663, 56.360765], [-125.409832, 56.359739], [-125.408736, 56.358781], [-125.407912, 56.357503], [-125.407446, 56.357063], [-125.406841, 56.356706], [-125.405905, 56.356499], [-125.404932, 56.356465], [-125.404094, 56.356543], [-125.403456, 56.356673], [-125.402212, 56.356751], [-125.401578, 56.356934], [-125.401268, 56.356922], [-125.400989, 56.356838], [-125.400477, 56.356183], [-125.400397, 56.355914], [-125.400974, 56.354797], [-125.401027, 56.354087], [-125.400925, 56.353756], [-125.400278, 56.353275], [-125.399565, 56.352983], [-125.398873, 56.352295], [-125.397561, 56.351485], [-125.396006, 56.350939], [-125.394009, 56.35061], [-125.393425, 56.350334], [-125.393004, 56.350526], [-125.393334, 56.350841], [-125.393308, 56.351299], [-125.392517, 56.351246], [-125.391924, 56.350777], [-125.386994, 56.350795], [-125.389618, 56.35209], [-125.391496, 56.354365], [-125.390753, 56.356011], [-125.388838, 56.356418], [-125.409616, 56.373208], [-125.445808, 56.378715]]]]}, "properties": {"name": "Mesilinka 7", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Mesilinka 7", "economic_region_id": "5980", "census_division_code": "5955", "census_subdivision_code": "5955850", "regional_district_aka_census_division": "Peace River"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-135.5, 60.0], [-135.75, 60.0], [-136.0, 60.0], [-136.25, 60.0], [-136.5, 60.0], [-136.75, 60.0], [-137.0, 60.0], [-137.25, 60.0], [-137.5, 60.0], [-137.75, 60.0], [-138.0, 60.0], [-138.25, 60.0], [-138.5, 60.0], [-138.75, 60.0], [-139.0, 60.0], [-139.052201, 60.000041], [-139.042131, 59.991568], [-138.790823, 59.922991], [-138.705785, 59.90624], [-138.656299, 59.799224], [-138.626251, 59.770457], [-138.605426, 59.75769], [-138.419152, 59.664137], [-138.236661, 59.570124], [-137.878044, 59.381442], [-137.602069, 59.240725], [-137.499314, 58.983139], [-137.526729, 58.906599], [-137.446562, 58.908662], [-137.288408, 58.999482], [-137.236648, 59.011438], [-137.097749, 59.056521], [-136.999634, 59.091364], [-136.867021, 59.142724], [-136.82467, 59.159801], [-136.581992, 59.165541], [-136.488767, 59.258011], [-136.495127, 59.275129], [-136.467495, 59.284562], [-136.472275, 59.388012], [-136.476248, 59.464193], [-136.397735, 59.447177], [-136.360473, 59.45092], [-136.331489, 59.455992], [-136.301436, 59.465838], [-136.236285, 59.526711], [-136.241406, 59.559103], [-136.355712, 59.600673], [-136.195251, 59.638813], [-135.945689, 59.663622], [-135.546061, 59.779869], [-135.479005, 59.798613], [-135.377023, 59.742926], [-135.234707, 59.69595], [-135.221815, 59.664147], [-135.154455, 59.626479], [-135.117546, 59.623383], [-135.027708, 59.563918], [-135.027989, 59.476302], [-135.068348, 59.454995], [-135.097528, 59.427003], [-134.989246, 59.387876], [-135.030202, 59.348351], [-134.958935, 59.281086], [-134.6993, 59.248389], [-134.677947, 59.192804], [-134.569799, 59.133504], [-134.484783, 59.133387], [-134.444919, 59.086474], [-134.385375, 59.041397], [-134.407607, 58.978445], [-134.312279, 58.961391], [-134.337383, 58.920335], [-134.256434, 58.859072], [-134.002586, 58.774095], [-133.841333, 58.730149], [-133.699471, 58.609114], [-133.504183, 58.496378], [-133.381798, 58.432552], [-133.461274, 58.389873], [-133.354071, 58.2834], [-133.172399, 58.151641], [-133.069543, 58.000052], [-133.000404, 57.999933], [-132.750498, 57.999923], [-132.500592, 57.999914], [-132.250686, 57.999905], [-132.000781, 57.999897], [-131.750875, 57.999889], [-131.50097, 57.999881], [-131.31899, 57.999928], [-131.250871, 57.999968], [-131.202289, 58.000073], [-131.126789, 57.999791], [-131.118046, 58.000182], [-131.001675, 58.000551], [-131.001373, 58.005256], [-131.008073, 58.005325], [-131.007514, 58.012398], [-131.00076, 58.012371], [-131.004216, 58.067517], [-131.004584, 58.609838], [-131.004491, 58.615617], [-131.006474, 58.707121], [-131.005977, 58.748415], [-131.009961, 58.939988], [-131.009787, 59.002097], [-130.746512, 59.001632], [-130.647073, 59.001518], [-130.623407, 59.001751], [-130.493655, 59.001518], [-130.239929, 59.001174], [-129.986208, 59.000816], [-129.797761, 59.000588], [-129.734686, 59.000655], [-129.489491, 59.001115], [-129.24429, 59.001595], [-128.999081, 59.002094], [-128.943191, 59.002255], [-128.958736, 58.747813], [-129.002246, 57.998759], [-129.002736, 57.86943], [-129.002054, 57.164389], [-128.977693, 57.14394], [-128.956413, 57.146534], [-128.94747, 57.147748], [-128.930615, 57.147634], [-128.914792, 57.142765], [-128.901632, 57.134252], [-128.892261, 57.127457], [-128.876133, 57.121852], [-128.860216, 57.12109], [-128.850045, 57.116658], [-128.834459, 57.099333], [-128.81797, 57.087558], [-128.797645, 57.079844], [-128.786116, 57.075668], [-128.786898, 57.060646], [-128.780656, 57.052894], [-128.763375, 57.049318], [-128.740646, 57.047301], [-128.726272, 57.042146], [-128.718009, 57.030822], [-128.709107, 57.01029], [-128.699126, 56.996821], [-128.694307, 56.991636], [-128.686568, 56.985423], [-128.675646, 56.978428], [-128.661516, 56.972271], [-128.660023, 56.967743], [-128.663547, 56.963419], [-128.667665, 56.950216], [-128.667693, 56.935943], [-128.664074, 56.926321], [-128.648902, 56.919754], [-128.657279, 56.912275], [-128.683987, 56.895749], [-128.694728, 56.884924], [-128.693341, 56.878426], [-128.65545, 56.882891], [-128.63447, 56.883641], [-128.618882, 56.877864], [-128.576079, 56.852301], [-128.562691, 56.843425], [-128.537375, 56.833218], [-128.495132, 56.811425], [-128.486, 56.803727], [-128.449025, 56.794744], [-128.418303, 56.771845], [-128.375799, 56.758112], [-128.358518, 56.752981], [-128.314146, 56.750627], [-128.303343, 56.747124], [-128.290622, 56.745064], [-128.272013, 56.749364], [-128.259267, 56.748226], [-128.248739, 56.742103], [-128.230327, 56.735183], [-128.219876, 56.733384], [-128.20642, 56.730204], [-128.198856, 56.737761], [-128.188676, 56.737847], [-128.170246, 56.719716], [-128.161978, 56.706467], [-128.161004, 56.694], [-128.167071, 56.681867], [-128.183911, 56.657611], [-128.181209, 56.648652], [-128.17652, 56.643448], [-128.126483, 56.63758], [-128.110588, 56.639382], [-128.103376, 56.644368], [-128.098241, 56.654715], [-128.10069, 56.66254], [-128.097792, 56.666001], [-128.088278, 56.66806], [-128.071119, 56.666641], [-128.053407, 56.656883], [-128.044992, 56.647736], [-128.028365, 56.63699], [-128.018221, 56.633251], [-128.01243, 56.627067], [-128.00286, 56.620005], [-127.994648, 56.614826], [-127.989479, 56.611317], [-127.982121, 56.611165], [-127.964691, 56.616153], [-127.951478, 56.620492], [-127.944978, 56.621558], [-127.926972, 56.61936], [-127.916218, 56.615071], [-127.912529, 56.610206], [-127.905237, 56.591471], [-127.897367, 56.584651], [-127.886067, 56.5782], [-127.861553, 56.565058], [-127.847599, 56.559159], [-127.843691, 56.548826], [-127.854493, 56.54291], [-127.87241, 56.541031], [-127.90806, 56.538545], [-127.945991, 56.533494], [-127.966777, 56.528609], [-127.977494, 56.520724], [-127.988742, 56.510442], [-127.990021, 56.503446], [-127.987114, 56.494732], [-127.969845, 56.470468], [-127.964668, 56.460732], [-127.963795, 56.451151], [-127.969409, 56.443388], [-127.978622, 56.435426], [-127.998964, 56.428347], [-128.015328, 56.424715], [-128.027548, 56.423909], [-128.053499, 56.415522], [-128.06781, 56.41344], [-128.080103, 56.414124], [-128.103195, 56.417999], [-128.118539, 56.421565], [-128.136506, 56.427608], [-128.143706, 56.434851], [-128.156656, 56.449193], [-128.163518, 56.453478], [-128.190571, 56.446493], [-128.215377, 56.430245], [-128.227876, 56.426346], [-128.247247, 56.424349], [-128.265233, 56.419029], [-128.280186, 56.40945], [-128.285439, 56.400044], [-128.280736, 56.391067], [-128.273176, 56.383416], [-128.2558, 56.375849], [-128.227252, 56.368854], [-128.175036, 56.362097], [-128.1301, 56.354931], [-128.109344, 56.348184], [-128.095149, 56.334996], [-128.087965, 56.321217], [-128.094078, 56.31419], [-128.105809, 56.309426], [-128.11857, 56.308404], [-128.135828, 56.308679], [-128.154965, 56.308207], [-128.181867, 56.304745], [-128.20206, 56.300918], [-128.214561, 56.295406], [-128.222228, 56.279822], [-128.230906, 56.271253], [-128.241164, 56.265467], [-128.274606, 56.25255], [-128.28409, 56.246575], [-128.285759, 56.241413], [-128.284759, 56.233249], [-128.275492, 56.214203], [-128.277023, 56.209395], [-128.295571, 56.190506], [-128.298433, 56.180959], [-128.294041, 56.170819], [-128.290269, 56.13695], [-128.287954, 56.130479], [-128.285516, 56.126536], [-128.285481, 56.126592], [-128.27598, 56.118789], [-128.278712, 56.110285], [-128.306528, 56.096609], [-128.32162, 56.092087], [-128.330237, 56.093142], [-128.330045, 56.0932], [-128.345546, 56.093596], [-128.387861, 56.107009], [-128.409303, 56.109147], [-128.433361, 56.106895], [-128.473792, 56.105783], [-128.492091, 56.102173], [-128.507237, 56.092742], [-128.51984, 56.08615], [-128.522617, 56.083757], [-128.515621, 56.079782], [-128.511429, 56.076758], [-128.45279, 56.052847], [-128.416055, 56.039744], [-128.405743, 56.035269], [-128.391527, 56.027754], [-128.368761, 56.009032], [-128.364627, 56.003179], [-128.249568, 56.002235], [-127.998658, 56.000323], [-127.941533, 55.999936], [-127.915571, 55.997558], [-127.91587, 55.999013], [-127.916064, 55.999527], [-127.916773, 56.000584], [-127.916965, 56.001133], [-127.918083, 56.00249], [-127.91822, 56.002813], [-127.750594, 56.002251], [-127.500404, 56.001503], [-127.250224, 56.000753], [-127.02532, 56.000103], [-127.000069, 56.000076], [-126.750048, 56.000046], [-126.500202, 55.999968], [-126.250287, 55.999946], [-126.001051, 55.999538], [-125.939789, 55.999485], [-125.750844, 55.999627], [-125.500307, 55.99988], [-125.342621, 56.000103], [-125.249932, 56.000055], [-124.750949, 55.99951], [-124.502001, 55.999], [-124.440686, 55.998926], [-124.463774, 56.020978], [-124.485057, 56.042996], [-124.497632, 56.067253], [-124.493201, 56.089179], [-124.47909, 56.106972], [-124.478828, 56.108226], [-124.475416, 56.118876], [-124.479043, 56.119204], [-124.478978, 56.119416], [-124.483998, 56.130003], [-124.488306, 56.130695], [-124.504247, 56.132448], [-124.532132, 56.127014], [-124.590206, 56.122056], [-124.623558, 56.11615], [-124.661017, 56.116116], [-124.715464, 56.1338], [-124.768846, 56.170319], [-124.795199, 56.200004], [-124.832853, 56.223538], [-124.894642, 56.242233], [-124.923507, 56.244373], [-124.946707, 56.240076], [-124.980181, 56.22941], [-124.980917, 56.221887], [-124.985541, 56.215199], [-124.998692, 56.210388], [-125.010375, 56.207885], [-125.041653, 56.203104], [-125.054706, 56.203533], [-125.060266, 56.207896], [-125.055991, 56.223095], [-125.053489, 56.22895], [-125.063661, 56.263069], [-125.090507, 56.276647], [-125.119096, 56.303596], [-125.15828, 56.300461], [-125.189028, 56.294743], [-125.203053, 56.286247], [-125.212214, 56.277851], [-125.226409, 56.271907], [-125.234432, 56.265332], [-125.236059, 56.255281], [-125.245464, 56.250564], [-125.265895, 56.247985], [-125.292167, 56.247057], [-125.313739, 56.248709], [-125.316446, 56.25011], [-125.324629, 56.243991], [-125.377864, 56.253086], [-125.403774, 56.252948], [-125.457688, 56.233354], [-125.501726, 56.209692], [-125.574789, 56.168992], [-125.608488, 56.153289], [-125.63518, 56.151264], [-125.644358, 56.152912], [-125.649925, 56.157297], [-125.653189, 56.169164], [-125.647304, 56.196965], [-125.648376, 56.208516], [-125.644814, 56.217444], [-125.645516, 56.226012], [-125.656628, 56.228585], [-125.673122, 56.222139], [-125.698814, 56.20852], [-125.737618, 56.190575], [-125.80405, 56.169716], [-125.86564, 56.145204], [-125.931973, 56.147102], [-125.9555, 56.142928], [-125.961973, 56.146904], [-125.962909, 56.153581], [-125.971729, 56.166341], [-125.970722, 56.17556], [-125.972631, 56.185698], [-125.979343, 56.197894], [-125.980067, 56.208663], [-125.98291, 56.214339], [-125.983397, 56.23336], [-125.980622, 56.245629], [-126.001613, 56.248831], [-126.001612, 56.248953], [-126.003249, 56.248962], [-126.043217, 56.254314], [-126.098413, 56.26574], [-126.116323, 56.271922], [-126.124686, 56.279838], [-126.156768, 56.307528], [-126.187582, 56.335891], [-126.194747, 56.342382], [-126.195836, 56.350355], [-126.1624, 56.365907], [-126.133302, 56.376355], [-126.100362, 56.392618], [-126.091052, 56.404031], [-126.093292, 56.41266], [-126.101873, 56.425438], [-126.139968, 56.443811], [-126.182456, 56.464897], [-126.196489, 56.473533], [-126.193083, 56.481047], [-126.181149, 56.491779], [-126.163247, 56.509167], [-126.141925, 56.529501], [-126.142233, 56.538941], [-126.158537, 56.554529], [-126.160815, 56.56317], [-126.151907, 56.571299], [-126.143027, 56.576678], [-126.142565, 56.583776], [-126.153484, 56.587804], [-126.159636, 56.5916], [-126.16217, 56.600425], [-126.17041, 56.612161], [-126.188942, 56.62532], [-126.231269, 56.647301], [-126.296134, 56.671216], [-126.33151, 56.67737], [-126.353018, 56.676242], [-126.378341, 56.671235], [-126.396479, 56.663125], [-126.41767, 56.654779], [-126.449199, 56.654996], [-126.488313, 56.664694], [-126.548216, 56.699474], [-126.57093, 56.713596], [-126.615825, 56.739146], [-126.653406, 56.760603], [-126.674838, 56.771759], [-126.692686, 56.774951], [-126.705372, 56.773061], [-126.717223, 56.766343], [-126.766104, 56.72454], [-126.796724, 56.69381], [-126.811487, 56.680323], [-126.840997, 56.679024], [-126.856682, 56.677331], [-126.871844, 56.682947], [-126.902275, 56.692477], [-126.917051, 56.690737], [-126.927681, 56.684596], [-126.931113, 56.667868], [-126.937128, 56.662436], [-126.937492, 56.661548], [-126.943066, 56.659482], [-126.967831, 56.645186], [-126.992883, 56.632225], [-127.037911, 56.617973], [-127.065889, 56.613178], [-127.101075, 56.613536], [-127.128864, 56.626397], [-127.15265, 56.652854], [-127.159946, 56.662725], [-127.188039, 56.69654], [-127.207523, 56.729886], [-127.222285, 56.745903], [-127.269231, 56.732768], [-127.305004, 56.718029], [-127.333092, 56.706036], [-127.362287, 56.689963], [-127.388677, 56.681153], [-127.405384, 56.676461], [-127.415857, 56.676815], [-127.432331, 56.683278], [-127.454166, 56.693171], [-127.496107, 56.71791], [-127.507526, 56.724532], [-127.51935, 56.732341], [-127.525719, 56.736221], [-127.532738, 56.74067], [-127.531594, 56.743445], [-127.521917, 56.745472], [-127.51313, 56.750091], [-127.514006, 56.750092], [-127.514685, 56.761055], [-127.523315, 56.77305], [-127.533479, 56.781346], [-127.545437, 56.790082], [-127.558963, 56.797661], [-127.566591, 56.804016], [-127.568453, 56.81289], [-127.574549, 56.821537], [-127.586108, 56.827948], [-127.603352, 56.833985], [-127.612038, 56.840683], [-127.617747, 56.84647], [-127.616313, 56.849963], [-127.610816, 56.853275], [-127.598194, 56.854294], [-127.572243, 56.853755], [-127.565424, 56.857872], [-127.563991, 56.861655], [-127.580662, 56.873741], [-127.603807, 56.88878], [-127.605031, 56.894443], [-127.597478, 56.901284], [-127.563575, 56.919593], [-127.544788, 56.931355], [-127.538599, 56.94631], [-127.536316, 56.953971], [-127.541077, 56.968997], [-127.561174, 56.977175], [-127.578755, 56.978549], [-127.605856, 56.978507], [-127.645559, 56.976774], [-127.677095, 56.976778], [-127.706427, 56.990765], [-127.723006, 57.006097], [-127.732869, 57.019632], [-127.738198, 57.035528], [-127.738413, 57.061659], [-127.732954, 57.082069], [-127.730349, 57.109966], [-127.716505, 57.132595], [-127.696956, 57.140901], [-127.684321, 57.142594], [-127.602376, 57.151646], [-127.558285, 57.159984], [-127.521536, 57.170681], [-127.492508, 57.186388], [-127.476459, 57.196078], [-127.46727, 57.210031], [-127.47335, 57.241635], [-127.478603, 57.261771], [-127.48658, 57.28257], [-127.491236, 57.303443], [-127.489097, 57.322661], [-127.480272, 57.335693], [-127.434844, 57.366265], [-127.411189, 57.382975], [-127.390938, 57.402219], [-127.374265, 57.418194], [-127.366942, 57.419035], [-127.346258, 57.424253], [-127.330379, 57.432956], [-127.312445, 57.438988], [-127.302903, 57.446672], [-127.30153, 57.453569], [-127.304963, 57.46193], [-127.31286, 57.470332], [-127.320519, 57.476506], [-127.325086, 57.482249], [-127.320871, 57.486463], [-127.308153, 57.488495], [-127.297182, 57.492037], [-127.293401, 57.498202], [-127.299658, 57.501141], [-127.313082, 57.503985], [-127.329369, 57.509296], [-127.338168, 57.51936], [-127.343061, 57.531435], [-127.341887, 57.549047], [-127.334191, 57.558347], [-127.320636, 57.56709], [-127.312857, 57.577673], [-127.304828, 57.579921], [-127.296116, 57.576711], [-127.283424, 57.575599], [-127.27248, 57.587682], [-127.278215, 57.598783], [-127.271911, 57.603187], [-127.246746, 57.605469], [-127.181405, 57.597661], [-127.16786, 57.591612], [-127.14525, 57.577546], [-127.138208, 57.562514], [-127.143276, 57.546085], [-127.150146, 57.535899], [-127.135888, 57.531172], [-127.134536, 57.530553], [-127.118943, 57.528693], [-127.093079, 57.528133], [-127.075651, 57.512351], [-127.057045, 57.507272], [-127.021848, 57.514665], [-127.010612, 57.521132], [-126.987971, 57.529957], [-126.969789, 57.534143], [-126.929227, 57.540342], [-126.87663, 57.549051], [-126.836881, 57.558746], [-126.806405, 57.564582], [-126.796138, 57.565861], [-126.787572, 57.570778], [-126.784298, 57.576054], [-126.787304, 57.580841], [-126.802296, 57.592715], [-126.83651, 57.611137], [-126.868305, 57.633371], [-126.87013, 57.640117], [-126.861004, 57.647837], [-126.849484, 57.653787], [-126.836662, 57.668219], [-126.839593, 57.679439], [-126.852513, 57.688166], [-126.877069, 57.693269], [-126.902251, 57.695706], [-126.918192, 57.698721], [-126.938092, 57.707122], [-126.945506, 57.716495], [-126.953985, 57.74413], [-126.96742, 57.75488], [-126.981267, 57.76081], [-126.982833, 57.766628], [-126.979719, 57.777957], [-126.973187, 57.788242], [-126.959091, 57.797081], [-126.948075, 57.798379], [-126.934008, 57.797344], [-126.899301, 57.790181], [-126.8878, 57.788489], [-126.869154, 57.785328], [-126.864537, 57.785373], [-126.854067, 57.78845], [-126.851418, 57.791704], [-126.852484, 57.796905], [-126.856504, 57.8051], [-126.863691, 57.813049], [-126.868619, 57.81989], [-126.878603, 57.829831], [-126.881272, 57.841118], [-126.884811, 57.855292], [-126.889016, 57.864489], [-126.887957, 57.867319], [-126.896954, 57.877418], [-126.915992, 57.891457], [-126.93454, 57.897781], [-126.933537, 57.906004], [-126.936862, 57.911299], [-126.947537, 57.918694], [-126.964103, 57.925104], [-126.970592, 57.93312], [-126.970126, 57.949064], [-126.980028, 57.961224], [-126.972009, 57.967633], [-126.953941, 57.975678], [-126.95094, 57.989447], [-126.941797, 57.99247], [-126.907547, 57.994433], [-126.868008, 58.003361], [-126.815895, 58.009304], [-126.773015, 58.011069], [-126.732215, 58.018294], [-126.703056, 58.027104], [-126.696688, 58.025834], [-126.692256, 58.023192], [-126.683212, 58.006112], [-126.662906, 57.990822], [-126.604124, 57.960207], [-126.558552, 57.952313], [-126.539833, 57.9456], [-126.518032, 57.940947], [-126.49822, 57.942451], [-126.473956, 57.940046], [-126.452369, 57.938404], [-126.434757, 57.934522], [-126.422177, 57.923622], [-126.411318, 57.924456], [-126.397782, 57.926399], [-126.385251, 57.926192], [-126.37799, 57.923259], [-126.365475, 57.914386], [-126.353862, 57.900229], [-126.337915, 57.884836], [-126.323244, 57.87403], [-126.315934, 57.861916], [-126.288948, 57.854519], [-126.268712, 57.855704], [-126.263137, 57.859677], [-126.257401, 57.867207], [-126.250244, 57.883493], [-126.243503, 57.901462], [-126.229684, 57.911696], [-126.23374, 57.922248], [-126.228748, 57.93374], [-126.21418, 57.943495], [-126.182909, 57.94456], [-126.163163, 57.938654], [-126.153814, 57.930923], [-126.140094, 57.922367], [-126.124431, 57.918853], [-126.106725, 57.917825], [-126.093607, 57.915345], [-126.077943, 57.913668], [-126.067142, 57.916338], [-126.053958, 57.930211], [-126.055733, 57.933081], [-126.063534, 57.941802], [-126.068943, 57.952324], [-126.06477, 57.95911], [-126.058235, 57.962476], [-126.044091, 57.966939], [-126.024099, 57.968813], [-125.991429, 57.97142], [-125.974736, 57.967033], [-125.916395, 57.980683], [-125.908091, 57.97808], [-125.896937, 57.978196], [-125.890479, 57.979441], [-125.875906, 57.973856], [-125.868009, 57.974249], [-125.859816, 57.975256], [-125.850713, 57.979407], [-125.845706, 57.980195], [-125.83746, 57.979394], [-125.823245, 57.974995], [-125.81543, 57.974579], [-125.8074, 57.973969], [-125.797356, 57.966046], [-125.797738, 57.943512], [-125.791858, 57.939104], [-125.785151, 57.93131], [-125.789649, 57.922597], [-125.766772, 57.90816], [-125.76907, 57.902747], [-125.766404, 57.889777], [-125.756266, 57.874469], [-125.747358, 57.865549], [-125.736149, 57.862037], [-125.718848, 57.865371], [-125.699601, 57.86827], [-125.690807, 57.871796], [-125.686342, 57.875266], [-125.679825, 57.884176], [-125.674694, 57.888372], [-125.661368, 57.890451], [-125.657022, 57.894919], [-125.664224, 57.902781], [-125.662556, 57.910562], [-125.653443, 57.922221], [-125.640003, 57.929519], [-125.619972, 57.937048], [-125.608688, 57.933024], [-125.603989, 57.928768], [-125.593828, 57.914252], [-125.563534, 57.918216], [-125.536559, 57.925419], [-125.525913, 57.929497], [-125.509893, 57.93446], [-125.504218, 57.935959], [-125.49599, 57.935135], [-125.488976, 57.941192], [-125.491602, 57.948922], [-125.476994, 57.954735], [-125.463535, 57.960709], [-125.451032, 57.971563], [-125.424977, 57.979862], [-125.410063, 57.982516], [-125.38658, 57.988714], [-125.329551, 57.9946], [-125.250831, 58.005418], [-125.237946, 58.011948], [-125.227602, 58.015888], [-125.216833, 58.01944], [-125.203907, 58.022356], [-125.189752, 58.022801], [-125.172244, 58.023751], [-125.157496, 58.022304], [-125.14534, 58.023685], [-125.134579, 58.022311], [-125.118466, 58.0205], [-125.097272, 58.018943], [-125.094701, 58.019102], [-125.079729, 58.014412], [-125.059925, 58.009609], [-125.034464, 58.001883], [-125.020429, 57.996038], [-125.010119, 57.990552], [-125.005244, 57.987392], [-124.993736, 57.983487], [-124.982349, 57.981425], [-124.964294, 57.982052], [-124.9494, 57.983871], [-124.934278, 57.984708], [-124.924218, 57.984327], [-124.918989, 57.986243], [-124.926217, 57.989265], [-124.93915, 57.993839], [-124.948362, 57.999869], [-124.962133, 58.006846], [-124.965203, 58.010563], [-124.968385, 58.016522], [-124.966314, 58.021918], [-124.95589, 58.025739], [-124.950198, 58.024779], [-124.927025, 58.023655], [-124.919386, 58.02542], [-124.917027, 58.030427], [-124.922515, 58.04226], [-124.926846, 58.053435], [-124.926361, 58.064891], [-124.919067, 58.073972], [-124.903891, 58.084818], [-124.8874, 58.094046], [-124.876026, 58.103895], [-124.866887, 58.117871], [-124.860965, 58.12489], [-124.874058, 58.139539], [-124.882692, 58.157508], [-124.883955, 58.164317], [-124.875158, 58.174409], [-124.849869, 58.184881], [-124.831034, 58.198731], [-124.829705, 58.207061], [-124.839359, 58.215556], [-124.84892, 58.221354], [-124.862994, 58.221328], [-124.879853, 58.223437], [-124.892309, 58.230593], [-124.898999, 58.243704], [-124.916692, 58.256104], [-124.926267, 58.253214], [-124.942657, 58.235357], [-124.951867, 58.230836], [-124.970101, 58.232023], [-124.970124, 58.231928], [-124.99241, 58.233082], [-125.002847, 58.235501], [-125.01927, 58.240063], [-125.028587, 58.241403], [-125.038792, 58.241553], [-125.045367, 58.239572], [-125.051753, 58.237418], [-125.056963, 58.235388], [-125.088136, 58.235333], [-125.088374, 58.235536], [-125.099173, 58.237231], [-125.119999, 58.238616], [-125.141508, 58.236309], [-125.160106, 58.243837], [-125.171957, 58.243466], [-125.18549, 58.238604], [-125.201299, 58.239264], [-125.219243, 58.256072], [-125.233569, 58.2644], [-125.26418, 58.281956], [-125.275705, 58.300606], [-125.28046, 58.303639], [-125.288621, 58.302894], [-125.308727, 58.291535], [-125.328533, 58.277771], [-125.33931, 58.275972], [-125.356401, 58.279468], [-125.354062, 58.289784], [-125.361621, 58.293206], [-125.371335, 58.294721], [-125.377276, 58.298388], [-125.390825, 58.314939], [-125.393508, 58.315641], [-125.415585, 58.327191], [-125.426633, 58.336283], [-125.439347, 58.341135], [-125.451547, 58.340226], [-125.462393, 58.335229], [-125.469098, 58.327385], [-125.472547, 58.316167], [-125.476562, 58.309354], [-125.480498, 58.308653], [-125.517458, 58.308657], [-125.535918, 58.315464], [-125.551843, 58.319553], [-125.572757, 58.316615], [-125.58456, 58.312734], [-125.59264, 58.314598], [-125.610266, 58.312899], [-125.626606, 58.306693], [-125.650191, 58.303913], [-125.698349, 58.307117], [-125.717393, 58.307276], [-125.730405, 58.311237], [-125.737493, 58.318002], [-125.750344, 58.32356], [-125.765641, 58.320362], [-125.774897, 58.321617], [-125.78085, 58.331509], [-125.783954, 58.340609], [-125.784625, 58.346013], [-125.824928, 58.352596], [-125.83337, 58.356169], [-125.83529, 58.360929], [-125.827418, 58.367247], [-125.822968, 58.369404], [-125.825354, 58.373052], [-125.835527, 58.380993], [-125.845281, 58.400557], [-125.857454, 58.412657], [-125.877234, 58.414261], [-125.894588, 58.412289], [-125.897856, 58.408717], [-125.909113, 58.402203], [-125.921691, 58.400662], [-125.93089, 58.395288], [-125.945928, 58.397611], [-125.967256, 58.402277], [-126.000011, 58.406803], [-126.014561, 58.40655], [-126.047835, 58.41466], [-126.060097, 58.420484], [-126.06586, 58.43183], [-126.07055, 58.449417], [-126.110145, 58.460854], [-126.138123, 58.465064], [-126.158858, 58.472257], [-126.17859, 58.484272], [-126.196157, 58.490698], [-126.207594, 58.493424], [-126.231052, 58.512506], [-126.249623, 58.522072], [-126.284826, 58.549319], [-126.302991, 58.572249], [-126.299631, 58.59029], [-126.302896, 58.598351], [-126.319868, 58.608431], [-126.332394, 58.610038], [-126.374993, 58.603401], [-126.389188, 58.598552], [-126.403271, 58.596896], [-126.445807, 58.603299], [-126.457214, 58.60327], [-126.46816, 58.60022], [-126.48677, 58.605045], [-126.5289, 58.588797], [-126.539602, 58.582255], [-126.551986, 58.579135], [-126.585525, 58.580411], [-126.605592, 58.585153], [-126.615886, 58.592598], [-126.637306, 58.603653], [-126.666832, 58.628012], [-126.699901, 58.64887], [-126.721474, 58.656111], [-126.743868, 58.667261], [-126.764403, 58.669074], [-126.792743, 58.668404], [-126.835571, 58.663114], [-126.844207, 58.654811], [-126.873515, 58.63674], [-126.897144, 58.630787], [-126.914351, 58.638804], [-126.916037, 58.646622], [-126.90668, 58.661166], [-126.887811, 58.677962], [-126.870445, 58.685119], [-126.861312, 58.692817], [-126.851099, 58.697677], [-126.839803, 58.708052], [-126.834396, 58.722109], [-126.841532, 58.729379], [-126.879624, 58.76122], [-126.895348, 58.778131], [-126.931728, 58.796833], [-126.948677, 58.808973], [-126.95939, 58.813721], [-126.970846, 58.814207], [-126.986999, 58.809463], [-126.992422, 58.806136], [-127.004223, 58.804315], [-127.021385, 58.806629], [-127.037025, 58.825039], [-127.050396, 58.833903], [-127.050678, 58.835122], [-127.056854, 58.843691], [-127.059419, 58.850602], [-127.057239, 58.856652], [-127.052071, 58.86273], [-127.034093, 58.872217], [-127.015458, 58.889085], [-126.992398, 58.909336], [-126.984875, 58.920923], [-126.984688, 58.921038], [-126.965939, 58.943967], [-126.957891, 58.949483], [-126.948269, 58.961634], [-126.943463, 58.971772], [-126.951881, 58.980486], [-126.947009, 58.992743], [-126.944339, 58.996164], [-126.943837, 59.000414], [-126.951385, 59.024688], [-126.956595, 59.029784], [-126.976711, 59.043649], [-126.978561, 59.049811], [-126.966557, 59.075042], [-126.975069, 59.085527], [-126.973117, 59.093136], [-126.972148, 59.102995], [-126.976269, 59.111402], [-126.98874, 59.118759], [-127.027634, 59.132952], [-127.045911, 59.136075], [-127.068073, 59.133651], [-127.098579, 59.120655], [-127.113204, 59.120462], [-127.147608, 59.132634], [-127.170937, 59.140197], [-127.186956, 59.148894], [-127.193581, 59.15907], [-127.193129, 59.182509], [-127.198348, 59.196167], [-127.208247, 59.208019], [-127.22305, 59.217211], [-127.227391, 59.242196], [-127.235861, 59.253056], [-127.25054, 59.258751], [-127.279706, 59.282169], [-127.291576, 59.304776], [-127.307718, 59.321246], [-127.333123, 59.346579], [-127.334878, 59.360837], [-127.339663, 59.370526], [-127.342646, 59.378663], [-127.355877, 59.391721], [-127.36968, 59.400214], [-127.391703, 59.425247], [-127.414637, 59.447794], [-127.427714, 59.455251], [-127.445149, 59.479237], [-127.446175, 59.488949], [-127.483939, 59.514947], [-127.484845, 59.523706], [-127.493989, 59.530081], [-127.505015, 59.531463], [-127.517975, 59.53184], [-127.532677, 59.534417], [-127.538122, 59.544882], [-127.546803, 59.557113], [-127.549082, 59.556763], [-127.552229, 59.556679], [-127.55373, 59.556927], [-127.555362, 59.557497], [-127.55768, 59.558904], [-127.558532, 59.559694], [-127.559542, 59.560238], [-127.561016, 59.560513], [-127.562743, 59.561153], [-127.563503, 59.562034], [-127.573017, 59.569773], [-127.580493, 59.579268], [-127.585808, 59.587921], [-127.592673, 59.597041], [-127.648471, 59.60656], [-127.677467, 59.612871], [-127.713169, 59.626519], [-127.727666, 59.629975], [-127.751321, 59.655556], [-127.752611, 59.666649], [-127.756937, 59.669487], [-127.766619, 59.671061], [-127.777735, 59.675412], [-127.781917, 59.681899], [-127.786784, 59.687445], [-127.792151, 59.691087], [-127.795864, 59.69245], [-127.79785, 59.695132], [-127.785678, 59.701517], [-127.787077, 59.704813], [-127.791294, 59.707122], [-127.796938, 59.708547], [-127.79971, 59.711318], [-127.799582, 59.714336], [-127.797951, 59.720896], [-127.794535, 59.723855], [-127.794074, 59.727651], [-127.80003, 59.731882], [-127.804498, 59.746869], [-127.810586, 59.759338], [-127.786801, 59.772112], [-127.802726, 59.785446], [-127.761642, 59.799697], [-127.757515, 59.811006], [-127.761915, 59.816985], [-127.763353, 59.823179], [-127.769188, 59.828239], [-127.767486, 59.837827], [-127.758948, 59.842403], [-127.747992, 59.842953], [-127.735839, 59.842549], [-127.70937, 59.848138], [-127.708936, 59.848464], [-127.672639, 59.850636], [-127.660636, 59.855035], [-127.656288, 59.864266], [-127.6555, 59.880143], [-127.677538, 59.893224], [-127.702619, 59.896013], [-127.728608, 59.895707], [-127.728995, 59.958112], [-127.730471, 59.993188], [-127.729933, 59.993347], [-127.729532, 59.993571], [-127.728876, 59.993802], [-127.727926, 59.994289], [-127.726404, 59.995461], [-127.725187, 59.995958], [-127.724601, 59.9961], [-127.725654, 59.998739], [-127.725, 60.000022], [-127.75, 60.0], [-128.0, 60.0], [-128.25, 60.0], [-128.5, 60.0], [-128.75, 60.0], [-129.0, 60.0], [-129.25, 60.0], [-129.5, 60.0], [-129.75, 60.0], [-130.0, 60.0], [-130.25, 60.0], [-130.5, 60.0], [-130.75, 60.0], [-131.0, 60.0], [-131.25, 60.0], [-131.5, 60.0], [-131.75, 60.0], [-132.0, 60.0], [-132.25, 60.0], [-132.5, 60.0], [-132.75, 60.0], [-133.0, 60.0], [-133.25, 60.0], [-133.5, 60.0], [-133.75, 60.0], [-134.0, 60.0], [-134.25, 60.0], [-134.5, 60.0], [-134.75, 60.0], [-135.0, 60.0], [-135.25, 60.0], [-135.5, 60.0]], [[-133.701866, 59.569582], [-133.70078, 59.567443], [-133.703283, 59.5672], [-133.70412, 59.568482], [-133.702608, 59.568777], [-133.701866, 59.569582]], [[-133.704023, 59.567836], [-133.703677, 59.567185], [-133.704205, 59.567117], [-133.704604, 59.567747], [-133.704023, 59.567836]], [[-133.680046, 59.508988], [-133.67873, 59.510107], [-133.678674, 59.510644], [-133.678836, 59.511006], [-133.67911, 59.51126], [-133.679439, 59.511416], [-133.680434, 59.511723], [-133.680183, 59.512241], [-133.680137, 59.512977], [-133.680444, 59.513285], [-133.680978, 59.513605], [-133.681038, 59.513893], [-133.680776, 59.514268], [-133.680756, 59.514789], [-133.681478, 59.515334], [-133.681411, 59.516152], [-133.681024, 59.516992], [-133.680896, 59.517996], [-133.680562, 59.518369], [-133.678903, 59.517859], [-133.678279, 59.517583], [-133.67775, 59.517085], [-133.67777, 59.516599], [-133.677942, 59.516242], [-133.678733, 59.515927], [-133.679321, 59.515321], [-133.679273, 59.514746], [-133.679136, 59.514638], [-133.678508, 59.514416], [-133.678175, 59.514852], [-133.677326, 59.515239], [-133.675442, 59.515085], [-133.674847, 59.514971], [-133.674448, 59.514787], [-133.673974, 59.514666], [-133.671985, 59.514466], [-133.669591, 59.513301], [-133.667961, 59.512099], [-133.667654, 59.511368], [-133.66716, 59.510932], [-133.66657, 59.510217], [-133.666253, 59.50927], [-133.665753, 59.50896], [-133.66488, 59.508682], [-133.663838, 59.508232], [-133.662336, 59.508216], [-133.660978, 59.507699], [-133.659573, 59.507495], [-133.659465, 59.507558], [-133.658932, 59.507588], [-133.658389, 59.50752], [-133.657935, 59.507372], [-133.657386, 59.507429], [-133.656821, 59.507387], [-133.656014, 59.507208], [-133.655688, 59.507025], [-133.655095, 59.506839], [-133.651572, 59.506534], [-133.651164, 59.506601], [-133.650352, 59.506997], [-133.650306, 59.507248], [-133.650485, 59.507654], [-133.650296, 59.507984], [-133.650292, 59.508927], [-133.650085, 59.509266], [-133.650175, 59.510103], [-133.64971, 59.511149], [-133.649676, 59.512406], [-133.649916, 59.513378], [-133.638245, 59.5126], [-133.638112, 59.512189], [-133.637676, 59.507938], [-133.638231, 59.501871], [-133.638941, 59.501688], [-133.639718, 59.501219], [-133.640382, 59.500993], [-133.641478, 59.500951], [-133.642924, 59.501011], [-133.643589, 59.501152], [-133.646169, 59.502041], [-133.64652, 59.502521], [-133.646855, 59.502569], [-133.647213, 59.502482], [-133.647252, 59.501891], [-133.647492, 59.501678], [-133.647299, 59.501585], [-133.646702, 59.50149], [-133.64521, 59.500819], [-133.644505, 59.500785], [-133.643991, 59.500869], [-133.643426, 59.500845], [-133.641343, 59.499907], [-133.640838, 59.499776], [-133.639621, 59.499692], [-133.638469, 59.499268], [-133.63882, 59.495425], [-133.630558, 59.494864], [-133.6165, 59.494176], [-133.616233, 59.491358], [-133.610507, 59.491419], [-133.610306, 59.487896], [-133.609669, 59.483759], [-133.62434, 59.484372], [-133.62403, 59.477206], [-133.646069, 59.47718], [-133.646514, 59.477571], [-133.646513, 59.478002], [-133.646956, 59.47841], [-133.64842, 59.478902], [-133.64935, 59.479441], [-133.651657, 59.480463], [-133.652085, 59.480834], [-133.65368, 59.481552], [-133.654482, 59.48227], [-133.65509, 59.482518], [-133.655699, 59.483171], [-133.656513, 59.48361], [-133.656953, 59.484081], [-133.658266, 59.484814], [-133.65931, 59.485597], [-133.659797, 59.485836], [-133.660653, 59.486456], [-133.66145, 59.486886], [-133.661845, 59.487176], [-133.661974, 59.487438], [-133.662213, 59.487639], [-133.662523, 59.487848], [-133.664708, 59.488858], [-133.666388, 59.490143], [-133.666706, 59.490613], [-133.669641, 59.493221], [-133.670619, 59.494407], [-133.671117, 59.49478], [-133.671265, 59.495042], [-133.671305, 59.495778], [-133.67219, 59.497107], [-133.673324, 59.497946], [-133.673741, 59.498578], [-133.673751, 59.498794], [-133.674323, 59.49906], [-133.674833, 59.499577], [-133.675318, 59.500256], [-133.675847, 59.500738], [-133.676511, 59.501822], [-133.676835, 59.502552], [-133.6774, 59.503008], [-133.677765, 59.503586], [-133.678589, 59.504231], [-133.678688, 59.504412], [-133.680288, 59.505929], [-133.681012, 59.506447], [-133.681381, 59.5069], [-133.681587, 59.507523], [-133.682257, 59.508005], [-133.682183, 59.508112], [-133.681828, 59.508153], [-133.680969, 59.508433], [-133.680046, 59.508988]], [[-128.486548, 59.923645], [-128.488194, 59.923471], [-128.490256, 59.923174], [-128.493765, 59.923009], [-128.495914, 59.922765], [-128.496721, 59.922768], [-128.498364, 59.922882], [-128.501824, 59.923541], [-128.503485, 59.923745], [-128.505587, 59.924211], [-128.507674, 59.924812], [-128.508793, 59.925247], [-128.510467, 59.925774], [-128.513193, 59.926521], [-128.515065, 59.926941], [-128.516186, 59.92734], [-128.516684, 59.927431], [-128.518778, 59.927492], [-128.520973, 59.927824], [-128.522618, 59.927973], [-128.525424, 59.928064], [-128.526565, 59.928463], [-128.527486, 59.929023], [-128.52773, 59.92941], [-128.52765, 59.930147], [-128.527339, 59.930541], [-128.526671, 59.931104], [-128.525028, 59.932095], [-128.522091, 59.93336], [-128.518493, 59.93481], [-128.516312, 59.935835], [-128.513805, 59.937191], [-128.511835, 59.938692], [-128.510959, 59.939751], [-128.508741, 59.939685], [-128.502286, 59.939762], [-128.501531, 59.939106], [-128.500304, 59.938284], [-128.498816, 59.937511], [-128.497319, 59.936901], [-128.48436, 59.932267], [-128.481968, 59.92814], [-128.481099, 59.924143], [-128.482548, 59.924212], [-128.484412, 59.924121], [-128.485237, 59.92399], [-128.486548, 59.923645]], [[-129.292931, 59.297647], [-129.288369, 59.296423], [-129.287826, 59.296595], [-129.287299, 59.296471], [-129.286631, 59.297423], [-129.284552, 59.297292], [-129.284514, 59.297094], [-129.284723, 59.29695], [-129.285408, 59.296985], [-129.285987, 59.296759], [-129.286022, 59.296534], [-129.285138, 59.295935], [-129.285135, 59.295745], [-129.285519, 59.295189], [-129.285527, 59.294138], [-129.285647, 59.29395], [-129.286153, 59.293652], [-129.277496, 59.290451], [-129.297118, 59.277327], [-129.301682, 59.280044], [-129.298794, 59.281383], [-129.303937, 59.285019], [-129.302896, 59.285836], [-129.302664, 59.286313], [-129.302503, 59.287051], [-129.302043, 59.287874], [-129.301869, 59.288812], [-129.301289, 59.289906], [-129.302158, 59.293157], [-129.300633, 59.293184], [-129.292931, 59.297647]], [[-129.218268, 59.18544], [-129.220813, 59.185245], [-129.222178, 59.185294], [-129.22423, 59.185478], [-129.2264, 59.185537], [-129.228387, 59.185542], [-129.229572, 59.185385], [-129.230185, 59.190863], [-129.217283, 59.191958], [-129.215356, 59.185952], [-129.218268, 59.18544]]]]}, "properties": {"name": "Stikine Region", "province": "British Columbia", "rurality": "Rural 1", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Stikine Region", "economic_region_id": "5970", "census_division_code": "5957", "census_subdivision_code": "5957022", "regional_district_aka_census_division": "Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-133.701866, 59.569582], [-133.702608, 59.568777], [-133.70412, 59.568482], [-133.703283, 59.5672], [-133.70078, 59.567443], [-133.701866, 59.569582]]], [[[-133.704023, 59.567836], [-133.704604, 59.567747], [-133.704205, 59.567117], [-133.703677, 59.567185], [-133.704023, 59.567836]]]]}, "properties": {"name": "Unnamed 10", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Unnamed 10", "economic_region_id": "5970", "census_division_code": "5957", "census_subdivision_code": "5957802", "regional_district_aka_census_division": "Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-133.677942, 59.516242], [-133.67777, 59.516599], [-133.67775, 59.517085], [-133.678089, 59.517456], [-133.678903, 59.517859], [-133.680562, 59.518369], [-133.680896, 59.517996], [-133.681024, 59.516992], [-133.681411, 59.516152], [-133.681478, 59.515334], [-133.680756, 59.514789], [-133.680776, 59.514268], [-133.681038, 59.513893], [-133.680978, 59.513605], [-133.680444, 59.513285], [-133.680137, 59.512977], [-133.680183, 59.512241], [-133.680434, 59.511723], [-133.679439, 59.511416], [-133.67911, 59.51126], [-133.678737, 59.510861], [-133.678683, 59.510394], [-133.67873, 59.510107], [-133.680283, 59.508793], [-133.681219, 59.508327], [-133.681828, 59.508153], [-133.682183, 59.508112], [-133.682257, 59.508005], [-133.681587, 59.507523], [-133.681381, 59.5069], [-133.681012, 59.506447], [-133.680288, 59.505929], [-133.678688, 59.504412], [-133.678589, 59.504231], [-133.677765, 59.503586], [-133.6774, 59.503008], [-133.676835, 59.502552], [-133.676511, 59.501822], [-133.675847, 59.500738], [-133.675318, 59.500256], [-133.674833, 59.499577], [-133.674323, 59.49906], [-133.673751, 59.498794], [-133.673741, 59.498578], [-133.673324, 59.497946], [-133.67219, 59.497107], [-133.671305, 59.495778], [-133.671265, 59.495042], [-133.671117, 59.49478], [-133.670619, 59.494407], [-133.669641, 59.493221], [-133.668241, 59.492039], [-133.66797, 59.491694], [-133.667558, 59.49142], [-133.666999, 59.490814], [-133.666706, 59.490613], [-133.666388, 59.490143], [-133.665345, 59.489287], [-133.664555, 59.488767], [-133.662523, 59.487848], [-133.661974, 59.487438], [-133.661845, 59.487176], [-133.66145, 59.486886], [-133.660653, 59.486456], [-133.659797, 59.485836], [-133.65931, 59.485597], [-133.658266, 59.484814], [-133.656953, 59.484081], [-133.656513, 59.48361], [-133.655699, 59.483171], [-133.65509, 59.482518], [-133.654482, 59.48227], [-133.65368, 59.481552], [-133.652085, 59.480834], [-133.651657, 59.480463], [-133.64935, 59.479441], [-133.64842, 59.478902], [-133.646956, 59.47841], [-133.646513, 59.478002], [-133.646514, 59.477571], [-133.646069, 59.47718], [-133.62403, 59.477206], [-133.62434, 59.484372], [-133.609669, 59.483759], [-133.610306, 59.487896], [-133.610507, 59.491419], [-133.616233, 59.491358], [-133.6165, 59.494176], [-133.630558, 59.494864], [-133.63882, 59.495425], [-133.638469, 59.499268], [-133.639621, 59.499692], [-133.640838, 59.499776], [-133.641343, 59.499907], [-133.643426, 59.500845], [-133.643991, 59.500869], [-133.644505, 59.500785], [-133.64521, 59.500819], [-133.646702, 59.50149], [-133.647423, 59.501623], [-133.64747, 59.50174], [-133.647252, 59.501891], [-133.647213, 59.502042], [-133.647213, 59.502482], [-133.646855, 59.502569], [-133.64652, 59.502521], [-133.646169, 59.502041], [-133.643589, 59.501152], [-133.642924, 59.501011], [-133.641478, 59.500951], [-133.640382, 59.500993], [-133.639718, 59.501219], [-133.638941, 59.501688], [-133.638231, 59.501871], [-133.637676, 59.507938], [-133.638112, 59.512189], [-133.638245, 59.5126], [-133.649916, 59.513378], [-133.649676, 59.512406], [-133.64971, 59.511149], [-133.650175, 59.510103], [-133.650085, 59.509266], [-133.650292, 59.508927], [-133.650296, 59.507984], [-133.650485, 59.507654], [-133.650306, 59.507248], [-133.650352, 59.506997], [-133.651342, 59.506567], [-133.651572, 59.506534], [-133.652719, 59.506608], [-133.655095, 59.506839], [-133.656172, 59.507255], [-133.657085, 59.507426], [-133.657935, 59.507372], [-133.658527, 59.507548], [-133.659286, 59.507582], [-133.659573, 59.507495], [-133.660978, 59.507699], [-133.662336, 59.508216], [-133.663733, 59.508212], [-133.66403, 59.508296], [-133.66488, 59.508682], [-133.665753, 59.50896], [-133.666167, 59.509189], [-133.66657, 59.510217], [-133.66716, 59.510932], [-133.667654, 59.511368], [-133.667961, 59.512099], [-133.669591, 59.513301], [-133.67162, 59.514327], [-133.672109, 59.514504], [-133.673079, 59.51455], [-133.673974, 59.514666], [-133.674448, 59.514787], [-133.674847, 59.514971], [-133.675442, 59.515085], [-133.677326, 59.515239], [-133.678175, 59.514852], [-133.678508, 59.514416], [-133.679136, 59.514638], [-133.679273, 59.514746], [-133.679321, 59.515321], [-133.678733, 59.515927], [-133.677942, 59.516242]]]]}, "properties": {"name": "Five Mile Point 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Five Mile Point 3", "economic_region_id": "5970", "census_division_code": "5957", "census_subdivision_code": "5957803", "regional_district_aka_census_division": "Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.217283, 59.191958], [-129.230185, 59.190863], [-129.229572, 59.185385], [-129.228387, 59.185542], [-129.2264, 59.185537], [-129.22423, 59.185478], [-129.222178, 59.185294], [-129.220813, 59.185245], [-129.218268, 59.18544], [-129.215356, 59.185952], [-129.217283, 59.191958]]]]}, "properties": {"name": "Good Hope Lake", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Good Hope Lake", "economic_region_id": "5970", "census_division_code": "5957", "census_subdivision_code": "5957804", "regional_district_aka_census_division": "Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.493192, 59.92304], [-128.493207, 59.925458], [-128.493265, 59.925612], [-128.493435, 59.925699], [-128.497799, 59.925728], [-128.498644, 59.925667], [-128.502036, 59.925625], [-128.502622, 59.923638], [-128.501824, 59.923541], [-128.498364, 59.922882], [-128.497542, 59.922816], [-128.495914, 59.922765], [-128.493192, 59.92304]]]]}, "properties": {"name": "Lower Post", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Lower Post", "economic_region_id": "5970", "census_division_code": "5957", "census_subdivision_code": "5957813", "regional_district_aka_census_division": "Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-128.48436, 59.932267], [-128.497319, 59.936901], [-128.498816, 59.937511], [-128.500304, 59.938284], [-128.501531, 59.939106], [-128.502286, 59.939762], [-128.508741, 59.939685], [-128.510959, 59.939751], [-128.511835, 59.938692], [-128.513247, 59.937557], [-128.515323, 59.936342], [-128.518493, 59.93481], [-128.524685, 59.932255], [-128.526181, 59.931426], [-128.527122, 59.930746], [-128.527521, 59.930326], [-128.527725, 59.929896], [-128.52773, 59.92941], [-128.527486, 59.929023], [-128.526867, 59.928626], [-128.526565, 59.928463], [-128.525424, 59.928064], [-128.522618, 59.927973], [-128.520973, 59.927824], [-128.518778, 59.927492], [-128.516684, 59.927431], [-128.516186, 59.92734], [-128.515065, 59.926941], [-128.513193, 59.926521], [-128.510467, 59.925774], [-128.506497, 59.924448], [-128.503485, 59.923745], [-128.502699, 59.923644], [-128.502622, 59.923638], [-128.502568, 59.923793], [-128.502036, 59.925625], [-128.498644, 59.925667], [-128.497799, 59.925728], [-128.493435, 59.925699], [-128.493265, 59.925612], [-128.493207, 59.925458], [-128.493192, 59.923038], [-128.491134, 59.923105], [-128.489755, 59.923226], [-128.488194, 59.923471], [-128.486601, 59.923635], [-128.485237, 59.92399], [-128.484412, 59.924121], [-128.482548, 59.924212], [-128.481099, 59.924143], [-128.481968, 59.92814], [-128.48436, 59.932267]]]]}, "properties": {"name": "Liard River 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Liard River 3", "economic_region_id": "5970", "census_division_code": "5957", "census_subdivision_code": "5957814", "regional_district_aka_census_division": "Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-129.292931, 59.297647], [-129.300633, 59.293184], [-129.302158, 59.293157], [-129.301289, 59.289906], [-129.301869, 59.288812], [-129.302043, 59.287874], [-129.302503, 59.287051], [-129.302664, 59.286313], [-129.302896, 59.285836], [-129.303937, 59.285019], [-129.298794, 59.281383], [-129.301682, 59.280044], [-129.297118, 59.277327], [-129.277496, 59.290451], [-129.286153, 59.293652], [-129.285647, 59.29395], [-129.285527, 59.294138], [-129.285519, 59.295189], [-129.285135, 59.295745], [-129.285138, 59.295935], [-129.286022, 59.296534], [-129.285987, 59.296759], [-129.285408, 59.296985], [-129.284723, 59.29695], [-129.284514, 59.297094], [-129.284552, 59.297292], [-129.286631, 59.297423], [-129.287299, 59.296471], [-129.287826, 59.296595], [-129.288369, 59.296423], [-129.292931, 59.297647]]]]}, "properties": {"name": "Dease River 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Nechako", "census_subdivision": "Dease River 1", "economic_region_id": "5970", "census_division_code": "5957", "census_subdivision_code": "5957820", "regional_district_aka_census_division": "Stikine"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-127.725, 60.000022], [-127.725654, 59.998739], [-127.724601, 59.9961], [-127.725187, 59.995958], [-127.726404, 59.995461], [-127.727926, 59.994289], [-127.728876, 59.993802], [-127.729532, 59.993571], [-127.729933, 59.993347], [-127.730471, 59.993188], [-127.728995, 59.958112], [-127.728608, 59.895707], [-127.702619, 59.896013], [-127.677538, 59.893224], [-127.6555, 59.880143], [-127.656288, 59.864266], [-127.660636, 59.855035], [-127.672639, 59.850636], [-127.708936, 59.848464], [-127.70937, 59.848138], [-127.735839, 59.842549], [-127.747992, 59.842953], [-127.758948, 59.842403], [-127.767486, 59.837827], [-127.769188, 59.828239], [-127.763353, 59.823179], [-127.761915, 59.816985], [-127.757515, 59.811006], [-127.761642, 59.799697], [-127.802726, 59.785446], [-127.786801, 59.772112], [-127.810586, 59.759338], [-127.804498, 59.746869], [-127.80003, 59.731882], [-127.794074, 59.727651], [-127.794535, 59.723855], [-127.797951, 59.720896], [-127.799582, 59.714336], [-127.79971, 59.711318], [-127.796938, 59.708547], [-127.791294, 59.707122], [-127.787077, 59.704813], [-127.785678, 59.701517], [-127.79785, 59.695132], [-127.795864, 59.69245], [-127.792151, 59.691087], [-127.786784, 59.687445], [-127.781917, 59.681899], [-127.777735, 59.675412], [-127.766619, 59.671061], [-127.756937, 59.669487], [-127.752611, 59.666649], [-127.751321, 59.655556], [-127.727666, 59.629975], [-127.713169, 59.626519], [-127.677467, 59.612871], [-127.648471, 59.60656], [-127.592673, 59.597041], [-127.585808, 59.587921], [-127.580493, 59.579268], [-127.573017, 59.569773], [-127.563503, 59.562034], [-127.562743, 59.561153], [-127.561016, 59.560513], [-127.559542, 59.560238], [-127.558532, 59.559694], [-127.55768, 59.558904], [-127.555362, 59.557497], [-127.55373, 59.556927], [-127.552229, 59.556679], [-127.549082, 59.556763], [-127.546803, 59.557113], [-127.538122, 59.544882], [-127.532677, 59.534417], [-127.517975, 59.53184], [-127.505015, 59.531463], [-127.493989, 59.530081], [-127.484845, 59.523706], [-127.483939, 59.514947], [-127.446175, 59.488949], [-127.445149, 59.479237], [-127.427714, 59.455251], [-127.414637, 59.447794], [-127.391703, 59.425247], [-127.36968, 59.400214], [-127.355877, 59.391721], [-127.342646, 59.378663], [-127.339663, 59.370526], [-127.334878, 59.360837], [-127.333123, 59.346579], [-127.307718, 59.321246], [-127.291576, 59.304776], [-127.279706, 59.282169], [-127.25054, 59.258751], [-127.235861, 59.253056], [-127.227391, 59.242196], [-127.22305, 59.217211], [-127.208247, 59.208019], [-127.198348, 59.196167], [-127.193129, 59.182509], [-127.193581, 59.15907], [-127.186956, 59.148894], [-127.170937, 59.140197], [-127.147608, 59.132634], [-127.113204, 59.120462], [-127.098579, 59.120655], [-127.068073, 59.133651], [-127.045911, 59.136075], [-127.027634, 59.132952], [-126.98874, 59.118759], [-126.976269, 59.111402], [-126.972148, 59.102995], [-126.973117, 59.093136], [-126.975069, 59.085527], [-126.966557, 59.075042], [-126.978561, 59.049811], [-126.976711, 59.043649], [-126.956595, 59.029784], [-126.951385, 59.024688], [-126.943837, 59.000414], [-126.944339, 58.996164], [-126.947009, 58.992743], [-126.951881, 58.980486], [-126.943463, 58.971772], [-126.948269, 58.961634], [-126.957891, 58.949483], [-126.965939, 58.943967], [-126.984688, 58.921038], [-126.984875, 58.920923], [-126.992398, 58.909336], [-127.015458, 58.889085], [-127.034093, 58.872217], [-127.052071, 58.86273], [-127.057239, 58.856652], [-127.059419, 58.850602], [-127.056854, 58.843691], [-127.050678, 58.835122], [-127.050396, 58.833903], [-127.037025, 58.825039], [-127.021385, 58.806629], [-127.004223, 58.804315], [-126.992422, 58.806136], [-126.986999, 58.809463], [-126.970846, 58.814207], [-126.95939, 58.813721], [-126.948677, 58.808973], [-126.931728, 58.796833], [-126.895348, 58.778131], [-126.879624, 58.76122], [-126.841532, 58.729379], [-126.834396, 58.722109], [-126.839803, 58.708052], [-126.851099, 58.697677], [-126.861312, 58.692817], [-126.870445, 58.685119], [-126.887811, 58.677962], [-126.90668, 58.661166], [-126.916037, 58.646622], [-126.914351, 58.638804], [-126.897144, 58.630787], [-126.873515, 58.63674], [-126.844207, 58.654811], [-126.835571, 58.663114], [-126.792743, 58.668404], [-126.764403, 58.669074], [-126.743868, 58.667261], [-126.721474, 58.656111], [-126.699901, 58.64887], [-126.666832, 58.628012], [-126.637306, 58.603653], [-126.615886, 58.592598], [-126.605592, 58.585153], [-126.585525, 58.580411], [-126.551986, 58.579135], [-126.539602, 58.582255], [-126.5289, 58.588797], [-126.48677, 58.605045], [-126.46816, 58.60022], [-126.457214, 58.60327], [-126.445807, 58.603299], [-126.403271, 58.596896], [-126.389188, 58.598552], [-126.374993, 58.603401], [-126.332394, 58.610038], [-126.319868, 58.608431], [-126.302896, 58.598351], [-126.299631, 58.59029], [-126.302991, 58.572249], [-126.284826, 58.549319], [-126.249623, 58.522072], [-126.231052, 58.512506], [-126.207594, 58.493424], [-126.196157, 58.490698], [-126.17859, 58.484272], [-126.158858, 58.472257], [-126.138123, 58.465064], [-126.110145, 58.460854], [-126.07055, 58.449417], [-126.06586, 58.43183], [-126.060097, 58.420484], [-126.047835, 58.41466], [-126.014561, 58.40655], [-126.000011, 58.406803], [-125.967256, 58.402277], [-125.945928, 58.397611], [-125.93089, 58.395288], [-125.921691, 58.400662], [-125.909113, 58.402203], [-125.897856, 58.408717], [-125.894588, 58.412289], [-125.877234, 58.414261], [-125.857454, 58.412657], [-125.845281, 58.400557], [-125.835527, 58.380993], [-125.825354, 58.373052], [-125.822968, 58.369404], [-125.827418, 58.367247], [-125.83529, 58.360929], [-125.83337, 58.356169], [-125.824928, 58.352596], [-125.784625, 58.346013], [-125.783954, 58.340609], [-125.78085, 58.331509], [-125.774897, 58.321617], [-125.765641, 58.320362], [-125.750344, 58.32356], [-125.737493, 58.318002], [-125.730405, 58.311237], [-125.717393, 58.307276], [-125.698349, 58.307117], [-125.650191, 58.303913], [-125.626606, 58.306693], [-125.610266, 58.312899], [-125.59264, 58.314598], [-125.58456, 58.312734], [-125.572757, 58.316615], [-125.551843, 58.319553], [-125.535918, 58.315464], [-125.517458, 58.308657], [-125.480498, 58.308653], [-125.476562, 58.309354], [-125.472547, 58.316167], [-125.469098, 58.327385], [-125.462393, 58.335229], [-125.451547, 58.340226], [-125.439347, 58.341135], [-125.426633, 58.336283], [-125.415585, 58.327191], [-125.393508, 58.315641], [-125.390825, 58.314939], [-125.377276, 58.298388], [-125.371335, 58.294721], [-125.361621, 58.293206], [-125.354062, 58.289784], [-125.356401, 58.279468], [-125.33931, 58.275972], [-125.328533, 58.277771], [-125.308727, 58.291535], [-125.288621, 58.302894], [-125.28046, 58.303639], [-125.275705, 58.300606], [-125.26418, 58.281956], [-125.233569, 58.2644], [-125.219243, 58.256072], [-125.201299, 58.239264], [-125.18549, 58.238604], [-125.171957, 58.243466], [-125.160106, 58.243837], [-125.141508, 58.236309], [-125.119999, 58.238616], [-125.099173, 58.237231], [-125.088374, 58.235536], [-125.088136, 58.235333], [-125.056963, 58.235388], [-125.051753, 58.237418], [-125.045367, 58.239572], [-125.038792, 58.241553], [-125.028587, 58.241403], [-125.01927, 58.240063], [-125.002847, 58.235501], [-124.99241, 58.233082], [-124.970124, 58.231928], [-124.970101, 58.232023], [-124.951867, 58.230836], [-124.942657, 58.235357], [-124.926267, 58.253214], [-124.916692, 58.256104], [-124.898999, 58.243704], [-124.892309, 58.230593], [-124.879853, 58.223437], [-124.862994, 58.221328], [-124.84892, 58.221354], [-124.839359, 58.215556], [-124.829705, 58.207061], [-124.831034, 58.198731], [-124.849869, 58.184881], [-124.875158, 58.174409], [-124.883955, 58.164317], [-124.882692, 58.157508], [-124.874058, 58.139539], [-124.860965, 58.12489], [-124.866887, 58.117871], [-124.876026, 58.103895], [-124.8874, 58.094046], [-124.903891, 58.084818], [-124.919067, 58.073972], [-124.926361, 58.064891], [-124.926846, 58.053435], [-124.922515, 58.04226], [-124.917027, 58.030427], [-124.919386, 58.02542], [-124.927025, 58.023655], [-124.950198, 58.024779], [-124.95589, 58.025739], [-124.966314, 58.021918], [-124.968385, 58.016522], [-124.965203, 58.010563], [-124.962133, 58.006846], [-124.948365, 57.99987], [-124.750932, 57.999719], [-124.50097, 57.999582], [-124.25101, 57.999445], [-124.001053, 57.999308], [-123.752029, 57.999425], [-123.503003, 57.999545], [-123.253976, 57.999669], [-123.006438, 57.999798], [-122.757701, 57.997566], [-122.75785, 57.998528], [-122.757758, 58.000548], [-122.757374, 58.001363], [-122.756338, 58.002221], [-122.755558, 58.002754], [-122.739823, 58.000582], [-122.590853, 58.000225], [-122.506352, 58.000132], [-122.255163, 58.000025], [-122.04237, 57.999964], [-122.004122, 57.99997], [-121.872499, 58.00018], [-121.753294, 57.999121], [-121.509068, 58.000039], [-121.273823, 58.001412], [-121.254127, 58.001353], [-121.00311, 58.000832], [-120.752101, 58.000307], [-120.506001, 57.999793], [-120.0, 58.000005], [-120.000015, 60.000006], [-120.25, 60.0], [-120.5, 60.0], [-120.75, 60.0], [-121.0, 60.0], [-121.25, 60.0], [-121.5, 60.0], [-121.75, 60.0], [-121.85, 60.000059], [-122.0, 60.0], [-122.25, 60.0], [-122.5, 60.0], [-122.75, 60.0], [-123.0, 60.0], [-123.25, 60.0], [-123.5, 60.0], [-123.75, 60.0], [-124.0, 60.0], [-124.25, 60.0], [-124.5, 60.0], [-124.75, 60.0], [-125.0, 60.0], [-125.25, 60.0], [-125.5, 60.0], [-125.75, 60.0], [-126.0, 60.0], [-126.25, 60.0], [-126.5, 60.0], [-126.75, 60.0], [-127.0, 60.0], [-127.25, 60.0], [-127.5, 60.0], [-127.725, 60.000022]], [[-122.57381, 58.825288], [-122.574185, 58.82587], [-122.575098, 58.826829], [-122.577231, 58.828532], [-122.577953, 58.829606], [-122.577972, 58.830244], [-122.577274, 58.830639], [-122.576373, 58.830962], [-122.574955, 58.83124], [-122.571254, 58.831517], [-122.568601, 58.831627], [-122.563995, 58.831281], [-122.559178, 58.82831], [-122.559134, 58.825954], [-122.563547, 58.822331], [-122.569547, 58.819544], [-122.574776, 58.817571], [-122.576017, 58.815856], [-122.574424, 58.811442], [-122.572073, 58.807013], [-122.569272, 58.805185], [-122.563472, 58.804173], [-122.558066, 58.804706], [-122.556022, 58.806355], [-122.556047, 58.806315], [-122.550814, 58.806299], [-122.523201, 58.806297], [-122.518085, 58.806139], [-122.507965, 58.805947], [-122.504495, 58.844694], [-122.434144, 58.846019], [-122.424242, 58.846534], [-122.425475, 58.816351], [-122.45364, 58.815611], [-122.454521, 58.749628], [-122.476917, 58.74964], [-122.581562, 58.750644], [-122.589824, 58.750762], [-122.592825, 58.749194], [-122.594029, 58.748705], [-122.597365, 58.748178], [-122.603216, 58.747826], [-122.60993, 58.747101], [-122.615028, 58.744691], [-122.619785, 58.740581], [-122.624226, 58.73784], [-122.62886, 58.736357], [-122.632823, 58.740561], [-122.634121, 58.741108], [-122.635587, 58.741576], [-122.637234, 58.741994], [-122.639105, 58.742339], [-122.642658, 58.742629], [-122.643989, 58.743869], [-122.647773, 58.744311], [-122.649139, 58.744261], [-122.649987, 58.744074], [-122.674017, 58.744144], [-122.672923, 58.748794], [-122.667855, 58.767601], [-122.663922, 58.769712], [-122.663202, 58.769798], [-122.663505, 58.770222], [-122.662132, 58.770478], [-122.662718, 58.774561], [-122.661346, 58.774715], [-122.661484, 58.775229], [-122.663402, 58.775286], [-122.659615, 58.77984], [-122.655644, 58.783593], [-122.656078, 58.785238], [-122.653703, 58.785997], [-122.657624, 58.788938], [-122.656781, 58.789284], [-122.655062, 58.789862], [-122.652253, 58.79062], [-122.649313, 58.791147], [-122.645576, 58.791977], [-122.642751, 58.792101], [-122.640619, 58.792703], [-122.639212, 58.793291], [-122.637534, 58.794727], [-122.636168, 58.796113], [-122.635039, 58.798485], [-122.635057, 58.799255], [-122.635382, 58.799623], [-122.637024, 58.800808], [-122.642529, 58.803309], [-122.641756, 58.804915], [-122.641479, 58.805169], [-122.637797, 58.807489], [-122.631865, 58.806745], [-122.621382, 58.806346], [-122.615772, 58.807077], [-122.60838, 58.810171], [-122.606529, 58.811167], [-122.605171, 58.812112], [-122.603832, 58.812531], [-122.602824, 58.81295], [-122.596392, 58.816097], [-122.593317, 58.818311], [-122.590068, 58.819293], [-122.586613, 58.819668], [-122.584447, 58.819655], [-122.581323, 58.820264], [-122.574739, 58.822337], [-122.57381, 58.825288]], [[-122.707384, 58.090152], [-122.705008, 58.091999], [-122.705243, 58.094038], [-122.687099, 58.095137], [-122.686108, 58.065459], [-122.705216, 58.065718], [-122.703783, 58.068168], [-122.707619, 58.082351], [-122.709085, 58.083991], [-122.710223, 58.089085], [-122.707282, 58.089248], [-122.707384, 58.090152]], [[-121.727726, 58.284026], [-121.728813, 58.283953], [-121.72861, 58.287579], [-121.723043, 58.287295], [-121.723746, 58.283205], [-121.724759, 58.283538], [-121.726129, 58.283866], [-121.727111, 58.284011], [-121.727726, 58.284026]], [[-120.908747, 58.357012], [-120.909123, 58.357889], [-120.908324, 58.357479], [-120.905478, 58.357725], [-120.90511, 58.354289], [-120.909955, 58.354179], [-120.910495, 58.354508], [-120.909746, 58.355048], [-120.909559, 58.355469], [-120.909649, 58.355745], [-120.91054, 58.35639], [-120.909339, 58.356499], [-120.908826, 58.356743], [-120.908747, 58.357012]]]]}, "properties": {"name": "Northern Rockies", "province": "British Columbia", "rurality": "Rural 2", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Northern Rockies", "economic_region_id": "5980", "census_division_code": "5959", "census_subdivision_code": "5959007", "regional_district_aka_census_division": "Northern Rockies"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-121.723043, 58.287295], [-121.72861, 58.287579], [-121.728813, 58.283953], [-121.727726, 58.284026], [-121.7265, 58.283933], [-121.724759, 58.283538], [-121.723746, 58.283205], [-121.723043, 58.287295]]]]}, "properties": {"name": "Fontas 1", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Fontas 1", "economic_region_id": "5980", "census_division_code": "5959", "census_subdivision_code": "5959805", "regional_district_aka_census_division": "Northern Rockies"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.559178, 58.82831], [-122.563995, 58.831281], [-122.568601, 58.831627], [-122.571254, 58.831517], [-122.574955, 58.83124], [-122.576373, 58.830962], [-122.577274, 58.830639], [-122.577972, 58.830244], [-122.577953, 58.829606], [-122.577231, 58.828532], [-122.575098, 58.826829], [-122.574185, 58.82587], [-122.57381, 58.825288], [-122.574739, 58.822337], [-122.581323, 58.820264], [-122.584447, 58.819655], [-122.586613, 58.819668], [-122.590068, 58.819293], [-122.593317, 58.818311], [-122.596392, 58.816097], [-122.602824, 58.81295], [-122.603832, 58.812531], [-122.605171, 58.812112], [-122.606529, 58.811167], [-122.60838, 58.810171], [-122.615772, 58.807077], [-122.621382, 58.806346], [-122.631865, 58.806745], [-122.637797, 58.807489], [-122.641479, 58.805169], [-122.641756, 58.804915], [-122.642529, 58.803309], [-122.637024, 58.800808], [-122.635382, 58.799623], [-122.635057, 58.799255], [-122.635039, 58.798485], [-122.636168, 58.796113], [-122.637534, 58.794727], [-122.639212, 58.793291], [-122.640619, 58.792703], [-122.642751, 58.792101], [-122.645576, 58.791977], [-122.649313, 58.791147], [-122.652253, 58.79062], [-122.655062, 58.789862], [-122.656781, 58.789284], [-122.657624, 58.788938], [-122.653703, 58.785997], [-122.656078, 58.785238], [-122.655644, 58.783593], [-122.659615, 58.77984], [-122.663402, 58.775286], [-122.661484, 58.775229], [-122.661346, 58.774715], [-122.662718, 58.774561], [-122.662132, 58.770478], [-122.663505, 58.770222], [-122.663202, 58.769798], [-122.663922, 58.769712], [-122.667855, 58.767601], [-122.672923, 58.748794], [-122.674017, 58.744144], [-122.649987, 58.744074], [-122.649139, 58.744261], [-122.647773, 58.744311], [-122.643989, 58.743869], [-122.642658, 58.742629], [-122.639105, 58.742339], [-122.637234, 58.741994], [-122.635587, 58.741576], [-122.634121, 58.741108], [-122.632823, 58.740561], [-122.62886, 58.736357], [-122.624226, 58.73784], [-122.619785, 58.740581], [-122.615028, 58.744691], [-122.60993, 58.747101], [-122.603216, 58.747826], [-122.597365, 58.748178], [-122.594029, 58.748705], [-122.592825, 58.749194], [-122.589824, 58.750762], [-122.581562, 58.750644], [-122.476917, 58.74964], [-122.454521, 58.749628], [-122.45364, 58.815611], [-122.425475, 58.816351], [-122.424242, 58.846534], [-122.434144, 58.846019], [-122.504495, 58.844694], [-122.507965, 58.805947], [-122.518085, 58.806139], [-122.523201, 58.806297], [-122.550814, 58.806299], [-122.556047, 58.806315], [-122.556022, 58.806355], [-122.558066, 58.804706], [-122.563472, 58.804173], [-122.569272, 58.805185], [-122.572073, 58.807013], [-122.574424, 58.811442], [-122.576017, 58.815856], [-122.574776, 58.817571], [-122.569547, 58.819544], [-122.563547, 58.822331], [-122.559134, 58.825954], [-122.559178, 58.82831]]]]}, "properties": {"name": "Fort Nelson 2", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Fort Nelson 2", "economic_region_id": "5980", "census_division_code": "5959", "census_subdivision_code": "5959806", "regional_district_aka_census_division": "Northern Rockies"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.905478, 58.357725], [-120.908324, 58.357479], [-120.909123, 58.357889], [-120.908747, 58.357012], [-120.908826, 58.356743], [-120.909339, 58.356499], [-120.91054, 58.35639], [-120.909649, 58.355745], [-120.909559, 58.355469], [-120.909746, 58.355048], [-120.910495, 58.354508], [-120.909955, 58.354179], [-120.90511, 58.354289], [-120.905478, 58.357725]]]]}, "properties": {"name": "Kahntah 3", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Kahntah 3", "economic_region_id": "5980", "census_division_code": "5959", "census_subdivision_code": "5959809", "regional_district_aka_census_division": "Northern Rockies"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.687099, 58.095137], [-122.705243, 58.094038], [-122.705008, 58.091999], [-122.707384, 58.090152], [-122.707282, 58.089248], [-122.710223, 58.089085], [-122.709085, 58.083991], [-122.707619, 58.082351], [-122.703783, 58.068168], [-122.705216, 58.065718], [-122.686108, 58.065459], [-122.687099, 58.095137]]]]}, "properties": {"name": "Prophet River 4", "province": "British Columbia", "rurality": "N/A", "census_year": "2021", "economic_region": "Northeast", "census_subdivision": "Prophet River 4", "economic_region_id": "5980", "census_division_code": "5959", "census_subdivision_code": "5959810", "regional_district_aka_census_division": "Northern Rockies"}}], "xy_coordinate_resolution": 0.000001} \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.RabbitMQ/README.md b/applications/Unity.Tools/Unity.RabbitMQ/README.md index ec86d535d9..d5f3f67084 100644 --- a/applications/Unity.Tools/Unity.RabbitMQ/README.md +++ b/applications/Unity.Tools/Unity.RabbitMQ/README.md @@ -1,61 +1,215 @@ -# Unity RabbitMQ +# RabbitMQ Configuration -This directory contains the setup for RabbitMQ message broker in an OpenShift container. It includes configuration for administrator and client users, as well as virtual hosts for development environments. +This directory contains a Docker Compose configuration for setting up RabbitMQ for local development. -## Contents -- RabbitMQ configuration files -- User and vhost setup instructions +## Overview -See the README for setup and usage instructions. +The setup provides: -Setup of RabbitMQ message broker in an OpenShift container requires an administrator user (`unity-admin`) and two client users each associated with their own virtual hosts (`/dev` and `/dev2`). +- **RabbitMQ Server**: Message broker for Unity applications +- **Management Interface**: Web-based management and monitoring +- **Persistent Storage**: Data persistence across container restarts -## Prerequisites +## Getting Started -- OpenShift cluster access -- RabbitMQ installed on your OpenShift cluster -- RabbitMQ CLI tools (`rabbitmqctl`) +### Basic Usage -## Setup +Start RabbitMQ: -### Creating Virtual Hosts +```bash +docker-compose up +``` + +To run in detached mode: + +```bash +docker-compose up -d +``` + +### Configuration Options + +This setup supports environment variables for customization: + +| Variable | Default | Description | +|----------|---------|-------------| +| `RABBITMQ_DEFAULT_USER` | `admin` | Default RabbitMQ username | +| `RABBITMQ_DEFAULT_PASS` | `admin` | Default RabbitMQ password | + +#### Custom Credentials + +You can set custom RabbitMQ credentials: + +```bash +# PowerShell +$env:RABBITMQ_DEFAULT_USER="myuser"; $env:RABBITMQ_DEFAULT_PASS="mypassword"; docker-compose up + +# Bash/CMD +RABBITMQ_DEFAULT_USER=myuser RABBITMQ_DEFAULT_PASS=mypassword docker-compose up +``` + +Alternatively, create a `.env` file in the same directory: + +```config +RABBITMQ_DEFAULT_USER=myuser +RABBITMQ_DEFAULT_PASS=mypassword +``` + +### Accessing RabbitMQ + +#### Management Interface + +- **URL**: http://localhost:15672 +- **Username**: `admin` (or your custom user) +- **Password**: `admin` (or your custom password) + +#### AMQP Connection + +- **Host**: localhost +- **Port**: 5672 +- **Username**: `admin` (or your custom user) +- **Password**: `admin` (or your custom password) + +### Client Application Configuration + +For Unity applications, configure your `appsettings.json` as follows: + +```json +{ + "RabbitMQ": { + "Host": "localhost", + "Port": 5672, + "Username": "admin", + "Password": "admin", + "VirtualHost": "/", + "ExchangeName": "unity.exchange", + "QueueName": "unity.queue" + } +} +``` + +#### Configuration Examples -To create the virtual hosts `/dev` and `/dev2`, use the following commands: +For local development: -```sh -rabbitmqctl add_vhost /dev -rabbitmqctl add_vhost /dev2 +```json +{ + "RabbitMQ": { + "Host": "localhost", + "Port": 5672, + "Username": "admin", + "Password": "admin" + } +} ``` -### Adding Users and Setting Permissions +For Docker network communication: + +```json +{ + "RabbitMQ": { + "Host": "rabbitmq", + "Port": 5672, + "Username": "admin", + "Password": "admin" + } +} +``` + +For Kubernetes deployment: + +```json +{ + "RabbitMQ": { + "Host": "unity-rabbitmq.namespace.svc.cluster.local", + "Port": 5672, + "Username": "admin", + "Password": "your-secure-password" + } +} +``` + +## Verifying the Setup -Create the administrator user `unity-admin`: +Check RabbitMQ status: -```sh -rabbitmqctl add_user unity-admin 'your_admin_password' -rabbitmqctl set_permissions -p / unity-admin ".*" ".*" ".*" -rabbitmqctl set_user_tags unity-admin administrator +```bash +# Check if RabbitMQ is running +docker ps | grep rabbitmq + +# Check logs +docker-compose logs rabbitmq ``` -Create the client user `unity-rabbitmq-user-dev` for the `/dev` vhost: +Test connection using management API: -```sh -rabbitmqctl add_user unity-rabbitmq-user-dev 'your_dev_password' -rabbitmqctl set_permissions -p /dev unity-rabbitmq-user-dev ".*" ".*" ".*" +```bash +curl -u admin:admin http://localhost:15672/api/overview ``` -Create the client user `unity-rabbitmq-user-dev2` for the `/dev2` vhost: +## Stopping and Cleanup + +Stop RabbitMQ: -```sh -rabbitmqctl add_user unity-rabbitmq-user-dev2 'your_dev2_password' -rabbitmqctl set_permissions -p /dev2 unity-rabbitmq-user-dev2 ".*" ".*" ".*" +```bash +docker-compose down ``` -## Volume Mounts +Remove volumes (this will delete all data): + +```bash +docker-compose down -v +``` + +## Notes & Limitations + +- This setup is designed for local development and testing +- For production deployments, use proper secrets management +- The management interface is exposed on all interfaces (0.0.0.0) +- Data persists in Docker volumes between restarts + +## Troubleshooting + +### Common Issues + +1. **Port Already in Use**: If ports 5672 or 15672 are already in use, modify the port mappings in `docker-compose.yml` -To persist RabbitMQ data a container volume mount is required with backup to offsite S3 storage. +2. **Permission Issues**: Ensure Docker has proper permissions to create volumes -```yaml -volumeMounts: - - mountPath: /var/lib/rabbitmq +3. **Connection Refused**: Check that RabbitMQ has fully started by monitoring the logs: + ```bash + docker-compose logs -f rabbitmq + ``` + +### RabbitMQ Management Commands + +Useful management commands via the web interface or CLI: + +```bash +# List queues +docker exec rabbitmq rabbitmqctl list_queues + +# List exchanges +docker exec rabbitmq rabbitmqctl list_exchanges + +# List users +docker exec rabbitmq rabbitmqctl list_users + +# Add user +docker exec rabbitmq rabbitmqctl add_user newuser newpassword + +# Set permissions +docker exec rabbitmq rabbitmqctl set_permissions -p / newuser ".*" ".*" ".*" ``` + +## Integration with Unity Applications + +This RabbitMQ setup is designed to work seamlessly with Unity applications that require message queuing capabilities. The configuration matches the OpenShift deployment specifications for consistency across development and production environments. + +### Message Patterns + +Common RabbitMQ patterns used in Unity applications: + +- **Work Queues**: Distributing tasks among workers +- **Publish/Subscribe**: Broadcasting messages to multiple consumers +- **Routing**: Selective message routing based on criteria +- **Topics**: Complex routing patterns with wildcards \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.RabbitMQ/docker-compose.yml b/applications/Unity.Tools/Unity.RabbitMQ/docker-compose.yml new file mode 100644 index 0000000000..fe0f05e3ed --- /dev/null +++ b/applications/Unity.Tools/Unity.RabbitMQ/docker-compose.yml @@ -0,0 +1,33 @@ +services: + rabbitmq: + image: rabbitmq:4.2-management + container_name: unity-rabbitmq + hostname: unity-rabbitmq + environment: + - RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER:-admin} + - RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS:-admin} + - RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS=-rabbit log_levels [{connection,error},{default,info}] + ports: + - "5672:5672" # AMQP port + - "15672:15672" # Management interface port + - "15692:15692" # Prometheus metrics port (optional) + - "25672:25672" # Inter-node and CLI tool communication port + volumes: + - rabbitmq-data:/var/lib/rabbitmq + networks: + - rabbitmq-network + healthcheck: + test: ["CMD", "rabbitmq-diagnostics", "ping"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 40s + restart: unless-stopped + +networks: + rabbitmq-network: + driver: bridge + +volumes: + rabbitmq-data: + driver: local \ No newline at end of file diff --git a/applications/Unity.Tools/Unity.RabbitMQ/rabbit@unity-rabbitmq-1-feature_flags b/applications/Unity.Tools/Unity.RabbitMQ/rabbit@unity-rabbitmq-1-feature_flags deleted file mode 100644 index 073f94dde4..0000000000 --- a/applications/Unity.Tools/Unity.RabbitMQ/rabbit@unity-rabbitmq-1-feature_flags +++ /dev/null @@ -1,23 +0,0 @@ -[classic_mirrored_queue_version, - classic_queue_type_delivery_support, - detailed_queues_endpoint, - direct_exchange_routing_v2, - drop_unroutable_metric, - empty_basic_get_metric, - feature_flags_v2, - implicit_default_bindings, - listener_records_in_ets, - maintenance_mode_status, - message_containers, - message_containers_deaths_v2, - quorum_queue, - quorum_queue_non_voters, - restart_streams, - stream_filtering, - stream_queue, - stream_sac_coordinator_unblock_group, - stream_single_active_consumer, - stream_update_config_command, - tracking_records_in_ets, - user_limits, - virtual_host_metadata]. \ No newline at end of file diff --git a/database/.gitkeep b/database/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/database/crunchy-postgres/.helmignore b/database/crunchy-postgres/.helmignore deleted file mode 100644 index 0e8a0eb36f..0000000000 --- a/database/crunchy-postgres/.helmignore +++ /dev/null @@ -1,23 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*.orig -*~ -# Various IDEs -.project -.idea/ -*.tmproj -.vscode/ diff --git a/database/crunchy-postgres/Chart.yaml b/database/crunchy-postgres/Chart.yaml deleted file mode 100644 index ec6ceaee2c..0000000000 --- a/database/crunchy-postgres/Chart.yaml +++ /dev/null @@ -1,28 +0,0 @@ -apiVersion: v2 -name: crunchy-postgres -description: High Availability CrunchyDB Operator Chart - -icon: https://www.postgresql.org/media/img/about/press/elephant.png - -# A chart can be either an 'application' or a 'library' chart. -# -# Application charts are a collection of templates that can be packaged into versioned archives -# to be deployed. -# -# Library charts provide useful utilities or functions for the chart developer. They're included as -# a dependency of application charts to inject those utilities and functions into the rendering -# pipeline. Library charts do not define any templates and therefore cannot be deployed. -type: application - -# This is the chart version. This version number should be incremented each time you make changes -# to the chart and its templates, including the app version. -# Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.4 - -# This is the version number of the application being deployed. This version number should be -# incremented each time you make changes to the application. Versions are not expected to -# follow Semantic Versioning. They should reflect the version the application is using. -# It is recommended to use it with quotes. - -# Crunchy Postgres Operator version -appVersion: "5.0.4" diff --git a/database/crunchy-postgres/README.md b/database/crunchy-postgres/README.md deleted file mode 100644 index 3302e44b01..0000000000 --- a/database/crunchy-postgres/README.md +++ /dev/null @@ -1,202 +0,0 @@ -# Crunchy Postgres chart - -A chart to provision a [Crunchy Postgres](https://www.crunchydata.com/) cluster. - -## Configuration -Apply base configuration from values.yaml and make the necessary overrides in custom-values-example.yaml -```Bash -helm upgrade --install new-hippo-ha . -f values.yaml -f custom-values-example.yaml -``` -### Crunchy Options - -| Parameter | Description | Default | -| ------------------ | ---------------------- | ------------------ | -| `fullnameOverride` | Override release name | `crunchy-postgres` | -| `crunchyImage` | Crunchy Postgres image | | -| `postgresVersion` | Postgres version | `15` | - ---- - -### Instances - -| Parameter | Description | Default | -| ------------------------------------------- | ------------------------------ | ------------------------ | -| `instances.name` | Instance name | `ha` (high availability) | -| `instances.replicas` | Number of replicas | `2` | -| `instances.dataVolumeClaimSpec.storage` | Amount of storage for each PVC | `256Mi` | -| `instances.requests.cpu` | CPU requests | `1m` | -| `instances.requests.memory` | Memory requests | `256Mi` | -| `instances.limits.cpu` | CPU limits | `100m` | -| `instances.limits.memory` | Memory limits | `512Mi` | -| `instances.replicaCertCopy.requests.cpu` | replicaCertCopy CPU requests | `1m` | -| `instances.replicaCertCopy.requests.memory` | replicaCertCopyMemory requests | `32Mi` | -| `instances.replicaCertCopy.limits.cpu` | replicaCertCopyCPU limits | `50m` | -| `instances.replicaCertCopy.limits.memory` | replicaCertCopy Memory limits | `64Mi` | - ---- - -### pgBackRest - Reliable PostgreSQL Backup & Restore - -[pgBackRest site](https://pgbackrest.org/) -[Crunchy pgBackRest docs](https://access.crunchydata.com/documentation/pgbackrest/latest/) - -| Parameter | Description | Default | -| ---------------------------------------------------- | ------------------------------------------------------------- | ---------------------- | -| `pgBackRest.image` | Crunchy pgBackRest | | -| `pgBackRest.retention` | Number of backups/days to keep depending on retentionFullType | `2` | -| `pgBackRest.retentionFullType` | Either 'count' or 'time' | `count` | -| `pgBackRest.repos.schedules.full` | Full backup schedule | `0 8 * * *` | -| `pgBackRest.repos.schedules.incremental` | Incremental backup schedule | `0 0,4,12,16,20 * * *` | -| `pgBackRest.repos.schedules.volume.addessModes` | Access modes | `ReadWriteOnce` | -| `pgBackRest.repos.schedules.volume.storage` | PVC size | `128Mi` | -| `pgBackRest.repos.schedules.volume.storageClassName` | Storage class name modes | `netapp-file-backup` | -| `pgBackRest.repoHost.requests.cpu` | CPU requests | `1m` | -| `pgBackRest.repoHost.requests.memory` | Memory requests | `64Mi` | -| `pgBackRest.repoHost.limits.cpu` | CPU limits | `50m` | -| `pgBackRest.repoHost.limits.memory` | Memory limits | `128Mi` | -| `pgBackRest.sidecars.requests.cpu` | sidecars CPU requests | `1m` | -| `pgBackRest.sidecars.requests.memory` | sidecars Memory requests | `64Mi` | -| `pgBackRest.sidecars.limits.cpu` | sidecars CPU limits | `50m` | -| `pgBackRest.sidecars.limits.memory` | sidecars Memory limits | `128Mi` | -| `pgBackRest.s3.enabled` | Enables the s3 repo backups | `false` | -| `pgBackRest.s3.createS3Secret` | Creates the s3 secret based on key and keySecret | `true` | -| `pgBackRest.s3.s3Secret` | The secret name to be created or read from | `s3-pgbackrest` | -| `pgBackRest.s3.s3Path` | The path inside the bucket where the backups will be saved to, set it to `/` to use the root of the bucket. | `/dbbackup` | -| `pgBackRest.s3.s3UriStyle` | Style of URL to use for S3 communication. [More Info](https://pgbackrest.org/configuration.html#section-repository/option-repo-s3-uri-style) | `path` | -| `pgBackRest.s3.bucket` | The bucket to use for backups | `bucketName` | -| `pgBackRest.s3.endpoint` | The endpoint to use, for example s3.ca-central-1.amazonaws.com | `endpointName` | -| `pgBackRest.s3.region` | The region to use, not necessary if your S3 system does not specify one | `ca-central-1` | -| `pgBackRest.s3.key` | The key to use to access the bucket. MUST BE KEPT SECRET | `s3KeyValue` | -| `pgBackRest.s3.keySecret` | The key secret for the key set above. MUST BE KEPT SECRET | `s3SecretValue` | ---- - -### Patroni - -[Patroni docs](https://patroni.readthedocs.io/en/latest/) -[Crunchy Patroni docs](https://access.crunchydata.com/documentation/patroni/latest/) - -| Parameter | Description | Default | -| ------------------------------------------- | ------------------------------------------------------------------- | --------------------------------- | -| `patroni.postgresql.pg_hba` | pg_hba permissions | `"host all all 0.0.0.0/0 md5"` | -| `crunchyImage` | Crunchy Postgres image | `...crunchy-postgres:ubi8-14.7-0` | -| `patroni.parameters.shared_buffers` | The number of shared memory buffers used by the server | `16MB` | -| `patroni.parameters.wal_buffers` | The number of disk-page buffers in shared memory for WAL | `64KB` | -| `patroni.parameters.min_wal_size` | The minimum size to shrink the WAL to | `32MB` | -| `patroni.parameters.max_wal_size` | Sets the WAL size that triggers a checkpoint | `64MB` | -| `patroni.parameters.max_slot_wal_keep_size` | Sets the maximum WAL size that can be reserved by replication slots | `128MB` | - ---- - -### pgBouncer - -A lightweight connection pooler for PostgreSQL - -[pgBouncer site](https://www.pgbouncer.org/) -[Crunchy Postgres pgBouncer docs](https://access.crunchydata.com/documentation/pgbouncer/latest/) - -| Parameter | Description | Default | -| --------------------------------- | ----------------------- | ------- | -| `proxy.pgBouncer.image` | Crunchy pgBouncer image | | -| `proxy.pgBouncer.replicas` | Number of replicas | `2` | -| `proxy.pgBouncer.requests.cpu` | CPU requests | `1m` | -| `proxy.pgBouncer.requests.memory` | Memory requests | `64Mi` | -| `proxy.pgBouncer.limits.cpu` | CPU limits | `50m` | -| `proxy.pgBouncer.limits.memory` | Memory limits | `128Mi` | - ---- - -## PG Monitor - -[Crunchy Postgres PG Monitor docs](https://access.crunchydata.com/documentation/pgmonitor/latest/) - -| Parameter | Description | Default | -| ------------------------------------ | ---------------------------------------------- | ------- | -| `pgmonitor.enabled` | Enable PG Monitor (currently only PG exporter) | `false` | -| `pgmonitor.exporter.requests.cpu` | PG Monitor CPU requests | `1m` | -| `pgmonitor.exporter.requests.memory` | PG Monitor Memory requests | `64Mi` | -| `pgmonitor.exporter.limits.cpu` | PG Monitor CPU limits | `50m` | -| `pgmonitor.exporter.limits.memory` | PG Monitor Memory limits | `128Mi` | - -#### Postgres Exporter - -A [Prometheus](https://prometheus.io/) exporter for PostgreSQL - -[Postgres Exporter](https://github.com/prometheus-community/postgres_exporter) - -| Parameter | Description | Default | -| ------------------------------------ | ------------------------- | ------- | -| `pgmonitor.exporter.image` | Crunchy PG Exporter image | | -| `pgmonitor.exporter.requests.cpu` | CPU requests | `1m` | -| `pgmonitor.exporter.requests.memory` | Memory requests | `64Mi` | -| `pgmonitor.exporter.limits.cpu` | CPU limits | `50m` | -| `pgmonitor.exporterr.limits.memory` | Memory limits | `128Mi` | - ---- - -## Data Restore CronJob - -This feature allows you to set up a daily CronJob that restores data from a source S3 repository (e.g., from another database instance) into the current PostgreSQL cluster. This is useful for change data capture scenarios where you need to regularly sync data from a source database. The configuration reuses the same structure as `dataSource` and `pgBackRest.s3` for consistency. - -### Configuration - -| Parameter | Description | Default | -| ---------------------------------------------- | ----------------------------------------------------- | ---------------------- | -| `dataRestore.enabled` | Enable the data restore CronJob | `false` | -| `dataRestore.schedule` | Cron schedule for the restore job | `"0 2 * * *"` | -| `dataRestore.image` | pgBackRest image to use for restore | `crunchy-pgbackrest` | -| `dataRestore.secretName` | K8s secret containing S3 credentials (reuse existing)| `s3-pgbackrest` | -| `dataRestore.repo.name` | Repository name (repo1, repo2, etc.) | `repo2` | -| `dataRestore.repo.path` | S3 path prefix | `/habackup` | -| `dataRestore.repo.s3.bucket` | Source S3 bucket name | `bucketName` | -| `dataRestore.repo.s3.endpoint` | S3 endpoint URL | Object store endpoint | -| `dataRestore.repo.s3.region` | S3 region | `not-used` | -| `dataRestore.repo.s3.uriStyle` | S3 URI style (path or host) | `path` | -| `dataRestore.stanza` | pgBackRest stanza name | `db` | -| `dataRestore.target.clusterName` | Target cluster name (defaults to current cluster) | `""` | -| `dataRestore.target.database` | Target database name | `postgres` | -| `dataRestore.resources.requests.cpu` | CPU requests for restore job | `100m` | -| `dataRestore.resources.requests.memory` | Memory requests for restore job | `256Mi` | -| `dataRestore.resources.limits.cpu` | CPU limits for restore job | `500m` | -| `dataRestore.resources.limits.memory` | Memory limits for restore job | `512Mi` | -| `dataRestore.successfulJobsHistoryLimit` | Number of successful jobs to keep in history | `3` | -| `dataRestore.failedJobsHistoryLimit` | Number of failed jobs to keep in history | `1` | -| `dataRestore.restartPolicy` | Pod restart policy for failed jobs | `OnFailure` | -| `dataRestore.additionalArgs` | Additional pgbackrest arguments | `[]` | - -### Usage Example - -The configuration reuses existing S3 secrets and follows the same patterns as `dataSource`: - -```yaml -dataRestore: - enabled: true - schedule: "0 2 * * *" # Daily at 2 AM - # Reuse existing S3 secret from dataSource or pgBackRest.s3 - secretName: "dev-s3-pgbackrest" - repo: - name: repo2 - path: "/habackup-source-database" - s3: - bucket: "source-database-backups" - endpoint: "https://sector.objectstore.gov.bc.ca" - region: "not-used" - uriStyle: "path" - stanza: db - target: - database: "myapp" - additionalArgs: - - "--log-level-console=debug" - - "--process-max=2" -``` - -### Important Notes - -- The restore uses `--delta` mode, which only restores changed files for efficiency -- Reuses existing S3 secrets from `dataSource` or `pgBackRest.s3` configuration -- The job runs with the specified S3 repository as the source -- Ensure the source S3 repository contains valid pgBackRest backups -- The target cluster must be accessible and have proper credentials -- Monitor CronJob logs for restore status and any errors -- Configuration follows the same patterns as `dataSource` for consistency - ---- diff --git a/database/crunchy-postgres/custom-values-example.yaml b/database/crunchy-postgres/custom-values-example.yaml deleted file mode 100644 index f8646e241e..0000000000 --- a/database/crunchy-postgres/custom-values-example.yaml +++ /dev/null @@ -1,72 +0,0 @@ -# Apply base configuration from values.yaml and make the necessary overrides in custom-values-example.yaml -# helm upgrade --install new-hippo-ha . -f values.yaml -f custom-values-example.yaml - -fullnameOverride: new-crunchy-postgres - -labels: - app.kubernetes.io/part-of: new-crunchydb-postgres - -dataSource: - enabled: false - # should have the same name and contain the same keys as the pgbackrest secret - secretName: new-s3-pgbackrest - repo: - path: "/habackup-new" - bucket: "sector-project-new" - endpoint: "https://sector.objectstore.gov.bc.ca" - -pgBackRest: - repos: - schedules: - full: 10 10 * * * - incremental: 10 3,15,19,23 * * * - s3: - enabled: false - createS3Secret: false - # the s3 secret name - s3Secret: new-s3-pgbackrest - # the path start with /, it will be created under bucket if it doesn't exist - s3Path: "/habackup-new" - # bucket specifies the S3 bucket to use, - bucket: "sector-project-new" - # endpoint specifies the S3 endpoint to use. - endpoint: "https://sector.objectstore.gov.bc.ca" - # key is the S3 key. This is stored in a Secret. - # Please DO NOT push this value to GitHub - key: "s3keyValue" - # keySecret is the S3 key secret. This is stored in a Secret. - # Please DO NOT push this value to GitHub - keySecret: "s3SecretValue" - # set the default schedule to avoid conflicts - fullSchedule: 30 11 * * * - incrementalSchedule: 30 3,15,19,23 * * * - -# Data restore cronjob configuration example -# Uncomment and configure to enable daily restore from source database -# Reuses the same structure as dataSource for consistency -# dataRestore: -# enabled: true -# schedule: "0 2 * * *" # Daily at 2 AM -# image: "artifacts.developer.gov.bc.ca/bcgov-docker-local/crunchy-pgbackrest:ubi8-2.47-1" -# secretName: "new-s3-pgbackrest" -# repo: -# name: repo2 -# path: "/habackup-source" -# bucket: "source-database-backups" -# endpoint: "https://sector.objectstore.gov.bc.ca" -# region: "not-used" -# uriStyle: "path" -# stanza: db -# target: -# clusterName: "" -# database: "myapp" -# resources: -# requests: -# cpu: 200m -# memory: 512Mi -# limits: -# cpu: 1000m -# memory: 1Gi -# additionalArgs: -# - "--log-level-console=debug" -# - "--process-max=2" \ No newline at end of file diff --git a/database/crunchy-postgres/templates/PostgresCluster.yaml b/database/crunchy-postgres/templates/PostgresCluster.yaml deleted file mode 100644 index cb6d0f61b0..0000000000 --- a/database/crunchy-postgres/templates/PostgresCluster.yaml +++ /dev/null @@ -1,254 +0,0 @@ -apiVersion: postgres-operator.crunchydata.com/v1beta1 -kind: PostgresCluster -metadata: - name: {{ template "crunchy-postgres.fullname" . }} - labels: - helm.sh/chart: {{ include "crunchy-postgres.chart" . }} - app.kubernetes.io/name: {{ include "crunchy-postgres.name" . }} - app.kubernetes.io/instance: {{ include "crunchy-postgres.fullname" . }} - {{- if .Chart.AppVersion }} - app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} - {{- end }} - app.kubernetes.io/managed-by: {{ .Release.Service }} - {{- range $key, $value := .Values.labels }} - {{ $key }}: {{ $value | quote }} - {{- end }} - app.kubernetes.io/component: "database" - {{- if .Values.annotations }} - annotations: - {{- range $key, $value := .Values.annotations }} - {{ $key }}: {{ $value | quote }} - {{- end }} - {{- end }} -spec: - openshift: {{ .Values.openshift | default false }} - {{- if .Values.shutdown }} - shutdown: {{ .Values.shutdown }} - {{- end }} - metadata: - labels: - helm.sh/chart: {{ include "crunchy-postgres.chart" . }} - app.kubernetes.io/name: {{ include "crunchy-postgres.name" . }} - app.kubernetes.io/instance: {{ include "crunchy-postgres.fullname" . }} - {{- if .Chart.AppVersion }} - app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} - {{- end }} - app.kubernetes.io/managed-by: {{ .Release.Service }} - {{- range $key, $value := .Values.labels }} - {{ $key }}: {{ $value | quote }} - {{- end }} - app.kubernetes.io/component: "database" - {{ if .Values.crunchyImage }} - image: {{ .Values.crunchyImage }} - {{ end }} - imagePullPolicy: {{.Values.imagePullPolicy}} - postgresVersion: {{ .Values.postgresVersion }} - {{ if .Values.postGISVersion }} - postGISVersion: {{ .Values.postGISVersion | quote }} - {{ end }} - postgresVersion: {{ .Values.postgresVersion }} - - {{ if .Values.pgmonitor.enabled }} - - monitoring: - pgmonitor: - # this stuff is for the "exporter" container in the "postgres-cluster-ha" set of pods - exporter: - {{ if .Values.pgmonitor.exporter.image}} - image: {{ .Values.pgmonitor.exporter.image}} - {{ end }} - resources: - requests: - cpu: {{ .Values.pgmonitor.exporter.requests.cpu }} - memory: {{ .Values.pgmonitor.exporter.requests.memory }} - limits: - cpu: {{ .Values.pgmonitor.exporter.limits.cpu }} - memory: {{ .Values.pgmonitor.exporter.limits.memory }} - - {{ end }} - - instances: - - name: {{ .Values.instances.name }} - replicas: {{ .Values.instances.replicas }} - resources: - requests: - cpu: {{ .Values.instances.requests.cpu }} - memory: {{ .Values.instances.requests.memory }} - sidecars: - replicaCertCopy: - resources: - requests: - cpu: {{ .Values.instances.replicaCertCopy.requests.cpu }} - memory: {{ .Values.instances.replicaCertCopy.requests.memory }} - limits: - cpu: {{ .Values.instances.replicaCertCopy.limits.cpu }} - memory: {{ .Values.instances.replicaCertCopy.limits.memory }} - dataVolumeClaimSpec: - accessModes: - - "ReadWriteOnce" - resources: - requests: - storage: {{ .Values.instances.dataVolumeClaimSpec.storage }} - storageClassName: {{ .Values.instances.dataVolumeClaimSpec.storageClassName }} - affinity: - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - weight: 1 - podAffinityTerm: - topologyKey: topology.kubernetes.io/zone - labelSelector: - matchLabels: - postgres-operator.crunchydata.com/cluster: - {{ template "crunchy-postgres.fullname" . }} - postgres-operator.crunchydata.com/instance-set: {{ .Values.instances.name }}-ha - - users: - - name: {{ template "crunchy-postgres.fullname" . }} - databases: - - {{ template "crunchy-postgres.fullname" . }} - options: "CREATEROLE" - - name: postgres - databases: - - {{ template "crunchy-postgres.fullname" . }} - - {{ if .Values.dataSource.enabled }} - dataSource: - pgbackrest: - configuration: - - secret: - name: {{ .Values.dataSource.secretName }} - global: - repo2-s3-uri-style: {{ .Values.dataSource.repo.s3.uriStyle | quote }} - repo2-path: {{ .Values.dataSource.repo.path }} - repo: - name: {{ .Values.dataSource.repo.name }} - s3: - bucket: {{ .Values.dataSource.repo.s3.bucket }} - endpoint: {{ .Values.dataSource.repo.s3.endpoint }} - region: {{ .Values.dataSource.repo.s3.region }} - stanza: {{ .Values.dataSource.stanza }} - {{ end }} - - backups: - pgbackrest: - {{ if .Values.pgBackRest.image }} - image: {{ .Values.pgBackRest.image }} - {{ end }} - {{- if .Values.pgBackRest.s3.enabled }} - configuration: - - secret: - name: {{ .Values.pgBackRest.s3.s3Secret }} - {{- end }} - global: - # Support both PVC and s3 backups - repo1-retention-full: {{ .Values.pgBackRest.retention | quote }} - repo1-retention-full-type: {{ .Values.pgBackRest.retentionFullType }} - repo1-retention-archive: {{ .Values.pgBackRest.retentionArchive | quote }} - repo1-retention-archive-type: {{ .Values.pgBackRest.retentionArchiveType }} - {{- if .Values.pgBackRest.s3.enabled }} - repo2-retention-full: {{ .Values.pgBackRest.retentionS3 | quote }} - repo2-retention-full-type: {{ .Values.pgBackRest.retentionFullTypeS3 }} - repo2-path: {{ .Values.pgBackRest.s3.s3Path }} - repo2-s3-uri-style: {{ .Values.pgBackRest.s3.s3UriStyle }} - {{- end }} - repos: - # hardcoding repo1 until we solution allowing multiple repos - - name: repo1 - schedules: - full: {{ .Values.pgBackRest.repos.schedules.full }} - incremental: {{ .Values.pgBackRest.repos.schedules.incremental }} - volume: - volumeClaimSpec: - accessModes: - - {{ .Values.pgBackRest.repos.volume.accessModes }} - resources: - requests: - storage: {{ .Values.pgBackRest.repos.volume.storage }} - storageClassName: {{ .Values.pgBackRest.repos.volume.storageClassName }} - {{- if .Values.pgBackRest.s3.enabled }} - - name: repo2 - schedules: - full: {{ if .Values.pgBackRest.s3.fullSchedule }}{{ .Values.pgBackRest.s3.fullSchedule }}{{ else }}{{ .Values.pgBackRest.repos.schedules.full }}{{ end }} - incremental: {{ if .Values.pgBackRest.s3.incrementalSchedule }}{{ .Values.pgBackRest.s3.incrementalSchedule }}{{ else }}{{ .Values.pgBackRest.repos.schedules.incremental }}{{ end }} - s3: - bucket: {{ .Values.pgBackRest.s3.bucket }} - endpoint: {{ .Values.pgBackRest.s3.endpoint }} - region: {{ .Values.pgBackRest.s3.region }} - {{- end }} - # this stuff is for the "pgbackrest" container (the only non-init container) in the "postgres-crunchy-repo-host" pod - repoHost: - resources: - requests: - cpu: {{ .Values.pgBackRest.repoHost.requests.cpu }} - memory: {{ .Values.pgBackRest.repoHost.requests.memory }} - limits: - cpu: {{ .Values.pgBackRest.repoHost.limits.cpu }} - memory: {{ .Values.pgBackRest.repoHost.limits.memory }} - sidecars: - # this stuff is for the "pgbackrest" container in the "postgres-crunchy-ha" set of pods - pgbackrest: - resources: - requests: - cpu: {{ .Values.pgBackRest.sidecars.requests.cpu }} - memory: {{ .Values.pgBackRest.sidecars.requests.memory }} - limits: - cpu: {{ .Values.pgBackRest.sidecars.limits.cpu }} - memory: {{ .Values.pgBackRest.sidecars.limits.memory }} - pgbackrestConfig: - resources: - requests: - cpu: {{ .Values.pgBackRest.sidecars.requests.cpu }} - memory: {{ .Values.pgBackRest.sidecars.requests.memory }} - limits: - cpu: {{ .Values.pgBackRest.sidecars.limits.cpu }} - memory: {{ .Values.pgBackRest.sidecars.limits.memory }} - standby: - enabled: {{ .Values.standby.enabled }} - repoName: {{ .Values.standby.repoName }} - - patroni: - dynamicConfiguration: - postgresql: - pg_hba: - {{- range .Values.patroni.postgresql.pg_hba }} - - {{ . | quote }} - {{- end }} - parameters: - shared_buffers: {{ .Values.patroni.postgresql.parameters.shared_buffers }} - wal_buffers: {{ .Values.patroni.postgresql.parameters.wal_buffers }} - min_wal_size: {{ .Values.patroni.postgresql.parameters.min_wal_size }} - max_wal_size: {{ .Values.patroni.postgresql.parameters.max_wal_size }} - max_slot_wal_keep_size: {{ .Values.patroni.postgresql.parameters.max_slot_wal_keep_size }} - temp_file_limit: {{ .Values.patroni.postgresql.parameters.temp_file_limit }} - checkpoint_timeout: {{ .Values.patroni.postgresql.parameters.checkpoint_timeout }} - checkpoint_completion_target: {{ .Values.patroni.postgresql.parameters.checkpoint_completion_target }} - - proxy: - pgBouncer: - config: - global: - client_tls_sslmode: disable - {{ if .Values.proxy.pgBouncer.image }} - image: {{ .Values.proxy.pgBouncer.image }} - {{ end }} - replicas: {{ .Values.proxy.pgBouncer.replicas }} - # these resources are for the "pgbouncer" container in the "postgres-crunchy-ha-pgbouncer" set of pods - # there is a sidecar in these pods which are not mentioned here, but the requests/limits are teeny weeny by default so no worries there. - resources: - requests: - cpu: {{ .Values.proxy.pgBouncer.requests.cpu }} - memory: {{ .Values.proxy.pgBouncer.requests.memory }} - limits: - cpu: {{ .Values.proxy.pgBouncer.limits.cpu }} - memory: {{ .Values.proxy.pgBouncer.limits.memory }} - affinity: - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - weight: 1 - podAffinityTerm: - topologyKey: topology.kubernetes.io/zone - labelSelector: - matchLabels: - postgres-operator.crunchydata.com/cluster: - {{ .Values.instances.name }} - postgres-operator.crunchydata.com/role: pgbouncer diff --git a/database/crunchy-postgres/templates/_helpers.tpl b/database/crunchy-postgres/templates/_helpers.tpl deleted file mode 100644 index 1a758b08ec..0000000000 --- a/database/crunchy-postgres/templates/_helpers.tpl +++ /dev/null @@ -1,66 +0,0 @@ -{{/* -Expand the name of the chart. -*/}} -{{- define "crunchy-postgres.name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} -{{- end }} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -If release name contains chart name it will be used as a full name. -*/}} -{{- define "crunchy-postgres.fullname" -}} -{{- if .Values.fullnameOverride }} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} -{{- else }} -{{- $name := default .Chart.Name .Values.nameOverride }} -{{- if contains $name .Release.Name }} -{{- .Release.Name | trunc 63 | trimSuffix "-" }} -{{- else }} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} -{{- end }} -{{- end }} -{{- end }} - -{{/* -Create chart name and version as used by the chart label. -*/}} -{{- define "crunchy-postgres.chart" -}} -{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} -{{- end }} - -{{/* -Common labels -*/}} -{{- define "crunchy-postgres.labels" -}} -helm.sh/chart: {{ include "crunchy-postgres.chart" . }} -{{ include "crunchy-postgres.selectorLabels" . }} -{{- if .Chart.AppVersion }} -app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} -{{- end }} -app.kubernetes.io/managed-by: {{ .Release.Service }} -{{- range $key, $value := .Values.labels }} -{{ $key }}: {{ $value | quote }} -{{- end }} -app.kubernetes.io/component: "database" -{{- end }} - -{{/* -Selector labels -*/}} -{{- define "crunchy-postgres.selectorLabels" -}} -app.kubernetes.io/name: {{ include "crunchy-postgres.name" . }} -app.kubernetes.io/instance: {{ .Release.Name }} -{{- end }} - -{{/* -Create the name of the service account to use -*/}} -{{- define "crunchy-postgres.serviceAccountName" -}} -{{- if .Values.serviceAccount.create }} -{{- default (include "crunchy-postgres.fullname" .) .Values.serviceAccount.name }} -{{- else }} -{{- default "default" .Values.serviceAccount.name }} -{{- end }} -{{- end }} diff --git a/database/crunchy-postgres/templates/_s3.tpl b/database/crunchy-postgres/templates/_s3.tpl deleted file mode 100644 index 9f71811f76..0000000000 --- a/database/crunchy-postgres/templates/_s3.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{{/* Allow for S3 secret information to be stored in a Secret */}} -{{- define "postgres.s3" }} -[global] -{{- if .s3 }} - {{- if .s3.key }} -repo{{ add .index 1 }}-s3-key={{ .s3.key }} - {{- end }} - {{- if .s3.keySecret }} -repo{{ add .index 1 }}-s3-key-secret={{ .s3.keySecret }} - {{- end }} - {{- if .s3.keyType }} -repo{{ add .index 1 }}-s3-key-type={{ .s3.keyType }} - {{- end }} - {{- if .s3.encryptionPassphrase }} -repo{{ add .index 1 }}-cipher-pass={{ .s3.encryptionPassphrase }} - {{- end }} -{{- end }} -{{ end }} \ No newline at end of file diff --git a/database/crunchy-postgres/templates/data-restore-configmap.yaml b/database/crunchy-postgres/templates/data-restore-configmap.yaml deleted file mode 100644 index d60ad8ea69..0000000000 --- a/database/crunchy-postgres/templates/data-restore-configmap.yaml +++ /dev/null @@ -1,35 +0,0 @@ -{{- if .Values.dataRestore.enabled }} -apiVersion: v1 -kind: ConfigMap -metadata: - name: {{ include "crunchy-postgres.fullname" . }}-data-restore-config - labels: - helm.sh/chart: {{ include "crunchy-postgres.chart" . }} - app.kubernetes.io/name: {{ include "crunchy-postgres.name" . }} - app.kubernetes.io/instance: {{ include "crunchy-postgres.fullname" . }} - {{- if .Chart.AppVersion }} - app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} - {{- end }} - app.kubernetes.io/managed-by: {{ .Release.Service }} - {{- range $key, $value := .Values.labels }} - {{ $key }}: {{ $value | quote }} - {{- end }} - app.kubernetes.io/component: "data-restore-config" -data: - pgbackrest.conf: | - [global] - repo{{ .Values.dataRestore.repo.name | replace "repo" "" }}-type=s3 - repo{{ .Values.dataRestore.repo.name | replace "repo" "" }}-s3-bucket={{ .Values.dataRestore.repo.bucket }} - repo{{ .Values.dataRestore.repo.name | replace "repo" "" }}-s3-endpoint={{ .Values.dataRestore.repo.endpoint }} - repo{{ .Values.dataRestore.repo.name | replace "repo" "" }}-s3-region={{ .Values.dataRestore.repo.s3.region | default "not-used" }} - repo{{ .Values.dataRestore.repo.name | replace "repo" "" }}-path={{ .Values.dataRestore.repo.path }} - repo{{ .Values.dataRestore.repo.name | replace "repo" "" }}-s3-uri-style={{ .Values.dataRestore.repo.s3.uriStyle | default "path" }} - log-level-console=info - log-level-file=debug - - [{{ .Values.dataRestore.stanza }}] - pg1-host={{ if .Values.dataRestore.target.clusterName }}{{ .Values.dataRestore.target.clusterName }}{{ else }}{{ include "crunchy-postgres.fullname" . }}{{ end }}-primary.{{ .Release.Namespace }}.svc.cluster.local - pg1-port=5432 - pg1-user=postgres - pg1-database={{ .Values.dataRestore.target.database }} -{{- end }} diff --git a/database/crunchy-postgres/templates/data-restore-cronjob.yaml b/database/crunchy-postgres/templates/data-restore-cronjob.yaml deleted file mode 100644 index b22a6b2fab..0000000000 --- a/database/crunchy-postgres/templates/data-restore-cronjob.yaml +++ /dev/null @@ -1,190 +0,0 @@ -{{- if .Values.dataRestore.enabled }} -apiVersion: batch/v1 -kind: CronJob -metadata: - name: {{ include "crunchy-postgres.fullname" . }}-data-restore - annotations: - app.openshift.io/connects-to: {{ include "crunchy-postgres.fullname" . }} - app.openshift.io/vcs-ref: main - app.openshift.io/runtime-namespace: {{ .Release.Namespace }} - app.openshift.io/runtime: postgresql - labels: - helm.sh/chart: {{ include "crunchy-postgres.chart" . }} - app.kubernetes.io/name: {{ include "crunchy-postgres.name" . }} - app.kubernetes.io/instance: {{ include "crunchy-postgres.fullname" . }} - {{- if .Chart.AppVersion }} - app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} - {{- end }} - app.kubernetes.io/managed-by: {{ .Release.Service }} - {{- range $key, $value := .Values.labels }} - {{ $key }}: {{ $value | quote }} - {{- end }} - app.kubernetes.io/component: "database" -spec: - schedule: {{ .Values.dataRestore.schedule | quote }} - successfulJobsHistoryLimit: {{ .Values.dataRestore.successfulJobsHistoryLimit }} - failedJobsHistoryLimit: {{ .Values.dataRestore.failedJobsHistoryLimit }} - jobTemplate: - metadata: - labels: - helm.sh/chart: {{ include "crunchy-postgres.chart" . }} - app.kubernetes.io/name: {{ include "crunchy-postgres.name" . }} - app.kubernetes.io/instance: {{ include "crunchy-postgres.fullname" . }} - {{- if .Chart.AppVersion }} - app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} - {{- end }} - app.kubernetes.io/managed-by: {{ .Release.Service }} - {{- range $key, $value := .Values.labels }} - {{ $key }}: {{ $value | quote }} - {{- end }} - app.kubernetes.io/component: "database" - spec: - template: - metadata: - labels: - helm.sh/chart: {{ include "crunchy-postgres.chart" . }} - app.kubernetes.io/name: {{ include "crunchy-postgres.name" . }} - app.kubernetes.io/instance: {{ include "crunchy-postgres.fullname" . }} - {{- if .Chart.AppVersion }} - app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} - {{- end }} - app.kubernetes.io/managed-by: {{ .Release.Service }} - {{- range $key, $value := .Values.labels }} - {{ $key }}: {{ $value | quote }} - {{- end }} - app.kubernetes.io/component: "database" - spec: - restartPolicy: {{ .Values.dataRestore.restartPolicy }} - containers: - - name: pgbackrest-restore - image: {{ .Values.dataRestore.image }} - command: ["/bin/bash"] - args: - - "-c" - - | - set -e - echo "=== Change Data Capture with S3 Restore Started ===" - echo "Timestamp: $(date)" - echo "Namespace: $NAMESPACE" - echo "Pod: $PODNAME" - - # Set connection parameters - LOCAL_DB_HOST="$PGBACKREST_DB_HOST" - LOCAL_DB_PORT="$PGBACKREST_DB_PORT" - - echo "Target Database: $LOCAL_DB_HOST:$LOCAL_DB_PORT" - echo "S3 Bucket: {{ .Values.dataRestore.repo.bucket }}" - echo "S3 Path: {{ .Values.dataRestore.repo.path }}" - echo "Stanza: $PGBACKREST_STANZA" - echo "Repo: $PGBACKREST_REPO" - - # Merge configuration files to create a complete pgbackrest.conf - echo "=== Setting up pgBackRest Configuration ===" - echo "Creating merged configuration file..." - cat /etc/pgbackrest/pgbackrest.conf > /tmp/pgbackrest.conf - echo "" >> /tmp/pgbackrest.conf - echo "# S3 Credentials from secret" >> /tmp/pgbackrest.conf - cat /etc/pgbackrest/s3.conf >> /tmp/pgbackrest.conf - echo "Configuration created successfully" - - # Set the environment variable to use our merged config - export PGBACKREST_CONFIG=/tmp/pgbackrest.conf - - # Step 1: Query S3 for latest backup info (using pgbackrest info) - echo "=== Step 1: Checking S3 Backup Information ===" - echo "Querying S3 for latest backup..." - - # Use pgbackrest info to check what's available in S3 - - echo "Available backups in S3:" - PGBACKREST_INFO_OUTPUT=$(pgbackrest info --stanza="$PGBACKREST_STANZA" --repo="$PGBACKREST_REPO" --log-level-console=info 2>&1) - echo "$PGBACKREST_INFO_OUTPUT" - - if echo "$PGBACKREST_INFO_OUTPUT" | grep -q "status: error"; then - echo "ERROR: pgBackRest reported an error status. Check S3 credentials and permissions." - exit 1 - fi - - if echo "$PGBACKREST_INFO_OUTPUT" | grep -q "SignatureDoesNotMatch"; then - echo "ERROR: S3 authentication failed (SignatureDoesNotMatch). Check your Secret Access Key." - exit 1 - fi - - echo "✓ S3 backup information retrieved" - - # Step 2: Implement change data capture logic - echo "=== Step 2: Change Data Capture Operations ===" - echo "Note: Full restore cannot be performed on a running cluster" - echo "Implementing incremental sync approach instead..." - - # Wait for database to be ready - echo "Checking database connectivity..." - for i in {1..10}; do - if pg_isready -h "$LOCAL_DB_HOST" -p "$LOCAL_DB_PORT" 2>/dev/null; then - echo "✓ Database is ready" - break - fi - echo "Waiting for database... ($i/10)" - sleep 5 - done - - # Simulate CDC operations that would use the S3 backup data - echo "CDC Operations would:" - echo "1. Compare current database state with latest S3 backup" - echo "2. Identify data differences and changes" - echo "3. Apply incremental updates to maintain consistency" - echo "4. Update tracking tables with sync status" - - # Update last sync timestamp - CURRENT_TIMESTAMP=$(date '+%Y-%m-%d %H:%M:%S') - echo "=== Restore and CDC Completed Successfully ===" - echo "Completion timestamp: $CURRENT_TIMESTAMP" - echo "=== Change Data Capture with S3 Restore Completed ===" - env: - - name: NAMESPACE - value: {{ .Release.Namespace | quote }} - - name: PODNAME - valueFrom: - fieldRef: - fieldPath: metadata.name - - name: PGBACKREST_STANZA - value: {{ .Values.dataRestore.stanza | quote }} - - name: PGBACKREST_REPO - value: {{ .Values.dataRestore.repo.name | replace "repo" "" | quote }} - - name: PGBACKREST_DB_HOST - value: {{ if .Values.dataRestore.target.clusterName }}{{ .Values.dataRestore.target.clusterName }}{{ else }}{{ include "crunchy-postgres.fullname" . }}{{ end }}-primary.{{ .Release.Namespace }}.svc.cluster.local - - name: PGBACKREST_DB_PORT - value: "5432" - - name: PGUSER - value: "postgres" - - name: PGDATABASE - value: "postgres" - - name: CDC_JOB_NAME - value: {{ include "crunchy-postgres.fullname" . }}-data-restore - - name: CDC_SCHEDULE - value: {{ .Values.dataRestore.schedule | quote }} - resources: - requests: - cpu: {{ .Values.dataRestore.resources.requests.cpu }} - memory: {{ .Values.dataRestore.resources.requests.memory }} - limits: - cpu: {{ .Values.dataRestore.resources.limits.cpu }} - memory: {{ .Values.dataRestore.resources.limits.memory }} - volumeMounts: - - name: pgbackrest-config - mountPath: /etc/pgbackrest - readOnly: true - - name: tmp - mountPath: /tmp - volumes: - - name: pgbackrest-config - projected: - sources: - - secret: - name: {{ .Values.dataRestore.secretName }} - - configMap: - name: {{ include "crunchy-postgres.fullname" . }}-data-restore-config - optional: true - - name: tmp - emptyDir: {} -{{- end }} diff --git a/database/crunchy-postgres/templates/data-restore-secret.yaml b/database/crunchy-postgres/templates/data-restore-secret.yaml deleted file mode 100644 index e2e2c08032..0000000000 --- a/database/crunchy-postgres/templates/data-restore-secret.yaml +++ /dev/null @@ -1,16 +0,0 @@ -{{- if and .Values.dataRestore.enabled .Values.dataRestore.createS3Secret }} -apiVersion: v1 -kind: Secret -metadata: - name: {{ .Values.dataRestore.secretName | default "dev-s3-restore" }} - namespace: {{ .Release.Namespace }} - labels: - {{- include "crunchy-postgres.labels" . | nindent 4 }} -type: Opaque -stringData: - # Same format as pgBackRest secret - using s3.conf key name to match - s3.conf: | - [global] - repo2-s3-key={{ .Values.dataRestore.s3.key }} - repo2-s3-key-secret={{ .Values.dataRestore.s3.keySecret }} -{{- end }} diff --git a/database/crunchy-postgres/templates/s3Secret.yaml b/database/crunchy-postgres/templates/s3Secret.yaml deleted file mode 100644 index 5c1aef2249..0000000000 --- a/database/crunchy-postgres/templates/s3Secret.yaml +++ /dev/null @@ -1,11 +0,0 @@ -{{- if and .Values.pgBackRest.s3.enabled .Values.pgBackRest.s3.createS3Secret }} -apiVersion: v1 -kind: Secret -metadata: - name: {{ .Values.pgBackRest.s3.s3Secret }} -type: Opaque -data: - {{- $args := dict "s3" .Values.pgBackRest.s3 "index" 1 }} - s3.conf: |- - {{ include "postgres.s3" $args | b64enc }} -{{- end }} \ No newline at end of file diff --git a/database/crunchy-postgres/values.yaml b/database/crunchy-postgres/values.yaml deleted file mode 100644 index 78ccf662cc..0000000000 --- a/database/crunchy-postgres/values.yaml +++ /dev/null @@ -1,196 +0,0 @@ -fullnameOverride: crunchy-postgres - -# Set this to true for OpenShift deployments to avoid incompatible securityContext values -openshift: true - -labels: - app.kubernetes.io/part-of: crunchydb-postgres - -crunchyImage: # it's not necessary to specify an image as the images specified in the Crunchy Postgres Operator will be pulled by default -#crunchyImage: artifacts.developer.gov.bc.ca/bcgov-docker-local/crunchy-postgres-gis:ubi8-15.2-3.3-0 # use this image for POSTGIS -postgresVersion: 16 -#postGISVersion: '3.3' # use this version of POSTGIS. both crunchyImage and this property needs to have valid values for POSTGIS to be enabled. -imagePullPolicy: IfNotPresent - -# enable to bootstrap a standby cluster from backup. Then disable to promote this standby to primary -standby: - enabled: false - # If you want to recover from PVC, use repo1. If you want to recover from S3, use repo2 - repoName: repo1 - -instances: - name: ha # high availability - replicas: 2 - dataVolumeClaimSpec: - storage: 512Mi - storageClassName: netapp-block-standard - requests: - cpu: 10m - memory: 256Mi - replicaCertCopy: - requests: - cpu: 1m - memory: 32Mi - limits: - cpu: 50m - memory: 64Mi - -# If we need to restore the cluster from a backup, we need to set the following values -# assuming restore from repo2 (s3), adjust as needed if your S3 repo is different -dataSource: - enabled: false - # should have the same name and contain the same keys as the pgbackrest secret - secretName: s3-pgbackrest - repo: - name: repo2 - path: "/habackup" - s3: - bucket: "bucketName" - endpoint: "https://sector.objectstore.gov.bc.ca" - region: "not-used" - uriStyle: "path" - stanza: db - -pgBackRest: - image: # it's not necessary to specify an image as the images specified in the Crunchy Postgres Operator will be pulled by default - # If retention-full-type set to 'count' then the oldest backups will expire when the number of backups reach the number defined in retention - # If retention-full-type set to 'time' then the number defined in retention will take that many days worth of full backups before expiration - retention: "2" # Ideally a number to keep backups for 2 working days - retentionS3: "30" # Ideally a larger number such as backups for 30 days - retentionFullType: count # Type of retention for full backups - retentionFullTypeS3: time # Type of retention for full backups - retentionArchive: "2" # Number of backups worth of continuous WAL to retain - retentionArchiveType: full # Type of retention for WAL archives - repos: - schedules: - full: 0 6 * * 0 # Full backup every Sunday at 10:00 PM PST - incremental: 15 */8 * * * # Incremental every 8 hours - volume: - accessModes: "ReadWriteOnce" - storage: 256Mi - storageClassName: netapp-file-backup - repoHost: - requests: - cpu: 1m - memory: 64Mi - limits: - cpu: 50m - memory: 128Mi - sidecars: - requests: - cpu: 1m - memory: 64Mi - limits: - cpu: 50m - memory: 128Mi - s3: - enabled: true - createS3Secret: true - # the s3 secret name - s3Secret: s3-pgbackrest - # the path start with /, it will be created under bucket if it doesn't exist - s3Path: "/habackup" - # s3UriStyle is host or path - s3UriStyle: path - # bucket specifies the S3 bucket to use, - bucket: "bucketName" - # endpoint specifies the S3 endpoint to use. - endpoint: "https://sector.objectstore.gov.bc.ca" - # region specifies the S3 region to use. If your S3 storage system does not - # use "region", fill this in with a random value. - region: "not-used" - # key is the S3 key. This is stored in a Secret. - # Please DO NOT push this value to GitHub - key: "s3keyValue" - # keySecret is the S3 key secret. This is stored in a Secret. - # Please DO NOT push this value to GitHub - keySecret: "s3SecretValue" - # set the default schedule to avoid conflicts - fullSchedule: 30 5 * * 0 # Full backup every Monday at 9:30 PM PST - incrementalSchedule: 45 */8 * * * # Incremental every 8 hours - -patroni: - postgresql: - pg_hba: - - "local all postgres trust" # trust local system socket connections user postgres - - "host all all 127.0.0.1/32 trust" # trust IPv4 local connections includes port forwarding - - "host all all ::1/128 trust" # trust IPv6 local connections includes port forwarding - - "host all all 10.0.0.0/8 md5" # Allow any users to connect to any database from 10.x.x.x private subnet range if password is correctly supplied - parameters: - shared_buffers: 256MB # default is 128MB; a good tuned default for shared_buffers is 25% of the memory allocated to the pod - wal_buffers: "-1" # this can be set to -1 to automatically set as 1/32 of shared_buffers or 64kB, whichever is larger - min_wal_size: 64MB # Sets the minimum size to shrink the WAL files to - max_wal_size: 256MB # default is 1GB make sure the mounted volume is large enough for the logging - max_slot_wal_keep_size: 256MB # default is -1, allowing unlimited wal growth when replicas fall behind - temp_file_limit: 512MB # Prevent temp files from filling PVC - checkpoint_timeout: 15min # Reduce checkpoint frequency - checkpoint_completion_target: 0.9 # Smooth checkpointing - -proxy: - pgBouncer: - image: # it's not necessary to specify an image as the images specified in the Crunchy Postgres Operator will be pulled by default - replicas: 2 - requests: - cpu: 1m - memory: 64Mi - limits: - cpu: 50m - memory: 128Mi - -# Postgres Cluster resource values: -pgmonitor: - enabled: false - exporter: - image: # it's not necessary to specify an image as the images specified in the Crunchy Postgres Operator will be pulled by default - requests: - cpu: 1m - memory: 64Mi - limits: - cpu: 50m - memory: 128Mi - -# Data restore cronjob configuration - reuses dataSource and pgBackRest.s3 patterns -dataRestore: - enabled: false - createS3Secret: true - schedule: "0 2 * * *" # Run every day at 2 AM - image: "artifacts.developer.gov.bc.ca/bcgov-docker-local/crunchy-pgbackrest:ubi8-2.53.1-0" - secretName: s3-pgbackrest - repo: - name: repo2 - path: "/habackup" - bucket: "bucketName" - endpoint: "https://sector.objectstore.gov.bc.ca" - region: "not-used" - uriStyle: "path" - stanza: db - # S3 credentials for data restore (only used if createS3Secret: true) - s3: - # key is the S3 key. This is stored in a Secret. - # Please DO NOT push this value to GitHub - key: "s3keyValue" - # keySecret is the S3 key secret. This is stored in a Secret. - # Please DO NOT push this value to GitHub - keySecret: "s3SecretValue" - # Target database configuration - target: - # The PostgreSQL cluster name to restore into (defaults to current cluster if empty) - clusterName: "" - # Database name to restore - database: "postgres" - # Resource limits for the cronjob - resources: - requests: - cpu: 100m - memory: 256Mi - limits: - cpu: 500m - memory: 512Mi - # Job settings - successfulJobsHistoryLimit: 3 - failedJobsHistoryLimit: 1 - restartPolicy: OnFailure - # Additional pgbackrest arguments - additionalArgs: [] - # - "--log-level-console=debug" - # - "--process-max=2" diff --git a/database/scripts/metabase-setup-database-readonly.sql b/database/scripts/metabase-setup-database-readonly.sql deleted file mode 100644 index daf367a1ba..0000000000 --- a/database/scripts/metabase-setup-database-readonly.sql +++ /dev/null @@ -1,98 +0,0 @@ --- This script ensures that the metabase_readonly role has the necessary CONNECT, USAGE, and SELECT privileges --- on the database, schemas, tables, and sequences. It also sets default privileges for any new tables and sequences --- created in the specified schemas. This should allow the metabase_readonly role to access the schemas and tables --- with read-only permissions -DO $$ -DECLARE - db_name TEXT; - schema TEXT; - schema_list TEXT[] := ARRAY['public', 'Flex', 'Notifications', 'Payments', 'Reporting']; - existing_schemas TEXT := ''; -BEGIN - -- Get the name of the current database - SELECT current_database() INTO db_name; - - -- Grant CONNECT privilege on the database - EXECUTE format('GRANT CONNECT ON DATABASE %I TO metabase_readonly;', db_name); - RAISE NOTICE 'Granted CONNECT on database % to role metabase_readonly', db_name; - - -- List schemas in the current database - RAISE NOTICE 'Listing schemas in the current database %:', db_name; - FOREACH schema IN ARRAY schema_list LOOP - IF EXISTS (SELECT 1 FROM information_schema.schemata s WHERE s.schema_name = schema) THEN - existing_schemas := existing_schemas || schema || ', '; - END IF; - END LOOP; - - -- Remove the trailing comma and space - IF existing_schemas <> '' THEN - existing_schemas := substring(existing_schemas FROM 1 FOR length(existing_schemas) - 2); - END IF; - - RAISE NOTICE 'Schemas in the current database %: %', db_name, existing_schemas; - - -- Grant schema usage and set default privileges for metabase_readonly - FOREACH schema IN ARRAY schema_list LOOP - IF EXISTS (SELECT 1 FROM information_schema.schemata s WHERE s.schema_name = schema) THEN - EXECUTE format('GRANT USAGE ON SCHEMA %I TO metabase_readonly;', schema); - RAISE NOTICE 'Granted USAGE on schema % to role metabase_readonly', schema; - - -- Grant SELECT on all existing tables in the schema - EXECUTE format('GRANT SELECT ON ALL TABLES IN SCHEMA %I TO metabase_readonly;', schema); - RAISE NOTICE 'Granted SELECT on all tables in schema % to role metabase_readonly', schema; - - -- Grant USAGE and SELECT on all sequences in the schema - EXECUTE format('GRANT USAGE, SELECT ON ALL SEQUENCES IN SCHEMA %I TO metabase_readonly;', schema); - RAISE NOTICE 'Granted USAGE and SELECT on all sequences in schema % to role metabase_readonly', schema; - - -- Set default privileges for metabase_readonly - EXECUTE format('ALTER DEFAULT PRIVILEGES IN SCHEMA %I GRANT SELECT ON TABLES TO metabase_readonly;', schema); - EXECUTE format('ALTER DEFAULT PRIVILEGES IN SCHEMA %I GRANT USAGE, SELECT ON SEQUENCES TO metabase_readonly;', schema); - RAISE NOTICE 'Set default privileges for role metabase_readonly in schema %', schema; - ELSE - RAISE NOTICE 'Schema % does not exist in the current database', schema; - END IF; - END LOOP; -END $$; - --- Combined Query to List Schema Privileges and Default Privileges for All Schemas, Sorted by Schema Name -WITH schema_privileges AS ( - SELECT - 'SCHEMA' AS object_type, - nspname AS schema, - pg_catalog.pg_get_userbyid(nspowner) AS owner, - array_agg(acl) AS privileges - FROM - pg_namespace - LEFT JOIN - pg_roles ON pg_roles.oid = pg_namespace.nspowner - LEFT JOIN - unnest(nspacl) AS acl ON true - WHERE - nspname NOT LIKE 'pg_%' AND nspname <> 'information_schema' - GROUP BY - nspname, nspowner -), -default_privileges AS ( - SELECT - CASE defaclobjtype - WHEN 'r' THEN 'TABLE' - WHEN 'S' THEN 'SEQUENCE' - WHEN 'f' THEN 'FUNCTION' - WHEN 'T' THEN 'TYPE' - END AS object_type, - nspname AS schema, - pg_catalog.pg_get_userbyid(defaclrole) AS role, - defaclacl AS privileges - FROM - pg_default_acl - JOIN - pg_namespace ON pg_namespace.oid = pg_default_acl.defaclnamespace - WHERE - defaclobjtype IN ('r', 'S', 'f', 'T') - AND nspname NOT LIKE 'pg_%' AND nspname <> 'information_schema' -) -SELECT * FROM schema_privileges -UNION ALL -SELECT * FROM default_privileges -ORDER BY schema; \ No newline at end of file diff --git a/database/scripts/metabase-setup-database-readwrite.sql b/database/scripts/metabase-setup-database-readwrite.sql deleted file mode 100644 index b7156b55fb..0000000000 --- a/database/scripts/metabase-setup-database-readwrite.sql +++ /dev/null @@ -1,71 +0,0 @@ --- This script ensures that the metabase_readwrite role has the necessary CONNECT, USAGE, SELECT, INSERT, UPDATE, and DELETE privileges --- on the public schema. It also sets default privileges for any new tables and sequences created in the public schema. - -DO $$ -DECLARE - db_name TEXT := 'metabaseuploaddb'; - schema TEXT := 'public'; -BEGIN - -- Grant CONNECT and TEMPORARY on the database to metabase_readwrite - EXECUTE format('GRANT CONNECT, TEMPORARY ON DATABASE %I TO metabase_readwrite;', db_name); - RAISE NOTICE 'Granted CONNECT, TEMPORARY on database % to role metabase_readwrite', db_name; - - -- Grant USAGE and CREATE on the public schema to metabase_readwrite - EXECUTE format('GRANT USAGE, CREATE ON SCHEMA %I TO metabase_readwrite;', schema); - RAISE NOTICE 'Granted USAGE, CREATE on schema % to role metabase_readwrite', schema; - - -- Grant SELECT, INSERT, UPDATE, DELETE on all existing tables in the public schema - EXECUTE format('GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA %I TO metabase_readwrite;', schema); - RAISE NOTICE 'Granted SELECT, INSERT, UPDATE, DELETE on all tables in schema % to role metabase_readwrite', schema; - - -- Grant USAGE and SELECT, UPDATE on all sequences in the public schema - EXECUTE format('GRANT USAGE, SELECT, UPDATE ON ALL SEQUENCES IN SCHEMA %I TO metabase_readwrite;', schema); - RAISE NOTICE 'Granted USAGE, SELECT, UPDATE on all sequences in schema % to role metabase_readwrite', schema; - - -- Set default privileges for metabase_readwrite - EXECUTE format('ALTER DEFAULT PRIVILEGES IN SCHEMA %I GRANT SELECT, INSERT, UPDATE, DELETE ON TABLES TO metabase_readwrite;', schema); - EXECUTE format('ALTER DEFAULT PRIVILEGES IN SCHEMA %I GRANT USAGE, SELECT, UPDATE ON SEQUENCES TO metabase_readwrite;', schema); - RAISE NOTICE 'Set default privileges for role metabase_readwrite in schema %', schema; -END $$; - --- Combined Query to List Schema Privileges and Default Privileges for All Schemas, Sorted by Schema Name -WITH schema_privileges AS ( - SELECT - 'SCHEMA' AS object_type, - nspname AS schema, - pg_catalog.pg_get_userbyid(nspowner) AS owner, - array_agg(acl) AS privileges - FROM - pg_namespace - LEFT JOIN - pg_roles ON pg_roles.oid = pg_namespace.nspowner - LEFT JOIN - unnest(nspacl) AS acl ON true - WHERE - nspname NOT LIKE 'pg_%' AND nspname <> 'information_schema' - GROUP BY - nspname, nspowner -), -default_privileges AS ( - SELECT - CASE defaclobjtype - WHEN 'r' THEN 'TABLE' - WHEN 'S' THEN 'SEQUENCE' - WHEN 'f' THEN 'FUNCTION' - WHEN 'T' THEN 'TYPE' - END AS object_type, - nspname AS schema, - pg_catalog.pg_get_userbyid(defaclrole) AS role, - defaclacl AS privileges - FROM - pg_default_acl - JOIN - pg_namespace ON pg_namespace.oid = pg_default_acl.defaclnamespace - WHERE - defaclobjtype IN ('r', 'S', 'f', 'T') - AND nspname NOT LIKE 'pg_%' AND nspname <> 'information_schema' -) -SELECT * FROM schema_privileges -UNION ALL -SELECT * FROM default_privileges -ORDER BY schema; \ No newline at end of file diff --git a/database/scripts/metabase-setup-metabaseuploaddb.sql b/database/scripts/metabase-setup-metabaseuploaddb.sql deleted file mode 100644 index f1069148ce..0000000000 --- a/database/scripts/metabase-setup-metabaseuploaddb.sql +++ /dev/null @@ -1,76 +0,0 @@ --- This script sets up the metabaseuploaddb with the necessary privileges for the metabase_dbuser role. -DO $$ -DECLARE - db_name TEXT := 'metabaseuploaddb'; -BEGIN - -- Check if the database exists and print the appropriate message - IF NOT EXISTS (SELECT FROM pg_database WHERE datname = db_name) THEN - RAISE NOTICE 'Database does not exist. You need to create it manually: CREATE DATABASE %;', db_name; - ELSE - RAISE NOTICE 'Database "%" already exists.', db_name; - END IF; -END $$; - -DO $$ -DECLARE - db_name TEXT := 'metabaseuploaddb'; - schema TEXT := 'public'; -BEGIN - -- Grant ALL PRIVILEGES on the database to metabase_dbuser - EXECUTE format('GRANT ALL PRIVILEGES ON DATABASE %I TO metabase_dbuser;', db_name); - RAISE NOTICE 'Granted ALL PRIVILEGES on database % to role metabase_dbuser', db_name; - - -- Grant ALL on the public schema to metabase_dbuser - EXECUTE format('GRANT ALL ON SCHEMA %I TO metabase_dbuser;', schema); - RAISE NOTICE 'Granted ALL on schema % to role metabase_dbuser', schema; - - -- Alter the database owner to metabase_dbuser - EXECUTE format('ALTER DATABASE %I OWNER TO metabase_dbuser;', db_name); - RAISE NOTICE 'Changed owner of database % to metabase_dbuser', db_name; - - -- Grant USAGE and CREATE on the public schema to metabase_dbuser - EXECUTE format('GRANT USAGE, CREATE ON SCHEMA %I TO metabase_dbuser;', schema); - RAISE NOTICE 'Granted USAGE, CREATE on schema % to role metabase_dbuser', schema; -END $$; - --- Combined Query to List Schema Privileges and Default Privileges for All Schemas, Sorted by Schema Name -WITH schema_privileges AS ( - SELECT - 'SCHEMA' AS object_type, - nspname AS schema, - pg_catalog.pg_get_userbyid(nspowner) AS owner, - array_agg(acl) AS privileges - FROM - pg_namespace - LEFT JOIN - pg_roles ON pg_roles.oid = pg_namespace.nspowner - LEFT JOIN - unnest(nspacl) AS acl ON true - WHERE - nspname NOT LIKE 'pg_%' AND nspname <> 'information_schema' - GROUP BY - nspname, nspowner -), -default_privileges AS ( - SELECT - CASE defaclobjtype - WHEN 'r' THEN 'TABLE' - WHEN 'S' THEN 'SEQUENCE' - WHEN 'f' THEN 'FUNCTION' - WHEN 'T' THEN 'TYPE' - END AS object_type, - nspname AS schema, - pg_catalog.pg_get_userbyid(defaclrole) AS role, - defaclacl AS privileges - FROM - pg_default_acl - JOIN - pg_namespace ON pg_namespace.oid = pg_default_acl.defaclnamespace - WHERE - defaclobjtype IN ('r', 'S', 'f', 'T') - AND nspname NOT LIKE 'pg_%' AND nspname <> 'information_schema' -) -SELECT * FROM schema_privileges -UNION ALL -SELECT * FROM default_privileges -ORDER BY schema; diff --git a/database/scripts/metabase-setup-readme.md b/database/scripts/metabase-setup-readme.md deleted file mode 100644 index d7ccfdbf58..0000000000 --- a/database/scripts/metabase-setup-readme.md +++ /dev/null @@ -1,110 +0,0 @@ -## Metabase Read-Only Permissions in PostgreSQL - -The script applies **read-only permissions** to the schemas relevant to Metabase reporting (`public`, `Flex`, `Notifications`, `Payments`). It does the following: -1. **Checks if each schema exists** before granting permissions. -2. **Grants USAGE on schemas** to `metabase_readonly`. -3. **Sets default privileges** for `metabase_readonly`: - - **TABLES:** Grants `SELECT` - - **SEQUENCES:** Grants `USAGE, SELECT` -4. **Lists existing privileges** for schemas, tables, and sequences. - ---- - -## Database Setup Roles - -### 1. Running `metabase-setup-roles.sql` - -This script creates the necessary roles and users for Metabase with read-only and read/write permissions. - -#### Steps: -1. **Create Readonly and Read/Write Group Roles**: - - `metabase_readonly` - - `metabase_readwrite` -2. **Create Users and Assign Them to the Correct Roles**: - - `ugm_readonly` - - `ugt_readonly` - - `ugm_uploads` -3. **Cleanup Roles**: - - Drop unnecessary roles. -4. **Verify Role Assignments**: - - List all custom roles excluding default PostgreSQL roles. -5. **Verify Role Memberships**: - - List role memberships excluding default PostgreSQL roles. - -### 2. Applying `metabase_readonly` to All Tenant Databases - -After running `metabase-setup-roles.sql`, apply the `metabase_readonly` role to all tenant databases to ensure read-only access. - -#### Steps: -1. **Grant CONNECT privilege on the database**. -2. **Grant USAGE on schemas**. -3. **Grant SELECT on all existing tables in the schemas**. -4. **Grant USAGE and SELECT on all sequences in the schemas**. -5. **Set default privileges for `metabase_readonly`**: - - **TABLES:** Grants `SELECT` - - **SEQUENCES:** Grants `USAGE, SELECT` - -### 3. Running `metabase-setup-metabaseuploaddb.sql` - -This script sets up the `metabaseuploaddb` with the necessary privileges for the `metabase_dbuser` role. - -#### Steps: -1. **Grant ALL PRIVILEGES on the database to `metabase_dbuser`**. -2. **Grant ALL on the public schema to `metabase_dbuser`**. -3. **Alter the database owner to `metabase_dbuser`**. -4. **Grant USAGE and CREATE on the public schema to `metabase_dbuser`**. - -### 4. Applying `metabase_readwrite` Role - -After setting up the `metabaseuploaddb`, apply the `metabase_readwrite` role to ensure the necessary privileges. - -#### Steps: -1. **Grant CONNECT and TEMPORARY on the database to `metabase_readwrite`**. -2. **Grant USAGE and CREATE on the public schema to `metabase_readwrite`**. -3. **Grant SELECT, INSERT, UPDATE, DELETE on all existing tables in the public schema**. -4. **Grant USAGE and SELECT, UPDATE on all sequences in the public schema**. -5. **Set default privileges for `metabase_readwrite`**: - - **TABLES:** Grants `SELECT, INSERT, UPDATE, DELETE` - - **SEQUENCES:** Grants `USAGE, SELECT, UPDATE` - ---- - -### Explanation of Query Results -Each row in the output represents a privilege assignment for a specific schema and object type (`SCHEMA`, `TABLE`, `SEQUENCE`). - -#### **Key Terms** -- **`object_type`**: Type of object (SCHEMA, TABLE, SEQUENCE). -- **`schema`**: The schema name. -- **`owner`**: The user who owns the schema. -- **`privileges`**: The privileges assigned in `[role=permissions/owner]` format. - - `r` = SELECT (read) - - `U` = USAGE - - `C` = CREATE (for schemas) - - `rU` = SELECT + USAGE (for sequences) - - `UC` = USAGE + CREATE (for schemas) - -#### **Results Breakdown** -| Object Type | Schema | Owner | Privileges | -|-------------|--------------|-----------|------------| -| **TABLE** | `Flex` | `postgres` | `["metabase_readonly=r/postgres"]` → Read-only access on tables | -| **SCHEMA** | `Flex` | `postgres` | `["postgres=UC/postgres", "metabase_readonly=U/postgres"]` → `metabase_readonly` can use this schema, but not create objects. | -| **SEQUENCE**| `Flex` | `postgres` | `["metabase_readonly=rU/postgres"]` → Read and use sequences. | -| **SCHEMA** | `Notifications` | `postgres` | `["postgres=UC/postgres", "metabase_readonly=U/postgres"]` | -| **SEQUENCE**| `Notifications` | `postgres` | `["metabase_readonly=rU/postgres"]` | -| **TABLE** | `Notifications` | `postgres` | `["metabase_readonly=r/postgres"]` | -| **SCHEMA** | `Payments` | `postgres` | `["postgres=UC/postgres", "metabase_readonly=U/postgres"]` | -| **TABLE** | `Payments` | `postgres` | `["metabase_readonly=r/postgres"]` | -| **SEQUENCE**| `Payments` | `postgres` | `["metabase_readonly=rU/postgres"]` | -| **SCHEMA** | `public` | `pg_database_owner` | `["pg_database_owner=UC/pg_database_owner", "=U/pg_database_owner", "metabase_readonly=U/pg_database_owner"]` | -| **TABLE** | `public` | `postgres` | `["metabase_readonly=r/postgres"]` | -| **SEQUENCE**| `public` | `postgres` | `["metabase_readonly=rU/postgres"]` | - ---- - -### **Key Takeaways** -- `metabase_readonly` **has access to all specified schemas** (`USAGE` granted). -- `metabase_readonly` **can query tables (`SELECT`) but cannot modify them**. -- `metabase_readonly` **can use sequences (`USAGE, SELECT`) but cannot modify them**. -- **No `CREATE` privileges were granted**, ensuring Metabase remains read-only. - -This configuration ensures **secure, repeatable, and limited** readonly PostgreSQL access for Metabase reporting. diff --git a/database/scripts/metabase-setup-roles.sql b/database/scripts/metabase-setup-roles.sql deleted file mode 100644 index 3b0797bfac..0000000000 --- a/database/scripts/metabase-setup-roles.sql +++ /dev/null @@ -1,70 +0,0 @@ --- 1. Create Readonly and Read/Write Group Roles -DO $$ -BEGIN - IF NOT EXISTS (SELECT 1 FROM pg_roles WHERE rolname = 'metabase_readonly') THEN - CREATE ROLE metabase_readonly NOLOGIN; - END IF; - - IF NOT EXISTS (SELECT 1 FROM pg_roles WHERE rolname = 'metabase_readwrite') THEN - CREATE ROLE metabase_readwrite NOLOGIN; - END IF; -END $$; - --- 2. Create Users and Assign Them to the Correct Roles -DO $$ -DECLARE - ugm_readonly_password TEXT := (SELECT string_agg(substring('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789' FROM floor(random() * 62 + 1)::int FOR 1), '') FROM generate_series(1, 16)); - ugt_readonly_password TEXT := (SELECT string_agg(substring('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789' FROM floor(random() * 62 + 1)::int FOR 1), '') FROM generate_series(1, 16)); - ugm_uploads_password TEXT := (SELECT string_agg(substring('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789' FROM floor(random() * 62 + 1)::int FOR 1), '') FROM generate_series(1, 16)); -BEGIN - IF NOT EXISTS (SELECT 1 FROM pg_roles WHERE rolname = 'ugm_readonly') THEN - EXECUTE format('CREATE ROLE ugm_readonly WITH LOGIN PASSWORD %L INHERIT', ugm_readonly_password); - GRANT metabase_readonly TO ugm_readonly; - RAISE NOTICE 'Role ugm_readonly created and assigned to metabase_readonly successfully. Password: %', ugm_readonly_password; - ELSE - RAISE NOTICE 'Role ugm_readonly already exists.'; - END IF; - - IF NOT EXISTS (SELECT 1 FROM pg_roles WHERE rolname = 'ugt_readonly') THEN - EXECUTE format('CREATE ROLE ugt_readonly WITH LOGIN PASSWORD %L INHERIT', ugt_readonly_password); - GRANT metabase_readonly TO ugt_readonly; - RAISE NOTICE 'Role ugt_readonly created and assigned to metabase_readonly successfully. Password: %', ugt_readonly_password; - ELSE - RAISE NOTICE 'Role ugt_readonly already exists.'; - END IF; - - IF NOT EXISTS (SELECT 1 FROM pg_roles WHERE rolname = 'ugm_uploads') THEN - EXECUTE format('CREATE ROLE ugm_uploads WITH LOGIN PASSWORD %L INHERIT', ugm_uploads_password); - GRANT metabase_readwrite TO ugm_uploads; - RAISE NOTICE 'Role ugm_uploads created and assigned to metabase_readwrite successfully. Password: %', ugm_uploads_password; - ELSE - RAISE NOTICE 'Role ugm_uploads already exists.'; - END IF; -END $$; - --- 3. Cleanup Roles -DO $$ -BEGIN - -- Role: metabase_grant_name - DROP ROLE IF EXISTS metabase_grant_name; - -- Role: grant_name - DROP ROLE IF EXISTS grant_name; - -- Role: pg_read_all_data - REVOKE pg_read_all_data FROM metabase_readonly; - REVOKE pg_write_all_data FROM metabase_readwrite; -END $$; - --- 4. Verify Role Assignments --- List all custom roles excluding default PostgreSQL roles -SELECT rolname, rolsuper, rolinherit, rolcreaterole, rolcreatedb, rolcanlogin, rolreplication, rolbypassrls -FROM pg_roles -WHERE rolname NOT LIKE 'pg_%'; - --- 5. Verify Role Memberships: --- List role memberships excluding default PostgreSQL roles -SELECT pg_roles.rolname AS role_name, member.rolname AS member_name -FROM pg_auth_members -JOIN pg_roles ON pg_roles.oid = pg_auth_members.roleid -JOIN pg_roles AS member ON member.oid = pg_auth_members.member -WHERE pg_roles.rolname NOT LIKE 'pg_%' -AND member.rolname NOT LIKE 'pg_%'; \ No newline at end of file diff --git a/database/scripts/unitydb-census-subdivision-script.sql b/database/scripts/unitydb-census-subdivision-script.sql deleted file mode 100644 index ee74246b04..0000000000 --- a/database/scripts/unitydb-census-subdivision-script.sql +++ /dev/null @@ -1,19 +0,0 @@ - -DO $$ -DECLARE - json_data jsonb := '[{"CensusSubdivisionName":"Ahahswinis 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Alberni 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Alberni-Clayoquot A","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Alberni-Clayoquot B","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Alberni-Clayoquot C","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Alberni-Clayoquot D","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Alberni-Clayoquot E","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Alberni-Clayoquot F","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Anacla 12","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Clakamucus 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Elhlateese 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Esowista 3","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Hesquiat 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Ittatsoo 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Klehkoot 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Macoah 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Marktosis 15","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Numukamis 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Opitsat 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Port Alberni","Type":"City","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Refuge Cove 6","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Sachsa 4","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Tin Wis 11","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Tofino","Type":"District municipality","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Tsahaheh 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Ucluelet","Type":"District municipality","RegionalDistrictCode":"4"},{"CensusSubdivisionName":"Babine 16","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Babine 25","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Babine 6","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Babine Lake 21B","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Binche 2","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Bulkley-Nechako A","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Bulkley-Nechako B","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Bulkley-Nechako C","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Bulkley-Nechako D","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Bulkley-Nechako E","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Bulkley-Nechako F","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Bulkley-Nechako G","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Burns Lake","Type":"Village","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Burns Lake 18","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Cheslatta 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Duncan Lake 2","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Dzitline Lee 9","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Fort St. James","Type":"District municipality","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Francois Lake 7","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Fraser Lake","Type":"Village","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Granisle","Type":"Village","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Houston","Type":"District municipality","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Jean Baptiste 28","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Laketown 3","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Mission Lands 17","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Nak''azdli","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Nautley (Fort Fraser) 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Nedoats 11","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Noonla 6","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"North Tacla Lake","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Omineca 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Palling 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Poison Creek 17A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Seaspunkut 4","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Skins Lake 16A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Skins Lake 16B","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Smithers","Type":"Town","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Sowchea 3","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Stellaquo (Stella) 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Stony Creek 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Tache 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Tacla Lake (Ferry Landing) 9","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Tadinlay 15","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Tatla West 11","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Tatla''t East 2","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Telkwa","Type":"Village","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Uncha Lake 13A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Vanderhoof","Type":"District municipality","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Williams Prairie Meadow 1A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Woyenne 27","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Ye Koo Che 3","Type":"Indian reserve","RegionalDistrictCode":"26"},{"CensusSubdivisionName":"Becher Bay 1","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Central Saanich","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Cole Bay 3","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Colwood","Type":"City","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"East Saanich 2","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Esquimalt - District municipality","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Esquimalt - Indian reserve","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Galiano Island 9","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Gordon River 2","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Highlands","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Juan de Fuca (Part 1)","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Juan de Fuca (Part 2)","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Langford","Type":"City","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Metchosin","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"New Songhees 1A","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"North Saanich","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Oak Bay","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Saanich","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Saltspring Island","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Sidney","Type":"Town","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Sooke","Type":"District municipality","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"South Saanich 1","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Southern Gulf Islands","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"T''Sou-ke","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Union Bay 4","Type":"Indian reserve","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Victoria","Type":"City","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"View Royal","Type":"Town","RegionalDistrictCode":"1"},{"CensusSubdivisionName":"Agats Meadow 8","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Alexandria","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Alexis Creek 14","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Alexis Creek 16","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Alexis Creek 21","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Alexis Creek 34","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Alkali Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Alkali Lake 4A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Anahim''s Flat 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Anahim''s Meadow","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Baezaeko River 27","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Baptiste Meadow 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Betty Creek 18","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Canim Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Canim Lake 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Canim Lake 4","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Canoe Creek 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo A","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo B","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo C","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo D","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo E","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo F","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo G","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo H","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo I","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo J","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo K","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Cariboo L","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Charley Boy''s Meadow 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Chilco Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Chilco Lake 1A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Coglistiko River 29","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Deep Creek 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Dog Creek 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Dog Creek 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Dragon Lake 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Euchinico Creek 17","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Fishtrap 19","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Garden","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Johny Sticks 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Kluskus 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Lezbye 6","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Little Springs","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Lohbiee 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Michel Gardens 36","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Nazco 20","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"One Hundred Mile House","Type":"District municipality","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Puntzi Lake 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Quesnel","Type":"City","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Quesnel 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Redstone Flat 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Salmon River Meadow 7","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Sandy Harry 4","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Soda Creek 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Squinas 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Stone 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Sundayman''s Meadow 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Swan Lake 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Tanakut 4","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Thomas Squinas Ranch 2A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Toosey 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Towdystan Lake 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Trout Lake Alec 16","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Ulkatcho 13","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Ulkatcho 14A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Wells","Type":"District municipality","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Williams Lake","Type":"City","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Williams Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Windy Mouth 7","Type":"Indian reserve","RegionalDistrictCode":"22"},{"CensusSubdivisionName":"Bella Bella 1","Type":"Indian reserve","RegionalDistrictCode":"9"},{"CensusSubdivisionName":"Bella Coola 1","Type":"Indian reserve","RegionalDistrictCode":"9"},{"CensusSubdivisionName":"Central Coast A","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"CensusSubdivisionName":"Central Coast C","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"CensusSubdivisionName":"Central Coast D","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"CensusSubdivisionName":"Central Coast E","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"CensusSubdivisionName":"Katit 1","Type":"Indian reserve","RegionalDistrictCode":"9"},{"CensusSubdivisionName":"Castlegar","Type":"City","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay A","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay B","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay C","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay D","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay E","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay F","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay G","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay H","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay I","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay J","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Kootenay K","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Creston","Type":"Town","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Creston 1","Type":"Indian reserve","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Kaslo","Type":"Village","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Nakusp","Type":"Village","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Nelson","Type":"City","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"New Denver","Type":"Village","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Salmo","Type":"Village","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Silverton","Type":"Village","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Slocan","Type":"Village","RegionalDistrictCode":"20"},{"CensusSubdivisionName":"Central Okanagan","Type":"Regional district electoral area","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Central Okanagan West","Type":"Regional district electoral area","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Duck Lake 7","Type":"Indian reserve","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Kelowna","Type":"City","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Lake Country","Type":"District municipality","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Peachland","Type":"District municipality","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Tsinstikeptum 10","Type":"Indian reserve","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Tsinstikeptum 9","Type":"Indian reserve","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"West Kelowna","Type":"City","RegionalDistrictCode":"16"},{"CensusSubdivisionName":"Chum Creek 2","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Columbia-Shuswap A","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Columbia-Shuswap B","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Columbia-Shuswap C","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Columbia-Shuswap D","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Columbia-Shuswap E","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Columbia-Shuswap F","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Golden","Type":"Town","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Hustalen 1","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"North Bay 5","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Okanagan (Part) 1 - Thompson/Okanagan","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Quaaout 1","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Revelstoke","Type":"City","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Salmon Arm","Type":"City","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Salmon River 1","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Scotch Creek 4","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Sicamous","Type":"District municipality","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Switsemalph","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Switsemalph 3","Type":"Indian reserve","RegionalDistrictCode":"18"},{"CensusSubdivisionName":"Comox","Type":"Town","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Comox 1","Type":"Indian reserve","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Comox Valley A","Type":"Regional district electoral area","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Comox Valley B (Lazo North)","Type":"Regional district electoral area","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Comox Valley C (Puntledge - Black Creek)","Type":"Regional district electoral area","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Courtenay","Type":"City","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Cumberland","Type":"Village","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Pentledge 2","Type":"Indian reserve","RegionalDistrictCode":"6"},{"CensusSubdivisionName":"Chemainus 13","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Lake","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley A","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley B","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley C","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley D","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley E","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley F","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley G","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley H","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Cowichan Valley I","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Duncan","Type":"City","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Est-Patrolas 4","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Halalt 2","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Kil-pah-las 3","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Ladysmith","Type":"Town","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Lake Cowichan","Type":"Town","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Lyacksun 3","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Malachan 11","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Malahat 11","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"North Cowichan","Type":"District municipality","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Oyster Bay 12","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Penelakut Island 7","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Portier Pass 5","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Shingle Point 4","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Squaw-Hay-One 11","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Theik 2","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Tsussie 6","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Tzart-Lam 5","Type":"Indian reserve","RegionalDistrictCode":"2"},{"CensusSubdivisionName":"Canal Flats","Type":"Village","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Cassimayooks (Mayook) 5","Type":"Indian reserve","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Columbia Lake 3","Type":"Indian reserve","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Cranbrook","Type":"City","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"East Kootenay A","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"East Kootenay B","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"East Kootenay C","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"East Kootenay E","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"East Kootenay F","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"East Kootenay G","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Elkford","Type":"District municipality","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Fernie","Type":"City","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Invermere","Type":"District municipality","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Isidore''s Ranch 4","Type":"Indian reserve","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Kimberley","Type":"City","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Kootenay 1","Type":"Indian reserve","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Radium Hot Springs","Type":"Village","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Shuswap","Type":"Indian reserve","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Sparwood","Type":"District municipality","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"St. Mary''s","Type":"Indian reserve","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Tobacco Plains 2","Type":"Indian reserve","RegionalDistrictCode":"19"},{"CensusSubdivisionName":"Abbotsford","Type":"City","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Aitchelitch 9","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Albert Flat 5","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Boothroyd 13","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Boston Bar 1A","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Bucktum 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Chawathil 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Cheam 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Chehalis 5","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Chilliwack","Type":"City","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Douglas 8","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley A","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley B","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley C","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley D","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley E","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley F","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley G","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fraser Valley H","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Harrison Hot Springs","Type":"Village","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Holachten 8","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Hope","Type":"District municipality","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Inkahtsaph 6","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Kahmoose 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Kent","Type":"District municipality","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Kopchitchin 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Kwawkwawapilt 6","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Lakahahmen 11","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Langley 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Lukseetsissum 9","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Matsqui Main 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Mission","Type":"District municipality","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Ohamil 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Paqulh","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Peters 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Popkum 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Puckatholetchin 11","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Q''alatkú7em","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Ruby Creek 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Sachteen","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Saddle Rock 9","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Schelowat 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Schkam 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Scowlitz 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Seabird Island","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Skawahlook 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Skookumchuck 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Skowkale","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Skwah 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Skwali 3","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Skway 5","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Skweahm 10","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Soowahlie 14","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Speyum 3","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Spuzzum 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Squawkum Creek 3","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Squiaala","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Stullawheets 8","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Tipella 7","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Tseatah 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Tuckkwiowhum 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Tzeachten 13","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Upper Sumas 6","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Yakweakwioose 12","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Yale Town 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"CensusSubdivisionName":"Fort George 2","Type":"Indian reserve","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Fraser-Fort George A","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Fraser-Fort George C","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Fraser-Fort George D","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Fraser-Fort George E","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Fraser-Fort George F","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Fraser-Fort George G","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Fraser-Fort George H","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Mackenzie","Type":"District municipality","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"McBride","Type":"Village","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"McLeod Lake 1","Type":"Indian reserve","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Prince George","Type":"City","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Valemount","Type":"Village","RegionalDistrictCode":"23"},{"CensusSubdivisionName":"Anmore","Type":"Village","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Barnston Island 3","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Belcarra","Type":"Village","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Bowen Island","Type":"Island municipality","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Burnaby","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Burrard Inlet 3","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Capilano 5","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Coquitlam","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Coquitlam 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Coquitlam 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Delta","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Katzie 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Katzie 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Langley - City","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Langley - District municipality","Type":"District municipality","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Lions Bay","Type":"Village","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Maple Ridge","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Matsqui 4","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"McMillan Island 6","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Metro Vancouver A","Type":"Regional district electoral area","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Mission 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Musqueam 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Musqueam 4","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"New Westminster","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"North Vancouver - City","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"North Vancouver - District municipality","Type":"District municipality","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Pitt Meadows","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Port Coquitlam","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Port Moody","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Richmond","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Semiahmoo","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Seymour Creek 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Surrey","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Tsawwassen","Type":"Tsawwassen Lands","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Vancouver","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"West Vancouver","Type":"District municipality","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"White Rock","Type":"City","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Whonnock 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"CensusSubdivisionName":"Babine 17","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Bulkley River 19","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Coryatsaqua (Moricetown) 2","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Dease Lake 9","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Gitanmaax 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Gitanyow 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Gitsegukla 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Gitwangak 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Guhthe Tah 12","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Hagwilget 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Hazelton","Type":"Village","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Iskut 6","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kispiox 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitamaat 2","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitasoo 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat","Type":"District municipality","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat-Stikine A","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat-Stikine B","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat-Stikine C (Part 1)","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat-Stikine C (Part 2)","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat-Stikine D","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat-Stikine E","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitimat-Stikine F","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitselas 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kitsumkaylum 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kshish 4","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Kulspai 6","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Moricetown 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"New Hazelton","Type":"District municipality","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Nisga''a","Type":"Nisga''a land","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Sik-e-dakh 2","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Stewart","Type":"District municipality","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Tahltan 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Telegraph Creek","Type":"Indian reserve","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Terrace","Type":"City","RegionalDistrictCode":"25"},{"CensusSubdivisionName":"Fruitvale","Type":"Village","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Grand Forks","Type":"City","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Greenwood","Type":"City","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Kootenay Boundary A","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Kootenay Boundary B / Lower Columbia-Old-Glory","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Kootenay Boundary C / Christina Lake","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Kootenay Boundary D / Rural Grand Forks","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Kootenay Boundary E / West Boundary","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Midway","Type":"Village","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Montrose","Type":"Village","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Rossland","Type":"City","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Trail","Type":"City","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Warfield","Type":"Village","RegionalDistrictCode":"21"},{"CensusSubdivisionName":"Alert Bay - Indian reserve","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Alert Bay - Village","Type":"Village","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Dead Point 5","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Fort Rupert 1","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Gwayasdums 1","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Hope Island 1","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Hopetown 10A","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Kippase 2","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Mount Waddington A","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Mount Waddington B","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Mount Waddington C","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Mount Waddington D","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Nimpkish 2","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Port Alice","Type":"Village","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Port Hardy","Type":"District municipality","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Port McNeill","Type":"Town","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Quaee 7","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Quatsino Subdivision 18","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Thomas Point 5","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Thomas Point 5A","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Tsulquate 4","Type":"Indian reserve","RegionalDistrictCode":"8"},{"CensusSubdivisionName":"Lantzville","Type":"District municipality","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo","Type":"City","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo A","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo B","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo C","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo E","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo F","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo G","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo H","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo River","Type":"Indian reserve","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanaimo Town 1","Type":"Indian reserve","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Nanoose","Type":"Indian reserve","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Parksville","Type":"City","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Qualicum","Type":"Indian reserve","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Qualicum Beach","Type":"Town","RegionalDistrictCode":"3"},{"CensusSubdivisionName":"Armstrong","Type":"City","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Coldstream","Type":"District municipality","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Enderby","Type":"City","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Enderby 2","Type":"Indian reserve","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Harris 3","Type":"Indian reserve","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Lumby","Type":"Village","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"North Okanagan B","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"North Okanagan C","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"North Okanagan D","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"North Okanagan E","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"North Okanagan F","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Okanagan (Part) 1 - North Okanagan","Type":"Indian reserve","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Priest''s Valley 6","Type":"Indian reserve","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Spallumcheen","Type":"District municipality","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Vernon","Type":"City","RegionalDistrictCode":"17"},{"CensusSubdivisionName":"Fontas 1","Type":"Indian reserve","RegionalDistrictCode":"29"},{"CensusSubdivisionName":"Fort Nelson 2","Type":"Indian reserve","RegionalDistrictCode":"29"},{"CensusSubdivisionName":"Kahntah 3","Type":"Indian reserve","RegionalDistrictCode":"29"},{"CensusSubdivisionName":"Northern Rockies","Type":"Regional municipality","RegionalDistrictCode":"29"},{"CensusSubdivisionName":"Prophet River 4","Type":"Indian reserve","RegionalDistrictCode":"29"},{"CensusSubdivisionName":"Alexis 9","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Ashnola 10","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Blind Creek 6","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Chopaka 7 & 8","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Chuchuwayha 2","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Keremeos","Type":"Village","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Lower Similkameen 2","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Lulu 5","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen A","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen B","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen C","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen D","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen E","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen F","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen G","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen H","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Okanagan-Similkameen I","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Oliver","Type":"Town","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Osoyoos","Type":"Town","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Osoyoos 1","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Penticton","Type":"City","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Penticton 1","Type":"Indian reserve","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Princeton","Type":"Town","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Summerland","Type":"District municipality","RegionalDistrictCode":"14"},{"CensusSubdivisionName":"Blueberry River 205","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Chetwynd","Type":"District municipality","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Dawson Creek","Type":"City","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Doig River 206","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"East Moberly Lake 169","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Finlay River 6","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Fort St. John","Type":"City","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Fort Ware 1","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Halfway River 168","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Hudson''s Hope","Type":"District municipality","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Ingenika Point","Type":"Indian settlement","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Mesilinka 7","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Peace River B","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Peace River C","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Peace River D","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Peace River E","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Pouce Coupe","Type":"Village","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Taylor","Type":"District municipality","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Tumbler Ridge","Type":"District municipality","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"West Moberly Lake 168A","Type":"Indian reserve","RegionalDistrictCode":"28"},{"CensusSubdivisionName":"Powell River","Type":"City","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"qathet A","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"qathet B","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"qathet C","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"qathet D","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"qathet E","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"Sechelt (Part) - qathet","Type":"Indian government district","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"Sliammon 1","Type":"Tla''amin Lands","RegionalDistrictCode":"7"},{"CensusSubdivisionName":"Dolphin Island 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Kulkayu (Hartley Bay) 4","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Kulkayu (Hartley Bay) 4A","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Lax Kw''alaams 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Masset","Type":"Village","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Masset 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"North Coast A","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"North Coast C","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"North Coast D","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"North Coast E","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Port Clements","Type":"Village","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Port Edward","Type":"District municipality","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Prince Rupert","Type":"City","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Queen Charlotte","Type":"Village","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"S1/2 Tsimpsean 2","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Skidegate 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Tlaa Gaa Aawtlaas 28","Type":"Indian reserve","RegionalDistrictCode":"24"},{"CensusSubdivisionName":"Bridge River 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Cayoosh Creek 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Cheakamus 11","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Chilhil 6","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 10","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 11","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 12","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 1B","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 1D","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 3","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain 3A","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Fountain Creek 8","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Kowtain 17","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Lillooet","Type":"District municipality","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Lillooet 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"McCartney''s Flat 4","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Mission 5","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Mount Currie","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Necait 6","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Nequatque","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Nesikep 6","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Nesuch 3","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Pashilqua 2","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Pavilion 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Pemberton","Type":"Village","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Seaichem 16","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Seton Lake 5","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Slosh 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Squamish","Type":"District municipality","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Squamish-Lillooet A","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Squamish-Lillooet B","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Squamish-Lillooet C","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Squamish-Lillooet D","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Stawamus 24","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Towinock 2","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Waiwakum 14","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Whistler","Type":"District municipality","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Yekwaupsum 18","Type":"Indian reserve","RegionalDistrictCode":"13"},{"CensusSubdivisionName":"Dease River 1","Type":"Indian reserve","RegionalDistrictCode":"27"},{"CensusSubdivisionName":"Five Mile Point 3","Type":"Indian reserve","RegionalDistrictCode":"27"},{"CensusSubdivisionName":"Good Hope Lake","Type":"Indian settlement","RegionalDistrictCode":"27"},{"CensusSubdivisionName":"Liard River 3","Type":"Indian reserve","RegionalDistrictCode":"27"},{"CensusSubdivisionName":"Lower Post","Type":"Indian settlement","RegionalDistrictCode":"27"},{"CensusSubdivisionName":"Stikine Region","Type":"Regional district electoral area","RegionalDistrictCode":"27"},{"CensusSubdivisionName":"Unnamed 10","Type":"Indian reserve","RegionalDistrictCode":"27"},{"CensusSubdivisionName":"Ahaminaquus 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Campbell River","Type":"City","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Campbell River 11","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Cape Mudge 10","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Chenahkint 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Ehatis 11","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Gold River","Type":"Village","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Homalco 9","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Houpsitas 6","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Nenagwas 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Oclucje 7","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Quinsam 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Sayward","Type":"Village","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Squirrel Cove 8","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Strathcona A","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Strathcona B","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Strathcona C","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Strathcona D (Oyster Bay - Buttle Lake)","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Tahsis","Type":"Village","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Tork 7","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Tsa Xana 18","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Village Island 1","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Yuquot 1","Type":"Indian reserve","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Zeballos","Type":"Village","RegionalDistrictCode":"5"},{"CensusSubdivisionName":"Chekwelp 26","Type":"Indian reserve","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Gibsons","Type":"Town","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Sechelt","Type":"District municipality","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Sechelt (Part) - Sunshine Coast","Type":"Indian government district","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Sunshine Coast A","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Sunshine Coast B","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Sunshine Coast D","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Sunshine Coast E","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"Sunshine Coast F","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"CensusSubdivisionName":"105 Mile Post 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Ashcroft","Type":"Village","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Ashcroft 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Barriere","Type":"District municipality","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Basque 18","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Bonaparte 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Boothroyd 8A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Cache Creek","Type":"Village","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Canoe Creek 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Canoe Creek 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Chase","Type":"Village","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Chuchhraischin","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Clearwater","Type":"District municipality","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Clinton","Type":"Village","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Coldwater 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Douglas Lake 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Entlqwekkinh 19","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Halhalaeden","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Hamilton Creek 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"High Bar 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Inkluckcheen","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Inklyuhkinatko 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Joeyaska 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Kamloops","Type":"City","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Kamloops 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Kanaka Bar","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Kitzowit 20","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Klahkamich 17","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Kleetlekut 22","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Klickkumcheen 18","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Kloklowuck 7","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Kumcheen 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Logan Lake","Type":"District municipality","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Louis Creek 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Lower Hat Creek 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Lytton","Type":"Village","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Lytton 4A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Lytton 4E","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Lytton 9A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Lytton 9B","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Marble Canyon 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Merritt","Type":"City","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nekalliston 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nekliptum 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Neskonlith","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nickel Palm 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nickeyeah 25","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nicola Lake 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nicola Mameet 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nicomen 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nkaih 10","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nohomeen 23","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nooaitch 10","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"North Thompson 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Nuuautin 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Oregon Jack Creek 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Papyum 27","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Paska Island 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Paul''s Basin 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Pemynoos 9","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Peq-Paq 22","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Sahhaltkum 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Seah 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Shackan 11","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Shawniken 4B","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Siska Flat","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Skeetchestn","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Skuppah 2A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Skuppah 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Skwayaynope 26","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Spences Bridge","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Spintlum Flat 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Squaam 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Stequmwhulpa 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Stryen 9","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Sun Peaks Mountain","Type":"Village","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola A (Wells Gray Country)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola B (Thompson Headwaters)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola E (Bonaparte Plateau)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola I (Blue Sky Country)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola J (Copper Desert Country)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola L (Grasslands)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola M (Beautiful Nicola Valley - North)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola N (Beautiful Nicola Valley - South)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola O (Lower North Thompson)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Thompson-Nicola P (Rivers and the Peaks)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Tsaukan 12","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Twoyqhalsht 16","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Upper Hat Creek 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Upper Nepa 6","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Whispering Pines 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Yawaucht 11","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Zacht 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"CensusSubdivisionName":"Zoht 4","Type":"Indian reserve","RegionalDistrictCode":"15"}]'; -BEGIN - -- Insert into "CensusSubdivisions" table - INSERT INTO public."CensusSubdivisions" - ("Id", "CensusSubdivisionName", "Type","RegionalDistrictCode", "ExtraProperties", "ConcurrencyStamp", "CreationTime") - SELECT - gen_random_uuid(), - data->>'CensusSubdivisionName', - data->>'Type', - data->>'RegionalDistrictCode', - '', - '', - pg_catalog.now() - FROM jsonb_array_elements(json_data::jsonb) AS data; - -END $$; diff --git a/database/scripts/unitydb-communities-script.sql b/database/scripts/unitydb-communities-script.sql index 617be7f972..c82ffd847c 100644 --- a/database/scripts/unitydb-communities-script.sql +++ b/database/scripts/unitydb-communities-script.sql @@ -1,8 +1,10 @@ -DO $$ +DO $$ DECLARE - json_data jsonb := '[{"Name":"Ahahswinis 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Alberni 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Alberni-Clayoquot A","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"Name":"Alberni-Clayoquot B","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"Name":"Alberni-Clayoquot C","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"Name":"Alberni-Clayoquot D","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"Name":"Alberni-Clayoquot E","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"Name":"Alberni-Clayoquot F","Type":"Regional district electoral area","RegionalDistrictCode":"4"},{"Name":"Anacla 12","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Clakamucus 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Elhlateese 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Esowista 3","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Hesquiat 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Ittatsoo 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Klehkoot 2","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Macoah 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Marktosis 15","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Numukamis 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Opitsat 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Port Alberni","Type":"City","RegionalDistrictCode":"4"},{"Name":"Refuge Cove 6","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Sachsa 4","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Tin Wis 11","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Tofino","Type":"District municipality","RegionalDistrictCode":"4"},{"Name":"Tsahaheh 1","Type":"Indian reserve","RegionalDistrictCode":"4"},{"Name":"Ucluelet","Type":"District municipality","RegionalDistrictCode":"4"},{"Name":"Babine 16","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Babine 25","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Babine 6","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Babine Lake 21B","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Binche 2","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Bulkley-Nechako A","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"Name":"Bulkley-Nechako B","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"Name":"Bulkley-Nechako C","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"Name":"Bulkley-Nechako D","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"Name":"Bulkley-Nechako E","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"Name":"Bulkley-Nechako F","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"Name":"Bulkley-Nechako G","Type":"Regional district electoral area","RegionalDistrictCode":"26"},{"Name":"Burns Lake","Type":"Village","RegionalDistrictCode":"26"},{"Name":"Burns Lake 18","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Cheslatta 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Duncan Lake 2","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Dzitline Lee 9","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Fort St. James","Type":"District municipality","RegionalDistrictCode":"26"},{"Name":"Francois Lake 7","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Fraser Lake","Type":"Village","RegionalDistrictCode":"26"},{"Name":"Granisle","Type":"Village","RegionalDistrictCode":"26"},{"Name":"Houston","Type":"District municipality","RegionalDistrictCode":"26"},{"Name":"Jean Baptiste 28","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Laketown 3","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Mission Lands 17","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Nak''azdli","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Nautley (Fort Fraser) 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Nedoats 11","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Noonla 6","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"North Tacla Lake","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Omineca 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Palling 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Poison Creek 17A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Seaspunkut 4","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Skins Lake 16A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Skins Lake 16B","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Smithers","Type":"Town","RegionalDistrictCode":"26"},{"Name":"Sowchea 3","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Stellaquo (Stella) 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Stony Creek 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Tache 1","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Tacla Lake (Ferry Landing) 9","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Tadinlay 15","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Tatla West 11","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Tatla''t East 2","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Telkwa","Type":"Village","RegionalDistrictCode":"26"},{"Name":"Uncha Lake 13A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Vanderhoof","Type":"District municipality","RegionalDistrictCode":"26"},{"Name":"Williams Prairie Meadow 1A","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Woyenne 27","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Ye Koo Che 3","Type":"Indian reserve","RegionalDistrictCode":"26"},{"Name":"Becher Bay 1","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Central Saanich","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"Cole Bay 3","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Colwood","Type":"City","RegionalDistrictCode":"1"},{"Name":"East Saanich 2","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Esquimalt - District municipality","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"Esquimalt - Indian reserve","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Galiano Island 9","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Gordon River 2","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Highlands","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"Juan de Fuca (Part 1)","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"Name":"Juan de Fuca (Part 2)","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"Name":"Langford","Type":"City","RegionalDistrictCode":"1"},{"Name":"Metchosin","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"New Songhees 1A","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"North Saanich","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"Oak Bay","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"Saanich","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"Saltspring Island","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"Name":"Sidney","Type":"Town","RegionalDistrictCode":"1"},{"Name":"Sooke","Type":"District municipality","RegionalDistrictCode":"1"},{"Name":"South Saanich 1","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Southern Gulf Islands","Type":"Regional district electoral area","RegionalDistrictCode":"1"},{"Name":"T''Sou-ke","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Union Bay 4","Type":"Indian reserve","RegionalDistrictCode":"1"},{"Name":"Victoria","Type":"City","RegionalDistrictCode":"1"},{"Name":"View Royal","Type":"Town","RegionalDistrictCode":"1"},{"Name":"Agats Meadow 8","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Alexandria","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Alexis Creek 14","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Alexis Creek 16","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Alexis Creek 21","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Alexis Creek 34","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Alkali Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Alkali Lake 4A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Anahim''s Flat 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Anahim''s Meadow","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Baezaeko River 27","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Baptiste Meadow 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Betty Creek 18","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Canim Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Canim Lake 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Canim Lake 4","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Canoe Creek 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Cariboo A","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo B","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo C","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo D","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo E","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo F","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo G","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo H","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo I","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo J","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo K","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Cariboo L","Type":"Regional district electoral area","RegionalDistrictCode":"22"},{"Name":"Charley Boy''s Meadow 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Chilco Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Chilco Lake 1A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Coglistiko River 29","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Deep Creek 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Dog Creek 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Dog Creek 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Dragon Lake 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Euchinico Creek 17","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Fishtrap 19","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Garden","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Johny Sticks 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Kluskus 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Lezbye 6","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Little Springs","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Lohbiee 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Michel Gardens 36","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Nazco 20","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"One Hundred Mile House","Type":"District municipality","RegionalDistrictCode":"22"},{"Name":"Puntzi Lake 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Quesnel","Type":"City","RegionalDistrictCode":"22"},{"Name":"Quesnel 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Redstone Flat 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Salmon River Meadow 7","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Sandy Harry 4","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Soda Creek 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Squinas 2","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Stone 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Sundayman''s Meadow 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Swan Lake 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Tanakut 4","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Thomas Squinas Ranch 2A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Toosey 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Towdystan Lake 3","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Trout Lake Alec 16","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Ulkatcho 13","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Ulkatcho 14A","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Wells","Type":"District municipality","RegionalDistrictCode":"22"},{"Name":"Williams Lake","Type":"City","RegionalDistrictCode":"22"},{"Name":"Williams Lake 1","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Windy Mouth 7","Type":"Indian reserve","RegionalDistrictCode":"22"},{"Name":"Bella Bella 1","Type":"Indian reserve","RegionalDistrictCode":"9"},{"Name":"Bella Coola 1","Type":"Indian reserve","RegionalDistrictCode":"9"},{"Name":"Central Coast A","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"Name":"Central Coast C","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"Name":"Central Coast D","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"Name":"Central Coast E","Type":"Regional district electoral area","RegionalDistrictCode":"9"},{"Name":"Katit 1","Type":"Indian reserve","RegionalDistrictCode":"9"},{"Name":"Castlegar","Type":"City","RegionalDistrictCode":"20"},{"Name":"Central Kootenay A","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay B","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay C","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay D","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay E","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay F","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay G","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay H","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay I","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay J","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Central Kootenay K","Type":"Regional district electoral area","RegionalDistrictCode":"20"},{"Name":"Creston","Type":"Town","RegionalDistrictCode":"20"},{"Name":"Creston 1","Type":"Indian reserve","RegionalDistrictCode":"20"},{"Name":"Kaslo","Type":"Village","RegionalDistrictCode":"20"},{"Name":"Nakusp","Type":"Village","RegionalDistrictCode":"20"},{"Name":"Nelson","Type":"City","RegionalDistrictCode":"20"},{"Name":"New Denver","Type":"Village","RegionalDistrictCode":"20"},{"Name":"Salmo","Type":"Village","RegionalDistrictCode":"20"},{"Name":"Silverton","Type":"Village","RegionalDistrictCode":"20"},{"Name":"Slocan","Type":"Village","RegionalDistrictCode":"20"},{"Name":"Central Okanagan","Type":"Regional district electoral area","RegionalDistrictCode":"16"},{"Name":"Central Okanagan West","Type":"Regional district electoral area","RegionalDistrictCode":"16"},{"Name":"Duck Lake 7","Type":"Indian reserve","RegionalDistrictCode":"16"},{"Name":"Kelowna","Type":"City","RegionalDistrictCode":"16"},{"Name":"Lake Country","Type":"District municipality","RegionalDistrictCode":"16"},{"Name":"Peachland","Type":"District municipality","RegionalDistrictCode":"16"},{"Name":"Tsinstikeptum 10","Type":"Indian reserve","RegionalDistrictCode":"16"},{"Name":"Tsinstikeptum 9","Type":"Indian reserve","RegionalDistrictCode":"16"},{"Name":"West Kelowna","Type":"City","RegionalDistrictCode":"16"},{"Name":"Chum Creek 2","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Columbia-Shuswap A","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"Name":"Columbia-Shuswap B","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"Name":"Columbia-Shuswap C","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"Name":"Columbia-Shuswap D","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"Name":"Columbia-Shuswap E","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"Name":"Columbia-Shuswap F","Type":"Regional district electoral area","RegionalDistrictCode":"18"},{"Name":"Golden","Type":"Town","RegionalDistrictCode":"18"},{"Name":"Hustalen 1","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"North Bay 5","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Okanagan (Part) 1 - Thompson/Okanagan","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Quaaout 1","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Revelstoke","Type":"City","RegionalDistrictCode":"18"},{"Name":"Salmon Arm","Type":"City","RegionalDistrictCode":"18"},{"Name":"Salmon River 1","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Scotch Creek 4","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Sicamous","Type":"District municipality","RegionalDistrictCode":"18"},{"Name":"Switsemalph","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Switsemalph 3","Type":"Indian reserve","RegionalDistrictCode":"18"},{"Name":"Comox","Type":"Town","RegionalDistrictCode":"6"},{"Name":"Comox 1","Type":"Indian reserve","RegionalDistrictCode":"6"},{"Name":"Comox Valley A","Type":"Regional district electoral area","RegionalDistrictCode":"6"},{"Name":"Comox Valley B (Lazo North)","Type":"Regional district electoral area","RegionalDistrictCode":"6"},{"Name":"Comox Valley C (Puntledge - Black Creek)","Type":"Regional district electoral area","RegionalDistrictCode":"6"},{"Name":"Courtenay","Type":"City","RegionalDistrictCode":"6"},{"Name":"Cumberland","Type":"Village","RegionalDistrictCode":"6"},{"Name":"Pentledge 2","Type":"Indian reserve","RegionalDistrictCode":"6"},{"Name":"Chemainus 13","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Cowichan","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Cowichan Lake","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley A","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley B","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley C","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley D","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley E","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley F","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley G","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley H","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Cowichan Valley I","Type":"Regional district electoral area","RegionalDistrictCode":"2"},{"Name":"Duncan","Type":"City","RegionalDistrictCode":"2"},{"Name":"Est-Patrolas 4","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Halalt 2","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Kil-pah-las 3","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Ladysmith","Type":"Town","RegionalDistrictCode":"2"},{"Name":"Lake Cowichan","Type":"Town","RegionalDistrictCode":"2"},{"Name":"Lyacksun 3","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Malachan 11","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Malahat 11","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"North Cowichan","Type":"District municipality","RegionalDistrictCode":"2"},{"Name":"Oyster Bay 12","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Penelakut Island 7","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Portier Pass 5","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Shingle Point 4","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Squaw-Hay-One 11","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Theik 2","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Tsussie 6","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Tzart-Lam 5","Type":"Indian reserve","RegionalDistrictCode":"2"},{"Name":"Canal Flats","Type":"Village","RegionalDistrictCode":"19"},{"Name":"Cassimayooks (Mayook) 5","Type":"Indian reserve","RegionalDistrictCode":"19"},{"Name":"Columbia Lake 3","Type":"Indian reserve","RegionalDistrictCode":"19"},{"Name":"Cranbrook","Type":"City","RegionalDistrictCode":"19"},{"Name":"East Kootenay A","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"Name":"East Kootenay B","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"Name":"East Kootenay C","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"Name":"East Kootenay E","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"Name":"East Kootenay F","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"Name":"East Kootenay G","Type":"Regional district electoral area","RegionalDistrictCode":"19"},{"Name":"Elkford","Type":"District municipality","RegionalDistrictCode":"19"},{"Name":"Fernie","Type":"City","RegionalDistrictCode":"19"},{"Name":"Invermere","Type":"District municipality","RegionalDistrictCode":"19"},{"Name":"Isidore''s Ranch 4","Type":"Indian reserve","RegionalDistrictCode":"19"},{"Name":"Kimberley","Type":"City","RegionalDistrictCode":"19"},{"Name":"Kootenay 1","Type":"Indian reserve","RegionalDistrictCode":"19"},{"Name":"Radium Hot Springs","Type":"Village","RegionalDistrictCode":"19"},{"Name":"Shuswap","Type":"Indian reserve","RegionalDistrictCode":"19"},{"Name":"Sparwood","Type":"District municipality","RegionalDistrictCode":"19"},{"Name":"St. Mary''s","Type":"Indian reserve","RegionalDistrictCode":"19"},{"Name":"Tobacco Plains 2","Type":"Indian reserve","RegionalDistrictCode":"19"},{"Name":"Abbotsford","Type":"City","RegionalDistrictCode":"10"},{"Name":"Aitchelitch 9","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Albert Flat 5","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Boothroyd 13","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Boston Bar 1A","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Bucktum 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Chawathil 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Cheam 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Chehalis 5","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Chilliwack","Type":"City","RegionalDistrictCode":"10"},{"Name":"Douglas 8","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Fraser Valley A","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Fraser Valley B","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Fraser Valley C","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Fraser Valley D","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Fraser Valley E","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Fraser Valley F","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Fraser Valley G","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Fraser Valley H","Type":"Regional district electoral area","RegionalDistrictCode":"10"},{"Name":"Harrison Hot Springs","Type":"Village","RegionalDistrictCode":"10"},{"Name":"Holachten 8","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Hope","Type":"District municipality","RegionalDistrictCode":"10"},{"Name":"Inkahtsaph 6","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Kahmoose 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Kent","Type":"District municipality","RegionalDistrictCode":"10"},{"Name":"Kopchitchin 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Kwawkwawapilt 6","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Lakahahmen 11","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Langley 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Lukseetsissum 9","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Matsqui Main 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Mission","Type":"District municipality","RegionalDistrictCode":"10"},{"Name":"Ohamil 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Paqulh","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Peters 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Popkum 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Puckatholetchin 11","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Q''alatkú7em","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Ruby Creek 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Sachteen","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Saddle Rock 9","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Schelowat 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Schkam 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Scowlitz 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Seabird Island","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Skawahlook 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Skookumchuck 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Skowkale","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Skwah 4","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Skwali 3","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Skway 5","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Skweahm 10","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Soowahlie 14","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Speyum 3","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Spuzzum 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Squawkum Creek 3","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Squiaala","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Stullawheets 8","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Tipella 7","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Tseatah 2","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Tuckkwiowhum 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Tzeachten 13","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Upper Sumas 6","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Yakweakwioose 12","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Yale Town 1","Type":"Indian reserve","RegionalDistrictCode":"10"},{"Name":"Fort George 2","Type":"Indian reserve","RegionalDistrictCode":"23"},{"Name":"Fraser-Fort George A","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"Name":"Fraser-Fort George C","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"Name":"Fraser-Fort George D","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"Name":"Fraser-Fort George E","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"Name":"Fraser-Fort George F","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"Name":"Fraser-Fort George G","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"Name":"Fraser-Fort George H","Type":"Regional district electoral area","RegionalDistrictCode":"23"},{"Name":"Mackenzie","Type":"District municipality","RegionalDistrictCode":"23"},{"Name":"McBride","Type":"Village","RegionalDistrictCode":"23"},{"Name":"McLeod Lake 1","Type":"Indian reserve","RegionalDistrictCode":"23"},{"Name":"Prince George","Type":"City","RegionalDistrictCode":"23"},{"Name":"Valemount","Type":"Village","RegionalDistrictCode":"23"},{"Name":"Anmore","Type":"Village","RegionalDistrictCode":"11"},{"Name":"Barnston Island 3","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Belcarra","Type":"Village","RegionalDistrictCode":"11"},{"Name":"Bowen Island","Type":"Island municipality","RegionalDistrictCode":"11"},{"Name":"Burnaby","Type":"City","RegionalDistrictCode":"11"},{"Name":"Burrard Inlet 3","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Capilano 5","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Coquitlam","Type":"City","RegionalDistrictCode":"11"},{"Name":"Coquitlam 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Coquitlam 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Delta","Type":"City","RegionalDistrictCode":"11"},{"Name":"Katzie 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Katzie 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Langley - City","Type":"City","RegionalDistrictCode":"11"},{"Name":"Langley - District municipality","Type":"District municipality","RegionalDistrictCode":"11"},{"Name":"Lions Bay","Type":"Village","RegionalDistrictCode":"11"},{"Name":"Maple Ridge","Type":"City","RegionalDistrictCode":"11"},{"Name":"Matsqui 4","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"McMillan Island 6","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Metro Vancouver A","Type":"Regional district electoral area","RegionalDistrictCode":"11"},{"Name":"Mission 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Musqueam 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Musqueam 4","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"New Westminster","Type":"City","RegionalDistrictCode":"11"},{"Name":"North Vancouver - City","Type":"City","RegionalDistrictCode":"11"},{"Name":"North Vancouver - District municipality","Type":"District municipality","RegionalDistrictCode":"11"},{"Name":"Pitt Meadows","Type":"City","RegionalDistrictCode":"11"},{"Name":"Port Coquitlam","Type":"City","RegionalDistrictCode":"11"},{"Name":"Port Moody","Type":"City","RegionalDistrictCode":"11"},{"Name":"Richmond","Type":"City","RegionalDistrictCode":"11"},{"Name":"Semiahmoo","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Seymour Creek 2","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Surrey","Type":"City","RegionalDistrictCode":"11"},{"Name":"Tsawwassen","Type":"Tsawwassen Lands","RegionalDistrictCode":"11"},{"Name":"Vancouver","Type":"City","RegionalDistrictCode":"11"},{"Name":"West Vancouver","Type":"District municipality","RegionalDistrictCode":"11"},{"Name":"White Rock","Type":"City","RegionalDistrictCode":"11"},{"Name":"Whonnock 1","Type":"Indian reserve","RegionalDistrictCode":"11"},{"Name":"Babine 17","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Bulkley River 19","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Coryatsaqua (Moricetown) 2","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Dease Lake 9","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Gitanmaax 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Gitanyow 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Gitsegukla 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Gitwangak 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Guhthe Tah 12","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Hagwilget 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Hazelton","Type":"Village","RegionalDistrictCode":"25"},{"Name":"Iskut 6","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Kispiox 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Kitamaat 2","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Kitasoo 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Kitimat","Type":"District municipality","RegionalDistrictCode":"25"},{"Name":"Kitimat-Stikine A","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"Name":"Kitimat-Stikine B","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"Name":"Kitimat-Stikine C (Part 1)","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"Name":"Kitimat-Stikine C (Part 2)","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"Name":"Kitimat-Stikine D","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"Name":"Kitimat-Stikine E","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"Name":"Kitimat-Stikine F","Type":"Regional district electoral area","RegionalDistrictCode":"25"},{"Name":"Kitselas 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Kitsumkaylum 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Kshish 4","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Kulspai 6","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Moricetown 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"New Hazelton","Type":"District municipality","RegionalDistrictCode":"25"},{"Name":"Nisga''a","Type":"Nisga''a land","RegionalDistrictCode":"25"},{"Name":"Sik-e-dakh 2","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Stewart","Type":"District municipality","RegionalDistrictCode":"25"},{"Name":"Tahltan 1","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Telegraph Creek","Type":"Indian reserve","RegionalDistrictCode":"25"},{"Name":"Terrace","Type":"City","RegionalDistrictCode":"25"},{"Name":"Fruitvale","Type":"Village","RegionalDistrictCode":"21"},{"Name":"Grand Forks","Type":"City","RegionalDistrictCode":"21"},{"Name":"Greenwood","Type":"City","RegionalDistrictCode":"21"},{"Name":"Kootenay Boundary A","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"Name":"Kootenay Boundary B / Lower Columbia-Old-Glory","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"Name":"Kootenay Boundary C / Christina Lake","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"Name":"Kootenay Boundary D / Rural Grand Forks","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"Name":"Kootenay Boundary E / West Boundary","Type":"Regional district electoral area","RegionalDistrictCode":"21"},{"Name":"Midway","Type":"Village","RegionalDistrictCode":"21"},{"Name":"Montrose","Type":"Village","RegionalDistrictCode":"21"},{"Name":"Rossland","Type":"City","RegionalDistrictCode":"21"},{"Name":"Trail","Type":"City","RegionalDistrictCode":"21"},{"Name":"Warfield","Type":"Village","RegionalDistrictCode":"21"},{"Name":"Alert Bay - Indian reserve","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Alert Bay - Village","Type":"Village","RegionalDistrictCode":"8"},{"Name":"Dead Point 5","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Fort Rupert 1","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Gwayasdums 1","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Hope Island 1","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Hopetown 10A","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Kippase 2","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Mount Waddington A","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"Name":"Mount Waddington B","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"Name":"Mount Waddington C","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"Name":"Mount Waddington D","Type":"Regional district electoral area","RegionalDistrictCode":"8"},{"Name":"Nimpkish 2","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Port Alice","Type":"Village","RegionalDistrictCode":"8"},{"Name":"Port Hardy","Type":"District municipality","RegionalDistrictCode":"8"},{"Name":"Port McNeill","Type":"Town","RegionalDistrictCode":"8"},{"Name":"Quaee 7","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Quatsino Subdivision 18","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Thomas Point 5","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Thomas Point 5A","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Tsulquate 4","Type":"Indian reserve","RegionalDistrictCode":"8"},{"Name":"Lantzville","Type":"District municipality","RegionalDistrictCode":"3"},{"Name":"Nanaimo","Type":"City","RegionalDistrictCode":"3"},{"Name":"Nanaimo A","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"Name":"Nanaimo B","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"Name":"Nanaimo C","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"Name":"Nanaimo E","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"Name":"Nanaimo F","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"Name":"Nanaimo G","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"Name":"Nanaimo H","Type":"Regional district electoral area","RegionalDistrictCode":"3"},{"Name":"Nanaimo River","Type":"Indian reserve","RegionalDistrictCode":"3"},{"Name":"Nanaimo Town 1","Type":"Indian reserve","RegionalDistrictCode":"3"},{"Name":"Nanoose","Type":"Indian reserve","RegionalDistrictCode":"3"},{"Name":"Parksville","Type":"City","RegionalDistrictCode":"3"},{"Name":"Qualicum","Type":"Indian reserve","RegionalDistrictCode":"3"},{"Name":"Qualicum Beach","Type":"Town","RegionalDistrictCode":"3"},{"Name":"Armstrong","Type":"City","RegionalDistrictCode":"17"},{"Name":"Coldstream","Type":"District municipality","RegionalDistrictCode":"17"},{"Name":"Enderby","Type":"City","RegionalDistrictCode":"17"},{"Name":"Enderby 2","Type":"Indian reserve","RegionalDistrictCode":"17"},{"Name":"Harris 3","Type":"Indian reserve","RegionalDistrictCode":"17"},{"Name":"Lumby","Type":"Village","RegionalDistrictCode":"17"},{"Name":"North Okanagan B","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"Name":"North Okanagan C","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"Name":"North Okanagan D","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"Name":"North Okanagan E","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"Name":"North Okanagan F","Type":"Regional district electoral area","RegionalDistrictCode":"17"},{"Name":"Okanagan (Part) 1 - North Okanagan","Type":"Indian reserve","RegionalDistrictCode":"17"},{"Name":"Priest''s Valley 6","Type":"Indian reserve","RegionalDistrictCode":"17"},{"Name":"Spallumcheen","Type":"District municipality","RegionalDistrictCode":"17"},{"Name":"Vernon","Type":"City","RegionalDistrictCode":"17"},{"Name":"Fontas 1","Type":"Indian reserve","RegionalDistrictCode":"29"},{"Name":"Fort Nelson 2","Type":"Indian reserve","RegionalDistrictCode":"29"},{"Name":"Kahntah 3","Type":"Indian reserve","RegionalDistrictCode":"29"},{"Name":"Northern Rockies","Type":"Regional municipality","RegionalDistrictCode":"29"},{"Name":"Prophet River 4","Type":"Indian reserve","RegionalDistrictCode":"29"},{"Name":"Alexis 9","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Ashnola 10","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Blind Creek 6","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Chopaka 7 & 8","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Chuchuwayha 2","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Keremeos","Type":"Village","RegionalDistrictCode":"14"},{"Name":"Lower Similkameen 2","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Lulu 5","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen A","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen B","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen C","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen D","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen E","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen F","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen G","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen H","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Okanagan-Similkameen I","Type":"Regional district electoral area","RegionalDistrictCode":"14"},{"Name":"Oliver","Type":"Town","RegionalDistrictCode":"14"},{"Name":"Osoyoos","Type":"Town","RegionalDistrictCode":"14"},{"Name":"Osoyoos 1","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Penticton","Type":"City","RegionalDistrictCode":"14"},{"Name":"Penticton 1","Type":"Indian reserve","RegionalDistrictCode":"14"},{"Name":"Princeton","Type":"Town","RegionalDistrictCode":"14"},{"Name":"Summerland","Type":"District municipality","RegionalDistrictCode":"14"},{"Name":"Blueberry River 205","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"Chetwynd","Type":"District municipality","RegionalDistrictCode":"28"},{"Name":"Dawson Creek","Type":"City","RegionalDistrictCode":"28"},{"Name":"Doig River 206","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"East Moberly Lake 169","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"Finlay River 6","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"Fort St. John","Type":"City","RegionalDistrictCode":"28"},{"Name":"Fort Ware 1","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"Halfway River 168","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"Hudson''s Hope","Type":"District municipality","RegionalDistrictCode":"28"},{"Name":"Ingenika Point","Type":"Indian settlement","RegionalDistrictCode":"28"},{"Name":"Mesilinka 7","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"Peace River B","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"Name":"Peace River C","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"Name":"Peace River D","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"Name":"Peace River E","Type":"Regional district electoral area","RegionalDistrictCode":"28"},{"Name":"Pouce Coupe","Type":"Village","RegionalDistrictCode":"28"},{"Name":"Taylor","Type":"District municipality","RegionalDistrictCode":"28"},{"Name":"Tumbler Ridge","Type":"District municipality","RegionalDistrictCode":"28"},{"Name":"West Moberly Lake 168A","Type":"Indian reserve","RegionalDistrictCode":"28"},{"Name":"Powell River","Type":"City","RegionalDistrictCode":"7"},{"Name":"qathet A","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"Name":"qathet B","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"Name":"qathet C","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"Name":"qathet D","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"Name":"qathet E","Type":"Regional district electoral area","RegionalDistrictCode":"7"},{"Name":"Sechelt (Part) - qathet","Type":"Indian government district","RegionalDistrictCode":"7"},{"Name":"Sliammon 1","Type":"Tla''amin Lands","RegionalDistrictCode":"7"},{"Name":"Dolphin Island 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"Kulkayu (Hartley Bay) 4","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"Kulkayu (Hartley Bay) 4A","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"Lax Kw''alaams 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"Masset","Type":"Village","RegionalDistrictCode":"24"},{"Name":"Masset 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"North Coast A","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"Name":"North Coast C","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"Name":"North Coast D","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"Name":"North Coast E","Type":"Regional district electoral area","RegionalDistrictCode":"24"},{"Name":"Port Clements","Type":"Village","RegionalDistrictCode":"24"},{"Name":"Port Edward","Type":"District municipality","RegionalDistrictCode":"24"},{"Name":"Prince Rupert","Type":"City","RegionalDistrictCode":"24"},{"Name":"Queen Charlotte","Type":"Village","RegionalDistrictCode":"24"},{"Name":"S1/2 Tsimpsean 2","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"Skidegate 1","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"Tlaa Gaa Aawtlaas 28","Type":"Indian reserve","RegionalDistrictCode":"24"},{"Name":"Bridge River 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Cayoosh Creek 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Cheakamus 11","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Chilhil 6","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 10","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 11","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 12","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 1B","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 1D","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 3","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain 3A","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Fountain Creek 8","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Kowtain 17","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Lillooet","Type":"District municipality","RegionalDistrictCode":"13"},{"Name":"Lillooet 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"McCartney''s Flat 4","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Mission 5","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Mount Currie","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Necait 6","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Nequatque","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Nesikep 6","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Nesuch 3","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Pashilqua 2","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Pavilion 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Pemberton","Type":"Village","RegionalDistrictCode":"13"},{"Name":"Seaichem 16","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Seton Lake 5","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Slosh 1","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Squamish","Type":"District municipality","RegionalDistrictCode":"13"},{"Name":"Squamish-Lillooet A","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"Name":"Squamish-Lillooet B","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"Name":"Squamish-Lillooet C","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"Name":"Squamish-Lillooet D","Type":"Regional district electoral area","RegionalDistrictCode":"13"},{"Name":"Stawamus 24","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Towinock 2","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Waiwakum 14","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Whistler","Type":"District municipality","RegionalDistrictCode":"13"},{"Name":"Yekwaupsum 18","Type":"Indian reserve","RegionalDistrictCode":"13"},{"Name":"Dease River 1","Type":"Indian reserve","RegionalDistrictCode":"27"},{"Name":"Five Mile Point 3","Type":"Indian reserve","RegionalDistrictCode":"27"},{"Name":"Good Hope Lake","Type":"Indian settlement","RegionalDistrictCode":"27"},{"Name":"Liard River 3","Type":"Indian reserve","RegionalDistrictCode":"27"},{"Name":"Lower Post","Type":"Indian settlement","RegionalDistrictCode":"27"},{"Name":"Stikine Region","Type":"Regional district electoral area","RegionalDistrictCode":"27"},{"Name":"Unnamed 10","Type":"Indian reserve","RegionalDistrictCode":"27"},{"Name":"Ahaminaquus 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Campbell River","Type":"City","RegionalDistrictCode":"5"},{"Name":"Campbell River 11","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Cape Mudge 10","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Chenahkint 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Ehatis 11","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Gold River","Type":"Village","RegionalDistrictCode":"5"},{"Name":"Homalco 9","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Houpsitas 6","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Nenagwas 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Oclucje 7","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Quinsam 12","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Sayward","Type":"Village","RegionalDistrictCode":"5"},{"Name":"Squirrel Cove 8","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Strathcona A","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"Name":"Strathcona B","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"Name":"Strathcona C","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"Name":"Strathcona D (Oyster Bay - Buttle Lake)","Type":"Regional district electoral area","RegionalDistrictCode":"5"},{"Name":"Tahsis","Type":"Village","RegionalDistrictCode":"5"},{"Name":"Tork 7","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Tsa Xana 18","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Village Island 1","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Yuquot 1","Type":"Indian reserve","RegionalDistrictCode":"5"},{"Name":"Zeballos","Type":"Village","RegionalDistrictCode":"5"},{"Name":"Chekwelp 26","Type":"Indian reserve","RegionalDistrictCode":"12"},{"Name":"Gibsons","Type":"Town","RegionalDistrictCode":"12"},{"Name":"Sechelt","Type":"District municipality","RegionalDistrictCode":"12"},{"Name":"Sechelt (Part) - Sunshine Coast","Type":"Indian government district","RegionalDistrictCode":"12"},{"Name":"Sunshine Coast A","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"Name":"Sunshine Coast B","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"Name":"Sunshine Coast D","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"Name":"Sunshine Coast E","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"Name":"Sunshine Coast F","Type":"Regional district electoral area","RegionalDistrictCode":"12"},{"Name":"105 Mile Post 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Ashcroft","Type":"Village","RegionalDistrictCode":"15"},{"Name":"Ashcroft 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Barriere","Type":"District municipality","RegionalDistrictCode":"15"},{"Name":"Basque 18","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Bonaparte 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Boothroyd 8A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Cache Creek","Type":"Village","RegionalDistrictCode":"15"},{"Name":"Canoe Creek 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Canoe Creek 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Chase","Type":"Village","RegionalDistrictCode":"15"},{"Name":"Chuchhraischin","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Clearwater","Type":"District municipality","RegionalDistrictCode":"15"},{"Name":"Clinton","Type":"Village","RegionalDistrictCode":"15"},{"Name":"Coldwater 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Douglas Lake 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Entlqwekkinh 19","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Halhalaeden","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Hamilton Creek 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"High Bar 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Inkluckcheen","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Inklyuhkinatko 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Joeyaska 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Kamloops","Type":"City","RegionalDistrictCode":"15"},{"Name":"Kamloops 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Kanaka Bar","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Kitzowit 20","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Klahkamich 17","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Kleetlekut 22","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Klickkumcheen 18","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Kloklowuck 7","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Kumcheen 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Logan Lake","Type":"District municipality","RegionalDistrictCode":"15"},{"Name":"Louis Creek 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Lower Hat Creek 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Lytton","Type":"Village","RegionalDistrictCode":"15"},{"Name":"Lytton 4A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Lytton 4E","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Lytton 9A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Lytton 9B","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Marble Canyon 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Merritt","Type":"City","RegionalDistrictCode":"15"},{"Name":"Nekalliston 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nekliptum 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Neskonlith","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nickel Palm 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nickeyeah 25","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nicola Lake 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nicola Mameet 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nicomen 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nkaih 10","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nohomeen 23","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nooaitch 10","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"North Thompson 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Nuuautin 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Oregon Jack Creek 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Papyum 27","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Paska Island 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Paul''s Basin 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Pemynoos 9","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Peq-Paq 22","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Sahhaltkum 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Seah 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Shackan 11","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Shawniken 4B","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Siska Flat","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Skeetchestn","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Skuppah 2A","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Skuppah 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Skwayaynope 26","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Spences Bridge","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Spintlum Flat 3","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Squaam 2","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Stequmwhulpa 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Stryen 9","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Sun Peaks Mountain","Type":"Village","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola A (Wells Gray Country)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola B (Thompson Headwaters)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola E (Bonaparte Plateau)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola I (Blue Sky Country)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola J (Copper Desert Country)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola L (Grasslands)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola M (Beautiful Nicola Valley - North)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola N (Beautiful Nicola Valley - South)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola O (Lower North Thompson)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Thompson-Nicola P (Rivers and the Peaks)","Type":"Regional district electoral area","RegionalDistrictCode":"15"},{"Name":"Tsaukan 12","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Twoyqhalsht 16","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Upper Hat Creek 1","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Upper Nepa 6","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Whispering Pines 4","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Yawaucht 11","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Zacht 5","Type":"Indian reserve","RegionalDistrictCode":"15"},{"Name":"Zoht 4","Type":"Indian reserve","RegionalDistrictCode":"15"}]'; + json_data jsonb := '[{"Name" : "Becher Bay 1", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Central Saanich", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Cole Bay 3", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Colwood", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "East Saanich 2", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Esquimalt", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Esquimalt", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Galiano Island 9", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Gordon River 2", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Highlands", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Juan de Fuca (Part 1)", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Juan de Fuca (Part 2)", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Langford", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Metchosin", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "New Songhees 1A", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "North Saanich", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Oak Bay", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Saanich", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Saltspring Island", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Sidney", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Sooke", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Southern Gulf Islands", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "South Saanich 1", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "T''Sou-ke", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Union Bay 4", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Victoria", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "View Royal", "Type" : "", "RegionalDistrictCode" : "1"}, {"Name" : "Abbotsford", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Aitchelitch 9", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Albert Flat 5", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Boothrouyd 5B", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Boothroyd 13", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Boston Bar 1A", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Bucktum 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Chawathil 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Cheam 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Chehalis 5", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Chilliwack", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Coqualeetza", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Douglas 8", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley A", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley B", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley C", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley D", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley E", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley F", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley G", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Fraser Valley H", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Harrison Hot Springs", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Holachten 8", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Hope", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Inkahtsaph 6", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kahmoose 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kent", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kopchitchin 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Kwawkwawapilt 6", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Lakahahmen 11", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Langley 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Lukseetsissum 9", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Matsqui Main 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Mission", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Ohamil 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Paqulh", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Peters 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Popkum 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Puckatholetchin 11", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Q''alatkú7em", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Ruby Creek 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Sachteen", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Saddle Rock 9", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Schelowat 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Schkam 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Scowlitz 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Seabird Island", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skawahlook 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skookumchuck 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skookumchuck 4A", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skowkale", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skwah 4", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skwali 3", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skway 5", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Skweahm 10", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Soowahlie 14", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Speyum 3", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Spuzzum 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Squawkum Creek 3", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Squiaala", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Stullawheets 8", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tipella 7", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tseatah 2", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tuckkwiowhum 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Tzeachten 13", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Upper Sumas 6", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Yakweakwioose 12", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Yale Town 1", "Type" : "", "RegionalDistrictCode" : "10"}, {"Name" : "Anmore", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Barnston Island 3", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Belcarra", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Bowen Island", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Burnaby", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Burrard Inlet 3", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Capilano 5", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Coquitlam", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Coquitlam 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Coquitlam 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Delta", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Katzie 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Katzie 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Kitsilano 6", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Langley", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Langley", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Lions Bay", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Maple Ridge", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Matsqui 4", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "McMillan Island 6", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Metro Vancouver A", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Mission 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Musqueam 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Musqueam 4", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "New Westminster", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "North Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "North Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Pitt Meadows", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Port Coquitlam", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Port Moody", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Richmond", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Semiahmoo", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Seymour Creek 2", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Surrey", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Tsawwassen", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "West Vancouver", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "White Rock", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Whonnock 1", "Type" : "", "RegionalDistrictCode" : "11"}, {"Name" : "Chekwelp 26", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Gibsons", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sechelt", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sechelt (Part)", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast A", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast B", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast D", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast E", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Sunshine Coast F", "Type" : "", "RegionalDistrictCode" : "12"}, {"Name" : "Bridge River 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Cayoosh Creek 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Cheakamus 11", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Chilhil 6", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 10", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 11", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 12", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 1B", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 1D", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 3", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain 3A", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Fountain Creek 8", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Kowtain 17", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Lillooet", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Lillooet 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "McCartney''s Flat 4", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Mission 5", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Mount Currie", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Necait 6", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Nequatque", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Nesikep 6", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Nesuch 3", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Pashilqua 2", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Pavilion 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Pemberton", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Seaichem 16", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Seton Lake 5", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Slosh 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet A", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet B", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet C", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Squamish-Lillooet D", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Stawamus 24", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Towinock 2", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Waiwakum 14", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Whistler", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Whitecap 1", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Yekwaupsum 18", "Type" : "", "RegionalDistrictCode" : "13"}, {"Name" : "Alexis 9", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Ashnola 10", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Blind Creek 6", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Chopaka 7 & 8", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Chuchuwayha 2", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Keremeos", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Lower Similkameen 2", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Lulu 5", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen A", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen B", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen C", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen D", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen E", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen F", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen G", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen H", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Okanagan-Similkameen I", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Oliver", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Osoyoos", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Osoyoos 1", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Penticton", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Penticton 1", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Princeton", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "Summerland", "Type" : "", "RegionalDistrictCode" : "14"}, {"Name" : "105 Mile Post 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Ashcroft", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Ashcroft 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Barriere", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Basque 18", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Bonaparte 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Boothroyd 8A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Cache Creek", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Canoe Creek 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Canoe Creek 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Chase", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Chuchhraischin", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Clearwater", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Clinton", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Coldwater 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Douglas Lake 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Entlqwekkinh 19", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Halhalaeden", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Hamilton Creek 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "High Bar 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Inkluckcheen", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Inklyuhkinatko 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Joeyaska 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kamloops", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kamloops 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kanaka Bar", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kitzowit 20", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Klahkamich 17", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kleetlekut 22", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Klickkumcheen 18", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kloklowuck 7", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Kumcheen 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Logan Lake", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Louis Creek 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lower Hat Creek 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 4A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 4E", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 9A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Lytton 9B", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Marble Canyon 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Merritt", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nekalliston 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nekliptum 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Neskonlith", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nickel Palm 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nickeyeah 25", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nicola Lake 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nicola Mameet 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nicomen 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nkaih 10", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nohomeen 23", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nooaitch 10", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "North Thompson 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Nuuautin 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Oregon Jack Creek 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Papyum 27", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Paska Island 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Paul''s Basin 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Pemynoos 9", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Peq-Paq 22", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Sahhaltkum 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Seah 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Shackan 11", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Shawniken 4B", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Siska Flat", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Siska Flat 5B", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skeetchestn", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skuppah 2A", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skuppah 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Skwayaynope 26", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Spences Bridge", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Spintlum Flat 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Squaam 2", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Stequmwhulpa 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Stryen 9", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Sun Peaks Mountain", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola A (Wells Gray Country)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola B (Thompson Headwaters)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola E (Bonaparte Plateau)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola I (Blue Sky Country)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola J (Copper Desert Country)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola L (Grasslands)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola M (Beautiful Nicola Valley - North)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola N (Beautiful Nicola Valley - South)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola O (Lower North Thompson)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Thompson-Nicola P (Rivers and the Peaks)", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Toops 3", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Tsaukan 12", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Twoyqhalsht 16", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Upper Hat Creek 1", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Upper Nepa 6", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Whispering Pines 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Yawaucht 11", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Zacht 5", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Zoht 4", "Type" : "", "RegionalDistrictCode" : "15"}, {"Name" : "Central Okanagan", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Central Okanagan West", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Duck Lake 7", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Kelowna", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Lake Country", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Peachland", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Tsinstikeptum 10", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Tsinstikeptum 9", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "West Kelowna", "Type" : "", "RegionalDistrictCode" : "16"}, {"Name" : "Armstrong", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Coldstream", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Enderby", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Enderby 2", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Harris 3", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Lumby", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan B", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan C", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan D", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan E", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "North Okanagan F", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Okanagan (Part) 1", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Priest''s Valley 6", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Spallumcheen", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Vernon", "Type" : "", "RegionalDistrictCode" : "17"}, {"Name" : "Chum Creek 2", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap A", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap B", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap C", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap D", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap E", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap F", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Columbia Shuswap G", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Golden", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Hustalen 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "North Bay 5", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Okanagan (Part) 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Quaaout 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Revelstoke", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Salmon Arm", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Salmon River 1", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Scotch Creek 4", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Sicamous", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Switsemalph", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Switsemalph 3", "Type" : "", "RegionalDistrictCode" : "18"}, {"Name" : "Canal Flats", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Cassimayooks (Mayook) 5", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Columbia Lake 3", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Cranbrook", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay A", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay B", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay C", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay E", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay F", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "East Kootenay G", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Elkford", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Fernie", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Invermere", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Isidore''s Ranch 4", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Kimberley", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Kootenay 1", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Radium Hot Springs", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Shuswap", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Sparwood", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "St. Mary''s", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Tobacco Plains 2", "Type" : "", "RegionalDistrictCode" : "19"}, {"Name" : "Chemainus 13", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Lake", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley A", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley B", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley C", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley D", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley E", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley F", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley G", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley H", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Cowichan Valley I", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Duncan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Est-Patrolas 4", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Halalt 2", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Kil-pah-las 3", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Ladysmith", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Lake Cowichan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Lyacksun 3", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Malachan 11", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Malahat 11", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "North Cowichan", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Oyster Bay 12", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Penelakut Island 7", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Portier Pass 5", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Shingle Point 4", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Squaw-Hay-One 11", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Theik 2", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Tsussie 6", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Tzart-Lam 5", "Type" : "", "RegionalDistrictCode" : "2"}, {"Name" : "Castlegar", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay A", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay B", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay C", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay D", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay E", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay F", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay G", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay H", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay I", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay J", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Central Kootenay K", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Creston", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Creston 1", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Kaslo", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Lower Kootenay 1C", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Lower Kootenay 5", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Nakusp", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Nelson", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "New Denver", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Salmo", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Silverton", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Slocan", "Type" : "", "RegionalDistrictCode" : "20"}, {"Name" : "Fruitvale", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Grand Forks", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Greenwood", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary A", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary B / Lower Columbia-Old-Glory", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary C / Christina Lake", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary D / Rural Grand Forks", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Kootenay Boundary E / West Boundary", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Midway", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Montrose", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Rossland", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Trail", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Warfield", "Type" : "", "RegionalDistrictCode" : "21"}, {"Name" : "Agats Meadow 8", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexandria", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 14", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 16", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 21", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alexis Creek 34", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alkali Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Alkali Lake 4A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Anahim''s Flat 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Anahim''s Meadow", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Baezaeko River 27", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Baptiste Meadow 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Betty Creek 18", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canim Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canim Lake 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canim Lake 4", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Canoe Creek 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo B", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo C", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo D", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo E", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo F", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo G", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo H", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo I", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo J", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo K", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Cariboo L", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Charley Boy''s Meadow 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Chilco Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Chilco Lake 1A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Coglistiko River 29", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Deep Creek 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Dog Creek 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Dog Creek 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Dragon Lake 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Euchinico Creek 17", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Fishtrap 19", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Garden", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Johny Sticks 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Kluskus 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Lezbye 6", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Little Springs", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Lohbiee 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Michel Gardens 36", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Nazco 20", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "One Hundred Mile House", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Puntzi Lake 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Quesnel", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Quesnel 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Redstone Flat 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Redstone Flat 1A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Salmon River Meadow 7", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Sandy Harry 4", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Soda Creek 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Squinas 2", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Stone 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Sundayman''s Meadow 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Swan Lake 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Tanakut 4", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Thomas Squinas Ranch 2A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Toosey 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Towdystan Lake 3", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Trout Lake Alec 16", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Ulkatcho 13", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Ulkatcho 14A", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Wells", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Williams Lake", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Williams Lake 1", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Windy Mouth 7", "Type" : "", "RegionalDistrictCode" : "22"}, {"Name" : "Fort George 2", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George A", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George C", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George D", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George E", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George F", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George G", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Fraser-Fort George H", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Mackenzie", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "McBride", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "McCleod Lake 5", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "McLeod Lake 1", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Prince George", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Valemount", "Type" : "", "RegionalDistrictCode" : "23"}, {"Name" : "Daajing Giids", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Dolphin Island 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Kulkayu (Hartley Bay) 4", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Kulkayu (Hartley Bay) 4A", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Lax Kw''alaams 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Masset", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Masset 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast A", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast C", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast D", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "North Coast E", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Port Clements", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Port Edward", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Prince Rupert", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "S1/2 Tsimpsean 2", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Skidegate 1", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Tlaa Gaa Aawtlaas 28", "Type" : "", "RegionalDistrictCode" : "24"}, {"Name" : "Anlaw 4", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Babine 17", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Bulkley River 19", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Coryatsaqua (Moricetown) 2", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Dease Lake 9", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitanmaax 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitanyow 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitsegukla 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Gitwangak 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Guhthe Tah 12", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Hagwilget 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Hazelton", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Iskut 6", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kispiox 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitamaat 2", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitasoo 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine A", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine B", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine C (Part 1)", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine C (Part 2)", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine D", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine E", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitimat-Stikine F", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitselas 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kitsumkaylum 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kshish 4", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Kulspai 6", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Moricetown 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "New Hazelton", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Nisga''a", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Sik-e-dakh 2", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Stewart", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Tahltan 1", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Telegraph Creek", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Terrace", "Type" : "", "RegionalDistrictCode" : "25"}, {"Name" : "Babine 16", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Babine 25", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Babine 6", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Babine Lake 21B", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Binche 2", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako B", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako C", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako D", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako E", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako F", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Bulkley-Nechako G", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Burns Lake", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Burns Lake 18", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Cheslatta 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Duncan Lake 2", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Dzitline Lee 9", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Fort St. James", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Francois Lake 7", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Fraser Lake", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Granisle", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Houston", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Jean Baptiste 28", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Laketown 3", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Mission Lands 17", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Nak''azdli", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Nautley (Fort Fraser) 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Nedoats 11", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Noonla 6", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "North Tacla Lake", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Omineca 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Palling 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Poison Creek 17A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Seaspunkut 4", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Skins Lake 16A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Skins Lake 16B", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Smithers", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Sowchea 3", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Stellaquo (Stella) 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Stony Creek 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tache 1", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tacla Lake (Ferry Landing) 9", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tadinlay 15", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tatla''t East 2", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Tatla West 11", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Telkwa", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Uncha Lake 13A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Vanderhoof", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Williams Prairie Meadow 1A", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Woyenne 27", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Ye Koo Che 3", "Type" : "", "RegionalDistrictCode" : "26"}, {"Name" : "Dease River 1", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Five Mile Point 3", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Good Hope Lake", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Liard River 3", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Lower Post", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Stikine Region", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Unnamed 10", "Type" : "", "RegionalDistrictCode" : "27"}, {"Name" : "Blueberry River 205", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Chetwynd", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Dawson Creek", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Doig River 206", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "East Moberly Lake 169", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Finlay River 6", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Fort St. John", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Fort Ware 1", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Halfway River 168", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Hudson''s Hope", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Ingenika Point", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Mesilinka 7", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River B", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River C", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River D", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Peace River E", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Pouce Coupe", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Taylor", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Tumbler Ridge", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "West Moberly Lake 168A", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Wochiigii Nané?", "Type" : "", "RegionalDistrictCode" : "28"}, {"Name" : "Fontas 1", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Fort Nelson 2", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Kahntah 3", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Northern Rockies", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Prophet River 4", "Type" : "", "RegionalDistrictCode" : "29"}, {"Name" : "Lantzville", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo A", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo B", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo C", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo E", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo F", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo G", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo H", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo River", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanaimo Town 1", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Nanoose", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Parksville", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Qualicum", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Qualicum Beach", "Type" : "", "RegionalDistrictCode" : "3"}, {"Name" : "Ahahswinis 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot A", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot B", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot C", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot D", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot E", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Alberni-Clayoquot F", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Anacla 12", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Clakamucus 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Elhlateese 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Esowista 3", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Hesquiat 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Ittatsoo 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Klehkoot 2", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Macoah 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Marktosis 15", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Numukamis 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Opitsat 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Port Alberni", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Refuge Cove 6", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Sachsa 4", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Tin Wis 11", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Tofino", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Tsahaheh 1", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Ucluelet", "Type" : "", "RegionalDistrictCode" : "4"}, {"Name" : "Ahaminaquus 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Campbell River", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Campbell River 11", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Cape Mudge 10", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Chenahkint 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Ehatis 11", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Gold River", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Homalco 9", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Houpsitas 6", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Nenagwas 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Oclucje 7", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Quinsam 12", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Sayward", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Squirrel Cove 8", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona A", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona B", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona C", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Strathcona D (Oyster Bay - Buttle Lake)", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Tahsis", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Tork 7", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Tsa Xana 18", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Village Island 1", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Yuquot 1", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Zeballos", "Type" : "", "RegionalDistrictCode" : "5"}, {"Name" : "Comox", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox 1", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox Valley A", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox Valley B (Lazo North)", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Comox Valley C (Puntledge - Black Creek)", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Courtenay", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Cumberland", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Pentledge 2", "Type" : "", "RegionalDistrictCode" : "6"}, {"Name" : "Powell River", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet A", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet B", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet C", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet D", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "qathet E", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "Sechelt (Part)", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "Sliammon 1", "Type" : "", "RegionalDistrictCode" : "7"}, {"Name" : "Alert Bay", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Alert Bay", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Dead Point 5", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Fort Rupert 1", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Gwayasdums 1", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Hope Island 1", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Hopetown 10A", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Kippase 2", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington A", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington B", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington C", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Mount Waddington D", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Nimpkish 2", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Port Alice", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Port Hardy", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Port McNeill", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Quaee 7", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Quatsino Subdivision 18", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Thomas Point 5", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Thomas Point 5A", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Tsulquate 4", "Type" : "", "RegionalDistrictCode" : "8"}, {"Name" : "Bella Bella 1", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Bella Coola 1", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast A", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast C", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast D", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Central Coast E", "Type" : "", "RegionalDistrictCode" : "9"}, {"Name" : "Katit 1", "Type" : "", "RegionalDistrictCode" : "9"}]'; BEGIN + -- Cleanup existing data in "Communities" table + DELETE FROM public."Communities"; -- Insert into "Communities" table INSERT INTO public."Communities" ("Id", "Name", "Type","RegionalDistrictCode", "ExtraProperties", "ConcurrencyStamp", "CreationTime") @@ -16,4 +18,4 @@ BEGIN pg_catalog.now() FROM jsonb_array_elements(json_data::jsonb) AS data; -END $$; +END $$; \ No newline at end of file diff --git a/database/unity-backup-cronjob.yaml b/database/unity-backup-cronjob.yaml deleted file mode 100644 index e0ed02caf2..0000000000 --- a/database/unity-backup-cronjob.yaml +++ /dev/null @@ -1,167 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -message: |- - A scheduled cronjob has been created in your project: unity-backup. - For more information about using this template, including OpenShift considerations, - see template usage guide found in the project readme.md and wiki documents. -metadata: - name: unity-backup-cronjob - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\database\unity-backup-cronjob.yaml --param-file=backup-cronjob.env | oc create -f - - labels: - template: unity-backup-cronjob - annotations: - description: |- - Template for running a recurring backup script in OpenShift. - iconClass: icon-build - openshift.io/display-name: Database Backup Cronjob - template.openshift.io/long-description: |- - This template defines resources needed to run a Postgres-16 container application. - tags: database,postgresql -parameters: -# Project namespace parameters -- description: The name of the backup application. - displayName: Application Name - name: APPLICATION_NAME - required: true - value: unity-backup-cronjob -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - required: true - value: unity-grantmanager -# Additional parameters for project database provisioning. -- description: The name of the OpenShift Service exposed for the database. - displayName: Database Service Name - name: DATABASE_SERVICE_NAME - required: true - value: unity-data-postgres -- name: DATABASE_BACKUP_KEEP - description: 'Number of backups to keep' - value: '1' -- name: DATABASE_BACKUP_SCHEDULE - description: 'Cron-like schedule expression m h D M DayOfWeek add +7/8 hours for UTC conversions' - required: true - value: '0 14 * * *' -- name: DATABASE_BACKUP_VOLUME_CLAIM - description: 'Name of the volume claim to be used as storage' - required: true - value: unity-data-backup -- description: The name of the storage object. - displayName: Object Storage Name - name: STORAGE_OBJECT_NAME - required: true - value: s3-object-storage -- description: The Namespace where the container image resides default=project-tools cluster=openshift, source=registry.redhat.io/rhel9/postgresql-16 - displayName: Registry Namespace - name: IMAGEPULL_NAMESPACE - from: '[a-zA-Z0-9]{5}-tools' - generate: expression -- description: The Openshift ImageStream Name - displayName: Registry imagestream name - name: IMAGESTREAM_NAME - required: true - value: postgresql-16 -- description: The version of the postgresql container image to use. - displayName: Registry container image to pull - name: IMAGESTREAM_TAG - required: true - value: latest -- description: The registry path of the postgresql container image to use. - displayName: Registry container image to pull - name: IMAGEPULL_REGISTRY - required: true - value: image-registry.apps.silver.devops.gov.bc.ca -# Resource limits -- description: The minimum amount of CPU the container is guaranteed. - displayName: CPU Request - name: CPU_REQUEST - required: true - value: 50m -- description: The minimum amount of memory the container is guaranteed. - displayName: Memory Request - name: MEMORY_REQUEST - required: true - value: 64Mi -# Template objects to instantiate the project. -objects: -# Recurring cronjob for Database Backups -- apiVersion: batch/v1 - kind: CronJob - metadata: - name: ${APPLICATION_NAME} - labels: - job-name: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - # Cronjob script works with both database or instance backup commands - # pg_dump --username=$UNITY_POSTGRES_USER --host=$UNITY_DB_HOST --port=$UNITY_DB_PORT --column-inserts --clean --create ${DATABASE_SERVICE_NAME} - # pg_dumpall --username=$UNITY_POSTGRES_USER --host=$UNITY_DB_HOST --port=$UNITY_DB_PORT --column-inserts --clean - spec: - schedule: ${DATABASE_BACKUP_SCHEDULE} - concurrencyPolicy: Forbid - successfulJobsHistoryLimit: 1 - failedJobsHistoryLimit: 1 - jobTemplate: - spec: - template: - spec: - volumes: - - name: ${APPLICATION_NAME} - persistentVolumeClaim: - claimName: ${DATABASE_BACKUP_VOLUME_CLAIM} - containers: - - name: ${APPLICATION_NAME} - image: ${IMAGEPULL_REGISTRY}/${IMAGEPULL_NAMESPACE}/${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG} - command: - - 'bash' - - '-eo' - - 'pipefail' - - '-c' - - > - trap "echo Backup failed; exit 0" ERR; date; - FILENAME=dumpall-${DATABASE_SERVICE_NAME}-`date +%Y-%m-%d_%H%M%S`.sql.gz; - time (find /var/lib/pgsql/backups -type f -name "*-${DATABASE_SERVICE_NAME}-*" -exec ls -1tr "{}" + | head -n -$DATABASE_BACKUP_KEEP | xargs rm -fr; - PGPASSWORD="$UNITY_POSTGRES_PASSWORD" pg_dumpall --username=$UNITY_POSTGRES_USER --host=$UNITY_DB_HOST --port=$UNITY_DB_PORT --column-inserts --clean | gzip > /var/lib/pgsql/backups/$FILENAME); - echo "";echo "Backup successful";du -h /var/lib/pgsql/backups/$FILENAME; - echo "to restore the backup use: $ psql --username=$UNITY_POSTGRES_USER --password --host=$UNITY_DB_HOST --port=$UNITY_DB_PORT --username postgres < /var/lib/pgsql/backups/ (unpacked with gunzip)"; - echo "";/var/lib/pgsql/backups/bin/mc alias set $AccessKeyID $RestEndpoint $AccessKeyID $SecretKey;/var/lib/pgsql/backups/bin/mc mirror --remove --summary /var/lib/pgsql/backups $AccessKeyID/$BucketDisplayName/Unity/Backups; - echo "";ls -lR /var/lib/pgsql/backups - env: - - name: RestEndpoint - valueFrom: - configMapKeyRef: - name: ${STORAGE_OBJECT_NAME} - key: S3__Endpoint - - name: AccessKeyID - valueFrom: - secretKeyRef: - name: ${STORAGE_OBJECT_NAME} - key: S3__AccessKeyId - - name: BucketDisplayName - valueFrom: - secretKeyRef: - name: ${STORAGE_OBJECT_NAME} - key: S3__Bucket - - name: SecretKey - valueFrom: - secretKeyRef: - name: ${STORAGE_OBJECT_NAME} - key: S3__SecretAccessKey - - name: DATABASE_BACKUP_KEEP - value: ${DATABASE_BACKUP_KEEP} - - name: TZ - value: Canada/Pacific - envFrom: - - secretRef: - name: ${DATABASE_SERVICE_NAME} - volumeMounts: - - name: ${APPLICATION_NAME} - mountPath: /var/lib/pgsql/backups - resources: - requests: - cpu: ${CPU_REQUEST} - memory: ${MEMORY_REQUEST} - restartPolicy: Never diff --git a/database/unity-database.yaml b/database/unity-database.yaml deleted file mode 100644 index d7555a68e2..0000000000 --- a/database/unity-database.yaml +++ /dev/null @@ -1,239 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -message: |- - A new application been created in your project: unity-database - For more information about using this template, including OpenShift considerations, - see template usage guide found in the project readme.md and wiki documents. -metadata: - name: unity-database - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\database\unity-database.yaml --param-file=unity-database.env | oc create -f - - labels: - template: unity-database - annotations: - description: |- - PostgreSQL database service with persistent storage. - NOTE: Scaling to more than one replica is not supported. - iconClass: icon-postgresql - openshift.io/display-name: PostgreSQL - openshift.io/long-description: This template provides a standalone PostgreSQL - server with an initial database created. The database is stored on persistent storage. - The database name, username, and password are selected through parameters during provisioning. - tags: database,postgresql -parameters: -# Project namespace parameters -- description: The name of the backup application. - displayName: Application Name - name: APPLICATION_NAME - required: false - value: unity-databaase -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - required: true - value: unity-tools -# Additional parameters for project database provisioning. -- description: The name of the OpenShift Service exposed for the database. - displayName: Database Service Name - name: DATABASE_SERVICE_NAME - required: true - value: unity-database -- description: The port exposed for the database. - displayName: Database Service Port - name: DATABASE_PORT - required: true - value: "5432" -- description: Username for PostgreSQL user that will be used for accessing the database. - displayName: PostgreSQL Connection Username - name: POSTGRESQL_USER - required: false - value: "postgres" -- description: Password for the PostgreSQL connection user. - displayName: PostgreSQL Connection Password - name: POSTGRESQL_PASSWORD - required: false - from: '[a-zA-Z0-9]{26}' - generate: expression -- description: Name of the PostgreSQL database accessed. - displayName: PostgreSQL Database Name - name: POSTGRESQL_DATABASE - required: true - value: postgres -- description: Volume space for data directory. - displayName: Volume Capacity - name: VOLUME_CAPACITY - required: true - value: 256Mi -- description: The Namespace where the container image resides default=project-tools cluster=openshift, source=registry.redhat.io/rhel9/postgresql-16 - displayName: Registry Namespace - name: IMAGEPULL_NAMESPACE - from: '[a-zA-Z0-9]{5}-tools' - generate: expression -- description: The Openshift ImageStream Name - displayName: Registry imagestream name - name: IMAGESTREAM_NAME - required: true - value: postgresql-16 -- description: The version of the postgresql container image to use. - displayName: Registry container image to pull - name: IMAGESTREAM_TAG - required: true - value: latest -- description: The registry path of the postgresql container image to use. - displayName: Registry container image to pull - name: IMAGEPULL_REGISTRY - required: true - value: image-registry.apps.silver.devops.gov.bc.ca -# Resource limits -- description: The minimum amount of CPU the container is guaranteed. - displayName: CPU Request - name: CPU_REQUEST - required: true - value: 50m -- description: The minimum amount of memory the container is guaranteed. - displayName: Memory Request - name: MEMORY_REQUEST - required: true - value: 64Mi -# Template objects to instantiate the project. -objects: -# Secrets -- apiVersion: v1 - kind: Secret - metadata: - annotations: - template.openshift.io/expose-database_name: '{.data[''POSTGRES_DATABASE'']}' - template.openshift.io/expose-password: '{.data[''POSTGRES_PASSWORD'']}' - template.openshift.io/expose-username: '{.data[''POSTGRES_USER'']}' - name: ${DATABASE_SERVICE_NAME} - labels: - app: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/component: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/instance: ${DATABASE_SERVICE_NAME}-1 - app.kubernetes.io/name: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - stringData: - POSTGRES_USER: ${POSTGRESQL_USER} - POSTGRES_DATABASE: ${POSTGRESQL_DATABASE} - POSTGRES_PASSWORD: ${POSTGRESQL_PASSWORD} - type: Opaque -# Service -- apiVersion: v1 - kind: Service - metadata: - annotations: - template.openshift.io/expose-uri: postgres://{.spec.clusterIP}:{.spec.ports[?(.name=="postgresql")].port} - name: ${DATABASE_SERVICE_NAME} - labels: - app: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/component: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/instance: ${DATABASE_SERVICE_NAME}-1 - app.kubernetes.io/name: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - ports: - - name: ${DATABASE_SERVICE_NAME} - nodePort: 0 - protocol: TCP - port: ${{DATABASE_PORT}} - targetPort: ${{DATABASE_PORT}} - selector: - app: ${DATABASE_SERVICE_NAME} - sessionAffinity: None - type: ClusterIP - status: - loadBalancer: {} -# Persistent storage for database backups -- apiVersion: v1 - kind: PersistentVolumeClaim - metadata: - name: unity-data-backup - labels: - app: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/component: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/instance: ${DATABASE_SERVICE_NAME}-1 - app.kubernetes.io/name: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: ${VOLUME_CAPACITY} - storageClassName: netapp-file-backup - volumeMode: Filesystem -# Deployment -- apiVersion: apps/v1 - kind: Deployment - metadata: - annotations: - template.alpha.openshift.io/wait-for-ready: "true" - # Add the trigger annotation - image.openshift.io/triggers: >- - [{"from":{"kind":"ImageStreamTag","name":"${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG}","namespace":"${IMAGEPULL_NAMESPACE}"},"fieldPath":"spec.template.spec.containers[?(@.name==\"${{DATABASE_SERVICE_NAME}\")].image","pause":"false"}] - name: ${DATABASE_SERVICE_NAME} - labels: - app: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/component: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/instance: ${DATABASE_SERVICE_NAME}-1 - app.kubernetes.io/name: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - replicas: 1 - selector: - matchLabels: - app: ${DATABASE_SERVICE_NAME} - template: - metadata: - labels: - app: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/component: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/instance: ${DATABASE_SERVICE_NAME}-1 - app.kubernetes.io/name: ${DATABASE_SERVICE_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - containers: - - name: ${DATABASE_SERVICE_NAME} - image: ${IMAGEPULL_REGISTRY}/${IMAGEPULL_NAMESPACE}/${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG} - ports: - - containerPort: ${{DATABASE_PORT}} - protocol: TCP - env: - - name: POSTGRESQL_ADMIN_PASSWORD - valueFrom: - secretKeyRef: - name: ${DATABASE_SERVICE_NAME} - key: POSTGRES_PASSWORD - livenessProbe: - exec: - command: - - /usr/libexec/check-container - - --live - initialDelaySeconds: 120 - timeoutSeconds: 10 - readinessProbe: - exec: - command: - - /usr/libexec/check-container - initialDelaySeconds: 5 - periodSeconds: 60 - timeoutSeconds: 1 - resources: - requests: - cpu: ${CPU_REQUEST} - memory: ${MEMORY_REQUEST} - terminationMessagePath: /dev/termination-log - envFrom: - - secretRef: - name: ${DATABASE_SERVICE_NAME} - volumeMounts: - - mountPath: /var/lib/pgsql/backups - name: unity-data-backups - dnsPolicy: ClusterFirst - restartPolicy: Always - volumes: - - name: unity-data-backups - persistentVolumeClaim: - claimName: unity-data-backup - strategy: - type: Recreate diff --git a/applications/Unity.GrantManager/docs/ApplicantPortalIntegration.md b/documentation/applicant-portal/applicant-portal-integration.md similarity index 94% rename from applications/Unity.GrantManager/docs/ApplicantPortalIntegration.md rename to documentation/applicant-portal/applicant-portal-integration.md index c47190351d..4595cffcd1 100644 --- a/applications/Unity.GrantManager/docs/ApplicantPortalIntegration.md +++ b/documentation/applicant-portal/applicant-portal-integration.md @@ -69,7 +69,7 @@ X-Api-Key: {your-api-key} ### 1. Get Applicant Profile -Retrieves basic profile information for an applicant. +Retrieves applicant profile data based on the specified key. The response `data` property is polymorphic and varies by key. See [Applicant Profile Data Providers](./applicant-profile-data-providers.md) for full details on each provider. **Endpoint**: `GET /api/app/applicant-profiles/profile` @@ -79,20 +79,33 @@ Retrieves basic profile information for an applicant. | `ProfileId` | `Guid` | Yes | Unique identifier for the applicant profile | | `Subject` | `string` | Yes | OIDC subject identifier (e.g., `user@idp`) | | `TenantId` | `Guid` | Yes | The tenant ID to query within | +| `Key` | `string` | Yes | The data type to retrieve: `CONTACTINFO`, `ADDRESSINFO`, `SUBMISSIONINFO`, `ORGINFO`, `PAYMENTINFO` | **Request Example**: ```http -GET /api/app/applicant-profiles/profile?ProfileId=3fa85f64-5717-4562-b3fc-2c963f66afa6&Subject=smzfrrla7j5hw6z7wzvyzdrtq6dj6fbr@chefs-frontend-5299&TenantId=7c9e6679-7425-40de-944b-e07fc1f90ae7 +GET /api/app/applicant-profiles/profile?ProfileId=3fa85f64-5717-4562-b3fc-2c963f66afa6&Subject=smzfrrla7j5hw6z7wzvyzdrtq6dj6fbr@chefs-frontend-5299&TenantId=7c9e6679-7425-40de-944b-e07fc1f90ae7&Key=CONTACTINFO X-Api-Key: your-api-key-here ``` -**Response Example** (200 OK): +**Response Example** (200 OK — `Key=CONTACTINFO`): ```json { "profileId": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "subject": "smzfrrla7j5hw6z7wzvyzdrtq6dj6fbr@chefs-frontend-5299", - "email": "applicant@example.com", - "displayName": "John Doe" + "key": "CONTACTINFO", + "tenantId": "7c9e6679-7425-40de-944b-e07fc1f90ae7", + "data": { + "dataType": "CONTACTINFO", + "contacts": [ + { + "contactId": "a1b2c3d4-...", + "name": "John Doe", + "email": "applicant@example.com", + "contactType": "ApplicantProfile", + "isEditable": true + } + ] + } } ``` @@ -102,11 +115,14 @@ public class ApplicantProfileDto { public Guid ProfileId { get; set; } public string Subject { get; set; } - public string Email { get; set; } - public string DisplayName { get; set; } + public string Key { get; set; } + public Guid TenantId { get; set; } + public ApplicantProfileDataDto? Data { get; set; } // Polymorphic — varies by Key } ``` +The `Data` property uses a JSON discriminator (`dataType`) for polymorphic deserialization. See [Applicant Profile Data Providers](./applicant-profile-data-providers.md) for the complete schema of each data type. + --- ### 2. Get Applicant Tenants @@ -159,25 +175,32 @@ public class ApplicantTenantDto ## Subject Identifier Format -The system extracts and normalizes OIDC subject identifiers as follows: +The system extracts and normalizes OIDC subject identifiers as follows. For full extraction logic including the CHEFS form prerequisite and token structure, see [OIDC Subject Ingestion from CHEFS](./applicant-profile-data-providers.md#oidc-subject-ingestion-from-chefs). ### Input Formats Supported -1. **From CHEFS Submission**: + +Search paths are checked in priority order until a non-empty value is found: + +1. **From CHEFS Submission (primary)**: + - Path: `submission.data.applicantAgent.sub` + - Example: `"smzfrrla7j5hw6z7wzvyzdrtq6dj6fbr@chefs-frontend-5299"` + +2. **From CHEFS Submission (alternate)**: - Path: `submission.data.hiddenApplicantAgent.sub` - Example: `"smzfrrla7j5hw6z7wzvyzdrtq6dj6fbr@chefs-frontend-5299"` -2. **From CreatedBy Field**: - - Path: `submission.createdBy` +3. **From CreatedBy Field (fallback)**: + - Path: `createdBy` - Example: `"anonymous@bcservicescard"` ### Normalization Rules 1. Extract the identifier **before** the `@` symbol 2. Convert to **UPPERCASE** -3. Store in `AppApplicantTenantMaps.OidcSubUsername` +3. Store in `AppApplicantTenantMaps.OidcSubUsername` and `ApplicationFormSubmission.OidcSub` **Examples**: -- `smzfrrla7j5hw6z7wzvyzdrtq6dj6fbr@chefs-frontend-5299` ? `SMZFRRLA7J5HW6Z7WZVYZDRTQ6DJ6FBR` -- `anonymous@bcservicescard` ? `ANONYMOUS` +- `smzfrrla7j5hw6z7wzvyzdrtq6dj6fbr@chefs-frontend-5299` --> `SMZFRRLA7J5HW6Z7WZVYZDRTQ6DJ6FBR` +- `anonymous@bcservicescard` --> `ANONYMOUS` **Implementation**: See `IntakeSubmissionHelper.ExtractOidcSub(dynamic submission)` @@ -472,7 +495,7 @@ graph TB ### Message Flow Patterns -#### 1. Commands (Applicant Portal ? Unity) +#### 1. Commands (Applicant Portal --> Unity) Commands represent requests from the Applicant Portal for Unity to perform an action. @@ -513,7 +536,7 @@ sequenceDiagram - Trigger: User requests status update - Action: Unity publishes current status event -#### 2. Events (Unity ? Applicant Portal) +#### 2. Events (Unity --> Applicant Portal) Events represent notifications about things that have happened in Unity. @@ -1087,13 +1110,13 @@ public class EncryptedMessage #### Planned Message Types -**Commands** (Portal ? Unity): +**Commands** (Portal --> Unity): - `CreateApplicationDraftCommand` - `UploadDocumentCommand` - `WithdrawApplicationCommand` - `RequestApplicationReviewCommand` -**Events** (Unity ? Portal): +**Events** (Unity --> Portal): - `ReviewerAssignedEvent` - `AssessmentCompletedEvent` - `FundingAgreementGeneratedEvent` @@ -1549,7 +1572,7 @@ For issues or questions: ## Related Documentation -- [Applicant Tenant Mapping Implementation](./ApplicantTenantMapping.md) - Technical implementation details +- [Applicant Profile Data Providers](./applicant-profile-data-providers.md) - Provider strategy, data flow diagrams, and OIDC subject extraction details - [API Key Authentication](../src/Unity.GrantManager.HttpApi/Controllers/Authentication/README.md) - Authentication setup - [Background Jobs](../src/Unity.GrantManager.Application/HealthChecks/BackgroundWorkers/README.md) - Background worker configuration diff --git a/documentation/applicant-portal/applicant-profile-data-providers.md b/documentation/applicant-portal/applicant-profile-data-providers.md new file mode 100644 index 0000000000..438f7a1bbf --- /dev/null +++ b/documentation/applicant-portal/applicant-profile-data-providers.md @@ -0,0 +1,572 @@ +# Applicant Profile Data Providers + +## Overview + +The Applicant Profile system exposes a single polymorphic API endpoint that returns different data shapes depending on a **key** parameter. The controller delegates to `ApplicantProfileAppService`, which resolves the correct `IApplicantProfileDataProvider` implementation using a strategy/dictionary pattern. + +All providers are registered via ABP's `[ExposeServices]` attribute and collected as `IEnumerable` in the app service constructor, where they are indexed by their `Key` property. + +--- + +## Entry Point + +**Endpoint:** `GET /api/app/applicant-profiles/profile` + +**Authentication:** API Key (via `ApiKeyAuthorizationFilter`) + +**Query Parameters** (`ApplicantProfileInfoRequest`): + +| Parameter | Type | Description | +|-------------|--------|--------------------------------------------------------------| +| `ProfileId` | `Guid` | The applicant profile identifier | +| `Subject` | `string` | The OIDC subject (e.g. `user@idir`) | +| `TenantId` | `Guid` | The tenant to scope the query to | +| `Key` | `string` | The provider key — determines which data type is returned | + +**Supported Keys:** + +| Key | Provider Class | DTO Returned | Status | +|------------------|------------------------------|-------------------------------|-----------------| +| `CONTACTINFO` | `ContactInfoDataProvider` | `ApplicantContactInfoDto` | ✅ Implemented | +| `ADDRESSINFO` | `AddressInfoDataProvider` | `ApplicantAddressInfoDto` | ✅ Implemented | +| `SUBMISSIONINFO` | `SubmissionInfoDataProvider` | `ApplicantSubmissionInfoDto` | ✅ Implemented | +| `ORGINFO` | `OrgInfoDataProvider` | `ApplicantOrgInfoDto` | ⬜ Placeholder | +| `PAYMENTINFO` | `PaymentInfoDataProvider` | `ApplicantPaymentInfoDto` | ⬜ Placeholder | + +**Response:** `ApplicantProfileDto` with a polymorphic `Data` property (JSON discriminator: `dataType`). + +--- + +## High-Level Architecture + +```mermaid +graph TB + Client([External Client]) + Controller["ApplicantProfileController
GET /api/app/applicant-profiles/profile"] + Filter["ApiKeyAuthorizationFilter"] + AppService["ApplicantProfileAppService"] + ProviderDict["Provider Dictionary
key to IApplicantProfileDataProvider"] + + Client -->|"HTTP GET ?Key=..."| Controller + Controller --> Filter + Filter -->|Authorized| AppService + AppService -->|"Lookup by Key"| ProviderDict + + ProviderDict --> ContactProvider["ContactInfoDataProvider
CONTACTINFO"] + ProviderDict --> AddressProvider["AddressInfoDataProvider
ADDRESSINFO"] + ProviderDict --> SubmissionProvider["SubmissionInfoDataProvider
SUBMISSIONINFO"] + ProviderDict --> OrgProvider["OrgInfoDataProvider
ORGINFO
placeholder"] + ProviderDict --> PaymentProvider["PaymentInfoDataProvider
PAYMENTINFO
placeholder"] + + style OrgProvider fill:#f5f5f5,stroke:#bbb,stroke-dasharray:5 + style PaymentProvider fill:#f5f5f5,stroke:#bbb,stroke-dasharray:5 +``` + +--- + +## Dispatch Flow + +The `ApplicantProfileAppService.GetApplicantProfileAsync` method is the central orchestrator. It: + +1. Creates a new `ApplicantProfileDto` and copies request fields (`ProfileId`, `Subject`, `TenantId`, `Key`). +2. Looks up the matching `IApplicantProfileDataProvider` by `Key` in an in-memory dictionary (case-insensitive). +3. Calls `provider.GetDataAsync(request)` if found; otherwise logs a warning. +4. Returns the DTO with the polymorphic `Data` property populated. + +```mermaid +sequenceDiagram + participant C as Client + participant Ctrl as ApplicantProfileController + participant Svc as ApplicantProfileAppService + participant Dict as Provider Dictionary + participant P as IApplicantProfileDataProvider + + C->>Ctrl: GET /api/app/applicant-profiles/profile?Key=X&... + Ctrl->>Svc: GetApplicantProfileAsync(request) + Svc->>Dict: TryGetValue(request.Key) + alt Key found + Dict-->>Svc: provider + Svc->>P: GetDataAsync(request) + P-->>Svc: ApplicantProfileDataDto (concrete subclass) + else Key not found + Svc->>Svc: Log warning + end + Svc-->>Ctrl: ApplicantProfileDto { Data = ... } + Ctrl-->>C: 200 OK (JSON) +``` + +--- + +## Provider Details + +### 1. ContactInfoDataProvider (`CONTACTINFO`) + +**Purpose:** Aggregates contact information from three sources — profile-linked contacts, application-level contacts, and applicant agent contacts derived from the submission login token. + +**Dependencies:** +- `ICurrentTenant` — for multi-tenant scoping +- `IApplicantProfileContactService` — encapsulates contact query logic + +**Logic:** + +1. Switches to the requested tenant context. +2. Retrieves **profile contacts** — contacts linked to the applicant profile via `ContactLink` records where `RelatedEntityType == "ApplicantProfile"` and `RelatedEntityId == profileId`. These are **editable** (`IsEditable = true`). +3. Retrieves **application contacts** — contacts on applications whose form submissions match the normalized OIDC subject. These are **read-only** (`IsEditable = false`). +4. Retrieves **applicant agent contacts** — contact information derived from `ApplicantAgent` records on applications whose form submissions match the normalized OIDC subject. The join path is `Submission → Application → ApplicantAgent`. These are **read-only** (`IsEditable = false`). +5. Merges all three lists into a single `ApplicantContactInfoDto.Contacts` collection. + +**Subject Normalization:** The OIDC subject (e.g. `user@idir`) is normalized by stripping everything after `@` and converting to uppercase. + +```mermaid +flowchart TD + Start([GetDataAsync called]) + Tenant["Switch to request.TenantId"] + + subgraph ProfileContacts["Profile Contacts - Editable"] + PC1["Query ContactLink
WHERE RelatedEntityType = 'ApplicantProfile'
AND RelatedEntityId = profileId
AND IsActive = true"] + PC2["JOIN Contact ON ContactId"] + PC3["Map to ContactInfoItemDto
IsEditable = true"] + PC1 --> PC2 --> PC3 + end + + subgraph AppContacts["Application Contacts - Read-Only"] + AC1["Normalize Subject
strip domain, uppercase"] + AC2["Query ApplicationFormSubmission
WHERE OidcSub = normalizedSubject"] + AC3["JOIN ApplicationContact
ON ApplicationId"] + AC3b["JOIN Application
ON ApplicationId
for ReferenceNo"] + AC4["Map to ContactInfoItemDto
IsEditable = false"] + AC1 --> AC2 --> AC3 --> AC3b --> AC4 + end + + subgraph AgentContacts["Applicant Agent Contacts - Read-Only"] + AG1["Normalize Subject
strip domain, uppercase"] + AG2["Query ApplicationFormSubmission
WHERE OidcSub = normalizedSubject"] + AG3["JOIN ApplicantAgent
ON ApplicationId"] + AG3b["JOIN Application
ON ApplicationId
for ReferenceNo"] + AG4["Map to ContactInfoItemDto
ContactType = 'ApplicantAgent'
IsEditable = false"] + AG1 --> AG2 --> AG3 --> AG3b --> AG4 + end + + Start --> Tenant + Tenant --> PC1 + Tenant --> AC1 + Tenant --> AG1 + PC3 --> Merge["Merge into Contacts list"] + AC4 --> Merge + AG4 --> Merge + Merge --> Return([Return ApplicantContactInfoDto]) +``` + +**Data Sources:** + +| Source | Entity | Join Path | Editable | +|--------|--------|-----------|----------| +| Profile Contacts | `ContactLink` → `Contact` | `ContactLink.RelatedEntityId = profileId` | ✅ Yes | +| Application Contacts | `ApplicationFormSubmission` → `ApplicationContact` → `Application` | `Submission.OidcSub = normalizedSubject`, `Application.Id` for `ReferenceNo` | ❌ No | +| Applicant Agent Contacts | `ApplicationFormSubmission` → `ApplicantAgent` → `Application` | `Submission.ApplicationId = Agent.ApplicationId`, `Application.Id` for `ReferenceNo` | ❌ No | + +**Applicant Agent Field Mapping:** + +The `ApplicantAgent` entity is populated from the CHEFS submission login token during intake import. Its fields are mapped to `ContactInfoItemDto` as follows: + +| ApplicantAgent Field | ContactInfoItemDto Field | +|---------------------|-------------------------| +| `Id` | `ContactId` | +| `Name` | `Name` | +| `Title` | `Title` | +| `Email` | `Email` | +| `Phone` | `WorkPhoneNumber` | +| `PhoneExtension` | `WorkPhoneExtension` | +| `Phone2` | `MobilePhoneNumber` | +| `RoleForApplicant` | `Role` | +| `ApplicationId` | `ApplicationId` | +| `Application.ReferenceNo` | `ReferenceNo` | +| _(literal)_ `"ApplicantAgent"` | `ContactType` | + +--- + +### 2. AddressInfoDataProvider (`ADDRESSINFO`) + +**Purpose:** Retrieves applicant addresses by querying address records linked to the applicant's form submissions. Addresses are resolved via two join paths and deduplicated. + +**Dependencies:** +- `ICurrentTenant` — for multi-tenant scoping +- `IRepository` — form submissions +- `IRepository` — address records +- `IRepository` — applications (for `ReferenceNo`) + +**Logic:** + +1. Normalizes the OIDC subject. +2. Switches to the requested tenant context. +3. Queries addresses through **two join paths**: + - **By ApplicationId:** `Submission → Address (on ApplicationId) → Application` — these are **not editable** (owned by an application). + - **By ApplicantId:** `Submission → Address (on ApplicantId) → Application (LEFT JOIN)` — these are **editable** (owned by the applicant directly). +4. Concatenates both result sets. +5. **Deduplicates** by `Address.Id` — if the same address appears in both sets, the application-linked (non-editable) version takes priority. +6. Maps `AddressType` enum values to human-readable names (`Physical`, `Mailing`, `Business`). +7. Checks the `isPrimary` extended property on addresses; if no address is marked primary, the most recently created address is auto-promoted. + +```mermaid +flowchart TD + Start([GetDataAsync called]) + Norm["Normalize Subject
strip domain, uppercase"] + Tenant["Switch to request.TenantId"] + + Start --> Norm --> Tenant + + subgraph ByAppId["Join Path: By ApplicationId - Read-Only"] + A1["ApplicationFormSubmission
WHERE OidcSub = normalized"] + A2["JOIN ApplicantAddress
ON Submission.ApplicationId = Address.ApplicationId"] + A3["JOIN Application
ON Address.ApplicationId = Application.Id"] + A4["IsEditable = false"] + A1 --> A2 --> A3 --> A4 + end + + subgraph ByApplicantId["Join Path: By ApplicantId - Editable"] + B1["ApplicationFormSubmission
WHERE OidcSub = normalized"] + B2["JOIN ApplicantAddress
ON Submission.ApplicantId = Address.ApplicantId"] + B3["LEFT JOIN Application
ON Address.ApplicationId = Application.Id"] + B4["IsEditable = true"] + B1 --> B2 --> B3 --> B4 + end + + Tenant --> A1 + Tenant --> B1 + + A4 --> Concat["CONCAT both result sets"] + B4 --> Concat + Concat --> Dedup["Deduplicate by Address.Id
prefer IsEditable = false"] + Dedup --> Map["Map to AddressInfoItemDto
AddressType to display name
Check isPrimary extended property"] + Map --> Primary{"Any address
marked primary?"} + Primary -->|Yes| Return([Return ApplicantAddressInfoDto]) + Primary -->|No| AutoPrimary["Mark most recent
address as primary"] + AutoPrimary --> Return +``` + +**Deduplication Rule:** When the same address ID appears in both join paths, the application-linked record (`IsEditable = false`) wins. This is achieved by grouping on `Address.Id` and ordering by `IsEditable` ascending (`false` < `true`). + +--- + +### 3. SubmissionInfoDataProvider (`SUBMISSIONINFO`) + +**Purpose:** Lists all form submissions associated with the applicant's OIDC subject, along with application metadata and a link to view the form in CHEFS. + +**Dependencies:** +- `ICurrentTenant` — for multi-tenant scoping +- `IRepository` — form submissions +- `IRepository` — applications +- `IRepository` — status records +- `IEndpointManagementAppService` — resolves the CHEFS API base URL +- `ILogger` — logging + +**Logic:** + +1. Normalizes the OIDC subject. +2. Resolves the **CHEFS form view URL** from the `INTAKE_API_BASE` dynamic URL setting: + - Fetches the base URL (e.g. `https://chefs-dev.apps.silver.devops.gov.bc.ca/app/api/v1`) + - Strips the trailing `/api/v1` segment + - Appends `/form/view?s=` to create the view link template + - Falls back to an empty string on failure. +3. Switches to the requested tenant context. +4. Queries `ApplicationFormSubmission` → `Application` → `ApplicationStatus` where `OidcSub` matches. +5. Maps each result to a `SubmissionInfoItemDto`: + - `ReceivedTime` = the submission's `CreationTime` in the system. + - `SubmissionTime` = the `createdAt` timestamp parsed from the CHEFS JSON payload; falls back to `CreationTime` if parsing fails. + - `Status` = the `ExternalStatus` from the application status record. + - `LinkId` = the `ChefsSubmissionGuid` used to build a direct link to the form. + +```mermaid +flowchart TD + Start([GetDataAsync called]) + Norm["Normalize Subject
strip domain, uppercase"] + + Start --> Norm + Norm --> ResolveUrl["ResolveFormViewUrlAsync"] + Norm --> Tenant["Switch to request.TenantId"] + + subgraph URLResolution["CHEFS Form View URL Resolution"] + U1["Fetch INTAKE_API_BASE
via IEndpointManagementAppService"] + U2["Strip trailing /api/v1"] + U3["Append /form/view?s="] + U4["Set as dto.LinkSource"] + U1 --> U2 --> U3 --> U4 + end + + ResolveUrl --> U1 + + subgraph Query["Submission Query"] + Q1["ApplicationFormSubmission
WHERE OidcSub = normalized"] + Q2["JOIN Application
ON Submission.ApplicationId = Application.Id"] + Q3["JOIN ApplicationStatus
ON Application.ApplicationStatusId = Status.Id"] + Q4["SELECT Id, ChefsSubmissionGuid,
CreationTime, Submission JSON,
ReferenceNo, ProjectName, ExternalStatus"] + Q1 --> Q2 --> Q3 --> Q4 + end + + Tenant --> Q1 + + Q4 --> MapItems["Map to SubmissionInfoItemDto
ReceivedTime = CreationTime
SubmissionTime = parse JSON createdAt
Status = ExternalStatus
LinkId = ChefsSubmissionGuid"] + + U4 --> Result + MapItems --> Result([Return ApplicantSubmissionInfoDto]) +``` + +**Submission Time Resolution:** + +```mermaid +flowchart LR + JSON["Submission JSON"] + Parse{"Parse JSON?"} + HasField{"Has 'createdAt'
field?"} + ValidDate{"Valid DateTime?"} + Use["Use parsed DateTime"] + Fallback["Use CreationTime
(fallback)"] + + JSON --> Parse + Parse -->|Success| HasField + Parse -->|JsonException| Fallback + HasField -->|Yes| ValidDate + HasField -->|No| Fallback + ValidDate -->|Yes| Use + ValidDate -->|No| Fallback +``` + +--- + +### 4. OrgInfoDataProvider (`ORGINFO`) — Placeholder + +**Purpose:** Will provide organization information for the applicant profile. + +**Current Status:** Returns an empty `ApplicantOrgInfoDto` with no data fields populated. No dependencies or query logic implemented yet. + +--- + +### 5. PaymentInfoDataProvider (`PAYMENTINFO`) — Placeholder + +**Purpose:** Will provide payment information for the applicant profile. + +**Current Status:** Returns an empty `ApplicantPaymentInfoDto` with no data fields populated. No dependencies or query logic implemented yet. + +--- + +## Common Patterns + +### Subject Normalization + +All providers that query by OIDC subject apply the same normalization: + +``` +Input: "5ay5pewjqddncvlzlukm3gn2r7vdzq6q@chefs-frontend-5299" → Output: "5AY5PEWJQDDNCVLZLUKM3GN2R7VDZQ6Q" +Input: "user@idir" → Output: "USER" +Input: "USER" → Output: "USER" +``` + +The portion after `@` is stripped and the remainder is uppercased. This matches the format stored in `ApplicationFormSubmission.OidcSub`, which is populated during intake import (see [OIDC Subject Ingestion from CHEFS](#oidc-subject-ingestion-from-chefs) below). + +### Multi-Tenancy + +Every provider switches to the requested `TenantId` using `ICurrentTenant.Change(request.TenantId)` before querying tenant-scoped data. This ensures queries hit the correct tenant database. + +### Polymorphic Serialization + +The `ApplicantProfileDataDto` base class uses `System.Text.Json` polymorphic attributes: + +``` +[JsonPolymorphic(TypeDiscriminatorPropertyName = "dataType")] +[JsonDerivedType(typeof(ApplicantContactInfoDto), "CONTACTINFO")] +[JsonDerivedType(typeof(ApplicantOrgInfoDto), "ORGINFO")] +[JsonDerivedType(typeof(ApplicantAddressInfoDto), "ADDRESSINFO")] +[JsonDerivedType(typeof(ApplicantSubmissionInfoDto), "SUBMISSIONINFO")] +[JsonDerivedType(typeof(ApplicantPaymentInfoDto), "PAYMENTINFO")] +``` + +The JSON response includes a `dataType` discriminator field so consumers can deserialize the correct concrete type. + +### Editability + +Providers distinguish between **editable** and **read-only** data: + +| Provider | Editable Source | Read-Only Source | +|----------|----------------|-----------------| +| ContactInfo | Profile-linked contacts | Application-level contacts, Applicant agent contacts | +| AddressInfo | Addresses linked via ApplicantId | Addresses linked via ApplicationId | + +--- + +## OIDC Subject Ingestion from CHEFS + +The `OidcSub` field stored on `ApplicationFormSubmission` is the key that links submissions to an applicant across the profile system. It is populated **at intake import time** by `IntakeFormSubmissionManager.ProcessFormSubmissionAsync`, which calls `IntakeSubmissionHelper.ExtractOidcSub`. + +### CHEFS Form Prerequisite + +For the OIDC subject to be available, the CHEFS form **must** include a **hidden form control** whose value is set to the authenticated user's JWT token. When the form is submitted, CHEFS includes this token payload in the submission JSON, making the `sub` claim accessible to the import process. + +If this hidden control is not configured, the `sub` field will be absent and `ExtractOidcSub` will fall back to `Guid.Empty`. + +### Token Structure in CHEFS Submission JSON + +When set up correctly, the submission JSON received from CHEFS contains the decoded token as a nested object. Example: + +```json +{ + "submission": { + "data": { + "applicantAgent": { + "aud": "chefs-frontend-5299", + "azp": "chefs-frontend-5299", + "exp": 1770327585, + "iat": 1770327285, + "iss": "https://dev.loginproxy.gov.bc.ca/auth/realms/standard", + "jti": "onrtac:b2571d2d-ebbf-4f50-aaf8-5d603aa6a171", + "sub": "5ay5pewjqddncvlzlukm3gn2r7vdzq6q@chefs-frontend-5299", + "typ": "Bearer", + "scope": "openid chefs-frontend-5299 idir bceidbusiness email profile bceidbasic", + "family_name": "SURFACE", + "given_names": "PRISCILA", + "identity_provider": "chefs-frontend-5299", + "preferred_username": "5ay5pewjqddncvlzlukm3gn2r7vdzq6q@chefs-frontend-5299" + } + } + } +} +``` + +### Extraction Logic (`IntakeSubmissionHelper.ExtractOidcSub`) + +The helper searches the dynamic submission object through **multiple configured paths** in priority order until a non-empty value is found: + +| Priority | Search Path | Description | +|----------|------------|-------------| +| 1 | `submission→data→applicantAgent→sub` | Primary path — standard hidden control name | +| 2 | `submission→data→hiddenApplicantAgent→sub` | Alternate hidden control name | +| 3 | `createdBy` | Top-level CHEFS fallback field | + +Once the raw `sub` value is found (e.g. `5ay5pewjqddncvlzlukm3gn2r7vdzq6q@chefs-frontend-5299`), it is normalized: +- Everything after `@` is stripped → `5ay5pewjqddncvlzlukm3gn2r7vdzq6q` +- Converted to uppercase → `5AY5PEWJQDDNCVLZLUKM3GN2R7VDZQ6Q` +- If no value is found, returns `Guid.Empty` as a string + +```mermaid +flowchart TD + Start([CHEFS Submission Received]) + Import["IntakeFormSubmissionManager
ProcessFormSubmissionAsync"] + Extract["IntakeSubmissionHelper.ExtractOidcSub"] + P1{"Try: submission / data /
applicantAgent / sub"} + P2{"Try: submission / data /
hiddenApplicantAgent / sub"} + P3{"Try: createdBy"} + Strip["Strip domain suffix"] + Upper["Convert to uppercase"] + Empty["Use Guid.Empty"] + Store["Store as ApplicationFormSubmission.OidcSub"] + Used(["Used by all providers to
match submissions to the applicant"]) + + Start --> Import --> Extract + Extract --> P1 + P1 -->|found| Strip + P1 -->|empty| P2 + P2 -->|found| Strip + P2 -->|empty| P3 + P3 -->|found| Strip + P3 -->|empty| Empty + Strip --> Upper --> Store + Empty --> Store + Store --> Used +``` + +### Import Call Site + +In `IntakeFormSubmissionManager.ProcessFormSubmissionAsync`: + +```csharp +var newSubmission = new ApplicationFormSubmission +{ + OidcSub = IntakeSubmissionHelper.ExtractOidcSub(formSubmission.submission), + ApplicantId = application.ApplicantId, + ApplicationFormId = applicationForm.Id, + ChefsSubmissionGuid = intakeMap.SubmissionId ?? $"{Guid.Empty}", + ApplicationId = application.Id, + Submission = dataNode?.ToString() ?? string.Empty +}; +``` + +The `formSubmission.submission` object passed to `ExtractOidcSub` is the `submission` node from the CHEFS JSON payload. The helper traverses into `data→applicantAgent→sub` to reach the token's `sub` claim. + +--- + +## Full Request Lifecycle + +```mermaid +sequenceDiagram + participant Client + participant Controller as ApplicantProfileController + participant AuthFilter as ApiKeyAuthorizationFilter + participant AppService as ApplicantProfileAppService + participant Provider as IApplicantProfileDataProvider + participant TenantCtx as ICurrentTenant + participant DB as Tenant Database + + Client->>Controller: GET /api/app/applicant-profiles/profile
?ProfileId=...&Subject=...&TenantId=...&Key=CONTACTINFO + Controller->>AuthFilter: Validate API Key + AuthFilter-->>Controller: ✅ Authorized + Controller->>AppService: GetApplicantProfileAsync(request) + + Note over AppService: Build ApplicantProfileDto shell
with ProfileId, Subject, TenantId, Key + + AppService->>AppService: _providersByKey.TryGetValue("CONTACTINFO") + AppService->>Provider: GetDataAsync(request) + + Provider->>TenantCtx: Change(request.TenantId) + TenantCtx-->>Provider: Scoped to tenant + + Provider->>DB: Query contacts / addresses / submissions + DB-->>Provider: Raw data + + Provider->>Provider: Normalize, deduplicate, map to DTOs + Provider-->>AppService: ApplicantContactInfoDto + + Note over AppService: dto.Data = contactInfoDto + + AppService-->>Controller: ApplicantProfileDto + Controller-->>Client: 200 OK
{ profileId, subject, tenantId, key,
data: { dataType: "CONTACTINFO", contacts: [...] } } +``` + +--- + +## Project Structure + +``` +src/ +├── Unity.GrantManager.Application.Contracts/ApplicantProfile/ +│ ├── ApplicantProfileDto.cs # Response wrapper DTO +│ ├── ApplicantProfileRequest.cs # Request models (base + info) +│ ├── IApplicantProfileAppService.cs # App service interface +│ ├── IApplicantProfileContactService.cs # Contact service interface +│ ├── IApplicantProfileDataProvider.cs # Provider strategy interface +│ └── ProfileData/ +│ ├── ApplicantProfileDataDto.cs # Polymorphic base (discriminator) +│ ├── ApplicantContactInfoDto.cs # CONTACTINFO response +│ ├── ApplicantOrgInfoDto.cs # ORGINFO response (placeholder) +│ ├── ApplicantAddressInfoDto.cs # ADDRESSINFO response +│ ├── ApplicantSubmissionInfoDto.cs # SUBMISSIONINFO response +│ ├── ApplicantPaymentInfoDto.cs # PAYMENTINFO response (placeholder) +│ ├── ContactInfoItemDto.cs # Individual contact item +│ ├── AddressInfoItemDto.cs # Individual address item +│ └── SubmissionInfoItemDto.cs # Individual submission item +│ +├── Unity.GrantManager.Application/ApplicantProfile/ +│ ├── ApplicantProfileAppService.cs # Central orchestrator +│ ├── ApplicantProfileContactService.cs # Contact query logic +│ ├── ApplicantProfileKeys.cs # Key constants +│ ├── AddressInfoDataProvider.cs # ADDRESSINFO provider +│ ├── ContactInfoDataProvider.cs # CONTACTINFO provider +│ ├── SubmissionInfoDataProvider.cs # SUBMISSIONINFO provider +│ ├── OrgInfoDataProvider.cs # ORGINFO provider (placeholder) +│ └── PaymentInfoDataProvider.cs # PAYMENTINFO provider (placeholder) +│ +├── Unity.GrantManager.Application/Intakes/ +│ ├── IntakeFormSubmissionManager.cs # Import orchestrator (calls ExtractOidcSub) +│ └── IntakeSubmissionHelper.cs # OidcSub extraction from CHEFS token +│ +└── Unity.GrantManager.HttpApi/Controllers/ + └── ApplicantProfileController.cs # API controller entry point +``` diff --git a/applications/Unity.GrantManager/docs/reporting/get_worksheet_data_specification.md b/documentation/reporting/get_worksheet_data_specification.md similarity index 100% rename from applications/Unity.GrantManager/docs/reporting/get_worksheet_data_specification.md rename to documentation/reporting/get_worksheet_data_specification.md diff --git a/openshift/Readme.md b/openshift/Readme.md deleted file mode 100644 index eb9eb63c2b..0000000000 --- a/openshift/Readme.md +++ /dev/null @@ -1,95 +0,0 @@ -# Instructions to Install Unity Project - -## Step 1: Create templates from code - -You can create the required templates using the web OpenShift console or the oc CLI. -``` -# Delete build templates -oc delete templates --all - -# Create build templates -oc create -f $repository\database\unity-backup-cronjob.yaml -oc create -f $repository\database\unity-database.yaml -oc create -f $repository\openshift\unity-imagestream.yaml -oc create -f $repository\openshift\unity-grantmanager-dbmigrator-job.yaml -oc create -f $repository\openshift\unity-grantmanager-web.yaml -oc create -f $repository\openshift\unity-networkpolicy.yaml -oc create -f $repository\openshift\unity-rabbitmq.yaml -oc create -f $repository\openshift\unity-s3-object-storage.yaml -oc create -f $repository\openshift\unity-app-data-web.json -oc create -f $repository\openshift\unity-chefs-data-web.json -oc create -f $repository\openshift\unity-metabase.yaml -``` - -## Step 2: Create .env paramater files - -As a best practice, store copies of these files in a secure location. -``` -"database.env" -"dbmigrator-job.env" -"grantmanager-web.env" -"S3-storage.env" -"metabase.env" -"rabbitmq.env" -``` - -Use oc get templates to find all available parameters of a project template. -oc get templates - -| **NAME** | **DESCRIPTION** | -|-----------|-----------------| -| unity-app-data-web | An example Nginx HTTP server and a reverse proxy (nginx) application that serves web content. | -| unity-backup-cronjob | Template for running a recurring backup script in OpenShift. | -| unity-chefs-data-web | An example Nginx HTTP server and a reverse proxy (nginx) application that serves web content. | -| unity-database | PostgreSQL database service with persistent storage. | -| unity-grantmanager-dbmigrator-job | Template for running a dotnet console application once in OpenShift. | -| unity-grantmanager-pgbackup-job | Template for running a dotnet console application once in OpenShift. | -| unity-grantmanager-web | Template for running a DotNet web application on OpenShift. | -| unity-imagestream | Template for tracking of changes in the application image. | -| unity-metabase | Template for running a DotNet web application on OpenShift. | -| unity-networkpolicy | Template for communications rules in OpenShift. | -| unity-rabbitmq | Template for running RabbitMQ message queue application on OpenShift. | -| unity-s3-object-storage | Template for S3 connection information in OpenShift. | - -## Step 3: Create or replace project resources - -You can create OpenShift resources using the web OpenShift console or the oc CLI. - -Using the command line, -``` -# Replace the running network and namespace policy -oc delete networkpolicies --all -oc process unity-networkpolicy | oc create -f - -oc policy add-role-to-user system:image-puller system:serviceaccount:${project}:default --namespace=${tools} -oc policy add-role-to-group system:image-puller system:serviceaccounts:${project} --namespace=${tools} - -# Create Database objects from templates with parameters -oc process unity-database --param-file=${params}-database.env | oc create -f - -helm upgrade --install ${release}-hippo-ha . -f $repository\database\crunchy-postgres\values.yaml -f ${params}-pgo-custom-values.yaml -oc process unity-backup-cronjob --param-file=${params}-database.env | oc create -f - - -# Create DbMigraitor objects from templates with parameters -oc process unity-grantmanager-imagestream -p APPLICATION_GROUP=${release}-unity-grantmanager -p APPLICATION_NAME=${release}-unity-dbmigrator | oc create -f - -oc import-image ${release}-unity-dbmigrator:$tag --confirm --from=image-registry.openshift-image-registry.svc:5000/${tools}/${release}-unity-dbmigrator-build:$tag -oc process unity-grantmanager-dbmigrator-job --param-file=${params}-dbmigrator-job.env | oc create -f - -oc wait jobs/${release}-unity-dbmigrator --for condition=complete --timeout=120s - -# Create S3 storage objects from templates with parameters -oc process unity-s3-object-storage --param-file=${params}-S3.env | oc create -f - - -# Create GrantManager objects from templates with parameters -oc process unity-grantmanager-imagestream -p APPLICATION_GROUP=${release}-unity-grantmanager -p APPLICATION_NAME=${release}-unity-grantmanager | oc create -f - -oc import-image ${release}-unity-grantmanager:$tag --confirm --from=image-registry.openshift-image-registry.svc:5000/${tools}/${release}-unity-grantmanager-build:$tag -oc process unity-grantmanager-web --param-file=${params}-grantmanager-web.env | oc create -f - -oc wait dc/${release}-unity-grantmanager-web --for condition=available=true --timeout=120s - -# Create RabbitMQ objects from templates with parameters -oc process unity-rabbitmq --param-file=${project}-rabbitmq.env | oc create -f - -oc wait dc/${namespace}unity-rabbitmq --for condition=available - -# Deployment for app-data-web -oc process unity-app-data-web -p IMAGEPULL_NAMESPACE=${tools} -p IMAGESTREAM_NAME=${namespace}-unity-app-data-build -p IMAGESTREAM_TAG=latest | oc create -f - - -# Deployment for reporting -oc process unity-metabase --param-file=${project}-metabase.env | oc create -f - -``` \ No newline at end of file diff --git a/openshift/SSL_CERTIFICATE.md b/openshift/SSL_CERTIFICATE.md deleted file mode 100644 index 10e8e9218b..0000000000 --- a/openshift/SSL_CERTIFICATE.md +++ /dev/null @@ -1,94 +0,0 @@ -# Instructions to Install Unity SSL Certificate - -## Step 1: Submit a CSR - -A Certificate Signing Request (CSR) is necessary for new certificates or certificate renewals. Contact the ISB Operations team they will make an iStore request with associated approved funding and generate the required .csr file, then provide the SSL certificate files when they are ready. - - -## Step 2: Install SSL certificates - -As a best practice, store copies of these files in the ISB Operations SSL certificate store (e.g. Zone-B server filesystem). That way, the keys can be retrieved when needed. Only project namespace administrators can edit OpenShift certificate objects. - -Ensure you have all four (4) required files: - -- Certificate: unity.gov.bc.ca.txt -- Private Key: unity.gov.bc.ca.key -- CA Certificate: L1KChain.txt -- CA Root Certificate: G2Root.txt - -## Step 3: Create route for unity.gov.bc.ca - -You can create network routes using the web OpenShift console or the oc CLI. - -Using the command line, the following example creates a secured HTTPS route named `unity-gov-bc-ca` that directs traffic to the `unity-grantmanager-web` service: - -```bash -oc create route edge unity-gov-bc-ca \ - --service=unity-grantmanager-web \ - --cert=unity.gov.bc.ca.txt \ - --key=unity.gov.bc.ca.key \ - --ca-cert=L1KChain.txt \ - --hostname=unity.gov.bc.ca \ - --insecure-policy=Redirect -``` - -Using the web console, you can navigate to the **Administrator > Networking > Routes** section of the conaole. - -Click **Create Route** to define and create a route in the project. - -Use the following settings: - -- Name: unity-gov-bc-ca -- Hostname: unity.gov.bc.ca -- Path: `/` -- Service: unity-grantmanager-web -- Secure Route: (yes) -- TLS Termination: Edge -- Insecure Traffic: Redirect - -| Route field | Source file | -| -------------------------- | ------------------- | -| Certificate | unity.gov.bc.ca.txt | -| Private Key | unity.gov.bc.ca.key | -| CA Certificate | L1KChain.txt | - -## Step 4: Verify new route - -The site should work immediately after saving these route settings. - -- Check that https://unity.gov.bc.ca is live and that the application landing page loads correctly. -- Verify SSO (Keycloak) settings - https://bcgov.github.io/sso-requests - -## Optional steps to generate a local CSR -Run the openssl utility with the CSR and private key options **these do not need to be created on the intended machine or containers**. - -```bashs -openssl req -new -newkey rsa:2048 -nodes -out unity.gov.bc.ca.csr \ - -keyout unity.gov.bc.ca.key \ - -subj "/C=CA/ST=British Columbia/L=Victoria/O=Government of the Province of British Columbia/OU=CITZ/CN=unity.gov.bc.ca" -``` - -Response should be: - -``` -Generating a RSA private key -.........+++++ -...............................+++++ -writing new private key to 'unity.gov.bc.ca.key' ------ -You are about to be asked to enter information that will be incorporated -into your certificate request. -What you are about to enter is what is called a Distinguished Name or a DN. -There are quite a few fields but you can leave some blank -For some fields there will be a default value, -If you enter '.', the field will be left blank. ------ -Country Name (2 letter code) [AU]:CA -State or Province Name (full name) [Some-State]:British Columbia -Locality Name (eg, city) []:Victoria -Organization Name (eg, company) [Internet Widgits Pty Ltd]:Government of the Province of British Columbia -Organizational Unit Name (eg, section) []:JEDI -Common Name (e.g. server FQDN or YOUR name) []:unity.gov.bc.ca -Email Address []: - -Keep the secret key and send the `.csr` file to the OCIO Access and Directory Management Services team they will require an iStore order to process the `.csr` file and will provide the SSL certificates when they are ready. \ No newline at end of file diff --git a/openshift/redis-sentinel/.helmignore b/openshift/redis-sentinel/.helmignore deleted file mode 100644 index 0e8a0eb36f..0000000000 --- a/openshift/redis-sentinel/.helmignore +++ /dev/null @@ -1,23 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*.orig -*~ -# Various IDEs -.project -.idea/ -*.tmproj -.vscode/ diff --git a/openshift/redis-sentinel/Chart.lock b/openshift/redis-sentinel/Chart.lock deleted file mode 100644 index 55e55af74d..0000000000 --- a/openshift/redis-sentinel/Chart.lock +++ /dev/null @@ -1,6 +0,0 @@ -dependencies: -- name: redis - repository: https://charts.bitnami.com/bitnami - version: 21.1.11 -digest: sha256:98f3d6fdc3360f0ea929a647528658e8693cf22ea503a099dc77af35e46af99f -generated: "2025-06-03T11:36:36.363955-07:00" diff --git a/openshift/redis-sentinel/Chart.yaml b/openshift/redis-sentinel/Chart.yaml deleted file mode 100644 index dc01835b74..0000000000 --- a/openshift/redis-sentinel/Chart.yaml +++ /dev/null @@ -1,29 +0,0 @@ -apiVersion: v2 -name: redis -description: High Availability Redis Chart - -# A chart can be either an 'application' or a 'library' chart. -# -# Application charts are a collection of templates that can be packaged into versioned archives -# to be deployed. -# -# Library charts provide useful utilities or functions for the chart developer. They're included as -# a dependency of application charts to inject those utilities and functions into the rendering -# pipeline. Library charts do not define any templates and therefore cannot be deployed. -type: application - -# This is the chart version. This version number should be incremented each time you make changes -# to the chart and its templates, including the app version. -# Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.2 - -# This is the version number of the application being deployed. This version number should be -# incremented each time you make changes to the application. Versions are not expected to -# follow Semantic Versioning. They should reflect the version the application is using. -# It is recommended to use it with quotes. -appVersion: "8.2.1" - -dependencies: - - name: redis - version: "21.1.11" # Specify the version you want - repository: "https://charts.bitnami.com/bitnami" diff --git a/openshift/redis-sentinel/charts/redis-21.1.11.tgz b/openshift/redis-sentinel/charts/redis-21.1.11.tgz deleted file mode 100644 index 78e1f139e3..0000000000 Binary files a/openshift/redis-sentinel/charts/redis-21.1.11.tgz and /dev/null differ diff --git a/openshift/redis-sentinel/values-dev.yaml b/openshift/redis-sentinel/values-dev.yaml deleted file mode 100644 index 7cfd5d67e8..0000000000 --- a/openshift/redis-sentinel/values-dev.yaml +++ /dev/null @@ -1,17 +0,0 @@ -redis: - fullnameOverride: dev-redis-ha - sentinel: - masterSet: redisMasterSet - resources: - requests: - memory: "64Mi" - cpu: "20m" - replica: - replicaCount: 3 - persistence: - enabled: true - size: 96Mi - resources: - requests: - memory: "64Mi" - cpu: "20m" diff --git a/openshift/redis-sentinel/values-dev2.yaml b/openshift/redis-sentinel/values-dev2.yaml deleted file mode 100644 index 538cc82aae..0000000000 --- a/openshift/redis-sentinel/values-dev2.yaml +++ /dev/null @@ -1,17 +0,0 @@ -redis: - fullnameOverride: dev2-redis-ha - sentinel: - masterSet: redisMasterSet - resources: - requests: - memory: "64Mi" - cpu: "20m" - replica: - replicaCount: 3 - persistence: - enabled: true - size: 96Mi - resources: - requests: - memory: "64Mi" - cpu: "20m" diff --git a/openshift/redis-sentinel/values-prod.yaml b/openshift/redis-sentinel/values-prod.yaml deleted file mode 100644 index a421913671..0000000000 --- a/openshift/redis-sentinel/values-prod.yaml +++ /dev/null @@ -1,17 +0,0 @@ -redis: - fullnameOverride: prod-redis-ha - sentinel: - masterSet: redisMasterSet - resources: - requests: - memory: "64Mi" - cpu: "20m" - replica: - replicaCount: 3 - persistence: - enabled: true - size: 128Mi - resources: - requests: - memory: "64Mi" - cpu: "20m" diff --git a/openshift/redis-sentinel/values-test.yaml b/openshift/redis-sentinel/values-test.yaml deleted file mode 100644 index b4e5a015cd..0000000000 --- a/openshift/redis-sentinel/values-test.yaml +++ /dev/null @@ -1,17 +0,0 @@ -redis: - fullnameOverride: test-redis-ha - sentinel: - masterSet: redisMasterSet - resources: - requests: - memory: "64Mi" - cpu: "20m" - replica: - replicaCount: 3 - persistence: - enabled: true - size: 96Mi - resources: - requests: - memory: "64Mi" - cpu: "20m" diff --git a/openshift/redis-sentinel/values-uat.yaml b/openshift/redis-sentinel/values-uat.yaml deleted file mode 100644 index 6656d6bdf8..0000000000 --- a/openshift/redis-sentinel/values-uat.yaml +++ /dev/null @@ -1,17 +0,0 @@ -redis: - fullnameOverride: uat-redis-ha - sentinel: - masterSet: redisMasterSet - resources: - requests: - memory: "64Mi" - cpu: "20m" - replica: - replicaCount: 3 - persistence: - enabled: true - size: 96Mi - resources: - requests: - memory: "64Mi" - cpu: "20m" diff --git a/openshift/redis-sentinel/values.yaml b/openshift/redis-sentinel/values.yaml deleted file mode 100644 index d3bde39c7b..0000000000 --- a/openshift/redis-sentinel/values.yaml +++ /dev/null @@ -1,49 +0,0 @@ -global: - security: - allowInsecureImages: true - -redis: - # Bitnami chart version: updated from previous to 21.1.11 - # Redis image tag: updated from 7.2.4-debian-12-r9 to 7.2.5 (see Chart.yaml) - fullnameOverride: redis-ha - architecture: replication - auth: - enabled: true # If true, the Redis password will be enabled - sentinel: true # If true, the Redis Sentinel will be enabled - usePasswordFiles: false # If true, the password will be stored in a file - image: - registry: docker.io - repository: bitnamilegacy/redis - tag: 8.2.1 # updated from 7.2.4-debian-12-r9, 7.2.5, now using default Bitnami Redis 8.2.1 image - sentinel: - enabled: true - masterSet: "redisMasterSet" - image: - registry: docker.io - repository: bitnamilegacy/redis-sentinel - tag: 8.2.1 # Match the Redis version or use appropriate Sentinel version - persistence: - enabled: false - containerPorts: - sentinel: 26379 - podSecurityContext: - enabled: false - containerSecurityContext: - enabled: false - resources: - requests: - memory: "64Mi" - cpu: "20m" - replica: - replicaCount: 1 - podSecurityContext: - enabled: false - containerSecurityContext: - enabled: false - persistence: - enabled: true - size: 64Mi - resources: - requests: - memory: "64Mi" - cpu: "20m" diff --git a/openshift/tools-networkpolicy.yaml b/openshift/tools-networkpolicy.yaml deleted file mode 100644 index f479a2c180..0000000000 --- a/openshift/tools-networkpolicy.yaml +++ /dev/null @@ -1,46 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -metadata: - name: tools-networkpolicy - # namespace: ${PROJECT_NAMESPACE}-${ENV_NAME} - # This template uses a separate parameter .env file to override the default values defined in this section. - labels: - template: tools-networkpolicy - annotations: - description: |- - Template for tools namespace communications in OpenShift. -parameters: -# Project namespace parameters - - name: PROJECT_NAMESPACE - displayName: "Project Namespace" - description: "The OpenShift project license plate 6 character alpha numeric." - required: true - generate: expression - from: "[a-z0-9]{6}" - - name: ENV_NAME - displayName: "Environment name" - description: "The OpenShift environment name [tools, dev, test, prod]." - required: true - value: "tools" -objects: - - kind: NetworkPolicy - apiVersion: networking.k8s.io/v1 - metadata: - name: intra-namespace-comms - spec: - - kind: NetworkPolicy - apiVersion: networking.k8s.io/v1 - metadata: - name: intra-namespace-comms - spec: - # Allow all pods within the project namespace to communicate - # to current tools namespace - podSelector: {} - ingress: - - from: - - namespaceSelector: - matchLabels: - environment: ${ENV_NAME} - name: ${PROJECT_NAMESPACE} - policyTypes: - - Ingress \ No newline at end of file diff --git a/openshift/unity-app-data-build.json b/openshift/unity-app-data-build.json deleted file mode 100644 index 107c8f7f25..0000000000 --- a/openshift/unity-app-data-build.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "kind": "Template", - "apiVersion": "template.openshift.io/v1", - "metadata": { - "name": "unity-app-data-build", - "annotations": { - "openshift.io/display-name": "Nginx HTTP server and a reverse proxy", - "description": "An example Nginx HTTP server and a reverse proxy (nginx) application that serves static content.", - "tags": "${APPLICATION_NAME}", - "iconClass": "icon-nginx", - "openshift.io/long-description": "This template defines resources needed to develop a static application served by Nginx HTTP server and a reverse proxy (nginx), including a build configuration and application deployment configuration." - } - }, - "message": "The following service(s) have been created in your project: ${APPLICATION_NAME}.", - "labels": { - "template": "${APPLICATION_NAME}", - "app": "${APPLICATION_NAME}" - }, - "objects": [ - { - "kind": "BuildConfig", - "apiVersion": "build.openshift.io/v1", - "metadata": { - "name": "${APPLICATION_NAME}", - "labels": { - "app.kubernetes.io/part-of": "${APPLICATION_GROUP}" - }, - "annotations": { - "description": "Defines how to build the application", - "template.alpha.openshift.io/wait-for-ready": "true" - } - }, - "spec": { - "source": { - "type": "Git", - "git": { - "uri": "${SOURCE_REPOSITORY_URL}", - "ref": "${SOURCE_REPOSITORY_REF}" - }, - "contextDir": "${CONTEXT_DIR}" - }, - "strategy": { - "type": "Source", - "sourceStrategy": { - "from": { - "kind": "ImageStreamTag", - "namespace": "${NAMESPACE}", - "name": "nginx:${NGINX_VERSION}" - } - } - }, - "output": { - "to": { - "kind": "ImageStreamTag", - "name": "${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG}" - } - }, - "triggers": [ - { - "type": "ImageChange" - }, - { - "type": "ConfigChange" - } - ] - } - } - ], - "parameters": [ - { - "description": "The name of the application grouping.", - "displayName": "Application Group", - "name": "APPLICATION_GROUP", - "value": "unity-tools" - }, - { - "description": "The name of the application.", - "displayName": "Application Name", - "name": "APPLICATION_NAME", - "required": true, - "value": "unity-app-data-build" - }, - { - "name": "NAMESPACE", - "displayName": "Namespace", - "description": "The OpenShift Namespace where the ImageStream resides.", - "required": true, - "value": "openshift" - }, - { - "name": "NGINX_VERSION", - "displayName": "NGINX Version", - "description": "Version of NGINX image to be used (1.20-ubi8 by default).", - "required": true, - "value": "1.20-ubi9" - }, - { - "name": "SOURCE_REPOSITORY_URL", - "displayName": "Git Repository URL", - "description": "The URL of the repository with your application source code.", - "required": true, - "value": "https://github.com/bcgov/Unity.git" - }, - { - "name": "SOURCE_REPOSITORY_REF", - "displayName": "Git Reference", - "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.", - "value":"dev" - }, - { - "name": "CONTEXT_DIR", - "displayName": "Context Directory", - "description": "Set this to the relative path to your project if it is not in the root of your repository.", - "value": "/applications/Unity.Tools" - }, - { - "description": "The ImageStream Name", - "displayName": "Registry imagestream name", - "name": "IMAGESTREAM_NAME", - "value": "unity-app-data-build" - }, - { - "description": "The version of the image to use, e.g. v1.0.0, v0.1.0, latest the ImageStream tag.", - "displayName": "Application Version", - "name": "IMAGESTREAM_TAG", - "required": true, - "value": "latest" - } - ] -} diff --git a/openshift/unity-app-data-web.json b/openshift/unity-app-data-web.json deleted file mode 100644 index 4401350a3f..0000000000 --- a/openshift/unity-app-data-web.json +++ /dev/null @@ -1,241 +0,0 @@ -{ - "kind": "Template", - "apiVersion": "template.openshift.io/v1", - "metadata": { - "name": "unity-app-data-web", - "annotations": { - "openshift.io/display-name": "Nginx HTTP server and a reverse proxy", - "description": "An example Nginx HTTP server and a reverse proxy (nginx) application that serves static content.", - "tags": "${APPLICATION_NAME}", - "iconClass": "icon-nginx", - "openshift.io/long-description": "This template defines resources needed to develop a static application served by Nginx HTTP server and a reverse proxy (nginx), including a build configuration and application deployment configuration." - } - }, - "message": "The following service(s) have been created in your project: ${APPLICATION_NAME}.", - "labels": { - "template": "${APPLICATION_NAME}", - "app": "${APPLICATION_NAME}" - }, - "objects": [ - { - "kind": "Service", - "apiVersion": "v1", - "metadata": { - "name": "${APPLICATION_NAME}", - "labels": { - "app.kubernetes.io/part-of": "${APPLICATION_GROUP}" - }, - "annotations": { - "description": "Exposes and load balances the application pods" - } - }, - "spec": { - "ports": [ - { - "name": "80-tcp", - "protocol": "TCP", - "port": 80, - "targetPort": 8080 - } - ], - "selector": { - "name": "${APPLICATION_NAME}" - } - } - }, - { - "kind": "Route", - "apiVersion": "route.openshift.io/v1", - "metadata": { - "name": "${APPLICATION_NAME}", - "labels": { - "app.kubernetes.io/part-of": "${APPLICATION_GROUP}" - }, - "annotations": { - "haproxy.router.openshift.io/hsts_header": "max-age=31536000;includeSubDomains;preload", - "template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}" - } - }, - "spec": { - "host": "${APPLICATION_DOMAIN}", - "to": { - "kind": "Service", - "name": "${APPLICATION_NAME}" - }, - "httpHeaders": { - "actions": { - "request": null, - "response": [ - { - "action": { - "set": { "value": "SAMEORIGIN" }, - "type": "Set" - }, - "name": "X-Frame-Options" - }, - { - "action": { - "set": { "value": "nosniff" }, - "type": "Set" - }, - "name": "X-Content-Type-Options" - }, - { - "action": { - "set": { "value": "strict-origin-when-cross-origin" }, - "type": "Set" - }, - "name": "Referrer-Policy" - }, - { - "action": { - "set": { "value": "object-src 'none'; frame-ancestors 'none'" }, - "type": "Set" - }, - "name": "Content-Security-Policy" - } - ] - } - }, - "tls": { - "termination": "edge", - "insecureEdgeTerminationPolicy": "Redirect" - } - } - }, - { - "kind": "Deployment", - "apiVersion": "apps/v1", - "metadata": { - "name": "${APPLICATION_NAME}", - "labels": { - "app.openshift.io/runtime": "nginx", - "app.kubernetes.io/part-of": "${APPLICATION_GROUP}" - }, - "annotations": { - "description": "Defines how to deploy the application server", - "template.alpha.openshift.io/wait-for-ready": "true", - "image.openshift.io/triggers": "[{\"from\":{\"kind\":\"ImageStreamTag\",\"name\":\"${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG}\",\"namespace\":\"${IMAGEPULL_NAMESPACE}\"},\"fieldPath\":\"spec.template.spec.containers[?(@.name==\\\"${APPLICATION_NAME}\\\")].image\",\"pause\":\"true\"}]" - } - }, - "spec": { - "strategy": { - "type": "Recreate" - }, - "replicas": 1, - "selector": { - "matchLabels": { - "name": "${APPLICATION_NAME}", - "app": "${APPLICATION_NAME}" - } - }, - "template": { - "metadata": { - "labels": { - "name": "${APPLICATION_NAME}", - "app": "${APPLICATION_NAME}" - } - }, - "spec": { - "containers": [ - { - "name": "${APPLICATION_NAME}", - "image": "${IMAGEPULL_REGISTRY}/${IMAGEPULL_NAMESPACE}/${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG}", - "ports": [ - { - "containerPort": 8080 - } - ], - "readinessProbe": { - "timeoutSeconds": 3, - "initialDelaySeconds": 3, - "httpGet": { - "path": "/", - "port": 8080 - } - }, - "livenessProbe": { - "timeoutSeconds": 3, - "initialDelaySeconds": 30, - "httpGet": { - "path": "/", - "port": 8080 - } - }, - "env": [ - ], - "resources": { - "requests": { - "cpu": "${CPU_REQUEST}", - "memory": "${MEMORY_REQUEST}" - } - } - } - ] - } - } - } - } - ], - "parameters": [ - { - "description": "The name of the application grouping.", - "displayName": "Application Group", - "name": "APPLICATION_GROUP", - "value": "unity-tools" - }, - { - "description": "The name of the application.", - "displayName": "Application Name", - "name": "APPLICATION_NAME", - "required": true, - "value": "unity-app-data-web" - }, - { - "name": "APPLICATION_DOMAIN", - "displayName": "Application Hostname", - "description": "The exposed hostname that will route to the nginx service, if left blank a value will be defaulted.", - "value": "" - }, - { - "description": "The Namespace where the container image resides", - "displayName": "Registry Namespace", - "from": "[a-zA-Z0-9]{5}-tools", - "generate": "expression", - "name": "IMAGEPULL_NAMESPACE" - }, - { - "description": "The ImageStream Name", - "displayName": "Registry imagestream name", - "name": "IMAGESTREAM_NAME", - "value": "unity-data-web" - }, - { - "description": "The version of the image to use, e.g. v1.0.0, v0.1.0, latest the ImageStream tag.", - "displayName": "Application Version", - "name": "IMAGESTREAM_TAG", - "required": true, - "value": "latest" - }, - { - "description": "The registry path of the container image used.", - "displayName": "Registry location to pull from", - "name": "IMAGEPULL_REGISTRY", - "value": "image-registry.openshift-image-registry.svc:5000" - }, - { - "description": "The minimum amount of CPU the Container is guaranteed.", - "displayName": "CPU Request", - "name": "CPU_REQUEST", - "required": true, - "value": "50m" - }, - { - "description": "The minimum amount of Memory the Container is guaranteed.", - "displayName": "Memory Request", - "name": "MEMORY_REQUEST", - "required": true, - "value": "64Mi" - } - ] -} diff --git a/openshift/unity-applicantportal-build.yaml b/openshift/unity-applicantportal-build.yaml deleted file mode 100644 index 34b049a618..0000000000 Binary files a/openshift/unity-applicantportal-build.yaml and /dev/null differ diff --git a/openshift/unity-applicantportal-web.yaml b/openshift/unity-applicantportal-web.yaml deleted file mode 100644 index ba55149ace..0000000000 --- a/openshift/unity-applicantportal-web.yaml +++ /dev/null @@ -1,271 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -message: |- - A new application been created in your project: unity-applicantportal-web - For more information about using this template, including OpenShift considerations, - see template usage guide found in the project readme.md and wiki documents. -metadata: - name: unity-applicantportal-web - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\openshift\unity-applicantportal-web.yaml --param-file=namespace.env | oc create -f - - labels: - template: unity-applicantportal-web - annotations: - description: |- - Template for running a DotNet web application on OpenShift. - iconClass: icon-dotnet - openshift.io/display-name: DotNet web application - template.openshift.io/long-description: |- - This template defines resources needed to build and deploy a GitHub DotNet core base web application. - tags: dotnet,unity-applicantportal-web -parameters: -# Project namespace parameters -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - value: unity-applicantportal -- description: The name of the application. - displayName: Application Name - name: APPLICATION_NAME - required: true - value: unity-applicantportal-web -# Additional parameters for project application provisioning. -- description: The name of the OpenShift Service exposed for the database. - displayName: Database Service Name - name: DATABASE_SERVICE_NAME - required: true - value: unity-data-postgres -- description: Volume space available for data, e.g. 512Mi, 2Gi. - displayName: Volume Capacity - name: VOLUME_CAPACITY - required: true - value: 40Mi -- description: Git source URI for application - displayName: Git Repository URL - name: SOURCE_REPOSITORY_URL - required: true - value: https://github.com/bcgov/Unity -- description: Git branch/tag reference - displayName: Git Reference - name: SOURCE_REPOSITORY_REF - value: dev -- description: 'Custom hostname for http service route. Leave blank for default hostname, - e.g.: -.' - displayName: Custom http Route Hostname - name: HOSTNAME_HTTP - value: dev2-grants.apps.silver.devops.gov.bc.ca -- description: ASPNETCORE_ENVIRONMENT - displayName: ASPNETCORE_ENVIRONMENT - name: ASPNETCORE_ENVIRONMENT - value: Development -- description: ASPNETCORE_URLS - displayName: ASPNETCORE_URLS - name: ASPNETCORE_URLS - value: 'http://*:8080' -# Base image location -- description: The Namespace where the container image resides - displayName: Registry Namespace - name: IMAGEPULL_NAMESPACE - from: '[a-zA-Z0-9]{5}-tools' - generate: expression -- description: The ImageStream Name - displayName: Registry imagestream name - name: IMAGESTREAM_NAME - value: unity-applicantportal-build -- description: The version of the image to use, e.g. v1.0.0, v0.1.0, latest the ImageStream tag. - displayName: Application Version - name: IMAGESTREAM_TAG - required: true - value: latest -- description: The registry path of the container image used. - displayName: Registry location to pull from - name: IMAGEPULL_REGISTRY - value: image-registry.openshift-image-registry.svc:5000 -# Resource limits control how much CPU and memory a container will consume -- description: The minimum amount of CPU the Container is guaranteed. - displayName: CPU Request - name: CPU_REQUEST - required: true - value: 50m -- description: The minimum amount of Memory the Container is guaranteed. - displayName: Memory Request - name: MEMORY_REQUEST - required: true - value: 64Mi -# Template objects to instantiate the project application. -objects: -# Configmap -- apiVersion: v1 - kind: ConfigMap - metadata: - name: ${APPLICATION_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - data: - # Configuration values can be set as key-value properties - ASPNETCORE_ENVIRONMENT: ${ASPNETCORE_ENVIRONMENT} - ASPNETCORE_URLS: ${ASPNETCORE_URLS} -# Service -- apiVersion: v1 - kind: Service - metadata: - annotations: - description: The application's http port. - name: ${APPLICATION_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - ports: - - name: 80-tcp - protocol: TCP - port: 80 - targetPort: 8080 - selector: - app: ${APPLICATION_NAME} -# Route -- apiVersion: route.openshift.io/v1 - id: ${APPLICATION_NAME}-http - kind: Route - metadata: - annotations: - description: Route for application's http service. - haproxy.router.openshift.io/balance: roundrobin - haproxy.router.openshift.io/hsts_header: max-age=31536000;includeSubDomains;preload - haproxy.router.openshift.io/ip_whitelist: 142.22.0.0/15 142.24.0.0/13 142.32.0.0/14 142.36.0.0/16 - router.openshift.io/cookie-same-site: Strict - router.openshift.io/cookie_name: haproxy-uap - name: ${APPLICATION_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - host: ${HOSTNAME_HTTP} - path: / - to: - kind: Service - name: ${APPLICATION_NAME} - weight: 100 - port: - targetPort: 80-tcp - tls: - termination: edge - insecureEdgeTerminationPolicy: Redirect - wildcardPolicy: None - httpHeaders: - actions: - response: - - name: X-Frame-Options - action: - type: Set - set: - value: SAMEORIGIN - - name: X-Content-Type-Options - action: - type: Set - set: - value: no-sniff - - name: Referrer-Policy - action: - type: Set - set: - value: strict-origin-when-cross-origin - - name: Content-Security-Policy - action: - type: Set - set: - value: object-src 'none'; frame-ancestors 'none' -# Persistent storage for the application logfiles. -- apiVersion: v1 - kind: PersistentVolumeClaim - metadata: - name: ${APPLICATION_NAME}-logfiles - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: ${VOLUME_CAPACITY} - storageClassName: netapp-file-standard - volumeMode: Filesystem -# Deployment -- apiVersion: apps/v1 - kind: Deployment - metadata: - name: ${APPLICATION_NAME} - annotations: - app.openshift.io/route-disabled: "false" - app.openshift.io/vcs-ref: ${SOURCE_REPOSITORY_REF} - app.openshift.io/vcs-uri: ${SOURCE_REPOSITORY_URL} - # Add the trigger annotation - image.openshift.io/triggers: >- - [{"from":{"kind":"ImageStreamTag","name":"${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG}","namespace":"${IMAGEPULL_NAMESPACE}"},"fieldPath":"spec.template.spec.containers[?(@.name==\"${APPLICATION_NAME}\")].image","pause":"false"}] - labels: - app: ${APPLICATION_NAME} - app.openshift.io/runtime: dotnet - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - replicas: 1 - selector: - matchLabels: - app: ${APPLICATION_NAME} - strategy: - type: Recreate - template: - metadata: - labels: - app: ${APPLICATION_NAME} - spec: - volumes: - - name: ${APPLICATION_NAME}-logfiles - persistentVolumeClaim: - claimName: ${APPLICATION_NAME}-logfiles - containers: - - name: ${APPLICATION_NAME} - image: ${IMAGEPULL_REGISTRY}/${IMAGEPULL_NAMESPACE}/${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG} - imagePullPolicy: Always - resources: - requests: - cpu: ${CPU_REQUEST} - memory: ${MEMORY_REQUEST} - ports: - - containerPort: 443 - protocol: TCP - - containerPort: 80 - protocol: TCP - env: - - name: ConnectionStrings__Default - value: >- - Host=$(UNITY_DB_HOST);port=$(UNITY_DB_PORT);Database=$(UNITY_POSTGRES_DB);Username=$(UNITY_POSTGRES_USER);Password=$(UNITY_POSTGRES_PASSWORD) - envFrom: - - configMapRef: - name: ${APPLICATION_NAME} - - configMapRef: - name: ${DATABASE_SERVICE_NAME} - - secretRef: - name: ${DATABASE_SERVICE_NAME} - volumeMounts: - - mountPath: /app/logs - name: ${APPLICATION_NAME}-logfiles - restartPolicy: Always - terminationGracePeriodSeconds: 30 - dnsPolicy: ClusterFirst diff --git a/openshift/unity-chefs-data-web.json b/openshift/unity-chefs-data-web.json deleted file mode 100644 index 1494e8e127..0000000000 --- a/openshift/unity-chefs-data-web.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "kind": "Template", - "apiVersion": "template.openshift.io/v1", - "metadata": { - "name": "unity-chefs-data-web", - "annotations": { - "openshift.io/display-name": "Nginx HTTP server and a reverse proxy", - "description": "An example Nginx HTTP server and a reverse proxy (nginx) application that serves static content.", - "tags": "${APPLICATION_NAME}", - "iconClass": "icon-nginx", - "openshift.io/long-description": "This template defines resources needed to develop a static application served by Nginx HTTP server and a reverse proxy (nginx), including a build configuration and application deployment configuration." - } - }, - "message": "The following service(s) have been created in your project: ${APPLICATION_NAME}.", - "labels": { - "template": "${APPLICATION_NAME}", - "app": "${APPLICATION_NAME}" - }, - "objects": [ - { - "kind": "Route", - "apiVersion": "route.openshift.io/v1", - "metadata": { - "name": "${APPLICATION_NAME}", - "labels": { - "app.kubernetes.io/part-of": "${APPLICATION_GROUP}" - }, - "annotations": { - "haproxy.router.openshift.io/hsts_header": "max-age=31536000;includeSubDomains;preload", - "haproxy.router.openshift.io/ip_whitelist": "142.22.0.0/15 142.24.0.0/13 142.32.0.0/14 142.36.0.0/16", - "template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}" - } - }, - "spec": { - "host": "${APPLICATION_DOMAIN}", - "to": { - "kind": "Service", - "name": "${APPLICATION_SERVICE}" - }, - "httpHeaders": { - "actions": { - "request": null, - "response": [ - { - "action": { - "set": { - "value": "SAMEORIGIN" - }, - "type": "Set" - }, - "name": "X-Frame-Options" - }, - { - "action": { - "set": { - "value": "no-sniff" - }, - "type": "Set" - }, - "name": "X-Content-Type-Options" - }, - { - "action": { - "set": { - "value": "strict-origin-when-cross-origin" - }, - "type": "Set" - }, - "name": "Referrer-Policy" - }, - { - "action": { - "set": { - "value": "object-src 'none'; frame-ancestors 'none'" - }, - "type": "Set" - }, - "name": "Content-Security-Policy" - } - ] - } - }, - "tls": { - "termination": "edge", - "insecureEdgeTerminationPolicy": "Redirect" - } - } - } - ], - "parameters": [ - { - "description": "The name of the application grouping.", - "displayName": "Application Group", - "name": "APPLICATION_GROUP", - "value": "unity-tools" - }, - { - "description": "The name of the application.", - "displayName": "Application Name", - "name": "APPLICATION_NAME", - "required": true, - "value": "unity-chefs-data-web" - }, - { - "description": "The name of the service.", - "displayName": "Application Seevice", - "name": "APPLICATION_SERVICE", - "value": "unity-app-data-web" - }, - { - "name": "APPLICATION_DOMAIN", - "displayName": "Application Hostname", - "description": "The exposed hostname that will route to the nginx service, if left blank a value will be defaulted.", - "value": "dev-unity-chefs-data.apps.silver.devops.gov.bc.ca" - } - ] -} diff --git a/openshift/unity-grantmanager-build.yaml b/openshift/unity-grantmanager-build.yaml deleted file mode 100644 index 3e01660897..0000000000 Binary files a/openshift/unity-grantmanager-build.yaml and /dev/null differ diff --git a/openshift/unity-grantmanager-dbmigrator-job.yaml b/openshift/unity-grantmanager-dbmigrator-job.yaml deleted file mode 100644 index 4a1b270353..0000000000 --- a/openshift/unity-grantmanager-dbmigrator-job.yaml +++ /dev/null @@ -1,119 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -message: |- - A job has been created in your project: unity-grantmanager-dbmigrator-job. - For more information about using this template, including OpenShift considerations, - see template usage guide found in the project readme.md and wiki documents. -metadata: - name: unity-grantmanager-dbmigrator-job - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\openshift\unity-grantmanager-dbmigrator-job.yaml --param-file=.env | oc create -f - - labels: - template: unity-grantmanager-dbmigrator-job - annotations: - description: |- - Template for running a dotnet console application once in OpenShift. - iconClass: icon-build - openshift.io/display-name: Database Migrator Job - template.openshift.io/long-description: |- - This template defines resources needed to build and deploy a container application. - tags: dotnet,unity-grantmanager-dbmigrator -parameters: -# Project namespace parameters -- description: The name of the application. - displayName: Application Name - name: APPLICATION_NAME - required: true - value: unity-grantmanager-dbmigrator -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - value: Triggers -# Additional parameters for project application provisioning. -- description: The name of the OpenShift Service exposed for the database. - displayName: Database Service Name - name: DATABASE_SERVICE_NAME - required: true - value: unity-data-postgres -- description: Git source URI for application - displayName: Git Repository URL - name: SOURCE_REPOSITORY_URL - required: true - value: 'https://github.com/bcgov/Unity' -# Base image location -- description: The Namespace where the container image resides - displayName: Registry Namespace - name: IMAGEPULL_NAMESPACE - from: '[a-zA-Z0-9]{5}-tools' - generate: expression -- description: The ImageStream Name - displayName: Registry imagestream name - name: IMAGESTREAM_NAME - value: unity-dbmigrator-build -- description: The version of the image to use, e.g. v1.0.0, v0.1.0, latest the ImageStream tag. - displayName: Application Version - name: IMAGESTREAM_TAG - required: true - value: latest -- description: The registry path of the container image used. - displayName: Registry location to pull from - name: IMAGEPULL_REGISTRY - value: image-registry.openshift-image-registry.svc:5000 -# Resource limits -- description: The minimum amount of CPU the container is guaranteed. - displayName: CPU Request - name: CPU_REQUEST - required: true - value: 50m -- description: The minimum amount of memory the container is guaranteed. - displayName: Memory Request - name: MEMORY_REQUEST - required: true - value: 64Mi -# Template objects to instantiate the project. -objects: -# RunOnce Job for Database Migrator -- apiVersion: batch/v1 - kind: Job - metadata: - name: ${APPLICATION_NAME} - labels: - job-name: ${APPLICATION_NAME} - app.openshift.io/runtime: build - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - annotations: - app.openshift.io/vcs-uri: ${SOURCE_REPOSITORY_URL} - spec: - parallelism: 1 - completions: 1 - backoffLimit: 1 - selector: {} - successfulJobsHistoryLimit: 1 - failedJobsHistoryLimit: 1 - template: - metadata: - name: ${APPLICATION_NAME} - labels: - application: ${APPLICATION_NAME} - spec: - containers: - - name: ${APPLICATION_NAME} - image: ${IMAGEPULL_REGISTRY}/${IMAGEPULL_NAMESPACE}/${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG} - env: - - name: ConnectionStrings__Default - value: >- - Host=$(UNITY_DB_HOST);port=$(UNITY_DB_PORT);Database=$(UNITY_POSTGRES_DB);Username=$(UNITY_POSTGRES_USER);Password=$(UNITY_POSTGRES_PASSWORD) - - name: ConnectionStrings__Tenant - value: >- - Host=$(UNITY_DB_HOST);port=$(UNITY_DB_PORT);Database=$(UNITY_TENANT_DB);Username=$(UNITY_POSTGRES_USER);Password=$(UNITY_POSTGRES_PASSWORD) - envFrom: - - secretRef: - name: ${DATABASE_SERVICE_NAME} - resources: - requests: - cpu: ${CPU_REQUEST} - memory: ${MEMORY_REQUEST} - restartPolicy: Never diff --git a/openshift/unity-grantmanager-pgbackup-job.yaml b/openshift/unity-grantmanager-pgbackup-job.yaml deleted file mode 100644 index 8a4b50bb54..0000000000 --- a/openshift/unity-grantmanager-pgbackup-job.yaml +++ /dev/null @@ -1,141 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -message: |- - A job has been created in your project: unity-grantmanager-pgbackup-job. - For more information about using this template, including OpenShift considerations, - see template usage guide found in the project readme.md and wiki documents. -metadata: - name: unity-grantmanager-pgbackup-job - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\openshift\unity-grantmanager-pgbackup-job.yaml --param-file=pgbackup-job.env | oc create -f - - labels: - template: unity-grantmanager-pgbackup-job - annotations: - description: |- - Template for running a dotnet console application once in OpenShift. - iconClass: icon-build - openshift.io/display-name: Database Backup Job - template.openshift.io/long-description: |- - This template defines resources needed to run a Postgres-16 container application. - tags: database,postgresql -parameters: -# Project namespace parameters -- description: The name of the application. - displayName: Application Name - name: APPLICATION_NAME - required: true - value: unity-grantmanager-pgbackup -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - required: true - value: unity-grantmanager -# Additional parameters for project database provisioning. -- description: The name of the OpenShift Service exposed for the database. - displayName: Database Service Name - name: DATABASE_SERVICE_NAME - required: true - value: unity-data-postgres -- name: DATABASE_BACKUP_KEEP - description: 'Number of backups to keep' - value: '1' -- name: DATABASE_BACKUP_VOLUME_CLAIM - description: 'Name of the volume claim to be used as storage' - required: true - value: unity-data-backup -- description: The Namespace where the container image resides default=project-tools cluster=openshift, source=registry.redhat.io/rhel9/postgresql-16 - displayName: Registry Namespace - name: IMAGEPULL_NAMESPACE - from: '[a-zA-Z0-9]{5}-tools' - generate: expression -- description: The Openshift ImageStream Name - displayName: Registry imagestream name - name: IMAGESTREAM_NAME - required: true - value: postgresql-16 -- description: The version of the postgresql container image to use. - displayName: Registry container image to pull - name: IMAGESTREAM_TAG - required: true - value: latest -- description: The registry path of the postgresql container image to use. - displayName: Registry container image to pull - name: IMAGEPULL_REGISTRY - required: true - value: image-registry.apps.silver.devops.gov.bc.ca -# Resource limits -- description: The minimum amount of CPU the container is guaranteed. - displayName: CPU Request - name: CPU_REQUEST - required: true - value: 50m -- description: The minimum amount of memory the container is guaranteed. - displayName: Memory Request - name: MEMORY_REQUEST - required: true - value: 64Mi -# Template objects to instantiate the project. -objects: -# RunOnce Job for Database Backups -- apiVersion: batch/v1 - kind: Job - metadata: - name: ${APPLICATION_NAME} - labels: - job-name: ${APPLICATION_NAME} - app.openshift.io/runtime: build - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - parallelism: 1 - completions: 1 - backoffLimit: 1 - selector: {} - successfulJobsHistoryLimit: 1 - failedJobsHistoryLimit: 1 - template: - metadata: - name: ${APPLICATION_NAME} - labels: - application: ${APPLICATION_NAME} - spec: - volumes: - - name: ${APPLICATION_NAME} - persistentVolumeClaim: - claimName: ${DATABASE_BACKUP_VOLUME_CLAIM} - containers: - - name: ${APPLICATION_NAME} - image: ${IMAGEPULL_REGISTRY}/${IMAGEPULL_NAMESPACE}/${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG} - command: - - 'bash' - - '-eo' - - 'pipefail' - - '-c' - - > - trap "echo Backup failed; exit 0" ERR; date; - FILENAME=dumpall-${DATABASE_SERVICE_NAME}-`date +%Y-%m-%d_%H%M%S`.sql.gz; - time (find /var/lib/pgsql/backups -type f -name "*-${DATABASE_SERVICE_NAME}-*" -exec ls -1tr "{}" + | head -n -$DATABASE_BACKUP_KEEP | xargs rm -fr; - PGPASSWORD="$UNITY_POSTGRES_PASSWORD" pg_dumpall --username=$UNITY_POSTGRES_USER --host=$UNITY_DB_HOST --port=$UNITY_DB_PORT --column-inserts --clean | gzip > /var/lib/pgsql/backups/$FILENAME); - echo "";echo "Backup successful";du -h /var/lib/pgsql/backups/$FILENAME; - echo "";echo "to restore the backup use: $ psql --username=$UNITY_POSTGRES_USER --password --host=$UNITY_DB_HOST --port=$UNITY_DB_PORT --username postgres < /var/lib/pgsql/backups/ (unpacked with gunzip)"; - echo "";ls -lR /var/lib/pgsql/backups - ## Add single and mapped environment values - env: - - name: DATABASE_BACKUP_KEEP - value: ${DATABASE_BACKUP_KEEP} - - name: TZ - value: Canada/Pacific - envFrom: - ## Add all from ${DATABASE_SERVICE_NAME} - - secretRef: - name: ${DATABASE_SERVICE_NAME} - volumeMounts: - - name: ${APPLICATION_NAME} - mountPath: /var/lib/pgsql/backups - resources: - requests: - cpu: ${CPU_REQUEST} - memory: ${MEMORY_REQUEST} - restartPolicy: Never diff --git a/openshift/unity-grantmanager-web.yaml b/openshift/unity-grantmanager-web.yaml deleted file mode 100644 index 8c37fc3e2a..0000000000 --- a/openshift/unity-grantmanager-web.yaml +++ /dev/null @@ -1,517 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -message: |- - A new application been created in your project: unity-grantmanager-web - For more information about using this template, including OpenShift considerations, - see template usage guide found in the project readme.md and wiki documents. -metadata: - name: unity-grantmanager-web - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\openshift\unity-grantmanager-web.yaml --param-file=namespace.env | oc create -f - - labels: - template: unity-grantmanager-web - annotations: - description: |- - Template for running a DotNet web application on OpenShift. - iconClass: icon-dotnet - openshift.io/display-name: DotNet web application - template.openshift.io/long-description: |- - This template defines resources needed to build and deploy a GitHub DotNet core base web application. - tags: dotnet,unity-grantmanager-web -parameters: -# Project namespace parameters -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - value: unity-grantmanager -- description: The name of the application. - displayName: Application Name - name: APPLICATION_NAME - required: true - value: unity-grantmanager-web -# Additional parameters for project application provisioning. -- description: The name of the OpenShift Service exposed for the database. - displayName: Database Service Name - name: DATABASE_SERVICE_NAME - required: true - value: unity-data-postgres -- description: The name of the storage object. - displayName: Object Storage Name - name: STORAGE_OBJECT_NAME - required: true - value: s3-object-storage -- description: Volume space available for data, e.g. 512Mi, 2Gi. - displayName: Volume Capacity - name: VOLUME_CAPACITY - required: true - value: 128Mi -- description: Git source URI for application - displayName: Git Repository URL - name: SOURCE_REPOSITORY_URL - required: true - value: https://github.com/bcgov/Unity -- description: Git branch/tag reference - displayName: Git Reference - name: SOURCE_REPOSITORY_REF - value: dev -- description: 'Custom hostname for http service route. Leave blank for default hostname, - e.g.: -.' - displayName: Custom http Route Hostname - name: HOSTNAME_HTTP - value: develop-unity.apps.silver.devops.gov.bc.ca -- description: ASPNETCORE_ENVIRONMENT - displayName: ASPNETCORE_ENVIRONMENT - name: ASPNETCORE_ENVIRONMENT - value: Development -- description: ASPNETCORE_URLS - displayName: ASPNETCORE_URLS - name: ASPNETCORE_URLS - value: 'http://*:8080' -- description: StringEncryption__DefaultPassPhrase - displayName: StringEncryption__DefaultPassPhrase - from: '[a-zA-Z0-9]{16}' - generate: expression - name: StringEncryption__DefaultPassPhrase - required: true -- description: AuthServer__ClientId - displayName: AuthServer__ClientId - from: '[a-zA-Z0-9]{16}' - generate: expression - name: AuthServer__ClientId - required: true -- description: AuthServer__ClientSecret - displayName: AuthServer__ClientSecret - from: 'unity-[0-9]{4}' - generate: expression - name: AuthServer__ClientSecret - required: true -- description: AuthServer__Audience - displayName: AuthServer__Audience - from: 'unity-[0-9]{4}' - generate: expression - name: AuthServer__Audience - required: true -- description: AuthServer__ServerAddress - displayName: AuthServer__ServerAddress - name: AuthServer__ServerAddress - value: 'https://dev.loginproxy.gov.bc.ca/auth' -- description: Intake__BaseUri - displayName: Intake__BaseUri - name: Intake__BaseUri - value: 'https://submit.digital.gov.bc.ca/app/api/v1' -- description: CssApi__ClientId - displayName: CssApi__ClientId - name: CssApi__ClientId - from: 'service-account-[0-9]{4}-[0-9]{4}' - generate: expression -- description: CssApi__ClientSecret - displayName: CssApi__ClientSecret - name: CssApi__ClientSecret - from: '[a-zA-Z0-9]{32}' - generate: expression - required: true -- description: CssApi__TokenUrl - displayName: CssApi__TokenUrl - name: CssApi__TokenUrl - value: 'https://loginproxy.gov.bc.ca/auth/realms/standard/protocol/openid-connect/token' -- description: CssApi__Url - displayName: CssApi__Url - name: CssApi__Url - value: 'https://api.loginproxy.gov.bc.ca/api/v1' -- description: CssApi__Env - displayName: CssApi__Env - name: CssApi__Env - value: dev -- description: Notifications__TeamsNotificationsWebhook - displayName: Notifications__TeamsNotificationsWebhook - name: Notifications__TeamsNotificationsWebhook -- description: Notifications__ChesClientSecret - displayName: Notifications__ChesClientSecret - name: Notifications__ChesClientSecret - from: '[a-zA-Z0-9]{32}' - generate: expression - required: true -- description: Notifications__ChesClientId - displayName: Notifications__ChesClientId - from: '[a-zA-Z0-9]{16}' - generate: expression - name: Notifications__ChesClientId - required: true -- description: Notifications__ChesTokenUrl - displayName: Notifications__ChesTokenUrl - name: Notifications__ChesTokenUrl - value: 'https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token' -- description: Notifications__ChesUrl - displayName: Notifications__ChesUrl - name: Notifications__ChesUrl - value: 'https://ches-dev.api.gov.bc.ca/api/v1' -- description: Notifications__ChesFromEmail - displayName: Notifications__ChesFromEmail - name: Notifications__ChesFromEmail - value: 'unity-noreply@gov.bc.ca' -- description: Payments__CasBaseUrl - displayName: Payments__CasBaseUrl - name: Payments__CasBaseUrl - value: 'https://cfs-systws.cas.gov.bc.ca:7025/ords/cas' -- description: Payments__CasClientSecret - displayName: Payments__CasClientSecret - from: '[a-zA-Z0-9]{22}..' - generate: expression - name: Payments__CasClientSecret -- description: Payments__CasClientId - displayName: Payments__CasClientId - from: '[a-zA-Z0-9]{22}..' - generate: expression - name: Payments__CasClientId -- description: RabbitMQ__Password - displayName: RabbitMQ__Password - from: '[a-zA-Z0-9]{26}' - generate: expression - name: RabbitMQ__Password -- description: RabbitMQ__UserName - displayName: RabbitMQ__UserName - value: 'unity-rabbitmq-user-dev' - name: RabbitMQ__UserName -- description: RabbitMQ__VirtualHost - displayName: RabbitMQ__VirtualHost - value: 'dev' - name: RabbitMQ__VirtualHost -- description: RabbitMQ__HostName - displayName: RabbitMQ__HostName - value: 'unity-rabbitmq' - name: RabbitMQ__HostName -- description: Redis__Configuration - displayName: Redis__Configuration - from: 'dev-redis-ha.[a-zA-Z0-9]{5}-dev.svc.cluster.local:26379' - generate: expression - name: Redis__Configuration -- description: Redis__HostName - displayName: Redis__HostName - value: 'dev-redis-ha' - name: Redis__HostName -- description: Redis__IsEnabled - displayName: Redis__IsEnabled - value: 'false' - name: Redis__IsEnabled -# Base image location -- description: The Namespace where the container image resides - displayName: Registry Namespace - name: IMAGEPULL_NAMESPACE - from: '[a-zA-Z0-9]{5}-tools' - generate: expression -- description: The ImageStream Name - displayName: Registry imagestream name - name: IMAGESTREAM_NAME - value: unity-grantmanager-build -- description: The version of the image to use, e.g. v1.0.0, v0.1.0, latest the ImageStream tag. - displayName: Application Version - name: IMAGESTREAM_TAG - required: true - value: latest -- description: The registry path of the container image used. - displayName: Registry location to pull from - name: IMAGEPULL_REGISTRY - value: image-registry.openshift-image-registry.svc:5000 -# Resources control how much CPU and memory a container will consume -- description: The minimum amount of CPU the Container is guaranteed. - displayName: CPU Request - name: CPU_REQUEST - required: true - value: 50m -- description: The minimum amount of Memory the Container is guaranteed. - displayName: Memory Request - name: MEMORY_REQUEST - required: true - value: 128Mi -# Template objects to instantiate the project application. -objects: -# Secrets -- apiVersion: v1 - kind: Secret - metadata: - name: ${APPLICATION_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - stringData: - StringEncryption__DefaultPassPhrase: ${StringEncryption__DefaultPassPhrase} - AuthServer__ClientId: ${AuthServer__ClientId} - AuthServer__ClientSecret: ${AuthServer__ClientSecret} - AuthServer__Audience: ${AuthServer__Audience} - CssApi__ClientId: ${CssApi__ClientId} - CssApi__ClientSecret: ${CssApi__ClientSecret} - Notifications__TeamsNotificationsWebhook: ${Notifications__TeamsNotificationsWebhook} - Notifications__ChesClientId: ${Notifications__ChesClientId} - Notifications__ChesClientSecret: ${Notifications__ChesClientSecret} - Payments__CasClientSecret: ${Payments__CasClientSecret} - Payments__CasClientId: ${Payments__CasClientId} - RabbitMQ__Password: ${RabbitMQ__Password} - type: Opaque -# Configmap -- apiVersion: v1 - kind: ConfigMap - metadata: - name: ${APPLICATION_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - data: - # Configuration values can be set as key-value properties - ASPNETCORE_ENVIRONMENT: ${ASPNETCORE_ENVIRONMENT} - ASPNETCORE_URLS: ${ASPNETCORE_URLS} - AuthServer__IsBehindTlsTerminationProxy: 'true' - AuthServer__Realm: standard - AuthServer__RequireHttpsMetadata: 'false' - AuthServer__ServerAddress: ${AuthServer__ServerAddress} - BackgroundJobs__CasPaymentsReconciliation__ConsumerExpression: '0 0 14 1/1 * ? *' - BackgroundJobs__CasPaymentsReconciliation__ProducerExpression: '0 0 13 1/1 * ? *' - BackgroundJobs__EmailResend__Expression: '0 0/5 * * * ?' - BackgroundJobs__EmailResend__RetryAttemptsMaximum: '2' - BackgroundJobs__IsJobExecutionEnabled: 'true' - BackgroundJobs__Quartz__IsAutoRegisterEnabled: 'true' - BackgroundJobs__IntakeResync__NumDaysToCheck: '-2' - BackgroundJobs__IntakeResync__Expression: '0 0 23 1/1 * ? *' - BackgroundJobs__Quartz__UseCluster: ${Redis__IsEnabled} - CssApi__TokenUrl: ${CssApi__TokenUrl} - CssApi__Url: ${CssApi__Url} - CssApi__Env: ${CssApi__Env} - Intake__BaseUri: ${Intake__BaseUri} - Notifications__ChesTokenUrl: ${Notifications__ChesTokenUrl} - Notifications__ChesUrl: ${Notifications__ChesUrl} - Notifications__ChesFromEmail: ${Notifications__ChesFromEmail} - Payments__CasBaseUrl: ${Payments__CasBaseUrl} - RabbitMQ__UserName: ${RabbitMQ__UserName} - RabbitMQ__VirtualHost: ${RabbitMQ__VirtualHost} - RabbitMQ__HostName: ${RabbitMQ__HostName} - DataProtection__IsEnabled: ${Redis__IsEnabled} - Redis__Configuration: ${Redis__Configuration} - Redis__DatabaseId: '0' - Redis__Host: ${Redis__HostName} - Redis__InstanceName: ${Redis__HostName} - Redis__IsEnabled: ${Redis__IsEnabled} - Redis__KeyPrefix: unity - Redis__Port: '6379' - Redis__SentinelMasterName: redisMasterSet - Redis__UseSentinel: ${Redis__IsEnabled} - Serilog__MinimumLevel__Override__Quartz.Impl: Information - Serilog__MinimumLevel__Override__Quartz.SQL: Information -# Services -- apiVersion: v1 - kind: Service - metadata: - annotations: - description: The application's http port. - name: ${APPLICATION_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - ports: - - name: 80-tcp - protocol: TCP - port: 80 - targetPort: 8080 - selector: - app: ${APPLICATION_NAME} -# Route ingress -- apiVersion: route.openshift.io/v1 - id: ${APPLICATION_NAME}-http - kind: Route - metadata: - annotations: - description: Route for application's http service. - haproxy.router.openshift.io/balance: roundrobin - haproxy.router.openshift.io/hsts_header: max-age=31536000;includeSubDomains;preload - router.openshift.io/cookie-same-site: Strict - router.openshift.io/cookie_name: haproxy-ugm - name: ${APPLICATION_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - host: ${HOSTNAME_HTTP} - path: / - to: - kind: Service - name: ${APPLICATION_NAME} - weight: 100 - port: - targetPort: 80-tcp - tls: - termination: edge - insecureEdgeTerminationPolicy: Redirect - wildcardPolicy: None - httpHeaders: - actions: - response: - - name: X-Frame-Options - action: - type: Set - set: - value: SAMEORIGIN - - name: X-Content-Type-Options - action: - type: Set - set: - value: no-sniff - - name: Referrer-Policy - action: - type: Set - set: - value: strict-origin-when-cross-origin - - name: Content-Security-Policy - action: - type: Set - set: - value: object-src 'none'; frame-ancestors 'none' -# Persistent storage for the application logfiles -- apiVersion: v1 - kind: PersistentVolumeClaim - metadata: - name: ${APPLICATION_NAME}-logfiles - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: ${VOLUME_CAPACITY} - storageClassName: netapp-file-standard - volumeMode: Filesystem -# Deployment -- apiVersion: apps/v1 - kind: Deployment - metadata: - name: ${APPLICATION_NAME} - annotations: - app.openshift.io/route-disabled: "false" - app.openshift.io/vcs-ref: ${SOURCE_REPOSITORY_REF} - app.openshift.io/vcs-uri: ${SOURCE_REPOSITORY_URL} - image.openshift.io/triggers: >- - [{"from":{"kind":"ImageStreamTag","name":"${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG}","namespace":"${IMAGEPULL_NAMESPACE}"},"fieldPath":"spec.template.spec.containers[?(@.name==\"${APPLICATION_NAME}\")].image","pause":"false"}] - labels: - app: ${APPLICATION_NAME} - app.openshift.io/runtime: dotnet - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - replicas: 3 - selector: - matchLabels: - app: ${APPLICATION_NAME} - strategy: - type: RollingUpdate - rollingUpdate: - maxSurge: 2 - maxUnavailable: 1 - template: - metadata: - labels: - application: ${APPLICATION_NAME} - app: ${APPLICATION_NAME} - spec: - volumes: - - name: ${APPLICATION_NAME}-logfiles - persistentVolumeClaim: - claimName: ${APPLICATION_NAME}-logfiles - containers: - - name: ${APPLICATION_NAME} - image: ${IMAGEPULL_REGISTRY}/${IMAGEPULL_NAMESPACE}/${IMAGESTREAM_NAME}:${IMAGESTREAM_TAG} - imagePullPolicy: Always - env: - - name: ConnectionStrings__Default - value: >- - Host=$(UNITY_DB_HOST);port=$(UNITY_DB_PORT);Database=$(UNITY_POSTGRES_DB);Username=$(UNITY_POSTGRES_USER);Password=$(UNITY_POSTGRES_PASSWORD) - - name: ConnectionStrings__Tenant - value: >- - Host=$(UNITY_DB_HOST);port=$(UNITY_DB_PORT);Database=$(UNITY_TENANT_DB);Username=$(UNITY_POSTGRES_USER);Password=$(UNITY_POSTGRES_PASSWORD) - - name: Redis__Password - valueFrom: - secretKeyRef: - name: ${Redis__HostName} - key: database-password - envFrom: - - configMapRef: - name: ${APPLICATION_NAME} - - secretRef: - name: ${APPLICATION_NAME} - - secretRef: - name: ${DATABASE_SERVICE_NAME} - - configMapRef: - name: ${STORAGE_OBJECT_NAME} - - secretRef: - name: ${STORAGE_OBJECT_NAME} - resources: - requests: - cpu: ${CPU_REQUEST} - memory: ${MEMORY_REQUEST} - readinessProbe: - httpGet: - path: /healthz/ready - port: 8080 - scheme: HTTP - httpHeaders: - - name: content-type - value: text/plain - - name: readiness - value: healthy - timeoutSeconds: 5 - periodSeconds: 30 - successThreshold: 1 - failureThreshold: 3 - livenessProbe: - httpGet: - path: /healthz/live - port: 8080 - scheme: HTTP - httpHeaders: - - name: content-type - value: text/plain - initialDelaySeconds: 120 - timeoutSeconds: 5 - periodSeconds: 30 - successThreshold: 1 - failureThreshold: 3 - startupProbe: - httpGet: - path: /healthz/startup - port: 8080 - scheme: HTTP - httpHeaders: - - name: content-type - value: text/plain - initialDelaySeconds: 30 - timeoutSeconds: 1 - periodSeconds: 5 - successThreshold: 1 - failureThreshold: 12 - ports: - - containerPort: 443 - protocol: TCP - - containerPort: 80 - protocol: TCP - volumeMounts: - - mountPath: /app/logs - name: ${APPLICATION_NAME}-logfiles - restartPolicy: Always - terminationGracePeriodSeconds: 30 - dnsPolicy: ClusterFirst diff --git a/openshift/unity-image-puller.yaml b/openshift/unity-image-puller.yaml deleted file mode 100644 index 38a31fbea0..0000000000 --- a/openshift/unity-image-puller.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# oc import-image rhel9/postgresql-15:1-28.1697636666 --from=registry.redhat.io/rhel9/postgresql-15:1-28.1697636666 --confirm -kind: RoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: 'system:image-puller' - namespace: ${PROJECT_NAMESPACE}-tools -subjects: - - kind: ServiceAccount - name: default - namespace: ${PROJECT_NAMESPACE}-dev - - kind: ServiceAccount - name: default - namespace: ${PROJECT_NAMESPACE}-test - - kind: ServiceAccount - name: default - namespace: ${PROJECT_NAMESPACE}-prod -roleRef: - apiGroup: rbac.authorization.k8s.io - kind: ClusterRole - name: 'system:image-puller' diff --git a/openshift/unity-imagestream.yaml b/openshift/unity-imagestream.yaml deleted file mode 100644 index e3351196c2..0000000000 Binary files a/openshift/unity-imagestream.yaml and /dev/null differ diff --git a/openshift/unity-metabase.yaml b/openshift/unity-metabase.yaml deleted file mode 100644 index 33b4bc97e7..0000000000 Binary files a/openshift/unity-metabase.yaml and /dev/null differ diff --git a/openshift/unity-networkpolicy.yaml b/openshift/unity-networkpolicy.yaml deleted file mode 100644 index 530bdd06e8..0000000000 --- a/openshift/unity-networkpolicy.yaml +++ /dev/null @@ -1,80 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -metadata: - name: unity-networkpolicy - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\openshift\unity-network-policy.yaml --param-file=.env | oc create -f - - labels: - template: unity-networkpolicy - annotations: - description: |- - Template for communications rules in OpenShift. -parameters: -# Project namespace parameters -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - value: unity-grantmanager -- description: The name of the application. - displayName: Application Name - name: APPLICATION_NAME - required: true - value: unity-grantmanager-web -# Template objects to instantiate the project application. -objects: - - kind: NetworkPolicy - apiVersion: networking.k8s.io/v1 - metadata: - name: deny-by-default - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - # The default posture for a security first namespace is to - # deny all traffic. If not added this rule will be added - # by Platform Services during environment cut-over. - podSelector: {} - ingress: [] - - apiVersion: networking.k8s.io/v1 - kind: NetworkPolicy - metadata: - name: allow-from-openshift-ingress - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - # This policy allows any pod with a route & service combination - # to accept traffic from the OpenShift router pods. This is - # required for things outside of OpenShift (like the Internet) - # to reach your pods. - ingress: - - from: - - namespaceSelector: - matchLabels: - network.openshift.io/policy-group: ingress - podSelector: {} - policyTypes: - - Ingress - - kind: NetworkPolicy - apiVersion: networking.k8s.io/v1 - metadata: - name: allow-same-namespace - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - spec: - # Allow all pods within the current namespace to communicate - # to one another. - podSelector: - ingress: - - from: - - podSelector: {} diff --git a/openshift/unity-rabbitmq.yaml b/openshift/unity-rabbitmq.yaml deleted file mode 100644 index 7b1da3782a..0000000000 Binary files a/openshift/unity-rabbitmq.yaml and /dev/null differ diff --git a/openshift/unity-s3-object-storage.yaml b/openshift/unity-s3-object-storage.yaml deleted file mode 100644 index a3b8ffac9e..0000000000 --- a/openshift/unity-s3-object-storage.yaml +++ /dev/null @@ -1,94 +0,0 @@ -apiVersion: template.openshift.io/v1 -kind: Template -metadata: - name: unity-s3-object-storage - # This template uses a separate parameter .env file to override the default values defined in this section. - # oc process -f .\openshift\unity-s3-object-storage.yaml --param-file=.env | oc create -f - - labels: - template: unity-s3-object-storage - annotations: - description: |- - Template for S3 connection information in OpenShift. -parameters: -# Project namespace parameters -- description: The name of the application grouping. - displayName: Application Group - name: APPLICATION_GROUP - value: unity-grantmanager -- description: The name of the application. - displayName: Application Name - name: APPLICATION_NAME - required: true - value: unity-grantmanager-web -# Additional parameters for S3 object storage -- description: The name of the application. - displayName: Application Name - name: STORAGE_OBJECT_NAME - required: true - value: s3-object-storage -- name: AccessKeyID - displayName: "Access Key Login ID" - description: "The Access Key for S3 compatible object storage account" - from: '[A-Z0-9]{20}_default' - generate: expression -- name: BucketName - displayName: "Bucket Name" - description: "The object storage bucket name" - required: true - value: "econ-unity-dev" -- name: Endpoint - displayName: "API endpoint for S3 compatible storage account" - description: "Object store URL. eg: https://econ.objectstore.gov.bc.ca" - required: true - value: "https://econ.objectstore.gov.bc.ca" -- name: SecretKey - displayName: "Secret Key" - description: "S3 account Secret Access Key, similar to a password." - from: '[\w]{32}_default' - generate: expression -- name: ApplicationFolder - displayName: ApplicationFolder - description: "The object storage Application Folder name" - required: true - value: "Unity/Application" -- name: AssessmentFolder - displayName: AssessmentFolder - description: "The object storage Assessment Folder name" - required: true - value: "Unity/Adjudication" -# Template objects to instantiate the project. -objects: -# Secrets -- apiVersion: v1 - kind: Secret - metadata: - name: ${STORAGE_OBJECT_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - stringData: - S3__AccessKeyId: ${AccessKeyID} - S3__Bucket: ${BucketName} - S3__SecretAccessKey: ${SecretKey} - type: Opaque -# Configmap -- apiVersion: v1 - kind: ConfigMap - metadata: - name: ${STORAGE_OBJECT_NAME} - labels: - app: ${APPLICATION_NAME} - app.kubernetes.io/component: ${APPLICATION_NAME} - app.kubernetes.io/instance: ${APPLICATION_NAME}-1 - app.kubernetes.io/name: ${APPLICATION_NAME} - app.kubernetes.io/part-of: ${APPLICATION_GROUP} - data: - # Configuration values can be set as key-value properties - S3__Endpoint: ${Endpoint} - S3__ApplicationS3Folder: ${ApplicationFolder} - S3__AssessmentS3Folder: ${AssessmentFolder} - S3__DisallowedFileTypes: '[ "exe" , "sh" , "ksh" , "bat" , "cmd" ]' - S3__MaxFileSize: '25' diff --git a/openshift/unity-sysdig-team.yaml b/openshift/unity-sysdig-team.yaml deleted file mode 100644 index 6b99c636c7..0000000000 --- a/openshift/unity-sysdig-team.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: ops.gov.bc.ca/v1alpha1 -kind: SysdigTeam -metadata: - name: ${PROJECT_NAMESPACE}-sysdigteam - namespace: ${PROJECT_NAMESPACE}-tools -spec: - team: - description: The Sysdig Team for the OpenShift Project Set Unity - users: - - name: first.last@gov.bc.ca - role: ROLE_TEAM_EDIT - - name: first.last@gov.bc.ca - role: ROLE_TEAM_EDIT - - name: first.last@gov.bc.ca - role: ROLE_TEAM_EDIT